diff --git a/.editorconfig b/.editorconfig index be8416b2526004..717417f0d50daf 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,7 +5,7 @@ indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 -trim_trailing_whitespace = true +trim_trailing_whitespace = false insert_final_newline = true [*.py] diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000000000..623f728249f448 --- /dev/null +++ b/.flake8 @@ -0,0 +1,5 @@ +[flake8] +max-line-length = 88 +# We ignore E501 as black handles it for us, and in a way that ignores strings +# that go over the line length, as opposed to flake8 which flags such strings. +extend-ignore = E203,E501 diff --git a/.gitattributes b/.gitattributes index 7876daeab5d61e..1e039d8cbe2132 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/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 5a089dd1b3b8ad..00000000000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1,9 +0,0 @@ - diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000000000..ffaf63415b0edb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Chat room + url: https://matrix.to/#/#tldr-pages:matrix.org + 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-request.yml b/.github/ISSUE_TEMPLATE/page-request.yml new file mode 100644 index 00000000000000..d2b07b92a14757 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/page-request.yml @@ -0,0 +1,27 @@ +name: 📄 Page request +title: "page request: " +description: Page request template. +labels: new command, help wanted +body: + - type: textarea + attributes: + label: Command description + description: Describe a command you want to be summarized. + placeholder: Tell us about 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 + - label: sunOS + - label: Windows + + diff --git a/.github/ISSUE_TEMPLATE/page-translation.yml b/.github/ISSUE_TEMPLATE/page-translation.yml new file mode 100644 index 00000000000000..4d7bba0c258dac --- /dev/null +++ b/.github/ISSUE_TEMPLATE/page-translation.yml @@ -0,0 +1,40 @@ +name: 📄 Page translation request +title: "page translation: " +description: Page translation request template. +labels: translation +body: + - type: textarea + attributes: + label: Command description + description: Describe a command you want to be translated. + placeholder: Tell us what TLDR page you want to see in your language! + validations: + required: true + - type: input + attributes: + label: Command details + description: Describe any details related to a command. + placeholder: e.g. command version + - type: dropdown + attributes: + label: OS + description: Select an operating system category which this command falls into. + multiple: false + options: + - Linux + - Android + - macOS + - Windows + - General + - Other + validations: + required: true + - type: input + attributes: + label: OS details + description: Describe any details related to an operating system. + placeholder: | + e.g. OS version obtained via: + `uname -a` for Linux + `sw_vers` for macOS + `ver` for Windows diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 7542db8002ef90..74d72587dc307e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,10 +1,12 @@ - - - + -- [ ] The page (if new), does not already exist in the repo. -- [ ] The page is in the correct platform directory (`common/`, `linux/`, etc.) -- [ ] The page has 8 or fewer examples. -- [ ] The PR title conforms to the recommended [templates](/tldr-pages/tldr/blob/master/CONTRIBUTING.md#commit-message). -- [ ] The page follows the [content guidelines](/tldr-pages/tldr/blob/master/CONTRIBUTING.md#guidelines). -- [ ] The page description includes a link to documentation or a homepage (if applicable). +- [ ] The page(s) are in the correct platform directories: `common`, `linux`, `osx`, `windows`, `sunos`, `android`, etc. +- [ ] The page(s) have at most 8 examples. +- [ ] The page description(s) have links to documentation or a homepage. +- [ ] The page(s) follow the [content guidelines](/tldr-pages/tldr/blob/main/CONTRIBUTING.md#guidelines). +- [ ] The PR title conforms to the recommended [templates](/tldr-pages/tldr/blob/main/CONTRIBUTING.md#commit-message). +- **Version of the command being documented (if known):** diff --git a/.github/codespell-ignore b/.github/codespell-ignore new file mode 100644 index 00000000000000..9ac17d57f92fce --- /dev/null +++ b/.github/codespell-ignore @@ -0,0 +1 @@ +crate diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1774feffffd55c..fe2b55ba4518b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,9 @@ name: CI on: ['push', 'pull_request'] +permissions: + contents: read # to fetch code (actions/checkout) + jobs: ci: runs-on: ubuntu-latest @@ -9,11 +12,17 @@ jobs: name: CI steps: + - uses: actions/checkout@v3 + + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + cache: 'pip' - - name: Checkout - uses: actions/checkout@v2 + - uses: actions/setup-node@v3 with: - fetch-depth: 0 + node-version: 'lts/*' + cache: 'npm' - name: Set up PR environment if: github.event.number != null @@ -22,27 +31,22 @@ jobs: - name: Install npm dependencies run: npm ci + - name: Install pip dependencies + run: pip install -r requirements.txt -r scripts/pdf/requirements.txt + - name: Test run: npm test - name: Build run: bash scripts/build.sh - - name: Setup Python for PDF generation - if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/master' - uses: actions/setup-python@v2 - with: - python-version: '3.x' - - name: Build PDF - if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/master' - run: | - cd scripts/pdf/ - pip3 install -r requirements.txt - python3 render.py ../../pages -c solarized-light + if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main' + working-directory: ./scripts/pdf + run: python render.py ../../pages -c solarized-light - name: Deploy - if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/master' + if: github.repository == 'tldr-pages/tldr' && github.ref == 'refs/heads/main' run: bash scripts/deploy.sh env: DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 00000000000000..5a837e7568ee2d --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,27 @@ +name: Codespell + +on: ['pull_request'] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@v35.7.11 + with: + # Ignore all other languages except English + files_ignore: | + pages.*/*/* + package-lock.json + + - uses: codespell-project/actions-codespell@master + with: + ignore_words_file: .github/codespell-ignore + # Exit with 0 regardless of typos. + only_warn: 1 + # Only check files in the PR + path: ${{ steps.changed-files.outputs.all_changed_files }} diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 00000000000000..3ec4e2dac494f2 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,11 @@ +name: PR Labeler +on: pull_request_target +permissions: + pull-requests: write +jobs: + labeler: + runs-on: ubuntu-latest + steps: + - uses: tldr-pages/tldr-labeler-action@v0 + with: + token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 642b24cfa78b86..02ad369b203a22 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -2,13 +2,17 @@ name: Main Mirror on: push: - branches: ['master'] + branches: ['main'] +permissions: {} jobs: mirror: + permissions: + contents: write # to update branch + runs-on: ubuntu-latest steps: - uses: zofrex/mirror-branch@v1 with: - target-branch: main + target-branch: master diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index d3c1f22a41c1e0..dab38bce52db01 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -4,26 +4,38 @@ 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@v3 + uses: actions/stale@v8 with: repo-token: ${{ secrets.GITHUB_TOKEN }} # Number of days of inactivity before an issue or PR is considered stale - days-before-stale: 15 + 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-close: 30 + 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 @@ -36,5 +48,5 @@ jobs: 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! + 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 62378dfd1bff9c..5cc4fe5ce621d9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # VS Code .vscode/ +# Jetbrains IDE +.idea/ + # macOS filesystem custom folder attributes .DS_Store diff --git a/.husky/.gitignore b/.husky/.gitignore deleted file mode 100644 index 31354ec1389994..00000000000000 --- a/.husky/.gitignore +++ /dev/null @@ -1 +0,0 @@ -_ diff --git a/CLIENT-SPECIFICATION.md b/CLIENT-SPECIFICATION.md index e1adc6f8a55def..7ad72de9c9f67c 100644 --- a/CLIENT-SPECIFICATION.md +++ b/CLIENT-SPECIFICATION.md @@ -38,10 +38,10 @@ 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. -`-l`, `--list` | No | Lists all the pages in the current platform to the standard output. If the special platform `all` is specified a list of all pages in all platforms MUST be displayed. +`-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 version 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.). @@ -76,7 +76,7 @@ tldr --platform osx bash This section documents the directory structure that contains the pages themselves. -The master version of every page is stored inside (but not directly) the `pages` directory. Inside this directory, there is a folder for each platform - for example `windows`, `linux`, and the special `common` platform: +The main version of every page is stored inside (but not directly) the `pages` directory. Inside this directory, there is a folder for each platform - for example `windows`, `linux`, and the special `common` platform: - `pages/` - `common/` @@ -85,7 +85,9 @@ The master version of every page is stored inside (but not directly) the `pages` - `osx/` - ...etc. -Additional platforms MAY be added in the future. Clients MAY NOT support new platforms (though such support is RECOMMENDED), but MUST NOT break if additional platforms are added. +It is RECOMMENDED that clients support `macos` as an alias for `osx`. + +While clients do not need to support new platforms automatically (though such support is RECOMMENDED), they MUST NOT break if additional platforms are added to tldr-pages. The pages themselves reside inside the appropriate platform folder, with the extension `.md`. Here are some example mappings: @@ -98,7 +100,7 @@ Command name | Mapped name | Filename ### Translations -Other directories sit alongside the main `pages` directory, and contain translations of the master versions of every page - though pages MAY NOT have a translation available for a given language yet. Furthermore, a given language MAY NOT have a folder yet either. The format of these directories is `pages.`, where `` is a [POSIX Locale Name](https://www.gnu.org/software/gettext/manual/html_node/Locale-Names.html#Locale-Names) in the form of `_`, where: +Other directories sit alongside the main `pages` directory, and contain translations of the main versions of every page - though pages MAY NOT have a translation available for a given language yet. Furthermore, a given language MAY NOT have a folder yet either. The format of these directories is `pages.`, where `` is a [POSIX Locale Name](https://www.gnu.org/software/gettext/manual/html_node/Locale-Names.html#Locale-Names) in the form of `_`, where: - `` is the shortest [ISO 639](https://en.wikipedia.org/wiki/ISO_639) language code for the chosen language (see [here](https://en.wikipedia.org/wiki/List_of_ISO_639-2_codes) for a complete list). - `` is the two-letter [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) country code for the chosen region (see [here](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) for a complete list). @@ -155,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 @@ -186,9 +188,9 @@ 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/master/CONTRIBUTING.md#translations)). +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)). -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, 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. 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. @@ -205,7 +207,7 @@ 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 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/main/assets/tldr.zip](https://raw.githubusercontent.com/tldr-pages/tldr-pages.github.io/main/assets/tldr.zip) (which is pointed to by the first link). 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. @@ -224,6 +226,11 @@ 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)) + - Require support for long options ([#9651](https://github.com/tldr-pages/tldr/pull/9651)) + - [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. - Use HTTPS for archive links. diff --git a/COMMUNITY-ROLES.md b/COMMUNITY-ROLES.md index 87412efe3834d8..a958cf4d7467dc 100644 --- a/COMMUNITY-ROLES.md +++ b/COMMUNITY-ROLES.md @@ -78,7 +78,7 @@ 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 +*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, @@ -94,13 +94,13 @@ using one of the template messages below as a base. ``` Hi, @username! You seem to be enjoying contributing to the tldr-pages project. You now have had five distinct pull requests merged ()! - That qualifies you to become a collaborator in this repository, as explained in our [community roles documentation](https://github.com/tldr-pages/tldr/blob/master/COMMUNITY-ROLES.md). + That qualifies you to become a collaborator in this repository, as explained in our [community roles documentation](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md). As a collaborator, you will have commit access to the repository. That means you can merge pull requests, label and close issues, and perform various other maintenance tasks that are needed here and there. Of course, all of this is voluntary — you're welcome to contribute to the project in whatever ways suit your liking. - If you do decide to start performing maintenance tasks, though, we only ask you to get familiar with the [maintainer's guide](https://github.com/tldr-pages/tldr/blob/master/contributing-guides/maintainers-guide.md). + If you do decide to start performing maintenance tasks, though, we only ask you to get familiar with the [maintainer's guide](https://github.com/tldr-pages/tldr/blob/main/contributing-guides/maintainers-guide.md). So, what do you say? Can we add you as a collaborator? @@ -123,13 +123,13 @@ using one of the template messages below as a base. ``` Hi, @username! After joining as a collaborator in the repository, you have been regularly performing maintenance tasks (). Thank you for that! - According to our [community roles documentation](https://github.com/tldr-pages/tldr/blob/master/COMMUNITY-ROLES.md), you've now met the thresholds to be effectively considered an active maintainer of the project. + 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/master/COMMUNITY-ROLES.md). + governance principles](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md). How does that sound? Are you up for it? ``` @@ -150,10 +150,10 @@ using one of the template messages below as a base. ``` Hi, @username! You've been an active tldr-pages organization member for over 6 months. Thanks for sticking around this far and helping out! - According to our [community roles documentation](https://github.com/tldr-pages/tldr/blob/master/COMMUNITY-ROLES.md), you're now eligible for becoming an owner in the organization. + According to our [community roles documentation](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md), you're now eligible for becoming an owner in the organization. That means you will, from now on, be part of the team responsible for performing role changes (like this one!) in the community. - When performing such role transitions, make sure to follow the process described in the [COMMUNITY-ROLES.md](https://github.com/tldr-pages/tldr/blob/master/COMMUNITY-ROLES.md) document. + When performing such role transitions, make sure to follow the process described in the [COMMUNITY-ROLES.md](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md) document. Is that OK with you? Let us know! @@ -174,7 +174,7 @@ using one of the template messages below as a base. 1. Open an issue with the following message template (edit it as appropriate): ``` - Hi, @username! As you know, our [community roles documentation](https://github.com/tldr-pages/tldr/blob/master/COMMUNITY-ROLES.md) defines processes for keeping the list of organization members in sync with the actual maintenance team. + Hi, @username! As you know, our [community roles documentation](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md) defines processes for keeping the list of organization members in sync with the actual maintenance team. Since you haven't been active in the project for a while now, we'll be relieving you from the maintainer responsibilities. In practice, not much will change on your side, since you'll remain a collaborator in the repos you have been active in. @@ -191,14 +191,13 @@ using one of the template messages below as a base. go to https://github.com/orgs/tldr-pages/people, click the gear icon in their row, and select the "Convert to outside collaborator" menu entry. -3. Open a PR moving their name to the "Past organization owners" section +3. Open a PR moving their name to the "Past organization members" section in [MAINTAINERS.md](MAINTAINERS.md). Make sure to include `Closes #` in the PR description. The issue will then be automatically closed once the PR is merged. - ## Who can change roles Any member of the community can (and is encouraged to) propose role changes by following the process outlined [above](#how-to-change-roles). -[Owners of the tldr-pages organization](MAINTAINERS.md#current-organization-owners) +[Owners of the tldr-pages organization](MAINTAINERS.md#organization-owners) can then perform the actual role changes. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5ec9f3ed0ab6aa..e6a5870232f584 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/master/LICENSE.md -[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.svg +[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?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,7 @@ 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, don't forget to 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 @@ -59,14 +59,25 @@ As a quick reference, the format of each page should match the following templat - Example description: -`command -opt1 -opt2 -arg1 {{arg_value}}` +`command --option` - Example description: -`command -opt1 -opt2` +`command --option1 --option2 {{arg_value}}` ``` -For more detailed page formatting guidelines, +To see some examples of preexisting pages, you can look at: + +- [pwd](https://github.com/tldr-pages/tldr/blob/main/pages/common/pwd.md) - one of the simplest command examples +- [tar](https://github.com/tldr-pages/tldr/blob/main/pages/common/tar.md) - page with placeholders + +In our pages, we use placeholders which are defined as being tokens within curly brackets, for example `sleep {{5}}`, in this case the user can change 5 to any number. +Other examples but not limited to of our placeholder syntax are: + +- `{{path/to/directory}}` +- `{{path/to/directory1 path/to/directory2 ...}}` + +For more detailed formatting guidelines, refer to the [style guide](contributing-guides/style-guide.md). ## Subcommands @@ -75,7 +86,8 @@ Many programs use subcommands for separating functionality, which may require th For instance, `git commit` has its own page, as well as `git push` and many others. To create a page for a subcommand, the program and subcommand need to be separated with a dash (`-`), so `git-commit.md` is shown when calling `tldr git commit`. -You should always add a base page (e.g. `git`) that describes the program and basic switches like `--version` or `help`. +You should always add a base page (e.g. `git`) that describes the program and basic switches like `--version` or `--help`. +To let users know about the subcommand, add a note saying ``Some subcommands such as `example command` have their own usage documentation`` to the base page. See these examples for reference: * [git](pages/common/git.md) @@ -103,6 +115,11 @@ Some examples of valid locale tags: - Chinese (Singapore): `zh_SG`. - Portuguese (Brazil): `pt_BR`. +A list of translated templates for alias pages can be found in [here](contributing-guides/translation-templates/alias-pages.md). + +Pull requests that introduce translations are the exception to the single file change per Pull Request rule. It is +acceptable for several pages to be translated in one pull request. + ### Default language for newly added pages The default language used for pages is English (US). Pages written in English are stored in the default `pages` directory (notice the absence of a specific language tag). Although not strictly required, if you'd like to add a new page in a different language, please consider creating the English page too. @@ -119,7 +136,15 @@ Check out the step-by-step instructions (with screenshots) on [GitHub Help](https://help.github.com/articles/editing-files-in-another-user-s-repository/). Alternatively, you can do most of the process -[using Git on the command line](contributing-guides/git-terminal.md). +[using Git on the command-line](contributing-guides/git-terminal.md). + +### Accepting suggestions within a pull request + +The easiest way to apply suggested changes is to accept the suggestion made on your pull request. Refer to the [GitHub docs](https://docs.github.com/en/enterprise-server@3.2/github/collaborating-with-pull-requests/reviewing-changes-in-pull-requests/incorporating-feedback-in-your-pull-request) for more details. + +To commit a suggestion to your pull request, simply click on `Commit suggestion`: + +![Commit suggestion button in Github](./images/commit-suggestion-button.png) ### Commit message diff --git a/GOVERNANCE.md b/GOVERNANCE.md index 6a4728ee701c3a..a046dd3395019c 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/LICENSE.md b/LICENSE.md index 13903ff7326044..3747149880ff46 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -7,7 +7,7 @@ and [contributors](https://github.com/tldr-pages/tldr/graphs/contributors). ---- -The contents of the [scripts/](https://github.com/tldr-pages/tldr/tree/master/scripts) directory +The contents of the [scripts/](https://github.com/tldr-pages/tldr/tree/main/scripts) directory are licensed under the MIT license: > **The MIT License** diff --git a/MAINTAINERS.md b/MAINTAINERS.md index db478d123d7268..81e6511ba0a983 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -5,7 +5,7 @@ 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/master/COMMUNITY-ROLES.md#when-to-change-roles): +[COMMUNITY-ROLES.md](https://github.com/tldr-pages/tldr/blob/main/COMMUNITY-ROLES.md#when-to-change-roles): repository collaborators, organization members, and organization owners — each having specific roles in maintaining the project, as outlined below. @@ -24,8 +24,6 @@ If you are an owner of the organization, you can see an automated list [12 March 2017](https://github.com/tldr-pages/tldr/issues/1209#issuecomment-285924778) — present - **Max Xu ([@jsonbruce](https://github.com/jsonbruce))**: [11 January 2018](https://github.com/tldr-pages/tldr/issues/1885) — present -- **Muhammad Falak R Wani ([@mfrw](https://github.com/mfrw))**: - [6 September 2018](https://github.com/tldr-pages/tldr/issues/2306) — present - **David Bialik ([@AnimiVulpis](https://github.com/AnimiVulpis))**: [5 November 2018](https://github.com/tldr-pages/tldr/issues/2556) — present - **Andrik Albuquerque ([@andrik](https://github.com/andrik))**: @@ -40,10 +38,22 @@ If you are an owner of the organization, you can see an automated list [19 October 2020](https://github.com/tldr-pages/tldr/issues/4763) — present - **Sahil Dhiman ([@sahilister](https://github.com/sahilister))**: [27 November 2020](https://github.com/tldr-pages/tldr/issues/4994) - present -- **Florian Benscheidt ([@Waples](https://github.com/Waples))**: - [16 April 2021](https://github.com/tldr-pages/tldr/issues/5774) - 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 +- **Reinhart Previano Koentjoro ([@reinhart1010](https://github.com/reinhart1010))**: + [23 Nov 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 +- **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 - 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)): @@ -66,6 +76,22 @@ If you are an owner of the organization, you can see an automated list [3 March 2021](https://github.com/tldr-pages/tldr/issues/5345) — [7 April 2021](https://github.com/tldr-pages/tldr/issues/5702) - Marcher Simon ([@marchersimon](https://github.com/marchersimon)): [9 March 2021](https://github.com/tldr-pages/tldr/issues/5390) — [9 April 2021](https://github.com/tldr-pages/tldr/issues/5722) +- Florian Benscheidt ([@Waples](https://github.com/Waples)): + [16 April 2021](https://github.com/tldr-pages/tldr/issues/5774) — [19 May 2021](https://github.com/tldr-pages/tldr/issues/5989) +- CleanMachine1 ([@CleanMachine1](https://github.com/CleanMachine1)): + [14 May 2021](https://github.com/tldr-pages/tldr/issues/5961) — [14 June 2021](https://github.com/tldr-pages/tldr/issues/6123) +- Muhammad Falak R Wani ([@mfrw](https://github.com/mfrw)): + [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) +- Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson)): + [12 Aug 2021](https://github.com/tldr-pages/tldr/issues/6330) — [4 Jan 2023](https://github.com/tldr-pages/tldr/issues/9671) +- Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd)): + [27 Aug 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) ## Organization members @@ -78,14 +104,22 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) [5 January 2020](https://github.com/tldr-pages/tldr/issues/3736) — present - **Ein Verne ([@einverne](https://github.com/einverne))**: [6 January 2020](https://github.com/tldr-pages/tldr/issues/3738) — present -- **bl-ue ([@bl-ue](https://github.com/bl-ue))**: - [2 February 2021](https://github.com/tldr-pages/tldr/issues/5219) — 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 -- **Marcher Simon ([@marchersimon](https://github.com/marchersimon))**: - [9 April 2021](https://github.com/tldr-pages/tldr/issues/5722) — 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 +- **Pixel Häußler ([@pixelcmtd](https://github.com/pixelcmtd))**: + [16 October 2022](https://github.com/tldr-pages/tldr/pull/9072#issuecomment-1279847932) — present +- **K.B.Dharun Krishna ([@kbdharun](https://github.com/kbdharun))**: + [14 December 2022](https://github.com/tldr-pages/tldr/issues/9625) — present +- **Lin Cheng Chieh ([@blueskyson](https://github.com/blueskyson))**: + [4 Jan 2023](https://github.com/tldr-pages/tldr/issues/9671) — 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)): @@ -96,6 +130,14 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) [17 January 2020](https://github.com/tldr-pages/tldr/issues/3764) — [3 February 2021](https://github.com/tldr-pages/tldr/issues/5224) - 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://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) ## Organization owners @@ -106,19 +148,21 @@ 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 -- **Zlatan Vasović ([@zlatanvasovic](https://github.com/zlatanvasovic))**: - [18 June 2020](https://github.com/tldr-pages/tldr/issues/4113) — 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 +- **Marcher Simon ([@marchersimon](https://github.com/marchersimon))**: + [9 August 2022](https://github.com/tldr-pages/tldr/issues/7540) — 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)): @@ -133,4 +177,7 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) until [18 January 2018](https://github.com/tldr-pages/tldr/issues/1878#issuecomment-358610454) - Leandro Ostera ([@ostera](https://github.com/ostera)): until [18 January 2018](https://github.com/tldr-pages/tldr/issues/1878#issuecomment-358610454) -- Waldir Pimenta ([@waldyrious](https://github.com/waldyrious)): until [26 August 2018](https://github.com/tldr-pages/tldr/issues/2257) +- Waldir Pimenta ([@waldyrious](https://github.com/waldyrious)): + 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) diff --git a/README.md b/README.md index 8e925780864344..e93bebf89f1225 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,22 @@
-

tldr-pages

+

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/tldr-pages/tldr.svg -[license-url]: https://github.com/tldr-pages/tldr/blob/master/LICENSE.md -[license-image]: https://img.shields.io/badge/license-CC_BY_4.0-blue.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?label=License
## What is tldr-pages? @@ -25,8 +25,7 @@ The **tldr-pages** project is a collection of community-maintained help pages for command-line tools, that aims to be a simpler, more approachable complement to traditional [man pages](https://en.wikipedia.org/wiki/Man_page). -Maybe you are new to the command-line world? Or just a little rusty? -Or perhaps you can't always remember the arguments to `lsof`, or `tar`? +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: @@ -40,10 +39,10 @@ It certainly doesn't help that the first option explained in `man tar` is: 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) +![Animated SVG of the tldr client displaying the tar command.](images/tldr.svg) This repository is just that: an ever-growing collection of examples -for the most common UNIX, Linux, macOS, SunOS and Windows command-line tools. +for the most common UNIX, Linux, macOS, SunOS, Android and Windows command-line tools. ## How do I use it? @@ -51,152 +50,97 @@ A popular and convenient way to access these pages on your computer is to install the [Node.js client](https://github.com/tldr-pages/tldr-node-client), which is supported by the tldr-pages project maintainers: - npm install -g tldr - -That way you can write `tldr tar` in the terminal to show the tldr page for `tar`, -just like you would write `man tar` to show its manpage. - -However, if you just want to browse without installing anything, check -out the [PDF version](https://tldr.sh/assets/tldr-book.pdf). - -There are also various other clients provided by the community, -both for the command line and for other platforms: - -- Alfred Workflow - - [tldr-alfred](https://github.com/cs1707/tldr-alfred) - - [alfred-tldr](https://github.com/konoui/alfred-tldr) -- [Albert Plugin](https://github.com/bergercookie/awesome-albert-plugins/tree/master/plugins/tldr_pages) -- Android clients: - - [tldroid](https://github.com/hidroh/tldroid), available on - [Google Play](https://play.google.com/store/apps/details?id=io.github.hidroh.tldroid) *(outdated)* - - [tldr-flutter](https://github.com/Techno-Disaster/tldr-flutter), available on - [Google Play](https://play.google.com/store/apps/details?id=wtf.technodisaster.tldr) or [F-Droid](https://f-droid.org/packages/wtf.technodisaster.tldr/) -- Bash clients: - - [tldr-sh-client](https://github.com/raylee/tldr-sh-client) - - [tldr-bash-client](https://gitlab.com/pepa65/tldr-bash-client) -- [C# client](https://github.com/principis/tldr-sharp) -- [C client](https://github.com/tldr-pages/tldr-c-client): - `brew install tldr` -- [Chrome Extension](https://github.com/hill/tldr-chrome) available on - [Chrome Web Store](https://chrome.google.com/webstore/detail/tldr-chrome/nnmlddkpgoecicoallmimonoboialpap) -- [Crystal client](https://github.com/porras/tlcr): - `brew install porras/tap/tlcr` -- [Dart client](https://github.com/hterkelsen/tldr): - `pub global activate tldr` -- [Dash docset](https://github.com/Moddus/tldr-python-dash-docset): - Open `Preferences` > `Downloads` > `User Contributed` and find `tldr pages` in the list -- [Discord Bot](https://github.com/sschr15/tldr-discord): - [Follow the building instructions](https://github.com/sschr15/tldr-discord#building) or - [use a privately hosted version](https://discord.com/api/oauth2/authorize?client_id=742800507210301520&permissions=18432&scope=bot) -- Docker images: - - [tldr-docker](https://github.com/nutellinoit/tldr-docker) - Run the `tldr` command via a docker container: `alias tldr='docker run --rm -it -v ~/.tldr/:/root/.tldr/ nutellinoit/tldr'` -- Elixir clients: - - [ExTldr](https://github.com/tldr-pages/extldr). - - [TLDR Elixir Client](https://github.com/edgurgel/tldr_elixir_client) - (binaries not yet available) -- [Emacs client](https://github.com/kuanyui/tldr.el), available on - [MELPA](https://melpa.org/#/tldr) -- Go clients: - - [github.com/pranavraja/tldr](https://github.com/pranavraja/tldr): - `go get github.com/pranavraja/tldr` - (or [platform binaries](https://github.com/pranavraja/tldr/releases)) - - [https://github.com/leighmcculloch/tldr](https://github.com/leighmcculloch/tldr): - `go get 4d63.com/tldr` or `brew install 4d63/tldr/tldr` - (or [platform binaries](https://github.com/leighmcculloch/tldr/releases)) - - [github.com/elecprog/tldr](https://github.com/elecprog/tldr): - `go get github.com/elecprog/tldr` - (or [platform binaries](https://github.com/elecprog/tldr/releases)) - - [github.com/isacikgoz/tldr](https://github.com/isacikgoz/tldr): - `go get github.com/isacikgoz/tldr` - (or [platform binaries](https://github.com/isacikgoz/tldr/releases)) -- iOS clients: - - [tldr-man-page](https://github.com/freesuraj/TLDR), available on - [App Store](https://appsto.re/sg/IQ0-_.i) - - [tldr-pages](https://github.com/mflint/ios-tldr-viewer), available on - [App Store](https://itunes.apple.com/us/app/tldt-pages/id1071725095?ls=1&mt=8) -- Haskell clients: - - [tldr-hs](https://github.com/psibi/tldr-hs): - `stack install tldr` - or `apt-get install tldr` on Debian-based distributions - - [fast-tldr](https://github.com/gutjuri/fast-tldr) -- [Java client](https://github.com/seenukarthi/tldr-java-client) -- [Keypirinha Plugin](https://github.com/ronan696/keypirinha-tldr) -- [Node.js client](https://github.com/tldr-pages/tldr-node-client): - `npm install -g tldr` -- [OCaml client](https://github.com/RosalesJ/tldr-ocaml): `opam install tldr` -- [Perl5 client](https://github.com/skaji/perl-tldr): - `cpanm App::tldr` -- [PHP client](https://github.com/BrainMaestro/tldr-php): - `composer global require brainmaestro/tldr` -- Python clients: - - [tldr-python-client](https://github.com/tldr-pages/tldr-python-client): - `pip install tldr` or `pacman -S tldr` on Arch Linux - - [tldr.py](https://github.com/lord63/tldr.py): - `pip install tldr.py` or `apt-get install tldr-py` on Debian-based distributions -- [R client](https://github.com/kirillseva/tldrrr): - `devtools::install_github('kirillseva/tldrrr')` -- [Ruby client](https://github.com/YellowApple/tldrb): - `gem install tldrb` -- [Rust client](https://github.com/dbrgn/tealdeer): - `cargo install tealdeer` or `brew install tealdeer` -- [Vim Client](https://github.com/wlemuel/vim-tldr) -- [Visual Studio Code extension](https://github.com/bmuskalla/vscode-tldr) available on [Visual Studio Code Marketplace](https://marketplace.visualstudio.com/items?itemName=bmuskalla.vscode-tldr) -- Web clients: - - [tldr.dendron.so](https://github.com/kevinslin/seed-tldr): https://tldr.dendron.so - - [tldr.jsx](https://github.com/ostera/tldr.jsx): http://tldr.ostera.io - - [tldr.finzzz.net](https://git.finzzz.net/tldr/): https://tldr.finzzz.net - - [DistroWatch](https://distrowatch.com/dwres.php?resource=man-pages) - - [tldr.ooops.me](https://tldr.ooops.me): web client with multilingual support - - [TLDR Persian](https://opoet7.github.io/tldr-persian/): Web Client in Persian - -There is also a comprehensive -[list of clients in our Wiki](https://github.com/tldr-pages/tldr/wiki/tldr-pages-clients). - -## How do I contribute? - -- Your favourite command isn't covered? -- You can think of more examples for an existing command? - -All `tldr` pages are kept as Markdown files right here in this repository, -so you can edit them directly and submit your changes as pull requests. +```sh +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`. + +```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`. + +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 (with offline support using PWA). + +There are also **various other clients** provided by the community, +both for the command-line and for other platforms. +For a comprehensive list of clients, head over to our [Wiki](https://github.com/tldr-pages/tldr/wiki/tldr-pages-clients). + +## How do I contribute to tldr-pages? All contributions are welcome! + +Some ways to contribute include: + +- Adding your favorite command which isn't covered. +- Adding examples or improving the content of an existing page. +- Adding requested pages from our issues with the [help wanted](https://github.com/tldr-pages/tldr/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) label. +- Translating pages into different languages. + +All `tldr` pages are written in markdown, so they can be edited quite easily and changes can be submitted in +pull requests here using Git on the command-line or +using the GitHub web interface. + We strive to maintain a [welcoming and collaborative](GOVERNANCE.md) community. -Have a look at the [contributing guidelines](CONTRIBUTING.md), and go ahead! +If it's your first time contributing, have a look at the [contributing guidelines](CONTRIBUTING.md), and go ahead! If you'd like to contribute to translations, you can visit -to see the current progress of all translations. +to see the overall progress of all translations, and which translations are missing or outdated. ## 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 for commands that they use frequently, but not frequently enough to remember. -- [Bro pages](http://bropages.org/) - are a highly readable supplement to man pages. - Bro pages show concise, common-case examples for Unix commands. - The examples are submitted by the user base, and can be voted up or down; - the best entries are what people see first when they look up a command. +- [cheat.sh](https://cheat.sh/) + Aggregates cheat sheets from multiple sources (including tldr-pages) + into 1 unified interface. -- [kb](https://github.com/gnebbia/kb) - is a minimalist command line knowledge base manager. - kb can be used to organize your notes and cheatsheets in a minimalist - and clean way. It supports also non-text files. +- [devhints](https://devhints.io/) + Rico's cheatsheets are not just focused on the command-line and + include a plethora of other cheatsheets related to programming. - [eg](https://github.com/srsudar/eg) - provides detailed examples with explanations on the command line. + provides detailed examples with explanations on the command-line. Examples come from the repository, but `eg` supports displaying custom examples and commands alongside the defaults. + +- [kb](https://github.com/gnebbia/kb) + is a minimalist command-line knowledge base manager. + kb can be used to organize your notes and cheatsheets in a minimalist + and clean way. It also supports non-text files. -- [devhints](https://devhints.io/) - Rico's cheatsheets are not just focused on the command line and - include a plethora of other cheatsheets related to programming. +- [navi](https://github.com/denisidoro/navi) + is an interactive cheatsheet tool, which allows you to browse through + specific examples or complete commands on the fly. + +- [bropages (deprecated)](http://bropages.org) + are a highly readable supplement to man pages. + It shows concise, common-case examples for Unix commands. + The examples are submitted by the user base, and can be voted up or down; + the best entries are what people see first when they look up a command. ## What does "tldr" mean? TL;DR stands for "Too Long; Didn't Read". -It originates in Internet slang, where it is used to indicate that a long text +It originated as Internet slang, where it is used to indicate that a long text (or parts of it) has been skipped as too lengthy. Read more in How-To Geek's [article](https://www.howtogeek.com/435266/what-does-tldr-mean-and-how-do-you-use-it/). diff --git a/contributing-guides/git-terminal.md b/contributing-guides/git-terminal.md index 15423b35ab3515..0ebea141b6366a 100644 --- a/contributing-guides/git-terminal.md +++ b/contributing-guides/git-terminal.md @@ -1,7 +1,9 @@ +# Opening a Pull Request + Most people submit pull requests to the tldr-pages project [using GitHub's web interface][pr-howto]. -If you prefer, you can do most of the process using the command line instead. +If you prefer, you can do most of the process using the command-line instead. The overall process should look somewhat like this: 1. Fork the tldr-pages/tldr repository on the GitHub web interface. @@ -12,6 +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. + 4. Make your changes (edit existing files or create new ones) 5. Commit the changes (following the [commit message guidelines][commit-msg]): @@ -20,12 +24,69 @@ The overall process should look somewhat like this: 6. Push the commit(s) to your fork: `git push origin {{branch_name}}` -7. Go to the GitHub page for your fork and click the green "pull request" button. + > :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. Please only send related changes in the same pull request. -Typically a pull request will include changes in a single file. -(Exceptions are [occasionally acceptable][mass-changes].) +Typically a pull request will include changes in a single file **unless the pull request is introducing translations**. +(Exceptions are [occasionally acceptable][mass-changes]) [pr-howto]: ../CONTRIBUTING.md#submitting-a-pull-request [commit-msg]: ../CONTRIBUTING.md#commit-message [mass-changes]: https://github.com/tldr-pages/tldr/pulls?&q=is:pr+is:merged+label:"mass+changes" + +# Updating your fork + +Forks of GitHub repositories aren't updated automatically. To keep your fork up-to-date with the latest changes and avoid merge conflicts, you should update it regularly. + +There are two ways to update your fork. + +1. Via the GitHub web interface. Click `Fetch upstream` and then `Fetch and merge` on the fork as shown below: + +![Fetch and merge button in GitHub](../images/github-fetch-and-merge-button.png) + +2. Using Git in the terminal: + +```bash +git checkout main +git remote add upstream https://github.com/tldr-pages/tldr.git # only run if you don't already have the upstream remote (check with "git remote -v") +git fetch upstream main +git rebase upstream/main # in case you have any merge conflicts, click the link below to see how to resolve them +git push --force-with-lease # not needed if you only want to update your local repository +``` +[How to resolve merge conflicts](https://docs.github.com/en/github/collaborating-with-pull-requests/addressing-merge-conflicts/resolving-a-merge-conflict-using-the-command-line) + +# Changing the email of your last commit + +If the email that you used for the last commit isn't associated with your GitHub account, you can either add it [here](https://github.com/settings/emails) or change the email of the commit with the following commands: + +```bash +git commit --amend --author="Your Name " +git push --force-with-lease +``` + +# Changing the email of any commit(s) + +1. Perform an [interactive rebase](https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt--i), specifying the reference of the earliest commit to modify as the argument. For example, if the earliest commit with the wrong email address was 6 commits ago, you can specify the commit hash or just `HEAD~6`. + +```bash +git rebase --interactive HEAD~6 +``` + +2. You'll see a list of commits starting from the referenced commit to `HEAD`. All of them will default to the instruction `pick`, this means use the commit as-is when replaying them. For the commits you want to edit, replace the word `pick` for `edit`, then save and exit the editor. + +3. The branch will rewind to the referenced commit, then replay them until it reaches a commit with the `edit` instruction. Amend the commit for the correct email address, then continue rebasing. Repeat this step until you've successfully finishing rebasing and replayed all commits. + +```bash +git commit --amend --author "Your Name " +git rebase --continue +``` + +4. Finally, because you modified the branch history, you'll need to force push back to your remote repository. + +```bash +git push --force-with-lease +``` + +[![asciicast](https://asciinema.org/a/fFMZzQOgJyfUf8HTnXyRj0v02.svg)](https://asciinema.org/a/fFMZzQOgJyfUf8HTnXyRj0v02) diff --git a/contributing-guides/maintainers-guide.md b/contributing-guides/maintainers-guide.md index 6c014c2580562a..6f8e1b77c55bef 100644 --- a/contributing-guides/maintainers-guide.md +++ b/contributing-guides/maintainers-guide.md @@ -25,7 +25,7 @@ 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) + [Matrix chat room](https://matrix.to/#/#tldr-pages:matrix.org) on a regular basis as well, or at least show up every now and then. - **Know when and how to say no**. @@ -47,7 +47,7 @@ as a guideline for current and future maintainers. - Try to **keep the entire contribution process web-based**, if possible, to ensure it is accessible and straightforward. - If you're comfortable with git, consider offering to perform + If you're comfortable with Git, consider offering to perform interactive rebases or other command-line operations on behalf of contributors, or assisting them if they want to do it themselves. @@ -56,9 +56,9 @@ as a guideline for current and future maintainers. - PRs should be merged once they (1) **pass the automated tests** (GitHub Actions, CLA signing, etc.), - (2) have the **review comments addressed**, and - (3) get **approved reviews by two maintainers** - (the second maintainer can perform the merge immediately after accepting.) + (2) have the **review comments addressed**, + (3) get **approved reviews by two maintainers**, (the second maintainer can merge immediately after approving) and + (4) have been open for at least **24 hours** unless the changes are trivial - 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 @@ -71,7 +71,7 @@ as a guideline for current and future maintainers. and proceed with the merge process. - If a PR **stops getting feedback from the submitter** and is marked as stale - by [probot-stale](../.github/stale.yml), + by [probot-stale](../.github/workflows/stale.yml), any maintainer can choose to take over the PR and make the necessary changes to get the content ready for merging. diff --git a/contributing-guides/style-guide.de.md b/contributing-guides/style-guide.de.md new file mode 100644 index 00000000000000..945626d5e82711 --- /dev/null +++ b/contributing-guides/style-guide.de.md @@ -0,0 +1,92 @@ +# Style guide + + Diese Seite listet alle Regeln für `tldr`-Seiten auf. + + ## Layout + + Eine Standard-`tldr`-Seite sollte dem folgenden Format entsprechen: + + ``` + # befehl + + > Kurze Beschreibung. + > Möglichst nur eine Zeile; wenn nötig, sind zwei akzeptabel. + > More information: . + + - Beispielbeschreibung: + + `befehl -opt1 -opt2 -arg1 {{arg_wert}}` + + - Beispielbeschreibung: + + `befehl -opt1 -opt2` + ``` + + Es gibt einen Linter, der das obige Format prüft. + Er wird automatisch bei jeder Pull Request ausgeführt, + er kann aber auch manuell installiert werden, um seine Seiten schon vorher zu überprüfen: + + ``` + 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: + + ``` + tldr --render {{seite.md}} + ``` + + ## Token-Syntax + + Eingaben der Nutzer\*innen sollten die `{{Token}}`-Syntax benutzen, + damit `tldr`-Clients sie hervorheben können. + + Die folgenden Regeln sollten für Tokens beachtet werden: + + 1. Kurze und deskriptive Tokens, + z. B. `{{source_file}}` oder `{{wallet.txt}}`. + 2. Benutze `snake_case` für Tokens, die aus mehreren Wörtern bestehen. + 3. Benutze `{{filename}}` statt `{{file_name}}`. + 4. Benutze für Pfade von Dateien oder Verzeichnissen das Format `{{path/to/}}`. + Beispielsweise `ln -s {{path/to/file}} {{path/to/symlink}}`. + Benutze für Platzhalter, die ein Pfad zu einer Datei oder einem Verzeichnis sein können `{{path/to/file_or_directory}}` + 5. Folge der `{{path/to/}}`-Konvention für alle Pfad-bezogenen Befehle, außer wenn der + Ort der Datei implizit ist. + 6. Wenn ein Befehl eine bestimmte Dateiendung erwartet, benutze sie. + Beispiel: `unrar x {{compressed.rar}}`. + Für eine generelle Dateiendung, benutze `{{.ext}}`, aber **nur**, wenn eine Endung wirklich nötig ist. + Beispielsweise, in find.md's Beispiel "Find files by extension" (`find {{root_path}} -name '{{*.ext}}'`) + erklärt `{{*.ext}}` den Befehl ohne unnötig spezifisch zu sein; + Aber in einem Befehl wie `wc -l {{file}}`, genügt `{{file}}` (ohne Endung). + 7. Wenn das Beispiel mit einem konkreten Wert klarer ist, nutze einen Beispielwert. + Benutze beispielsweise `iostat {{2}}` statt `iostat {{interval_in_secs}}`. + 8. Wenn ein Befehl irreversible Änderungen am Dateisystem oder Geräten vornimmt, schreibe jedes Beispiel so, dass es nicht blind copy-pastet werden kann. + Schreibe beispielsweise `ddrescue --force --no-scrape {{/dev/sdX}} {{/dev/sdY}}` statt `ddrescue --force --no-scrape /dev/sda /dev/sdb`und benutze den `{{/dev/sdXY}}`-Platzhalter statt `/dev/sda1` für *blockgeräte*. + + Generell sollten Tokens es so intuitiv wie möglich machen, + herauszufinden, wie der Befehl funktioniert und sie mit Werten auszufüllen. + + Technische Begriffe in der Beschreibung sollten die `Backtick`-Syntax (\`) benutzen. + Benutze Backticks für Folgendes: + + 1. Pfade, wie `package.json`, `/etc/package.json`. + 2. Dateiendungen, wie `.dll`. + 3. Befehle, wie `ls`. + + ## 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. + + Dies kann durch ein Komma vor "and" oder "or" gelöst werden. + + > Delete the Git branches, tags, and remotes. diff --git a/contributing-guides/style-guide.ko.md b/contributing-guides/style-guide.ko.md new file mode 100644 index 00000000000000..43a9b034236b25 --- /dev/null +++ b/contributing-guides/style-guide.ko.md @@ -0,0 +1,163 @@ +# 스타일 가이드 + +이 페이지는 `tldr` 페이지에 대한 형식 지정 지침들을 나열합니다. + +## 레이아웃 + +각 페이지의 기본 포맷은 다음 템플릿과 일치해야 하며, 다음과 최대 8개의 명령어 예제를 포함해야 합니다: +```md +# 명령어 이름 + +> 짧고 간결한 설명 +> 보통 1줄, 필요한 2줄 까지 허용됨 +> 더 많은 정보: . + +- 코드 설명: + +`command_name options` + +- 코드 설명: + +`command_name options` + +... +``` + +예시: + +```md +# 명령어 이름 + +# krita + +> krita는 디지털 아티스트를 위해 설계된 스케치/페인팅 프로그램입니다. +> `gimp` 페이지도 참조하세요. +> 더 많은 정보: . + +- krita 시작: + +`krita` + +- 로딩 화면 없이 시작: + +`krita --nosplash` + +- 특정 파일 열기: + +`krita {{path/to/image1 path/to/image2 ...}}` + +- 특정 workspace (`Animation`) 에서 시작: + +`krita --workspace {{Animation}}` + +- 전체화면으로 시작: + +`krita --fullscreen` +``` + +> :bulb: 도움말 페이지는 매뉴얼 뿐 아니라 문서, 프로젝트, 튜토리얼 등이 될 수 있습니다. +> 그러나, 문서 페이지를 권장합니다. + +위의 형식들을 강제하는 linter가 있습니다. +모든 pull 요청에 대해 자동으로 실행되지만, 제출하기 전 local에서 테스트하기 위해 설치할 수 있습니다. + +```sh +npm install --global tldr-lint +tldr-lint path/to/tldr_page.md +``` + +`tldr-lint`를 사용하기 위한 여러 방법들이 많습니다. 다음은 이에 대한 안내 페이지입니다. 확인해 보세요! [`tldr tldr-lint`](https://github.com/tldr-pages/tldr/blob/main/pages/common/tldr-lint.md). + +별칭 `tldrl`을 쓸 수도 있습니다. + + +Client는 `--render` 명령어를 통해 local에서 페이지를 미리 볼 수 있습니다. + +```sh +tldr --render path/to/tldr_page.md +``` + +### Aliases + +만약 명령어를 다른 별칭으로 부를 수 있는 경우 (ex: `vim`과 `vi`) 사용자가 원래 명령 이름을 가리키도록 별칭 페이지를 만들 수 있습니다. + +```md +# 명령어 이름 + +> 이 명령어는 `originam-command-name`의 별칭입니다. +> 더 많은 정보는 를 참조하세요. + +- 원래 명령어에 대한 문서: + +`tldr vim` + +``` + +- 번역된 별칭 페이지 템플릿은 [여기](https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/alias-pages.md)에서 확인할 수 있습니다. + +## Token syntax + +사용자 입력 값은 `tldr` 클라이언트에게 강조될 수 있도록 `{{token}}` 구문을 사용해야 합니다. + +토큰을 선택할 때 다음의 가이드라인을 염두에 두십시오: + +### Naming +- 짧지만 설명적인 토큰을 사용하세요. +- 파일 및 디렉토리 경로에 대한 참조의 경우: + `{{path/to/}}`의 포맷을 사용하세요. + (암시적인 경로인 경우는 제외!) +- 경로가 상대경로일 수 없지만 파일 시스템의 root에서 시작해야 하는 경우 + 접두사로 `/`를 붙입니다. + (ex: `get {{/path/to/remote_file +- 파일 및 디렉토리 참조가 모드 가능한 경우 + `{{path/to/file_or_directory}}`를 사용하세요. + +### Extensions + +- 파일에 특정 확장자가 필요한 경우 추가하십시오. + (ex: `unrar x {{compressed.rar}}`) +- 만약 일반적인 확장자가 필요하다면, **반드시 필요한 경우에만** `{{.ext}}`를 사용하십시오. + 예시1: `find.md`의 "확장자로 파일 찾기"(`find {{root_path}} -name '{{*.ext}}'`)는 `{{*.ext}}`를 사용하여 불필요한 내용 없이, 구체적이지 않게 설명합니다. + 예시2: `wc -l {{file}}`는 `{{file}}`을 (extension 없이) 사용하는 것 만으로 충분합니다. + +### Special Cases + +- 만약 명령어가 파일 시스템이나 장치에 돌이킬 수 없는 변경을 수행하는 경우, 모든 예제를 생각 없이 복사하여 붙여넣을 수 없도록 작성하십시오. + 예를 들어 `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}}`로 작성합니다. + +일반적으로, 토큰은 가능한 한 직관적이어야 합니다. +명령을 사용하는 방법을 파악하고 값으로 채우십시오. + +내용 입력란의 기술 문구는 `backtick` 구문을 사용해야 합니다. +다음과 같이 역따옴표를 사용하십시오. + +- Paths, ex. `package.json`, `/etc/package.json`. +- Extensions, ex. `.dll`. +- Commands, ex. `ls`. + +## Imperative Mood + +예시 설명형은 명령법으로 표현되어야 합니다. +예를 들자면 `List all files.`를 `Listing all files`, `File listing` 등 입니다. +이것은 특별한 경우를 제외하고 기본적으로 **모든 번역에 적용**됩니다. + +## Serial Comma + +3개 이상의 항목 목록을 선언할 때, Oxford 쉼표라고도 부르는 [연속 쉼표](https://en.wikipedia.org/wiki/Serial_comma)를 사용합니다. + +> Git brances, tags, remotes를 삭제하세요. + +위의 예는 직렬 쉼표를 사용하지 않으므로 다음 두 가지 중 하나를 의미할 수 있습니다. +* `tags`와 `remotes`라는 Git branch들을 삭제하세요. +* Git branches, Git tag, Git remotes를 모두 삭제하세요. + +목록의 마지막 요소에서 "and" 또는 "or" 앞에 쉼표를 삽입하면 이 문제를 해결할 수 있습니다. + +> Git branches, tags 및 remotes를 삭제하세요. + +## More information links + +`More information` 줄에는 작성자가 제공한 문서로 연결하는 것을 권장합니다. +사용할 수 없는 경우, 기본 fallback으로 를 사용합니다. diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index e14b36308100c8..c0108428b17c6b 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -4,75 +4,238 @@ This page lists specific formatting instructions for `tldr` pages. ## Layout -The basic format of each page should match the following template: +The basic format of each page should match the following template and have at most 8 command examples: -``` -# command-name +```md +# command name -> Short, snappy description. +> Short, snappy command description. > Preferably one line; two are acceptable if necessary. -> More information: . +> More information: . + +- Code description: + +`command_name options` + +- Code description: + +`command_name options` + +... +``` + +Example: + +```md +# krita + +> Krita is a sketching and painting program designed for digital artists. +> See also: `gimp`. +> More information: . + +- Start Krita: + +`krita` + +- Open specific files: -- Example description: +`krita {{path/to/image1 path/to/image2 ...}}` -`command -opt1 -opt2 -arg1 {{arg_value}}` +- Start without a splash screen: -- Example description: +`krita --nosplash` -`command -opt1 -opt2` +- Start with a specific workspace: + +`krita --workspace {{Animation}}` + +- Start in fullscreen mode: + +`krita --fullscreen` ``` -There actually is a linter/formatter that enforces the format above. +> :bulb: 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. It is run automatically on every pull request, but you may install it to test your contributions locally before submitting them: +```sh +npm install --global tldr-lint +tldr-lint path/to/tldr_page.md ``` -npm install tldr-lint -tldrl -f {{page.md}} + +For other ways to use `tldr-lint`, such as linting an entire directory, check out (what else!) +[`tldr tldr-lint`](https://github.com/tldr-pages/tldr/blob/main/pages/common/tldr-lint.md). Alternatively, you can also use its alias `tldrl`. + +Your client may be able to preview a page locally using the `--render` flag: + +```sh +tldr --render path/to/tldr_page.md ``` -For other ways to use `tldrl`, such as linting an entire directory, check out (what else!) -[`tldr tldrl`](https://github.com/tldr-pages/tldr/blob/master/pages/common/tldrl.md) +### Aliases -If you're using the Node.js client of tldr-pages, you can preview a page locally using the `-f` flag (aka `--render`): +If a command can be called with alternative names (like `vim` can be called by `vi`), alias pages can be created to point the user to the original command name. +```md +# command_name + +> This command is an alias of `original-command-name`. +> More information: . + +- View documentation for the original command: + +`tldr original_command_name` ``` -tldr -f {{page.md}} + +Example: + +```md +# vi + +> This command is an alias of `vim`. + +- View documentation for the original command: + +`tldr vim` + ``` -## Token syntax +- Pre-translated alias page templates can be found [here](https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/alias-pages.md). + +## 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`). + +## 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: - -1. Use short but descriptive tokens, - ex. `{{source_file}}` or `{{wallet.txt}}`. -2. Use [`snake_case`](https://en.wikipedia.org/wiki/Snake_case) for multi-word tokens. -3. Use `{{filename}}` rather than `{{file_name}}`. -4. For any reference to paths to files or directories, use the format `{{path/to/}}`. - For example, `ln -s {{path/to/file}} {{path/to/symlink}}`. - In case of a possible reference both to a file or a directory, use `{{path/to/file_or_directory}}` -5. Follow the `{{path/to/}}` convention for all path-related commands, except when the - file location is implicit. -6. If a command expects the file to have a particular extension, use it. - For example, `unrar x {{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}}'`) - using `{{*.ext}}` explains the command without being unnecessarily specific; - But in a command like `wc -l {{file}}`, using `{{file}}` (without extension) is sufficient. -7. If the example is clearer with an actual value rather than a generic placeholder, use the actual value. - For example, use `iostat {{2}}` rather than `iostat {{interval_in_secs}}`. -8. If a command performs irreversible changes to a file system or to user's devices, then write every example in a way that they cannot be unmindfully copy-pasted by the user. - 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`. - -In general, tokens should make it as intuitive as possible +Keep the following guidelines in mind when choosing placeholders: + +### Naming + +- 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}}` 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. +- When the path cannot be relative, + but has to start at the root of the filesystem, + prefix it with a slash, + such as `get {{/path/to/remote_file}}`. +- In case of a possible reference both to a file or a directory, + use `{{path/to/file_or_directory}}`. + +### Extensions + +- If a particular extension is expected for the file, append it. + 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 {{path/to/root}} -name '{{*.ext}}'`) + using `{{*.ext}}` explains the command without being unnecessarily specific; + 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 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`. + +In general, placeholders should make it as intuitive as possible to figure out how to use the command and fill it in with values. -More technical wording on description lines should use the `backtick` syntax. +Technical wording on description lines should use the `backtick` syntax. Use backticks on the following: -1. Paths, ex. `package.json`, `/etc/package.json`. -2. Extensions, ex. `.dll`. -3. Commands, ex. `ls`. +- Paths, ex. `package.json`, `/etc/package.json`. +- Extensions, ex. `.dll`. +- Commands, ex. `ls`. + +## Imperative Mood + +- 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. + +## Serial Comma + +- 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. + +> 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. + +This can be resolved by inserting a comma before the "and" or "or" in the final element in the list. + +> Delete the Git branches, tags, and remotes. + +## More information links + +On the `More information` line, prefer linking to the author's provided documentation. + +When not available, use as the default fallback. + +## Language-Specific Rules + +### Chinese-Specific Rules + +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`) 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 `脸书`. + +In order to maintain readability and normalization, please comply with the 6 rules above as much as possible when translating pages into Chinese. + +For more information and examples of Chinese-specific rules, check out [*Chinese Copywriting Guidelines*](https://github.com/sparanoid/chinese-copywriting-guidelines/blob/master/README.en.md). + +### French-Specific Rules + +Example descriptions on pages in French must use the third person singular present indicative tense (présent de l'indicatif à la troisième personne du singulier). +For example, use `Extrait une archive` rather than `Extraire une archive` or `Extrais une archive`. diff --git a/contributing-guides/style-guide.zh.md b/contributing-guides/style-guide.zh.md new file mode 100644 index 00000000000000..3fdddbfcd0e732 --- /dev/null +++ b/contributing-guides/style-guide.zh.md @@ -0,0 +1,104 @@ +# 格式指导 + +当你在为 `tldr` 贡献时,请遵守下面的格式规范。 + +请注意,下面的规范仅适用于中文翻译的 `tldr` 页面。 + +## 排版 + +首先,你的页面应该看起来像这样: + +``` +# 命令名称 + +> 短小精悍的描述。 +> 描述最好只有一行;当然,如果需要,也可以是两行。 +> 更多信息:. + +- 命令描述: + +`命令 -选项1 -选项2 -参数1 {{参数的值}}` + +- 命令描述: + +`命令 -选项1 -选项2` +``` + +当你将自己的贡献提交 pull request 时,一个脚本会自动检查你的贡献是否符合上面的格式。 + +你也可以在提交前在本地测试自己的贡献: + +``` +npm install --global tldr-lint +tldr-lint {{page.md}} +``` + +关于 `tldr-lint` 的更多使用方法,例如检查批量检查一整个目录的格式,[`tldr tldr-lint`](https://github.com/tldr-pages/tldr/blob/master/pages/common/tldr-lint.md) 是你的不二去处! + +如果你用 tldr-pages 的 Node.js 客户端,你可以在命令后加 `-f` (`--render`) 来在本地预览自己的页面: + +``` +tldr --render {{page.md}} +``` + + +## 占位符 (token) 语法 + +当命令涉及用户自己提供的值时,请用 `{{token}}` 语法来使 `tldr` 客户端自动高亮它们: + +`tar -cf {{目标.tar}} {{文件1}} {{文件2}} {{文件3}}` + +翻译时,请尽量翻译原文中的西文占位符。下面是命名占位符的规则: + +1. 占位符需要短小精悍, + 例如 `{{源文件}}` 或者 `{{钱包.txt}}` +2. 如果占位符是西文,请用 [`snake_case`](https://en.wikipedia.org/wiki/Snake_case) 来分词。 +3. 当占位符涉及文件路径时,请用 `{{目录/子目录/<占位符>}}` 的格式。 + 例如:`ln -s {{目录/子目录/源文件}} {{目录/子目录/链接}}` + 如果占位符提到的文件也可能是目录,请用 `{{目录/子目录/文件或目录}}` +4. 除非文件是特定的,上述 `{{目录/子目录/<占位符>}}` 的文件路径格式应用于所有包含路径的命令。 +5. 如果命令需要的文件扩展名是固定的,请在占位符里加上文件格式。 + 例如:`unrar x {{压缩包.rar}}` + 如果文件 **必须** 有一个扩展名,请用 `{{.ext}}` 。 + 例如,在 `find {{起始目录}} -name '{{*.ext}}'` 的例子里, + 这样做简单地演示了查找一个特定文件扩展名的方法。 + 但是,在 `wc -l {{file}}` 的例子里,用不加扩展名的 `{{file}}` 就足够了。 +6. 如果用实际的值比描述这个占位符更加明了,请举一个值做例子。 + 例如:`iostat {{2}}` 比 `iostat {{以秒为单位的间隔}}` 更清晰。 +7. 如果一个命令可能对文件系统或设备造成不可逆的影响,请在示例命令中注意改写,使其不能被盲目复制粘贴运行。 + 例如,`ddrescue --force --no-scrape /dev/sda /dev/sdb` 被盲目复制粘贴时可能对系统造成毁灭性的打击;`ddrescue --force --no-scrape {{/dev/sdX}} {{/dev/sdY}}` 则更安全。 + 因此,请用 `{{/dev/sdXY}}` 而不是 `{{/dev/sda1}}` 来表示一个 **块设备** 。 + +占位符应该尽可能简单明了,让人一眼就能看出应该替换它的值。 + +在命令描述中,如果出现了技术性的专有名词,请用 `反引号` 括起来: + +1. 路径,例如 `package.json`,`/etc/package.json`. +2. 扩展名,例如 `.dll`. +3. 命令,例如 `ls`. + +## 中西文混排规则 + +中文、西文、阿拉伯数字写在同一个句子时,需要注意排版。 + +以下规则适用于中文(zh)和繁体中文(zh_TW): + +1. 在西文单词和数字前后放置一个空格。 + 例如:`列出所有 docker 容器` 而不是 `列出所有docker容器`。 + 例如:`宽度为 50 个字` 而不是 `宽度为50个字`。 +2. 除了度数和百分比,在数字和单位之间留一个空格。 + 例如:`容量 50 MB` 而不是 `容量 50MB`。 + 对于度数和百分比:使用 `50°C` 和 `50%` 而不是 `50 °C` 和 `50 %`. +3. 不要在全角标点符号前后放置空格。 + 例如:`开启 shell,进入交互模式` 而不是 `开启 shell ,进入交互模式`。 +4. 除了西文长句,一律使用全角标点符号。 + 例如:`嗨,你好。` 而不是 `嗨, 你好.`。 +5. 当最句子最后一个字符是半角时,使用半角标点符号来结束句子。 + 例如:`将代码转化为 Python 3.` 而不是 `将代码转化为 Python 3。`。 +6. 使用精准的专有名词,不要使用非官方的中文缩写。 + 例如:`Facebook` 而非 `facebook`、`fb` 或 `脸书`。 + +为保持可读性和一致性,将页面翻译成中文时,请尽可能遵守以上 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 new file mode 100644 index 00000000000000..026236af04aaf9 --- /dev/null +++ b/contributing-guides/translation-templates/alias-pages.md @@ -0,0 +1,449 @@ +# Alias pages + +In order to document a command which is an alias of another command, you can +write an alias page. This file contains a list of all translations of the alias +page template decided upon in +[#5368](https://github.com/tldr-pages/tldr/pull/5368). +The templates can be changed when necessary. + +[en](#en) • +[ar](#ar) • +[bn](#bn) • +[bs](#bs) • +[ca](#ca) • +[da](#da) • +[de](#de) • +[es](#es) • +[fa](#fa) • +[fr](#fr) • +[hi](#hi) • +[id](#id) • +[it](#it) • +[ja](#ja) • +[ko](#ko) • +[lo](#lo) • +[ml](#ml) • +[ne](#ne) • +[nl](#nl) • +[no](#no) • +[pl](#pl) • +[pt_BR](#pt_br) • +[pt_PT](#pt_pt) • +[ro](#ro) • +[ru](#ru) • +[sh](#sh) • +[sr](#sr) • +[sv](#sv) • +[ta](#ta) • +[th](#th) • +[tr](#tr) • +[uk](#uk) • +[uz](#uz) • +[zh](#zh) • +[zh_TW](#zh_tw) +--- +### en + +```markdown +# example + +> This command is an alias of `example`. + +- View documentation for the original command: + +`tldr example` +``` + +--- +### ar + +```markdown +# example + +> هذا الأمر هو اسم مستعار لـ `example`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr example` +``` + +--- +### bn + +Not translated yet. + +--- +### bs + +```markdown +# example + +> Ova komanda je pseudonim za `example`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr example` +``` + +--- +### ca + +```markdown +# example + +> Aquest comandament és un àlies de `example`. + +- Veure documentació pel comandament original: + +`tldr example` +``` + +--- +### da + +```markdown +# example + +> Denne kommando er et alias af `example`. + +- Se dokumentation for den oprindelige kommando: + +`tldr example` +``` + +--- +### de + +```markdown +# example + +> Dieser Befehl ist ein Alias von `example`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr example` +``` + +--- +### es + +```markdown +# example + +> Este comando es un alias de `example`. + +- Ver documentación para el comando original: + +`tldr example` +``` + +--- +### fa + +Not translated yet. + +--- +### fr + +```markdown +# example + +> Cette commande est un alias de `example`. + +- Voir la documentation de la commande originale : + +`tldr example` +``` + +--- +### hi + +```markdown +# example + +> यह आदेश `example` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr example` +``` + +--- +### id + +```markdown +# example + +> Perintah ini merupakan alias dari `example`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr example` +``` + +--- +### it + +```markdown +# example + +> Questo comando è un alias per `example`. + +- Consulta la documentazione del comando originale: + +`tldr example` +``` + +--- +### ja + +```markdown +# example + +> このコマンドは `example` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr example` +``` + +--- +### ko + +```markdown +# example + +> 이 명령은 `example` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr example` +``` + +--- +### lo + +```markdown +# example + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `example`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr example` +``` + +--- +### ml + +```markdown +# example + +> ഈ കമാൻഡ് `example` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr example` +``` + +--- +### ne + +```markdown +# example + +> यो आदेश `example` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr example` +``` + +--- +### nl + +```markdown +# example + +> Dit commando is een alias van `example`. + +- Bekijk de documentatie van het originele commando: + +`tldr example` +``` + +--- +### no + +```markdown +# example + +> Denne kommandoen er et alias for `example`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr example` +``` + +--- +### pl + +```markdown +# example + +> To polecenie jest aliasem `example`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr example` +``` + +--- +### pt_BR + +```markdown +# example + +> Este comando é um pseudônimo de `example`. + +- Ver documentação sobre o comando original: + +`tldr example` +``` + +--- +### pt_PT + +```markdown +# example + +> Este comando é um alias de `example`. + +- Ver documentação do comando original: + +`tldr example` +``` + +--- +### ro + +Not translated yet. + +--- +### ru + +```markdown +# example + +> Эта команда — псевдоним для `example`. + +- Смотри документацию для оригинальной команды: + +`tldr example` +``` + +--- +### sh + +Not translated yet. + +--- +### sr + +Not translated yet. + +--- +### sv + +```markdown +# example + +> Det här kommandot är ett alias för `example`. + +- Se dokumentationen för orginalkommandot: + +`tldr example` +``` + +--- +### ta + +```markdown +# example + +> இக்கட்டளை `example` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr example` +``` + +--- +### th + +```markdown +# example + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `example`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr example` +``` + +--- +### tr + +```markdown +# example + +> Bu komut `example` için bir takma addır. + +- Asıl komutun belgelerini görüntüleyin: + +`tldr example` +``` + +--- +### uk + +```markdown +# example + +> Ця команда є псевдонімом для `example`. + +- Дивись документацію для оригінальної команди: + +`tldr example` +``` + +--- +### uz + +Not translated yet. + +--- +### zh + +```markdown +# example + +> 这是 `example` 命令的一个别名。 + +- 原命令的文档在: + +`tldr example` +``` + +--- +### zh_TW + +```markdown +# example + +> 這是 `example` 命令的一個別名。 + +- 原命令的文件在: + +`tldr example` +``` diff --git a/contributing-guides/translation-templates/common-arguments.md b/contributing-guides/translation-templates/common-arguments.md new file mode 100644 index 00000000000000..ccdbf1a6561f69 --- /dev/null +++ b/contributing-guides/translation-templates/common-arguments.md @@ -0,0 +1,42 @@ +# Common arguments + +This page provides translations of commonly used arguments to simplify maintaining pages in foreign languages. +The best way to edit this file is by using [tableconvert.com](https://tableconvert.com/). +There, the old table can be **imported**, **edited** in a WYSIWYG editor and **exported** again. +Only the left-alignment of the header gets lost and has to be re-added again (`|----` → `|:---`). + +| en | path/to/file | path/to/directory | path/to/file_or_directory | package | username | +|:------|:---------------------|:-----------------------|:----------------------------------|:----------|:------------------| +| ar | المسار/إلى/الملف | المسار/إلى/الدليل | المسار/إلى/الملف_أو_الدليل | حزمة | اسم_المستخدم | +| bn | | | | | | +| bs | | | | | | +| ca | camí/al/fitxer | camí/al/directori | camí/al/fitxer_o_directori | paquet | nom_usuari | +| 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 | | | | | | +| 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 | +| it | percorso/del/file | percorso/della/directory | percorso/del/file_o_directory | pacchetto | | +| ja | ファイルパス | ディレクトリパス | ファイルパスまたはディレクトリパス | パッケージ | ユーザー名 | +| ko | 경로/대상/파일 | 경로/대상/폴더 | 경로/대상/파일_또는_폴더 | 패키지 | 사용자 명 | +| ml |ഫയലിലേക്കുള്ള/പാത |ഡയറക്ടറിയിലേക്കുള്ള/പാത |ഫയലിലേക്കോ_ഡയറക്ടറിയിലേക്കോ/ഉള്ള/പാത |പാക്കേജ് |ഉപയോക്തൃനാമം | +| ne | फाइल/को/पथ | निर्देशिका/को/पथ | फाइल_वा_निर्देशिका/को/पथ | प्याकेज | प्रयोगकर्ता_नाम | +| nl | pad/naar/bestand | pad/naar/directory | pad/naar/bestand_of_directory | | | +| 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 | | | | | | +| ro | | | | | | +| ru | путь/до/файла | путь/до/папки | путь/до/файла_или_папки | пакет | имя_пользователя | +| sh | | | | | | +| sr | | | | | | +| sv | sökväg/till/fil | sökväg/till/katalog | sökväg/till/fil_eller_katalog | paket | användarnamn | +| ta |பாதை/டு/கோப்பு |அடைவிற்குப்/பாதை |பாதை/டு/கோப்பு_அல்லது_அடைவு|நிரல்தொகுப்பு|பயனர்ப்பெயர் | +| th | ทาง/ไป/ไฟล์ | ทาง/ไป/สารบบ | ทาง/ไป/สารบบหรือไฟล์ | แพคเกจ | ชื่อผู้ใช้ | +| tr | dosya/yolu | dizin/yolu | dosya_veya_dizin/yolu | paket | kullanıcı_adı | +| uk | шлях/до/файлу | шлях/до/директорії | шлях/до/файлу_чи_директорії | пакунок | ім'я_користувача | +| uz | | | | | | +| zh | 路径/到/文件 | 路径/到/目录 | 路径/到/文件或目录 | 包 | 用户名 | +| zh_TW | 檔案/完整/路徑 | 目錄/完整/路徑 | 檔案或目錄/完整/路徑 | 套件 | 使用者名稱 | diff --git a/contributing-guides/translation-templates/subcommand-mention.md b/contributing-guides/translation-templates/subcommand-mention.md new file mode 100644 index 00000000000000..1c7225f3d7d1b7 --- /dev/null +++ b/contributing-guides/translation-templates/subcommand-mention.md @@ -0,0 +1,262 @@ +# Mentioning sub-commands + +When a command has a sub-command, which can't be covered in the original page, it gets its own page. +An example for this is `git` and it's sub-command pages like `git-commit`, `git-push`, etc. +In order to notify the user that such sub-command pages exist, we put a little notice in the base command's description. +This file contains the translation templates of this notice. + +[en](#en) • +[ar](#ar) • +[bn](#bn) • +[bs](#bs) • +[ca](#ca) • +[da](#da) • +[de](#de) • +[es](#es) • +[fa](#fa) • +[fr](#fr) • +[hi](#hi) • +[id](#id) • +[it](#it) • +[ja](#ja) • +[ko](#ko) • +[lo](#lo) • +[ml](#ml) • +[ne](#ne) • +[nl](#nl) • +[no](#no) • +[pl](#pl) • +[pt_BR](#pt_br) • +[pt_PT](#pt_pt) • +[ro](#ro) • +[ru](#ru) • +[sh](#sh) • +[sr](#sr) • +[sv](#sv) • +[ta](#ta) • +[th](#th) • +[tr](#tr) • +[uk](#uk) • +[uz](#uz) • +[zh](#zh) • +[zh_TW](#zh_tw) + +--- +### en + +```markdown +Some subcommands such as `example command` have their own usage documentation. +``` + +--- +### ar + +```markdown +بعض الأوامر الفرعية لديها توثيقات الاستخدام الخاصة بها مثل: `example command` +``` + +--- +### bn + +Not translated yet. + +--- +### bs + +Not translated yet. + +--- +### ca + +```markdown +Alguns subcomandaments com `example command` tenen la seva pròpia documentació. +``` + +--- +### da + +```markdown +Visse underkommandoer såsom `example command` har sin egen dokumentation. +``` + +--- +### de + +```markdown +Manche Unterbefehle wie `example command` sind separat dokumentiert. +``` + +--- +### es + +```markdown +Algunos subcomandos, como `example command`, tienen su propia documentación de uso. +``` + +--- +### fa + +Not translated yet. + +--- +### fr + +```markdown +Certaines sous-commandes comme `example command` ont leur propre documentation. +``` + +--- +### hi + +```markdown +कुछ कमांड्स जैसे की `example command`, उनके अपने उपयोग प्रलेखन हैं| +``` + +--- +### id + +```markdown +Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `example command`. +``` + +--- +### it + +```markdown +Alcuni comandi aggiuntivi, come `example command`, hanno la propria documentazione. +``` + +--- +### ja + +```markdown +`example command` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。 +``` + +--- +### ko + +Not translated yet. + +--- +### lo + +Not translated yet. + +--- +### ml + +Not translated yet. + +--- +### ne + +```markdown +केही उपादेशहरु जस्तै `example command` को आफ्नै प्रयोग कागजात हुन्छ। +``` + +--- +### nl + +```markdown +Sommige subcommando's zoals `example command` hebben een eigen documentatie pagina. +``` + +--- +### no + +Not translated yet. + +--- +### pl + +Not translated yet. + +--- +### pt_BR + +```markdown +Alguns subcomandos como `example command` tem sua própia documentação de uso. +``` + +--- +### pt_PT + +```markdown +Alguns subcomandos, como `example command`, tem a sua própria documentação de uso. +``` + +--- +### ro + +Not translated yet. + +--- +### ru + +```markdown +Некоторые подкоманды, такие как `example command`, имеют собственную документацию по использованию. +``` + +--- +### 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 +`example command` போன்ற சிலச் சார்கட்டளைகளுக்குத் தனிப் பக்கம் உள்ளது. +``` + +--- +### th + +Not translated yet. + +--- +### tr + +```markdown +`example command` gibi bazı alt komutların kendi kullanım belgeleri vardır. +``` + +--- +### uk + +```markdown +Певна підкоманда, як от `example command`, що має свою власну документацію. +``` + +--- +### uz + +Not translated yet. + +--- +### zh + +```markdown +此命令也有关于其子命令的文件,例如:`example command`. +``` + +--- +### zh_TW + +```markdown +此命令也有關於其子命令的文件,例如:`example command`. +``` diff --git a/images/SometypeMono-Medium.ttf b/images/SometypeMono-Medium.ttf new file mode 100644 index 00000000000000..483784632ff05c Binary files /dev/null and b/images/SometypeMono-Medium.ttf differ diff --git a/images/banner-light.png b/images/banner-light.png deleted file mode 100644 index 47031391f70e02..00000000000000 Binary files a/images/banner-light.png and /dev/null differ diff --git a/images/banner.png b/images/banner.png index e4542f813179da..f00a77b110b8fb 100644 Binary files a/images/banner.png and b/images/banner.png differ diff --git a/images/banner.svg b/images/banner.svg index b795640da4a80e..dbfa15a226ac30 100644 --- a/images/banner.svg +++ b/images/banner.svg @@ -1,13 +1,21 @@ - - - - - - - - - - - - - - - - - $_ - - - - - - tldr-pages - - - collaborative cheatsheets for console commands - - + ]]> + + + + + + + $_ + + + + tldr-pages + + + diff --git a/images/commit-suggestion-button.png b/images/commit-suggestion-button.png new file mode 100644 index 00000000000000..712a374c1dabaf Binary files /dev/null and b/images/commit-suggestion-button.png differ diff --git a/images/github-fetch-and-merge-button.png b/images/github-fetch-and-merge-button.png new file mode 100644 index 00000000000000..5e60d1ee404770 Binary files /dev/null and b/images/github-fetch-and-merge-button.png differ diff --git a/package-lock.json b/package-lock.json index cf6410c503ad4c..843664708f46f5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,12 +7,12 @@ "name": "tldr-pages", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { - "glob": "7.1.6", - "markdownlint-cli": "0.27.1", - "tldr-lint": "~0.0.11" + "glob": "7.2.0", + "markdownlint-cli": "^0.31.1", + "tldr-lint": "^0.0.13" }, "devDependencies": { - "husky": "^6.0.0" + "husky": "^7.0.4" } }, "node_modules/argparse": { @@ -21,9 +21,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "node_modules/balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "node_modules/brace-expansion": { "version": "1.1.11", @@ -35,11 +35,11 @@ } }, "node_modules/commander": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz", - "integrity": "sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", + "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==", "engines": { - "node": ">= 10" + "node": "^12.20.0 || >=14" } }, "node_modules/concat-map": { @@ -58,7 +58,10 @@ "node_modules/entities": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==" + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } }, "node_modules/fs.realpath": { "version": "1.0.0", @@ -66,17 +69,20 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "node_modules/get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -87,24 +93,30 @@ }, "engines": { "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/husky": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz", - "integrity": "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", "dev": true, "bin": { "husky": "lib/bin.js" }, + "engines": { + "node": ">=12" + }, "funding": { "url": "https://github.com/sponsors/typicode" } }, "node_modules/ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", + "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", "engines": { "node": ">= 4" } @@ -124,14 +136,17 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "engines": { + "node": ">=10" + } }, "node_modules/js-yaml": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", - "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dependencies": { "argparse": "^2.0.1" }, @@ -145,27 +160,17 @@ "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==" }, "node_modules/linkify-it": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.2.tgz", - "integrity": "sha512-gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", "dependencies": { "uc.micro": "^1.0.1" } }, - "node_modules/lodash.differencewith": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz", - "integrity": "sha1-uvr7yRi1UVTheRdqALsK76rIVLc=" - }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" - }, "node_modules/markdown-it": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.4.tgz", - "integrity": "sha512-34RwOXZT8kyuOJy25oJNJoulO8L0bTHYWXcdZBYZqFnjIy3NgjeoM3FmPXIOFQ26/lSHYMr8oc62B6adxXcb3Q==", + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", "dependencies": { "argparse": "^2.0.1", "entities": "~2.1.0", @@ -178,47 +183,54 @@ } }, "node_modules/markdownlint": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.23.1.tgz", - "integrity": "sha512-iOEwhDfNmq2IJlaA8mzEkHYUi/Hwoa6Ss+HO5jkwUR6wQ4quFr0WzSx+Z9rsWZKUaPbyirIdL1zGmJRkWawr4Q==", + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", + "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", "dependencies": { - "markdown-it": "12.0.4" + "markdown-it": "12.3.2" }, "engines": { - "node": ">=10" + "node": ">=12" } }, "node_modules/markdownlint-cli": { - "version": "0.27.1", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.27.1.tgz", - "integrity": "sha512-p1VV6aSbGrDlpUWzHizAnSNEQAweVR3qUI/AIUubxW7BGPXziSXkIED+uRtSohUlRS/jmqp3Wi4es5j6fIrdeQ==", + "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==", "dependencies": { - "commander": "~7.1.0", - "deep-extend": "~0.6.0", - "get-stdin": "~8.0.0", - "glob": "~7.1.6", - "ignore": "~5.1.8", - "js-yaml": "^4.0.0", + "commander": "~9.0.0", + "get-stdin": "~9.0.0", + "glob": "~7.2.0", + "ignore": "~5.2.0", + "js-yaml": "^4.1.0", "jsonc-parser": "~3.0.0", - "lodash.differencewith": "~4.5.0", - "lodash.flatten": "~4.4.0", - "markdownlint": "~0.23.1", - "markdownlint-rule-helpers": "~0.14.0", - "minimatch": "~3.0.4", - "minimist": "~1.2.5", - "rc": "~1.2.8" + "markdownlint": "~0.25.1", + "markdownlint-rule-helpers": "~0.16.0", + "minimatch": "~3.0.5", + "run-con": "~1.2.10" }, "bin": { "markdownlint": "markdownlint.js" }, "engines": { - "node": ">=10" + "node": ">=12" + } + }, + "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" + }, + "engines": { + "node": "*" } }, "node_modules/markdownlint-rule-helpers": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.14.0.tgz", - "integrity": "sha512-vRTPqSU4JK8vVXmjICHSBhwXUvbfh/VJo+j7hvxqe15tLJyomv3FLgFdFgb8kpj0Fe8SsJa/TZUAXv7/sN+N7A==" + "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", @@ -226,9 +238,9 @@ "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" }, "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", + "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -237,9 +249,9 @@ } }, "node_modules/minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "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", @@ -257,34 +269,37 @@ "node": ">=0.10.0" } }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "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==", "dependencies": { "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "ini": "~2.0.0", + "minimist": "^1.2.5", + "strip-json-comments": "~3.1.1" }, "bin": { - "rc": "cli.js" + "run-con": "cli.js" } }, "node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "engines": { - "node": ">=0.10.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/tldr-lint": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.11.tgz", - "integrity": "sha512-WRMcQlweUyVYtDPFxHZ1XVh96BNdZq0a3xVc9FnNQdqKtOLkJ5YFgjkPINleprCmjHRCMaUI2T7wFLCfcdZT6g==", + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.13.tgz", + "integrity": "sha512-xPIg5465dypL4szZpUmQMenFF8uMnI0Fq6h2CADMso47w8xe5zZVrn7TSocd3I5mZxJDqxNoGG82g1Kzvz1wdA==", "dependencies": { - "commander": "^7.0.0" + "commander": "^8.1.0" }, "bin": { "tldr-lint": "lib/tldr-lint-cli.js", @@ -292,11 +307,11 @@ } }, "node_modules/tldr-lint/node_modules/commander": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz", - "integrity": "sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==", + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "engines": { - "node": ">= 10" + "node": ">= 12" } }, "node_modules/uc.micro": { @@ -317,9 +332,9 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" }, "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" }, "brace-expansion": { "version": "1.1.11", @@ -331,9 +346,9 @@ } }, "commander": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz", - "integrity": "sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==" + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", + "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==" }, "concat-map": { "version": "0.0.1", @@ -356,14 +371,14 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "get-stdin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", - "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==" }, "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", @@ -374,15 +389,15 @@ } }, "husky": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/husky/-/husky-6.0.0.tgz", - "integrity": "sha512-SQS2gDTB7tBN486QSoKPKQItZw97BMOd+Kdb6ghfpBc0yXyzrddI0oDV5MkDAbuB4X2mO3/nj60TRMcYxwzZeQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/husky/-/husky-7.0.4.tgz", + "integrity": "sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==", "dev": true }, "ignore": { - "version": "5.1.8", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", - "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + "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", @@ -399,14 +414,14 @@ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" }, "js-yaml": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.0.0.tgz", - "integrity": "sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "requires": { "argparse": "^2.0.1" } @@ -417,27 +432,17 @@ "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==" }, "linkify-it": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.2.tgz", - "integrity": "sha512-gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", + "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", "requires": { "uc.micro": "^1.0.1" } }, - "lodash.differencewith": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.differencewith/-/lodash.differencewith-4.5.0.tgz", - "integrity": "sha1-uvr7yRi1UVTheRdqALsK76rIVLc=" - }, - "lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=" - }, "markdown-it": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.0.4.tgz", - "integrity": "sha512-34RwOXZT8kyuOJy25oJNJoulO8L0bTHYWXcdZBYZqFnjIy3NgjeoM3FmPXIOFQ26/lSHYMr8oc62B6adxXcb3Q==", + "version": "12.3.2", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", + "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", "requires": { "argparse": "^2.0.1", "entities": "~2.1.0", @@ -447,38 +452,44 @@ } }, "markdownlint": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.23.1.tgz", - "integrity": "sha512-iOEwhDfNmq2IJlaA8mzEkHYUi/Hwoa6Ss+HO5jkwUR6wQ4quFr0WzSx+Z9rsWZKUaPbyirIdL1zGmJRkWawr4Q==", + "version": "0.25.1", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", + "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", "requires": { - "markdown-it": "12.0.4" + "markdown-it": "12.3.2" } }, "markdownlint-cli": { - "version": "0.27.1", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.27.1.tgz", - "integrity": "sha512-p1VV6aSbGrDlpUWzHizAnSNEQAweVR3qUI/AIUubxW7BGPXziSXkIED+uRtSohUlRS/jmqp3Wi4es5j6fIrdeQ==", + "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==", "requires": { - "commander": "~7.1.0", - "deep-extend": "~0.6.0", - "get-stdin": "~8.0.0", - "glob": "~7.1.6", - "ignore": "~5.1.8", - "js-yaml": "^4.0.0", + "commander": "~9.0.0", + "get-stdin": "~9.0.0", + "glob": "~7.2.0", + "ignore": "~5.2.0", + "js-yaml": "^4.1.0", "jsonc-parser": "~3.0.0", - "lodash.differencewith": "~4.5.0", - "lodash.flatten": "~4.4.0", - "markdownlint": "~0.23.1", - "markdownlint-rule-helpers": "~0.14.0", - "minimatch": "~3.0.4", - "minimist": "~1.2.5", - "rc": "~1.2.8" + "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" + } + } } }, "markdownlint-rule-helpers": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.14.0.tgz", - "integrity": "sha512-vRTPqSU4JK8vVXmjICHSBhwXUvbfh/VJo+j7hvxqe15tLJyomv3FLgFdFgb8kpj0Fe8SsJa/TZUAXv7/sN+N7A==" + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.16.0.tgz", + "integrity": "sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==" }, "mdurl": { "version": "1.0.1", @@ -486,17 +497,17 @@ "integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=" }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.1.tgz", + "integrity": "sha512-reLxBcKUPNBnc/sVtAbxgRVFSegoGeLaSjmphNhcwcolhYLRgtJscn5mRl6YRZNQv40Y7P6JM2YhSIsbL9OB5A==", "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" }, "once": { "version": "1.4.0", @@ -511,34 +522,34 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "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==", "requires": { "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "ini": "~2.0.0", + "minimist": "^1.2.5", + "strip-json-comments": "~3.1.1" } }, "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" }, "tldr-lint": { - "version": "0.0.11", - "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.11.tgz", - "integrity": "sha512-WRMcQlweUyVYtDPFxHZ1XVh96BNdZq0a3xVc9FnNQdqKtOLkJ5YFgjkPINleprCmjHRCMaUI2T7wFLCfcdZT6g==", + "version": "0.0.13", + "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.13.tgz", + "integrity": "sha512-xPIg5465dypL4szZpUmQMenFF8uMnI0Fq6h2CADMso47w8xe5zZVrn7TSocd3I5mZxJDqxNoGG82g1Kzvz1wdA==", "requires": { - "commander": "^7.0.0" + "commander": "^8.1.0" }, "dependencies": { "commander": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.1.0.tgz", - "integrity": "sha512-pRxBna3MJe6HKnBGsDyMv8ETbptw3axEdYHoqNh7gu5oDcew8fs0xnivZGm06Ogk8zGAJ9VX+OPEr2GXEQK4dg==" + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" } } }, diff --git a/package.json b/package.json index 090f38a4bd8283..74853ad53f9c2e 100644 --- a/package.json +++ b/package.json @@ -6,12 +6,12 @@ "repository": "tldr-pages/tldr", "homepage": "https://tldr.sh/", "dependencies": { - "glob": "7.1.6", - "markdownlint-cli": "0.27.1", - "tldr-lint": "~0.0.11" + "glob": "7.2.0", + "markdownlint-cli": "^0.31.1", + "tldr-lint": "^0.0.13" }, "devDependencies": { - "husky": "^6.0.0" + "husky": "^7.0.4" }, "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 00000000000000..2eccbb7509296f --- /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 00000000000000..6953574f5cde8b --- /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 00000000000000..3bd1cb91c96c65 --- /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 00000000000000..ea793663dbf00c --- /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 00000000000000..84895ac7d76718 --- /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 00000000000000..7b2e2bc2a950e3 --- /dev/null +++ b/pages.ar/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> هذا الأمر هو اسم مستعار لـ `crontab`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr crontab` diff --git a/pages.ar/common/fastmod.md b/pages.ar/common/fastmod.md new file mode 100644 index 00000000000000..dfba1423ed8cf3 --- /dev/null +++ b/pages.ar/common/fastmod.md @@ -0,0 +1,29 @@ +# fastmod + +> أداة للاستبدال الجزئي للنصوص في قاعدة الأكواد لديك. +> التعبيرات النمطية يعالجها قفص من بضاعة رست وهو regex. +> لمزيد من التفاصيل: . + +- استبدال بالتعبيرات النمطية في كل ملفات المسار الحالي وأبنائه في الملفات غير المُتجاهلة بـ .ignore أو .gitignore: + +`fastmod {{تعبير_نمطي}} {{بديل}}` + +- استبدال متجاهلا حالة الحرف في ملف أو في ملفات مسار: + +`fastmod --ignore-case {{تعبير_نمطي}} {{بديل}} -- {{مسار/الـ/ملف مسار/الـ/السجل ...}}` + +- استبدال بالتعبيرات النمطية مع تحديد المكان الذي يُستبدل فيه: + +`fastmod {{تعبير_نمطي}} {{بديل}} --dir {{مسار/للـ/سجل}} --iglob {{'**/*.{js,json}'}}` + +- استبدال بالنص مُطابقةً (وليس التعبيرات النمطية)، في ملفات امتداداتهم إما js أو json فحسب: + +`fastmod --fixed-strings {{نص_مطابِق}} {{بديل}} -e {{json,js}}` + +- استبدال بجميع النصوص مُطابقةً، مباشرة دون مِحَثِّ تأكيد (prompt): + +`fastmod --accept-all --fixed-strings {{نص_مطابِق}} {{بديل}}` + +- استبدال بجميع النصوص مُطابقةً، مباشرة دون تأكيد، مع طباعة الملفات المُستبدل فيها: + +`fastmod --accept-all --print-changed-files --fixed-strings {{نص_مطابِق}} {{بديل}}` diff --git a/pages.ar/common/fossil-ci.md b/pages.ar/common/fossil-ci.md new file mode 100644 index 00000000000000..63ddb0e88fd7b4 --- /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 00000000000000..00974671c26a89 --- /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 00000000000000..5d034c6bd9c50e --- /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 00000000000000..6f2d22adb70cef --- /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 00000000000000..320a61b029776c --- /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 00000000000000..1f6704e1ab7829 --- /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 00000000000000..c84e0451966510 --- /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 00000000000000..b89aea96752eac --- /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 00000000000000..32e24ab3540e57 --- /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 00000000000000..3eddc79fff4bd3 --- /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 00000000000000..8a7da9c444a577 --- /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 00000000000000..5d0737f3f9032e --- /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 00000000000000..610aee6f95254c --- /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 00000000000000..e5e95f4e8b784d --- /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 00000000000000..0e410e32341d66 --- /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 00000000000000..79d4fbb886e787 --- /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 00000000000000..91bc6fb5263a74 --- /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 00000000000000..ee04fb3ce2e79a --- /dev/null +++ b/pages.ar/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> هذا الأمر هو اسم مستعار لـ `musescore`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr musescore` diff --git a/pages.ar/common/newsboat.md b/pages.ar/common/newsboat.md new file mode 100644 index 00000000000000..57e6cfa174bb3d --- /dev/null +++ b/pages.ar/common/newsboat.md @@ -0,0 +1,24 @@ +# newsboat + +> هو قارئ خلاصة آر إس إس للطرفية أو الكونسول. +> لمزيد من التفاصيل: . + +- إستيراد روابط الخلاصات من ملف OPML: + +`newsboat -i {{الخلاصات.xml}}` + +- إضافة روابط الخلاصات يدوياً: + +`echo {{http://مثال.com/الخلاصة/إلي/المسار}} >> "${HOME}/.newsboat/urls"` + +- إبدأ newsboat وقم بتحديث كل الخلاصات عند بدء التشغيل: + +`newsboat -r` + +- نفذ أمر أو عدة أوامر مفصولة بمسافات بدون الحاجة إلي فتح newsboat: + +`newsboat -x {{reload print-unread ...}}` + +- انظر إختصارات لوحة المفاتيح (الإختصارت الأكثر شيوعاً مرئية في شريط الحالة): + +`?` diff --git a/pages.ar/common/nm-classic.md b/pages.ar/common/nm-classic.md new file mode 100644 index 00000000000000..71bf53a472c3d8 --- /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 00000000000000..20bfaa87e2bb4b --- /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 00000000000000..ae38c3b844fc71 --- /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 00000000000000..57399fccd31c3c --- /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 00000000000000..1c0d26a605001a --- /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 00000000000000..f76962549cad20 --- /dev/null +++ b/pages.ar/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> هذا الأمر هو اسم مستعار لـ `ptpython`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr ptpython` diff --git a/pages.ar/common/python3.md b/pages.ar/common/python3.md new file mode 100644 index 00000000000000..0969d6a82ee586 --- /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 00000000000000..f1f7a2c1bb7e03 --- /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 00000000000000..d5cd99082172df --- /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 00000000000000..0315c1aa57c65e --- /dev/null +++ b/pages.ar/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> هذا الأمر هو اسم مستعار لـ `rg`. + +- إعرض التوثيقات للأمر الأصلي: + +`tldr rg` diff --git a/pages.ar/common/rmdir.md b/pages.ar/common/rmdir.md new file mode 100644 index 00000000000000..dd63c539de3a06 --- /dev/null +++ b/pages.ar/common/rmdir.md @@ -0,0 +1,12 @@ +# rmdir + +> يزيل الدليل. +> لمزيد من التفاصيل: . + +- إزالة الدليل الفارغ. استخدم `rm -r` لإزالة الدلائل الغير فارغة: + +`rmdir {{المسار/إلى/الدليل}}` + +- إزالة الدليل المحدد ودلائله الأصلية (مفيد للدلائل المتداخلة): + +`rmdir -p {{المسار/إلى/الدليل}}` diff --git a/pages.ar/common/robo.md b/pages.ar/common/robo.md new file mode 100644 index 00000000000000..576bae5caa74e5 --- /dev/null +++ b/pages.ar/common/robo.md @@ -0,0 +1,16 @@ +# robo + +> مشغل مهام PHP. +> لمزيد من التفاصيل: . + +- عرض قائمة الأوامر المتوفرة: + +`robo list` + +- تشغيل أمر محدد: + +`robo {{الأمر}}` + +- محاكاة تشغيل أمر محدد: + +`robo --simulate {{الأمر}}` diff --git a/pages.ar/common/tldrl.md b/pages.ar/common/tldrl.md new file mode 100644 index 00000000000000..064f8c8cd7353d --- /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 00000000000000..abd27803eaacae --- /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 00000000000000..db48e20c934e85 --- /dev/null +++ b/pages.ar/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> هذا الأمر هو اسم مستعار لـ `todo`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr todo` diff --git a/pages.ar/common/tox.md b/pages.ar/common/tox.md new file mode 100644 index 00000000000000..3c4a20a7a1ca26 --- /dev/null +++ b/pages.ar/common/tox.md @@ -0,0 +1,25 @@ +# tox + +> أتمتة اختبارات بايثون عبر إصدارات بايثون متعددة. +> استخدم tox.ini لضبط البيئات وأمر الاختبار. +> لمزيد من التفاصيل: . + +- بدء الاختبارات على جميع بيئات الاختبار: + +`tox` + +- إنشاء ملف الإعدادات `tox.ini`: + +`tox-quickstart` + +- عرض قائمة جميع البيئات المتوفرة: + +`tox --listenvs-all` + +- بدء الاختبارات على بيئة معينة (مثال: بايثون 3.6): + +`tox -e {{py36}}` + +- إجبار إعادة إنشاء البيئة الافتراضية: + +`tox --recreate -e {{py27}}` diff --git a/pages.ar/common/transmission.md b/pages.ar/common/transmission.md new file mode 100644 index 00000000000000..ce17320fe69adf --- /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 00000000000000..0f95bace6a547b --- /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 00000000000000..29cd0c7aa3cfa5 --- /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 00000000000000..bce863cf223fcd --- /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 00000000000000..d55f3849e5b023 --- /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 00000000000000..41b52ccb097f37 --- /dev/null +++ b/pages.ar/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> هذا الأمر هو اسم مستعار لـ `update-alternatives`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr update-alternatives` diff --git a/pages.ar/linux/apt-get.md b/pages.ar/linux/apt-get.md new file mode 100644 index 00000000000000..6dc3bacb8148a6 --- /dev/null +++ b/pages.ar/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt + +> أداة إدارة الحزم لديبيان وأوبونتو. +> ابحث عن الحزم باستخدام `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.ar/linux/apt.md b/pages.ar/linux/apt.md new file mode 100644 index 00000000000000..a902d7b6304f69 --- /dev/null +++ b/pages.ar/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> أداة إدارة الحزم للتوزيعات القائمة على ديبيان. +> بديل لـ `apt-get` عند الاستخدام الفعال في إصدارات أوبونتو 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.ar/linux/batcat.md b/pages.ar/linux/batcat.md new file mode 100644 index 00000000000000..f3088c5999d2de --- /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 00000000000000..20d86b8dc346ce --- /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 00000000000000..0729f8a7a662e2 --- /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 00000000000000..20ce378543cfa6 --- /dev/null +++ b/pages.ar/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> هذا الأمر هو اسم مستعار لـ `cgclassify`. +> لمزيد من التفاصيل: . + +- إعرض التوثيقات للأمر الأصلي: + +`tldr cgclassify` diff --git a/pages.ar/linux/dockerd.md b/pages.ar/linux/dockerd.md new file mode 100644 index 00000000000000..b621fad83fa76a --- /dev/null +++ b/pages.ar/linux/dockerd.md @@ -0,0 +1,24 @@ +# dockerd + +> هي عملية مستمرة تعمل في الخلفية تبدأها لتتحكم في حاويات الدوكر. +> لمزيد من التفاصيل: . + +- قم بتشغيل دوكر في الخلفية: + +`dockerd` + +- قم بتشغيل دوكر في الخلفية واجعله يستمع علي منفذ معين (يونكس وبروتوكول ضبط الإرسال): + +`dockerd --host unix://{{السوكيت/إلي/المسار}} --host tcp://{{ip}}` + +- قم بتشغيل دوكر في الخلفية برقم عملية معين: + +`dockerd --pidfile {{ملف_رقم_العملية/إلي/المسار}}` + +- قم بتشغيل دوكر في وضع التصحيح واكتشاف الأخطاء: + +`dockerd --debug` + +- قم بتشغيل دوكر وحدد له مستوي سجل معين: + +`dockerd --log-level={{debug|info|warn|error|fatal}}` diff --git a/pages.ar/linux/gpasswd.md b/pages.ar/linux/gpasswd.md new file mode 100644 index 00000000000000..806893c30f8971 --- /dev/null +++ b/pages.ar/linux/gpasswd.md @@ -0,0 +1,24 @@ +# gpasswd + +> إدارة `/etc/group` و `/etc/gshadow`. +> لمزيد من التفاصيل: . + +- عرّف مديرين المجموعة المسماة: + +`sudo gpasswd -A {{مدير 2, مدير 1}} {{مجموعة}}` + +- عين أعضاء المجموعة المسماة: + +`sudo gpasswd -M {{عضو 2, عضو 1}} {{مجموعة}}` + +- إنشئ رقم سري للمجموعة المسماة: + +`gpasswd {{مجموعة}}` + +- أضف عضو إلي المجموعة المسماة: + +`gpasswd -a {{عضو}} {{مجموعة}}` + +- إحذف عضو من المجموعة المسماة: + +`gpasswd -d {{عضو}} {{مجموعة}}` diff --git a/pages.ar/linux/ip-route-list.md b/pages.ar/linux/ip-route-list.md new file mode 100644 index 00000000000000..1e8a95ae18fc21 --- /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 00000000000000..d5a20c8f1f093a --- /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 00000000000000..36dc5d5b07a880 --- /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 00000000000000..af0eb3b4ff3677 --- /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/linux/xclip.md b/pages.ar/linux/xclip.md new file mode 100644 index 00000000000000..1ccd33275150f4 --- /dev/null +++ b/pages.ar/linux/xclip.md @@ -0,0 +1,37 @@ +# xclip + +> أداة معالجة لحافظة x11، تشبه إلي حد ما `xsel`. +> تتعامل مع الحافظة الأولية والثانوية لـ x، بالإضافة إلي حافظة النظام (`Ctrl + C`/`Ctrl + V`). +> لمزيد من التفاصيل: . + +- إنسخ ناتج الخرج من أمر إلي حافظة x11 الأولية: + +`echo 123 | xclip` + +- إنسخ ناتج الخرج من أمر إلي الحافظة المختارة: + +`echo 123 | xclip -selection {{primary|secondary|clipboard}}` + +- إنسخ ناتج الخرج من أمر إلي حافظة النظام، باستخدام الصيغة المختصرة: + +`echo 123 | xclip -sel clip` + +- إنسخ محتوي ملف إلي حافظة النظام: + +`xclip -sel clip {{اسم_الملف.txt}}` + +- إنسخ محتوي صورة بصيغة PNG إلي حافظة النظام (يمكن أن تستخدم في أي برنامج عن طريق لصق): + +`xclip -sel clip -t image/png {{اسم_الملف.png}}` + +- إنسخ إدخال المستخدم في الطرفية أو الكونسول إلي حافظة النظام: + +`xclip -i` + +- إلصق محتوي حافظة x11 الأولية إلي الطرفية أو الكونسول: + +`xclip -o` + +- إلصق محتوي حافظة النظام إلي الطرفية أو الكونسول: + +`xclip -o -sel clip` diff --git a/pages.ar/osx/aa.md b/pages.ar/osx/aa.md new file mode 100644 index 00000000000000..28a57fd3b7ceb8 --- /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 00000000000000..437dafa7aa0d00 --- /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 00000000000000..6779a717a5e948 --- /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 00000000000000..af90ecbb1b4a0a --- /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 00000000000000..ab8c98f3ae03fc --- /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 00000000000000..650ac512445242 --- /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 00000000000000..43359c780b0d84 --- /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 00000000000000..1036c05fe9afc0 --- /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 00000000000000..61a30ae3dc0ed6 --- /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 00000000000000..bee8b5cafe66a7 --- /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 00000000000000..78cc876096c729 --- /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 00000000000000..121621daaf2c1b --- /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 00000000000000..9092ab4f126785 --- /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 00000000000000..3d38a593f657a6 --- /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 00000000000000..87a623c5fcb0ad --- /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 00000000000000..a9615e2714525f --- /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 00000000000000..df0b1539c386f4 --- /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 00000000000000..44c6cb0bad9d59 --- /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 00000000000000..13988a5c165d6f --- /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 00000000000000..216aada115e696 --- /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 00000000000000..55075594b21bcb --- /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 00000000000000..0c58018faed1db --- /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 00000000000000..f857b150b14bac --- /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 00000000000000..a07be24e2fd9fc --- /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 00000000000000..4bada346f088d9 --- /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 00000000000000..792279cacd9ee8 --- /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 00000000000000..1374e36b500cdc --- /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 00000000000000..2a587b26da8b20 --- /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 00000000000000..cc14fe9f59970e --- /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 00000000000000..c6b344ba18dfa7 --- /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 00000000000000..ca903f1fcae565 --- /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 00000000000000..e64c267476a736 --- /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 00000000000000..3620a7d37bd23b --- /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 00000000000000..260ab280aef06a --- /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 00000000000000..2ca2b7a2dc800c --- /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 00000000000000..59511e36e453aa --- /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 00000000000000..12046e3d2b1057 --- /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 00000000000000..861fd3d115e79b --- /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 00000000000000..934de14b8eb3ac --- /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 00000000000000..63e54d368e02d0 --- /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 00000000000000..b00397639c96af --- /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 00000000000000..60b77f9e14252d --- /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 00000000000000..cb59db5fbe3b8f --- /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 00000000000000..9fe474d8d5f7ac --- /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 00000000000000..d9e89313079b90 --- /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 00000000000000..17d193a3dfa3df --- /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 00000000000000..dafecd977d3e24 --- /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 00000000000000..9c7f11998bf022 --- /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 00000000000000..2c50cd49341abb --- /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 00000000000000..7d732dd644ded2 --- /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 00000000000000..25fd4c1c9084ad --- /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 00000000000000..3c450c7b3fc259 --- /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 00000000000000..3f25bdfbcb8f78 --- /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 00000000000000..3dc72c229b5693 --- /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 00000000000000..b3fe401a210af5 --- /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 00000000000000..b3c389a4dadd10 --- /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 00000000000000..b2ae9f174c88bd --- /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 00000000000000..89bfe684224947 --- /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 00000000000000..602311228e84a5 --- /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 00000000000000..8366a684ff9e85 --- /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 00000000000000..fbd07005ce8ef6 --- /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 00000000000000..fdcc21a970b8d9 --- /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 00000000000000..45bbe2ccc78874 --- /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 00000000000000..2796b64f23407f --- /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 00000000000000..9ae12bb504351b --- /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 00000000000000..4c6a36d09771ca --- /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 00000000000000..63048a9d313b6e --- /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 00000000000000..6e8c5530144312 --- /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 00000000000000..8a40123d03d20e --- /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 00000000000000..da95b02eef05b7 --- /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 00000000000000..add485404eede7 --- /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 00000000000000..ee08a8b24f0827 --- /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 00000000000000..899c9027081f1c --- /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 00000000000000..4f6cff28fb5dc2 --- /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 00000000000000..e8b2a9857c87ba --- /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 00000000000000..8be1c253d8f80d --- /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 00000000000000..caa8c407fb87d9 --- /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 00000000000000..bd3dd873e31bbd --- /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 00000000000000..9c331251f78a41 --- /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 00000000000000..6f6210079e6be5 --- /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 00000000000000..74a7dbc0e11125 --- /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 00000000000000..2f9c87377c9d6a --- /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 00000000000000..fe92afeba1c775 --- /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 00000000000000..489dc2d5501e84 --- /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 00000000000000..98ef2b8627b546 --- /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 00000000000000..dffe0da2e1a559 --- /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 00000000000000..c81e068425a03c --- /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 00000000000000..12851638aa1a6f --- /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 00000000000000..05dcaaece2e5ec --- /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 00000000000000..e105e39049ca72 --- /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 00000000000000..90ae5a6ac783f2 --- /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 00000000000000..e27443461cc533 --- /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 00000000000000..6328aad9874d00 --- /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 00000000000000..93ccc386ac981c --- /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 00000000000000..caa141e0f58867 --- /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 00000000000000..5d919da87fd88d --- /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 00000000000000..62c3e42570f324 --- /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 00000000000000..2564c057b4279a --- /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 00000000000000..f12c0ff28cfa3b --- /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 00000000000000..afde382c566eaa --- /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 00000000000000..769eb536b4e219 --- /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 00000000000000..92699eaac0c9bb --- /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 00000000000000..ded8057c7151df --- /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 00000000000000..64a69a25aedf52 --- /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 00000000000000..f5dd8ed3b9dfd8 --- /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 00000000000000..6ce0fc7e993b86 --- /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 00000000000000..ba7cfb6d117ea0 --- /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 00000000000000..ec94252a84f779 --- /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 00000000000000..c2495766ecb21f --- /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 00000000000000..870b356b29f6d6 --- /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 00000000000000..7d1cf08ab85338 --- /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 00000000000000..f1ecd7e6fc8508 --- /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 00000000000000..27fa8d2dc6636f --- /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 00000000000000..6c7d04079e5adf --- /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 00000000000000..bba9b4a03b4fb4 --- /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 00000000000000..040cd8a76bc36d --- /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 00000000000000..2cbbb7045d32b2 --- /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 00000000000000..5e7f6745a26716 --- /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 00000000000000..767956dc8b1054 --- /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 00000000000000..782d243b7a4500 --- /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 00000000000000..35f9ebca018af4 --- /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 00000000000000..1cdb14fe8ed1cd --- /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 00000000000000..9884f6d90a9a60 --- /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 00000000000000..63ba50b6814cb7 --- /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 00000000000000..412cacec0efada --- /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 00000000000000..f88dbecad3c136 --- /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 00000000000000..181ae0a56fd47b --- /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 00000000000000..fcb9d1a0fb01e0 --- /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 00000000000000..ea67a4bbac5541 --- /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 00000000000000..f2ea7ec53f9ea4 --- /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 00000000000000..9a625a97a326f1 --- /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 00000000000000..37b41fd923d549 --- /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 00000000000000..ecd6abd10ff372 --- /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 00000000000000..1be0494878e68d --- /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 00000000000000..0ec1e7f698e4bc --- /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 00000000000000..45ca03df305615 --- /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 00000000000000..1c4e3f6b22f94d --- /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 00000000000000..9a4fd68fdcc75c --- /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 00000000000000..5856300294c4ac --- /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 00000000000000..018a147d225f7a --- /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 00000000000000..99c60e32685fc6 --- /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 00000000000000..44ffb045ea2559 --- /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 00000000000000..a851885863c9bc --- /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 00000000000000..081c5e54b38727 --- /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 00000000000000..5b0559bd260c83 --- /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 00000000000000..4030f66bd52a16 --- /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 00000000000000..4cde90da8876e5 --- /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 00000000000000..ea304a61fd2d46 --- /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 00000000000000..3ee5049dd3af80 --- /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 00000000000000..458a575453d9ad --- /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 00000000000000..65c15560ce044a --- /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 00000000000000..181bbcc3692b75 --- /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 00000000000000..ddc9110380781c --- /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 00000000000000..382619d685a70c --- /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 00000000000000..c7ba714ccac97a --- /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 new file mode 100644 index 00000000000000..248ec6c3ce9572 --- /dev/null +++ b/pages.bn/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> অ্যান্ড্রয়েড সার্ভিস ম্যানেজার। +> আরও তথ্য পাবেন: . + +- প্রতিটি চলমান পরিষেবা তালিকা করুন: + +`cmd -l` + +- একটি নির্দিষ্ট পরিষেবা কল করুন: + +`cmd {{অ্যালার্ম}}` + +- আর্গুমেন্টসহ সহ একটি পরিষেবা কল করুন: + +`cmd {{ভাইব্রেটর}} {{ভাইব্রেটর ৩০০}}` diff --git a/pages.bn/android/dalvikvm.md b/pages.bn/android/dalvikvm.md new file mode 100644 index 00000000000000..fb40b9b581cad2 --- /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 00000000000000..f04bb5a9842b49 --- /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 00000000000000..9a46627c1697b8 --- /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 00000000000000..1cc24f1ca572ed --- /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 00000000000000..425a89000049a8 --- /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 00000000000000..9d7c2757475ef5 --- /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 00000000000000..e8d04bf784140e --- /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 00000000000000..b9369124f41ad5 --- /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 00000000000000..ebc3f2e5fa176d --- /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 00000000000000..51a76d3300673c --- /dev/null +++ b/pages.bn/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রীন সম্পর্কে তথ্য দেখান। +> এই কমান্ডটি শুধুমাত্র `adb shell` এর মাধ্যমে ব্যবহার করা যেতে পারে। +> আরও তথ্য পাবেন: . + +- একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রিনের শারীরিক আকার প্রদর্শন করুন: + +`wm {{আকার}}` + +- একটি অ্যান্ড্রয়েড ডিভাইসের স্ক্রিনের শারীরিক ঘনত্ব প্রদর্শন করুন: + +`wm {{ঘনত্ব}}` diff --git a/pages.bn/common/git-cherry-pick.md b/pages.bn/common/git-cherry-pick.md new file mode 100644 index 00000000000000..27108a8310147f --- /dev/null +++ b/pages.bn/common/git-cherry-pick.md @@ -0,0 +1,21 @@ +# git cherry-pick + +> বিদ্যমান কমিট দ্বারা প্রবর্তিত পরিবর্তনগুলি বর্তমান ব্র্যাঞ্চে প্রয়োগ করুন। +> অন্য ব্র্যাঞ্চে পরিবর্তনগুলি প্রয়োগ করতে, প্রথমে পছন্দসই ব্র্যাঞ্চে স্যুইচ করতে `git checkout` ব্যবহার করুন। +> আরও তথ্য পাবেন: . + +- বর্তমান ব্র্যাঞ্চে কমিট করুন: + +`git cherry-pick {{কমিট}}` + +- বর্তমান ব্র্যাঞ্চে বিভিন্ন ধরনের কমিট করুন (এছাড়াও দেখুন 'git rebase --onto`): + +`git cherry-pick {{শুরুর_কমিট}}~..{{শেষের_কমিট}}` + +- বর্তমান ব্র্যাঞ্চে একাধিক (অ-ক্রমিক) কমিট করুন: + +`git cherry-pick {{কমিট_১}} {{কমিট_২}}` + +- কমিট তৈরি না করেই ওয়ার্কিং ডিরেক্টরিতে কমিটের পরিবর্তন যোগ করুন: + +`git cherry-pick -n {{কমিট}}` diff --git a/pages.bn/linux/apt.md b/pages.bn/linux/apt.md new file mode 100644 index 00000000000000..0392f2bb016a29 --- /dev/null +++ b/pages.bn/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> ডেবিয়ান ভিত্তিক ডিস্ট্রিবিউশনের জন্য প্যাকেজ ম্যানেজমেন্ট ইউটিলিটি। +> ইন্টারেক্টিভভাবে ব্যবহৃত হলে উবুন্টু সংস্করণ 16.04 এবং তার পরবর্তী সংস্করনের জন্য `apt-get` এর পরিবরতে রেকোমেন্ডেড প্রতিস্থাপন। +> আরও তথ্য পাবেন: . + +- উপলভ্য প্যাকেজ এবং সংস্করণের তালিকা আপডেট করুন (অন্যান্য `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.bn/linux/snap.md b/pages.bn/linux/snap.md new file mode 100644 index 00000000000000..6c5737b47e6da1 --- /dev/null +++ b/pages.bn/linux/snap.md @@ -0,0 +1,37 @@ +# snap + +> "স্ন্যাপ" স্বয়ংসম্পূর্ণ সফটওয়্যার প্যাকেজসমুহ পরিচালনার জন্য একটি টুল। +> এটি ".deb" এর জন্য `apt` এর অনুরূপ। +> আরও তথ্য পাবেন: . + +- একটি প্যাকেজ অনুসন্ধান করুন: + +`snap find {{প্যাকেজের_নাম}}` + +- একটি প্যাকেজ ইনস্টল করুন: + +`snap install {{প্যাকেজের_নাম}}` + +- একটি প্যাকেজ আপডেট করুন: + +`snap refresh {{প্যাকেজের_নাম}}` + +- অন্য চ্যানেলে একটি প্যাকেজ আপডেট করুন (ট্র্যাক, রিস্ক বা ব্র্যাঞ্চ): + +`snap refresh {{প্যাকেজের_নাম}} --channel={{চ্যানেল}}` + +- সমস্ত প্যাকেজ আপডেট করুন: + +`snap refresh` + +- ইনস্টল করা স্ন্যাপ সফটওয়্যার সম্পর্কে প্রাথমিক তথ্য প্রদর্শন করুন: + +`snap list` + +- একটি প্যাকেজ আনইনস্টল করুন: + +`snap remove {{প্যাকেজের_নাম}}` + +- সিস্টেমে সাম্প্রতিক স্ন্যাপ পরিবর্তনের জন্য পরীক্ষা করুন: + +`snap changes` diff --git a/pages.bn/osx/ditto.md b/pages.bn/osx/ditto.md new file mode 100644 index 00000000000000..b685b6877b62e1 --- /dev/null +++ b/pages.bn/osx/ditto.md @@ -0,0 +1,16 @@ +# ditto + +> ফাইল এবং ডিরেক্টরি কপি করুন। +> আরও তথ্য পাবেন: . + +- সোর্স ডিরেক্টরির বিষয়বস্তু দিয়ে গন্তব্য ডিরেক্টরির বিষয়বস্তু ওভাররাইট করুন: + +`ditto {{সোর্স/এর/পথ}} {{গন্তব্য/এর/পথ}}` + +- কপি করা প্রতিটি ফাইলের জন্য টার্মিনাল উইন্ডোতে একটি লাইন প্রিন্ট করুন: + +`ditto -V {{সোর্স/এর/পথ}} {{গন্তব্য/এর/পথ}}` + +- মূল ফাইল এর পারমিশন বজায় রেখে একটি প্রদত্ত ফাইল বা ডিরেক্টরি কপি করুন: + +`ditto -rsrc {{সোর্স/এর/পথ}} {{গন্তব্য/এর/পথ}}` diff --git a/pages.bn/sunos/snoop.md b/pages.bn/sunos/snoop.md new file mode 100644 index 00000000000000..d72c7f002f7cbd --- /dev/null +++ b/pages.bn/sunos/snoop.md @@ -0,0 +1,25 @@ +# snoop + +> নেটওয়ার্ক প্যাকেট স্নিফার। +> SunOS এর জন্য tcpdump এর সমতুল্য। +> আরও তথ্য পাবেন: . + +- একটি নির্দিষ্ট নেটওয়ার্ক ইন্টারফেসে প্যাকেটগুলি ক্যাপচার করুন: + +`snoop -d {{e1000g0}}` + +- ক্যাপচার করা প্যাকেটগুলিকে প্রদর্শন করার পরিবর্তে একটি ফাইলে সংরক্ষণ করুন: + +`snoop -o {{ফাইলের_নাম}}` + +- একটি ফাইল থেকে প্যাকেটের ভার্বোজ প্রোটোকল লেয়ারের সারাংশ প্রদর্শন করুন: + +`snoop -V -i {{ফাইলের_নাম}}` + +- একটি হোস্টনাম থেকে আসা নেটওয়ার্ক প্যাকেটগুলি ক্যাপচার করুন এবং একটি প্রদত্ত পোর্টে যান: + +`snoop to port {{পোর্ট}} from host {{হোস্টনাম}}` + +- দুটি আইপি ঠিকানার মধ্যে বিনিময় করা নেটওয়ার্ক প্যাকেটের একটি হেক্স-ডাম্প ক্যাপচার করুন এবং প্রদর্শন করুন: + +`snoop -x0 -p4 {{আইপি_ঠিকানা_১}} {{আইপি_ঠিকানা_২}}` diff --git a/pages.bn/windows/cd.md b/pages.bn/windows/cd.md new file mode 100644 index 00000000000000..cd1e3c42c8783e --- /dev/null +++ b/pages.bn/windows/cd.md @@ -0,0 +1,20 @@ +# cd + +> বর্তমান ওয়ার্কিং ডিরেক্টরির নাম প্রদর্শন বা পরিবর্তন করে। +> আরও তথ্য পাবেন: . + +- একই ড্রাইভে একটি ডিরেক্টরিতে যান: + +`cd {{গন্তব্য/এর/পথ}}` + +- বর্তমান ডিরেক্টরি নাম প্রদর্শন করুন: + +`cd` + +- বর্তমান ডিরেক্টরিটির প্যারেন্টে পৌঁছান: + +`cd ..` + +- ভিন্ন ড্রাইভে থাকা একটি ডিরেক্টরিতে যান: + +`cd {{গন্তব্য/এর/পথ}} /d` diff --git a/pages.bs/common/aria2.md b/pages.bs/common/aria2.md new file mode 100644 index 00000000000000..7093c2f904c791 --- /dev/null +++ b/pages.bs/common/aria2.md @@ -0,0 +1,7 @@ +# aria2 + +> Ova komanda je pseudonim za `aria2c`. + +- Pregledaj dokumentaciju za ažuriranu komandu: + +`tldr aria2c` diff --git a/pages.bs/common/bundler.md b/pages.bs/common/bundler.md new file mode 100644 index 00000000000000..185e22b3cae74d --- /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 00000000000000..0a2e8e14088b6f --- /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/clang-cpp.md b/pages.bs/common/clang-cpp.md new file mode 100644 index 00000000000000..6b960ab73059fb --- /dev/null +++ b/pages.bs/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Ova komanda je pseudonim za `clang++`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr clang++` diff --git a/pages.bs/common/clojure.md b/pages.bs/common/clojure.md new file mode 100644 index 00000000000000..197df07c44395f --- /dev/null +++ b/pages.bs/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Ova komanda je pseudonim za `clj`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr clj` diff --git a/pages.bs/common/cola.md b/pages.bs/common/cola.md new file mode 100644 index 00000000000000..ad0f1b04eb8c3f --- /dev/null +++ b/pages.bs/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Ova komanda je pseudonim za `git-cola`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr git-cola` diff --git a/pages.bs/common/cron.md b/pages.bs/common/cron.md new file mode 100644 index 00000000000000..2b2914711f97b7 --- /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 00000000000000..0e98601087ad57 --- /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 00000000000000..e02011f952d83c --- /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 00000000000000..fb18dad9937fd6 --- /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 00000000000000..fc0f9541897340 --- /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 00000000000000..9983ba1e6f330a --- /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 00000000000000..b0dc115126597e --- /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 00000000000000..d8e667643fab10 --- /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 00000000000000..78ea74cc0462e7 --- /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 00000000000000..25371d816cb775 --- /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/llvm-ar.md b/pages.bs/common/llvm-ar.md new file mode 100644 index 00000000000000..5a8b3b78481f27 --- /dev/null +++ b/pages.bs/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Ova komanda je pseudonim za `ar`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr ar` diff --git a/pages.bs/common/llvm-g++.md b/pages.bs/common/llvm-g++.md new file mode 100644 index 00000000000000..8e4896ca8906d3 --- /dev/null +++ b/pages.bs/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Ova komanda je pseudonim za `clang++`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr clang++` diff --git a/pages.bs/common/llvm-gcc.md b/pages.bs/common/llvm-gcc.md new file mode 100644 index 00000000000000..2b99877e18938d --- /dev/null +++ b/pages.bs/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Ova komanda je pseudonim za `clang`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr clang` diff --git a/pages.bs/common/llvm-nm.md b/pages.bs/common/llvm-nm.md new file mode 100644 index 00000000000000..5a8a6320334895 --- /dev/null +++ b/pages.bs/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Ova komanda je pseudonim za `nm`. + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr nm` diff --git a/pages.bs/common/llvm-objdump.md b/pages.bs/common/llvm-objdump.md new file mode 100644 index 00000000000000..460b594939de39 --- /dev/null +++ b/pages.bs/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Ova komanda je pseudonim za `objdump`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr objdump` diff --git a/pages.bs/common/llvm-strings.md b/pages.bs/common/llvm-strings.md new file mode 100644 index 00000000000000..6a370ecb43e350 --- /dev/null +++ b/pages.bs/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Ova komanda je pseudonim za `strings`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr strings` diff --git a/pages.bs/common/lzcat.md b/pages.bs/common/lzcat.md new file mode 100644 index 00000000000000..04045ee8bbb81a --- /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 00000000000000..c44bd5f963f20c --- /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/mscore.md b/pages.bs/common/mscore.md new file mode 100644 index 00000000000000..c7d45a4a76d3e4 --- /dev/null +++ b/pages.bs/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Ova komanda je pseudonim za `musescore`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr musescore` diff --git a/pages.bs/common/nm-classic.md b/pages.bs/common/nm-classic.md new file mode 100644 index 00000000000000..91396ef6ee2505 --- /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 00000000000000..22030c020061c1 --- /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/pio-init.md b/pages.bs/common/pio-init.md new file mode 100644 index 00000000000000..075ec6637fafc3 --- /dev/null +++ b/pages.bs/common/pio-init.md @@ -0,0 +1,7 @@ +# pio init + +> Ova komanda je pseudonim za `pio project init`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr pio project` diff --git a/pages.bs/common/piodebuggdb.md b/pages.bs/common/piodebuggdb.md new file mode 100644 index 00000000000000..155225c837fde3 --- /dev/null +++ b/pages.bs/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Ova komanda je pseudonim za `pio debug --interface=gdb`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr pio debug` diff --git a/pages.bs/common/platformio.md b/pages.bs/common/platformio.md new file mode 100644 index 00000000000000..75ce96105dede7 --- /dev/null +++ b/pages.bs/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Ova komanda je pseudonim za `pio`. +> Više informacija: . + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr pio` diff --git a/pages.bs/common/ptpython3.md b/pages.bs/common/ptpython3.md new file mode 100644 index 00000000000000..f85b7dd957d7f4 --- /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 00000000000000..dab642cef7b57c --- /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/r2.md b/pages.bs/common/r2.md new file mode 100644 index 00000000000000..794e1f829e9ffb --- /dev/null +++ b/pages.bs/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Ova komanda je pseudonim za `radare2`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr radare2` diff --git a/pages.bs/common/rcat.md b/pages.bs/common/rcat.md new file mode 100644 index 00000000000000..3ce6d09dd7f0a5 --- /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 00000000000000..3172ff97f88142 --- /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/time.md b/pages.bs/common/time.md index e724655b59a61d..fa9098af1e51ee 100644 --- a/pages.bs/common/time.md +++ b/pages.bs/common/time.md @@ -1,6 +1,7 @@ # time > Vidi koliko dugo traje komanda. +> Više informacija: . - Vrijeme `ls`: diff --git a/pages.bs/common/tldrl.md b/pages.bs/common/tldrl.md new file mode 100644 index 00000000000000..03f73b5a000ff5 --- /dev/null +++ b/pages.bs/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Ova komanda je pseudonim za `tldr-lint`. +> Više informacija: . + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr tldr-lint` diff --git a/pages.bs/common/tlmgr-arch.md b/pages.bs/common/tlmgr-arch.md new file mode 100644 index 00000000000000..e57a0e982f665c --- /dev/null +++ b/pages.bs/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr arch + +> Ova komanda je pseudonim za `tlmgr platform`. +> Više informacija: . + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr tlmgr platform` diff --git a/pages.bs/common/todoman.md b/pages.bs/common/todoman.md new file mode 100644 index 00000000000000..754e4bb01d3487 --- /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 00000000000000..d03e685ab86327 --- /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/unalias.md b/pages.bs/common/unalias.md index f128c856427c20..52bad8de08bbdc 100644 --- a/pages.bs/common/unalias.md +++ b/pages.bs/common/unalias.md @@ -1,11 +1,12 @@ # unalias -> Ukloni alijase. +> Ukloni pseudonime. +> Više informacija: . -- Ukloni alijas: +- Ukloni pseudonim: `unalias {{ime_alijasa}}` -- Ukloni sve alijase: +- Ukloni sve pseudonime: `unalias -a` diff --git a/pages.bs/common/unclutter.md b/pages.bs/common/unclutter.md index 247465de4e222e..e0112b20585f05 100644 --- a/pages.bs/common/unclutter.md +++ b/pages.bs/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > Skriva kursor miša. +> Više informacija: . - Sakrij kursor miša nakon 3 sekunde: diff --git a/pages.bs/common/unlzma.md b/pages.bs/common/unlzma.md new file mode 100644 index 00000000000000..abecd58ee38285 --- /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 00000000000000..fb54e88f9edca1 --- /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/vi.md b/pages.bs/common/vi.md new file mode 100644 index 00000000000000..2f7efd06bf50bd --- /dev/null +++ b/pages.bs/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Ova komanda je pseudonim za `vim`. + +- Pregledaj dokumentaciju za izvornu komandu: + +`tldr vim` diff --git a/pages.bs/common/view.md b/pages.bs/common/view.md index 82ea7eab479f78..b718057c0bafde 100644 --- a/pages.bs/common/view.md +++ b/pages.bs/common/view.md @@ -2,6 +2,7 @@ > Read-only verzija `vim`. > Ovo je ekvivalent za `vim -R`. +> Više informacija: . - Otvori datoteku: diff --git a/pages.bs/common/xzcat.md b/pages.bs/common/xzcat.md new file mode 100644 index 00000000000000..6e51b6462ede38 --- /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/common/zless.md b/pages.bs/common/zless.md index bec0bc09b647cb..88b5a682b19093 100644 --- a/pages.bs/common/zless.md +++ b/pages.bs/common/zless.md @@ -1,6 +1,7 @@ # zless > Pregledaj kompresovane datoteke. +> Više informacija: . - Prelistaj kroz kompresovanu arhivu sa `less`: diff --git a/pages.bs/linux/alternatives.md b/pages.bs/linux/alternatives.md new file mode 100644 index 00000000000000..85e6a08f5baea8 --- /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 00000000000000..939ff4209cdec6 --- /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 00000000000000..4b18aeb3c0e6a2 --- /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 00000000000000..f2e369c0d085bd --- /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 00000000000000..bc4995482e5147 --- /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 00000000000000..e86e52d1700413 --- /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 00000000000000..cdd987552d8939 --- /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/ncal.md b/pages.bs/linux/ncal.md new file mode 100644 index 00000000000000..b2314f330dfa2f --- /dev/null +++ b/pages.bs/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Ova komanda je pseudonim za `cal`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr cal` diff --git a/pages.bs/linux/ubuntu-bug.md b/pages.bs/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..1361cf21128a9d --- /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 00000000000000..77e506f6dfbc5c --- /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 00000000000000..ec69bdbcf0bf65 --- /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 00000000000000..ea7de8a0397999 --- /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 00000000000000..824ad671070338 --- /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 00000000000000..fae1655501a166 --- /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 00000000000000..2397530d49f2b7 --- /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 00000000000000..a554651490eeea --- /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 00000000000000..79cb6422a93a99 --- /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 00000000000000..469ba29e1f1740 --- /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 00000000000000..32049783a1715b --- /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 00000000000000..a42970143ad569 --- /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 00000000000000..4bf7a7a7c85c48 --- /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 00000000000000..162056100009a7 --- /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 00000000000000..6ce5d8fd5638b2 --- /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 00000000000000..f3aa2b7f535cdd --- /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 00000000000000..afe22bef5fd28e --- /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 00000000000000..9ce70be0c44aee --- /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 00000000000000..c988c1d452f897 --- /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 00000000000000..8ab40d0f0b908c --- /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 00000000000000..760b59f8967947 --- /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 00000000000000..01b1f15790952d --- /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 00000000000000..0aba6746641fd7 --- /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 00000000000000..400f0dde987516 --- /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 00000000000000..d484542facccff --- /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 00000000000000..968555fbe8ed40 --- /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 00000000000000..1d2dae83112096 --- /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 00000000000000..8ab7c67484cc18 --- /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 00000000000000..2ceca5f835a098 --- /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 00000000000000..3980d61352d8e0 --- /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 00000000000000..6e95ef6cfc7868 --- /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 00000000000000..ae6afed28b3bfb --- /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 00000000000000..73404e9e83e5fa --- /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 00000000000000..e20a6b5951114a --- /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 00000000000000..f90fc2ffdf5f37 --- /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 00000000000000..1543bb8fc5c91e --- /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 00000000000000..7b43756e8b2143 --- /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 00000000000000..0c5c7a1b0d8e0e --- /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 00000000000000..68a50a2dffea95 --- /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 00000000000000..d3fe380d108d3c --- /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 00000000000000..5106e7107c98a3 --- /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 00000000000000..f9a344c51818f0 --- /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 00000000000000..afaf026e1de7a8 --- /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 00000000000000..9fe356b82adb85 --- /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 00000000000000..3fb96eb82f7fb7 --- /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 00000000000000..1bd40e32f6bfa3 --- /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 00000000000000..b78ba0b8da69cc --- /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 00000000000000..4df828e79f8428 --- /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 00000000000000..0d8fcc5355180c --- /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 00000000000000..886fc383303492 --- /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 00000000000000..40b7fcdf112d0a --- /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 00000000000000..7ec1e82a4bd107 --- /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 00000000000000..89fa861784da42 --- /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 00000000000000..e3847c6d8b0bef --- /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 00000000000000..75e0be54a167df --- /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 00000000000000..d1d9f66bab9ce9 --- /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 00000000000000..42322caa7961cf --- /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 00000000000000..be6ae10a4c3aba --- /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 00000000000000..5f704a0292256d --- /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 00000000000000..fd64dfa13d4b44 --- /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 00000000000000..087ee2f7337017 --- /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 00000000000000..271e277cf0034d --- /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 00000000000000..6bb42819ece2d5 --- /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 00000000000000..2786608a9aca96 --- /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 00000000000000..d31425a587393a --- /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 00000000000000..00d96b2747752a --- /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 00000000000000..e5e4f94f9fb41a --- /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 00000000000000..293b634c5a4269 --- /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 00000000000000..abe14061cb67da --- /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 00000000000000..5b1ee6b6f03482 --- /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 00000000000000..1601ae7cc97bd2 --- /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 00000000000000..95605a1dd0cf82 --- /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 00000000000000..9541ab0993830a --- /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 00000000000000..158f466e4e0ae9 --- /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 00000000000000..27ca9c4d8112aa --- /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 00000000000000..f2daf79ab97c2e --- /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 00000000000000..9eb35f852b22cc --- /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 00000000000000..85d0205c01d61b --- /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 00000000000000..d39f1920de4de7 --- /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 00000000000000..00a32f05276863 --- /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 00000000000000..4e515bd4d4bafd --- /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 00000000000000..98ee572e7cc1f1 --- /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 00000000000000..04cdb073a2ac4b --- /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 00000000000000..99559149ba0860 --- /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 00000000000000..ac8696591bda38 --- /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 00000000000000..3f466ee898ff93 --- /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 00000000000000..52c960e2c2a769 --- /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 00000000000000..b4288233b61dd1 --- /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 00000000000000..6b0870561926f4 --- /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 00000000000000..d9e59828e232a3 --- /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 00000000000000..e5bc9a2a9b1343 --- /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 00000000000000..061916bc89273e --- /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 00000000000000..595545ea511dec --- /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 00000000000000..eb9eb3a0c430ad --- /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 00000000000000..7e6d819c61a752 --- /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 00000000000000..c432810ab70c15 --- /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 00000000000000..ce49b1fbdc3217 --- /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 00000000000000..481a1b23e7ce3b --- /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 00000000000000..d06aa3f801f1de --- /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 00000000000000..6b15193e91c1cf --- /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 00000000000000..eaeb4aca973ff3 --- /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 00000000000000..46b29f6b604fae --- /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 00000000000000..1fb7ef73e6bce7 --- /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 00000000000000..3b8b7312989658 --- /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 00000000000000..f01cab4dd622ac --- /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 00000000000000..38375885842340 --- /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 00000000000000..13a3083e3f32d4 --- /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 00000000000000..46020f97c7eac8 --- /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 00000000000000..76d97b5d00234c --- /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 00000000000000..a250587a5d294a --- /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 00000000000000..85936f69fa592f --- /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 00000000000000..5f05ff2b6d133c --- /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 00000000000000..627555605e2424 --- /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 00000000000000..823045ae4c79c3 --- /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 00000000000000..4a2bffe703ef56 --- /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 00000000000000..2aa9691e197997 --- /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 00000000000000..2d60ebd66b4280 --- /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 00000000000000..3f21c57334e788 --- /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 00000000000000..54d07ad9584dcb --- /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 00000000000000..ff4877ad99ef03 --- /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 00000000000000..227d71d1a75eaa --- /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 00000000000000..9dc597c5955db3 --- /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 00000000000000..4ca28cc13d8677 --- /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 00000000000000..a78a93bc2af365 --- /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 00000000000000..96cfa7a40f3ac3 --- /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 00000000000000..de388ac9be878d --- /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 00000000000000..cdd79f0b9683a1 --- /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 00000000000000..57f12f7466ca04 --- /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 00000000000000..45852fea8d0594 --- /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 00000000000000..6b23f92cfb2db1 --- /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 00000000000000..5f611313a155db --- /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 00000000000000..c7f29e61f8494d --- /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 00000000000000..2ce38c85781e45 --- /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 00000000000000..64f48ac148267c --- /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 00000000000000..eadb6daa04fd86 --- /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 00000000000000..05e36124da4c2b --- /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 00000000000000..b88c07384a866c --- /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 00000000000000..a43af2b97332c7 --- /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 00000000000000..1f8af261f80b9f --- /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 00000000000000..0685408c48b2be --- /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 00000000000000..c7fc3b84ef0a54 --- /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 00000000000000..fcaa924fa25057 --- /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 00000000000000..2541ce0de44ba7 --- /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/cinst.md b/pages.bs/windows/cinst.md new file mode 100644 index 00000000000000..f42ca17d7eec47 --- /dev/null +++ b/pages.bs/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Ova komanda je pseudonim za `choco install`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr choco install` diff --git a/pages.bs/windows/clist.md b/pages.bs/windows/clist.md new file mode 100644 index 00000000000000..b938f97100c824 --- /dev/null +++ b/pages.bs/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Ova komanda je pseudonim za `choco list`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr choco list` diff --git a/pages.bs/windows/cpush.md b/pages.bs/windows/cpush.md new file mode 100644 index 00000000000000..05edcbc3e82f41 --- /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/cuninst.md b/pages.bs/windows/cuninst.md new file mode 100644 index 00000000000000..b2acc2ac99f003 --- /dev/null +++ b/pages.bs/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Ova komanda je pseudonim za `choco uninstall`. +> Više informacija: . + +- Pogledaj dokumentaciju za izvornu komandu: + +`tldr choco uninstall` diff --git a/pages.bs/windows/curl.md b/pages.bs/windows/curl.md new file mode 100644 index 00000000000000..5c98b50aee7b6f --- /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 00000000000000..6f590167e49cc7 --- /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 00000000000000..37c4d288ffa97c --- /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 00000000000000..4acc0fba74d475 --- /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 00000000000000..e780257c6180ab --- /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 00000000000000..fbfdadb322e4ef --- /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 new file mode 100644 index 00000000000000..ef6870608d943b --- /dev/null +++ b/pages.ca/common/7z.md @@ -0,0 +1,36 @@ +# 7z + +> Arxivador de fitxers amb un alt ràtio de compressió. +> Més informació: . + +- [a]rxiva un fitxer o directori: + +`7z a {{camí/al/fitxer.7z}} {{camí/al/fitxer_o_directori}}` + +- Encripta un fitxer existent (incloent el nom del arxiu): + +`7z a {{camí/al/fitxer_encriptat.7z}} -p{{contrasenya}} -mhe=on {{camí/al/fitxer.7z}}` + +- E[x]treu un fitxer preservant l'estructura de directoris original: + +`7z x {{camí/al/fitxer.7z}}` + +- E[x]treu un fitxer a un directori específic: + +`7z x {{camí/al/fitxer.7z}} -o{{camí/al/directori}}` + +- E[x]treu un fitxer a stdout: + +`7z x {{camí/al/fitxer.7z}} -so` + +- [a]rxiva un fitxer fent servir un tipus d'arxiu específic: + +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{camí/al/fitxer.7z}} {{camí/al/fitxer_o_directori}}` + +- [l]lista els continguts d'un fitxer: + +`7z l {{camí/al/fitxer.7z}}` + +- Llista els tipus d'arxiu disponibles: + +`7z i` diff --git a/pages.ca/common/bundler.md b/pages.ca/common/bundler.md new file mode 100644 index 00000000000000..93cc0ccd43a324 --- /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/calc.md b/pages.ca/common/calc.md new file mode 100644 index 00000000000000..9fbf71c2cd4417 --- /dev/null +++ b/pages.ca/common/calc.md @@ -0,0 +1,12 @@ +# calc + +> Una calculadora de precisió arbitrària en la terminal. +> Més informació: . + +- Iniciar calc en mode interactiu: + +`calc` + +- Realizar un càlcul en mode no-interactiu: + +`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.ca/common/cd.md b/pages.ca/common/cd.md new file mode 100644 index 00000000000000..ed1816234c197b --- /dev/null +++ b/pages.ca/common/cd.md @@ -0,0 +1,20 @@ +# cd + +> Canvia el directori actual. +> Més informació: . + +- Accedeix al directori donat: + +`cd {{camí/al/directori}}` + +- Accedeix al directori `home` del usuari actual: + +`cd` + +- Accedeix al directori pare del directori actual: + +`cd ..` + +- Accedeix al directori escollit prèviament: + +`cd -` diff --git a/pages.ca/common/clamav.md b/pages.ca/common/clamav.md new file mode 100644 index 00000000000000..3e23c00bbe21cb --- /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 00000000000000..829257c9ea73b9 --- /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 00000000000000..2a8da166904043 --- /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/cmatrix.md b/pages.ca/common/cmatrix.md new file mode 100644 index 00000000000000..54e757dea9a30c --- /dev/null +++ b/pages.ca/common/cmatrix.md @@ -0,0 +1,20 @@ +# cmatrix + +> Mostra una pantalla similar a la de Matrix en la terminal. +> Més informació: . + +- Activa el desplaçament asíncron: + +`cmatrix -a` + +- Mostra el text en vermell: + +`cmatrix -C {{red}}` + +- Activa el mode multicolor: + +`cmatrix -r` + +- Estableix el retràs d'actualització de la pantalla a 2 centrisegons (20 mil·lisegons): + +`cmatrix -u {{2}}` diff --git a/pages.ca/common/cola.md b/pages.ca/common/cola.md new file mode 100644 index 00000000000000..a68588befee288 --- /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/cp.md b/pages.ca/common/cp.md new file mode 100644 index 00000000000000..5a0691484a1f2b --- /dev/null +++ b/pages.ca/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> Copia fitxers i directoris. +> Més informació: . + +- Copia un fitxer a un altre directori: + +`cp {{camí/al/fitxer_origen.ext}} {{camí/al/fitxer_destí.ext}}` + +- Copia un fitxer a un altre directori, mantenint el nom: + +`cp {{camí/al/fitxer_origen.ext}} {{camí/al/directori}}` + +- Copia recursivament els continguts d'un directori a un altre (si aquest existeix,els continguts es copien dins): + +`cp -R {{camí/al/directori_origen}} {{camí/al/directori_destí}}` + +- Copia un directori recursivament, de manera verbosa (mostra els fitxers a mesura que es van copiant): + +`cp -vR {{camí/al/directori_origen}} {{camí/al/directori_destí}}` + +- Copia els fitxers amb extensió `.txt` a una altra ubicació en mode interactiu (demana al usuari abans de sobreescriure un fitxer): + +`cp -i {{*.txt}} {{camí/al/directori_destí}}` + +- Copia enllaços simbòlics sense mantenir la referència al original: + +`cp -L {{enllaç}} {{camí/al/directori_destí}}` diff --git a/pages.ca/common/cron.md b/pages.ca/common/cron.md new file mode 100644 index 00000000000000..358c9b8c5057db --- /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-ci.md b/pages.ca/common/fossil-ci.md new file mode 100644 index 00000000000000..ba26daba28e4f6 --- /dev/null +++ b/pages.ca/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil ci + +> Aquest comandament es un àlies de `fossil commit`. +> Més informació: . + +- Veure documentació per el comandament original: + +`tldr fossil-commit` diff --git a/pages.ca/common/fossil-delete.md b/pages.ca/common/fossil-delete.md new file mode 100644 index 00000000000000..cb22b9560e126e --- /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 00000000000000..485a67e92d1945 --- /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 00000000000000..f218ff197a3094 --- /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 00000000000000..f5048c23ea49e4 --- /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 00000000000000..fb3cb900048757 --- /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 00000000000000..4644619f000f4c --- /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 00000000000000..7da6dbb022493f --- /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 00000000000000..799b064a307b66 --- /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 00000000000000..7aa513769d152f --- /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 00000000000000..6fa148ed6db047 --- /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 00000000000000..e00f9ffb1b1b17 --- /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 00000000000000..c0af1adc4dcb3e --- /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 00000000000000..2decd83b00ae54 --- /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 00000000000000..de3da45b115199 --- /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/ls.md b/pages.ca/common/ls.md new file mode 100644 index 00000000000000..d9434102191cd2 --- /dev/null +++ b/pages.ca/common/ls.md @@ -0,0 +1,36 @@ +# ls + +> Llista els continguts d'un directori. +> Més informació: . + +- Llista els fitxers un per línia: + +`ls -1` + +- Llista tots els fitxers, incloent els ocults: + +`ls -a` + +- Llista tots els fitxers, afegint `/` al nom dels directoris: + +`ls -F` + +- Llista de format llarg (permisos, propietat, mida i data de modificació) de tots els fitxers: + +`ls -la` + +- Llista de format llarg amb unitats llegibles per humans (KiB, MiB, GiB): + +`ls -lh` + +- Llista de format lalrg ordenat per mida (descendent): + +`ls -lS` + +- Llista de format llarg de tots els fitxers, organitzat per data de modificació (més antics primer): + +`ls -ltr` + +- Llista només directoris: + +`ls -d */` diff --git a/pages.ca/common/lzcat.md b/pages.ca/common/lzcat.md new file mode 100644 index 00000000000000..5361517a34909f --- /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 00000000000000..b3cc97816a1519 --- /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 00000000000000..6cbcc63dd791aa --- /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 00000000000000..4277b61cf4e02e --- /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 00000000000000..fe159fde96f3fb --- /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 00000000000000..879dc8914ebe15 --- /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 00000000000000..9cd1ec07e49268 --- /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 00000000000000..3fc9ff4b59717c --- /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 00000000000000..eb09dd839e5a69 --- /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 00000000000000..8e84f5aeeacfba --- /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 00000000000000..b6f2f90457ceea --- /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 00000000000000..561fb79f6057a3 --- /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 00000000000000..648a5033809ed8 --- /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 00000000000000..7d4597efc89703 --- /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 00000000000000..5acb501d3db74c --- /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 00000000000000..df5cbd582a1769 --- /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 new file mode 100644 index 00000000000000..16d133f3bf1600 --- /dev/null +++ b/pages.ca/common/touch.md @@ -0,0 +1,24 @@ +# touch + +> Canvia els temps d'accés i modificació d'un fitxer (atime, ntime). +> Més informació: . + +- Crea un o múltiples fitxers o canvia els temps al temps actual: + +`touch {{camí/al/fitxer}}` + +- Estableix el temps d'un fitxer a una data i hora específica: + +`touch -t {{YYYYMMDDHHMM.SS}} {{camí/al/fitxer}}` + +- Estableix el temps en un fitxer a fa una hora: + +`touch -d "{{-1 hour}}" {{camí/al/fitxer}}` + +- Fa servir el temps d'un fitxer per establir el temps d'un segons fitxer: + +`touch -r {{camí/al/fitxer1}} {{camí/al/fitxer2}}` + +- Crea múltiples fitxers: + +`touch {{camí/al/fitxer{1,2,3}.txt}}` diff --git a/pages.ca/common/transmission.md b/pages.ca/common/transmission.md new file mode 100644 index 00000000000000..f0623c33bff43b --- /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 00000000000000..ed00d4ff61b16d --- /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 00000000000000..d0e535096b3d53 --- /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 00000000000000..b22dc7d067ad1b --- /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/wal.md b/pages.ca/common/wal.md new file mode 100644 index 00000000000000..2147ccca569508 --- /dev/null +++ b/pages.ca/common/wal.md @@ -0,0 +1,28 @@ +# wal + +> Una eina per crear esquemes de colors basats en els colors dominants del fons de pantalla. +> Més informació: . + +- Preveure l'esquema de colors: + +`wal --preview {{imatge.png}}` + +- Crear esquema de colors: + +`wal -i {{imatge.png}}` + +- Crea un esquema de colors clars: + +`wal -i {{imatge.png}} -l` + +- No canvia el fons de pantalla: + +`wal -i {{imatge.png}} -n` + +- No canvia els colors de la terminal: + +`wal -i {{imatge.png}} -s` + +- Restableix l'anterior fonts de pantalla i esquema de colors generat: + +`wal -R` diff --git a/pages.ca/common/xzcat.md b/pages.ca/common/xzcat.md new file mode 100644 index 00000000000000..0adc93e16f6c64 --- /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/common/youtube-dl.md b/pages.ca/common/youtube-dl.md new file mode 100644 index 00000000000000..abe559f25bf13b --- /dev/null +++ b/pages.ca/common/youtube-dl.md @@ -0,0 +1,36 @@ +# youtube-dl + +> Descarrega videos de YouTube i altres pàgines web. +> Més informació: . + +- Descarrega un vídeo o playlist: + +`youtube-dl '{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}'` + +- Llista tots els formats en el que es troba disponible un vídeo o playlist: + +`youtube-dl --list-formats '{{https://www.youtube.com/watch?v=Mwa0_nE9H7A}}'` + +- Descarrega un vídeo o playlist en una qualitat específica: + +`youtube-dl --format "{{best[height<=480]}}" '{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}'` + +- Descarrega l'àudio d'un vídeo i converteix-lo a MP3: + +`youtube-dl -x --audio-format {{mp3}} '{{url}}'` + +- Descarrega l'àudio i el vídeo de major qualitat i fusiona'ls: + +`youtube-dl -f bestvideo+bestaudio '{{url}}'` + +- Descarrega vídeo(s) com a fitxers MP4 amb un nom específic: + +`youtube-dl --format {{mp4}} -o "{{%(playlist_index)s-%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s}}" '{{url}}'` + +- Descarrega els subtítols d'un llenguatge en concret amb el vídeo: + +`youtube-dl --sub-lang {{en}} --write-sub '{{https://www.youtube.com/watch?v=Mwa0_nE9H7A}}'` + +- Descarrega una playlist i extreu-ne els MP3s: + +`youtube-dl -f "bestaudio" --continue --no-overwrites --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" {{url_to_playlist}}` diff --git a/pages.ca/linux/a2disconf.md b/pages.ca/linux/a2disconf.md new file mode 100644 index 00000000000000..4a66de1196c035 --- /dev/null +++ b/pages.ca/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Desactiva un fitxer de configuració d'Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Desactiva un fitxer de configuració: + +`sudo a2disconf {{fitxer_configuració}}` + +- No mostris missatges informatius: + +`sudo a2disconf --quiet {{fitxer_configuració}}` diff --git a/pages.ca/linux/a2dismod.md b/pages.ca/linux/a2dismod.md new file mode 100644 index 00000000000000..1de5d0eb7ee8e2 --- /dev/null +++ b/pages.ca/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Desactiva un mòdul Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Desactiva un mòdul: + +`sudo a2dismod {{mòdul}}` + +- No mostrius missatges informatius: + +`sudo a2dismod --quiet {{mòdul}}` diff --git a/pages.ca/linux/a2dissite.md b/pages.ca/linux/a2dissite.md new file mode 100644 index 00000000000000..e732ea9d776c73 --- /dev/null +++ b/pages.ca/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Desactiva un host virtual d'Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Desactiva un host virtual: + +`sudo a2dissite {{host_virtual}}` + +- No mostris missatges informatius: + +`sudo a2dissite --quiet {{host_virtual}}` diff --git a/pages.ca/linux/a2enconf.md b/pages.ca/linux/a2enconf.md new file mode 100644 index 00000000000000..fe9d6710cfb60c --- /dev/null +++ b/pages.ca/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Activa un fitxer de configuració d'Apache en sistemes operatius basats en debian. +> Més informació: . + +- Activa un fitxer de configuració: + +`sudo a2enconf {{fitxer_configuració}}` + +- No mostris missatges informatius: + +`sudo a2enconf --quiet {{fitxer_configuració}}` diff --git a/pages.ca/linux/a2enmod.md b/pages.ca/linux/a2enmod.md new file mode 100644 index 00000000000000..c5d7380ae18381 --- /dev/null +++ b/pages.ca/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Activa un mòdul d'Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Activa un mòdul: + +`sudo a2enmod {{mòdul}}` + +- No mostris missatges informatius: + +`sudo a2enmod --quiet {{mòdul}}` diff --git a/pages.ca/linux/a2ensite.md b/pages.ca/linux/a2ensite.md new file mode 100644 index 00000000000000..a064036c344fe1 --- /dev/null +++ b/pages.ca/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Activa un host virtual d'Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Activa un host virtual: + +`sudo a2ensite {{host_virtual}}` + +- No mostris missatges informatius: + +`sudo a2ensite --quiet {{host_virtual}}` diff --git a/pages.ca/linux/a2query.md b/pages.ca/linux/a2query.md new file mode 100644 index 00000000000000..682dd79ee7592a --- /dev/null +++ b/pages.ca/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Recupera la configuració del temps d'execució d'Apache en sistemes operatius basats en Debian. +> Més informació: . + +- Llista mòduls Apache activats: + +`sudo a2query -m` + +- Comprova si un mòdul específic està instal·lat: + +`sudo a2query -m {{nom_mòdul}}` + +- Llista els hosts virtuals activats: + +`sudo a2query -s` + +- Mostra el mòdul de processament múltiple: + +`sudo a2query -M` + +- Mostra la versió d'Apache: + +`sudo a2query -v` diff --git a/pages.ca/linux/abbr.md b/pages.ca/linux/abbr.md new file mode 100644 index 00000000000000..f703d7459da734 --- /dev/null +++ b/pages.ca/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Gestiona abreviatures per la shell fish. +> Les paraules definides per l'usuari es reemplacen per expresions llarges en introduïr-les. +> Més informació: . + +- Afegeix una nova abreviatura: + +`abbr --add {{nom_abreviatura}} {{comandament}} {{arguments}}` + +- Canvia el nom d'una abreviatura existent: + +`abbr --rename {{antic_nom}} {{nou_nom}}` + +- Esborra una abreviatura existent: + +`abbr --erase {{nom_abreviatura}}` + +- Importa les abreviatures definides en un altre host per SSH: + +`ssh {{nom_host}} abbr --show | source` diff --git a/pages.ca/linux/ac.md b/pages.ca/linux/ac.md new file mode 100644 index 00000000000000..7e99d349c8d44f --- /dev/null +++ b/pages.ca/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Imprimeix estadístiques sonre el temps de connexió dels usuaris. +> Més informació: . + +- Imprimeix el temps de connexió del usuari actual en hores: + +`ac` + +- Imprimeix el temps total de connexió de tots els usuaris en hores: + +`ac --individual-totals` + +- Imprimeix el temps total de connexió d'un usuari concret en hores: + +`ac --individual-totals {{nom_usuari}}` + +- Imprimeix el temps de connexió d'un usuari concret en hores per dia (amb total): + +`ac --daily-totals --individual-totals {{nom_usuari}}` + +- Mostra també detalls adicionals: + +`ac --compatibility` diff --git a/pages.ca/linux/acpi.md b/pages.ca/linux/acpi.md new file mode 100644 index 00000000000000..2715d4041cf1d9 --- /dev/null +++ b/pages.ca/linux/acpi.md @@ -0,0 +1,28 @@ +# acpi + +> Mostra l'estat de la bateria o l'informació tèrmica. +> Més informació: . + +- Mostra informació de la bateria: + +`acpi` + +- Mostra informació tèrmica: + +`acpi -t` + +- Mostra informació del dispositiu de refredament: + +`acpi -c` + +- Mostra informació tèrmica en Fahrenheit: + +`acpi -tf` + +- Mostra tota l'informació: + +`acpi -V` + +- Extreu l'informació de `/proc` en comptes de `/sys`: + +`acpi -p` diff --git a/pages.ca/linux/add-apt-repository.md b/pages.ca/linux/add-apt-repository.md new file mode 100644 index 00000000000000..4564c1c4b185f5 --- /dev/null +++ b/pages.ca/linux/add-apt-repository.md @@ -0,0 +1,20 @@ +# add-apt-repository + +> Gestiona les definicions dels repositoris apt. +> Més informació: . + +- Afegeix un nou repositori apt: + +`add-apt-repository {{especificacions_del_respositori}}` + +- Elimina un repositori apt: + +`add-apt-repository --remove {{especificacions_del_repositori}}` + +- Actualitza la memòria cau després d'afegir un repositori: + +`add-apt-repository --update {{especificacions_del_repositori}}` + +- Permet descarregar paquets font des del repositori: + +`add-apt-repository --enable-source {{especificacions_del_repositori}}` diff --git a/pages.ca/linux/addpart.md b/pages.ca/linux/addpart.md new file mode 100644 index 00000000000000..c1b3f066d6e085 --- /dev/null +++ b/pages.ca/linux/addpart.md @@ -0,0 +1,9 @@ +# addpart + +> Comunica al linux kernel l'existència de la partició especificada. +> El commandament és un simple embolcall de `add partition` ioctl. +> Més informació: . + +- Comunica al kernel l'existència de la partició especificada: + +`addpart {{dispositiu}} {{partició}} {{inici}} {{llargada}}` diff --git a/pages.ca/linux/alternatives.md b/pages.ca/linux/alternatives.md new file mode 100644 index 00000000000000..1751b2f242210f --- /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/apt-add-repository.md b/pages.ca/linux/apt-add-repository.md new file mode 100644 index 00000000000000..cbf1b3e7752338 --- /dev/null +++ b/pages.ca/linux/apt-add-repository.md @@ -0,0 +1,20 @@ +# apt-add-repository + +> Gestiona les definicions del repositori apt. +> Més informació: . + +- Afegeix un nou repositori apt: + +`apt-add-repository {{repositori}}` + +- Elimina un repositori apt: + +`apt-add-repository --remove {{repositori}}` + +- Actualiza la memoria cau de paquets després d'afegir un repositori: + +`apt-add-repository --update {{repositori}}` + +- Activar les fonts de paquets: + +`apt-add-repository --enable-source {{repositori}}` diff --git a/pages.ca/linux/apt-cache.md b/pages.ca/linux/apt-cache.md new file mode 100644 index 00000000000000..028883cc7342fb --- /dev/null +++ b/pages.ca/linux/apt-cache.md @@ -0,0 +1,24 @@ +# apt-cache + +> Eina de consulta de paquets per a Debian y Ubuntu. +> Més informació: . + +- Busca un paquete en les teves fonts actuals: + +`apt-cache search {{consulta}}` + +- Mostra informació de un paquet: + +`apt-cache show {{paquet}}` + +- Mostra si un paquet està instalat i actualitzat: + +`apt-cache policy {{paquet}}` + +- Mostra les dependències de un paquet: + +`apt-cache depends {{paquet}}` + +- Mostra els paquets que depenen de un paquet en particular: + +`apt-cache rdepends {{paquet}}` diff --git a/pages.ca/linux/apt-file.md b/pages.ca/linux/apt-file.md new file mode 100644 index 00000000000000..63f85dd5d16d63 --- /dev/null +++ b/pages.ca/linux/apt-file.md @@ -0,0 +1,20 @@ +# apt-file + +> Busca arxius en paquets apt, incloent els que encara no s'han instal·lat. +> Més informació: . + +- Actualita les metadades de la base de dades: + +`sudo apt update` + +- Busca paquets que continguin l'arxiu o ruta especificada: + +`apt-file search {{ruta/al/arxiu}}` + +- Mostra el contingut del paquet especificat: + +`apt-file list {{nom_paquet}}` + +- Busca paquets que igualin l'expressió regular donada en `patró`: + +`apt-file {{search|find}} --regexp {{expressió_regular}}` diff --git a/pages.ca/linux/apt-get.md b/pages.ca/linux/apt-get.md new file mode 100644 index 00000000000000..bb3aa6da7e255f --- /dev/null +++ b/pages.ca/linux/apt-get.md @@ -0,0 +1,37 @@ +# apt-get + +> Eina de gestió de paquets per a distribucions basades en Debian. +> Busca paquets utilizant `apt-cache`. +> Més informació: . + +- Actualitza la llista de paquets i versions disponibles (es recomana executar aquest comandament abans que qualsevol altre `apt-get`): + +`apt-get update` + +- Instala un paquet o l'actualitza a l'última versió disponible: + +`apt-get install {{paquet}}` + +- Elimina un paquet: + +`apt-get remove {{paquet}}` + +- Elimina un paquet i els seus arxius de configuració: + +`apt-get purge {{paquet}}` + +- Actualitza tots els paquets instal·lats a les noves versions disponibles: + +`apt-get upgrade` + +- Neteja el repositori local - eliminant fitxers de paquet (`.deb`) de descàrregues interrompudes que ja no es poden descarregar: + +`apt-get autoclean` + +- Elimina tots els paquets inneccessaris: + +`apt-get autoremove` + +- Actualitza paquets instal·lats (com `upgrade`), però elimina els paquets obsolets i instal·la paquets adicionals per satisfer les dependències: + +`apt-get dist-upgrade` diff --git a/pages.ca/linux/apt-key.md b/pages.ca/linux/apt-key.md new file mode 100644 index 00000000000000..d0876a72400f13 --- /dev/null +++ b/pages.ca/linux/apt-key.md @@ -0,0 +1,25 @@ +# apt-key + +> Eina de gestió de claus per al Gestor de Paquets APT (APT Package Manager) en Debian i Ubuntu. +> Nota: `apt-key` és obsolet (excepte l'ús de `apt-key del` en scrits de mantenidor). +> Més informació: . + +- Mostra les claus de confiança: + +`apt-key list` + +- Afegeix una clau al magatzem de claus de confiança: + +`apt-key add {{arxiu_clau_pública.asc}}` + +- Borra una clau del magatzem de claus de confiança: + +`apt-key del {{id_clau}}` + +- Afegir una clau remota al magatzem de claus de confiança: + +`wget -qO - {{https://host.tld/archiu.clau}} | apt-key add -` + +- Afegir una clau d'un servidor de claus amb l'identificador de la clau: + +`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{id_clau}}` diff --git a/pages.ca/linux/apt-mark.md b/pages.ca/linux/apt-mark.md new file mode 100644 index 00000000000000..6485e1773b537c --- /dev/null +++ b/pages.ca/linux/apt-mark.md @@ -0,0 +1,24 @@ +# apt-mark + +> Eina per canviar l'estat dels paquets instal·lats. +> Més informació: . + +- Marca un paquet com a instal·lat automàticament: + +`sudo apt-mark auto {{nom_paquet}}` + +- Manté un paquet en la seva versió actual i evita que s'actualitzi: + +`sudo apt-mark hold {{nom_paquet}}` + +- Permet que es pugui actualitzar de nou: + +`sudo apt-mark unhold {{nom_paquet}}` + +- Mostra els paquets instal·lats manualment: + +`apt-mark showmanual` + +- Mostra els paquets mantinguts que no estàn actualitzats: + +`apt-mark showhold` diff --git a/pages.ca/linux/apt.md b/pages.ca/linux/apt.md new file mode 100644 index 00000000000000..85e5a8f2e443e3 --- /dev/null +++ b/pages.ca/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> Eina de gestió de paquets per a distribucions basades en Debian. +> Es recomana substituïr-lo per `apt-get` quan es faci servir interactivament en Ubuntu 16.04 o en versions posteriors. +> Més informació: . + +- Actualitza la llista de paquets i versions disponbles (es recomana executar aquest comandament abans que qualsevol altre `apt`): + +`sudo apt update` + +- Busca un paquet: + +`apt search {{paquet}}` + +- Mostra la informació de un paquet: + +`apt show {{paquet}}` + +- Instala un paquet o l'actualitza a l'última versió disponible: + +`sudo apt install {{paquet}}` + +- Elimina un paquet (si s'utiliza `purge` també elimina els seus arxius de configuració): + +`sudo apt remove {{paquet}}` + +- Actualitza tots els paquets instal·lats a les noves versions disponibles: + +`sudo apt upgrade` + +- Mostra tots els paquets: + +`apt list` + +- Mostra tots els paquets instalats: + +`apt list --installed` diff --git a/pages.ca/linux/aptitude.md b/pages.ca/linux/aptitude.md new file mode 100644 index 00000000000000..b8349fafe08ca4 --- /dev/null +++ b/pages.ca/linux/aptitude.md @@ -0,0 +1,36 @@ +# aptitude + +> Eina de gestió de paquets per a Debian i Ubuntu. +> Més informació: . + +- Sincronitza la llista de paquets i versions disponibles (es recomana executar aquest commandament abans que qualsevol altre `aptitude`): + +`aptitude update` + +- Instal·lar un nou paquet i les seves dependències: + +`aptitude install {{paquet}}` + +- Buscar un paquet: + +`aptitude search {{paquet}}` + +- Cercar un paquet instal·lat (`?installed` es un terme de cerca de `aptitude`): + +`aptitude search '?installed({{paquet}})'` + +- Elimina un paquet i tots els paquets que depenen d'ell: + +`aptitude remove {{paquet}}` + +- Actualitza tots els paquets a les noves versions disponibles: + +`aptitude upgrade` + +- Actualitza paquets instal·lats (com `aptitude upgrade`), però elimina els paquets obsolets i instal·la paquets nous per satisfer les dependències: + +`aptitude full-upgrade` + +- Manté un paquet perquè no sigui actualitzat automàticament: + +`aptitude hold '?installed({{paquete}})'` diff --git a/pages.ca/linux/archey.md b/pages.ca/linux/archey.md new file mode 100644 index 00000000000000..76138f83849477 --- /dev/null +++ b/pages.ca/linux/archey.md @@ -0,0 +1,8 @@ +# archey + +> Eina senzilla per mostrar informació del sistema amb estil. +> Més informació: . + +- Mostra informació del sistema: + +`archey` diff --git a/pages.ca/linux/batcat.md b/pages.ca/linux/batcat.md new file mode 100644 index 00000000000000..1c0594ee14f91a --- /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/bpytop.md b/pages.ca/linux/bpytop.md new file mode 100644 index 00000000000000..acec4c022323ce --- /dev/null +++ b/pages.ca/linux/bpytop.md @@ -0,0 +1,28 @@ +# bpytop + +> Mostra informació del sistema en temps real sobre processos executant-se, amb gràfics. Similar a `gtop` i `htop`. +> Més informació: . + +- Inicia bpytop: + +`bpytop` + +- Inicia en mode minimalista sense recuadres de memòria y xarxes: + +`bpytop -m` + +- Mostra la versió: + +`bpytop -v` + +- Canvia a mode minimalista: + +`m` + +- Busca processos o programes executant-se: + +`f` + +- Canvia ajustaments: + +`M` diff --git a/pages.ca/linux/bspwm.md b/pages.ca/linux/bspwm.md new file mode 100644 index 00000000000000..20dcb8e03b334d --- /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/cal.md b/pages.ca/linux/cal.md new file mode 100644 index 00000000000000..4403c93f967ec4 --- /dev/null +++ b/pages.ca/linux/cal.md @@ -0,0 +1,24 @@ +# cal + +> Mostra el calendari, amb el dia actual ressaltat. +> Més informació: . + +- Mostra el calendari del mes actual: + +`cal` + +- Mostra el calendari del més anterior, actual i pròxim: + +`cal -3` + +- Fa servir el dilluns com a primer dia de la setmana: + +`cal --monday` + +- Mostra el calendari per un any concret (4 dígits): + +`cal {{any}}` + +- Mostra el calendari per un mes i any concrets: + +`cal {{mes}} {{any}}` diff --git a/pages.ca/linux/cc.md b/pages.ca/linux/cc.md new file mode 100644 index 00000000000000..a674da7daaaa28 --- /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 00000000000000..86c4e6d74dd2a5 --- /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/clamav.md b/pages.ca/linux/clamav.md new file mode 100644 index 00000000000000..a518c178ed08b2 --- /dev/null +++ b/pages.ca/linux/clamav.md @@ -0,0 +1,21 @@ +# clamav + +> Antivirus de codi obert. +> Dissenyat especialment per escanejar correus electrònics, però pot ser emprat en altres contextos. +> Més informació: . + +- Actualitza definicions de virus: + +`freshclam` + +- Escaneja un arxiu en busca de virus: + +`clamscan {{ruta/al/arxiu}}` + +- Escaneja directoris recursivament i mostra els arxius infectats: + +`clamscan --recursive --infected {{ruta/al/directori}}` + +- Escaneja directoris recursivament y posa els arxius infectats en quarantena: + +`clamscan --recursive --move={{directori}}` diff --git a/pages.ca/linux/cmus.md b/pages.ca/linux/cmus.md new file mode 100644 index 00000000000000..748831179b76d4 --- /dev/null +++ b/pages.ca/linux/cmus.md @@ -0,0 +1,25 @@ +# cmus + +> Reproductor de música per a la terminal. +> Utilitzeu les tecles de direcció per navegar, `` per seleccionar, i els y los números 1-8 per canviar entre les diferents vistes. +> Més informació: . + +- Obre cmus en un directori concret: + +`cmus {{ruta/al/directori}}` + +- Afegeix un arxiu/directori a la llibreria: + +`:add {{ruta/al/arxiu_o_directori}}` + +- Pausa/reprodueix la cançó actual: + +`c` + +- Activa/desactiva mode aleatori: + +`s` + +- Tanca cmus: + +`q` diff --git a/pages.ca/linux/conky.md b/pages.ca/linux/conky.md new file mode 100644 index 00000000000000..a5aad932c1513f --- /dev/null +++ b/pages.ca/linux/conky.md @@ -0,0 +1,28 @@ +# conky + +> Monitor de sistema lleuger per X. +> Més informació: . + +- Executa amb la configuració per defecte: + +`conky` + +- Crea una nova configuració per defecte: + +`conky -C > ~/.conkyrc` + +- Executa conky amb un arxiu de configuració concret: + +`conky -c {{ruta/a/la/configuració}}` + +- Executa en segon pla (*daemon*): + +`conky -d` + +- Posiciona conky en l'escriptori: + +`conky -a {{{top,bottom,middle}_{left,right,middle}}}` + +- Pausa de 5 segons al iniciar abans d'executar-lo: + +`conky -p {{5}}` diff --git a/pages.ca/linux/coredumpctl.md b/pages.ca/linux/coredumpctl.md new file mode 100644 index 00000000000000..6333c7a8d791fb --- /dev/null +++ b/pages.ca/linux/coredumpctl.md @@ -0,0 +1,24 @@ +# coredumpctl + +> Recupera i processa volcats de memòria i les seves metadades. +> Més informació: . + +- Llista tots els volcats de memòria capturats: + +`coredumpctl list` + +- Llista tots els volcats de memòria capturats per un programa: + +`coredumpctl list {{programa}}` + +- Mostra informació sobre els volcats de memòria que coincideixin amb el `PID` d'un programa: + +`coredumpctl info {{PID}}` + +- Invoca el depurador fent servir l'últim volcat de memòria per un programa: + +`coredumpctl debug {{programa}}` + +- Extreu l'últim volcat de memòria a un fitxer: + +`coredumpctl --output={{ruta/al/arxiu}} dump {{programa}}` diff --git a/pages.ca/linux/cp.md b/pages.ca/linux/cp.md new file mode 100644 index 00000000000000..12eaacd88ee689 --- /dev/null +++ b/pages.ca/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Còpia arxius i directoris. +> Més informació: . + +- Copia un arxiu a un altre directori: + +`cp {{ruta/al/arxiu_origen.ext}} {{ruta/al/archiu_destí.ext}}` + +- Copia un archivo en otro directorio, conservando el nombre del archivo: + +`cp {{ruta/al/arxiu_origen.ext}} {{ruta/al/directori_destinatari}}` + +- Còpia de forma recursiva el contingut d'un directori a una altra ubicació (si el destí existeix, el directori és copiat en aquesta ubicació): + +`cp -r {{ruta/al/directori_origen}} {{ruta/al/directori_destinatari}}` + +- Còpia un directori de forma recursiva en mode verbose (mostra els arxius a mesura que es copien): + +`cp -vr {{ruta/al/directori_origen}} {{ruta/al/directori_destinatari}}` + +- Còpia arxius de text en una altra ubicació en mode interactiu (pregunta al usuari abans de sobreescriure): + +`cp -i {{*.txt}} {{ruta/al/directori_destinatari}}` + +- Segueix els enllaços simbòlics abans de copiar: + +`cp -L {{link}} {{ruta/al/directori_destinatari}}` + +- Utilitza la ruta completa dels arxius d'origen, creant els directoris intermitjos faltants al copiar: + +`cp --parents {{ruta_de_origen/al/archiu}} {{ruta/al/archiu_destí}}` diff --git a/pages.ca/linux/cpuid.md b/pages.ca/linux/cpuid.md new file mode 100644 index 00000000000000..c7e0adeeb0495d --- /dev/null +++ b/pages.ca/linux/cpuid.md @@ -0,0 +1,16 @@ +# cpuid + +> Mostra informació detallada sobre totes les CPUs. +> Més informació: . + +- Mostra informació de totes les CPUs: + +`cpuid` + +- Mostra informació només per la CPU actual: + +`cpuid -1` + +- Mostra informació hexadecimal en brut sense decodificar: + +`cpuid -r` diff --git a/pages.ca/linux/cpulimit.md b/pages.ca/linux/cpulimit.md new file mode 100644 index 00000000000000..57136a0cab862a --- /dev/null +++ b/pages.ca/linux/cpulimit.md @@ -0,0 +1,28 @@ +# cpulimit + +> Eina per limitar l'ús de la CPU en altres processos. +> Més informació: . + +- Limita un procés existent amb PID 1234 perquè només utilitzi el 25% de CPU: + +`cpulimit --pid {{1234}} --limit {{25%}}` + +- Limita un programa existent per el seu nom d'execució: + +`cpulimit --exe {{programa}} --limit {{25}}` + +- Executa un programa determinat i limita el seu ús a només el 50% de la CPU: + +`cpulimit --limit {{50}} -- {{programa arg1 arg2 ...}}` + +- Executa un programa, limita l'ús de la CPU a 50% i executa cpulimit en segon pla: + +`cpulimit --limit {{50}} --background -- {{programa}}` + +- Mata el procés si l'ús de CPU del programa supera el 50%: + +`cpulimit --limit 50 --kill -- {{programa}}` + +- Regula el seu procés i els subprocessos perquè cap superi el 25% de CPU: + +`cpulimit --limit {{25}} --monitor-forks -- {{programa}}` diff --git a/pages.ca/linux/dmesg.md b/pages.ca/linux/dmesg.md new file mode 100644 index 00000000000000..90f51454eaa150 --- /dev/null +++ b/pages.ca/linux/dmesg.md @@ -0,0 +1,36 @@ +# dmesg + +> Escriu els missatges del kernel a la sortida estàndar. +> Més informació: . + +- Mostra els missatges del kernel: + +`dmesg` + +- Mostra els missatges d'error del kernel: + +`dmesg --level err` + +- Mostra els missatges del kernel i segueix llegint els nous, similar a `tail -f` (disponible en kernels 3.5.0 i posteriors): + +`dmesg -w` + +- Mostra quanta memòria física hi ha disponible en el sistema: + +`dmesg | grep -i memory` + +- Mostra tots els missatges del kernel, pàgina a pàgina: + +`dmesg | less` + +- Mostra els missatges del kernel amb una estampa temporal (disponible en kernels 3.5.0 i posteriors): + +`dmesg -T` + +- Mostra els missatges del kernel de forma llegible per humans (disponible en kernels 3.5.0 i posteriors): + +`dmesg -H` + +- Pinta la sortida (disponible en kernels 3.5.0 i posteriors): + +`dmesg -L` diff --git a/pages.ca/linux/dmidecode.md b/pages.ca/linux/dmidecode.md new file mode 100644 index 00000000000000..63bae8ab54a630 --- /dev/null +++ b/pages.ca/linux/dmidecode.md @@ -0,0 +1,29 @@ +# dmidecode + +> Mostra la taula de continguts del DMI (també conegut com SMBIOS) en un format llegible per humans. +> Requereix privilegis de root. +> Més informació: . + +- Mostra tota la taula de continguts del DMI: + +`sudo dmidecode` + +- Mostra la versió de la BIOS: + +`sudo dmidecode -s bios-version` + +- Mostra el número de sèrie del equip: + +`sudo dmidecode -s system-serial-number` + +- Mostra informació de la BIOS: + +`sudo dmidecode -t bios` + +- Mostra informació de la CPU: + +`sudo dmidecode -t processor` + +- Mostra informació de la memòria: + +`sudo dmidecode -t memory` diff --git a/pages.ca/linux/dnf.md b/pages.ca/linux/dnf.md new file mode 100644 index 00000000000000..58d191cb73a87a --- /dev/null +++ b/pages.ca/linux/dnf.md @@ -0,0 +1,36 @@ +# dnf + +> Administrador de paquets per RHEL, CentOS i Fedora (Reemplaça a yum). +> Més informació: . + +- Actualitza tots els paquets a l'última versió disponible: + +`sudo dnf update` + +- Busca un paquet fent servir paraules clau: + +`dnf search {{palabra_clau}}` + +- Mostra informació sobre un paquet: + +`dnf info {{paquet}}` + +- Instal·la un nou paquet: + +`sudo dnf install {{paquet}}` + +- Instal·la un nou paquet responent si a totes les preguntes: + +`sudo dnf install -y {{paquet}}` + +- Desinstal·la un paquet: + +`sudo dnf remove {{paquet}}` + +- Llista tots els paquets instal·lats: + +`dnf list --installed` + +- Troba quin paquet proveeeix un arxiu determinat: + +`dnf provides {{arxiu}}` diff --git a/pages.ca/linux/dos2unix.md b/pages.ca/linux/dos2unix.md new file mode 100644 index 00000000000000..e2c9a3778b5a5a --- /dev/null +++ b/pages.ca/linux/dos2unix.md @@ -0,0 +1,13 @@ +# dos2unix + +> Canvia salts de línia amb format DOS a salts de línia amb format Unix. +> Reemplaça CRLF amb LF. +> Més informació: . + +- Canvia els salts de línia en un arxiu: + +`dos2unix {{nom_del_arxiu}}` + +- Crea una còpia amb salts de línia en format Unix: + +`dos2unix -n {{nom_del_arxiu}} {{nou_nom_del_arxiu}}` diff --git a/pages.ca/linux/free.md b/pages.ca/linux/free.md new file mode 100644 index 00000000000000..4037ace8750f16 --- /dev/null +++ b/pages.ca/linux/free.md @@ -0,0 +1,20 @@ +# free + +> Mostra la quantitat de memòria lliure i utilitzada en el sistema. +> Més informació: . + +- Mostra la memòria del sistema: + +`free` + +- Mostra la memòria del sistema en Bytes/KB/MB/GB: + +`free -{{b|k|m|g}}` + +- Mostra la memòria del sistema en unitats llegibles per humans: + +`free -h` + +- Actualitza la sortida cada 2 segons: + +`free -s {{2}}` diff --git a/pages.ca/linux/groupel.md b/pages.ca/linux/groupel.md new file mode 100644 index 00000000000000..d133fdc115b2a9 --- /dev/null +++ b/pages.ca/linux/groupel.md @@ -0,0 +1,8 @@ +# groupdel + +> Elimina del sistema grups d'usuaris existents. +> Més informació: . + +- Borra un grup existent: + +`groupdel {{nom_del_grup}}` diff --git a/pages.ca/linux/halt.md b/pages.ca/linux/halt.md new file mode 100644 index 00000000000000..94e253fac2b150 --- /dev/null +++ b/pages.ca/linux/halt.md @@ -0,0 +1,24 @@ +# halt + +> Deté, apaga o reinicia la màquina. +> Més informació: . + +- Deté la màquina: + +`halt` + +- Apaga la màquina (el mateix que `poweroff`): + +`halt --poweroff` + +- Reinicia la màquina (el mateix que `reboot`): + +`halt --reboot` + +- Deté la màquina inmediatament sense contactar l'administrador de sistemes: + +`halt --force --force` + +- Escriu l'entrada de wtpm shutdown sense aturar el sistema: + +`halt --wtmp-only` diff --git a/pages.ca/linux/i3.md b/pages.ca/linux/i3.md new file mode 100644 index 00000000000000..cf8e7bc44be39d --- /dev/null +++ b/pages.ca/linux/i3.md @@ -0,0 +1,32 @@ +# i3 + +> Gestor dinàmic de finestres en mosaic. +> Més informació: . + +- Comença i3 (cal tenir en compte que no deu haver cap altre gestor de finestres existent en executar aquest comandament): + +`i3` + +- Obre un terminal en una finestra nova: + +`Super + Enter` + +- Crea un nou espai de treball: + +`Super + Shift + {{número}}` + +- Canvia al espai de treball {{número}}: + +`Super + {{número}}` + +- Obre una nova finestra en mosaic horitzontal: + +`Super + h` + +- Obre una nova finestra en mosaic vertical: + +`Super + v` + +- Obre una aplicació (cal escriure el nom de l'aplicació després d'executar el comandament): + +`Super + D` diff --git a/pages.ca/linux/i7z.md b/pages.ca/linux/i7z.md new file mode 100644 index 00000000000000..e46deb33f895af --- /dev/null +++ b/pages.ca/linux/i7z.md @@ -0,0 +1,8 @@ +# i7z + +> Eina d'informes en temps real per CPUs Intel (només i3, i5 i i7). +> Més informació: . + +- Inicia i7z (cal executar amb permisos de root): + +`sudo i7z` diff --git a/pages.ca/linux/ifdown.md b/pages.ca/linux/ifdown.md new file mode 100644 index 00000000000000..a5a3b5251e424b --- /dev/null +++ b/pages.ca/linux/ifdown.md @@ -0,0 +1,12 @@ +# ifdown + +> Desactiva interfícies de xarxa. +> Més informació: . + +- Desactiva la interfície eth0: + +`ifdown {{eth0}}` + +- Desactiva totes les interfícies que estiguin activades: + +`ifdown -a` diff --git a/pages.ca/linux/ip-route-list.md b/pages.ca/linux/ip-route-list.md new file mode 100644 index 00000000000000..3263069b3d12ef --- /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/line.md b/pages.ca/linux/line.md new file mode 100644 index 00000000000000..4d17547387e694 --- /dev/null +++ b/pages.ca/linux/line.md @@ -0,0 +1,8 @@ +# line + +> Llegeix una única línia d'entrada. +> Més informació: . + +- Llegeix una entrada: + +`line` diff --git a/pages.ca/linux/lsb_release.md b/pages.ca/linux/lsb_release.md new file mode 100644 index 00000000000000..ff2b730e700a31 --- /dev/null +++ b/pages.ca/linux/lsb_release.md @@ -0,0 +1,20 @@ +# lsb_release + +> Proporciona informació específica de la distribució i LSB (Linux Standard Base). +> Més informació: . + +- Mostra tota la informació disponible: + +`lsb_release -a` + +- Mostra una descripció dels sistema operatiu (normalment el nom complet): + +`lsb_release -d` + +- Mostra només el nom del sistema operatiu (ID) sense el camp nom: + +`lsb_release -i -s` + +- Mostra el número de versió i el nom en clau de la distribució sense el camp nom: + +`lsb_release -rcs` diff --git a/pages.ca/linux/lsmod.md b/pages.ca/linux/lsmod.md new file mode 100644 index 00000000000000..bb2646cfdeb525 --- /dev/null +++ b/pages.ca/linux/lsmod.md @@ -0,0 +1,9 @@ +# lsmod + +> Mostra l'estat dels mòduls carregats en el kernel de linux. +> Vegeu també `modprobe`, el qual carrega mòduls de kernel. +> Més informació: . + +- Llista tots els mòduls de kernel carregats: + +`lsmod` diff --git a/pages.ca/linux/lsusb.md b/pages.ca/linux/lsusb.md new file mode 100644 index 00000000000000..439a8000445989 --- /dev/null +++ b/pages.ca/linux/lsusb.md @@ -0,0 +1,24 @@ +# lsusb + +> Mostra informació sobre ports i dispositius USB. +> Més informació: . + +- Llista tots els dispositius USB disponibles: + +`lsusb` + +- Llista la jerarquia de dispositius USB en forma d'arbre: + +`lsusb -t` + +- Llista tots els disposititus USB de forma verbosa: + +`lsusb --verbose` + +- Llista informació detallada sobre un dispositiu USB determinat: + +`lsusb -D {{dispositiu}}` + +- Llista només dispositius amb un ID d'assemblador i producte determinat: + +`lsusb -d {{assemblador}}:{{producte}}` diff --git a/pages.ca/linux/megadl.md b/pages.ca/linux/megadl.md new file mode 100644 index 00000000000000..89551b3117e3ff --- /dev/null +++ b/pages.ca/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Aquest comandament es un àlies de `megatools-dl`. +> Més informació: . + +- Veure documentació per el comandament original: + +`tldr megatools-dl` diff --git a/pages.ca/linux/mklost+found.md b/pages.ca/linux/mklost+found.md new file mode 100644 index 00000000000000..0bfaed9d6e209e --- /dev/null +++ b/pages.ca/linux/mklost+found.md @@ -0,0 +1,8 @@ +# mklost+found + +> Crea un directori lost+found. +> Més informació: . + +- Crea un directori `lost+found` en el directori actual: + +`mklost+found` diff --git a/pages.ca/linux/nautilus.md b/pages.ca/linux/nautilus.md new file mode 100644 index 00000000000000..a0806c5a39a6f0 --- /dev/null +++ b/pages.ca/linux/nautilus.md @@ -0,0 +1,33 @@ +# nautilus + +> Explorador de fitxers per defecte en l'escriptori GNOME. +> També conegut com a Fitxers. +> Més informació: . + +- Obre Nautilus: + +`nautilus` + +- Obre Nautilus com a root: + +`sudo nautilus` + +- Obre Nautilus en un directori específic: + +`nautilus {{camí/al/directori}}` + +- Obre nautilus amb un directori o fitxer específic seleccionat: + +`nautilus --select {{camí/al/fitxer_o_directori}}` + +- Obre Nautilus en una finestra separada: + +`nautilus --new-window` + +- Tanca totes les instàncies de Nautilus: + +`nautilus --quit` + +- Mostra ajuda: + +`nautilus --help` diff --git a/pages.ca/linux/ncal.md b/pages.ca/linux/ncal.md new file mode 100644 index 00000000000000..ca0d00351d53b5 --- /dev/null +++ b/pages.ca/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Aquest comandament és un àlies de `cal`. +> Més informació: . + +- Veure documentació per el comandament original: + +`tldr cal` diff --git a/pages.ca/linux/newgrp.md b/pages.ca/linux/newgrp.md new file mode 100644 index 00000000000000..e2daf986355316 --- /dev/null +++ b/pages.ca/linux/newgrp.md @@ -0,0 +1,12 @@ +# newgrp + +> Canvia el grup primari de pertinència. +> Més informació: . + +- Canvia el grup primari de pertinència del usuari: + +`newgrp {{nom_grup}}` + +- Restableix el grup primari de pertinència al grup per defecte del usuari `/etc/passwd`: + +`newgrp` diff --git a/pages.ca/linux/ntfsfix.md b/pages.ca/linux/ntfsfix.md new file mode 100644 index 00000000000000..96140d37164b60 --- /dev/null +++ b/pages.ca/linux/ntfsfix.md @@ -0,0 +1,8 @@ +# ntfsfix + +> Arregla problemes habituals d'una partició NTFS. +> Més informació: . + +- Arregla una partició NTFS donada: + +`sudo ntfsfix {{/dev/sdXN}}` diff --git a/pages.ca/linux/pkgadd.md b/pages.ca/linux/pkgadd.md new file mode 100644 index 00000000000000..ada77ef961c20b --- /dev/null +++ b/pages.ca/linux/pkgadd.md @@ -0,0 +1,12 @@ +# pkgadd + +> Afegeix un paquet a un sistema CRUX. +> Més informació: . + +- Instal·la un paquet de software local: + +`pkgadd {{nom_paquet}}` + +- Actualitza un paquet ja instal·lat a partir de un paquet local: + +`pkgadd -u {{nom_paquet}}` diff --git a/pages.ca/linux/pkgrm.md b/pages.ca/linux/pkgrm.md new file mode 100644 index 00000000000000..2a0b52713b06bf --- /dev/null +++ b/pages.ca/linux/pkgrm.md @@ -0,0 +1,8 @@ +# pkgrm + +> Elimina un paquet d'un sistema CRUX. +> Més informació: . + +- Elimina un paquet instal·lat: + +`pkgrm {{nom_del_paquet}}` diff --git a/pages.ca/linux/poweroff.md b/pages.ca/linux/poweroff.md new file mode 100644 index 00000000000000..889cfb183cff18 --- /dev/null +++ b/pages.ca/linux/poweroff.md @@ -0,0 +1,24 @@ +# poweroff + +> Apaga la màquina. +> Més informació: . + +- Apaga la màquina: + +`poweroff` + +- Atura el sistema (el mateix que `halt`): + +`poweroff --halt` + +- Reinicia el ssitema (el mateix que `reboot`): + +`poweroff --reboot` + +- Apaga el sistema sense contactar l'administrador del sistema: + +`poweroff --force --force` + +- Escriu l'entrada de wtpm shutdown sense apagar l'ordinador: + +`poweroff --wtmp-only` diff --git a/pages.ca/linux/pwdx.md b/pages.ca/linux/pwdx.md new file mode 100644 index 00000000000000..2daf2c74d7c3fe --- /dev/null +++ b/pages.ca/linux/pwdx.md @@ -0,0 +1,8 @@ +# pwdx + +> Mostra el directori de treball de un procés. +> Més informació: . + +- Mostra el directori de treball actual de un procés: + +`pwdx {{process_id}}` diff --git a/pages.ca/linux/raspinfo.md b/pages.ca/linux/raspinfo.md new file mode 100644 index 00000000000000..430fbcf72d7217 --- /dev/null +++ b/pages.ca/linux/raspinfo.md @@ -0,0 +1,8 @@ +# raspinfo + +> Mostra informació del sistema en una Raspberry Pi. +> Més informació: . + +- Mostra informació del sistema: + +`raspinfo` diff --git a/pages.ca/linux/reboot.md b/pages.ca/linux/reboot.md new file mode 100644 index 00000000000000..b7ca42db6e4ebb --- /dev/null +++ b/pages.ca/linux/reboot.md @@ -0,0 +1,24 @@ +# reboot + +> Reinicia la màquina. +> Més informació: . + +- Reinicia inmediatament: + +`reboot` + +- Apaga el sistema (el mateix que `poweroff`): + +`reboot --poweroff` + +- Atura el sistema (el mateix que halt): + +`reboot --halt` + +- Reinicia inmediatament sense contactar l'adminstrador del sistema: + +`reboot --force` + +- Escriu l'entrada wtmp shutdown sense reiniciar el sistema: + +`reboot --wtmp-only` diff --git a/pages.ca/linux/reset.md b/pages.ca/linux/reset.md new file mode 100644 index 00000000000000..09e772e3ad581f --- /dev/null +++ b/pages.ca/linux/reset.md @@ -0,0 +1,12 @@ +# reset + +> Reinicialitza la terminal actual. Borra tota la pantalla de la terminal. +> Més informació: . + +- Reinicialitza la terminal actual: + +`reset` + +- Mostra el tipus de terminal: + +`reset -q` diff --git a/pages.ca/linux/rig.md b/pages.ca/linux/rig.md new file mode 100644 index 00000000000000..1babf05876846f --- /dev/null +++ b/pages.ca/linux/rig.md @@ -0,0 +1,24 @@ +# rig + +> Utilitat per generar un nom, cognom, carrer i número, en conjunt d'una ubicació geogràfica consistent (un conjunt vàlid de ciutat, estat i codi postal). +> Més informació: . + +- Mostra un nom aleatori (masculí o femení) i una direcció: + +`rig` + +- Mostra un nom [m]asculí o [f]emení aleatori i una direcció: + +`rig -{{m|f}}` + +- Fa servir arxius de dades d'un directori específic (per defecte és `/usr/share/rig`): + +`rig -d {{ruta/al/directori}}` + +- Especifica el número d'identitats a generar: + +`rig -c {{numero}}` + +- Especifica el número d'identitats amb el gènere escollit a generar: + +`rig -{{m|f}} -c {{numero}}` diff --git a/pages.ca/linux/sensible-browser.md b/pages.ca/linux/sensible-browser.md new file mode 100644 index 00000000000000..8b2c8930e15c67 --- /dev/null +++ b/pages.ca/linux/sensible-browser.md @@ -0,0 +1,12 @@ +# sensible-browser + +> Obre el navegador predeterminat. +> Més informació: . + +- Obre una nova finestra del navegador predeterminat: + +`sensible-browser` + +- Obre una URL en el navegador predeterminat: + +`sensible-browser {{url}}` diff --git a/pages.ca/linux/sensors.md b/pages.ca/linux/sensors.md new file mode 100644 index 00000000000000..0e0c09e1d5f119 --- /dev/null +++ b/pages.ca/linux/sensors.md @@ -0,0 +1,12 @@ +# sensors + +> Proporciona informació dels sensors. +> Més informació: . + +- Mostra les lectures actuals de tots els sensors: + +`sensors` + +- Mostra les temperatures en graus Fahrenheit: + +`sensors --fahrenheit` diff --git a/pages.ca/linux/service.md b/pages.ca/linux/service.md new file mode 100644 index 00000000000000..93ca5e0dbd5901 --- /dev/null +++ b/pages.ca/linux/service.md @@ -0,0 +1,21 @@ +# service + +> Gestiona els serveis mitjançant l'execució de scripts init. +> S'ha d'ometre la ruta completa del script (s'assumeix `/etc/init.d`). +> Més informació: . + +- Llista el nom i l'estat de tots els serveis: + +`service --status-all` + +- Inicia/Para/Reinicia/Recarrega servei (_start_/_stop_ hauria d'estar sempre disponible): + +`service {{nom_del_servei}} {{start|stop|restart|reload}}` + +- Fa un reinici complet (executa el script dues vegades amb _start_ i _stop_): + +`service {{nom_del_servei}} --full-restart` + +- Mostra l'estat actual d'un servei: + +`service {{nom_del_servei}} status` diff --git a/pages.ca/linux/shutdown.md b/pages.ca/linux/shutdown.md new file mode 100644 index 00000000000000..1ae1ce75fab1b4 --- /dev/null +++ b/pages.ca/linux/shutdown.md @@ -0,0 +1,24 @@ +# shutdown + +> Deté, apaga o reinicia la màquina. +> Més informació: . + +- Deté inmediatament: + +`shutdown -h now` + +- Reinicia inmediatament: + +`shutdown -r now` + +- Reinicia després de 5 minuts: + +`shutdown -r +{{5}} &` + +- Apaga a la 1:00 PM (format 24h): + +`shutdown -h 13:00` + +- Cancel·la una operació d'apagat/reinici pendent: + +`shutdown -c` diff --git a/pages.ca/linux/snake4scores.md b/pages.ca/linux/snake4scores.md new file mode 100644 index 00000000000000..f679ea636c99cc --- /dev/null +++ b/pages.ca/linux/snake4scores.md @@ -0,0 +1,8 @@ +# snake4scores + +> Mostra les màximes puntuacions del joc snake4. +> Més informació: . + +- Mostra les màximes puntuacions: + +`snake4scores` diff --git a/pages.ca/linux/systemctl.md b/pages.ca/linux/systemctl.md new file mode 100644 index 00000000000000..cc9955a3f64e13 --- /dev/null +++ b/pages.ca/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Controla el sistema systemd i el gestor de serveis. +> Més informació: . + +- Mostra tots els serveis en execució: + +`systemctl status` + +- Llista les unitats fallides: + +`systemctl --failed` + +- Inicia/Atura/Reinicia/Recarrega un servei: + +`systemctl {{start|stop|restart|reload}} {{unitat}}` + +- Mostra l'estat d'una unitat: + +`systemctl status {{unitat}}` + +- Habilita/Deshabilita una unitat perquè s'inicii en l'arrencada: + +`systemctl {{enable|disable}} {{unitat}}` + +- Enmascara/Desenmascara una unitat per evitar la seva habilitació i activació manual: + +`systemctl {{mask|unmask}} {{unida` + +- Recarrega systemd, buscant unitats noves o modificades: + +`systemctl daemon-reload` + +- Comprova si una unitat està habilitada: + +`systemctl is-enabled {{unitat}}` diff --git a/pages.ca/linux/tcpflow.md b/pages.ca/linux/tcpflow.md new file mode 100644 index 00000000000000..3cfdfab578076d --- /dev/null +++ b/pages.ca/linux/tcpflow.md @@ -0,0 +1,8 @@ +# tcpflow + +> Captura el tràfic TCP per depuració i anàlisi. +> Més informació: . + +- Mostra totes les dades de la interfície i el port indicats: + +`tcpflow -c -i {{eth0}} port {{80}}` diff --git a/pages.ca/linux/tcpkill.md b/pages.ca/linux/tcpkill.md new file mode 100644 index 00000000000000..356fb45c735d89 --- /dev/null +++ b/pages.ca/linux/tcpkill.md @@ -0,0 +1,8 @@ +# tcpkill + +> Mata les conexions TCP en curs especificades. +> Més informació: . + +- Mata les conexions en curs d'una interfície, màquina i port indicats: + +`tcpkill -i {{eth1}} host {{192.95.4.27}} and port {{2266}}` diff --git a/pages.ca/linux/top.md b/pages.ca/linux/top.md new file mode 100644 index 00000000000000..e17aa27a481299 --- /dev/null +++ b/pages.ca/linux/top.md @@ -0,0 +1,32 @@ +# top + +> Mostra informació dinàmica en temps real sobre processos executant-se. +> Més informació: . + +- Inicia top: + +`top` + +- No mostra cap procés inactiu o zombie: + +`top -i` + +- Mostra només processos pertanyents a un usari donat: + +`top -u {{usuari}}` + +- Ordena processos per una columna: + +`top -o {{nom_columna}}` + +- Mostra els fils individuals d'un procés donat: + +`top -Hp {{id_procés}}` + +- Mostra només els processos amb un(s) PID(s) donat(s), separats per comes. (Normalment no es coneix el PID amb antelació. Aquest exemple l'obté del nom del procés): + +`top -p $(pgrep -d ',' {{nom_procés}})` + +- Obté ajuda sobre els commandaments interactius: + +`?` diff --git a/pages.ca/linux/ubuntu-bug.md b/pages.ca/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..9a1030e6e6db3c --- /dev/null +++ b/pages.ca/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Aquest commandament és un àlies de `apport-bug`. +> Més informació: . + +- Veure documentació per el commandament original: + +`tldr apport-bug` diff --git a/pages.ca/linux/ufw.md b/pages.ca/linux/ufw.md new file mode 100644 index 00000000000000..23f24fa6015796 --- /dev/null +++ b/pages.ca/linux/ufw.md @@ -0,0 +1,37 @@ +# ufw + +> Tallafocs sense complicacions (_Uncomplicated Firewall_). +> Interfície d'usuari de iptables per facilitar la configuració d'un firewall. +> Més informació: . + +- Activa ufw: + +`ufw enable` + +- Desactiva ufw: + +`ufw disable` + +- Mostra les regles del ufw, en conjunt amb els seus números: + +`ufw status numbered` + +- Permet el tràfic entrant en el port 5432 en aquest host amb un comentari que indentifiqui el servei: + +`ufw allow {{5432}} comment "{{servei}}"` + +- Permet només el tràfic TCP desde 192.168.0.4 a qualsevol direcció d'aquest host, en el port 22: + +`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}` + +- Denega el tràfic en el port 80 en aquest host: + +`ufw deny {{80}}` + +- Denega tot el tràfic al port 22: + +`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}` + +- Elimina una regla concreta. El número de la regla es pot obtenir del comanadament `ufw status numbered`: + +`ufw delete {{número_de_regla}}` diff --git a/pages.ca/linux/useradd.md b/pages.ca/linux/useradd.md new file mode 100644 index 00000000000000..177546a50277c4 --- /dev/null +++ b/pages.ca/linux/useradd.md @@ -0,0 +1,33 @@ +# useradd + +> Crea un nou usuari. +> Vegeu també: `users`, `userdel`, `usermod`. +> Més informació: . + +- Crea un usuari nou: + +`sudo useradd {{nom_usuari}}` + +- Crea un usuari amb l'id d'usuari especificada: + +`sudo useradd --uid {{id}} {{nom_usuari}}` + +- Crea un usuari nou amb una shell específica: + +`sudo useradd --shell {{ruta/a/la/shell}} {{nom_usuari}}` + +- Crea un usuari nou pertanyent a grups adicionals (cal tenir en compte que no existeixen espais en blanc): + +`sudo useradd --groups {{grup1,grup2}} {{nom_usuari}}` + +- Crea un usuari nou amb el directori home predeterminat: + +`sudo useradd --create-home {{nom_usuari}}` + +- Crea un usuari nou amb el directori home omplert per una plantilla: + +`sudo useradd --skel {{/cami/al/directori_plantilles}} --create-home {{nom_usuari}}` + +- Crea un usuari nou del sistema sense directori home: + +`sudo useradd --no-create-home --system {{nom_usuari}}` diff --git a/pages.ca/linux/userdel.md b/pages.ca/linux/userdel.md new file mode 100644 index 00000000000000..365ca9470747b0 --- /dev/null +++ b/pages.ca/linux/userdel.md @@ -0,0 +1,17 @@ +# userdel + +> Elimina una conta d'usuari o elimina un usuari d'un grup. +> Vegeu també: `users`, `useradd`, `usermod`. +> Més informació: . + +- Elimina un usuari: + +`sudo userdel {{nom_usuari}}` + +- Elimina un usuari en un altre directori root: + +`sudo userdel --root {{ruta/al/altre/root}} {{nom_usuari}}` + +- Elimina un usuari en conjunt amb el seu directori home i mail spool: + +`sudo userdel --remove {{nom_usuari}}` diff --git a/pages.ca/linux/usermod.md b/pages.ca/linux/usermod.md new file mode 100644 index 00000000000000..392cd8534c10dc --- /dev/null +++ b/pages.ca/linux/usermod.md @@ -0,0 +1,25 @@ +# usermod + +> Modifica una conta d'usuari. +> Vegeu també: `users`, `useradd`, `userdel`. +> Més informació: . + +- Canvia el nom d'usuari: + +`sudo_usermod -l {{nou_nom_usuari}} {{nom_usuari}}` + +- Canvia l'id d'usuari: + +`sudo_usermod --uid {{id}} {{nom_usuari}}` + +- Canvia la shell d'un usuari: + +`sudo_usermod --shell {{cami/a/shell}} {{nom_usuar}}` + +- Afegeix un usuari a grups suplementaris (cal tenir en compte els espais en blanc): + +`sudo_usermod -a -G {{grup1,grup2}} {{nom_usuar}}` + +- Crea un nou directori home per un usuari i mou tots els arxius a ell: + +`sudo_usermod -m -d {{ruta/al/home}} {{nom_usuar}}` diff --git a/pages.ca/linux/vipw.md b/pages.ca/linux/vipw.md new file mode 100644 index 00000000000000..3a4f2bf6932acc --- /dev/null +++ b/pages.ca/linux/vipw.md @@ -0,0 +1,12 @@ +# vipw + +> Edita l'arxiu de contrasenyes. +> Més informació: . + +- Edita l'arxiu de contrasenyes: + +`vipw` + +- Mostra la versió instal·lada de `vipw`: + +`vipw --version` diff --git a/pages.ca/linux/vmstat.md b/pages.ca/linux/vmstat.md new file mode 100644 index 00000000000000..65fc72f9cb3b7b --- /dev/null +++ b/pages.ca/linux/vmstat.md @@ -0,0 +1,12 @@ +# vmstat + +> Reporta informació sobre processos, memòria, paginació, IO en bloc, traps, discos i activitat de la CPU. +> Més informació: . + +- Mostra les estadístiques de la memòria virtual: + +`vmstat` + +- Mostra informes cada 2 segons 5 vegades: + +`vmstat {{2}} {{5}}` diff --git a/pages.ca/linux/xdg-open.md b/pages.ca/linux/xdg-open.md new file mode 100644 index 00000000000000..19f777f8639aa5 --- /dev/null +++ b/pages.ca/linux/xdg-open.md @@ -0,0 +1,24 @@ +# xdg-open + +> Obre un arxiu o URL en l'aplicació predeterminada del usuari. +> Més informació: . + +- Obre el directori actual en l'explorador d'arxius predeterminat:: + +`xdg-open .` + +- Obre una URL en el navegador predeterminat: + +`xdg-open {{https://www.exemple.cat}}` + +- Obre una imatge en el visor d'imatges predeterminat: + +`xdg-open {{ruta/a/imatge}}` + +- Obre un PDF en el visor de PDF predeterminat: + +`xdg-open {{ruta/al/pdf}}` + +- Mostra l'ajuda: + +`xdg-open --help` diff --git a/pages.ca/linux/xfreerdp.md b/pages.ca/linux/xfreerdp.md new file mode 100644 index 00000000000000..bc1bd97495ceb4 --- /dev/null +++ b/pages.ca/linux/xfreerdp.md @@ -0,0 +1,12 @@ +# xfreerdp + +> Implementació lliure del protocol d'escriptori remot (_Remote Desktop Protocol_). +> Més informació: . + +- Connecta amb un servidor FreeRDP: + +`xfreerdp /u:{{nom_usuari}} /p:{{contrasenya}} /v:{{direcció_ip}}` + +- Connecta amb un servidor FreeRDP i activa la redirecció d'audio fent servir un dispositiu `sys:alsa`: + +`xfreerdp /u:{{nom_usuari}} /p:{{contrassenya}} /v:{{direcció_ip}} /sound:{{sys:alsa}}` diff --git a/pages.ca/linux/yum.md b/pages.ca/linux/yum.md new file mode 100644 index 00000000000000..e2e10c63a29cab --- /dev/null +++ b/pages.ca/linux/yum.md @@ -0,0 +1,28 @@ +# yum + +> Administrador de paquets per RHEL, CentOS i Fedora (per versions anteriors). +> Més informació: . + +- Instal·la un nuevo paquete: + +`yum install {{paquet}}` + +- Instal·la un nou paquet responent si a totes les preguntes (també funciona amb actualitzacions, útil per actualitzacions automàtiques): + +`yum -y install {{paquet}}` + +- Troba quin paquet proveeix un arxiu determinat: + +`yum provides {{comandament}}` + +- Elimina un paquet: + +`yum remove {{paquet}}` + +- Mostra les actualitzacions disponibles per els paquets instal·lats: + +`yum check-update` + +- Actualitza els paquets instal·lats a les versions més recents disponibles: + +`yum upgrade` diff --git a/pages.ca/linux/zypper.md b/pages.ca/linux/zypper.md new file mode 100644 index 00000000000000..682bc057e1dcd6 --- /dev/null +++ b/pages.ca/linux/zypper.md @@ -0,0 +1,28 @@ +# zypper + +> Utilitat per la gestió de paquets en SUSE i openSUSE. +> Més informació: . + +- Sincronitza la llista de paquets i versions disponibles: + +`zypper refresh` + +- Instal·la un nou paquet: + +`zypper install {{paquet}}` + +- Elimina un paquet: + +`zypper remove {{paquet}}` + +- Actualitza els paquets instal·lats a la versió més recent disponible: + +`zypper update` + +- Busca en els repositoris un paquet mitjançant una paraula clau: + +`zypper search {{paraula_clau}}` + +- Mostra informació relacionada amb els repositoris configurats: + +`zypper repos --sort-by-priority` diff --git a/pages.ca/osx/aa.md b/pages.ca/osx/aa.md new file mode 100644 index 00000000000000..a1867ff02e6322 --- /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 00000000000000..06eb8c77474fcd --- /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 00000000000000..2a456df4af6199 --- /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 00000000000000..d1de6eab17be32 --- /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 00000000000000..467390c60d7944 --- /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 00000000000000..460e4b4fb674b7 --- /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 00000000000000..05e4b2f4242367 --- /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 00000000000000..7442fad88c1659 --- /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 00000000000000..f46f82b97344fb --- /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 00000000000000..89729e345c4c41 --- /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 00000000000000..34fceca504acea --- /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 00000000000000..16d63b42457a3f --- /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 00000000000000..0bc6d884c74f78 --- /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 00000000000000..72a4b06ff13215 --- /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 00000000000000..b816934f48d716 --- /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 00000000000000..4eb2d1f3ab1115 --- /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 00000000000000..0ae3adcc57d0f6 --- /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 00000000000000..95436991ec1cc1 --- /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 00000000000000..3fcb6ceea2390e --- /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 00000000000000..6d43e879dd80da --- /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 00000000000000..f87dea046da81d --- /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 00000000000000..106466f8d7915b --- /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 00000000000000..6b6d1e99446dbf --- /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 00000000000000..c95e8679aab5e7 --- /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 00000000000000..3e452e3d81c5e2 --- /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 00000000000000..ee033022ab9622 --- /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 00000000000000..bada65d1d22e9f --- /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 00000000000000..a28c6e9ff40741 --- /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 00000000000000..08f750f83030f6 --- /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 00000000000000..6aed81e0841240 --- /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 00000000000000..c42434428a51d2 --- /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 00000000000000..74fe526ddec97f --- /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 00000000000000..15e5da7e5b18ae --- /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 00000000000000..0d237b2a8ac0c1 --- /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 00000000000000..c833657df44dc0 --- /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 00000000000000..53f920ce6aac59 --- /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 00000000000000..254897eeac35c6 --- /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 00000000000000..05f57bdec0ea5e --- /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 00000000000000..42dc81a69e1560 --- /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 00000000000000..2d6af75c761cc9 --- /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 00000000000000..88b2612b0ad52e --- /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 00000000000000..e819b64b67d19d --- /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 00000000000000..95255b5e688108 --- /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 00000000000000..0b1be49320ce7d --- /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 00000000000000..74393dff5a04e5 --- /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 00000000000000..5e2880bb1cdc64 --- /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 00000000000000..8d0fd02f3d7208 --- /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 00000000000000..784bb9f9aa9c8b --- /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 00000000000000..f40b4e0fe0079d --- /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 00000000000000..02a6f9982c32c9 --- /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 00000000000000..0c32414ab2d664 --- /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 00000000000000..d278c589214ba1 --- /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 00000000000000..4b0d9617509904 --- /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 00000000000000..c8756a985f6deb --- /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 00000000000000..b70a548a494c7a --- /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 00000000000000..fd814e7647347f --- /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 00000000000000..fb2ae977171605 --- /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 00000000000000..c342013ab82f44 --- /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 00000000000000..9f6fad5ffc757f --- /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 00000000000000..e306b00f931036 --- /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 00000000000000..eb63128b9ba8a1 --- /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 00000000000000..7ee15c90a4af37 --- /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 00000000000000..4af478b1f44a01 --- /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 00000000000000..84edfa7638205d --- /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 00000000000000..99df95ee014e31 --- /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 00000000000000..122ec438fe5a7c --- /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 00000000000000..38d36014d609d0 --- /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 00000000000000..56db162ea95707 --- /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 00000000000000..b5cf3509e88e32 --- /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 00000000000000..ab25d45dfe90af --- /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 00000000000000..aad3aa053e20fc --- /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 00000000000000..416cc93fea760b --- /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 00000000000000..787521f65dde5a --- /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 00000000000000..c2db4fbe59a912 --- /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 00000000000000..5ffdf2b10f8bab --- /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 00000000000000..643d390f433e68 --- /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 00000000000000..ae6b32ff1212d8 --- /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 00000000000000..a1a378cf49c55b --- /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 00000000000000..0755b95a257bac --- /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 00000000000000..ac5d61bce8bca3 --- /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 00000000000000..d93dfa903cde2d --- /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 00000000000000..ae7032c1a17def --- /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 00000000000000..d535406f8f04f1 --- /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 00000000000000..cefd3c1ad5c052 --- /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 00000000000000..181da3c4fc0b85 --- /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 00000000000000..44fbd2d5a90fb6 --- /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 00000000000000..502501db1c7b1a --- /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 00000000000000..ca7747ef3a9357 --- /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 00000000000000..a1ba0f3c7c07d7 --- /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 00000000000000..836ea36a4c8796 --- /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 00000000000000..6fe3c8319c1ad1 --- /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 00000000000000..fbeed9a4b576ce --- /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 00000000000000..747dc0b9224e69 --- /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 00000000000000..5641e7381f9672 --- /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 00000000000000..781b8f1228afcf --- /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 00000000000000..1df8b714a395aa --- /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 00000000000000..16fe64374d4253 --- /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 00000000000000..ba2553887ea295 --- /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 00000000000000..885757caa33831 --- /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 00000000000000..38984cfa39bf1d --- /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 00000000000000..d23692ea4bbf7e --- /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 00000000000000..e1c689a6344422 --- /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 00000000000000..a860e638d07107 --- /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 00000000000000..2c25513a7f3d13 --- /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 00000000000000..d1e3eb5d03a54f --- /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 00000000000000..dc3b2b3f719587 --- /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 00000000000000..f9a58d41eb529a --- /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 00000000000000..1fafbaacaf80d2 --- /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 00000000000000..31a455091dd591 --- /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 00000000000000..35a99d9012b6b3 --- /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 00000000000000..c397847f0a59e1 --- /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 00000000000000..78398688281b7c --- /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 00000000000000..9cfa4d12024775 --- /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 00000000000000..72627e18bf438c --- /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 00000000000000..36cc6b6effd976 --- /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 00000000000000..bfe92c49c29086 --- /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 00000000000000..fbd55c640295d3 --- /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 00000000000000..0c2439c498e08b --- /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 00000000000000..b8402ca33ac12b --- /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 00000000000000..d828d4ba2ff2b6 --- /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 00000000000000..2529066dde6f00 --- /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 00000000000000..5a16709d71ad0a --- /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 00000000000000..5ae261ed4ae69e --- /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 00000000000000..35c8e20909eed7 --- /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 00000000000000..c9f9e9e14356ae --- /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 00000000000000..d4f982cf646935 --- /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 00000000000000..7fe4237f82bb7d --- /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 00000000000000..9db603324cb0f8 --- /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 00000000000000..48bb11485b50b5 --- /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 00000000000000..be6238fe769f24 --- /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 00000000000000..1f0b42eaa11dc3 --- /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 00000000000000..0f8e046b8b9812 --- /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 00000000000000..84b64d5a40f307 --- /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 00000000000000..06dd4df7545523 --- /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 00000000000000..e2eea7452b328f --- /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 00000000000000..f758d3e9f2bd90 --- /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 00000000000000..4c4d38efd0e0df --- /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 00000000000000..3dd90fb3d2641d --- /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 00000000000000..3d7957b3f4f64b --- /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 00000000000000..29ca52f0b85144 --- /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 00000000000000..8bc1a5f5af00b3 --- /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 00000000000000..135163e54c2487 --- /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 00000000000000..0a98fa1e68dc98 --- /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 00000000000000..c50bfc27fa628b --- /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/color.md b/pages.ca/windows/color.md new file mode 100644 index 00000000000000..7153bae2ce3c9c --- /dev/null +++ b/pages.ca/windows/color.md @@ -0,0 +1,16 @@ +# color + +> Canvia els colors de la lletra i del fons de la consola. +> Més informació: . + +- Estableix els colors de la consola als valors per defecte: + +`color` + +- Llista els colors disponibles i informació detallada: + +`color /?` + +- Estableix els colors de lletra i del fons de la consola fent servir valors hexadecimals (`1-9,a-f`): + +`color {{codi_de_primer_pla}}{{codi_fons}}` diff --git a/pages.ca/windows/cpush.md b/pages.ca/windows/cpush.md new file mode 100644 index 00000000000000..ae39f216d027d3 --- /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 00000000000000..c5ed8e8ae467d3 --- /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 00000000000000..117486bffe6f70 --- /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/dir.md b/pages.ca/windows/dir.md new file mode 100644 index 00000000000000..72e7093883d009 --- /dev/null +++ b/pages.ca/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> Llista els continguts d'un directori. +> Més informació: . + +- Mostra els continguts del directori actual: + +`dir` + +- Mostra els continguts d'un directori específic: + +`dir {{camí/al/directori}}` + +- Mostra els continguts del directori actual, incloent fitxers ocults: + +`dir /A` + +- Mostra els continguts d'un directori específic, incloent fitxers ocults: + +`dir {{camí/al/directori}} /A` diff --git a/pages.ca/windows/iwr.md b/pages.ca/windows/iwr.md new file mode 100644 index 00000000000000..ef53084b410226 --- /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 00000000000000..c6010bf95aebca --- /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 00000000000000..e74e91f9cad5d6 --- /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 00000000000000..7bdfe4a2a542f3 --- /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 00000000000000..fe86a4f8b6b3f5 --- /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.da/common/bundler.md b/pages.da/common/bundler.md new file mode 100644 index 00000000000000..433f070646b604 --- /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 00000000000000..ca69816e277a97 --- /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 00000000000000..a03c2ba3c88200 --- /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 00000000000000..0b1bd33d80e8c9 --- /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 00000000000000..f509a96cae21d6 --- /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 00000000000000..45c90baf4a99f9 --- /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 00000000000000..befdb7c04be185 --- /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 00000000000000..5b4fa0080eec29 --- /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 00000000000000..4adbd37b10952b --- /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 00000000000000..870f9143f04237 --- /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 00000000000000..8ddec93c1ec726 --- /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 00000000000000..6cac0a8d2d7efd --- /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 00000000000000..0ef8b6b4ef6cbb --- /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 00000000000000..9539ecf4f41894 --- /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/grep.md b/pages.da/common/grep.md new file mode 100644 index 00000000000000..59ede1aa0ba81f --- /dev/null +++ b/pages.da/common/grep.md @@ -0,0 +1,36 @@ +# grep + +> Find mønstre i filer via regulære udtryk (regular expressions). +> Mere information: . + +- Søg efter et mønster i en fil: + +`grep "{{søgemønster}}" {{sti/til/fil}}` + +- Søg efter en eksakt streng (deaktiverer regulære udtryk): + +`grep --fixed-strings "{{eksakt_streng}}" {{sti/til/fil}}` + +- Søg efter et mønster i alle filer, pånær binære, rekursivt i en mappe. Vis linjenumre der matcher til mønstret: + +`grep --recursive --line-number --binary-files={{without-match}} "{{søgemønster}}" {{sti/til/mappe}}` + +- Brug udvidede regulære udtryk (understøtter `?`, `+`, `{}`, `()` og `|`), i case-insensitive modus: + +`grep --extended-regexp --ignore-case "{{søgemønster}}" {{sti/til/fil}}` + +- Print 3 linjer af kontekst omkring, før eller efter hvert match: + +`grep --{{context|before-context|after-context}}={{3}} "{{søgemønster}}" {{sti/til/fil}}` + +- Print, filnavn og linjenummer for hvert match, med farveoutput: + +`grep --with-filename --line-number --color=always "{{søgemønster}}" {{sti/til/fil}}` + +- Søg efter linjer som matcher et mønster. Print kun den matchende tekst: + +`grep --only-matching "{{søgemønster}}" {{sti/til/fil}}` + +- Søg i `stdin` efter linjer der ikke matcher et mønster: + +`cat {{sti/til/fil}} | grep --invert-match "{{søgemønster}}"` diff --git a/pages.da/common/hx.md b/pages.da/common/hx.md new file mode 100644 index 00000000000000..959056e8b9f2c1 --- /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 00000000000000..80073e341d7783 --- /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 00000000000000..27813fd83ed6cc --- /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 00000000000000..031a637b14ba2b --- /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 00000000000000..63b5f15024e5ca --- /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 00000000000000..acae2069db6228 --- /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 00000000000000..49cc513ffb200c --- /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 00000000000000..1d2f7d87a58730 --- /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 00000000000000..9c3887f0c665dd --- /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 00000000000000..ce0a36763d9a54 --- /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 00000000000000..87dc24699a897d --- /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/ncdu.md b/pages.da/common/ncdu.md new file mode 100644 index 00000000000000..91635a87d73870 --- /dev/null +++ b/pages.da/common/ncdu.md @@ -0,0 +1,24 @@ +# ncdu + +> Diskbrugsanalysator med en ncurses-grænseflade. +> Mere information: . + +- Analysér den nuværende arbejdsmappe: + +`ncdu` + +- Definér farvevalg for output: + +`ncdu --color {{dark|off}}` + +- Analysér en given mappe: + +`ncdu {{sti/til/mappe}}` + +- Gem resultater til en fil: + +`ncdu -o {{sti/til/fil}}` + +- Ekskludér filer der matcher et mønster. Argumentet kan gives flere gange for at tilføje flere mønstre: + +`ncdu --exclude '{{*.txt}}'` diff --git a/pages.da/common/nm-classic.md b/pages.da/common/nm-classic.md new file mode 100644 index 00000000000000..c9300a4522de6a --- /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 00000000000000..103f1e2518dd82 --- /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 00000000000000..4252f0c154c734 --- /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 00000000000000..51a0adb3e88b20 --- /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 00000000000000..81b7acc6f6d50c --- /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/popd.md b/pages.da/common/popd.md new file mode 100644 index 00000000000000..d088b23a797914 --- /dev/null +++ b/pages.da/common/popd.md @@ -0,0 +1,17 @@ +# popd + +> Fjern en mappe placeret på mappe-stakken via den indbyggede shell-kommando `pushd`. +> Se `pushd` for at placere en mappe på mappe-stakken og `dirs` for at vise indholdet af mappe-stakken. +> Mere information: . + +- Fjern den øverste mappe fra mappe-stakken og `cd` til mappen: + +`popd` + +- Fjern den N'te mappe (starter fra 0 fra venstre i den liste `dirs` printer): + +`popd +N` + +- Fjern den N'te mappe (starter fra 0 fra højre fra i liste `dirs` printer): + +`popd -N` diff --git a/pages.da/common/ptpython3.md b/pages.da/common/ptpython3.md new file mode 100644 index 00000000000000..4d230b84b4b2a7 --- /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/pushd.md b/pages.da/common/pushd.md new file mode 100644 index 00000000000000..d9a9ab44b943e6 --- /dev/null +++ b/pages.da/common/pushd.md @@ -0,0 +1,17 @@ +# pushd + +> Tilføj en mappe til mappe-stakken, så den kan tilgås på et senere tidspunkt. +> Se `popd` for at skifte tilbage til den oprindelige mappe og `dirs` for at vise indholdet af mappe-stakken. +> Mere information: . + +- Skift til mappe og tilføj den til mappe-stakken: + +`pushd {{mappe}}` + +- Byt om på første og anden mappe i mappe-stakken: + +`pushd` + +- Rotér mappe-stakken ved at gøre det femte element til det første i mappe-stakken. + +`pushd +4` diff --git a/pages.da/common/python3.md b/pages.da/common/python3.md new file mode 100644 index 00000000000000..ef7a4e1aeb5f80 --- /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 00000000000000..ca20c66d39d825 --- /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 00000000000000..6b2ccb58d19f7c --- /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 00000000000000..47e537e2d439dd --- /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/sed.md b/pages.da/common/sed.md new file mode 100644 index 00000000000000..a3c496ad80a064 --- /dev/null +++ b/pages.da/common/sed.md @@ -0,0 +1,36 @@ +# sed + +> Rediger tekst, programmatisk. +> Mere information: . + +- Erstat den første forekomst af et regulært udtryk (regular expression) i hver linje af en fil, og print resultatet: + +`sed 's/{{regular_expression}}/{{erstat}}/' {{filnavn}}` + +- Erstat alle forekomster af et regulært udtryk in en fil, og print resultatet: + +`sed -r 's/{{regular_expression}}/{{erstat}}/g' {{filnavn}}` + +- Erstat alle forekomster af en streng i en fil, og overskriv filen: + +`sed -i 's/{{find}}/{{erstat}}/g' {{filnavn}}` + +- Erstat forekomster på linjer der matcher mønstret: + +`sed '/{{linje_mønster}}/s/{{find}}/{{erstat}}/' {{filnavn}}` + +- Fjern linjer der matcher mønstret: + +`sed '/{{linje_mønster}}/d' {{filnavn}}` + +- Print de første 11 linjer af en fil: + +`sed 11q {{filnavn}}` + +- Udfør flere find-og-erstat udtryk i en fil: + +`sed -e 's/{{find}}/{{erstat}}/' -e 's/{{find}}/{{erstat}}/' {{filnavn}}` + +- Erstat separator `/` med en hvilken som helst anden karakter ikke brugt i find- eller erstat-mønstrene, f.eks. `#`: + +`sed 's#{{find}}#{{erstat}}#' {{filnavn}}` diff --git a/pages.da/common/tldrl.md b/pages.da/common/tldrl.md new file mode 100644 index 00000000000000..5b849f5dfb3cf0 --- /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 00000000000000..99036a481a2e5c --- /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 00000000000000..2705c8fa80f6f6 --- /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 00000000000000..1c05734ad76b1c --- /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 00000000000000..387350f6bc3a55 --- /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 00000000000000..2e42a45369f3ac --- /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 00000000000000..d66ba48c613dd1 --- /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/w.md b/pages.da/common/w.md new file mode 100644 index 00000000000000..3d9fdeef6656ce --- /dev/null +++ b/pages.da/common/w.md @@ -0,0 +1,13 @@ +# w + +> Vis hvem der er logget ind og hvad de laver. +> Print bruger login, TTY, fjernforbundet vært, login-tidspunkt, inaktiv tid, nuværende proces. +> Mere information: . + +- Vis info på brugere der er logget ind: + +`w` + +- Vis info på brugere der er logget ind, uden overskrifter: + +`w -h` diff --git a/pages.da/common/where.md b/pages.da/common/where.md new file mode 100644 index 00000000000000..0bc8a18a6b58fa --- /dev/null +++ b/pages.da/common/where.md @@ -0,0 +1,9 @@ +# where + +> Returnerer alle kendte instanser for en kommando. +> Eksempelvis en eksekverbar fil i PATH-miljøvariablen, et alias, eller en indbygget shellkomando. +> Mere information: . + +- Find all instanser for en kommando: + +`where {{kommando}}` diff --git a/pages.da/common/xzcat.md b/pages.da/common/xzcat.md new file mode 100644 index 00000000000000..d14dad66e35832 --- /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 00000000000000..83b5dcb90f1f5b --- /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 00000000000000..31fd132b143084 --- /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 00000000000000..f9dc39238f5a60 --- /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 00000000000000..5eab5d4209f223 --- /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 00000000000000..d5004490997251 --- /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 00000000000000..9238676078ae5b --- /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 00000000000000..5292e2ab9856fc --- /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 00000000000000..d456b85b070a9c --- /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 00000000000000..66e39da7e7fc27 --- /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 00000000000000..99b4edda4b3d1f --- /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 00000000000000..64ee505d141721 --- /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 00000000000000..08163ead245df7 --- /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 00000000000000..185738585728a8 --- /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 00000000000000..35ac72e6ed1514 --- /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 00000000000000..7b792dd80f4078 --- /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 00000000000000..77acef3e1c2553 --- /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 00000000000000..f6b5142b509a85 --- /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 00000000000000..faa7b0f1d3f178 --- /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 00000000000000..5d7c466e830f29 --- /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 00000000000000..2533183afb9124 --- /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 00000000000000..cd0c941fb39f18 --- /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 00000000000000..47023ba8757ad5 --- /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 00000000000000..190a7c9df5e450 --- /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 00000000000000..3924a7f429ba3a --- /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 00000000000000..d6e8c4a48d5db5 --- /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 00000000000000..c85582e5aca046 --- /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 00000000000000..a8eaae540d7d22 --- /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 00000000000000..300920517ed452 --- /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 00000000000000..a92983b15183d7 --- /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 00000000000000..8a3427a4bfeb49 --- /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 00000000000000..e3c22d6d229b1a --- /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 00000000000000..68afc5a7bc3395 --- /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 00000000000000..f2403e6df40919 --- /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 00000000000000..a3320c47530045 --- /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 00000000000000..8cda7583f15d2b --- /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 00000000000000..4e28d1cf056d28 --- /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 00000000000000..e05453bd2e28e2 --- /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 00000000000000..56cc19af8d0efb --- /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 00000000000000..fcf225bd998e26 --- /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 00000000000000..a2f00414af160d --- /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 00000000000000..d31ce315b31acd --- /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 00000000000000..48a94fef426dbe --- /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 00000000000000..11adf338f27845 --- /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 00000000000000..eca874d6b63ab0 --- /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 00000000000000..88a9a2d62371d4 --- /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 00000000000000..5f7fd764e2806b --- /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 00000000000000..dc1f2b1d0404bd --- /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 00000000000000..57440157926290 --- /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 00000000000000..a95d20ab07883b --- /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 00000000000000..485cdd2381143d --- /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 00000000000000..6dba4dd7c5ba01 --- /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 00000000000000..29d13f7f3d7c76 --- /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 00000000000000..3add5a69fcc7cb --- /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 00000000000000..69d1f7bdeded11 --- /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 00000000000000..76199f9196e1cb --- /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 00000000000000..300d44a9288b49 --- /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 00000000000000..52bc4396bae5fc --- /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 00000000000000..ca143b1b9ed850 --- /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 00000000000000..014f153a9adb5f --- /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 00000000000000..150238a3c887ed --- /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 00000000000000..11fe4cb40e0718 --- /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 00000000000000..3830d0533079a6 --- /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 00000000000000..cfc5ee90755cf2 --- /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 00000000000000..2b3016ed4e5975 --- /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 00000000000000..26f9e9125dc155 --- /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 00000000000000..e2da571564ebd4 --- /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 00000000000000..2dc3631e5a6c91 --- /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 00000000000000..965dc7089713e4 --- /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 00000000000000..1ba13d6c255c42 --- /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 00000000000000..2be3c1abc5f301 --- /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 00000000000000..bf5f156b35d786 --- /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 00000000000000..778a818407c4a8 --- /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 00000000000000..3cb9e6b0565c1a --- /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 00000000000000..79834626f4c6d1 --- /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 00000000000000..8f0d7a68814f6a --- /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 00000000000000..ce4ca4ca886c1e --- /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 00000000000000..0e5235fe224f99 --- /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 00000000000000..da5e9ff4b4a49f --- /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 00000000000000..d91bd183881d87 --- /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 00000000000000..c58f0c2ff0986d --- /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 00000000000000..3392da9b711e27 --- /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 00000000000000..62efe5fe22f838 --- /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 00000000000000..fd7fff45e80fc2 --- /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 00000000000000..7a83748bc37fc5 --- /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 00000000000000..ef6d47f637a8b8 --- /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 00000000000000..ec2bf71a82f266 --- /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 00000000000000..824a3896fd8f5c --- /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 00000000000000..20d1eda45b6ac1 --- /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 00000000000000..f77c867f18bab8 --- /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 00000000000000..0847284b05137e --- /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 00000000000000..a285251b6f4563 --- /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 00000000000000..d06990df1ce001 --- /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 00000000000000..3f0195eff63ec8 --- /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 00000000000000..099030424d684c --- /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 00000000000000..d0638316eb1983 --- /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 00000000000000..0c9709366f4811 --- /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 00000000000000..d8497e47cde6fb --- /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 00000000000000..db2bb30b8c4560 --- /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 00000000000000..b48fc86fd5f64a --- /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 00000000000000..4a78e2c43dbe25 --- /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 00000000000000..2e147b1f60ab16 --- /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 00000000000000..34f148e649c172 --- /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 00000000000000..4aa9fd565de1a6 --- /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 00000000000000..9d481907eaa882 --- /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 00000000000000..d9eace2aab9d9c --- /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 00000000000000..669f93a35fdd60 --- /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 00000000000000..8038896d654d38 --- /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 00000000000000..281dd035c89c2b --- /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 00000000000000..a004d4e604a21a --- /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 00000000000000..7d91055ce19523 --- /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 00000000000000..28b44cb90b6a07 --- /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 00000000000000..e3883f3d59ffe5 --- /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 00000000000000..0d818fcc610c51 --- /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 00000000000000..e0d347e8e8d258 --- /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 00000000000000..42b5093fdde5eb --- /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 00000000000000..bd530badcd6d69 --- /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 00000000000000..61787994d707f4 --- /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 00000000000000..efb347ef1e87a5 --- /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 00000000000000..a27d589978f212 --- /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 00000000000000..7c6596850c5397 --- /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 00000000000000..a2d0af52d5bca6 --- /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 00000000000000..7820aee8b0b6e3 --- /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 00000000000000..d86c2993bcc335 --- /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 00000000000000..268fc75d1961fc --- /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 00000000000000..f071c6817e1d2c --- /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 00000000000000..26ce3f0a8caa62 --- /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 00000000000000..54a38e6bafb143 --- /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 00000000000000..b5e83dc2fa416f --- /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 00000000000000..bddd2acdbf0cb7 --- /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 00000000000000..39ad110ec21682 --- /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 00000000000000..80f94481ef6e68 --- /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 00000000000000..1c011263831327 --- /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 00000000000000..a3f22713294401 --- /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 00000000000000..0eda8a73bdd0b8 --- /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 00000000000000..e98f2e6d88abbe --- /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 00000000000000..04a13a970916f3 --- /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 00000000000000..72d8a61d4a0e69 --- /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 00000000000000..985babc5e5adb4 --- /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 00000000000000..8404052aa4ec8e --- /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 00000000000000..29b83c71cdd54b --- /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 00000000000000..9f89ded67389ea --- /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 00000000000000..6ab8ab13478369 --- /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 00000000000000..cede85ba516496 --- /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 00000000000000..19264bf13dacba --- /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 00000000000000..d82aac0e02d439 --- /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 00000000000000..f6e0519b57620d --- /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 00000000000000..4498cb6d0210bb --- /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 00000000000000..bd1aa067cfc9cf --- /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 00000000000000..8d1296fbfcf212 --- /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 00000000000000..9c94427924a86e --- /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 00000000000000..faca9d3841ac7d --- /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 00000000000000..f79b778dc9159a --- /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 00000000000000..177da0da8f8cc6 --- /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 00000000000000..ed31adeaff1f67 --- /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 00000000000000..c353988ac30b1a --- /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 00000000000000..8dc52b250c8c87 --- /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 00000000000000..047c64bee0272e --- /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 00000000000000..632f598eebaa80 --- /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 00000000000000..fc52008bd3a9ed --- /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 00000000000000..9e91514fe1e1fc --- /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 00000000000000..b7d31ab8834c70 --- /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/am.md b/pages.de/android/am.md new file mode 100644 index 00000000000000..70f304c61a27a1 --- /dev/null +++ b/pages.de/android/am.md @@ -0,0 +1,20 @@ +# am + +> Androids Aktivitäten-Manager. +> Weitere Informationen: . + +- Starte eine bestimmte Aktivität: + +`am start -n {{com.android.settings/.Settings}}` + +- Starte eine Aktivität und übergib ihr Daten: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Starte eine Aktivität, auf die eine bestimmte Aktion und Kategorie zutrifft: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Konvertiere ein bestimmtes Ziel in einen URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.de/android/bugreport.md b/pages.de/android/bugreport.md new file mode 100644 index 00000000000000..82694729434d18 --- /dev/null +++ b/pages.de/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Zeige Android-Fehlerberichte. +> Dieser Befehl kann nur mit `adb shell` verwendet werden. +> Weitere Informationen: . + +- Zeige einen vollständigen Fehlerbericht eines Androidgeräts an: + +`bugreport` diff --git a/pages.de/android/bugreportz.md b/pages.de/android/bugreportz.md new file mode 100644 index 00000000000000..f3a76ea35c7975 --- /dev/null +++ b/pages.de/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Generiere einen gezippten Android-Fehlerbericht. +> Dieser Befehl kann nur mit `adb shell` verwendet werden. +> Weitere Informationen: . + +- Generiere einen vollständigen Fehlerbericht eines Androidgeräts: + +`bugreportz` + +- Zeige den Fortschritt eines laufenden `bugreportz` Prozesses an: + +`bugreportz -p` + +- Zeige die Versionsnummer von `bugreportz` an: + +`bugreportz -v` + +- Zeige Hilfe an: + +`bugreportz -h` diff --git a/pages.de/android/cmd.md b/pages.de/android/cmd.md new file mode 100644 index 00000000000000..486dfa2a6ddb0a --- /dev/null +++ b/pages.de/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Androids Service-Manager. +> Weitere Informationen: . + +- Liste alle laufenden Services auf: + +`cmd -l` + +- Rufe einen bestimmten Service auf: + +`cmd {{alarm}}` + +- Rufe einen bestimmten Service mit Parametern auf: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.de/android/dalvikvm.md b/pages.de/android/dalvikvm.md new file mode 100644 index 00000000000000..905061120fa4f8 --- /dev/null +++ b/pages.de/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Androids Java Virtual Machine. +> Weitere Informationen: . + +- Starte ein Java-Programm: + +`dalvikvm -classpath {{pfad/zu/datei.jar}} {{klassenname}}` diff --git a/pages.de/android/dumpsys.md b/pages.de/android/dumpsys.md new file mode 100644 index 00000000000000..a142d1ad4256f8 --- /dev/null +++ b/pages.de/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Stelle Informationen über Android-Systemservices bereit. +> Dieser Befehl kann nur mit `adb shell` verwendet werden. +> Weitere Informationen: . + +- Erhalte diagnostische Informationen über alle Systemservices: + +`dumpsys` + +- Erhalte diagnostische Informationen über einen bestimmten Systemservice: + +`dumpsys {{service}}` + +- Liste alle Services, über die `dumpsys` Informationen bereitstellen kann auf: + +`dumpsys -l` + +- Liste Service-spezifische Argumente für einen Service auf: + +`dumpsys {{service}} -h` + +- Schließe einen bestimmten Service von den diagnostischen Informationen aus: + +`dumpsys --skip {{service}}` + +- Gib ein Timeout in Sekunden an (standardmäßig 10s): + +`dumpsys -t {{sekunden}}` diff --git a/pages.de/android/getprop.md b/pages.de/android/getprop.md new file mode 100644 index 00000000000000..44d80f45eebc23 --- /dev/null +++ b/pages.de/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Zeige Informationen über Android-Systemeigenschaften. +> Weitere Informationen: . + +- Gib Informationen über Android-Systemeigenschaften aus: + +`getprop` + +- Gib Informationen über eine bestimmte Systemeigenschaft aus: + +`getprop {{eigenschaft}}` + +- Gib das SDK-API-Level aus: + +`getprop {{ro.build.version.sdk}}` + +- Gib die Android-Version aus: + +`getprop {{ro.build.version.release}}` + +- Gib das Modell des Geräts aus: + +`getprop {{ro.vendor.product.model}}` + +- Gib den OEM-Entsperrstatus aus: + +`getprop {{ro.oem_unlock_supported}}` + +- Gib die MAC-Adresse der WiFi-Karte aus: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.de/android/input.md b/pages.de/android/input.md new file mode 100644 index 00000000000000..eb555556d9b053 --- /dev/null +++ b/pages.de/android/input.md @@ -0,0 +1,25 @@ +# input + +> Sende Eventcodes oder Touchscreengesten an ein Android-Gerät. +> Dieser Befehl kann nur mit `adb shell` verwendet werden. +> Weitere Informationen: . + +- Sende einen Eventcode für die Eingabe eines einzelnen Zeichens an ein Gerät: + +`input keyevent {{eventcode}}` + +- Sende einen Text an ein Gerät (`%s` wird als Leerzeichen verwendet): + +`input text "{{text}}"` + +- Sende ein einzelnes Tippen auf den Touchscreen an ein Gerät: + +`input tap {{x_pos}} {{y_pos}}` + +- Sende ein Wischen über den Touchscreen an ein Gerät: + +`input swipe {{x_start}} {{y_start}} {{x_ende}} {{y_ende}} {{dauer_in_ms}}` + +- Sende ein langes Tippen auf den Touchscreen an ein Gerät: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{dauer_in_ms}}` diff --git a/pages.de/android/logcat.md b/pages.de/android/logcat.md new file mode 100644 index 00000000000000..454015ee8aa29b --- /dev/null +++ b/pages.de/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Gib ein Protokoll aller Systemmeldungen aus. +> Weitere Informationen: . + +- Gib ein Protokoll aller Systemmeldungen aus: + +`logcat` + +- Schreibe alle Systemmeldungen in eine Datei: + +`logcat -f {{pfad/zu/datei}}` + +- Gib Zeilen aus, die einem regulären Ausdruck entsprechen: + +`logcat --regex {{regex}}` diff --git a/pages.de/android/pkg.md b/pages.de/android/pkg.md new file mode 100644 index 00000000000000..af9708d194aa86 --- /dev/null +++ b/pages.de/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Paketverwaltungs-Werkzeug für Termux. +> Weitere Informationen: . + +- Aktualisiere alle installierten Pakete: + +`pkg upgrade` + +- Installiere ein Paket: + +`pkg install {{paket}}` + +- Deinstalliere ein Paket: + +`pkg uninstall {{paket}}` + +- Installiere ein Paket erneut: + +`pkg reinstall {{paket}}` + +- Suche nach einem Paket: + +`pkg search {{paket}}` diff --git a/pages.de/android/pm.md b/pages.de/android/pm.md new file mode 100644 index 00000000000000..f004b40fb84ca5 --- /dev/null +++ b/pages.de/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Zeige Informationen über Apps auf einem Android Gerät. +> Weitere Informationen: . + +- Gib eine Liste aller installierten Apps aus: + +`pm list packages` + +- Gib eine Liste aller installierten System-Apps aus: + +`pm list packages -s` + +- Gib eine Liste aller installierten Apps von Drittanbietern aus: + +`pm list packages -3` + +- Gib eine Liste aller Apps, auf die ein bestimmtes Schlüsselwort zutrifft, aus: + +`pm list packages {{Schlüsselwort}}` + +- Gib den Pfad der APK einer bestimmten App aus: + +`pm path {{app}}` diff --git a/pages.de/android/settings.md b/pages.de/android/settings.md new file mode 100644 index 00000000000000..7a5de4bc8674cb --- /dev/null +++ b/pages.de/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Verwalte Android-Systemeinstellungen. +> Weitere Informationen: . + +- Gib eine Liste aller Einstellungen im Namespace `global` aus: + +`settings list {{global}}` + +- Gib den Wert einer bestimmten Einstellung aus: + +`settings get {{global}} {{airplane_mode_on}}` + +- Setze den Wert einer bestimmten Einstellung: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Lösche eine bestimmte Einstellung: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.de/android/wm.md b/pages.de/android/wm.md new file mode 100644 index 00000000000000..5468fc1e95ecca --- /dev/null +++ b/pages.de/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Zeige Informationen über den Bildschirm eines Android-Geräts. +> Dieser Befehl kann nur mit `adb shell` verwendet werden. +> Weitere Informationen: . + +- Gib die physische Größe des Bildschirms eines Geräts aus: + +`wm {{size}}` + +- Gib die physische Pixeldichte des Bildschirms eines Geräts aus: + +`wm {{density}}` diff --git a/pages.de/common/7z.md b/pages.de/common/7z.md index 3b679612928907..baf0e5bba7856c 100644 --- a/pages.de/common/7z.md +++ b/pages.de/common/7z.md @@ -1,35 +1,35 @@ # 7z -> Ein Dateiarchivierer mit hoher Komprimierungsrate. -> Mehr Informationen: . +> Ein Dateiarchivierer mit hoher Kompressionsrate. +> Weitere Informationen: . -- Archiviere eine Datei oder ein Verzeichnis: +- [a]rchiviere eine Datei oder ein Verzeichnis: -`7z a {{archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` +`7z a {{pfad/zu/archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` -- Verschlüssle ein vorhandenes Archiv (einschließlich der Dateinamen): +- Verschlüssle ein vorhandenes Archiv (einschließlich Dateinamen): -`7z a {{verschluesseltes_archiv.7z}} -p{{passwort}} -mhe=on {{archiv.7z}}` +`7z a {{pfad/zu/verschlüsselt.7z}} -p{{passwort}} -mhe=on {{pfad/zu/archiv.7z}}` -- Extrahiere eine vorhandene 7z-Datei mit der ursprünglichen Verzeichnisstruktur: +- E[x]trahiere ein Archiv und behalte die originale Verzeichnisstruktur bei: -`7z x {{archiv.7z}}` +`7z x {{pfad/zu/archiv.7z}}` -- Entpacke ein Archiv mit benutzerdefiniertem Ausgabepfad: +- E[x]trahiere ein Archiv in ein bestimmtes Verzeichnis: -`7z x {{archiv.7z}} -o{{pfad/zu/ausgabe}}` +`7z x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` -- Entpacke ein Archiv nach stdout: +- E[x]trahiere ein Archiv nach stdout: -`7z x {{archiv.7z}} -so` +`7z x {{pfad/zu/archiv.7z}} -so` -- Archiviere mit einem bestimmten Archivtyp: +- [a]rchiviere mit einem bestimmten Archivtyp: -`7z a -t{{zip|gzip|bzip2|tar}} {{archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{pfad/zu/archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` -- Gib den Inhalt einer Archivdatei aus: +- [l]iste den Inhalt einer Archivdatei auf: -`7z l {{archiv.7z}}` +`7z l {{pfad/zu/archiv.7z}}` - Liste alle verfügbaren Archivtypen auf: diff --git a/pages.de/common/7za.md b/pages.de/common/7za.md index 8a78c4e074f534..c2ae4817b56901 100644 --- a/pages.de/common/7za.md +++ b/pages.de/common/7za.md @@ -2,23 +2,35 @@ > Ein Dateiarchivierer mit hoher Kompressionsrate. > Eine alleinstehende Version von `7z` mit Unterstützung für neuere Archivtypen. -> Mehr Informationen: . +> Weitere Informationen: . -- Archiviere eine Datei oder ein Verzeichnis: +- [a]rchiviere eine Datei oder ein Verzeichnis: -`7za a {{archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` +`7za a {{pfad/zu/archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` -- Extrahiere eine existierende 7z-Datei: +- Verschlüssle ein vorhandenes Archiv (einschließlich Dateinamen): -`7za x {{archiv}}` +`7za a {{pfad/zu/verschlüsselt.7z}} -p{{passwort}} -mhe=on {{pfad/zu/archiv.7z}}` -- Archiviere mit einem bestimmten Archivtyp: +- E[x]trahiere ein Archiv und behalte die originale Verzeichnisstruktur bei: -`7za a -t{{zip|gzip|bzip2|tar}} {{archiv}} {{pfad/zu/datei_oder_verzeichnis}}` +`7za x {{pfad/zu/archiv.7z}}` -- Gib den Inhalt einer Archivdatei aus: +- E[x]trahiere ein Archiv in ein bestimmtes Verzeichnis: -`7za l {{archiv}}` +`7za x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` + +- E[x]trahiere ein Archiv nach stdout: + +`7za x {{pfad/zu/archiv.7z}} -so` + +- [a]rchiviere mit einem bestimmten Archivtyp: + +`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{pfad/zu/archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` + +- [l]iste den Inhalt einer Archivdatei auf: + +`7za l {{pfad/zu/archiv.7z}}` - Liste alle verfügbaren Archivtypen auf: diff --git a/pages.de/common/7zr.md b/pages.de/common/7zr.md index 06a0f84c05535b..bf2f57536b8aa5 100644 --- a/pages.de/common/7zr.md +++ b/pages.de/common/7zr.md @@ -1,17 +1,33 @@ # 7zr > Ein Dateiarchivierer mit hoher Kompressionsrate. -> Eine alleinstehende Version von `7z`, die nur .7z Dateien unterstützt. -> Mehr Informationen: . +> Eine alleinstehende Version von `7z`, die nur `.7z` Dateien unterstützt. +> Weitere Informationen: . -- Archiviere eine Datei oder ein Verzeichnis: +- [a]rchiviere eine Datei oder ein Verzeichnis: -`7zr a {{archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` +`7zr a {{pfad/zu/archiv.7z}} {{pfad/zu/datei_oder_verzeichnis}}` -- Extrahiere eine existierende 7z-Datei: +- Verschlüssle ein vorhandenes Archiv (einschließlich Dateinamen): -`7zr x {{archiv.7z}}` +`7zr a {{pfad/zu/verschlüsselt.7z}} -p{{passwort}} -mhe=on {{pfad/zu/archiv.7z}}` -- Gib den Inhalt einer Archivdatei aus: +- E[x]trahiere ein Archiv und behalte die originale Verzeichnisstruktur bei: -`7zr l {{archiv}}` +`7zr x {{pfad/zu/archiv.7z}}` + +- E[x]trahiere ein Archiv in ein bestimmtes Verzeichnis: + +`7zr x {{pfad/zu/archiv.7z}} -o{{pfad/zu/verzeichnis}}` + +- E[x]trahiere ein Archiv nach stdout: + +`7zr x {{pfad/zu/archiv.7z}} -so` + +- [l]iste den Inhalt einer Archivdatei auf: + +`7zr l {{pfad/zu/archiv.7z}}` + +- Liste alle verfügbaren Archivtypen auf: + +`7zr i` diff --git a/pages.de/common/[.md b/pages.de/common/[.md new file mode 100644 index 00000000000000..4dc11e9e6f7a6d --- /dev/null +++ b/pages.de/common/[.md @@ -0,0 +1,33 @@ +# [ + +> Teste Dateitypen und vergleiche Werte. +> Gibt 0 zurück, wenn der Ausdruck wahr ist und 1 wenn nicht. +> Weitere Informationen: . + +- Überprüfe, ob eine bestimmte Variable gleich oder ungleich einem bestimmen String ist: + +`[ "${{variable}}" {{==|!=}} "{{string}}" ]` + +- Überprüfe, ob eine Variable gleich/ungleich/größer/kleiner/größer-gleich oder kleiner-gleich als eine bestimme Zahl ist: + +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{zahl}} ]` + +- Überprüfe, ob eine bestimmte Variable einen nicht-leeren Wert hat: + +`[ -n "${{variable}}" ]` + +- Überprüfe, ob eine bestimmte Variable einen leeren Wert hat: + +`[ -z "${{variable}}" ]` + +- Überprüfe, ob eine bestimmte Datei existiert: + +`[ -f {{pfad/zu/datei}} ]` + +- Überprüfe, ob ein bestimmtes Verzeichnis existiert: + +`[ -d {{pfad/zu/verzeichnis}} ]` + +- Überprüfe, ob eine Datei oder ein Verzeichnis existiert: + +`[ -e {{pfad/zu/datei_oder_verzeichnis}} ]` diff --git a/pages.de/common/[[.md b/pages.de/common/[[.md new file mode 100644 index 00000000000000..cec5fb375ec170 --- /dev/null +++ b/pages.de/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Teste Dateitypen und vergleiche Werte. +> Gibt 0 zurück, wenn der Ausdruck wahr ist und 1 wenn nicht. +> Weitere Informationen: . + +- Überprüfe, ob eine bestimmte Variable gleich oder ungleich einem bestimmen String ist: + +`[[ ${{variable}} {{==|!=}} "{{string}}" ]]` + +- Überprüfe, ob ein bestimmter String einem bestimmten regulären Ausdruck oder glob-Muster entspricht: + +`[[ ${{variable}} {{==|=~}} {{muster}} ]]` + +- Überprüfe, ob eine Variable gleich/ungleich/größer/kleiner/größer-gleich oder kleiner-gleich als eine bestimme Zahl ist: + +`[[ ${{variable}} -{{eq|ne|gt|lt|ge|le}} {{zahl}} ]]` + +- Überprüfe, ob eine bestimmte Variable einen nicht-leeren Wert hat: + +`[[ -n ${{variable}} ]]` + +- Überprüfe, ob eine bestimmte Variable einen leeren Wert hat: + +`[[ -z ${{variable}} ]]` + +- Überprüfe, ob eine bestimmte Datei existiert: + +`[[ -f {{pfad/zu/datei}} ]]` + +- Überprüfe, ob ein bestimmtes Verzeichnis existiert: + +`[[ -d {{pfad/zu/verzeichnis}} ]]` + +- Überprüfe, ob eine Datei oder ein Verzeichnis existiert: + +`[[ -e {{pfad/zu/datei_oder_verzeichnis}} ]]` diff --git a/pages.de/common/aapt.md b/pages.de/common/aapt.md index b5000ffc5bc0bc..c7ec495668705b 100644 --- a/pages.de/common/aapt.md +++ b/pages.de/common/aapt.md @@ -2,7 +2,7 @@ > Android Asset Packaging Tool. > Kompiliere und verpacke die Resourcen einer Android App. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Dateien eines APK Archivs auf: diff --git a/pages.de/common/ab.md b/pages.de/common/ab.md index 846089466f22ec..74243ac8777782 100644 --- a/pages.de/common/ab.md +++ b/pages.de/common/ab.md @@ -1,7 +1,7 @@ # ab > Apache HTTP server Benchmarking Tool. -> Mehr Informationen: . +> Weitere Informationen: . - Sende 100 HTTP GET Anfragen an eine URL: diff --git a/pages.de/common/adscript.md b/pages.de/common/adscript.md new file mode 100644 index 00000000000000..7746d9b779ecc2 --- /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 b62fa905425847..4513630de1e80e 100644 --- a/pages.de/common/age.md +++ b/pages.de/common/age.md @@ -1,7 +1,7 @@ # age > Ein einfaches, modernes und sicheres Dateiverschlüsselungswerkzeug. -> Mehr Informationen: . +> Weitere Informationen: . - Generiere eine verschlüsselte Datei, die mit einer Passphrase entschlüsselt werden kann: diff --git a/pages.de/common/aircrack-ng.md b/pages.de/common/aircrack-ng.md new file mode 100644 index 00000000000000..3937fde7617b7a --- /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 00000000000000..bc2338e1819009 --- /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 00000000000000..fd19d45381c100 --- /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 00000000000000..d96df3c7f1928c --- /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/alacritty.md b/pages.de/common/alacritty.md index 9274f2c06e9de9..40e1d629284076 100644 --- a/pages.de/common/alacritty.md +++ b/pages.de/common/alacritty.md @@ -1,24 +1,24 @@ # alacritty > Plattformübergreifender, GPU-beschleunigter Terminalemulator. -> Mehr Informationen: . +> Weitere Informationen: . -- Öffne ein neues alacritty-Fenster: +- Öffne ein neues Alacritty-Fenster: `alacritty` -- Starte alacritty in einem bestimmten Arbeitsverzeichnis: +- Starte Alacritty in einem bestimmten Arbeitsverzeichnis: `alacritty --working-directory {{pfad/zu/verzeichnis}}` -- Führe einen Befehl in einem neuen alacritty-Fenster aus: +- Führe einen Befehl in einem neuen Alacritty-Fenster aus: `alacritty -e {{befehl}}` -- Gib eine alternative Konfigurations-Datei an (ist standardmäßig $XDG_CONFIG_HOME/alacritty/alacritty.yml): +- Gib eine alternative Konfigurations-Datei an (ist standardmäßig `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): `alacritty --config-file {{pfad/zu/konfiguration.yml}}` -- Starte mit aktiviertem Live-Konfigurations-Neuladen (kann auch standardmäßig in alacritty.yml eingestellt werden): +- Starte mit aktiviertem Live-Konfigurations-Neuladen (kann auch standardmäßig in `alacritty.yml` eingestellt werden): `alacritty --live-config-reload --config-file {{pfad/zu/konfiguration.yml}}` diff --git a/pages.de/common/alias.md b/pages.de/common/alias.md index 0e6feeb525b826..a2a825a545b403 100644 --- a/pages.de/common/alias.md +++ b/pages.de/common/alias.md @@ -2,7 +2,7 @@ > Erstellt Aliasse - Alterative Namen für Befehle. > Aliasse laufen mit der aktuellen Shell-Sitzung ab, es sei denn, sie werden in der Konfigurationsdatei der Shell definiert, z.B. `~/.bashrc`. -> Mehr Informationen: . +> Weitere Informationen: . - Listet alle Aliasse auf: diff --git a/pages.de/common/ani-cli.md b/pages.de/common/ani-cli.md new file mode 100644 index 00000000000000..8f684138c5844e --- /dev/null +++ b/pages.de/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> Ein Cli zum Stöbern und Anschauen von Anime. +> Weitere Informationen: . + +- Anime nach Namen suchen: + +`ani-cli "{{anime_name}}"` + +- Folge herunterladen: + +`ani-cli -d "{{anime_name}}"` + +- VLC als Medienspieler verwenden: + +`ani-cli -v "{{anime_name}}"` + +- Anzuschauende Episode angeben: + +`ani-cli -a {{episoden_nummer}} "{{anime_name}}"` + +- Anime aus Verlauf weiterschauen: + +`ani-cli -c` + +- `ani-cli` aktualisieren: + +`ani-cli -U` diff --git a/pages.de/common/ansible-doc.md b/pages.de/common/ansible-doc.md new file mode 100644 index 00000000000000..8e1b6f8001c726 --- /dev/null +++ b/pages.de/common/ansible-doc.md @@ -0,0 +1,29 @@ +# ansible-doc + +> Anzeigen von Informationen über die in den Ansible-Bibliotheken installierten Module. +> Anzeigen einer knappen Auflistung von Plugins und deren Kurzbeschreibungen. +> Weitere Informationen: . + +- Auflisten der verfügbaren Aktions-Plugin (Module): + +`ansible-doc --list` + +- Auflisten der verfügbare Plugins eines bestimmten Typs: + +`ansible-doc --type {{plugin_typ}} --list` + +- Anzeigen von Informationen über ein bestimmtes Aktions-Plugin (Module): + +`ansible-doc {{plugin_name}}` + +- Anzeigen von Informationen über ein Plugin mit einem betimmten Typ: + +`ansible-doc --type {{plugin_typ}} {{plugin_name}}` + +- Anzeigen des Playbookausschnittes für ein Actions-Plugin (Module): + +`ansible-doc --snippet {{plugin_name}}` + +- Anzeigen von Informationen über ein Aktions-Plugin (Module) als JSON: + +`ansible-doc --json {{plugin_name}}` diff --git a/pages.de/common/ansible-galaxy.md b/pages.de/common/ansible-galaxy.md index 0f820bf487841f..0f1cca56a8b73f 100644 --- a/pages.de/common/ansible-galaxy.md +++ b/pages.de/common/ansible-galaxy.md @@ -1,17 +1,17 @@ # ansible-galaxy -> Mögliche Rollen erstellen und verwalten. -> Mehr Informationen: . +> Erstelle und verwalte Ansible Rollen. +> Weitere Informationen: . - Installiere eine Rolle: -`ansible-galaxy install {{benutzername.rollenname}}` +`ansible-galaxy install {{benutzername}}.{{rollenname}}` - Entferne eine Rolle: -`ansible-galaxy remove {{benutzername.rollenname}}` +`ansible-galaxy remove {{benutzername}}.{{rollenname}}` -- Installierte Rollen auflisten: +- Liste installierte Rollen auf: `ansible-galaxy list` @@ -22,3 +22,11 @@ - Erstelle eine neue Rolle: `ansible-galaxy init {{rollenname}}` + +- Erhalte Informationen über eine Benutzerrolle: + +`ansible-galaxy role info {{benutzername}}.{{rollenname}}` + +- Erhalte Informationen über eine Kollektion: + +`ansible-galaxy collection info {{benutzername}}.{{kollektionsname}}` diff --git a/pages.de/common/ansible-inventory.md b/pages.de/common/ansible-inventory.md new file mode 100644 index 00000000000000..01260f28ee1c4e --- /dev/null +++ b/pages.de/common/ansible-inventory.md @@ -0,0 +1,21 @@ +# ansible-inventory + +> Anzeigen oder Ausgeben eines Ansible-Inventars. +> Siehe auch: `ansible`. +> Weitere Informationen: . + +- Anzeigen des Standardinventars: + +`ansible-inventory --list` + +- Anzeigen eines Benutzerdefinierten Inventars: + +`ansbile-inventory --list --inventory {{pfad/zu/deiner_datei_oder_deinem_script_oder_deinem_verzeichniss}}` + +- Anzeigen des Standardinventars in YAML: + +`ansible-inventory --list --yaml` + +- Ausgabe des Standardinventars in eine Datei: + +`ansible-inventory --list --output {{pfad/zu/datei}}` diff --git a/pages.de/common/ansible-playbook.md b/pages.de/common/ansible-playbook.md index 44fef26acd8560..f705c74df68baf 100644 --- a/pages.de/common/ansible-playbook.md +++ b/pages.de/common/ansible-playbook.md @@ -1,7 +1,7 @@ # ansible-playbook > In Playbook definierte Aufgaben auf entfernten Rechnern über SSH ausführen. -> Mehr Informationen: . +> Weitere Informationen: . - Führe Aufgaben im Playbook aus: diff --git a/pages.de/common/ansible-pull.md b/pages.de/common/ansible-pull.md new file mode 100644 index 00000000000000..3eebfa54b0d3ca --- /dev/null +++ b/pages.de/common/ansible-pull.md @@ -0,0 +1,20 @@ +# ansible-pull + +> Laden eines Ansible-Playbooks aus einem VCS-Repository und ausführen auf dem lokalen Host. +> Weitere Informationen: . + +- Laden eines Playbooks aus einem VCS und ausführen des standardmässigen local.yml Playbooks: + +`ansible-pull -U {{repository_url}}` + +- Laden eines Playbooks aus einem VCS und ausführen eines spezifischen Playbooks: + +`ansible-pull -U {{repository_url}} {{playbook}}` + +- Laden eines Playbooks aus einem VCS unter angabe eines bestimmten branches und ausführen eines spezifischen Playbooks: + +`ansible-pull -U {{repository_url}} -C {{branch}} {{playbook}}` + +- Laden eines Playbooks aus einem VCS und ausführen eines spezifischen Playbooks unter angabe einer Hosts-Datei: + +`ansible-pull -U {{repository_url}} -i {{hosts_datei}} {{playbook}}` diff --git a/pages.de/common/ansible-vault.md b/pages.de/common/ansible-vault.md index 605c52e86fc76c..3612d55d214e50 100644 --- a/pages.de/common/ansible-vault.md +++ b/pages.de/common/ansible-vault.md @@ -1,7 +1,7 @@ # ansible-vault > Verschlüsselt und entschlüsselt Werte, Datenstrukturen und Dateien innerhalb von Ansible-Projekten. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle eine neue verschlüsselte Vault-Datei mit einer Eingabeaufforderung für ein Passwort: @@ -19,7 +19,7 @@ `ansible-vault encrypt_string` -- Zeige eine verschlüsselten Datei an, wobei eine Kennwortdatei zum Entschlüsseln verwendet wird: +- Zeige eine verschlüsselte Datei an, wobei eine Kennwortdatei zum Entschlüsseln verwendet wird: `ansible-vault view --vault-password-file={{schlüsseldatei}} {{vault_datei}}` diff --git a/pages.de/common/ansible.md b/pages.de/common/ansible.md index 8abf4a90825396..b7e72dcfdc1891 100644 --- a/pages.de/common/ansible.md +++ b/pages.de/common/ansible.md @@ -1,8 +1,8 @@ # ansible -> Verwalte Computergruppen per Fernzugriff über SSH. -> Verwende die Datei `/etc/ansible/hosts`, um neue Gruppen/Hosts hinzuzufügen. -> Mehr Informationen: . +> Verwalte Computergruppen per Fernzugriff über SSH (Verwende die Datei `/etc/ansible/hosts`, um neue Gruppen/Hosts hinzuzufügen). +> Manche Unterbefehle wie `ansible galaxy` sind separat dokumentiert. +> Weitere Informationen: . - Liste Hosts auf, die zu einer Gruppe gehören: @@ -27,3 +27,7 @@ - Führe einen Befehl mit einer benutzerdefinierten Inventardatei aus: `ansible {{Gruppe}} -i {{inventardatei}} -m command -a '{{befehl}}'` + +- Liste alle Gruppen eines Inventars auf: + +`ansible localhost -m debug -a '{{var=groups.keys()}}'` diff --git a/pages.de/common/ansiweather.md b/pages.de/common/ansiweather.md new file mode 100644 index 00000000000000..46ce5d8e2aec87 --- /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/ant.md b/pages.de/common/ant.md new file mode 100644 index 00000000000000..969a0569fe5332 --- /dev/null +++ b/pages.de/common/ant.md @@ -0,0 +1,25 @@ +# ant + +> Apache Ant. +> Tool zum Bauen und Verwalten von Projekten, die auf Java basieren. +> Weitere Informationen: . + +- Baue ein Projekt mit der Standard build-Datei `build.xml`: + +`ant` + +- Baue ein Projekt mit einer anderen build-Datei als `build.xml`: + +`ant -f {{buildfile.xml}}` + +- Zeige Informationen über mögliche targets für dieses Projekt: + +`ant -p` + +- Zeige Debugging-Informationen: + +`ant -d` + +- Führe alle targets aus, die nicht von fehlgeschlagenen targets abhängen: + +`ant -k` diff --git a/pages.de/common/apropos.md b/pages.de/common/apropos.md new file mode 100644 index 00000000000000..46201c2015a884 --- /dev/null +++ b/pages.de/common/apropos.md @@ -0,0 +1,16 @@ +# apropos + +> Durchsuche die Handbuchseiten nach Namen und Beschreibungen. +> Weitere Informationen: . + +- Suche nach einem Schlüsselwort mit einem regulären Ausdruck: + +`apropos {{regulären_ausdruck}}` + +- Suche ohne Beschränkung der Ausgabe auf die Terminal Breite: + +`apropos -l {{regulären_ausdruck}}` + +- Suche nach Seiten, die alle angegebenen Ausdrücke enthalten: + +`apropos {{regulären_ausdruck_1}} -a {{regulären_ausdruck_2}} -a {{regulären_ausdruck_3}}` diff --git a/pages.de/common/arping.md b/pages.de/common/arping.md new file mode 100644 index 00000000000000..cde7096ef1e876 --- /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/asdf.md b/pages.de/common/asdf.md new file mode 100644 index 00000000000000..47e0c34d7ce9e0 --- /dev/null +++ b/pages.de/common/asdf.md @@ -0,0 +1,29 @@ +# asdf + +> Verwalte installierte Versionen von verschiedenen Paketen. +> Plugins (z.B. asdf-node) werden für spezifische Pakete verwendet. +> Weitere Informationen: . + +- Liste alle verfügbaren Plugins auf: + +`asdf plugin list all` + +- Installiere ein neues Plugin: + +`asdf plugin add {{name}}` + +- Liste alle verfügbaren Versionen für ein Paket auf: + +`asdf list all {{name}}` + +- Installiere eine spezifische Version eines Pakets: + +`asdf install {{name}} {{version}}` + +- Lege die globale Version für ein Paket fest: + +`asdf global {{name}} {{version}}` + +- Lege die lokale Version für ein Paket fest: + +`asdf local {{name}} {{version}}` diff --git a/pages.de/common/atom.md b/pages.de/common/atom.md index d5bf8bd0d6d587..bc3affdd65e5b5 100644 --- a/pages.de/common/atom.md +++ b/pages.de/common/atom.md @@ -2,7 +2,7 @@ > Ein plattformübergreifender erweiterbarer Texteditor. > Erweiterungen werden durch `apm` verwaltet. -> Mehr Informationen: . +> Weitere Informationen: . - Öffne eine Datei oder ein Verzeichnis: diff --git a/pages.de/common/avrdude.md b/pages.de/common/avrdude.md index 08d59a7b17506e..55b5d90f63ef51 100644 --- a/pages.de/common/avrdude.md +++ b/pages.de/common/avrdude.md @@ -1,7 +1,7 @@ # avrdude > Treiberprogramm für Atmel AVR Mikrocontroller-Programmierung. -> Mehr Informationen: . +> Weitere Informationen: . - Schreibt den Speicherinhalt eines AVR-Mikrocontrollers in eine Datei: diff --git a/pages.de/common/aws-ec2.md b/pages.de/common/aws-ec2.md index 0766fa855a0778..1501244010bd9e 100644 --- a/pages.de/common/aws-ec2.md +++ b/pages.de/common/aws-ec2.md @@ -1,16 +1,8 @@ # aws ec2 > CLI für AWS EC2. -> AWS EC2 stellt eine sichere und skalierbare Einheit in der AWS Cloud zur Verfügung um ein schnelleres Entwickeln und Ausrollen von Software zu ermöglichen. -> Mehr Informationen: . - -- Liste alle verfügbaren EC2 Befehle auf: - -`aws ec2 help` - -- Zeige Hilfe für bestimmte EC2 Unterbefehle an: - -`aws ec2 {{unterbefehl}} help` +> AWS EC2 stellt eine sichere und skalierbare Einheit in der AWS Cloud zur Verfügung, um ein schnelleres Entwickeln und Ausrollen von Software zu ermöglichen. +> Weitere Informationen: . - Liste Informationen zu einer bestimmten Instanz auf: @@ -35,3 +27,11 @@ - Liste alle verfügbaren AMIs (Amazon Machine Images) auf: `aws ec2 describe-images` + +- Liste alle verfügbaren EC2 Befehle auf: + +`aws ec2 help` + +- Zeige Hilfe für bestimmte EC2 Unterbefehle an: + +`aws ec2 {{unterbefehl}} help` diff --git a/pages.de/common/aws-google-auth.md b/pages.de/common/aws-google-auth.md index 5a963abf9abeb3..6f20d99da7c9b9 100644 --- a/pages.de/common/aws-google-auth.md +++ b/pages.de/common/aws-google-auth.md @@ -1,7 +1,7 @@ # aws-google-auth > CLI, um temporäre AWS credentials (STS) über Google Apps als Single Sign-On Dienstleister zu erhalten. -> Mehr Informationen: . +> Weitere Informationen: . - Einloggen mit Google SSO über IDP- und SP-Kennung für die Dauer einer Stunde: diff --git a/pages.de/common/aws-iam.md b/pages.de/common/aws-iam.md index 6d2bbac2ad32d9..14eb24966f89d6 100644 --- a/pages.de/common/aws-iam.md +++ b/pages.de/common/aws-iam.md @@ -1,7 +1,7 @@ # aws iam > CLI für AWS IAM. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige die AWS IAM Hilfeseite (beinhaltet auch Hinweise für alle Unterbefehle): diff --git a/pages.de/common/aws-kinesis.md b/pages.de/common/aws-kinesis.md index d135367f50a2df..eaccacdc011b42 100644 --- a/pages.de/common/aws-kinesis.md +++ b/pages.de/common/aws-kinesis.md @@ -1,7 +1,7 @@ # aws kinesis > Offizielles AWS CLI für die Amazon Kinesis-Streaming-Datenplattform. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Streams auf: @@ -11,7 +11,7 @@ `aws kinesis put-record --stream-name {{name}} --partition-key {{schlüssel}} --data {{base64_codierte_nachricht}}` -- Schreibe einen Datensatze in einen Kinesis Stream mit base64 inline Encodierung: +- Schreibe einen Datensatz in einen Kinesis Stream mit base64 inline Encodierung: `aws kinesis put-record --stream-name {{name}} --partition-key {{schlüssel}} --data "$( echo "{{meine nachricht}}" | base64 )"` diff --git a/pages.de/common/aws-quicksight.md b/pages.de/common/aws-quicksight.md index 81facf5adf359a..3d30ed3f7831e8 100644 --- a/pages.de/common/aws-quicksight.md +++ b/pages.de/common/aws-quicksight.md @@ -1,7 +1,7 @@ # aws quicksight > CLI für AWS QuickSight. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Datensätze auf: @@ -19,10 +19,10 @@ `aws quicksight list-dashboards --aws-account-id {{aws_account_id}}` -- Liste eine Datensatz detailliert aus: +- Liste einen Datensatz detailliert aus: `aws quicksight describe-data-set --aws-account-id {{aws_account_id}} --data-set-id {{datensatz_id}}` -- Liste Zugangsberechtungen zu einem Datensatz auf: +- Liste Zugangsberechtigungen zu einem Datensatz auf: `aws quicksight describe-data-set-permissions --aws-account-id {{aws_account_id}} --data-set-id {{datensatz_id}}` diff --git a/pages.de/common/aws-s3.md b/pages.de/common/aws-s3.md index b9c657efc14ec3..f3f66e9846a3b9 100644 --- a/pages.de/common/aws-s3.md +++ b/pages.de/common/aws-s3.md @@ -1,7 +1,7 @@ # aws s3 > CLI für AWS S3. AWS S3 stellt Speicherplatz in der Cloud zur Verfügung. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Objekte in einem Bucket auf: @@ -23,6 +23,6 @@ `aws s3 rm s3://{{bucket}}/{{pfad/zu/datei}}` -- Probelauf eines angegeben Kommandos ohne diesen auszuführen: +- Probelauf eines angegebenen Kommandos ohne dieses auszuführen: `aws s3 {{befehl}} --dryrun` diff --git a/pages.de/common/aws-vault.md b/pages.de/common/aws-vault.md index 4ca600d4360b2a..2f35b7c1a85efa 100644 --- a/pages.de/common/aws-vault.md +++ b/pages.de/common/aws-vault.md @@ -1,7 +1,7 @@ # aws-vault -> Ein Tresor für Entwicklungsumgebungen um AWS Sicherheitsschlüssel sicher speichern und abrufen zu können. -> Mehr Informationen: . +> Ein Tresor für Entwicklungsumgebungen, um AWS Sicherheitsschlüssel sicher speichern und abrufen zu können. +> Weitere Informationen: . - Füge einen Sicherheitsschlüssel als Profil zu einem Tresor hinzu: diff --git a/pages.de/common/aws.md b/pages.de/common/aws.md index fe1179eb8e787e..bfdb1832c2f913 100644 --- a/pages.de/common/aws.md +++ b/pages.de/common/aws.md @@ -1,14 +1,14 @@ # aws > Das offizielle CLI für Amazon Web Services. -> Ausführungssassistent, SSO, Autovervollständigung von Ressourcen sowie YAML Optionen sind nur unter Version v2 verfügbar. -> Mehr Informationen: . +> Manche Unterbefehle wie `aws s3` sind separat dokumentiert. +> Weitere Informationen: . - Konfiguriere die AWS Kommandozeile: `aws configure wizard` -- Konfiguriere die AWS Kommandozeile mit Hilfe von SSO: +- Konfiguriere die AWS Kommandozeile mithilfe von SSO: `aws configure sso` @@ -16,7 +16,7 @@ `aws {{befehl}} help` -- Zeige Informationen über die eigene angenomme Identität (häufig benutzt zur Fehlersuche): +- Zeige Informationen über die eigene angenommene Identität (häufig benutzt zur Fehlersuche): `aws sts get-caller-identity` @@ -28,7 +28,7 @@ `aws iam create-user --cli-auto-prompt` -- Öffne einen Assitenten für eine AWS Ressource: +- Öffne einen Assistenten für eine AWS Ressource: `aws dynamodb wizard {{neue_tabelle}}` diff --git a/pages.de/common/awslogs.md b/pages.de/common/awslogs.md index 99f63022d9226c..dab042cfd228c4 100644 --- a/pages.de/common/awslogs.md +++ b/pages.de/common/awslogs.md @@ -1,21 +1,21 @@ # awslogs -> CLI um Log-Gruppen, Streams und Events von Amazon Cloudwatch Logs abzurufen. -> Mehr Informationen: . +> CLI um Log-Gruppen, Streams und Events von Amazon CloudWatch Logs abzurufen. +> Weitere Informationen: . - Liste alle Log-Gruppen auf: `awslogs groups` -- Liste alle bestehenden Streams einer angegebenen Log Gruppe auf: +- Liste alle bestehenden Streams einer angegebenen Loggruppe auf: `awslogs streams {{/var/log/syslog}}` -- Rufe alle logs für jegliche Streams in der angegebenen Log-Gruppe für die letzten 1 bis 2 Stunden ab: +- Rufe alle Logs für jegliche Streams in der angegebenen Log-Gruppe für die letzten 1 bis 2 Stunden ab: `awslogs get {{/var/log/syslog}} --start='{{2h ago}}' --end='{{1h ago}}'` -- Rufe alle Logs für einen bestimmten Cloudwatch-Logs Filter-Ausdruck ab: +- Rufe alle Logs für einen bestimmten CloudWatch-Logs Filter-Ausdruck ab: `awslogs get {{/aws/lambda/meine_lambda_gruppe}} --filter-pattern='{{ERROR}}'` diff --git a/pages.de/common/az-config.md b/pages.de/common/az-config.md new file mode 100644 index 00000000000000..fc9fdc6f84f9e8 --- /dev/null +++ b/pages.de/common/az-config.md @@ -0,0 +1,21 @@ +# az config + +> Verwalten der Azure CLI-Konfiguration. +> Teil von `azure-cli`. +> Weitere Informationen: . + +- Rufe alle Konfigurationen ab: + +`az config get` + +- Rufe alle Konfigurationen in einer Sektion ab: + +`az config get {{sektionsname}}` + +- Setze eine Konfiguration: + +`az config set {{konfigurationsname}}={{wert}}` + +- Hebe eine Konfiguration auf: + +`az config unset {{konfigurationsname}}` diff --git a/pages.de/common/az-login.md b/pages.de/common/az-login.md new file mode 100644 index 00000000000000..48d43e0d7dd200 --- /dev/null +++ b/pages.de/common/az-login.md @@ -0,0 +1,25 @@ +# az login + +> Melden Sie sich bei Azure an. +> Teil von `az`, der Befehlszeilenschnittstelle von Azure. +> Weitere Informationen: . + +- Melden Sie sich interaktiv an: + +`az login` + +- 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}}` + +- Melden Sie sich mit einem Dienstprinzipal mithilfe des Clientzertifikats an: + +`az login --service-principal --username {{http://azure-cli-service-principal}} --password {{path/to/cert.pem}} --tenant {{someone.onmicrosoft.com}}` + +- Melden Sie sich mit der vom System zugewiesenen verwalteten Identität eines virtuellen Computers an: + +`az login --identity` + +- Melden Sie sich mit der vom Benutzer zugewiesenen verwalteten Identität eines virtuellen Computers an: + +`az login --identity --username /subscriptions/{{subscription_id}}/resourcegroups/{{my_rg}}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{{my_id}}` diff --git a/pages.de/common/az-logout.md b/pages.de/common/az-logout.md new file mode 100644 index 00000000000000..9f30cf33da3d01 --- /dev/null +++ b/pages.de/common/az-logout.md @@ -0,0 +1,13 @@ +# az logout + +> Von Azure-Abonnements abmelden. +> Teil von `azure-cli`. +> Weitere Informationen: . + +- Melde das aktuelle aktive Konto ab: + +`az logout` + +- Melde einen spezifischen Benutzernamen ab: + +`az logout --username {{alias@somedomain.com}}` diff --git a/pages.de/common/base64.md b/pages.de/common/base64.md new file mode 100644 index 00000000000000..bdff8c8e2301b2 --- /dev/null +++ b/pages.de/common/base64.md @@ -0,0 +1,20 @@ +# base64 + +> 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: + +`base64 {{datei_name}}` + +- Dekodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach stdout: + +`base64 --decode {{datei_name}}` + +- Kodiere von stdin: + +`{{ein_kommando}} | base64` + +- Dekodiere von stdin: + +`{{ein_kommando}} | base64 --decode` diff --git a/pages.de/common/basename.md b/pages.de/common/basename.md index ce0acadffb2c32..06f41e60143492 100644 --- a/pages.de/common/basename.md +++ b/pages.de/common/basename.md @@ -1,7 +1,7 @@ # basename > Entfernt führende Verzeichniskomponenten in einem Pfad. -> Mehr Informationen: . +> Weitere Informationen: . - Ermittle den Dateinamen in einem Pfad: diff --git a/pages.de/common/bash.md b/pages.de/common/bash.md index deb825fdc51dde..b27de3dd234bc1 100644 --- a/pages.de/common/bash.md +++ b/pages.de/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell. > `sh`-kompatibler Kommandozeilen-Interpreter. -> Mehr Informationen: . +> Weitere Informationen: . - Interaktive Shell starten: @@ -16,7 +16,7 @@ `bash {{pfad/zu/datei.sh}}` -- Führe Befehle aus einer Datei aus and protokolliere alle ausgeführten Befehle an das Terminal: +- Führe Befehle aus einer Datei aus und protokolliere alle ausgeführten Befehle an das Terminal: `bash -x {{pfad/zu/datei.sh}}` diff --git a/pages.de/common/bat.md b/pages.de/common/bat.md index d164f9c8b313d5..17ad24053d9869 100644 --- a/pages.de/common/bat.md +++ b/pages.de/common/bat.md @@ -2,12 +2,13 @@ > Ausgabe und Verkettung von einzelnen Dateien. > Ein `cat`-Ersatz mit Syntax-Hervorhebung und Git-Integration. +> Weitere Informationen: . - Gib den Inhalt einer Datei in stdout aus: `bat {{pfad/zu/datei}}` -- Verkette mehrere Dateien zu eine Zieldatei: +- Verkette mehrere Dateien zu einer Zieldatei: `bat {{pfad/zu/datei1}} {{pfad/zu/datei2}} > {{pfad/zu/ziel_datei}}` @@ -19,10 +20,10 @@ `bat -n {{pfad/zu/datei}}` -- Hebe den Syntax einer JSON-Datei hervor: +- Hebe die Syntax einer JSON-Datei hervor: `bat --language {{json}} {{pfad/zu/datei.json}}` -- Zeige alle unterstüzten Sprachen an: +- Zeige alle unterstützten Sprachen an: `bat --list-languages` diff --git a/pages.de/common/borg.md b/pages.de/common/borg.md index 2ff788c57f9314..975ba7f0e6b645 100644 --- a/pages.de/common/borg.md +++ b/pages.de/common/borg.md @@ -2,7 +2,7 @@ > Deduplizierendes Sicherungswerkzeug. > Erstellt lokale oder entfernte Sicherungen, die als Dateisysteme einhängbar sind. -> Mehr Informationen: . +> Weitere Informationen: . - Initialisiere ein lokales Repository: diff --git a/pages.de/common/brew-bundle.md b/pages.de/common/brew-bundle.md new file mode 100644 index 00000000000000..80da555cc3e2ec --- /dev/null +++ b/pages.de/common/brew-bundle.md @@ -0,0 +1,28 @@ +# brew bundle + +> Bundler für Homebrew, Homebrew Cask und den Mac App Store. +> Weitere Informationen: . + +- Installiere Pakete aus einer Brewfile im aktuellen Pfad: + +`brew bundle` + +- Installiere Pakete aus einer bestimmten Brewfile: + +`brew bundle --file={{pfad/zu/brewfile}}` + +- Gib eine Liste mit allen installierten Paketen aus: + +`brew bundle dump` + +- Deinstalliere Pakete, die nicht in der Brewfile aufgelistet sind: + +`brew bundle cleanup --force` + +- Prüfe, ob von einem Paket die aktuellste Version installiert ist: + +`brew bundle check` + +- Zeige alle Pakete, die in der Brewfile aufgelistet sind: + +`brew bundle list --all` diff --git a/pages.de/common/brew-cask.md b/pages.de/common/brew-cask.md new file mode 100644 index 00000000000000..d23998a307f1d8 --- /dev/null +++ b/pages.de/common/brew-cask.md @@ -0,0 +1,36 @@ +# brew cask + +> Paketmanager für macOS-Anwendungen, die als Binärdateien verteilt werden. +> Weitere Informationen: . + +- Suche nach Formeln und Casks: + +`brew search {{text}}` + +- Installiere ein Cask: + +`brew cask install {{caskname}}` + +- Liste alle installierten Casks auf: + +`brew list --cask` + +- Liste installierte Casks auf, für die neuere Versionen verfügbar sind: + +`brew outdated --cask` + +- Aktualisiere ein installiertes Cask (wenn kein Caskname angegeben wird, werden alle installierten Casks aktualisiert): + +`brew upgrade --cask {{caskname}}` + +- Deinstalliere ein Cask: + +`brew cask uninstall {{caskname}}` + +- Deinstalliere ein Cask und entferne zugehörige Einstellungen und Dateien: + +`brew upgrade --cask {{caskname}}` + +- Zeige informationen zu einem bestimmten Cask an: + +`brew cask uninstall {{caskname}}` diff --git a/pages.de/common/bundler.md b/pages.de/common/bundler.md new file mode 100644 index 00000000000000..c1138a53ebafb5 --- /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/calc.md b/pages.de/common/calc.md new file mode 100644 index 00000000000000..5f2edbc6dd9e28 --- /dev/null +++ b/pages.de/common/calc.md @@ -0,0 +1,36 @@ +# calc + +> Ein interaktiver Rechner im Terminal mit beliebiger Genauigkeit. +> Weitere Informationen: . + +- Starte `calc` im interaktiven Modus: + +`calc` + +- Führe eine nicht-interaktive Berechnung durch: + +`calc '{{85 * (36 / 4)}}'` + +- Führe eine Berechnung durch ohne die Ausgabe zu formatieren (für das Benutzen mit Pipes): + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- Führe eine Berechnung durch und wechsle dann in den [i]nteraktiven Modus: + +`calc -i '{{sqrt(2)}}'` + +- Starte `calc` in einem bestimmten Berechtigungs[m]odus (0 bis 7, standardmäßig 7): + +`calc -m {{mode}}` + +- Öffne eine Einführung zu `calc`: + +`calc help intro` + +- Öffne eine Übersicht von `calc`: + +`calc help overview` + +- Öffne die Bedienungsanleitung von `calc`: + +`calc help` diff --git a/pages.de/common/cargo.md b/pages.de/common/cargo.md index 56ae4497f61c32..67d1b3543c8a7a 100644 --- a/pages.de/common/cargo.md +++ b/pages.de/common/cargo.md @@ -1,8 +1,8 @@ # cargo -> Rust Paketmanager. > Verwalte Rust-Projekte und deren Abhängigkeiten (crates). -> Mehr Informationen: . +> Manche Unterbefehle wie `cargo build` sind separat dokumentiert. +> Weitere Informationen: . - Suche nach Abhängigkeiten (crates): @@ -30,4 +30,4 @@ - Erstelle (bzw. kompiliere) ein Rust-Projekt mit einer bestimmten Anzahl an Threads (standardmäßig die Anzahl der CPU-Kerne): -`cargo build -j {{thread_anzahl}}` +`cargo build --jobs {{thread_anzahl}}` diff --git a/pages.de/common/cat.md b/pages.de/common/cat.md index 6e9cc4c4736284..4d38bf5797a6ec 100644 --- a/pages.de/common/cat.md +++ b/pages.de/common/cat.md @@ -1,7 +1,7 @@ # cat > Verkette und gib einzelne oder mehrere Dateien aus. -> Mehrere Informationen: . +> Weitere Informationen: . - Gib den Inhalt einer Datei aus: @@ -11,7 +11,7 @@ `cat {{pfad/zu/datei1}} {{pfad/zu/datei2}} > {{pfad/zu/ziel_datei}}` -- Verkette mehrere Dateien und hänge des Ergebnis an eine Datei an: +- Verkette mehrere Dateien und hänge das Ergebnis an eine Datei an: `cat {{pfad/zu/datei1}} {{pfad/zu/datei2}} >> {{pfad/zu/ziel_datei}}` diff --git a/pages.de/common/cd.md b/pages.de/common/cd.md index b8ecc0256dc1bb..7c09f3b0112497 100644 --- a/pages.de/common/cd.md +++ b/pages.de/common/cd.md @@ -1,20 +1,28 @@ # cd > Ändere das aktuelle Arbeitsverzeichnis. -> Mehr Informationen: . +> Weitere Informationen: . - Wechsle in das angegebene Verzeichnis: `cd {{pfad/zu/verzeichnis}}` +- Wechsle zum Verzeichnis über dem aktuellen Verzeichnis: + +`cd ..` + - Wechsle in das Home-Verzeichnis des aktuellen Benutzers: `cd` -- Wechsle zum Verzeichnis über dem aktuellen Verzeichnis: +- Wechsle in das Home-Verzeichnis eines bestimmten Benutzers: -`cd ..` +`cd ~{{benutzername}}` - Wechsle zum zuletzt gewählten Verzeichnis: `cd -` + +- Wechseln in das Stammverzeichnis: + +`cd /` diff --git a/pages.de/common/chmod.md b/pages.de/common/chmod.md index c62ab599bc379b..3d101cbbbac7e7 100644 --- a/pages.de/common/chmod.md +++ b/pages.de/common/chmod.md @@ -1,7 +1,7 @@ # chmod > Ändere die Zugriffsberechtigungen einer Datei oder eines Verzeichnisses. -> Mehr Informationen: . +> Weitere Informationen: . - Gib dem Besitzer einer Datei ([u]ser) das Recht, sie auszuführen (e[x]ecute): @@ -30,3 +30,7 @@ - Ändere Rechte rekursiv, indem der Besitzer[g]ruppe und anderen ([o]thers) die Rechte zum Schreiben ([w]rite) geben werden: `chmod -R g+w,o+w {{pfad/zu/verzeichnis}}` + +- Gib [a]llen Benutzern rekursiv Rechte zum Lesen ([r]ead) von Dateien und Ausführen (e[X]ecute) von Unterverzeichnissen innerhalb eines Verzeichnisses: + +`chmod -R a+rX {{pfad/zu/verzeichnis}}` diff --git a/pages.de/common/chown.md b/pages.de/common/chown.md index 854f70af446c63..0806dbd42f2e5d 100644 --- a/pages.de/common/chown.md +++ b/pages.de/common/chown.md @@ -1,7 +1,7 @@ # chown > Ändere den Besitzer und die Besitzergruppe von Dateien und Verzeichnissen. -> Mehr Informationen: . +> Weitere Informationen: . - Ändere den Besitzer einer Datei/eines Verzeichnisses: diff --git a/pages.de/common/chromium.md b/pages.de/common/chromium.md index ada2f2fcfe3d89..f90e992bcb3d68 100644 --- a/pages.de/common/chromium.md +++ b/pages.de/common/chromium.md @@ -1,15 +1,11 @@ # chromium > Open-Source-Webbrowser von Google. -> Mehr Informationen: . +> Weitere Informationen: . -- Öffne eine html-Datei: +- Öffne eine bestimmte Datei oder URL: -`chromium {{pfad/zu/datei.html}}` - -- Öffne eine bestimmte URL: - -`chromium {{beispiel.com}}` +`chromium {{https://beispiel.com|pfad/zu/datei.html}}` - Öffne eine URL im Inkognito-Modus: @@ -26,3 +22,15 @@ - Öffne eine URL und verwende einen Proxy-Server: `chromium --proxy-server="{{socks5://hostname:66}}" {{beispiel.com}}` + +- Öffne Chromium mit einem eigenen Profil-Verzeichnis: + +`chromium --user-data-dir={{pfad/zu/verzeichnis}}` + +- Öffne Chromium ohne CORS-Verifizierung (nützlich, um eine API zu testen): + +`chromium --user-data-dir={{pfad/zu/verzeichnis}} --disable-web-security` + +- Öffne Chromium mit einem `DevTools`-Fenster für jeden geöffneten Tab: + +`chromium --auto-open--devtools-for-tabs` diff --git a/pages.de/common/chroot.md b/pages.de/common/chroot.md index f10fb8792b4e9a..06f7f00009123f 100644 --- a/pages.de/common/chroot.md +++ b/pages.de/common/chroot.md @@ -1,7 +1,7 @@ # chroot > Führe einen Befehl oder eine interaktive Shell mit einem speziellen root-Verzeichnis aus. -> Mehr Informationen: . +> Weitere Informationen: . - Führe einen Befehl mit einem neuen root-Verzeichnis aus: diff --git a/pages.de/common/chsh.md b/pages.de/common/chsh.md index f7ad6d3c270082..88eacee0970abd 100644 --- a/pages.de/common/chsh.md +++ b/pages.de/common/chsh.md @@ -1,8 +1,20 @@ # chsh > Ändere die Login-Shell eines Benutzers. -> Mehr Informationen: . +> Weitere Informationen: . + +- Ändere die Login-Shell des aktuellen Benutzers interaktiv: + +`chsh` + +- Ändere die Login-Shell des aktuellen Benutzers: + +`chsh -s {{pfad/zu/shell}}` - Ändere die Login-Shell eines Benutzers: `chsh -s {{pfad/zu/shell}} {{benutzername}}` + +- Liste alle verfügbaren Shells auf: + +`chsh --list-shells` diff --git a/pages.de/common/clamav.md b/pages.de/common/clamav.md new file mode 100644 index 00000000000000..0dd44528564c5f --- /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 00000000000000..83357ca89bccb7 --- /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-cpp.md b/pages.de/common/clang-cpp.md new file mode 100644 index 00000000000000..80ffa73ebec11b --- /dev/null +++ b/pages.de/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Dieser Befehl ist ein Alias von `clang++`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr clang++` diff --git a/pages.de/common/clang-format.md b/pages.de/common/clang-format.md new file mode 100755 index 00000000000000..005adfb40cc6c6 --- /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 00000000000000..331fdf37d3f88f --- /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 00000000000000..6e002eed503da0 --- /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/clear.md b/pages.de/common/clear.md index dce9de5fffa6b5..c9c54fe0db9d36 100644 --- a/pages.de/common/clear.md +++ b/pages.de/common/clear.md @@ -1,7 +1,7 @@ # clear > Leert den Bildschirm eines Terminals. -> Mehr Informationen: . +> Weitere Informationen: . - Leere den Bildschirm (äquivalent zu Strg+L in einer Bash Shell): diff --git a/pages.de/common/clojure.md b/pages.de/common/clojure.md new file mode 100644 index 00000000000000..61e635f21b9d63 --- /dev/null +++ b/pages.de/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Dieser Befehl ist ein Alias von `clj`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr clj` diff --git a/pages.de/common/cmake.md b/pages.de/common/cmake.md index 1924c8c3ffd008..cfd78bacd59907 100644 --- a/pages.de/common/cmake.md +++ b/pages.de/common/cmake.md @@ -1,7 +1,7 @@ # cmake -> Plattformübergreifndes Build-Automatisierungs-System, das Vorlagen für native Build-Systeme erzeugt. -> Mehr Informationen: . +> Plattformübergreifendes Build-Automatisierungs-System, das Vorlagen für native Build-Systeme erzeugt. +> Weitere Informationen: . - Erzeuge eine Build-Vorlage im aktuellen Verzeichnis mit `CMakeLists.txt` eines Projektordners: @@ -15,7 +15,7 @@ `cmake --build {{pfad/zu/build_verzeichnis}}` -- Installiere die Build-Artifakte in `/usr/local/` und enferne Debugsymbole: +- Installiere die Build-Artifakte in `/usr/local/` und entferne Debugsymbole: `cmake --install {{pfad/zu/build_verzeichnis}} --strip` diff --git a/pages.de/common/code.md b/pages.de/common/code.md index 55df0cb4e25628..3f78cd443c9cef 100644 --- a/pages.de/common/code.md +++ b/pages.de/common/code.md @@ -1,28 +1,36 @@ # code > Visual Studio Code. -> Mehr Informationen: . +> Weitere Informationen: . -- Öffne VS Code: +- Öffne Visual Studio Code: `code` -- Öffne das aktuelle Verzeichnis in VS Code: +- Öffne bestimmte Dateien und/oder Verzeichnisse: -`code .` +`code {{pfad/zu/datei_oder_verzeichnis1 pfad/zu/datei_oder_verzeichnis2 ...}}` -- Öffne eine bestimmte Datei oder Verzeichnis in VS Code: +- Vergleiche zwei bestimmte Dateien: -`code {{pfad/zu/datei_oder_verzeichnis}}` +`code --diff {{pfad/zu/datei1}} {{pfad/zu/datei2}}` -- Öffne eine Datei oder ein Verzeichnis im aktuell geöffnetem VS Code Fenster: +- Öffne bestimmte Dateien und/oder Verzeichnisse in einem neuen Fenster: -`code --reuse-window {{pfad/zu/datei_oder_verzeichnis}}` +`code --new-window {{pfad/zu/datei_oder_verzeichnis1 pfad/zu/datei_oder_verzeichnis2 ...}}` -- Öffne mehrere Dateien in VS Code: +- Installiere oder lösche bestimmte Erweiterung: -`code -d {{pfad/zu/datei1}} {{pfad/zu/datei2}}` +`code --{{install|uninstall}}-extension {{herausgeber.erweiterung}}` -- Öffne VS Code root: +- Liste alle installierten Erweiterungen auf: -`sudo code {{pfad/zu/datei_oder_verzeichnis}} --user-data-dir` +`code --list-extensions` + +- Liste alle installierten Erweiterungen und deren Version auf: + +`code --list-extensions --show-versions` + +- Starte Visual Studio Code als Superuser und speichere Benutzerdaten in einem bestimmten Verzeichnis: + +`sudo code --user-data-dir {{pfad/zu/verzeichnis}}` diff --git a/pages.de/common/cola.md b/pages.de/common/cola.md new file mode 100644 index 00000000000000..87dc599031d598 --- /dev/null +++ b/pages.de/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Dieser Befehl ist ein Alias von `git-cola`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr git-cola` diff --git a/pages.de/common/compare.md b/pages.de/common/compare.md index 255d05f98e56f1..1918295b9114d0 100644 --- a/pages.de/common/compare.md +++ b/pages.de/common/compare.md @@ -1,7 +1,7 @@ # compare > Zeige Unterschiede von zwei Bildern. -> Mehr Informationen: . +> Weitere Informationen: . - Vergleiche 2 Bilder: diff --git a/pages.de/common/conda-create.md b/pages.de/common/conda-create.md new file mode 100644 index 00000000000000..05754bb2364f96 --- /dev/null +++ b/pages.de/common/conda-create.md @@ -0,0 +1,16 @@ +# conda create + +> Erstelle neue Conda-Umgebungen. +> Weitere Informationen: . + +- Erstelle eine neue Umgebung mit dem Namen `py39` und installiere Python 3.9 und NumPy v1.11 (oder höher) darin: + +`conda create --yes --name {{py39}} python={{3.9}} "{{numpy>=1.11}}"` + +- Erstelle eine exakte Kopie einer Umgebung: + +`conda create --clone {{py39}} --name {{py39-copy}}` + +- Erstelle eine neue Umgebung mit gegebenem Namen und den zu installierenden Paketen: + +`conda create --name {{umgebungsname}} {{paketname}}` diff --git a/pages.de/common/conda.md b/pages.de/common/conda.md new file mode 100644 index 00000000000000..74487664ca07bf --- /dev/null +++ b/pages.de/common/conda.md @@ -0,0 +1,37 @@ +# conda + +> Eine Paket-, Abhängigkeits- und Umgebungsverwaltung für beliebige Programmiersprachen. +> Manche Unterbefehle wie `conda create` sind separat dokumentiert. +> Weitere Informationen: . + +- Erstelle eine neue Umgebung mit den zu installierenden Paketen: + +`conda create --name {{umgebungsname}} {{python=3.9 matplotlib}}` + +- Liste alle Umgebungen auf: + +`conda info --envs` + +- Lade eine Umgebung: + +`conda {{activate umgebungs_name}}` + +- Entlade eine Umgebung: + +`conda {{deactivate}}` + +- Lösche eine Umgebung (entferne alle Pakete): + +`conda remove --name {{umgebungsname}} --all` + +- Installiere Pakete in die derzeit geladene Umgebung: + +`conda install {{python=3.4 numpy}}` + +- Liste alle installierten Pakete in der derzeit geladenen Umgebung auf: + +`conda list` + +- Lösche alle ungenutzten Pakete und leere den Cache: + +`conda clean --all` diff --git a/pages.de/common/convert.md b/pages.de/common/convert.md index 9e11a5be5f0286..8f280d4e6ec75e 100644 --- a/pages.de/common/convert.md +++ b/pages.de/common/convert.md @@ -1,7 +1,7 @@ # convert -> Imagemagick Bildkonvertierungswerkzeug. -> Mehr Informationen: . +> ImageMagick Bildkonvertierungswerkzeug. +> Weitere Informationen: . - Konvertiere ein Bild von JPG nach PNG: @@ -15,7 +15,7 @@ `convert {{pfad/zu/bild.png}} -resize 640x480 {{pfad/zu/bild2.png}}` -- Hänge Bilder horizontal aneinader: +- Hänge Bilder horizontal aneinander: `convert {{pfad/zu/bild1.png}} {{pfad/zu/bild2.png}} {{pfad/zu/bild3.png}} +append {{pfad/zu/bild123.png}}` @@ -30,3 +30,7 @@ - Erstelle ein Bild mit nichts als einem festen Hintergrund: `convert -size {{800x600}} "xc:{{#ff0000}}" {{pfad/zu/bild.png}}` + +- Erstelle ein Favicon aus mehreren Bildern verschiedener Größe: + +`convert {{pfad/zu/bild1.png}} {{pfad/zu/bild2.png}} {{pfad/zu/bild3.png}} {{pfad/zu/bild.ico}}` diff --git a/pages.de/common/cp.md b/pages.de/common/cp.md index 82c19930370beb..3537cf483a95e2 100644 --- a/pages.de/common/cp.md +++ b/pages.de/common/cp.md @@ -1,7 +1,7 @@ # cp > Kopiere Dateien und Verzeichnisse. -> Mehr Informationen: . +> Weitere Informationen: . - Kopiere eine Datei an einen anderen Ort: @@ -9,16 +9,20 @@ - Kopiere eine Datei an einen anderen Ort und behalte den Dateinamen: -`cp {{pfad/zu/datei}} {{pfad/zu/ziel_verzeichnis}}` +`cp {{pfad/zu/datei}} {{pfad/zu/zielverzeichnis}}` - Kopiere ein Verzeichnis rekursiv (falls der Zielort bereits existiert, wird das Verzeichnis in das Zielverzeichnis kopiert): -`cp -r {{pfad/zu/verzeichnis}} {{pfad/zu/ziel_verzeichnis}}` +`cp -r {{pfad/zu/verzeichnis}} {{pfad/zu/zielverzeichnis}}` - Kopiere ein Verzeichnis rekursiv und gib alle Dateien aus, während sie kopiert werden: -`cp -vr {{pfad/zu/verzeichnis}} {{pfad/zu/ziel_verzeichnis}}` +`cp -vr {{pfad/zu/verzeichnis}} {{pfad/zu/zielverzeichnis}}` - Kopiere alle Textdateien in einem Verzeichnis und warte auf eine Bestätigung, falls eine Datei überschrieben werden soll: -`cp -i {{/pfad/zu/*.txt}} {{pfad/zu/ziel_verzeichnis}}` +`cp -i {{/pfad/zu/*.txt}} {{pfad/zu/zielverzeichnis}}` + +- Folge symbolischen Links vor dem Kopieren: + +`cp -L {{link}} {{pfad/zu/zielverzeichnis}}` diff --git a/pages.de/common/cradle-deploy.md b/pages.de/common/cradle-deploy.md index 96df59aa0f4ead..bfd6c57aa55cf0 100644 --- a/pages.de/common/cradle-deploy.md +++ b/pages.de/common/cradle-deploy.md @@ -1,7 +1,7 @@ # cradle deploy > Verwalte Cradle Implementierungen. -> Mehr Informationen: . +> Weitere Informationen: . - Implementiere Cradle auf einem Server: diff --git a/pages.de/common/cradle-elastic.md b/pages.de/common/cradle-elastic.md index 0773fc79e6f961..bedc112c62d1a6 100644 --- a/pages.de/common/cradle-elastic.md +++ b/pages.de/common/cradle-elastic.md @@ -1,7 +1,7 @@ # cradle elastic > Verwalte ElasticSearch Instanzen einer Cradle Instanz. -> Mehr Informationen: . +> Weitere Informationen: . - Entleere den ElasticSearch Index: diff --git a/pages.de/common/cradle-install.md b/pages.de/common/cradle-install.md index 0563035ddd500b..fa08044ae298eb 100644 --- a/pages.de/common/cradle-install.md +++ b/pages.de/common/cradle-install.md @@ -1,7 +1,7 @@ # cradle install > Installiere Cradle PHP Framework Komponenten. -> Mehr Informationen: . +> Weitere Informationen: . - Installiere Cradle Komponenten mithilfe eines Dialogs: diff --git a/pages.de/common/cradle-package.md b/pages.de/common/cradle-package.md index 4dd698c9e992af..ffd56d2399131b 100644 --- a/pages.de/common/cradle-package.md +++ b/pages.de/common/cradle-package.md @@ -1,7 +1,7 @@ # cradle package > Verwalte Pakete für Cradle Instanzen. -> Mehr Informationen: . +> Weitere Informationen: . - Liste aller verfügbaren Pakete auf: @@ -19,14 +19,14 @@ `cradle package install {{paket}} {{version}}` -- Aktualisiere eine Paket: +- Aktualisiere ein Paket: `cradle package update {{paket}}` -- Aktualisiere ein Paketes zu einer bestimmten Paket-Version: +- Aktualisiere ein Paket zu einer bestimmten Paket-Version: `cradle package update {{paket}} {{version}}` -- Entferne eine Paket: +- Entferne ein Paket: `cradle package remove {{paket}}` diff --git a/pages.de/common/cradle-sql.md b/pages.de/common/cradle-sql.md index e187e7d31f350a..3741bbf12e67e1 100644 --- a/pages.de/common/cradle-sql.md +++ b/pages.de/common/cradle-sql.md @@ -1,7 +1,7 @@ # cradle sql > Verwalte Cradle SQL Datenbanken. -> Mehr Informationen: . +> Weitere Informationen: . - Generiere ein neues Datenbank-Schema: diff --git a/pages.de/common/cradle.md b/pages.de/common/cradle.md index a18f81602403a8..1bef608077f159 100644 --- a/pages.de/common/cradle.md +++ b/pages.de/common/cradle.md @@ -1,8 +1,8 @@ # cradle > Das Cradle PHP Framework. -> Siehe `cradle-install`, `cradle-deploy`, etc. für zusätzliche Informationen. -> Mehr Informationen: . +> Manche Unterbefehle wie `cradle install` sind separat dokumentiert. +> Weitere Informationen: . - Stelle eine Verbindung zu einem Server her: diff --git a/pages.de/common/cron.md b/pages.de/common/cron.md new file mode 100644 index 00000000000000..7ad51360bb0d23 --- /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/csvsql.md b/pages.de/common/csvsql.md index 9821aa145304cc..9ac826220bc283 100644 --- a/pages.de/common/csvsql.md +++ b/pages.de/common/csvsql.md @@ -2,7 +2,7 @@ > Generiere SQL-Anweisungen für eine CSV-Datei oder führe diese Anweisungen direkt in einer Datenbank aus. > Teil von csvkit. -> Mehr Informationen: . +> Weitere Informationen: . - Generiere eine `CREATE TABLE`-SQL-Anweisung für eine CSV-Datei: diff --git a/pages.de/common/curl.md b/pages.de/common/curl.md index aad62d13868b3a..3b2ddafa1ce6e2 100644 --- a/pages.de/common/curl.md +++ b/pages.de/common/curl.md @@ -2,36 +2,36 @@ > Überträgt Daten von oder zu einem Server. > Unterstützt die meisten Protokolle, inklusive HTTP, FTP und POP3. -> Mehr Informationen: . +> Weitere Informationen: . - Lade den Inhalt einer URL in eine Datei: -`curl {{http://beispiel.de}} -o {{pfad/zu/datei}}` +`curl {{http://beispiel.de}} --output {{pfad/zu/datei}}` - Lade eine Datei von einer URL herunter: -`curl -O {{http://beispiel.de/datei}}` +`curl --remote-name {{http://beispiel.de/datei}}` - Lade eine Datei herunter, folge Weiterleitungen und setze vergangene Dateitransfers automatisch fort: -`curl -O -L -C - {{http://beispiel.de/datei}}` +`curl --remote-name --location --continue-at - {{http://beispiel.de/datei}}` -- Sende formular-codierte Daten (POST Anfragen des Typs `application/x-www-form-urlencoded`). Benutze `-d @dateiname` oder `-d @'-'`, um von STDIN zu lesen: +- Sende formular-codierte Daten (POST Anfragen des Typs `application/x-www-form-urlencoded`). Benutze `--data @dateiname` oder `--data @'-'`, um von STDIN zu lesen: -`curl -d {{'name=karl-dieter'}} {{http://beispiel.de/formular}}` +`curl --data {{'name=karl-dieter'}} {{http://beispiel.de/formular}}` - Sende eine Anfrage mit einem extra Header mit einer eigenen HTTP-Methode: -`curl -H {{'X-Mein-Header: 123'}} -X {{PUT}} {{http://beispiel.de}}` +`curl --header {{'X-Mein-Header: 123'}} --request {{PUT}} {{http://beispiel.de}}` - Sende Daten im JSON-Format und lege den geeigneten Inhaltstyp-Header fest: -`curl -d {{'{"name":"karl-dieter"}'}} -H {{'Content-Type: application/json'}} {{http://beispiel.de/benutzer/1234}}` +`curl --data {{'{"name":"karl-dieter"}'}} --header {{'Content-Type: application/json'}} {{http://beispiel.de/benutzer/1234}}` - Übergib einen Benutzernamen und Passwort für die Server-Authentifizierung: -`curl -u benutzername:passwort {{http://beispiel.de}}` +`curl --user benutzername:passwort {{http://beispiel.de}}` -- Übergib Client-Zertifikat und -Schlüssel für eine Resource und überspringe die Zertifikatsüberprüfung: +- Übergib Client-Zertifikat und -Schlüssel für eine Ressource und überspringe die Zertifikatsüberprüfung: `curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://beispiel.de}}` diff --git a/pages.de/common/cut.md b/pages.de/common/cut.md index 80d5ce115d5b96..aba577302d8017 100644 --- a/pages.de/common/cut.md +++ b/pages.de/common/cut.md @@ -1,28 +1,16 @@ # cut > Schneide Felder von stdin oder einer Datei aus. -> Mehr Informationen: . +> Weitere Informationen: . -- Schneide die ersten 16 Zeichen jeder Zeile von stdin aus: +- Schneide bestimmte Zeichen oder einen Feldbereich jeder Zeile aus: -`cut -c {{1-16}}` +`{{befehl}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}` -- Schneide die ersten 16 Zeichen jeder Zeile der angegebenen Datei aus: +- Schneide einen bestimmten Bereich jeder Zeile mit einem bestimmten Trennzeichen aus: -`cut -c {{1-16}} {{pfad/zu/datei}}` +`{{befehl}} | cut --delimiter="{{,}} --{{characters}}={{1}}"` -- Schneide alles ab dem dritten Zeichen bis zum Ende der Zeile aus: +- Schneide einen bestimmten Bereich jeder Zeile einer bestimmten Datei aus: -`cut -c {{3-}}` - -- Schneide das fünfte Feld jeder Zeile aus und nutze den Doppelpunkt als Trennzeichen (standardmäßig Tab): - -`cut -d'{{:}}' -f{{5}}` - -- Schneide das 2. und 10. Feld jeder Zeile aus und nutze Semikolon als Trennzeichen: - -`cut -d'{{;}}' -f{{2,10}}` - -- Schneide alles ab dem dritten Zeichen bis zum Ende der Zeile aus und nutze Leerzeichen als Trennzeichen: - -`cut -d'{{ }}' -f{{3-}}` +`cut --{{characters}}={{1}} {{pfad/zu/datei}}` diff --git a/pages.de/common/dart.md b/pages.de/common/dart.md new file mode 100644 index 00000000000000..8685c40d5cdd99 --- /dev/null +++ b/pages.de/common/dart.md @@ -0,0 +1,28 @@ +# dart + +> Das Werkzeug zur Verwaltung von Dart-Projekten. +> Weitere Informationen: . + +- Initialisiere ein neues Dart-Projekt in einem Verzeichnis mit demselben Namen: + +`dart create {{projekt_name}}` + +- Ausführen einer Dart-Datei: + +`dart run {{pfad/zur/datei.dart}}` + +- Herunterladen der Abhängigkeiten für das aktuelle Projekt: + +`dart pub get` + +- Ausführen von Unit-Tests für das aktuelle Projekt: + +`dart test` + +- Aktualisieren veralteter Projektabhängigkeiten, um Null-Sicherheit zu unterstützen: + +`dart pub upgrade --null-safety` + +- Kompilieren einer Dart-Datei in eine native Binärdatei: + +`dart compile exe {{pfad/zur/datei.dart}}` diff --git a/pages.de/common/date.md b/pages.de/common/date.md new file mode 100644 index 00000000000000..4d0f5bc9bddd47 --- /dev/null +++ b/pages.de/common/date.md @@ -0,0 +1,36 @@ +# date + +> Setze die Systemzeit oder zeige sie an. +> Weitere Informationen: . + +- Zeige das aktuelle Datum im Format der eingestellten Locale an: + +`date +%c` + +- Zeige das aktuelle Datum in koordinierter Weltzeit (UTC) im ISO 8601-Format an: + +`date -u +%Y-%m-%dT%H:%M:%S%Z` + +- Zeige das aktuelle Datum in Unixzeit (vergangene Sekunden seit der Unix-Epoche) an: + +`date +%s` + +- Konvertiere ein in Unixzeit gegebenes Datum zum Standardformat: + +`date -d @{{1473305798}}` + +- Konvertiere ein gegebenes Datum zu Unixzeit: + +`date -d "{{2018-09-01 00:00}}" +%s --utc` + +- Zeige das aktuelle Datum im RFC-3339 Format (`YYYY-MM-DD hh:mm:ss TZ`) an: + +`date --rfc-3339=s` + +- Setze das aktuelle Datum im Format `MMDDhhmmYYYY.ss` (`YYYY` und `.ss` sind optional): + +`date {{093023592021.59}}` + +- Zeige die aktuelle ISO-Wochenzahl an: + +`date +%V` diff --git a/pages.de/common/dd.md b/pages.de/common/dd.md index ad23a4f2aa5818..662e3b6a561119 100644 --- a/pages.de/common/dd.md +++ b/pages.de/common/dd.md @@ -1,11 +1,11 @@ # dd > Konvertiere und kopiere eine Datei. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle ein bootbares USB-Laufwerk von einer isohybriden Datei (wie `archlinux-xxxx.iso`) und zeige den Fortschritt an: -`dd if={{pfad/zu/datei.iso}} of=/dev/{{usb_drive}} status=progress` +`dd if={{pfad/zu/datei.iso}} of=/dev/{{laufwerk}} status=progress` - Klone ein USB-Laufwerk in ein anderes in 4MiB Blöcken, ignoriere Fehler und zeige den Fortschritt an: @@ -19,6 +19,14 @@ `dd if=/dev/zero of={{pfad/zu/1GB_datei}} bs=1024 count=1000000` -- Überprüfe den Fortschritt eines laufenden dd-Prozsses (Führe diesen Befehl von einer anderen Shell aus): +- Erstelle ein System-Backup als IMG Datei und zeige den Fortschritt an: + +`dd if=/dev/{{laufwerk}} of={{pfad/zu/datei.img}} status=progress` + +- Stelle ein Laufwerk aus einer IMG Datei wieder her und zeige den Fortschritt an: + +`dd if={{pfad/zu/datei.img}} of=/dev/{{laufwerk}} status=progress` + +- Überprüfe den Fortschritt eines laufenden dd-Prozesses (Führe diesen Befehl von einer anderen Shell aus): `kill -USR1 $(pgrep ^dd)` diff --git a/pages.de/common/deno.md b/pages.de/common/deno.md new file mode 100644 index 00000000000000..c70dda0234580f --- /dev/null +++ b/pages.de/common/deno.md @@ -0,0 +1,24 @@ +# deno + +> Eine sichere JavaScript- und TypeScript-Laufzeit. +> Weitere Informationen: . + +- Führe eine JavaScript oder TypeScript Datei aus: + +`deno run {{pfad/zu/datei.ts}}` + +- Starte ein REPL (interaktive Konsole): + +`deno` + +- Führe eine Datei mit Netzwerkzugriff aus: + +`deno run --allow-net {{pfad/zu/datei.ts}}` + +- Führe eine Datei von einer URL aus: + +`deno run {{https://deno.land/std/examples/welcome.ts}}` + +- Installiere ein ausführbares Script von einer URL: + +`deno install {{https://deno.land/std/examples/colors.ts}}` diff --git a/pages.de/common/df.md b/pages.de/common/df.md new file mode 100644 index 00000000000000..d60a5cb5f6d55f --- /dev/null +++ b/pages.de/common/df.md @@ -0,0 +1,24 @@ +# df + +> Verschafft einen Überblick über verfügbaren Speicherplatz im Dateisystem. +> Weitere Informationen: . + +- Zeige verfügbaren Platz auf allen eingehängten Dateisystemen: + +`df` + +- Zeige verfügbaren Platz auf allen eingehängten Dateisystemen in einem menschenlesbaren Format: + +`df -h` + +- Zeige das Dateisystem und dessen Speicherverbrauch, das die angegebene Datei oder Verzeichnis enthält: + +`df {{pfad/zu/datei_oder_verzeichnis}}` + +- Zeige Statistiken über die Anzahl freier Inodes: + +`df -i` + +- Zeige alle Dateisysteme bis auf die eines bestimmten Typs: + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.de/common/diff.md b/pages.de/common/diff.md index a7283b960e001a..30b233f2d0ce1d 100644 --- a/pages.de/common/diff.md +++ b/pages.de/common/diff.md @@ -1,7 +1,7 @@ # diff > Vergleiche Dateien und Verzeichnisse. -> Mehr Informationen: . +> Weitere Informationen: . - Vergleiche Dateien (Listet jene Veränderungen auf, mit denen `datei1` zu `datei2` wird): @@ -9,20 +9,24 @@ - Vergleiche Dateien und ignoriere Leerzeichen: -`diff -w {{pfad/zu/datei1}} {{pfad/zu/datei2}}` +`diff --ignore-all-space {{pfad/zu/datei1}} {{pfad/zu/datei2}}` - Vergleiche Dateien und zeige Unterschiede nebeneinander: -`diff -y {{pfad/zu/datei1}} {{pfad/zu/datei2}}` +`diff --side-by-side {{pfad/zu/datei1}} {{pfad/zu/datei2}}` - Vergleiche Dateien und zeige Unterschiede in vereinheitlichtem Format (wie in `git diff`): -`diff -u {{pfad/zu/datei1}} {{pfad/zu/datei2}}` +`diff --unified {{pfad/zu/datei1}} {{pfad/zu/datei2}}` - Vergleiche Verzeichnisse rekursiv (zeigt sowohl Namen von unterschiedlichen Dateien/Verzeichnissen, als auch Unterschiede zwischen Dateien): -`diff -r {{altes_verzeichnis}} {{neues_verzeichnis}}` +`diff --recursive {{altes_verzeichnis}} {{neues_verzeichnis}}` - Vergleiche Verzeichnisse und zeige nur die Namen der Dateien, die unterschiedlich sind: -`diff -rq {{altes_verzeichnis}} {{neues_verzeichnis}}` +`diff --recursive --brief {{altes_verzeichnis}} {{neues_verzeichnis}}` + +- Erstelle ein patch-Datei für Git bestehend aus den Unterschieden zweier Dateien und behandle fehlende Dateien als leer: + +`diff --text --unified --new-file {{pfad/zu/datei1}} {{pfad/zu/datei2}} > {{pfad/zu/diff.patch}}` diff --git a/pages.de/common/dirs.md b/pages.de/common/dirs.md new file mode 100644 index 00000000000000..6f1ae75d639c50 --- /dev/null +++ b/pages.de/common/dirs.md @@ -0,0 +1,21 @@ +# dirs + +> Zuletzt besuchte Ordner anzeigen und verändern. +> Die Liste der zuletzt besuchten Ordner kann mit `pushd` und `popd` verändert werden. +> Weitere Informationen: . + +- Zeige die zuletzt besuchten Ordner durch Leerzeichen getrennt an: + +`dirs` + +- Zeige die zuletzt besuchten Ordner mit einem Eintrag pro Zeile an: + +`dirs -p` + +- Zeige den N-ten Eintrag der zuletzt besuchten Ordner an, beginnend mit 0: + +`dirs +{{N}}` + +- Leere die Liste der zuletzt besuchten Ordner: + +`dirs -c` diff --git a/pages.de/common/docker-build.md b/pages.de/common/docker-build.md new file mode 100644 index 00000000000000..7b766044a56576 --- /dev/null +++ b/pages.de/common/docker-build.md @@ -0,0 +1,32 @@ +# docker build + +> Baut ein Image aus einem Dockerfile. +> Weitere Informationen: . + +- Baue ein Docker Image aus dem Dockerfile im aktuellen Verzeichnis: + +`docker build .` + +- Baue ein Docker Image aus einem Dockerfile an einer angegebenen URL: + +`docker build {{github.com/creack/docker-firefox}}` + +- Baue ein Docker Image und gib ihm einen Tag: + +`docker build --tag {{name:tag}} .` + +- Baue ein Docker Image ohne Build-Kontext: + +`docker build --tag {{name:tag}} - < {{Dockerfile}}` + +- Verwende keinen Cache beim Bauen des Docker Images: + +`docker build --no-cache --tag {{name:tag}} .` + +- Baue ein Docker Image mit einem spezifischen Dockerfile: + +`docker build --file {{Dockerfile}} .` + +- Baue mit benutzerdefinierten Variablen, die während des Bauens zur Verfügung stehen: + +`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.de/common/docker-compose.md b/pages.de/common/docker-compose.md new file mode 100644 index 00000000000000..b9c04bf695c85d --- /dev/null +++ b/pages.de/common/docker-compose.md @@ -0,0 +1,36 @@ +# docker compose + +> Starte und verwalte Anwendungen, welche aus mehreren Docker Containern bestehen. +> Weitere Informationen: . + +- Liste alle laufenden Container auf: + +`docker compose ps` + +- Erzeuge und starte alle Container im Hintergrund unter der Verwendung der Datei `docker-compose.yml` im aktuellen Verzeichnis: + +`docker compose up -d` + +- Starte alle Container. Erzeuge zugehörige Docker Images bei Bedarf neu: + +`docker compose up --build` + +- Starte alle Container unter Verwendung einer alternativen Compose Datei: + +`docker compose --file {{pfad/zu/verzeichnis}} up` + +- Stoppe alle laufenden Container: + +`docker compose stop` + +- Stoppe und entferne alle Container inklusive zugehöriger Netzwerke, Volumes und Images: + +`docker compose down --rmi all --volumes` + +- Zeige die Logs aller Container kontinuierlich an: + +`docker compose logs --follow` + +- Zeige die Logs eines spezifischen Containers kontinuierlich an: + +`docker compose logs --follow {{container_name}}` diff --git a/pages.de/common/docker-container.md b/pages.de/common/docker-container.md new file mode 100644 index 00000000000000..5dba630aa5d70c --- /dev/null +++ b/pages.de/common/docker-container.md @@ -0,0 +1,36 @@ +# docker container + +> Verwalte Docker Container. +> Weitere Informationen: . + +- Liste zur Zeit laufende Container auf: + +`docker container ls` + +- Starte einen oder mehrere gestoppte Container: + +`docker container start {{container1_name}} {{container2_name}}` + +- Beende einen oder mehrere laufende Container sofort: + +`docker container kill {{container_name}}` + +- Stoppe einen oder mehrere laufende Container: + +`docker container stop {{container_name}}` + +- Pausiere alle Prozesse in einem oder mehreren Containern: + +`docker container pause {{container_name}}` + +- Zeige detaillierte Informationen zu einem oder mehreren Containern an: + +`docker container inspect {{container_name}}` + +- Exportiere das Dateisystem eines Containers als tar Archiv: + +`docker container export {{container_name}}` + +- Erstelle ein neues Image aus den Änderungen eines Containers: + +`docker container commit {{container_name}}` diff --git a/pages.de/common/docker-cp.md b/pages.de/common/docker-cp.md new file mode 100644 index 00000000000000..0d63449ea683aa --- /dev/null +++ b/pages.de/common/docker-cp.md @@ -0,0 +1,16 @@ +# docker cp + +> Kopiere Dateien oder Verzeichnisse zwischen Host- und Container-Dateisystem. +> Weitere Informationen: . + +- Kopiere eine Datei oder ein Verzeichnis vom Host in einen Container: + +`docker cp {{pfad/zu/datei_oder_verzeichnis_auf_host}} {{container_name}}:{{pfad/zu/datei_oder_verzeichnis_in_container}}` + +- Kopiere eine Datei oder ein Verzeichnis von einem Container zum Host: + +`docker cp {{container_name}}:{{pfad/zu/datei_oder_verzeichnis_in_container}} {{pfad/zu/datei_oder_verzeichnis_auf_host}}` + +- Kopiere eine Datei oder ein Verzeichnis vom Host in einen Container und folge dabei Symlinks (kopiert die verlinkten Dateien statt der Symlinks): + +`docker cp --follow-link {{pfad/zu/symlink_auf_host}} {{container_name}}:{{pfad/zu/datei_oder_verzeichnis_in_container}}` diff --git a/pages.de/common/docker-exec.md b/pages.de/common/docker-exec.md new file mode 100644 index 00000000000000..024a9dcc8b361b --- /dev/null +++ b/pages.de/common/docker-exec.md @@ -0,0 +1,28 @@ +# docker exec + +> Führe Befehle in einem bereits laufenden Docker Container aus. +> Weitere Informationen: . + +- Öffne eine Shell innerhalb eines bereits laufenden Containers: + +`docker exec --interactive --tty {{container_name}} {{/bin/bash}}` + +- Führe einen Befehl im Hintergrund (losgelöst) in einem laufenden Container aus: + +`docker exec --detach {{container_name}} {{befehl}}` + +- Bestimme das Arbeitsverzeichnis, in dem der Befehl ausgeführt werden soll: + +`docker exec --interactive -tty --workdir {{pfad/zum/verzeichnis}} {{container_name}} {{befehl}}` + +- Führe einen Befehl im Hintergrund in einem laufenden Container aus, aber lies von der Standardeingabe: + +`docker exec --interactive --detach {{container_name}} {{befehl}}` + +- Setze eine Umgebungsvariable in einer laufenden Bash Sitzung: + +`docker exec --interactive --tty --env {{variablen_name}}={{wert}} {{container_name}} {{/bin/bash}}` + +- Führe einen Befehl als ein bestimmter Benutzer aus: + +`docker exec --user {{benutzer}} {{container_name}} {{befehl}}` diff --git a/pages.de/common/docker-image.md b/pages.de/common/docker-image.md new file mode 100644 index 00000000000000..8e40f1cbe553e2 --- /dev/null +++ b/pages.de/common/docker-image.md @@ -0,0 +1,21 @@ +# docker image + +> Verwalte Docker Images. +> Siehe auch `docker build`, `docker import` und `docker pull`. +> Weitere Informationen: . + +- Liste lokale Docker Images auf: + +`docker image ls` + +- Lösche nicht verwendete, lokale Docker Images: + +`docker image prune` + +- Lösche alle nicht verwendeten Docker Images (nicht nur die ohne Tag): + +`docker image prune --all` + +- Zeige die Geschichte eines lokalen Docker Images: + +`docker image history {{image}}` diff --git a/pages.de/common/docker-images.md b/pages.de/common/docker-images.md new file mode 100644 index 00000000000000..92fa4cd2db8666 --- /dev/null +++ b/pages.de/common/docker-images.md @@ -0,0 +1,24 @@ +# docker images + +> Verwalte Docker Images. +> Weitere Informationen: . + +- Liste alle Docker Images auf: + +`docker images` + +- Liste alle Docker Images inkl. Zwischen-Images auf: + +`docker images --all` + +- Liste nur die IDs der Docker Images auf: + +`docker images --quiet` + +- Liste alle Docker Images auf, die nicht von einem Container verwendet werden: + +`docker images --filter dangling=true` + +- Liste alle Docker Images mit einer bestimmten Zeichenfolge im Namen auf: + +`docker images "{{*name*}}"` diff --git a/pages.de/common/docker-inspect.md b/pages.de/common/docker-inspect.md new file mode 100644 index 00000000000000..e78443f3be5b36 --- /dev/null +++ b/pages.de/common/docker-inspect.md @@ -0,0 +1,32 @@ +# docker inspect + +> Erhalte tiefgehende Informationen zu Docker Objekten. +> Weitere Informationen: . + +- Zeige Hilfeseite: + +`docker inspect` + +- Zeige Informationen über einen Container, ein Image oder Volume anhand des Namens oder der ID: + +`docker inspect {{container|image|ID}}` + +- Zeige die IP Adresse eines Containers an: + +`docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' {{container}}` + +- Zeige den Pfad zur Logdatei eines Containers: + +`docker inspect --format='{{.LogPath}}' {{container}}` + +- Zeige den Namen des Images eines Containers: + +`docker inspect --format='{{.Config.Image}}' {{container}}` + +- Zeige die Konfiguration als JSON an: + +`docker inspect --format='{{json .Config}}' {{container}}` + +- Zeige alle Port Bindings: + +`docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' {{container}}` diff --git a/pages.de/common/docker-login.md b/pages.de/common/docker-login.md new file mode 100644 index 00000000000000..f3fa2b3b1432a9 --- /dev/null +++ b/pages.de/common/docker-login.md @@ -0,0 +1,20 @@ +# docker login + +> Bei einer Docker Registry einloggen. +> Weitere Informationen: . + +- Interaktives Einloggen bei einer Registry: + +`docker login` + +- Einloggen mit einem angegebenen Benutzernamen (fragt nach dem Passwort): + +`docker login --username {{benutzername}}` + +- Einloggen mit einem angegebenen Benutzernamen und Passwort: + +`docker login --username {{benutzername}} --password {{passwort}} {{server}}` + +- Einloggen mit einem Passwort, welches von stdin gelesen wird: + +`echo "{{passwort}}" | docker login --username {{benutzername}} --password-stdin` diff --git a/pages.de/common/docker-logs.md b/pages.de/common/docker-logs.md new file mode 100644 index 00000000000000..6d4c79feaa19fb --- /dev/null +++ b/pages.de/common/docker-logs.md @@ -0,0 +1,24 @@ +# docker logs + +> Zeige Container Logs. +> Weitere Informationen: . + +- Zeige die Logs eines Containers: + +`docker logs {{container_name}}` + +- Zeige die Logs und aktualisiere sie automatisch: + +`docker logs -f {{container_name}}` + +- Zeige die letzten 5 Zeilen: + +`docker logs {{container_name}} --tail {{5}}` + +- Zeige die Logs und füge ihnen Zeitstempel hinzu: + +`docker logs -t {{container_name}}` + +- Zeige Logs vor einem bestimmten Zeitpunkt der Ausführung des Containers (bspw. 23m, 10s, 2013-01-02T13:23:37): + +`docker logs {{container_name}} --until {{time}}` diff --git a/pages.de/common/docker-machine.md b/pages.de/common/docker-machine.md new file mode 100644 index 00000000000000..976071755db089 --- /dev/null +++ b/pages.de/common/docker-machine.md @@ -0,0 +1,28 @@ +# docker-machine + +> Erstelle und verwalte Maschinen, die Docker ausführen. +> Weitere Informationen: . + +- Liste zur Zeit laufende Docker Maschinen auf: + +`docker-machine ls` + +- Erzeuge eine neue Docker Maschine mit einem spezifischen Namen: + +`docker-machine create {{name}}` + +- Zeige den Status einer Maschine: + +`docker-machine status {{name}}` + +- Starte eine Maschine: + +`docker-machine start {{name}}` + +- Stoppe eine Maschine: + +`docker-machine stop {{name}}` + +- Zeige Informationen über eine Maschine: + +`docker-machine inspect {{name}}` diff --git a/pages.de/common/docker-network.md b/pages.de/common/docker-network.md new file mode 100644 index 00000000000000..371216efd373ec --- /dev/null +++ b/pages.de/common/docker-network.md @@ -0,0 +1,32 @@ +# docker network + +> Erzeuge und verwalte Docker Netzwerke. +> Weitere Informationen: . + +- Liste alle verfügbaren und konfigurierten Docker Netzwerke auf: + +`docker network ls` + +- Erzeuge ein benutzerdefiniertes Netzwerk: + +`docker network create --driver {{treiber_name}} {{netzwerk_name}}` + +- Zeige detaillierte Informationen der mit Leerzeichen separierten Netzwerke an: + +`docker network inspect {{netzwerk_name}}` + +- Verbinde einen Container mit einem Netzwerk anhand des Namens oder der ID: + +`docker network connect {{netzwerk_name}} {{container_name|ID}}` + +- Trenne einen Container von einem Netzwerk: + +`docker network disconnect {{netzwerk_name}} {{container_name|ID}}` + +- Entferne alle unbenutzten (nicht von Containern referenzierten) Netzwerke: + +`docker network prune` + +- Entferne mehrere - durch Leerzeichen getrennte - Netzwerke: + +`docker network rm {{netzwerk_name}}` diff --git a/pages.de/common/docker-ps.md b/pages.de/common/docker-ps.md new file mode 100644 index 00000000000000..b3b5c82042b5b8 --- /dev/null +++ b/pages.de/common/docker-ps.md @@ -0,0 +1,36 @@ +# docker ps + +> Liste Docker Container. +> Weitere Informationen: . + +- Liste zur Zeit laufende Container auf: + +`docker ps` + +- Liste laufende und gestoppte Container auf: + +`docker ps --all` + +- Zeige den zuletzt erstellten Container (berücksichtigt jeden Status): + +`docker ps --latest` + +- Zeige nur Container mit einer bestimmten Zeichenkette im Namen: + +`docker ps --filter="name={{name}}"` + +- Zeige nur Container die von einem bestimmten Image abstammen: + +`docker ps --filter "ancestor={{image}}:{{tag}}"` + +- Zeige nur Container mit einem bestimmten Exit-Code: + +`docker ps --all --filter="exited={{code}}"` + +- Zeige nur Container mit einem bestimmten Status (created, running, removing, paused, exited und dead): + +`docker ps --filter="status={{status}}"` + +- Zeige nur Container, welche einen bestimmten Datenträger oder einen Datenträger an einem bestimmten Pfad eingehängt haben: + +`docker ps --filter="volume={{pfad/zum/verzeichnis}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages.de/common/docker-rmi.md b/pages.de/common/docker-rmi.md new file mode 100644 index 00000000000000..1b0189f7b9a8da --- /dev/null +++ b/pages.de/common/docker-rmi.md @@ -0,0 +1,20 @@ +# docker rmi + +> Lösche eines oder mehrere Docker Images. +> Weitere Informationen: . + +- Zeige Hilfe: + +`docker rmi` + +- Lösche eines oder mehrere Docker Images anhand der angegebenen Namen: + +`docker rmi {{image1 image2 ...}}` + +- Erzwinge das Löschen eines Images: + +`docker rmi --force {{image}}` + +- Lösche ein Image aber behalte Eltern-Images ohne Tag: + +`docker rmi --no-prune {{image}}` diff --git a/pages.de/common/docker-run.md b/pages.de/common/docker-run.md new file mode 100644 index 00000000000000..bc08b0a0d1f358 --- /dev/null +++ b/pages.de/common/docker-run.md @@ -0,0 +1,36 @@ +# docker run + +> Führe einen Befehl in einem neuen Docker Container aus. +> Weitere Informationen: . + +- Führe einen Befehl in einem neuen Docker Container aus und verwende dabei einen bestimmten Tag eines Docker Images: + +`docker run {{image:tag}} {{befehl}}` + +- Führe einen Befehl in einem neuen Container im Hintergrund aus und zeige die ID: + +`docker run --detach {{image}} {{befehl}}` + +- Führe einen Befehl in einem kurzlebigen Container im interaktiven Modus mit einem Pseudo-TTY aus: + +`docker run --rm --interactive --tty {{image}} {{befehl}}` + +- Führe einen Befehl in einem neuen Container mit übergebenen Umgebungsvariablen aus: + +`docker run --env '{{variable}}={{wert}}' --env {{variable}} {{image}} {{befehl}}` + +- Führe einen Befehl in einem neuen Container mit eingebundenen Datenträgern aus: + +`docker run --volume {{pfad/zu/host_verzeichnis}}:{{pfad/zu/container_verzeichnis}} {{image}} {{befehl}}` + +- Führe einen Befehl in einem neuen Container mit veröffentlichten Ports aus: + +`docker run --publish {{host_port}}:{{container_port}} {{image}} {{befehl}}` + +- Führe einen Befehl in einem neuen Container aus und überschreibe den Einstiegspunkt des Images: + +`docker run --entrypoint {{befehl}} {{image}}` + +- Führe einen Befehl in einem neuen Container aus und verbinde ihn mit einem Netzwerk: + +`docker run --network {{netzwerk}} {{image}}` diff --git a/pages.de/common/docker-save.md b/pages.de/common/docker-save.md new file mode 100644 index 00000000000000..4dd8b849578119 --- /dev/null +++ b/pages.de/common/docker-save.md @@ -0,0 +1,20 @@ +# docker save + +> Exportiere eines oder mehrere Docker Images in ein Archiv. +> Weitere Informationen: . + +- Speichere ein Image über die Standardausgabe in ein Tar-Archiv: + +`docker save {{image}}:{{tag}} > {{pfad/zur/datei.tar}}` + +- Speichere ein Image in ein Tar-Archiv: + +`docker save --output {{pfad/zur/datei.tar}} {{image}}:{{tag}}` + +- Speichere alle Tags eines Images: + +`docker save --output {{pfad/zur/datei.tar}} {{image_name}}` + +- Speichere nur bestimmte Tags eines Images: + +`docker save --output {{pfad/zur/datei.tar}} {{image_name:tag1 image_name:tag2 ...}}` diff --git a/pages.de/common/docker-secret.md b/pages.de/common/docker-secret.md new file mode 100644 index 00000000000000..2b226de58e478f --- /dev/null +++ b/pages.de/common/docker-secret.md @@ -0,0 +1,24 @@ +# docker secret + +> Verwalte Secrets für Docker Swarm. +> Weitere Informationen: . + +- Erstelle ein neues Secret über die Standardeingabe: + +`{{befehl}} | docker secret create {{secret_name}} -` + +- Erstelle ein neues Secret aus einer Datei: + +`docker secret create {{secret_name}} {{pfad/zur/datei}}` + +- Liste alle Secrets auf: + +`docker secret ls` + +- Zeige detaillierte Informationen zu einem oder mehreren Secrets in einem menschenlesbaren Format: + +`docker secret inspect --pretty {{secret_name1 secret_name2 ...}}` + +- Lösche eines oder mehrere Secrets: + +`docker secret rm {{secret_name1 secret_name2 ...}}` diff --git a/pages.de/common/docker-service.md b/pages.de/common/docker-service.md new file mode 100644 index 00000000000000..d30a386ca72492 --- /dev/null +++ b/pages.de/common/docker-service.md @@ -0,0 +1,28 @@ +# docker service + +> Verwalte Docker Services. +> Weitere Informationen: . + +- Liste alle Services auf: + +`docker service ls` + +- Erstelle einen neuen Service: + +`docker service create --name {{service_name}} {{image}}:{{tag}}` + +- Zeige detaillierte Informationen der mit Leerzeichen separierten Services an: + +`docker service inspect {{service_name|ID}}` + +- Liste die Tasks der mit Leerzeichen separierten Services auf: + +`docker service ps {{service_name|ID}}` + +- Skaliere die angegebenen Services auf eine bestimmte Anzahl an Replikaten: + +`docker service scale {{service_name}}={{anzahl_an_replikaten}}` + +- Lösche die mit Leerzeichen separierten Services: + +`docker service rm {{service_name|ID}}` diff --git a/pages.de/common/docker-slim.md b/pages.de/common/docker-slim.md new file mode 100644 index 00000000000000..d4a0c1197303b7 --- /dev/null +++ b/pages.de/common/docker-slim.md @@ -0,0 +1,24 @@ +# docker-slim + +> Analysiere und optimiere Docker Images. +> Weitere Informationen: . + +- Starte DockerSlim im interaktiven Modus: + +`docker-slim` + +- Analysiere die Docker Layer eines bestimmten Images: + +`docker-slim xray --target {{image:tag}}` + +- Linte ein Dockerfile: + +`docker-slim lint --target {{pfad/zum/Dockerfile}}` + +- Analysiere und generiere ein optimiertes Docker Image: + +`docker-slim build {{image:tag}}` + +- Zeige Hilfe für einen Unterbefehl: + +`docker-slim {{unterbefehl}} --help` diff --git a/pages.de/common/docker-start.md b/pages.de/common/docker-start.md new file mode 100644 index 00000000000000..eec458f2c308a8 --- /dev/null +++ b/pages.de/common/docker-start.md @@ -0,0 +1,20 @@ +# docker start + +> Starte einen oder mehrere gestoppte Container. +> Weitere Informationen: . + +- Zeige Hilfe: + +`docker start` + +- Starte einen Docker Container: + +`docker start {{container}}` + +- Starte einen Container und verbinde dich mit der Standardausgabe sowie der Standardfehlerausgabe und leite Signale weiter: + +`docker start --attach {{container}}` + +- Starte einen oder mehrere durch Leerzeichen getrennte Container: + +`docker start {{container}}` diff --git a/pages.de/common/docker-stats.md b/pages.de/common/docker-stats.md new file mode 100644 index 00000000000000..0855626f028640 --- /dev/null +++ b/pages.de/common/docker-stats.md @@ -0,0 +1,24 @@ +# docker stats + +> Zeige den Ressourcen-Verbrauch von Containern in Echtzeit. +> Weitere Informationen: . + +- Zeige sich stetig aktualisierende Statistiken von allen laufenden Containern: + +`docker stats` + +- Zeige sich stetig aktualisierende Statistiken der durch Leerzeichen getrennten Container: + +`docker stats {{container_name}}` + +- Ändere das Spaltenformat um die CPU Auslastung von Containern in Prozent anzuzeigen: + +`docker stats --format "{{.Name}}:\t{{.CPUPerc}}"` + +- Zeige Statistiken für alle Container (laufende und gestoppte): + +`docker stats --all` + +- Deaktiviere die laufende Aktualisierung und zeige nur die aktuellen Statistiken: + +`docker stats --no-stream` diff --git a/pages.de/common/docker-swarm.md b/pages.de/common/docker-swarm.md new file mode 100644 index 00000000000000..835921c9c1e876 --- /dev/null +++ b/pages.de/common/docker-swarm.md @@ -0,0 +1,32 @@ +# docker swarm + +> Ein Container-Orchestrierungswerkzeug. +> Weitere Informationen: . + +- Initialisiere ein Swarm Cluster: + +`docker swarm init` + +- Zeige den Token um als Manager oder Worker beizutreten: + +`docker swarm join-token {{worker|manager}}` + +- Füge dem Cluster eine neue Node hinzu: + +`docker swarm join --token {{token}} {{manager_node_url:2377}}` + +- Entferne einen Worker vom Swarm (führe dies auf der Worker Node aus): + +`docker swarm leave` + +- Zeige die aktuellen CA Zertifikate im PEM Format: + +`docker swarm ca` + +- Rotiere die aktuellen CA Zertifikate und zeige die neuen Zertifikate: + +`docker swarm ca --rotate` + +- Ändere die Gültigkeitsdauer für Node-Zertifikate: + +`docker swarm update --cert-expiry {{stunden}}h{{minuten}}m{{sekunden}}s` diff --git a/pages.de/common/docker-system.md b/pages.de/common/docker-system.md new file mode 100644 index 00000000000000..4c05b5e5e4a677 --- /dev/null +++ b/pages.de/common/docker-system.md @@ -0,0 +1,36 @@ +# docker system + +> Verwalte Docker Daten und zeige systemweite Informationen an. +> Weitere Informationen: . + +- Zeige Hilfe: + +`docker system` + +- Zeige Docker Festplattennutzung: + +`docker system df` + +- Zeige detaillierte Informationen zur Festplattennutzung: + +`docker system df --verbose` + +- Entferne nicht-verwendete Daten: + +`docker system prune` + +- Entferne nicht-verwendete Daten, die älter als die angegebene Zeit sind: + +`docker system prune --filter="until={{stunden}}h{{minuten}}m"` + +- Zeige Echtzeit-Events vom Docker Daemon: + +`docker system events` + +- Zeige Echtzeit-Events von Containern und formatiere jede Zeile als gültiges JSON: + +`docker system events --filter 'type=container' --format '{{json .}}'` + +- Zeige systemweite Informationen: + +`docker system info` diff --git a/pages.de/common/docker.md b/pages.de/common/docker.md index 2ec8e84fed6d26..4d1826f6bb05f9 100644 --- a/pages.de/common/docker.md +++ b/pages.de/common/docker.md @@ -1,7 +1,8 @@ # docker > Verwalte Docker Container und Images. -> Mehr Informationen: . +> Manche Unterbefehle wie `docker run` sind separat dokumentiert. +> Weitere Informationen: . - Liste zur Zeit laufende Container auf: diff --git a/pages.de/common/dotnet.md b/pages.de/common/dotnet.md index f367b04058acdc..c5908f333b6eed 100644 --- a/pages.de/common/dotnet.md +++ b/pages.de/common/dotnet.md @@ -1,7 +1,8 @@ # dotnet -> Plattformübergreifende Kommandozeilenandwendungen für .NET Core. -> Mehr Informationen: . +> Plattformübergreifende Kommandozeilenanwendungen für .NET Core. +> Manche Unterbefehle wie `dotnet build` sind separat dokumentiert. +> Weitere Informationen: . - Initialisiere ein neues .NET Projekt: diff --git a/pages.de/common/du.md b/pages.de/common/du.md new file mode 100644 index 00000000000000..b9175cb36ea370 --- /dev/null +++ b/pages.de/common/du.md @@ -0,0 +1,28 @@ +# du + +> Disk usage: Plattenplatzverbrauch von Dateien und Verzeichnissen ermitteln. +> Weitere Informationen: . + +- Liste die Größe von Verzeichnissen und Unterverzeichnissen in den gegebenen Einheiten (B/KiB/MiB) auf: + +`du -{{b|k|m}} {{pfad/zu/verzeichnis}}` + +- Liste die Größe von Verzeichnissen und Unterverzeichnissen in menschenlesbaren Einheiten auf (d.h. automatische Auswahl der geeigneten Einheit für jede Größe): + +`du -h {{pfad/zu/verzeichnis}}` + +- Zeige die Größe eines einzelnen Verzeichnisses in menschenlesbaren Einheiten: + +`du -sh {{pfad/zu/verzeichnis}}` + +- Liste die Größe von Verzeichnissen und Unterverzeichnissen und aller ihrer Dateien in menschenlesbaren Einheiten auf: + +`du -ah {{pfad/zu/verzeichnis}}` + +- Liste die menschenlesbaren Größen eines Verzeichnisses und aller Unterverzeichnisse, bis zu einer Tiefe von `N` Ebenen: + +`du -h --max-depth=N {{pfad/zu/verzeichnis}}` + +- Liste die menschenlesbare Größe aller `.jpg`-Dateien in Unterverzeichnissen des aktuellen Verzeichnisses auf und zeige am Ende die kumulierte Gesamtsumme an: + +`du -ch */*.jpg` diff --git a/pages.de/common/duf.md b/pages.de/common/duf.md new file mode 100644 index 00000000000000..6c90e5db9c5748 --- /dev/null +++ b/pages.de/common/duf.md @@ -0,0 +1,20 @@ +# duf + +> Festplattennutzung/freie Verwendbarkeit. +> Weitere Informationen: . + +- Liste zugängliche Geräte auf: + +`duf` + +- Liste alles auf (auch pseudo-, doppelte oder unzugängliche Dateisysteme): + +`duf --all` + +- Zeige nur konkrete Geräte oder Mountpoints: + +`duf {{pfad/zu/verzeichnis1 pfad/zu/verzeichnis2 ...}}` + +- Sortiere die Ergebnisse nach einem spezifischen Kriterium: + +`duf --sort {{size|used|avail|usage}}` diff --git a/pages.de/common/dust.md b/pages.de/common/dust.md new file mode 100644 index 00000000000000..badf40a386f20f --- /dev/null +++ b/pages.de/common/dust.md @@ -0,0 +1,32 @@ +# dust + +> Dust gib einen sofortigen Überblick, welche Verzeichnisse Festplatten Speicherplatz benutzen. +> Weitere Informationen: . + +- Informationen für das aktuelle Verzeichnis anzeigen: + +`dust` + +- Informationen für eine durch Leerzeichen getrennte Liste von Verzeichnissen anzeigen: + +`dust {{pfad/zum/verzeichnis1}} {{pfad/zum/verzeichnis2}}` + +- 30 Verzeichnisse anzeigen (Standardwert: 21): + +`dust --number-of-lines {{30}}` + +- Zeigt Informationen für das aktuelle Verzeichnis an, bis zu 3 Ebenen tief: + +`dust --depth {{3}}` + +- Die größten Verzeichnisse in absteigender Reihenfolge oben anzeigen: + +`dust --reverse` + +- Alle Dateien und Verzeichnisse mit einem bestimmten Namen ignorieren: + +`dust --ignore-directory {{datei_oder_verzeichnis_name}}` + +- Keine Prozentbalken und Prozente anzeigen: + +`dust --no-percent-bars` diff --git a/pages.de/common/ebook-convert.md b/pages.de/common/ebook-convert.md new file mode 100644 index 00000000000000..a9d8c486859b78 --- /dev/null +++ b/pages.de/common/ebook-convert.md @@ -0,0 +1,13 @@ +# ebook-convert + +> Kann verwendet werden, um E-Books zu geläufigen Dateiformaten umzuwandeln, z.B. PDF, EPUB und MOBI. +> Teil der Calibre e-book library. +> Weitere Informationen: . + +- Konvertiere ein E-Book in ein anderes Format: + +`ebook-convert {{pfad/zu/input_datei}} {{pfad/zu/output_datei}}` + +- Konvertiere eine Markdown- oder HTML Datei zu einem E-Book inklusive Inhaltsverzeichnis, Titel und Autoren: + +`ebook-convert {{pfad/zu/input_datei}} {{pfad/zu/output_datei}} --level1-toc="//h:h1" --level2-toc="//h:h2" --level3-toc="//h:h3" --title={{titel}} --authors={{autor}}` diff --git a/pages.de/common/echo.md b/pages.de/common/echo.md index 9918f58058489d..846c2debbfe748 100644 --- a/pages.de/common/echo.md +++ b/pages.de/common/echo.md @@ -1,7 +1,7 @@ # echo > Gib angegebene Argumente aus. -> Mehr Informationen: . +> Weitere Informationen: . - Gib einen Text aus. (Hinweis: Anführungszeichen sind optional): diff --git a/pages.de/common/emacs.md b/pages.de/common/emacs.md index 92e802f5534437..7aba2f0cb9d3e7 100644 --- a/pages.de/common/emacs.md +++ b/pages.de/common/emacs.md @@ -1,15 +1,28 @@ # emacs > Der erweiterbare, veränderbare und selbst-dokumentierende Echtzeit Text Editor. -> Mehr Informationen: . +> Siehe auch `emacsclient`. +> Weitere Informationen: . + +- Öffne eine Datei in Emacs: + +`emacs {{pfad/zu/datei}}` + +- Öffne eine Datei in einer bestimmten Zeile: + +`emacs +{{zeilennummer}} {{pfad/zu/datei}}` - Starte Emacs in der Konsole (ohne X-Fenster): -`emacs -nw` +`emacs --no-window-system` -- Öffne eine Datei in Emacs: +- Starte einen Emacs-Server im Hintergrund (aufrufbar mit `emacsclient`): -`emacs {{pfad/zu/datei}}` +`emacs --daemon` + +- Beende einen laufenden Emacs-Server und alle Instanzen und frage nach Bestätigung für ungespeicherte Dateien: + +`emacsclient --eval '(save-buffers-kill-emacs)'` - Tastenkombination zum Speichern einer Datei: @@ -18,7 +31,3 @@ - Tastenkombination zum Beenden von Emacs: `Ctrl + X, Ctrl + C` - -- Öffne eine Datei in einer bestimmten Zeile: - -`emacs +{{zeilennummer}} {{pfad/zu/datei}}` diff --git a/pages.de/common/emacsclient.md b/pages.de/common/emacsclient.md index 941e26f35893ee..9de15481e338b4 100644 --- a/pages.de/common/emacsclient.md +++ b/pages.de/common/emacsclient.md @@ -1,24 +1,29 @@ # emacsclient -> Öffnet Dateien in einem laufenden Emacs Server. -> Mehr Informationen: . +> Öffnet Dateien in einem laufenden Emacs-Server. +> Siehe auch `emacs`. +> Weitere Informationen: . -- Öffne eine Datei (direkt in der GUI wenn möglich): +- Öffne eine Datei in einem laufenden Emacs-Server (mit GUI wenn möglich): `emacsclient {{pfad/zu/datei}}` - Öffne eine Datei in der Konsole (ohne X-Fenster): -`emacsclient -nw {{pfad/zu/datei}}` +`emacsclient --no-window-system {{pfad/zu/datei}}` -- Öffne eine Datei in Emacs mit direktem Zurückkehren in die Konsole: +- Öffne eine Datei in einem neuen Emacs Fenster: -`emacsclient -n {{pfad/zu/datei}}` +`emacsclient --create-frame {{pfad/zu/datei}}` -- Öffne eine Datei in einem neuen Emacs Fenster: +- Führe einen Befehl aus und schreibe das Ergebnis in stdout: + +`emacsclient --eval '({{befehl}})'` + +- Gib einen alternativen Editor an für den Fall, dass kein Emacs-Server läuft: -`emacsclient -c {{pfad/zu/datei}}` +`emacsclient --alternate-editor {{editor}} {{pfad/zu/datei}}` -- Führe einen Befehl in einem neuen Emacs Fenster aus: +- Beende einen laufenden Emacs-Server und alle Instanzen und frage nach Bestätigung für ungespeicherte Dateien: -`emacsclient -c -e '({{befehl}})'` +`emacsclient --eval '(save-buffers-kill-emacs)'` diff --git a/pages.de/common/eslint.md b/pages.de/common/eslint.md new file mode 100644 index 00000000000000..7b1191ca477b3f --- /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/quellordner}` diff --git a/pages.de/common/exa.md b/pages.de/common/exa.md index 6a0935a6030784..175d6998c46722 100644 --- a/pages.de/common/exa.md +++ b/pages.de/common/exa.md @@ -1,7 +1,7 @@ # exa > Ein moderner Ersatz für `ls` (Verzeichnisinhalte auflisten). -> Mehr Informationen: . +> Weitere Informationen: . - Liste eine Datei pro Zeile auf: @@ -26,3 +26,11 @@ - Liste Dateien nach Änderungsdatum aufsteigend sortiert auf: `exa --long --sort={{modified}}` + +- Liste Dateien inklusive Header, Icons und Git-Status: + +`exa --long --header --icons --git` + +- Liste keine Dateien auf, die in `.gitignore` erwähnt werden: + +`exa --git-ignore` diff --git a/pages.de/common/exit.md b/pages.de/common/exit.md new file mode 100644 index 00000000000000..add03d6a6d8a6c --- /dev/null +++ b/pages.de/common/exit.md @@ -0,0 +1,12 @@ +# exit + +> Verlasse die Shell. +> Weitere Informationen: . + +- Beende die Shell mit dem Exitcode des zuletzt ausgeführten Befehls: + +`exit` + +- Beende die Shell mit dem angegebenen Exitcode: + +`exit {{exitcode}}` diff --git a/pages.de/common/export.md b/pages.de/common/export.md new file mode 100644 index 00000000000000..5927993805906e --- /dev/null +++ b/pages.de/common/export.md @@ -0,0 +1,20 @@ +# export + +> Befehl zum Markieren von Shell-Variablen in der aktuellen Umgebung, die mit allen neu abgezweigten Unterprozessen exportiert werden sollen. +> Weitere Informationen: . + +- Lege eine neue Umgebungsvariable fest: + +`export {{variable}}={{wert}}` + +- Entferne eine Umgebungsvariable: + +`export -n {{variable}}` + +- Markiere eine Shell-Funktion für den Export: + +`export -f {{funktionsname}}` + +- Hänge etwas an die PATH-Variable an: + +`export PATH=$PATH:{{pfad/zu/anhängen}}` diff --git a/pages.de/common/fdroid.md b/pages.de/common/fdroid.md index 985c000addbd61..3278bc36f5d911 100644 --- a/pages.de/common/fdroid.md +++ b/pages.de/common/fdroid.md @@ -2,7 +2,7 @@ > F-Droid Build Tool. > F-Droid ist ein installierbarer Katalog mit FOSS (Freie Open Source Software) Apps für Android. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere eine bestimmte App: diff --git a/pages.de/common/fdroidcl.md b/pages.de/common/fdroidcl.md index 501d90b3ce21a6..973d4b7b99982b 100644 --- a/pages.de/common/fdroidcl.md +++ b/pages.de/common/fdroidcl.md @@ -1,7 +1,7 @@ # fdroidcl -> F-Droid CLI (Command Line Interface) Client. -> Mehr Informationen: . +> F-Droid CLI (Command-line Interface) Client. +> Weitere Informationen: . - Aktualisiere den Index: diff --git a/pages.de/common/ffmpeg.md b/pages.de/common/ffmpeg.md index 13ebee00c2faf0..a7f7248e93a511 100644 --- a/pages.de/common/ffmpeg.md +++ b/pages.de/common/ffmpeg.md @@ -1,17 +1,17 @@ # ffmpeg > Programm zum konvertieren von Videos. -> Mehr Informationen: . +> Weitere Informationen: . - Extrahiere den Ton eines Videos und speichere ihn als MP3: `ffmpeg -i {{pfad/zu/video.mp4}} -vn {{pfad/zu/audio.mp3}}` -- Konvertiere Frames eines Videos oder Gifs zu individuellen, numerierten Bildern: +- Konvertiere Frames eines Videos oder Gifs zu individuellen, nummerierten Bildern: `ffmpeg -i {{video.mpg|video.gif}} {{pfad/zu/frame_%d.png}}` -- Kombiniere numerierte Bilder (`frame_1.jpg`, `frame_2.jpg`, etc) in ein Video oder Gif: +- Kombiniere nummerierte Bilder (`frame_1.jpg`, `frame_2.jpg`, etc) in ein Video oder Gif: `ffmpeg -i {{pfad/zu/frame_%d.jpg}} -f bild2 {{video.mpg|video.gif}}` diff --git a/pages.de/common/ffprobe.md b/pages.de/common/ffprobe.md index 4297e788926d9f..cb3bb2ddeb4a44 100644 --- a/pages.de/common/ffprobe.md +++ b/pages.de/common/ffprobe.md @@ -1,7 +1,7 @@ # ffprobe > Multimedia Stream Analysierer. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige alle verfügbaren Stream-Informationen einer Medien-Datei an: diff --git a/pages.de/common/ffsend.md b/pages.de/common/ffsend.md index 2c3ebb4619416a..f62e43159477ad 100644 --- a/pages.de/common/ffsend.md +++ b/pages.de/common/ffsend.md @@ -1,7 +1,7 @@ # ffsend -> Teile Dateien einfach und sicher in der Command Line. -> Mehr Informationen: . +> Teile Dateien einfach und sicher in der Command-line. +> Weitere Informationen: . - Lade eine Datei hoch: diff --git a/pages.de/common/fg.md b/pages.de/common/fg.md index b9ad220ebd3bb5..794de7d04186e4 100644 --- a/pages.de/common/fg.md +++ b/pages.de/common/fg.md @@ -1,7 +1,7 @@ # fg > Bringt Prozesse in den Vordergrund. -> Mehr Informationen: . +> Weitere Informationen: . - Bringe zuletzt suspendierten Prozess in den Vordergrund: diff --git a/pages.de/common/file.md b/pages.de/common/file.md new file mode 100644 index 00000000000000..f1ca871d2598ae --- /dev/null +++ b/pages.de/common/file.md @@ -0,0 +1,24 @@ +# file + +> Bestimmen des Dateityps. +> Weitere Informationen: . + +- Gibt eine Beschreibung des Typs der angegebenen Datei zurück. Funktioniert bei Dateien ohne Dateiendung: + +`file {{dateiname}}` + +- Bestimmt die Dateityp(en) in einer gezippten Datei: + +`file -z {{archiv.zip}}` + +- Zulassen, dass die Datei mit speziellen oder Gerätedateien arbeitet: + +`file -s {{dateiname}}` + +- Hört nicht bei der ersten Dateityp-Übereinstimmung auf; weitermachen bis zum Ende der Datei: + +`file -k {{dateiname}}` + +- Bestimmen des MIME-Codierungstyp einer Datei: + +`file -i {{dateiname}}` diff --git a/pages.de/common/firefox.md b/pages.de/common/firefox.md index 34a1efddeb4797..a9f95a26e299f6 100644 --- a/pages.de/common/firefox.md +++ b/pages.de/common/firefox.md @@ -1,7 +1,7 @@ # firefox > Ein gratis Open Source Internet Browser. -> Mehr Informationen: . +> Weitere Informationen: . - Starte Firefox und öffne eine Website: @@ -11,7 +11,7 @@ `firefox --new-window {{https://www.duckduckgo.com}}` -- Öffne ein privates (Icognito) Fenster: +- Öffne ein privates (Inkognito) Fenster: `firefox --private-window` diff --git a/pages.de/common/fish.md b/pages.de/common/fish.md index f6aac3e1e8c173..b8118f232618f8 100644 --- a/pages.de/common/fish.md +++ b/pages.de/common/fish.md @@ -2,28 +2,32 @@ > The Friendly Interactive SHell. > Eine benutzerfreundliche Eingabeaufforderung. -> Mehr Informationen: . +> Weitere Informationen: . -- Starte fish: +- Starte eine interaktive Shell-Sitzung: `fish` -- Führe einen Befehl mit fish aus: +- Starte eine interaktive Shell-Sitzung ohne die Start-Konfiguration zu laden: -`fish -c "{{befehl}}"` +`fish --no-config` -- Führe ein fish-Skript aus: +- Führe einen bestimmten Befehl aus: -`fish {{pfad/zu/datei.fish}}` +`fish --command "{{echo 'fish wird ausgeführt'}}"` -- Überprüfe ein fish-Skript auf Syntaxfehler: +- Führe ein bestimmtes Skript aus: -`fish --no-execute {{pfad/zu/datei.fish}}` +`fish {{pfad/zu/skript.fish}}` -- Gib die Version von fish aus: +- Überprüfe ein bestimmtes Skript auf Syntaxfehler: -`fish --version` +`fish --no-execute {{pfad/zu/skript.fish}}` -- Setze und exportiere eine permanente Umgebungsvariable: +- Starte eine private, interaktive Shell-Sitzung, in der `fish` weder auf die Shell-History zugreift, noch diese verändert: -`set -Ux {{name}} {{wert}}` +`fish --private` + +- Definiere und exportiere eine Umgebungsvariable, die über mehrere Shell-Neustarts hinweg existiert (builtin): + +`set --universal --export {{variablenname}} {{variablenwert}}` diff --git a/pages.de/common/flutter.md b/pages.de/common/flutter.md new file mode 100644 index 00000000000000..aa06286c94b958 --- /dev/null +++ b/pages.de/common/flutter.md @@ -0,0 +1,32 @@ +# flutter + +> Googles Cross-Platform Open-Source SDK. +> Weitere Informationen: . + +- Zeige hilfe für einen bestimmten Befehl: + +`flutter help {{befehl}}` + +- Überprüfe, ob alle externen Tools korrekt installiert sind: + +`flutter doctor` + +- Zeige oder wechsle Flutter Kanäle: + +`flutter channel {{stable|beta|dev|master}}` + +- Starte Flutter auf allen gestarteten Emulatoren und verbundenen Geräten: + +`flutter run -d all` + +- Downloade alle Pakete `pubspec.yaml`: + +`flutter pub get` + +- Starte Tests in einem Projekt vom Wurzelverzeichnes aus: + +`flutter test {{test/beispiel_test.dart}}` + +- Baue eine Release APK für die meisten modernen Smartphones: + +`flutter build apk --target-platform {{android-arm}},{{android-arm64}}` diff --git a/pages.de/common/fortune.md b/pages.de/common/fortune.md index 49ae54c02cc0fc..26dcd4b6abf07d 100644 --- a/pages.de/common/fortune.md +++ b/pages.de/common/fortune.md @@ -1,7 +1,7 @@ # fortune > Gib ein zufälliges Glückskeks-Zitat aus. -> Mehr Informationen: . +> Weitere Informationen: . - Gib ein Zitat aus: diff --git a/pages.de/common/fossil-ci.md b/pages.de/common/fossil-ci.md new file mode 100644 index 00000000000000..819c7ff7c9a8bc --- /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 00000000000000..d980843b6b821a --- /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 00000000000000..373524f242a4e4 --- /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 00000000000000..646c2996357e18 --- /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/fuck.md b/pages.de/common/fuck.md index 2027ef4e5694c3..166371c3614e80 100644 --- a/pages.de/common/fuck.md +++ b/pages.de/common/fuck.md @@ -1,7 +1,7 @@ # fuck > Korrigiert den zuletzt ausgeführten Befehl. -> Mehr Informationen: . +> Weitere Informationen: . - Lege den `fuck` alias für `thefuck` fest: @@ -10,3 +10,7 @@ - Versuche den zuletzt ausgeführten Befehl zu korrigieren: `fuck` + +- Bestätige das erste Ergebnis sofort (korrektes Argument hängt vom Level der Frustration ab): + +`fuck --{{yes|yeah|hard}}` diff --git a/pages.de/common/g++.md b/pages.de/common/g++.md index 13bf7ac421b1f4..365256a25b130d 100644 --- a/pages.de/common/g++.md +++ b/pages.de/common/g++.md @@ -2,20 +2,28 @@ > Kompiliere C++ Quelldateien. > Teil der GCC (GNU Compiler Collection). -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere eine Quelldatei in eine ausführbare Binärdatei: -`g++ {{quelldatei.cpp}} -o {{output_datei}}` +`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}}` -- Zeige (fast) alle Fehler und Warnungen an: +- Zeige geläufige Fehler und Warnungen an: -`g++ {{quelldatei.cpp}} -Wall -o {{output_datei}}` +`g++ {{pfad/zu/quelldatei.cpp}} -Wall -o {{pfad/zu/binärdatei}}` -- Wähle einen Sprachstandard für das Kompilieren: +- Wähle einen Sprachstandard (C++98/C++11/C++14/C++17) für das Kompilieren: -`g++ {{quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} -o {{output_datei}}` +`g++ {{pfad/zu/quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} -o {{pfad/zu/binärdatei}}` -- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden mit ein: +- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein: -`g++ {{quelldatei.cpp}} -o {{output_datei}} -I{{header_pfad}} -L{{bibliotheks_pfad}} -l{{bibliotheks_name}}` +`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}` + +- Kompiliere und linke mehrere Quelldateien in eine ausführbare Binärdatei: + +`g++ -c {{pfad/zu/quelldatei_1.cpp pfad/zu/quelldatei_2.cpp ...}} && g++ -o {{pfad/zu/binärdatei}} {{pfad/zu/quelldatei_1.o pfad/zu/quelldatei_2.o ...}}` + +- Gib die Version von `g++` aus: + +`g++ --version` diff --git a/pages.de/common/gcc.md b/pages.de/common/gcc.md index 54087b0f49feb3..8972035d3aa2dc 100644 --- a/pages.de/common/gcc.md +++ b/pages.de/common/gcc.md @@ -1,19 +1,19 @@ # gcc > Präprozessiert und kompiliert C und C++ Quellcodedateien und linkt diese anschließend zusammen. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere mehrere Quellcodedateien zu einer ausführbaren Datei: -`gcc {{pfad/zu/datei1.c}} {{pfad/zu/datei2.c}} -o {{pfad/zu/binärdatei}}` +`gcc {{pfad/zu/datei1.c}} {{pfad/zu/datei2.c}} --output {{pfad/zu/binärdatei}}` - Erlaube Warnungen und debug-Symbole in der Ausgabedatei: -`gcc {{pfad/zu/datei.c}} -Wall -Og -o {{pfad/zu/binärdatei}}` +`gcc {{pfad/zu/datei.c}} -Wall -Og --output {{pfad/zu/binärdatei}}` - Inkludiere Bibliotheken aus anderen Verzeichnissen: -`gcc {{pfad/zu/datei.c}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek1}} -l{{pfad/zu/bibliothek2}}` +`gcc {{pfad/zu/datei.c}} --output {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek1}} -l{{pfad/zu/bibliothek2}}` - Kompiliere Quellcodedateien zu Assemblerinstruktionen: diff --git a/pages.de/common/gdb.md b/pages.de/common/gdb.md index ddbb30b5b1cf09..9b88fdb3c1ad46 100644 --- a/pages.de/common/gdb.md +++ b/pages.de/common/gdb.md @@ -1,7 +1,7 @@ # gdb > Der GNU Debugger. -> Mehr Informationen: . +> Weitere Informationen: . - Debugge eine ausführbare Datei: diff --git a/pages.de/common/gh-cs.md b/pages.de/common/gh-cs.md new file mode 100644 index 00000000000000..4c3ca374fcebec --- /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/gh.md b/pages.de/common/gh.md new file mode 100644 index 00000000000000..d41ed1252567a4 --- /dev/null +++ b/pages.de/common/gh.md @@ -0,0 +1,37 @@ +# gh + +> Arbeite mit GitHub von der Konsole aus. +> Manche Unterbefehle wie `gh config` sind separat dokumentiert. +> Weitere Informationen: . + +- Klone ein GitHub Repository lokal: + +`gh repo clone {{besitzer}}/{{repository}}` + +- Erstelle ein neues Issue: + +`gh issue create` + +- Zeige und filter offene Issues des aktuellen Repositories: + +`gh issue list` + +- Öffne ein Issue im Standard-Webbrowser: + +`gh issue view --web {{issue_nummer}}` + +- Erstelle eine Pull Request: + +`gh pr create` + +- Öffne eine Pull Request im Standard-Webbrowser: + +`gh pr view --web {{pr_nummer}}` + +- Wechsle lokal zu einer bestimmten Pull Request: + +`gh pr checkout {{pr_nummer}}` + +- Zeige den Status der Pull Requests eines Repositories: + +`gh pr status` diff --git a/pages.de/common/git-add.md b/pages.de/common/git-add.md index 267dce971b317a..70088704877bde 100644 --- a/pages.de/common/git-add.md +++ b/pages.de/common/git-add.md @@ -1,17 +1,17 @@ # git add > Füge Dateien zum Index/Stage hinzu. -> Mehr Informationen: . +> Weitere Informationen: . -- Füge eine bestimmte Datei zum Index/Stage hinzu: +- Füge eine bestimmte Datei zum Index hinzu: `git add {{pfad/zu/datei}}` -- Füge alle Dateien zum Index/Stage hinzu (nachverfolgte und nicht nachverfolgte): +- Füge alle Dateien zum Index hinzu (nachverfolgte und nicht nachverfolgte): `git add -A` -- Füge nur nachverfolgte Dateien zum Index/Stage hinzu (Updaten des Index/Stage): +- Füge nur nachverfolgte Dateien zum Index hinzu (Updaten des Index): `git add -u` @@ -19,7 +19,7 @@ `git add -f` -- Füge Teile von Dateien zum Index/Stage interaktiv hinzu: +- Füge Teile von Dateien zum Index interaktiv hinzu: `git add -p` @@ -27,6 +27,6 @@ `git add -p {{pfad/zu/datei}}` -- Füge Dateien zum Index/Stage interaktiv hinzu: +- Füge Dateien zum Index interaktiv hinzu: `git add -i` diff --git a/pages.de/common/git-am.md b/pages.de/common/git-am.md index 8fe5d9f5d5210c..fed74aa718e8bd 100644 --- a/pages.de/common/git-am.md +++ b/pages.de/common/git-am.md @@ -2,7 +2,7 @@ > Patch-Dateien integrieren. Nützlich beim Empfang von Commits per E-Mail. > Siehe auch `git format-patch` zur Erzeugung von Patch-Dateien. -> Mehr Informationen: . +> Weitere Informationen: . - Integriere eine Patch-Datei: diff --git a/pages.de/common/git-apply.md b/pages.de/common/git-apply.md index c1f83c8f3bfe12..0647ce64b872db 100644 --- a/pages.de/common/git-apply.md +++ b/pages.de/common/git-apply.md @@ -1,16 +1,28 @@ # git apply -> Integriere eine Patch-Datei und/oder füge sie zum Index/Stage hinzu. -> Mehr Informationen: . +> Integriere eine Patch-Datei und/oder füge sie zum Index hinzu. +> Weitere Informationen: . -- Gib Meldungen über eine gepatchten Datei aus: +- Gib Informationen über gepatchte Dateien aus: `git apply --verbose {{pfad/zu/datei}}` -- Integriere die Patch-Datei und füge sie zum Index/Stage hinzu: +- Integriere die Patch-Datei und füge sie zum Index hinzu: `git apply --index {{pfad/zu/datei}}` - Integriere eine externe Patch-Datei: `curl {{https://beispiel.de/datei.patch}} | git apply` + +- Gib diffstat des Inputs aus und integriere die Patch-Datei: + +`git apply --stat --apply {{pfad/zu/datei}}` + +- Integriere eine Patch-Datei in umgekehrter Reihenfolge: + +`git apply --reverse {{pfad/zu/datei}}` + +- Speichere das Ergebnis einer Patch-Datei im Index, ohne den Arbeitsbaum zu verändern: + +`git apply --cache {{pfad/zu/datei}}` diff --git a/pages.de/common/git-archive.md b/pages.de/common/git-archive.md index a5efedf65258f0..949c6b7c9a7085 100644 --- a/pages.de/common/git-archive.md +++ b/pages.de/common/git-archive.md @@ -1,7 +1,7 @@ # git archive > Erstelle ein Archiv von Dateien. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle ein tar-Archiv aus dem Inhalt des aktuellen HEAD und gib dieses aus: diff --git a/pages.de/common/git-bisect.md b/pages.de/common/git-bisect.md index b19ab018a726d7..bcde393ebd9856 100644 --- a/pages.de/common/git-bisect.md +++ b/pages.de/common/git-bisect.md @@ -1,8 +1,8 @@ # git bisect -> Benuzt binäre Suche um den commit ausfindig zu machen, welcher einen Fehler beinhaltet. -> Git springt im Commit-Graph automatisch vor und zurück, um den fehlerhaften Commit schrittweise einzugrenzen zu können. -> Mehr Informationen: . +> Benutzt binäre Suche um den commit ausfindig zu machen, welcher einen Fehler beinhaltet. +> Git springt im Commit-Graph automatisch vor und zurück, um den fehlerhaften Commit schrittweise eingrenzen zu können. +> Weitere Informationen: . - Starte eine Bisect-Session in einem Commit-Bereich, der durch einen bekannten fehlerhaften Commit und einen sauberen Commit begrenzt wird: diff --git a/pages.de/common/git-blame.md b/pages.de/common/git-blame.md index 35b36efa7f03e6..04e0cfc7f8e823 100644 --- a/pages.de/common/git-blame.md +++ b/pages.de/common/git-blame.md @@ -1,12 +1,12 @@ # git blame > Zeige den Commit-Hash und den letzten Autor jeder Zeile einer Datei. -> Mehr Informationen: . +> Weitere Informationen: . - Gib die Commit-Hashes und dem Autor jeder Zeile einer Datei aus: `git blame {{pfad/zu/datei}}` -- Gib die Commit-Hashes und dem Autor (inklusive Email) jeder Zeile einer Datei aus: +- Gib die Commit-Hashes und dem Autor (inklusive E-Mail) jeder Zeile einer Datei aus: `git blame -e {{pfad/zu/datei}}` diff --git a/pages.de/common/git-branch.md b/pages.de/common/git-branch.md index cb2a1ba45d0e4c..5a3e45dd1c4d33 100644 --- a/pages.de/common/git-branch.md +++ b/pages.de/common/git-branch.md @@ -1,7 +1,7 @@ # git branch > Verwalte und Arbeite mit Git Branches. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle lokalen Branches auf. Der momentan aktive (ausgecheckte) Branch wird mit `*` markiert: diff --git a/pages.de/common/git-clone.md b/pages.de/common/git-clone.md index 20893b64929401..4d07ea29412579 100644 --- a/pages.de/common/git-clone.md +++ b/pages.de/common/git-clone.md @@ -1,12 +1,16 @@ # git clone > Klone ein existierendes Repository. -> Mehr Informationen: . +> Weitere Informationen: . - Klone ein existierendes Repository: `git clone {{url_zu_repository}}` +- Klone ein existierendes Repository in ein bestimmtes Verzeichnis: + +`git clone {{url_zu_repository}} {{pfad/zu/verzeichnis}}` + - Klone ein existierendes Repository und seine Submodule: `git clone --recursive {{url_zu_repository}}` @@ -19,6 +23,14 @@ `git clone -q {{url_zu_repository}}` -- Klone ein existierendes Repository und rufe nur die neusten 10 Commits im standardmäßigen Branch ab (spart Zeit): +- Klone ein existierendes Repository und rufe nur die neuesten 10 Commits im Standard-Branch ab (spart Zeit): `git clone --depth {{10}} {{url_zu_repository}}` + +- Klone ein existierendes Repository, aber lade nur einen bestimmten Branch herunter: + +`git clone --branch {{name}} --single-branch {{url_zu_repository}}` + +- Klone ein existierendes Repository mit einem bestimmten SSH Befehl: + +`git clone --config core.sshCommand="{{ssh -i pfad/zu/privat_ssh_schlüssel}}" {{url_zu_repository}}` diff --git a/pages.de/common/git-commit.md b/pages.de/common/git-commit.md index 939c31c76c6e6a..359ff04caa35f9 100644 --- a/pages.de/common/git-commit.md +++ b/pages.de/common/git-commit.md @@ -1,16 +1,24 @@ # git commit > Committe Dateien in ein Repository. -> Mehr Informationen: . +> Weitere Informationen: . - Committe gestagten Dateien zum Repository mit einer Nachricht: `git commit -m "{{nachricht}}"` -- Stage alle modifizierten Dateien und comitte sie mit einer Nachricht: +- Committe alle gestagten Dateien zum Repository mit einer Nachricht aus einer Datei: + +`git commit --file {{pfad/zu/commit_nachricht_datei}}` + +- Stage alle modifizierten Dateien und committe sie mit einer Nachricht: `git commit -a -m "{{nachricht}}"` +- Committe alle gestagten Dateien und [S]igniere sie mit dem in `~/.gitconfig` definierten GPG Schlüssel: + +`git commit -S -m "{{nachricht}}"` + - Ersetze den letzten Commit mit den gerade auf dem Stage liegenden Änderungen: `git commit --amend` @@ -18,3 +26,7 @@ - Comitte nur spezifische Dateien (die Dateien müssen schon auf dem Stage liegen): `git commit {{pfad/zu/datei1}} {{pfad/zu/datei2}}` + +- Erzeuge einen Commit, auch wenn keine Dateien auf dem Stage liegen: + +`git commit -m "{{nachricht}}" --allow-empty` diff --git a/pages.de/common/git-fetch.md b/pages.de/common/git-fetch.md index 08fcead95b4deb..c5c0208ec8787e 100644 --- a/pages.de/common/git-fetch.md +++ b/pages.de/common/git-fetch.md @@ -1,9 +1,9 @@ # git fetch > Lade Objekte und Referenzen (refs) von einem entfernten Repository. -> Mehr Informationen: . +> Weitere Informationen: . -- Hole die neusten Änderungen von dem standardmäßigen Repository im Upstream (wenn gesetzt): +- Hole die neuesten Änderungen von dem standardmäßigen Repository im Upstream (wenn gesetzt): `git fetch` @@ -11,7 +11,7 @@ `git fetch {{name_des_upstream_repository}}` -- Hole die neusten Änderungen von allen Repositories im Upstream: +- Hole die neuesten Änderungen von allen Repositories im Upstream: `git fetch --all` diff --git a/pages.de/common/git-help.md b/pages.de/common/git-help.md index 3d7a40471244bd..8e1becea47251d 100644 --- a/pages.de/common/git-help.md +++ b/pages.de/common/git-help.md @@ -1,7 +1,7 @@ # git help > Zeige Hilfe für Git an. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige Hilfe für einen bestimmten Git-Unterbefehl an: diff --git a/pages.de/common/git-ignore-io.md b/pages.de/common/git-ignore-io.md new file mode 100644 index 00000000000000..2101cbbaff685d --- /dev/null +++ b/pages.de/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Erstelle `.gitignore` Dateien aus vorgefertigten Vorlagen. +> Weitere Informationen: . + +- Liste alle verfügbaren Vorlagen auf: + +`git ignore-io list` + +- Erstelle eine `.gitignore` Vorlage: + +`git ignore-io {{eintrag_a,eintrag_b,eintrag_n}}` diff --git a/pages.de/common/git-ignore.md b/pages.de/common/git-ignore.md deleted file mode 100644 index 7c6883d851bb0d..00000000000000 --- a/pages.de/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Erstelle `.gitignore` Dateien aus vorgefertigten Vorlagen. -> Mehr Informationen: . - -- Liste alle verfügbaren Vorlagen auf: - -`git ignore list` - -- Erstelle eine `.gitignore` Vorlage: - -`git ignore {{eintrag_a,eintrag_b,eintrag_n}}` diff --git a/pages.de/common/git-init.md b/pages.de/common/git-init.md index f31a874f967489..3953982ad34704 100644 --- a/pages.de/common/git-init.md +++ b/pages.de/common/git-init.md @@ -1,12 +1,20 @@ # git init > Erstelle eine neues lokales Git-Repository. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle eine neues lokales Repository: `git init` +- Erstelle eine neues Repository mit einem bestimmten Namen für den ersten Branch: + +`git init --initial-branch={{branch_name}}` + +- Erstelle ein neues Repository, welches SHA256 für Objekt-Hashes verwendet (benötigt Git 2.29+): + +`git init --object-format={{sha256}}` + - Erstelle eine neues minimales Repository, welches sich für die Verwendung als Remote-Repository über SSH eignet: `git init --bare` diff --git a/pages.de/common/git-log.md b/pages.de/common/git-log.md index d572f0a138d39d..b0dc8a18ce873d 100644 --- a/pages.de/common/git-log.md +++ b/pages.de/common/git-log.md @@ -1,9 +1,9 @@ # git log > Zeigt die Commit-Historie an. -> Mehr Informationen: . +> Weitere Informationen: . -- Zeige die Sequenz der Commits des Git-Repository im aktuellen Verzeichnis, beginnend mit dem aktuellen, an. +- Zeige die Sequenz der Commits des Git-Repository im aktuellen Verzeichnis, beginnend mit dem aktuellen, an: `git log` @@ -31,6 +31,6 @@ `git log -n {{anzahl}} --author={{autor}}` -- Zeige alle Commits zwischen zwei Zeitpunkten an: +- Zeige alle Commits zwischen zwei Zeitpunkten an (yyyy-mm-dd): -`git log --before={{datum}} --after={{datum}}` +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.de/common/git-pull.md b/pages.de/common/git-pull.md index 71fb21abcc2a69..1ed15b39249acc 100644 --- a/pages.de/common/git-pull.md +++ b/pages.de/common/git-pull.md @@ -1,7 +1,7 @@ # git pull > Hole Branches von einem entfernten Repository und binde sie in das lokale Repository ein. -> Mehr Informationen: . +> Weitere Informationen: . - Lade Änderungen vom Standard-Repository herunter und führe diese zusammen: diff --git a/pages.de/common/git-push.md b/pages.de/common/git-push.md index 4018748d1648e5..bd1d771c4223f2 100644 --- a/pages.de/common/git-push.md +++ b/pages.de/common/git-push.md @@ -1,7 +1,7 @@ # git push > Lade Commits in ein Remote-Repository hoch. -> Mehr Informationen: . +> Weitere Informationen: . - Sende lokale Änderungen des aktuellen Branches zu seinem entfernten Repository (Remote Branch): @@ -11,15 +11,19 @@ `git push {{remote_name}} {{lokaler_branch}}` -- Lade den aktuellen Branches in ein entferntes Repository mit Angabe des Namens des entfernten Branches hoch: +- Lade den aktuellen Branch in ein entferntes Repository mit Angabe des Namens des entfernten Branches hoch: -`git push {{remote_name}} -u {{remote_branch}}` +`git push -u {{remote_name}} {{remote_branch}}` + +- Lade Änderungen eines bestimmten lokalen Branches zu einem bestimmten entfernten Branch hoch: + +`git push {{remote_name}} {{lokaler_branch}}:{{entfernter_branch}}` - Lade Änderungen aller lokalen Branches zu ihrem entfernten Repository hoch: `git push --all {{remote_name}}` -- Lösche einen Branches in einem entfernten Repository: +- Lösche einen Branch in einem entfernten Repository: `git push {{remote_name}} --delete {{remote_branch}}` diff --git a/pages.de/common/git-rebase.md b/pages.de/common/git-rebase.md new file mode 100644 index 00000000000000..9327f9ce6fb34b --- /dev/null +++ b/pages.de/common/git-rebase.md @@ -0,0 +1,37 @@ +# git rebase + +> Wende Commits von einem Branch auf einen anderen Branch an. +> Die Änderungen eines Branches werden auf einen bestehenden Branch "übertragen" und am Ende der Historie als neue Commits eingefügt. +> Weitere Informationen: . + +- Verwende einen anderen, angegebenen Branch als Basis für den aktuellen Branch: + +`git rebase {{neuer_basisbranch}}` + +- Starte einen interaktiven Rebase, bei dem Commits umsortiert, weggelassen, kombiniert oder verändert werden können: + +`git rebase -i {{ziel_basisbranch_oder_commithash}}` + +- Setze einen Rebase fort, der durch einen Mergefehler unterbrochen wurde, nachdem die Konflikte aufgelöst wurden: + +`git rebase --continue` + +- Setze einen Rebase fort, der durch einen Mergefehler unterbrochen wurde, durch Auslassen des in Konflikt stehenden Commits: + +`git rebase --skip` + +- Brich einen laufenden Rebase ab (z.B. wenn er durch Mergekonflikte unterbrochen wurde): + +`git rebase --abort` + +- Verschiebe einen Teil des aktuellen Branches auf eine neue Basis und gib die alte Basis an, ab der die Änderungen verwendet werden sollen: + +`git rebase --onto {{neue_basis}} {{alte_basis}}` + +- Bearbeite die 5 letzten Commits der aktuellen Basis um diese neu zu ordnen, auszulassen, kombinieren oder zu bearbeiten: + +`git rebase -i {{HEAD~5}}` + +- Löse Konflikte automatisch auf, indem der aktuelle Branch bevorzugt wird (das Schlüsselwort `theirs` hat in diesem Fall eine umgekehrte Bedeutung): + +`git rebase -X theirs {{branch_name}}` diff --git a/pages.de/common/git-remote.md b/pages.de/common/git-remote.md index 1e03e4166ef7e0..23cb1aea06441f 100644 --- a/pages.de/common/git-remote.md +++ b/pages.de/common/git-remote.md @@ -1,7 +1,7 @@ # git remote > Verwalte eine gewisse Anzahl an Repositories (remotes). -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle existierenden Remotes, ihre Namen und ihre URLs auf: diff --git a/pages.de/common/git-rm.md b/pages.de/common/git-rm.md index d7c8efa1097923..a3dd1d147d6e26 100644 --- a/pages.de/common/git-rm.md +++ b/pages.de/common/git-rm.md @@ -1,7 +1,7 @@ # git rm > Entferne Dateien aus dem Index des Repositories und vom lokalen Dateisystem. -> Mehr Informationen: . +> Weitere Informationen: . - Entferne eine Datei aus dem Index und vom lokalen Dateisystem: diff --git a/pages.de/common/git-setup.md b/pages.de/common/git-setup.md new file mode 100644 index 00000000000000..0c71841a8a4bf2 --- /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 00000000000000..32cc78a85d75e6 --- /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 00000000000000..e18ececf993383 --- /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/git-status.md b/pages.de/common/git-status.md index cbd5edb1d00e69..68f7f02f73e833 100644 --- a/pages.de/common/git-status.md +++ b/pages.de/common/git-status.md @@ -1,7 +1,7 @@ # git status > Zeige die Änderungen an Dateien in einem Git-Repository an. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige veränderte Dateien an, die noch nicht für den Commit hinzugefügt wurden: diff --git a/pages.de/common/git-switch.md b/pages.de/common/git-switch.md index 4ab88884f0b181..e93e4b25580f4d 100644 --- a/pages.de/common/git-switch.md +++ b/pages.de/common/git-switch.md @@ -2,7 +2,7 @@ > Wechsle zwischen Branches. Verfügbar ab Git Version 2.23+. > Siehe auch `git checkout`. -> Mehr Informationen: . +> Weitere Informationen: . - Wechsle zu einem existierenden Branch: diff --git a/pages.de/common/git-tag.md b/pages.de/common/git-tag.md index bb95877f0f88b9..69c414ed66b524 100644 --- a/pages.de/common/git-tag.md +++ b/pages.de/common/git-tag.md @@ -1,7 +1,7 @@ # git tag > Erstelle, lösche, überprüfe und liste Tags auf. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Tags auf: diff --git a/pages.de/common/git.md b/pages.de/common/git.md index 3280c26ce92a2f..959dd3eaaa2525 100644 --- a/pages.de/common/git.md +++ b/pages.de/common/git.md @@ -1,17 +1,18 @@ # git > Verteiltes Versionskontrollsystem. -> Mehr Informationen: . +> Manche Unterbefehle wie `git commit` sind separat dokumentiert. +> Weitere Informationen: . - Gib die installierte Git Version aus: `git --version` -- Zeige die generelle Hilfsseite an: +- Zeige die generelle Hilfeseite an: `git --help` -- Zeige die Hilfsseite eines Unterbefehls an: +- Zeige die Hilfeseite eines Unterbefehls an: `git help {{unterbefehl}}` diff --git a/pages.de/common/gnmic-sub.md b/pages.de/common/gnmic-sub.md new file mode 100644 index 00000000000000..5320b28929edb6 --- /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/gobuster.md b/pages.de/common/gobuster.md new file mode 100644 index 00000000000000..ce433fd2ce4d4f --- /dev/null +++ b/pages.de/common/gobuster.md @@ -0,0 +1,28 @@ +# gobuster + +> Findet versteckte Pfade auf Webservern und mehr. +> Weitere Informationen: . + +- Finde Verzeichnisse und Dateien, die den Wörtern der Wortliste entsprechen: + +`gobuster dir --url {{https://beispiel.com/}} --wordlist {{pfad/zu/datei}}` + +- Finde Subdomains: + +`gobuster dns --domain {{beispiel.com}} --wordlist {{pfad/zu/datei}}` + +- Finde Amazon S3-Buckets: + +`gobuster s3 --wordlist {{pfad/zu/datei}}` + +- Finde andere virtuelle Hosts eines Servers: + +`gobuster vhost --url {{https://beispiel.com/}} --wordlist {{pfad/zu/datei}}` + +- Fuzze den Wert eines URL-Parameters: + +`gobuster fuzz --url {{https://beispiel.com/?parameter=FUZZ}} --wordlist {{pfad/zu/datei}}` + +- Fuzze den Namen eines URL-Parameters: + +`gobuster fuzz --url {{https://beispiel.com/?FUZZ=wert}} --wordlist {{pfad/zu/datei}}` diff --git a/pages.de/common/google-chrome.md b/pages.de/common/google-chrome.md new file mode 100644 index 00000000000000..5e2413ad36cd2a --- /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 a6f628b2af5985..d7e9efad1ba2d4 100644 --- a/pages.de/common/gpg.md +++ b/pages.de/common/gpg.md @@ -1,9 +1,14 @@ # gpg > GNU Privacy Guard. -> Mehr Informationen: . +> Siehe `gpg2` für GNU Privacy Guard 2. +> Weitere Informationen: . -- Signiere `doc.txt` ohne Verschlüsselung (Ausabe nach `doc.txt.asc`): +- Erstelle einen öffentlichen und privaten GPG Schlüssel interaktiv: + +`gpg --full-generate-key` + +- Signiere `doc.txt` ohne Verschlüsselung (Ausgabe nach `doc.txt.asc`): `gpg --clearsign {{doc.txt}}` @@ -19,7 +24,7 @@ `gpg --decrypt {{doc.txt.gpg}}` -- Importiere einen Öffentlichen Schlüssel: +- Importiere einen öffentlichen Schlüssel: `gpg --import {{schlüssel.gpg}}` diff --git a/pages.de/common/gpg2.md b/pages.de/common/gpg2.md index 2332a58f3b0314..44db398e2d5b69 100644 --- a/pages.de/common/gpg2.md +++ b/pages.de/common/gpg2.md @@ -2,7 +2,7 @@ > GNU Privacy Guard 2. > Siehe `gpg` für GNU Privacy Guard 1. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle importierten Schlüssel auf: @@ -16,7 +16,7 @@ `gpg2 --symmetric {{pfad/zu/datei.txt}}` -- Verschlüssle eine bestimmte Datei und schreibe des Ergebnis auf STDOUT: +- Verschlüssle eine bestimmte Datei und schreibe das Ergebnis auf STDOUT: `gpg2 --decrypt {{pfad/zu/datei.txt.gpg}}` diff --git a/pages.de/common/grep.md b/pages.de/common/grep.md index a7563ac9d0dd8d..75eb06cc06f215 100644 --- a/pages.de/common/grep.md +++ b/pages.de/common/grep.md @@ -2,7 +2,7 @@ > Findet Ausdrücke in einem Eingabetext. > Unterstützt einfache Muster und reguläre Ausdrücke. -> Mehr Informationen: . +> Weitere Informationen: . - Suche nach einem Ausdruck in einer Datei: diff --git a/pages.de/common/head.md b/pages.de/common/head.md new file mode 100644 index 00000000000000..0afd9de7d1ba56 --- /dev/null +++ b/pages.de/common/head.md @@ -0,0 +1,20 @@ +# head + +> Gibt den ersten Teil einer Datei aus. +> Weitere Informationen: . + +- Gib die ersten paar Zeilen einer Datei aus: + +`head -n {{anzahl_an_zeilen}} {{datei}}` + +- Gib die ersten Bytes einer Datei aus: + +`head -c {{anzahl_an_bytes}} {{datei}}` + +- Gib alle bis auf die letzten Zeilen einer Datei aus: + +`head -n -{{anzahl_an_zeilen}} {{datei}}` + +- Gib alle bis auf die letzten Bytes einer Datei aus: + +`head -c -{{anzahl_an_bytes}} {{datei}}` diff --git a/pages.de/common/hx.md b/pages.de/common/hx.md new file mode 100644 index 00000000000000..8cf139af915f62 --- /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/ical.md b/pages.de/common/ical.md new file mode 100644 index 00000000000000..1f68021e849343 --- /dev/null +++ b/pages.de/common/ical.md @@ -0,0 +1,16 @@ +# ical + +> Ein islamischer (Hijri) Kalender und Konverter für das Terminal. +> Weitere Informationen: . + +- Zeige den Kalender von diesem Monat an: + +`ical` + +- Konvertiere ein gregorianisches Datum zu einem islamischen Datum: + +`ical --gregorian {{yyyymmdd}}` + +- Konvertiere ein islamisches Datum zu einem gregorianischen Datum: + +`ical --hijri {{yyyymmdd}}` diff --git a/pages.de/common/id.md b/pages.de/common/id.md new file mode 100644 index 00000000000000..f502881405cfa0 --- /dev/null +++ b/pages.de/common/id.md @@ -0,0 +1,20 @@ +# id + +> Zeige den aktuellen Benutzer und dessen Gruppenzugehörigkeit an. +> Weitere Informationen: . + +- Zeige die Benutzer-ID (UID), die Gruppen-ID (GID) und die Gruppen des aktuellen Benutzers an: + +`id` + +- Zeige die Benutzer-ID (UID) an: + +`id -u` + +- Zeige die Guppen-ID (GID) an: + +`id -g` + +- Zeige die Benutzer-ID (UID), die Gruppen-ID (GID) und die Gruppen eines beliebigen Benutzers an: + +`id {{benutzername}}` diff --git a/pages.de/common/jq.md b/pages.de/common/jq.md new file mode 100644 index 00000000000000..02e3f79906e8d5 --- /dev/null +++ b/pages.de/common/jq.md @@ -0,0 +1,32 @@ +# jq + +> Ein JSON-Verarbeiter für die Kommandozeile mit einer domänenspezifischen Sprache. +> Weitere Informationen: . + +- Führe den angegebenen Ausdruck aus (gib farbiges und formatiertes JSON aus): + +`{{cat pfad/zu/datei.json}} | jq '.'` + +- Führe ein gegebenes Skript aus: + +`{{cat pfad/zu/datei.json}} | jq --from-file {{pfad/zu/skript.jq}}` + +- Übergib bestimmte Argumente: + +`{{cat pfad/zu/datei.json}} | jq {{--arg "name1" "wert1" --arg "name2" "wert2" ...}} '{{. + $ARGS.named}}'` + +- Gib bestimmte Schlüssel aus: + +`{{cat pfad/zu/datei.json}} | jq '{{.schlüssel1, .schlüssel2, ...}}'` + +- Gib bestimmte Listenelemente aus: + +`{{cat pfad/zu/datei.json}} | jq '{{.[index1], .[index2], ...}}'` + +- Gib alle Listenelemente/Objektschlüssel aus: + +`{{cat pfad/zu/datei.json}} | jq '.[]'` + +- Füge bestimmte Schlüssel hinzu/lösche bestimmte Schlüssel: + +`{{cat pfad/zu/datei.json}} | jq '. {{+|-}} {{{"schlüssel1": "wert1", "schlüssel2": "wert2", ...}}}'` diff --git a/pages.de/common/kafkacat.md b/pages.de/common/kafkacat.md new file mode 100644 index 00000000000000..452cf98ceb28da --- /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 00000000000000..4b29e51759d213 --- /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/kubectl-delete.md b/pages.de/common/kubectl-delete.md new file mode 100644 index 00000000000000..5f9105e077f545 --- /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 00000000000000..bea8d85f511163 --- /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 00000000000000..1be739ae7d2d11 --- /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 00000000000000..08a1a5bae239ce --- /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 00000000000000..af86d24f5c287d --- /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 00000000000000..e9cac927f8b587 --- /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 arg1 arg2 arg3` diff --git a/pages.de/common/kubectl.md b/pages.de/common/kubectl.md new file mode 100644 index 00000000000000..6cba8f3e042fd8 --- /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/latex.md b/pages.de/common/latex.md index a438930fb26bca..3e0cab20e128b2 100644 --- a/pages.de/common/latex.md +++ b/pages.de/common/latex.md @@ -1,7 +1,7 @@ # latex > Kompiliere eine LaTeX Quelldatei in ein DVI Dokument. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere ein DVI Dokument: diff --git a/pages.de/common/less.md b/pages.de/common/less.md index 807d10b3dea726..9488641e9d7080 100644 --- a/pages.de/common/less.md +++ b/pages.de/common/less.md @@ -1,6 +1,7 @@ # less > Öffne eine Datei für interaktives lesen, erlaubt scrollen und suchen. +> Weitere Informationen: . - Öffne eine Datei: @@ -14,7 +15,7 @@ `G (Ende), g (Anfang)` -- Suche nach einer Zeichenkette forwärts (n/N um zur nächsten/vorherigen Übereinstimmung zu springen): +- Suche nach einer Zeichenkette vorwärts (n/N um zur nächsten/vorherigen Übereinstimmung zu springen): `/{{suche}}` @@ -22,7 +23,7 @@ `?{{suche}}` -- Folge der Ausgabe des geöffeten Buffers: +- Folge der Ausgabe des geöffneten Buffers: `F` diff --git a/pages.de/common/llvm-ar.md b/pages.de/common/llvm-ar.md new file mode 100644 index 00000000000000..47c2fccadced96 --- /dev/null +++ b/pages.de/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Dieser Befehl ist ein Alias von `ar`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr ar` diff --git a/pages.de/common/llvm-g++.md b/pages.de/common/llvm-g++.md new file mode 100644 index 00000000000000..31f15bb735ab66 --- /dev/null +++ b/pages.de/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Dieser Befehl ist ein Alias von `clang++`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr clang++` diff --git a/pages.de/common/llvm-gcc.md b/pages.de/common/llvm-gcc.md new file mode 100644 index 00000000000000..5a6ddc733f5b72 --- /dev/null +++ b/pages.de/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Dieser Befehl ist ein Alias von `clang`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr clang` diff --git a/pages.de/common/llvm-nm.md b/pages.de/common/llvm-nm.md new file mode 100644 index 00000000000000..6d4a3f10da0837 --- /dev/null +++ b/pages.de/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Dieser Befehl ist ein Alias von `nm`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr nm` diff --git a/pages.de/common/llvm-objdump.md b/pages.de/common/llvm-objdump.md new file mode 100644 index 00000000000000..3c8e638de481d8 --- /dev/null +++ b/pages.de/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Dieser Befehl ist ein Alias von `objdump`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr objdump` diff --git a/pages.de/common/llvm-strings.md b/pages.de/common/llvm-strings.md new file mode 100644 index 00000000000000..c0115aa81d11c9 --- /dev/null +++ b/pages.de/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Dieser Befehl ist ein Alias von `strings`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr strings` diff --git a/pages.de/common/lolcat.md b/pages.de/common/lolcat.md index 7f2c00d6c8c588..468dd4888d6b19 100644 --- a/pages.de/common/lolcat.md +++ b/pages.de/common/lolcat.md @@ -1,7 +1,7 @@ # lolcat > Färbe Text in Regenbogenfarben ein. -> Mehr Informationen: . +> Weitere Informationen: . - Gib den Inhalt einer Datei in Regenbogenfarben in der Konsole aus: diff --git a/pages.de/common/lp.md b/pages.de/common/lp.md new file mode 100755 index 00000000000000..8f46c40d674688 --- /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 00000000000000..2a1230a024b6e9 --- /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 00000000000000..fc3a75550881f4 --- /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 00000000000000..8d1d5f28589f76 --- /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/ls.md b/pages.de/common/ls.md index 20daccd72f1dc7..9690413a4022d3 100644 --- a/pages.de/common/ls.md +++ b/pages.de/common/ls.md @@ -1,7 +1,7 @@ # ls > Liste den Inhalt eines Verzeichnisses auf. -> Mehr Informationen: . +> Weitere Informationen: . - Liste den Inhalt in einer Datei pro Zeile auf: @@ -11,6 +11,10 @@ `ls -a` +- Liste alle Dateien mit einem abschließenden `/` bei Verzeichnis-Namen auf: + +`ls -F` + - Liste alle Dateien mit Berechtigungen, Besitzer, Größe und Änderungsdatum auf: `ls -la` @@ -26,3 +30,7 @@ - Liste alle Dateien sortiert nach dem Änderungsdatum mit ältester beginnend auf: `ls -ltr` + +- Liste nur Verzeichnisse auf: + +`ls -d {{*/}}` diff --git a/pages.de/common/lzcat.md b/pages.de/common/lzcat.md new file mode 100644 index 00000000000000..0acea6898f2e4c --- /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 00000000000000..24ecd2dc76134a --- /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/minisign.md b/pages.de/common/minisign.md index d2e6ac16fd8a3d..03291a76382131 100644 --- a/pages.de/common/minisign.md +++ b/pages.de/common/minisign.md @@ -1,7 +1,7 @@ # minisign -> Ein denkbar einfaches Werkzeug um Dateien zu signieren und Signaturen zu verifizieren. -> Mehr Informationen: . +> Ein denkbar einfaches Werkzeug, um Dateien zu signieren und Signaturen zu verifizieren. +> Weitere Informationen: . - Generiere ein neues Schlüsselpaar im Standardpfad: diff --git a/pages.de/common/mount.md b/pages.de/common/mount.md new file mode 100644 index 00000000000000..0fae144ce8f9ca --- /dev/null +++ b/pages.de/common/mount.md @@ -0,0 +1,28 @@ +# mount + +> Ermöglicht den Zugriff auf ein gesamtes Dateisystem in einem Verzeichnis. +> Weitere Informationen: . + +- Zeige alle eingehängten Dateisysteme: + +`mount` + +- Hänge ein Gerät in ein Verzeichnis ein: + +`mount -t {{dateisystemtyp}} {{pfad/zu/gerätedatei}} {{pfad/zu/zielverzeichnis}}` + +- Hänge ein CD-ROM-Gerät (Dateisystemtyp ISO9660) in das Verzeichnis `/cdrom` schreibgeschützt ein: + +`mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}` + +- Hänge alle Dateisysteme ein, die in `/etc/fstab` definiert sind: + +`mount -a` + +- Hänge ein Dateisystem ein, das in `/etc/fstab` beschrieben ist (z. B. `/dev/sda1 /meine_platte ext2 defaults 0 2`): + +`mount {{/meine_platte}}` + +- Hänge ein Verzeichnis in ein anderes Verzeichnis ein (danach sind die Inhalte über beide Pfade verfügbar): + +`mount --bind {{pfad/zu/altem_verzeichnis}} {{pfad/zu/neuem_verzeichnis}}` diff --git a/pages.de/common/mscore.md b/pages.de/common/mscore.md new file mode 100644 index 00000000000000..11745c99ae45b1 --- /dev/null +++ b/pages.de/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Dieser Befehl ist ein Alias von `musescore`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr musescore` diff --git a/pages.de/common/musescore.md b/pages.de/common/musescore.md new file mode 100644 index 00000000000000..e639c863d575e8 --- /dev/null +++ b/pages.de/common/musescore.md @@ -0,0 +1,32 @@ +# musescore + +> MuseScore 3 Notenblatt-Editor. +> Weitere Informationen: . + +- Verwende einen bestimmten Audio-Treiber: + +`musescore --audio-driver {{jack|alsa|portaudio|pulse}}` + +- Setze die MP3 Output-Bitrate in kbit/s: + +`musescore --bitrate {{bitrate}}` + +- Starte MuseScore im Debug-Modus: + +`musescore --debug` + +- Aktiviere experimentelle Funktionen, wie Layer: + +`musescore --experimental` + +- Exportiere eine Datei in ein anderes Format. Dieses hängt von der Dateierweiterung ab: + +`musescore --export-to {{output_datei}} {{input_datei}}` + +- Zeige Unterschiede zwischen zwei Partituren: + +`musescore --diff {{pfad/zu/datei1}} {{pfad/zu/datei2}}` + +- Gib eine MIDI-Importoperationsdatei an: + +`musescore --midi-operations {{pfad/zu/datei}}` diff --git a/pages.de/common/mv.md b/pages.de/common/mv.md index a5498cdb1a0e69..2812ce89a65a5a 100644 --- a/pages.de/common/mv.md +++ b/pages.de/common/mv.md @@ -1,12 +1,16 @@ # mv > Verschiebe Dateien oder Verzeichnisse oder benenne diese um. -> Mehr Informationen: +> Weitere Informationen: . -- Verschiebe eine Dateien an einen beliebigen Ort: +- Verschiebe eine Datei an einen beliebigen Ort: `mv {{pfad/zu/datei}} {{pfad/zu/zieldatei}}` +- Verschiebe mehrere Dateien in ein anderes Verzeichnis und behalte deren Namen bei: + +`mv {{datei1}} {{datei2}} {{datei3}} {{pfad/zu/ziel_verzeichnis}}` + - Überschreibe bereits existierende Dateien ohne vorherige Bestätigung: `mv -f {{pfad/zu/datei}} {{pfad/zu/zieldatei}}` diff --git a/pages.de/common/nativefier.md b/pages.de/common/nativefier.md index 1ed8737c2bad5c..9e05d0c4f7a50b 100644 --- a/pages.de/common/nativefier.md +++ b/pages.de/common/nativefier.md @@ -1,7 +1,7 @@ # nativefier > Befehlszeilen-Tool zum Erstellen einer Desktop-Anwendung für jede Website mit minimaler Konfiguration. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle einer Desktop-Anwendung für eine Website: diff --git a/pages.de/common/nginx.md b/pages.de/common/nginx.md new file mode 100644 index 00000000000000..4062fe2eaefab5 --- /dev/null +++ b/pages.de/common/nginx.md @@ -0,0 +1,24 @@ +# nginx + +> Nginx Webserver. +> Weitere Informationen: . + +- Starte den Server mit der standardmäßigen Konfigurationsdatei: + +`nginx` + +- Starte den Server mit einer benutzerdefinierten Konfigurationsdatei: + +`nginx -c {{konfigurationsdatei}}` + +- Starte den Server mit einem Präfix für alle relativen Pfaden in der Konfigurationsdatei: + +`nginx -c {{konfigurationsdatei}} -p {{präfix/für/relative/pfade}}` + +- Teste die Konfigurationsdatei ohne den laufenden Server zu beeinflussen: + +`nginx -t` + +- Lade die Konfigurationsdatei durch das Senden eines Signales ohne Pause neu: + +`nginx -s reload` diff --git a/pages.de/common/ngrok.md b/pages.de/common/ngrok.md new file mode 100644 index 00000000000000..1f6fae872b203c --- /dev/null +++ b/pages.de/common/ngrok.md @@ -0,0 +1,24 @@ +# ngrok + +> Reverse-Proxy, welcher einen sicheren Tunnel von einem öffentlichen Endpunkt zu einem lokal verfügbaren Webservice erstellt. +> Weitere Informationen: . + +- Veröffentliche einen lokalen HTTP-Service auf dem angegebenen Port: + +`ngrok http {{80}}` + +- Veröffentliche einen lokalen HTTP-Service auf einem bestimmten Host: + +`ngrok http {{beispiel.dev}}:{{80}}` + +- Veröffentliche einen lokalen HTTPS-Server: + +`ngrok http https://localhost` + +- Veröffentliche den TCP-Traffic auf dem angegebenen Port: + +`ngrok tcp {{22}}` + +- Veröffentliche den TLS-Traffic für einen bestimmten Host und Port: + +`ngrok tls -hostname={{beispiel.de}} {{443}}` diff --git a/pages.de/common/nix-build.md b/pages.de/common/nix-build.md new file mode 100644 index 00000000000000..024316a166a198 --- /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 00000000000000..029023fe5ee099 --- /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 00000000000000..d8ba0a85eec724 --- /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 00000000000000..e537da46154e4a --- /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}} {{arg1 arg2 ...}}"` + +- 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 00000000000000..c2f135d250357e --- /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 00000000000000..42b1da938a4080 --- /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/node.md b/pages.de/common/node.md new file mode 100644 index 00000000000000..e2535f572eff9e --- /dev/null +++ b/pages.de/common/node.md @@ -0,0 +1,24 @@ +# node + +> Server-seitige JavaScript Plattform (Node.js). +> Weitere Informationen: . + +- Führe eine JavaScript Datei aus: + +`node {{pfad/zu/datei}}` + +- Starte eine REPL (Interaktive Shell): + +`node` + +- Evaluiere als Argument übergebenen JavaScript Code: + +`node -e "{{code}}"` + +- Evaluierung und Ausgabe des Ergebnisses. Nützlich, um die Versionen der Abhängigkeiten von Node zu sehen: + +`node -p "{{process.versions}}"` + +- Aktiviere Inspector und pausiere die Ausführung bis sich ein Debugger verbindet sobald der Quellcode vollständig geparsed ist: + +`node --no-lazy --inspect-brk {{pfad/zu/datei}}` diff --git a/pages.de/common/nodemon.md b/pages.de/common/nodemon.md new file mode 100644 index 00000000000000..8f7ea21fe44cb2 --- /dev/null +++ b/pages.de/common/nodemon.md @@ -0,0 +1,32 @@ +# nodemon + +> Beobachtet Dateien und startet Node Applikationen automatisch neu, wenn Änderungen erkannt wurden. +> Weitere Informationen: . + +- Führe die angegebene Datei aus und warte auf Änderungen: + +`nodemon {{pfad/zu/datei.js}}` + +- Manueller Neustart von Nodemon (beachte, dass Nodemon dabei aktiv sein muss): + +`rs` + +- Ignoriere bestimmte Dateien: + +`nodemon --ignore {{pfad/zu/datei_oder_verzeichnis}}` + +- Übergib Argumente an die Node Applikation: + +`nodemon {{pfad/zu/datei.js}} {{argumente}}` + +- Übergib Argumente an node selbst, wenn sie nicht bereits Argumente von nodemon sind (z.B. `--inspect`): + +`nodemon {{argumente}} {{pfad/zu/datei.js}}` + +- Führe Nicht-Node Skripte aus: + +`nodemon --exec "{{befehl_um_skript_auszuführen}} {{argumente}}" {{pfad/zu/skript}}` + +- Führe ein Python-Skript aus: + +`nodemon --exec "python {{argumente}}" {{pfad/zu/datei.py}}` diff --git a/pages.de/common/nodenv.md b/pages.de/common/nodenv.md new file mode 100644 index 00000000000000..eb211ae1eeb495 --- /dev/null +++ b/pages.de/common/nodenv.md @@ -0,0 +1,28 @@ +# nodenv + +> Ein Tool, um Node.js Versionen zu verwalten. +> Weitere Informationen: . + +- Installiere eine bestimmte Node.js Version: + +`nodenv install {{version}}` + +- Zeige eine Liste von verfügbaren Versionen: + +`nodenv install --list` + +- Verwende systemweit eine bestimmte Node.js Version: + +`nodenv global {{version}}` + +- Verwende eine bestimmte Node.js Version im aktuellen Verzeichnis: + +`nodenv local {{version}}` + +- Zeige die verwendete Node.js Version im aktuellen Verzeichnis: + +`nodenv version` + +- Zeige den Ort, wo ein Node.js Befehl installiert ist (bspw. `npm`): + +`nodenv which {{befehl}}` diff --git a/pages.de/common/npm-check.md b/pages.de/common/npm-check.md new file mode 100644 index 00000000000000..160821ecd6ee80 --- /dev/null +++ b/pages.de/common/npm-check.md @@ -0,0 +1,20 @@ +# npm-check + +> Prüft veraltete, inkorrekte und nicht verwendete Abhängigkeiten. +> Weitere Informationen: . + +- Zeige einen Bericht von veralteten, inkorrekten und nicht verwendeten Abhängigkeiten: + +`npm-check` + +- Aktualisiere interaktiv veraltete Pakete: + +`npm-check --update` + +- Aktualisiere alle Pakete ohne Nachfrage: + +`npm-check --update-all` + +- Überspringe die Prüfung auf nicht verwendete Pakete: + +`npm-check --skip-unused` diff --git a/pages.de/common/npm-why.md b/pages.de/common/npm-why.md new file mode 100644 index 00000000000000..66bfdbb05946af --- /dev/null +++ b/pages.de/common/npm-why.md @@ -0,0 +1,8 @@ +# npm-why + +> Identifiziert, warum ein npm Paket installiert ist. +> Weitere Informationen: . + +- Zeige, warum ein npm Paket installiert ist: + +`npm-why {{paket_name}}` diff --git a/pages.de/common/npm.md b/pages.de/common/npm.md index 493d488058fda8..80ca80ef5d29aa 100644 --- a/pages.de/common/npm.md +++ b/pages.de/common/npm.md @@ -1,7 +1,7 @@ # npm -> Ein Kommandozeilenwerkzeug für die Verwaltung von Javascript und Node.js Paketen (Packages). -> Mehr Informationen: . +> Ein Kommandozeilenwerkzeug für die Verwaltung von JavaScript und Node.js Paketen (Packages). +> Weitere Informationen: . - Erstelle eine `package.json` Datei interaktiv: @@ -21,7 +21,7 @@ - Installiere ein Package global: -`npm install -g {{package_name}}` +`npm install --global {{package_name}}` - Deinstalliere ein Package und entferne es automatisch aus der `package.json` Datei: @@ -33,4 +33,4 @@ - Gib eine Liste aller global installierten Packages aus: -`npm list -g --depth={{0}}` +`npm list --global --depth={{0}}` diff --git a/pages.de/common/npx.md b/pages.de/common/npx.md new file mode 100644 index 00000000000000..cced5e8298186e --- /dev/null +++ b/pages.de/common/npx.md @@ -0,0 +1,24 @@ +# npx + +> Führt Binärdateien von `npm` Paketen aus. +> Weitere Informationen: . + +- Führe die Binärdatei eines bestimmten npm Pakets aus: + +`npx {{modulname}} {{befehlsargumente}}` + +- Übergib den konkreten Namen, falls das Paket mehrere Binärdateien besitzt: + +`npx --package {{paketname}} {{modulname}}` + +- Führe einen Befehl aus, wenn er im aktuellen Verzeichnis oder in `node_modules/.bin` gefunden wird: + +`npx --no-install {{befehl}} {{befehlsargumente}}` + +- Führe die Binärdatei eines bestimmten npm Moduls aus und unterdrücke jede Ausgabe von `npx` selbst: + +`npx --quiet {{modulname}} {{befehlsargumente}}` + +- Zeige eine Hilfe an: + +`npx --help` diff --git a/pages.de/common/ntl.md b/pages.de/common/ntl.md new file mode 100644 index 00000000000000..0c880ec3e21c40 --- /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/nvm.md b/pages.de/common/nvm.md new file mode 100644 index 00000000000000..0fd261fa03b8a4 --- /dev/null +++ b/pages.de/common/nvm.md @@ -0,0 +1,33 @@ +# nvm + +> Installiere, deinstalliere oder wechsle zwischen Node.js Versionen. +> Unterstützt Versionsnummern wie "12.8" oder "v16.13.1", und Label wie "stable", "system", etc. +> Weitere Informationen: . + +- Installiere eine bestimmte Node.js Version: + +`nvm install {{node_version}}` + +- Verwende eine bestimmte Node.js Version in der aktuellen Shell: + +`nvm use {{node_version}}` + +- Setze die Node.js-Standardversion: + +`nvm alias default {{node_version}}` + +- Zeige alle verfügbaren Node.js Versionen und hebe die Standardversion hervor: + +`nvm list` + +- Deinstalliere die angegebene Node.js Version: + +`nvm uninstall {{node_version}}` + +- Starte eine REPL mit einer bestimmten Node.js Version: + +`nvm run {{node_version}} --version` + +- Führe ein Skript mit einer bestimmten Node.js Version aus: + +`nvm exec {{node_version}} node {{app.js}}` diff --git a/pages.de/common/pass.md b/pages.de/common/pass.md index 34a2995d075d7d..9ee162e8616156 100644 --- a/pages.de/common/pass.md +++ b/pages.de/common/pass.md @@ -2,7 +2,7 @@ > Programm zum Speichern und Lesen von Passwörtern und anderen sensiblen Daten. > Die Daten sind mit GPG verschlüsselt und werden mit einem Git repository verwaltet. -> Mehr Informationen: . +> Weitere Informationen: . - Initialisiere oder verschlüssle einen neuen oder bestehenden Speicher mit einer oder mehreren GPG IDs neu: @@ -31,3 +31,7 @@ - Initialisiere ein Git Repository (Alle durch pass durchgeführten Änderungen werden automatisch committed): `pass git init` + +- Führe einen Git-Befehl für den Passwort-Store aus: + +`pass git {{befehl}}` diff --git a/pages.de/common/pdflatex.md b/pages.de/common/pdflatex.md index 0766a6640310af..d2231ee5e8887c 100644 --- a/pages.de/common/pdflatex.md +++ b/pages.de/common/pdflatex.md @@ -1,7 +1,7 @@ # pdflatex > Kompiliere eine LaTeX Quelldatei in ein PDF Dokument. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere ein PDF Dokument: diff --git a/pages.de/common/pdfseparate.md b/pages.de/common/pdfseparate.md new file mode 100644 index 00000000000000..61d52d6fdbc7a1 --- /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/pdftex.md b/pages.de/common/pdftex.md index 1b4309c2efec6d..180be119673817 100644 --- a/pages.de/common/pdftex.md +++ b/pages.de/common/pdftex.md @@ -1,7 +1,7 @@ # pdftex > Kompiliere eine TeX Quelldatei in ein PDF Dokument. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere ein PDF Dokument: diff --git a/pages.de/common/pdftotext.md b/pages.de/common/pdftotext.md new file mode 100644 index 00000000000000..6cab6903ae9c5d --- /dev/null +++ b/pages.de/common/pdftotext.md @@ -0,0 +1,24 @@ +# pdftotext + +> Konvertiere PDF Dateien zum plain text Format. +> Weitere Informationen: . + +- Konvertiere `datei.pdf` zu plain text und gib sie über die Standardausgabe aus: + +`pdftotext {{datei.pdf}} -` + +- Konvertiere `datei.pdf` zu plain text und speichere sie als `datei.txt`: + +`pdftotext {{datei.pdf}}` + +- Konvertiere `datei.pdf` zu plain text und erhalte das Layout: + +`pdftotext -layout {{datei.pdf}}` + +- Konvertiere `quelldatei.pdf` zu plain text und speichere sie als `zieldatei.txt`: + +`pdftotext {{quelldatei.pdf}} {{zieldatei.txt}}` + +- Konvertiere Seite 2, 3 und 4 von `quelldatei.pdf` zu plain text und speichere sie als `zieldatei.txt`: + +`pdftotext -f {{2}} -l {{4}} {{quelldatei.pdf}} {{zieldatei.txt}}` diff --git a/pages.de/common/pdfunite.md b/pages.de/common/pdfunite.md new file mode 100644 index 00000000000000..fcb894d426bf7f --- /dev/null +++ b/pages.de/common/pdfunite.md @@ -0,0 +1,12 @@ +# pdfunite + +> Füge PDF Dateien zusammen. +> Weitere Informationen: . + +- Füge zwei PDF Dateien zu einer PDF Datei zusammen: + +`pdfunite {{pfad/zu/datei1.pdf pfad/zu/datei2.pdf ...}} {{pfad/zu/zieldatei.pdf}}` + +- Füge alle PDF Dateien in einem Verzeichnis zu einer PDF Datei zusammen: + +`pdfunite {{pfad/zu/verzeichnis/*.pdf}} {{pfad/zu/zieldatei.pdf}}` diff --git a/pages.de/common/phpbu.md b/pages.de/common/phpbu.md index e363e9f884e64f..322eb597c4b8e9 100644 --- a/pages.de/common/phpbu.md +++ b/pages.de/common/phpbu.md @@ -1,7 +1,7 @@ # phpbu > Ein Backup framework für PHP. -> Mehr Informationen: . +> Weitere Informationen: . - Führe ein Backup mit der Standard `phpbu.xml` Konfigurationsdatei aus: diff --git a/pages.de/common/ping.md b/pages.de/common/ping.md new file mode 100644 index 00000000000000..d78da5be3039bd --- /dev/null +++ b/pages.de/common/ping.md @@ -0,0 +1,28 @@ +# ping + +> Sendet ICMP ECHO_REQUEST Pakete an andere Geräte im Netzwerk. +> Weitere Informationen: . + +- Sende Pings an ein Gerät im Netzwerk: + +`ping {{ziel}}` + +- Sende nur eine bestimmte Anzahl an Pings: + +`ping -c {{anzahl}} {{ziel}}` + +- Sende Pings und bestimme das Interval in Sekunden zwischen diesen (standardmäßig ist es eine Sekunde): + +`ping -i {{sekunden}} {{ziel}}` + +- Sende Pings ohne symbolische Namen nach Adressen aufzulösen: + +`ping -n {{ziel}}` + +- Sende Pings und signalisiere eine erfolgreiche Antwort durch ein Bell Signal (wenn das Terminal es unterstützt): + +`ping -a {{ziel}}` + +- Zeige auch eine Nachricht, wenn keine Antwort empfangen wurde: + +`ping -O {{ziel}}` diff --git a/pages.de/common/ping6.md b/pages.de/common/ping6.md new file mode 100644 index 00000000000000..04c4221624656a --- /dev/null +++ b/pages.de/common/ping6.md @@ -0,0 +1,24 @@ +# ping6 + +> Sendet ICMP ECHO_REQUEST Pakete an andere Geräte im Netzwerk, welche mittels IPv6-Adressen identifiziert werden. +> Weitere Informationen: . + +- Sende Pings an ein Gerät im Netzwerk: + +`ping6 {{ziel}}` + +- Sende nur eine bestimmte Anzahl an Pings: + +`ping6 -c {{anzahl}} {{ziel}}` + +- Sende Pings und bestimme das Interval in Sekunden zwischen diesen (standardmäßig ist es eine Sekunde): + +`ping6 -i {{sekunden}} {{ziel}}` + +- Sende Pings ohne symbolische Namen nach Adressen aufzulösen: + +`ping6 -n {{ziel}}` + +- Sende Pings und signalisiere eine erfolgreiche Antwort durch ein Bell Signal (wenn das Terminal es unterstützt): + +`ping6 -a {{ziel}}` diff --git a/pages.de/common/pio-init.md b/pages.de/common/pio-init.md new file mode 100644 index 00000000000000..9a88de4c4238b7 --- /dev/null +++ b/pages.de/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Dieser Befehl ist ein Alias von `pio project`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr pio project` diff --git a/pages.de/common/piodebuggdb.md b/pages.de/common/piodebuggdb.md new file mode 100644 index 00000000000000..4415669d300698 --- /dev/null +++ b/pages.de/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Dieser Befehl ist ein Alias von `pio debug`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr pio debug` diff --git a/pages.de/common/pip-install.md b/pages.de/common/pip-install.md new file mode 100644 index 00000000000000..a199f755d6d89f --- /dev/null +++ b/pages.de/common/pip-install.md @@ -0,0 +1,24 @@ +# pip install + +> Installiere Python-Pakete. +> Weitere Informationen: . + +- Installiere ein Paket: + +`pip install {{paketname}}` + +- Installiere eine spezifische Paketversion: + +`pip install {{paketname}}=={{paketversion}}` + +- Installiere die Pakete aus einer Datei: + +`pip install -r {{requirements.txt}}` + +- Installiere die Pakete von einer URL oder einem lokalen Archiv (.tar.gz | .whl): + +`pip install -f {{url|pfad/zur/datei}}` + +- Installiere das lokale Paket im aktuellen Verzeichnis im Entwicklungs-/Bearbeitungsmodus: + +`pip install -e .` diff --git a/pages.de/common/pip.md b/pages.de/common/pip.md new file mode 100644 index 00000000000000..d26ef124bb8137 --- /dev/null +++ b/pages.de/common/pip.md @@ -0,0 +1,33 @@ +# pip + +> Python package manager. +> Einige Unterbefehle wie `pip install` sind separat dokumentiert. +> Weitere Informationen: . + +- Installiere ein Paket (siehe `pip install` für weitere Beispiele): + +`pip install {{paketname}}` + +- Installiere ein Paket im Benutzerverzeichnis, anstatt systemweit: + +`pip install --user {{paketname}}` + +- Aktualisiere ein Paket: + +`pip install --upgrade {{paketname}}` + +- Deinstalliere ein Paket: + +`pip uninstall {{paketname}}` + +- Speichere eine Liste aller installierten Pakete in eine Datei: + +`pip freeze > {{requirements.txt}}` + +- Zeige Informationen über ein installiertes Paket an: + +`pip show {{paketname}}` + +- Installiere Pakete, die in einer Datei gelistet sind: + +`pip install --requirement {{requirements.txt}}` diff --git a/pages.de/common/plantuml.md b/pages.de/common/plantuml.md index 44cc4c29cd59af..a018f1e5ef694f 100644 --- a/pages.de/common/plantuml.md +++ b/pages.de/common/plantuml.md @@ -1,13 +1,13 @@ # plantuml > Erstelle UML-Diagramme aus einer reinen Textsprache und rendere sie in verschiedenen Formaten. -> Mehr Informationen: . +> Weitere Informationen: . - Rendere Diagramme im Standardformat (PNG): `plantuml {{pfad/zu/diagramm1.puml}} {{pfad/zu/diagramm2.puml}}` -- Rendere eine Diagramm im vorgegebenen Format (z.B. `png`, `pdf`, `svg`, `txt`): +- Rendere ein Diagramm im vorgegebenen Format (z.B. `png`, `pdf`, `svg`, `txt`): `plantuml -t {{format}} {{pfad/zu/diagramm.puml}}` @@ -15,7 +15,7 @@ `plantuml {{pfad/zu/verzeichnis}}` -- Rendere ein Diagramm in ein bistimmtes Ausgabeverzeichnis: +- Rendere ein Diagramm in ein bestimmtes Ausgabeverzeichnis: `plantuml -o {{pfad/zu/verzeichnis}} {{pfad/zu/diagramm.puml}}` diff --git a/pages.de/common/platformio.md b/pages.de/common/platformio.md new file mode 100644 index 00000000000000..53d6e8dc7936d0 --- /dev/null +++ b/pages.de/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Dieser Befehl ist ein Alias von `pio`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr pio` diff --git a/pages.de/common/pnpm.md b/pages.de/common/pnpm.md new file mode 100644 index 00000000000000..784c850c48de68 --- /dev/null +++ b/pages.de/common/pnpm.md @@ -0,0 +1,37 @@ +# pnpm + +> Schneller, speicherplatzsparender Paketmanager für Node.js. +> Ein Kommandozeilenwerkzeug für die Verwaltung von JavaScript und Node.js Paketen (Packages). +> Weitere Informationen: . + +- Erstelle eine `package.json` Datei interaktiv: + +`pnpm init` + +- Installiere alle in der `package.json` Datei gelisteten Abhängigkeiten: + +`pnpm install` + +- Installiere eine spezifische Version eines Packages und füge es automatisch der `package.json` Datei hinzu: + +`pnpm add {{modul_name}}@{{version}}` + +- Installiere ein Package und füge es als Entwicklungs-Abhängigkeit der `package.json` Datei hinzu: + +`pnpm add -D {{modul_name}}` + +- Installiere ein Package global: + +`pnpm add -g {{modul_name}}` + +- Deinstalliere ein Package und entferne es automatisch aus der `package.json` Datei: + +`pnpm remove {{modul_name}}` + +- Gib eine Liste aller lokal installierten Packages aus: + +`pnpm list` + +- Gib eine Liste aller global installierten Packages aus: + +`pnpm list -g --depth={{0}}` diff --git a/pages.de/common/poetry.md b/pages.de/common/poetry.md new file mode 100644 index 00000000000000..193e8701ec2af6 --- /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 00000000000000..f9e38289d8fb0f --- /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/puppet-agent.md b/pages.de/common/puppet-agent.md new file mode 100644 index 00000000000000..6ebf7c80ad4b2d --- /dev/null +++ b/pages.de/common/puppet-agent.md @@ -0,0 +1,32 @@ +# puppet agent + +> Ruft die Client-Konfiguration eines Puppetservers ab und setzt diese auf dem System um. +> Weitere Informationen: . + +- Registriere die Node bei einem Puppetserver und wende den empfangenen Katalog an: + +`puppet agent --test --server {{puppetserver_fqdn}} --serverport {{port}} --waitforcert {{poll_zeit}}` + +- Führe den Agenten im Hintergrund aus (nutzt die Einstellungen von `/opt/puppetlabs/puppet/puppet.conf`): + +`puppet agent` + +- Führe den Agenten einmal im Vordergrund aus und beende: + +`puppet agent --test` + +- Führe den Agenten im Dry-Modus aus: + +`puppet agent --test --noop` + +- Protokolliere jede ausgewertete Ressource (selbst wenn sich nichts geändert hat): + +`puppet agent --test --evaltrace` + +- Deaktiviere den Agenten: + +`puppet agent --disable "{{nachricht}}"` + +- Aktiviere den Agenten: + +`puppet agent --enable` diff --git a/pages.de/common/puppet-apply.md b/pages.de/common/puppet-apply.md new file mode 100644 index 00000000000000..eb889436083352 --- /dev/null +++ b/pages.de/common/puppet-apply.md @@ -0,0 +1,16 @@ +# puppet apply + +> Wende ein Puppet-Manifest lokal an. +> Weitere Informationen: . + +- Wende ein Manifest an: + +`puppet apply {{pfad/zu/manifest}}` + +- Führe Puppetcode aus: + +`puppet apply --execute {{code}}` + +- Benutze ein bestimmtes Modulverzeichnis und Hiera-Konfigurationsdatei: + +`puppet apply --modulepath {{pfad/zu/ordner}} --hiera_config {{pfad/zu/datei}} {{pfad/zu/manifest}}` diff --git a/pages.de/common/puppet.md b/pages.de/common/puppet.md new file mode 100644 index 00000000000000..b789d94dfa46b1 --- /dev/null +++ b/pages.de/common/puppet.md @@ -0,0 +1,21 @@ +# puppet + +> Puppet bietet Tools, an um die Konfiguration von Servern zu automatisieren. +> Einige Unterbefehle wie `puppet agent` sind separat dokumentiert. +> Weitere Informationen: . + +- Führe einen Puppet-Unterbefehl aus: + +`puppet {{unterbefehl}}` + +- Gib die installierte Version von Puppet aus: + +`puppet --version` + +- Zeige die generelle Hilfeseite an: + +`puppet --help` + +- Zeige die Hilfeseite eines Unterbefehls an (z.B. `agent`, `apply`, etc.): + +`puppet help {{unterbefehl}}` diff --git a/pages.de/common/python3.md b/pages.de/common/python3.md new file mode 100644 index 00000000000000..70fb061f0a8f45 --- /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/r2.md b/pages.de/common/r2.md new file mode 100644 index 00000000000000..d618a10e9a1c1b --- /dev/null +++ b/pages.de/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Dieser Befehl ist ein Alias von `radare2`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr radare2` diff --git a/pages.de/common/rails.md b/pages.de/common/rails.md new file mode 100644 index 00000000000000..40a58b86e3a707 --- /dev/null +++ b/pages.de/common/rails.md @@ -0,0 +1,25 @@ +# rails + +> Ein Server-seitiges MVC Webframework in Ruby. +> Manche Unterbefehle wie `rails generate` sind separat dokumentiert. +> Weitere Informationen: . + +- Erstelle ein neues Rails-Projekt: + +`rails new "{{projektname}}"` + +- Starte einen lokalen Server für das aktuelle Project unter Port 3000: + +`rails server` + +- Starte einen lokalen Server für das aktuelle Project unter einem bestimmten Port: + +`rails server -p "{{port}}"` + +- Starte eine interactive Konsole (REPL): + +`rails console` + +- Zeige die Versionsnummer von `rails` an: + +`rails --version` diff --git a/pages.de/common/rcat.md b/pages.de/common/rcat.md new file mode 100644 index 00000000000000..ef473cea0314b5 --- /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/rev.md b/pages.de/common/rev.md index 4f93b964f26663..56a98384311791 100644 --- a/pages.de/common/rev.md +++ b/pages.de/common/rev.md @@ -1,6 +1,7 @@ # rev > Kehre die Reihenfolge von Text um. +> Weitere Informationen: . - Kehre die Reihenfolge des Textes "Hallo" um: diff --git a/pages.de/common/ripgrep.md b/pages.de/common/ripgrep.md new file mode 100644 index 00000000000000..131470bb0b660e --- /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 00000000000000..25cbb7ff8e6320 --- /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/sl.md b/pages.de/common/sl.md new file mode 100644 index 00000000000000..76f09e8a51bc11 --- /dev/null +++ b/pages.de/common/sl.md @@ -0,0 +1,24 @@ +# sl + +> Dampflokomotive welche durch das Terminal fährt. +> Weitere Informationen: . + +- Lasse eine Dampflokomotive durch dein Terminal fahren: + +`sl` + +- Der Zug brennt, Menschen schreien: + +`sl -a` + +- Lasse den Zug fliegen: + +`sl -F` + +- Zeige den Zug kleiner an: + +`sl -l` + +- Lasse den Benutzer abbrechen (STRG + C): + +`sl -e` diff --git a/pages.de/common/sleep.md b/pages.de/common/sleep.md new file mode 100644 index 00000000000000..235ed9aa3f0b00 --- /dev/null +++ b/pages.de/common/sleep.md @@ -0,0 +1,16 @@ +# sleep + +> Verzögert für einen bestimmten Zeitraum. +> Weitere Informationen: . + +- Verzögere in Sekunden: + +`sleep {{sekunden}}` + +- Verzögere in Minuten: + +`sleep {{minuten}}m` + +- Verzögere in Stunden: + +`sleep {{stunden}}h` diff --git a/pages.de/common/sqlite3.md b/pages.de/common/sqlite3.md new file mode 100644 index 00000000000000..db642f61886a63 --- /dev/null +++ b/pages.de/common/sqlite3.md @@ -0,0 +1,16 @@ +# sqlite3 + +> Das Kommandozeileninterface für SQLite 3, welches eine eigenständige dateibasierte eingebettete SQL-Engine ist. +> Weitere Informationen: . + +- Starte eine interaktive Shell mit einer neuen Datenbank: + +`sqlite3` + +- Öffne eine interaktive Shell mit einer existierenden Datenbank: + +`sqlite3 {{pfad/zu/datenbank.sqlite3}}` + +- Führe ein SQL Statement auf einer existierenden Datenbank aus und beende die Ausführung danach: + +`sqlite3 {{pfad/zu/datenbank.sqlite3}} '{{SELECT * FROM einer_tabelle;}}'` diff --git a/pages.de/common/ssh-agent.md b/pages.de/common/ssh-agent.md index df0924e48bf08c..948ff5d517e433 100644 --- a/pages.de/common/ssh-agent.md +++ b/pages.de/common/ssh-agent.md @@ -3,6 +3,7 @@ > Erstelle einen SSH Agenten-Prozess. > Ein SSH Agent behält die hinzugefügten SSH Schlüssel solange verschlüsselt im Arbeitsspeicher, bis diese entfernt werden oder der Agenten-Prozess beendet wird. > Siehe auch `ssh-add`, um Schlüssel zu verwalten. +> Weitere Informationen: . - Starte einen SSH Agenten-Prozesses für die aktuelle Shell: diff --git a/pages.de/common/ssh-copy-id.md b/pages.de/common/ssh-copy-id.md index 6937781d337c4b..1a1d42c6ca2164 100644 --- a/pages.de/common/ssh-copy-id.md +++ b/pages.de/common/ssh-copy-id.md @@ -1,6 +1,7 @@ # ssh-copy-id > Installiere den öffentlichen Teil eines SSH Schlüssels in der `authorized_keys` Datei auf einem externen Server. +> Weitere Informationen: . - Kopiere den eigenen öffentlichen SSH Schlüssels zu einem externen Server: diff --git a/pages.de/common/ssh-keygen.md b/pages.de/common/ssh-keygen.md index e1e39aaa21165b..8a17acb548c6ea 100644 --- a/pages.de/common/ssh-keygen.md +++ b/pages.de/common/ssh-keygen.md @@ -1,6 +1,7 @@ # ssh-keygen > Generiert ssh Schlüssel für Authentifizierung, Passwort-lose Logins und mehr. +> Weitere Informationen: . - Erstelle ein SSH Schlüssel-Paar interaktiv: @@ -8,28 +9,28 @@ - Erstelle ein Schlüssel-Paar unter einem bestimmten Dateinamen: -`ssh-keygen -f ~/.ssh/{{datei}}` +`ssh-keygen -f {{~/.ssh/datei}}` - Generiere ein ed25519 Schlüssel-Paar mit 100 Schlüssel-Ableitungs-Iterationen: -`ssh-keygen -t ed25519 -a 100` +`ssh-keygen -t {{ed25519}} -a {{100}}` -- Generiere ein 4096 Bit langen RSA Schlüssel-Paar mit der Email im Kommentarfeld: +- Generiere ein 4096 Bit langen RSA Schlüssel-Paar mit der E-Mail im Kommentarfeld: -`ssh-keygen -t rsa -b 4096 -C "{{email}}"` - -- Rufe den Schlüssel-Fingerabdruck von einem Server ab (hilfreich um die Authentizität eines Servers beim ersten Verbinden zu überprüfen): - -`ssh-keygen -l -F {{externer_server}}` +`ssh-keygen -t {{dsa|ecdsa|ed25519|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): `ssh-keygen -R {{externer_server}}` -- Rufe den Fingerabdrucks eines Schlüssels im MD5 Hex Format ab: +- Rufe den Fingerabdruck eines Schlüssels im MD5 Hex Format ab: -`ssh-keygen -l -E md5 -f ~/.ssh/{{datei}}` +`ssh-keygen -l -E {{md5}} -f {{~/.ssh/datei}}` - Ändere das Passwort eines privaten Schlüssels: -`ssh-keygen -p -f ~/.ssh/{{datei}}` +`ssh-keygen -p -f {{~/.ssh/datei}}` + +- Ändern Sie den Typ des Schlüsselformats (z. B. vom OPENSSH-Format in PEM), die Datei wird an Ort und Stelle neu geschrieben: + +`ssh-keygen -p -N "" -m {{PEM}} -f ~/.ssh/{{datei}}` diff --git a/pages.de/common/ssh-keyscan.md b/pages.de/common/ssh-keyscan.md index d87dd12235f656..e7e884620cdf71 100644 --- a/pages.de/common/ssh-keyscan.md +++ b/pages.de/common/ssh-keyscan.md @@ -1,6 +1,7 @@ # ssh-keyscan > Rufe öffentliche SSH Schlüssel eines externen Servers ab. +> Weitere Informationen: . - Rufe alle öffentlichen SSH Schlüssel eines Servers ab: diff --git a/pages.de/common/ssh.md b/pages.de/common/ssh.md index 4450b12ba869c1..f57405af7bb4cb 100644 --- a/pages.de/common/ssh.md +++ b/pages.de/common/ssh.md @@ -2,6 +2,7 @@ > Secure Shell ist ein Protokoll für das sichere einloggen auf einem externen System. > Es kann dafür eingesetzt werden um Befehle auf externen Systemen auszuführen. +> Weitere Informationen: . - Stelle eine Verbindung zu einem externen Server her: @@ -31,6 +32,6 @@ `ssh -J {{benutzer@sring_server}} {{benutzer}}@{{externer_server}}` -- Agenten Weiterleitung: Leite ie eigenen Authentifizierungs-Information an den externen Server weiter (siehe `man ssh_config` für mehr Optionen): +- Agenten Weiterleitung: Leite die eigenen Authentifizierungs-Informationen an den externen Server weiter (siehe `man ssh_config` für mehr Optionen): `ssh -A {{benutzer}}@{{externer_server}}` diff --git a/pages.de/common/sshfs.md b/pages.de/common/sshfs.md index 52a003c55d59fa..b0d3e2113f0d56 100644 --- a/pages.de/common/sshfs.md +++ b/pages.de/common/sshfs.md @@ -1,7 +1,7 @@ # sshfs > Dateisystem Client für SSH. -> Mehr Informationen: . +> Weitere Informationen: . - Hänge ein externes Verzeichnis ein: diff --git a/pages.de/common/sshpass.md b/pages.de/common/sshpass.md index 9f333541e0f2d3..9cbe2aa71c8a99 100644 --- a/pages.de/common/sshpass.md +++ b/pages.de/common/sshpass.md @@ -1,6 +1,7 @@ # sshpass > 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): diff --git a/pages.de/common/steam.md b/pages.de/common/steam.md new file mode 100644 index 00000000000000..ac0e8c514b2716 --- /dev/null +++ b/pages.de/common/steam.md @@ -0,0 +1,28 @@ +# steam + +> Eine Plattform für Videospiele von Valve. +> Weitere Informationen: . + +- Starte Steam und gebe Debug-Nachrichten auf die Standardausgabe aus: + +`steam` + +- Starte Steam und aktiviere die eingebaute Debug-Menüoption: + +`steam -console` + +- Aktiviere die Menüoption für die Steam-Konsole und öffne diese in einer aktiven Steam-Instanz: + +`steam steam://open/console` + +- Logge dich in Steam mit den angegebenen Zugangsdaten ein: + +`steam -login {{benutzername}} {{passwort}}` + +- Starte Steam im Big-Picture-Modus: + +`steam -tenfoot` + +- Stoppe Steam: + +`steam -shutdown` diff --git a/pages.de/common/steamcmd.md b/pages.de/common/steamcmd.md new file mode 100644 index 00000000000000..39252a67add2ea --- /dev/null +++ b/pages.de/common/steamcmd.md @@ -0,0 +1,16 @@ +# steamcmd + +> Ein Kommandozeilenwerkzeug, um über Steam verfügbare Anwendungen zu verwalten. +> Weitere Informationen: . + +- Installiere und aktualisiere eine Anwendung ohne dich einzuloggen: + +`steamcmd +login {{anonymous}} +app_update {{anwendungs_id}} +quit` + +- Installiere oder aktualisiere eine Anwendung unter Angabe deiner Zugangsdaten: + +`steamcmd +login {{benutzername}} +app_update {{anwendungs_id}} +quit` + +- Installiere eine Anwendung für eine bestimmte Plattform: + +`steamcmd +@sSteamCmdForcePlatformType {{windows}} +login {{benutzername}} +app_update {{anwendungs_id}} validate +quit` diff --git a/pages.de/common/tail.md b/pages.de/common/tail.md new file mode 100644 index 00000000000000..a1ab2bfddfc8b8 --- /dev/null +++ b/pages.de/common/tail.md @@ -0,0 +1,28 @@ +# tail + +> Gib das Ende einer Datei aus. +> Weitere Informationen: . + +- Zeige die letzten Zeilen einer Datei an: + +`tail -n {{anzahl_an_zeilen}} {{datei}}` + +- Zeige alle Zeilen einer Datei ab einer bestimmten Zeile an: + +`tail -n +{{zeile}} {{datei}}` + +- Zeige die letzten Bytes einer Datei an: + +`tail -c {{anzahl_an_bytes}} {{datei}}` + +- Lies aus einer Datei, bis `Ctrl + C` gedrückt wird: + +`tail -f {{datei}}` + +- Lies aus einer Datei, bis `Ctrl + C` gedrückt wird, selbst, wenn die Datei nicht zugänglich ist: + +`tail -F {{datei}}` + +- Zeige die letzten Zeilen einer Datei an und lade alle paar Sekunden neu: + +`tail -n {{anzahl_an_zeilen}} -s {{anzahl_an_sekunden}} -f {{datei}}` diff --git a/pages.de/common/tar.md b/pages.de/common/tar.md index 3617a479248134..2148136f433385 100644 --- a/pages.de/common/tar.md +++ b/pages.de/common/tar.md @@ -2,9 +2,9 @@ > Archivierungs Tool. > Häufig kombiniert mit anderen Methoden zur Komprimierung, wie gzip oder bzip2. -> Mehr Informationen: . +> Weitere Informationen: . -- Erstelle ein Archiv von Datein: +- Erstelle ein Archiv von Dateien: `tar cf {{pfad/zu/ziel.tar}} {{pfad/zu/datei1}} {{pfad/zu/datei2}} {{pfad/zu/datei3}}` @@ -14,15 +14,15 @@ - Erstelle ein mit gzip komprimiertes Archiv mit relativen Pfaden: -`tar czf {{pfad/zu/ziel.tar.gz}} -C {{pfad/zu/verzeichniss/}} .` +`tar czf {{pfad/zu/ziel.tar.gz}} -C {{pfad/zu/verzeichnis/}} .` -- Extrahiere ein (komprimiertes) Archiv in das derzeitige Verzeichniss: +- Extrahiere ein (komprimiertes) Archiv in das derzeitige Verzeichnis: `tar xf {{pfad/zu/quelle.tar[.gz|.bz2|.xz]}}` -- Extrahiere ein Archiv in ein Verzeichniss: +- Extrahiere ein Archiv in ein Verzeichnis: -`tar xf {{pfad/zu/quelle.tar}} -C {{verzeichniss}}` +`tar xf {{pfad/zu/quelle.tar}} -C {{verzeichnis}}` - Erstelle ein komprimiertes Archiv und benutze den Archiv Suffix um die Kompressionsmethode zu wählen: diff --git a/pages.de/common/termdown.md b/pages.de/common/termdown.md new file mode 100644 index 00000000000000..791d71c75a2a56 --- /dev/null +++ b/pages.de/common/termdown.md @@ -0,0 +1,24 @@ +# termdown + +> Command-line Countdown-Timer. +> Weitere Informationen: . + +- Starte Stoppuhr: + +`termdown` + +- Starte einen Countdown von 1 Minute 30 Sekunden: + +`termdown {{1m30s}}` + +- Starte einen Countdown von 1 Minute 30 Sekunden. Nach ablauf der Zeit blinkt das Terminal: + +`termdown {{1m30s}} --blink` + +- Countdown mit Titel über der abgelaufenen Zeit: + +`termdown {{1m30s}} --title "{{Interesting title}}"` + +- Zeige aktuelle Zeit: + +`termdown --time` diff --git a/pages.de/common/terraform-fmt.md b/pages.de/common/terraform-fmt.md new file mode 100644 index 00000000000000..272b0334aab0c1 --- /dev/null +++ b/pages.de/common/terraform-fmt.md @@ -0,0 +1,20 @@ +# terraform fmt + +> Formatierung der Konfiguration gemäß den Konventionen der Terraform-Sprache. +> Weitere Informationen: . + +- Formatieren der Konfiguration im aktuellen Verzeichnis: + +`terraform fmt` + +- Formatieren der Konfiguration im aktuellen Verzeichnis und den Unterverzeichnissen: + +`terraform fmt -recursive` + +- Anzeige der Unterschiede bei Formatierungsänderungen: + +`terraform fmt -diff` + +- Die Dateien mit Formatierungsinkonsistenzen werden nicht auf stdout ausgegeben: + +`terraform fmt -list=false` diff --git a/pages.de/common/terraform-plan.md b/pages.de/common/terraform-plan.md new file mode 100644 index 00000000000000..819d62cd7c15cd --- /dev/null +++ b/pages.de/common/terraform-plan.md @@ -0,0 +1,32 @@ +# terraform plan + +> Erzeugen und Anzeigen von Terraform-Ausführungsplänen. +> Weitere Informationen: . + +- Erzeugen und Anzeigen des Ausführungsplans im aktuellen Verzeichnis: + +`terraform plan` + +- Einen Plan zur Zerstörung aller derzeit existierenden entfernten Objekte anzeigen: + +`terraform plan -destroy` + +- Anzeigen eines Plans zur Aktualisierung des Terraform-Status und der Ausgabewerte: + +`terraform plan -refresh-only` + +- Werte für Eingabevariablen festlegen: + +`terraform plan -var '{{name1}}={{wert1}}' -var '{{name2}}={{wert2}}'` + +- Anzeigen eines Plans auf eine Teilmenge von Ressourcen: + +`terraform plan -target {{resource_type.resource_name[index]}}` + +- Ausgabe eines Plans als JSON: + +`terraform plan -json` + +- Ausgabe eines Plans in eine separate Datei: + +`terraform plan -no-color > {{pfad/zu/datei}}` diff --git a/pages.de/common/terraform.md b/pages.de/common/terraform.md new file mode 100644 index 00000000000000..c60707d3dded35 --- /dev/null +++ b/pages.de/common/terraform.md @@ -0,0 +1,28 @@ +# terraform + +> Erstellen und Bereitstellen von Infrastruktur als Code für Cloud-Anbieter. +> Weitere Informationen: . + +- Initialisieren einer neuen oder bestehenden Terraform-Konfiguration: + +`terraform init` + +- Überprüfen Sie, ob die Konfigurationsdateien syntaktisch gültig sind: + +`terraform validate` + +- Formatierung der Konfiguration gemäß den Konventionen der Terraform-Sprache: + +`terraform fmt` + +- Erzeugen und Anzeigen eines Ausführungsplans: + +`terraform plan` + +- Infrastruktur aufbauen oder ändern: + +`terraform apply` + +- Terraform-verwaltete Infrastruktur zerstören: + +`terraform destroy` diff --git a/pages.de/common/tex.md b/pages.de/common/tex.md index d42eb0ea9bb32d..2d6cd435c476ec 100644 --- a/pages.de/common/tex.md +++ b/pages.de/common/tex.md @@ -1,7 +1,7 @@ # tex > Kompiliere eine TeX Quelldatei in ein DVI Dokument. -> Mehr Informationen: . +> Weitere Informationen: . - Kompiliere ein DVI Dokument: diff --git a/pages.de/common/texdoc.md b/pages.de/common/texdoc.md index 1c5eaa70bc4234..91c6b22fe43d66 100644 --- a/pages.de/common/texdoc.md +++ b/pages.de/common/texdoc.md @@ -1,7 +1,7 @@ # texdoc > Suche nach passenden Dokumentationen für (La)TeX Befehle oder Packages. -> Mehr Informationen: . +> Weitere Informationen: . - Öffne das erste Suchergebnis im Standard-PDF-Viewer: diff --git a/pages.de/common/texliveonfly.md b/pages.de/common/texliveonfly.md index 73c0123efe233a..5111b5fbe150d4 100644 --- a/pages.de/common/texliveonfly.md +++ b/pages.de/common/texliveonfly.md @@ -1,7 +1,7 @@ # texliveonfly > Lade fehlende TeX Live Packages während dem Kompilieren einer `.tex` Datei herunter. -> Mehr Informationen: . +> Weitere Informationen: . - Lade fehlende Packages während dem Kompilieren herunter: diff --git a/pages.de/common/tig.md b/pages.de/common/tig.md new file mode 100644 index 00000000000000..20bafb298ffad3 --- /dev/null +++ b/pages.de/common/tig.md @@ -0,0 +1,28 @@ +# tig + +> Eine interaktive Kommandozeilenoberfläche für Git. +> Weitere Informationen: . + +- Zeige die Commits des aktuellen Branches: + +`tig` + +- Zeige die Commits eines bestimmten Branches: + +`tig {{branch}}` + +- Zeige die Commits von bestimmten Dateien oder Verzeichnissen: + +`tig {{pfad1 pfad2 ...}}` + +- Zeige die Unterschiede zwischen zwei Referenzen (wie z.B. Branches oder Tags): + +`tig {{base_ref}}..{{compared_ref}}` + +- Zeige die Commits von allen Branches und Stashes: + +`tig --all` + +- Zeige alle gespeicherten Stashes: + +`tig stash` diff --git a/pages.de/common/tldr.md b/pages.de/common/tldr.md new file mode 100644 index 00000000000000..9c26ea0a22807f --- /dev/null +++ b/pages.de/common/tldr.md @@ -0,0 +1,20 @@ +# tldr + +> Zeigt kurze Zusammenfassungen (tldr-Seiten) von Kommandozeilen-Befehlen an. +> Weitere Informationen: . + +- Zeige die tldr-Seite für einen Befehl an (Hinweis: So bist du hierher gekommen!): + +`tldr {{befehl}}` + +- Zeige die tldr-Seite für `cd` an und überschreibe die Standardplattform: + +`tldr -p {{android|linux|osx|sunos|windows}} {{cd}}` + +- Zeige die tldr-Seite für einen Unterbefehl: + +`tldr {{git-checkout}}` + +- Aktualisiere die lokalen Seiten (wenn er Client Caching unterstützt): + +`tldr -u` diff --git a/pages.de/common/tldrl.md b/pages.de/common/tldrl.md new file mode 100644 index 00000000000000..ec5a1563304842 --- /dev/null +++ b/pages.de/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Dieser Befehl ist ein Alias von `tldr-lint`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr tldr-lint` diff --git a/pages.de/common/tlmgr-arch.md b/pages.de/common/tlmgr-arch.md new file mode 100644 index 00000000000000..81aa4dbfe34521 --- /dev/null +++ b/pages.de/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Dieser Befehl ist ein Alias von `tlmgr platform`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr tlmgr platform` diff --git a/pages.de/common/tlmgr.md b/pages.de/common/tlmgr.md index 7bb18201aac6ad..7e731494c36e9b 100644 --- a/pages.de/common/tlmgr.md +++ b/pages.de/common/tlmgr.md @@ -1,7 +1,8 @@ # tlmgr > Verwalte Packages und Konfigurationen einer existierenden TeX Live Installation. -> Mehr Informationen: . +> Manche Unterbefehle wie `tlmgr paper` sind separat dokumentiert. +> Weitere Informationen: . - Installiere ein Package und seine Abhängigkeiten: @@ -11,7 +12,7 @@ `tlmgr remove {{package}}` -- Zeige Informationen über ein Pagkage an: +- Zeige Informationen über ein Package an: `tlmgr info {{package}}` @@ -23,7 +24,7 @@ `tlmgr update --list` -- Starte die graphische Oberfläche von tlmgr: +- Starte die grafische Oberfläche von tlmgr: `tlmgr gui` diff --git a/pages.de/common/todoman.md b/pages.de/common/todoman.md new file mode 100644 index 00000000000000..ea05b5702272a9 --- /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 00000000000000..4d901dd82669c1 --- /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/ugrep.md b/pages.de/common/ugrep.md new file mode 100644 index 00000000000000..0a2880034589fe --- /dev/null +++ b/pages.de/common/ugrep.md @@ -0,0 +1,36 @@ +# ugrep + +> Ultraschnelles Suchtool mit Abfrage-TUI. +> Weitere Informationen: . + +- Starte eine interaktive TUI um rekursiv nach Dateien im aktuellen Verzeichnis zu suchen (Strg-Z für Hilfe): + +`ugrep --query` + +- Suche im aktuellen Verzeichnis rekursiv nach Dateien, die einem bestimmten regulären Ausdruck entsprechen: + +`ugrep "{{suchmuster}}"` + +- Suche in einer Datei oder in allen Dateien in einem bestimmten Verzeichnis und zeige die Zeilennummer jedes Treffers: + +`ugrep --line-number "{{suchmuster}}" {{pfad/zu/datei_oder_verzeichnis}}` + +- Suche in allen Dateien im aktuellen Verzeichnis rekursiv und zeige den Dateinamen jeder passenden Datei: + +`ugrep --files-with-matches "{{suchmuster}}"` + +- Suche nach einem "fuzzy" regulären Ausdruck mit bis zu 3 zusätzlichen, fehlenden oder nicht übereinstimmenden Zeichen: + +`ugrep --fuzzy={{3}} "{{suchmuster}}"` + +- Suche auch in allen komprimierten Dateien und `zip`- und `tar`-Archive: + +`ugrep --decompress "{{suchmuster}}"` + +- Suche nur in Dateien deren Dateinamen mit einem bestimmten glob-Muster übereinstimmen: + +`ugrep --glob="{{glob_muster}}" "{{suchmuster}}"` + +- Suche nur in C++ Quelldateien (verwende `--file-type=list`, um mögliche Optionen aufzulisten): + +`ugrep --file-type=cpp "{{suchmuster}}"` diff --git a/pages.de/common/unclutter.md b/pages.de/common/unclutter.md new file mode 100644 index 00000000000000..453dd07e499234 --- /dev/null +++ b/pages.de/common/unclutter.md @@ -0,0 +1,8 @@ +# unclutter + +> Versteckt den Mauszeiger. +> Weitere Informationen: . + +- Verstecke den Mauszeiger nach 3 Sekunden: + +`unclutter -idle {{3}}` diff --git a/pages.de/common/unlzma.md b/pages.de/common/unlzma.md new file mode 100644 index 00000000000000..3d730a45bfe92b --- /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 00000000000000..58b072b406363a --- /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/vi.md b/pages.de/common/vi.md new file mode 100644 index 00000000000000..c6f2db5957c6a8 --- /dev/null +++ b/pages.de/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Dieser Befehl ist ein Alias von `vim`. + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr vim` diff --git a/pages.de/common/vifm.md b/pages.de/common/vifm.md new file mode 100644 index 00000000000000..0fe0e11d2da021 --- /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/verzeichnis_1}} {{pfad/zu/verzeichnis_2}}` diff --git a/pages.de/common/vim.md b/pages.de/common/vim.md new file mode 100644 index 00000000000000..11fab7d3f995aa --- /dev/null +++ b/pages.de/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), ein Befehlszeilen-Texteditor, bietet mehrere Modi für verschiedene Arten der Textmanipulation an. +> Das Drücken von `i` schaltet den Editier-Modus ein. `` wechselt in den Befehls-Modus, der die Verwendung von Vim-Befehlen ermöglicht. +> Weitere Informationen: . + +- Öffne eine Datei: + +`vim {{pfad/zu/datei}}` + +- Öffne eine Datei an einer bestimmten Zeilennummer: + +`vim +{{zeilennummer}} {{pfad/zu/datei}}` + +- Zeige Vim's Benutzeranleitung: + +`:help` + +- Speichere und schließe die aktuelle Datei: + +`:wq` + +- Mache die letzte Aktion rückgängig: + +`u` + +- Suche nach einem Muster in der Datei (mit `n`/`N` zum nächsten/vorherigen Treffer gehen): + +`/{{suchmuster}}` + +- Ersetze einen regulären Ausdruck alle Treffer in einer Datei: + +`:%s/{{regulärer_ausdruck}}/{{neuer_text}}/g` + +- Zeige Zeilennummern an: + +`:set nu` diff --git a/pages.de/common/vimdiff.md b/pages.de/common/vimdiff.md new file mode 100644 index 00000000000000..12651f7b383c34 --- /dev/null +++ b/pages.de/common/vimdiff.md @@ -0,0 +1,37 @@ +# vimdiff + +> Öffne zwei oder mehr Dateien in Vim und zeige ihre Unterschiede an. +> Siehe auch `vim`. +> Weitere Informationen: . + +- Öffne zwei Dateien und zeige ihre Unterschiede an: + +`vimdiff {{pfad/zu/datei_1}} {{pfad/zu/datei_2}}` + +- Bewege den Cursor zum linken|rechten Fenster: + +`Ctrl + w {{h|l}}` + +- Springe zum vorigen Unterschied: + +`[c` + +- Springe zum nächsten Unterschied: + +`]c` + +- Kopiere die hervorgehobenen Unterschiede vom anderen in das aktuelle Fenster: + +`do` + +- Kopiere die hervorgehobenen Unterschiede vom aktuellen in das andere Fenster: + +`dp` + +- Aktualisiere die hervorgehobenen Unterschiede und Textfaltungen: + +`:diffupdate` + +- Öffne/Schließe die Textfaltung unter dem Cursor: + +`za` diff --git a/pages.de/common/vimtutor.md b/pages.de/common/vimtutor.md new file mode 100644 index 00000000000000..a70b987c297130 --- /dev/null +++ b/pages.de/common/vimtutor.md @@ -0,0 +1,12 @@ +# vimtutor + +> Vim-Tutor zum Erlernen grundlegender Vim-Befehle. +> Weitere Informationen: . + +- Öffne den Vim-Tutor in der gegebenen Sprache (de, en, fr, ...): + +`vimtutor {{sprache}}` + +- Beende den Vim-Tutor: + +` :q ` diff --git a/pages.de/common/whoami.md b/pages.de/common/whoami.md index fb5a0bdc64d990..5afd8aad4a2fa6 100644 --- a/pages.de/common/whoami.md +++ b/pages.de/common/whoami.md @@ -1,12 +1,12 @@ # whoami > Gib den Benutzernamen des aktuellen Benutzers aus. -> Mehr Informationen: . +> Weitere Informationen: . - Gib den aktiven Benutzernamen aus: `whoami` -- gib den Benutzernamen nach einer Änderung der Benutzeridentität aus: +- Gib den Benutzernamen nach einer Änderung der Benutzeridentität aus: `sudo whoami` diff --git a/pages.de/common/xzcat.md b/pages.de/common/xzcat.md new file mode 100644 index 00000000000000..1d654f487c52a6 --- /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/yarn.md b/pages.de/common/yarn.md new file mode 100644 index 00000000000000..6e0d3db1afffbe --- /dev/null +++ b/pages.de/common/yarn.md @@ -0,0 +1,28 @@ +# yarn + +> JavaScript und Node.js Paket-Manager Alternative. +> Weitere Informationen: . + +- Installiere ein Modul global: + +`yarn global add {{modul_name}}` + +- Installiere alle in der `package.json` Datei genannten Dependencies (`install` ist optional): + +`yarn install` + +- Installiere ein Modul und füge es als Dependency der `package.json` Datei hinzu (`--dev` um es als Dev-Dependency zu installieren): + +`yarn add {{modul_name}}@{{version}}` + +- Deinstalliere ein Modul und entferne es von der `package.json` Datei: + +`yarn remove {{modul_name}}` + +- Erstelle interaktiv eine `package.json` Datei: + +`yarn init` + +- Indentifiziere ob ein Modul eine Dependency ist und liste andere Module, die von diesem abhängen: + +`yarn why {{modul_name}}` diff --git a/pages.de/common/zsh.md b/pages.de/common/zsh.md index 59b10605885789..cba5dd2955fa9e 100644 --- a/pages.de/common/zsh.md +++ b/pages.de/common/zsh.md @@ -2,7 +2,7 @@ > Z SHell. > Mit `bash` und `sh` kompatible Eingabeaufforderung. -> Mehr Informationen: . +> Weitere Informationen: . - Starte eine interaktive Eingabeaufforderung: @@ -18,4 +18,12 @@ - Führe Befehle aus einem Skript aus und schreibe die Befehle in die Konsole: -`zsh -x {{pfad/zu/skript}}` +`zsh --xtrace {{pfad/zu/skript}}` + +- Starte eine interaktive Eingabeaufforderung, in der jeder Befehl ausgegeben wird, bevor er ausgeführt wird: + +`zsh --verbose` + +- Führe einen Befehl innerhalb von `zsh` mit ausgeschalteten Glob-Mustern aus: + +`noglob {{befehl}}` diff --git a/pages.de/linux/a2disconf.md b/pages.de/linux/a2disconf.md new file mode 100644 index 00000000000000..083faa94347f2b --- /dev/null +++ b/pages.de/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Deaktiviert eine Apache-Konfigurationsdatei auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Deaktiviere eine Konfigurationsdatei: + +`sudo a2disconf {{konfigurationsdatei}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2disconf --quiet {{konfigurationsdatei}}` diff --git a/pages.de/linux/a2dismod.md b/pages.de/linux/a2dismod.md new file mode 100644 index 00000000000000..1d161ca51cef41 --- /dev/null +++ b/pages.de/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Deaktiviert ein Apache-Modul auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Deaktiviere ein Modul: + +`sudo a2dismod {{modul}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2dismod --quiet {{modul}}` diff --git a/pages.de/linux/a2dissite.md b/pages.de/linux/a2dissite.md new file mode 100644 index 00000000000000..2ba92ba537881c --- /dev/null +++ b/pages.de/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Deaktiviert einen Apache virtuellen Host auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Deaktiviere einen virtuellen Host: + +`sudo a2dissite {{virtueller_host}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2dissite --quiet {{virtueller_host}}` diff --git a/pages.de/linux/a2enconf.md b/pages.de/linux/a2enconf.md new file mode 100644 index 00000000000000..d85824c3e9944c --- /dev/null +++ b/pages.de/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Aktiviert eine Apache-Konfigurationsdatei auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Aktiviere eine Konfigurationsdatei: + +`sudo a2enconf {{konfigurationsdatei}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2enconf --quiet {{konfigurationsdatei}}` diff --git a/pages.de/linux/a2enmod.md b/pages.de/linux/a2enmod.md new file mode 100644 index 00000000000000..3127d4d6c131e6 --- /dev/null +++ b/pages.de/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Aktiviert ein Apache-Modul auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Aktiviere ein Modul: + +`sudo a2enmod {{modul}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2enmod --quiet {{modul}}` diff --git a/pages.de/linux/a2ensite.md b/pages.de/linux/a2ensite.md new file mode 100644 index 00000000000000..5f534720493f43 --- /dev/null +++ b/pages.de/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Aktiviert einen Apache virtuellen Host auf Debian-basierten Betriebssystemen. +> Weitere Informationen: . + +- Aktiviere einen virtuellen Host: + +`sudo a2ensite {{virtueller_host}}` + +- Zeige keine Informationsnachrichten an: + +`sudo a2ensite --quiet {{virtueller_host}}` diff --git a/pages.de/linux/a2query.md b/pages.de/linux/a2query.md new file mode 100644 index 00000000000000..e9d8d0e4be87ec --- /dev/null +++ b/pages.de/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Zeigt Apache Laufzeitkonfigurationen auf Debian-basierten Betriebssystemen an. +> Weitere Informationen: . + +- Zeige aktivierte Apache-Module an: + +`sudo a2query -m` + +- Prüfe, ob ein bestimmtes Modul installiert ist: + +`sudo a2query -m {{modulname}}` + +- Zeige aktivierte virtuelle Hosts an: + +`sudo a2query -s` + +- Zeige das aktuell aktivierte Multi-Processing-Modul an: + +`sudo a2query -M` + +- Zeige die Apache-Versionsnummer an: + +`sudo a2query -v` diff --git a/pages.de/linux/abbr.md b/pages.de/linux/abbr.md new file mode 100644 index 00000000000000..dfacc18904baaa --- /dev/null +++ b/pages.de/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Abkürzungen für die fish shell verwalten. +> Die vom Nutzer definierten Abkürzungen werden nach der Eingabe durch die Langversionen ersetzt. +> Weitere Informationen: . + +- Neue Abkürzung hinzufügen: + +`abbr --add {{abkürzungsname}} {{befehl}} {{befehlsparameter}}` + +- Vorhandene Abkürzung umbenennen: + +`abbr --rename {{alter_name}} {{neuer_name}}` + +- Vorhandene Abkürzung löschen: + +`abbr --erase {{abkürzungsname}}` + +- Abkürzungen eines anderen Host über SSH importieren: + +`ssh {{host_name}} abbr --show | source` diff --git a/pages.de/linux/ac.md b/pages.de/linux/ac.md new file mode 100644 index 00000000000000..953d7ad6967b0d --- /dev/null +++ b/pages.de/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Zeigt an, wie lange Benutzer verbunden waren. +> Weitere Informationen: . + +- Zeigt wie viele Stunden der aktuelle Benutzer verbunden war: + +`ac` + +- Zeigt wie viele Stunden jeder Benutzer verbunden war: + +`ac --individual-totals` + +- Zeigt wie viele Stunden ein bestimmter Benutzer verbunden war: + +`ac --individual-totals {{nutzername}}` + +- Zeigt wie viele Stunden ein bestimmter Benutzer pro Tag verbunden war: + +`ac --daily-totals --individual-totals {{nutzername}}` + +- Zeigt zusätzliche Details: + +`ac --compatibility` diff --git a/pages.de/linux/acpi.md b/pages.de/linux/acpi.md new file mode 100644 index 00000000000000..0d8238ed18c303 --- /dev/null +++ b/pages.de/linux/acpi.md @@ -0,0 +1,28 @@ +# acpi + +> Zeigt den Akkustatus oder Temperatur-Informationen an. +> Weitere Informationen: . + +- Zeige Informationen über den Akku an: + +`acpi` + +- Zeige Informationen zur Temperatur an: + +`acpi -t` + +- Zeige Informationen über die Kühlung an: + +`acpi -c` + +- Zeige Temperatur-Informationen in Fahrenheit an: + +`acpi -tf` + +- Zeige alle Informationen an: + +`acpi -V` + +- Extrahiere Informationen von `/proc`, anstatt von `/sys`: + +`acpi -p` diff --git a/pages.de/linux/add-apt-repository.md b/pages.de/linux/add-apt-repository.md new file mode 100644 index 00000000000000..5092965b329a67 --- /dev/null +++ b/pages.de/linux/add-apt-repository.md @@ -0,0 +1,20 @@ +# add-apt-repository + +> Verwalte apt-Repository-Definitionen. +> Weitere Informationen: . + +- Füge ein neues apt-Repository hinzu: + +`add-apt-repository {{repository_spec}}` + +- Entferne ein apt-Repository: + +`add-apt-repository --remove {{repository_spec}}` + +- Aktualisiere den Paketcache nach dem Hinzufügen eines Repositories: + +`add-apt-repository --update {{repository_spec}}` + +- Erlaube das Herunterladen von Quellpaketen aus dem Repository: + +`add-apt-repository --enable-source {{repository_spec}}` diff --git a/pages.de/linux/addpart.md b/pages.de/linux/addpart.md new file mode 100644 index 00000000000000..c3277ef3751039 --- /dev/null +++ b/pages.de/linux/addpart.md @@ -0,0 +1,9 @@ +# addpart + +> Informiert den Linux-Kernel über die Existenz der angegebenen Partition. +> Dieser Befehl ist ein einfacher Wrapper um den `add partition` ioctl. +> Weitere Informationen: . + +- Informiere den Kernel über die Existenz der angegebenen Partition: + +`addpart {{gerät}} {{partition}} {{start}} {{länge}}` diff --git a/pages.de/linux/addr2line.md b/pages.de/linux/addr2line.md new file mode 100644 index 00000000000000..7b73407300b0b6 --- /dev/null +++ b/pages.de/linux/addr2line.md @@ -0,0 +1,16 @@ +# addr2line + +> Konvertiere Adressen von Binärdateien in Dateinamen und Zeilennummern. +> Weitere Informationen: . + +- Zeige den Dateinamen und die Zeilennummer des Quellcodes von einer Befehlsadresse einer ausführbaren Datei an: + +`addr2line --exe={{pfad/zur/ausführbaren_datei}} {{adresse}}` + +- Zeige den Funktionsnamen, Dateinamen und Zeilennummer an: + +`addr2line --exe={{pfad/zum/executable}} --functions {{adresse}}` + +- Entmangele den Funktionsnamen für C++ Code: + +`addr2line --exe={{pfad/zum/executable}} --functions --demangle {{adresse}}` diff --git a/pages.de/linux/adduser.md b/pages.de/linux/adduser.md new file mode 100644 index 00000000000000..81e620b6a29c5d --- /dev/null +++ b/pages.de/linux/adduser.md @@ -0,0 +1,24 @@ +# adduser + +> Tool um Benutzer hinzuzufügen. +> Weitere Informationen: . + +- Erstelle einen neuen Benutzer mit einem Standard-Home-Verzeichnis und Aufforderung an den Benutzer, ein Passwort festzulegen: + +`adduser {{benutzername}}` + +- Erstelle einen neuen Benutzer ohne Home-Verzeichnis: + +`adduser --no-create-home {{benutzername}}` + +- Erstelle einen neuen Benutzer mit einem Home-Verzeichnis unter dem angegebenen Pfad: + +`adduser --home {{pfad/zu/home}} {{benutzername}}` + +- Erstelle einen neuen Benutzer, bei dem die angegebene Shell als Anmeldeshell eingestellt ist: + +`adduser --shell {{pfad/zu/shell}} {{benutzername}}` + +- Erstelle einen neuen Benutzer und füge ihn zur angegebenen Gruppe hinzu: + +`adduser --ingroup {{gruppe}} {{benutzername}}` diff --git a/pages.de/linux/alien.md b/pages.de/linux/alien.md new file mode 100644 index 00000000000000..8c0e6ee4361077 --- /dev/null +++ b/pages.de/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> Ein Installations-Paket in ein anderes Format umwandeln. +> Weitere Informationen: . + +- Ein spezifisches Installationspaket in das Debian Format umwandeln (`.deb` Erweiterung): + +`sudo alien --to-deb {{pfad/zum/paket}}` + +- Ein spezifisches Installationspaket in das Red Hat Format umwandeln (`.rpm` Erweiterung): + +`sudo alien --to-rpm {{pfad/zum/paket}}` + +- Ein spezifisches Installationspaket in das Slackware Format umwandeln (`.tgz` Erweiterung): + +`sudo alien --to-tgz {{pfad/zum/paket}}` + +- Ein spezifisches Installationspaket in das Debian Format umwandeln und auf dem System installieren: + +`sudo alien --to-deb --install {{pfad/zum/paket}}` diff --git a/pages.de/linux/alpine.md b/pages.de/linux/alpine.md index 7aef99cd88b2c4..dbad8df65fb2ea 100644 --- a/pages.de/linux/alpine.md +++ b/pages.de/linux/alpine.md @@ -2,12 +2,13 @@ > Ein E-Mail und Usenet Client mit pico/nano-inspirierten Interface. > Unterstützt die meisten modernen IMAP Server. +> Weitere Informationen: . -- Öffne Apline: +- Öffne Alpine: `alpine` -- Öffne alpine im Email-Editor um eine Email an eine bestimmte Adresse zu verfassen: +- Öffne alpine im E-Mail-Editor, um eine E-Mail an eine bestimmte Adresse zu verfassen: `alpine {{email@example.net}}` diff --git a/pages.de/linux/alternatives.md b/pages.de/linux/alternatives.md new file mode 100644 index 00000000000000..3f8b050d3ca49f --- /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/amixer.md b/pages.de/linux/amixer.md new file mode 100644 index 00000000000000..ca34c43b25a30c --- /dev/null +++ b/pages.de/linux/amixer.md @@ -0,0 +1,12 @@ +# amixer + +> Mixer für den ALSA-Soundkarten-Treiber. +> Weitere Informationen: . + +- Erhöhe den Gesamtpegel um 10%: + +`amixer -D pulse sset Master {{10%+}}` + +- Verringere den Gesamtpegel um 10%: + +`amixer -D pulse sset Master {{10%-}}` diff --git a/pages.de/linux/anbox.md b/pages.de/linux/anbox.md new file mode 100644 index 00000000000000..29f2b1f2da3e95 --- /dev/null +++ b/pages.de/linux/anbox.md @@ -0,0 +1,8 @@ +# anbox + +> Führe Android-Anwendungen auf jedem GNU/Linux-Betriebssystem aus. +> Weitere Informationen: . + +- Starte Anbox im App Manager: + +`anbox launch --oackage={{org.anbox.appmgr}} --component={{org.anbox.appmgr.AppViewActivity}}` diff --git a/pages.de/linux/apache2ctl.md b/pages.de/linux/apache2ctl.md new file mode 100644 index 00000000000000..a2b5860051b82c --- /dev/null +++ b/pages.de/linux/apache2ctl.md @@ -0,0 +1,25 @@ +# apache2ctl + +> Das CLI Tool um den Apache HTTP Web Server zu administrieren. +> Dieser Befehl wird mit Debian-basierten Betriebssystemen geliefert, für RHEL siehe `httpd`. +> Weitere Informationen: . + +- Starte den Apache daemon. Gibt einen Fehler aus, wenn er bereits läuft: + +`sudo apache2ctl start` + +- Stoppe den Apache Daemon: + +`sudo apache2ctl stop` + +- Starte den Apache Daemon neu: + +`sudo apache2ctl restart` + +- Überprüfe die Syntax einer Konfigurationsdatei: + +`sudo apache2ctl -t` + +- Liste alle geladenen Module auf: + +`sudo apache2ctl -M` diff --git a/pages.de/linux/apk.md b/pages.de/linux/apk.md new file mode 100644 index 00000000000000..416a7a3754607e --- /dev/null +++ b/pages.de/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> Alpine Linux-Paketverwaltungstool. +> Weitere Informationen: . + +- Aktualisiere die Indizes von allen externen Repositories: + +`apk update` + +- Installiere ein neues Paket: + +`apk add {{paket}}` + +- Entferne ein Paket: + +`apk del {{paket}}` + +- Repariere oder aktualisiere ein Paket, ohne die Hauptabhängigkeiten zu ändern: + +`apk fix {{paket}}` + +- Suche Pakete mit einem Schlüsselwort: + +`apk search {{schlüsselwort}}` + +- Erhalte Informationen über ein bestimmtes Paket: + +`apk info {{paket}}` diff --git a/pages.de/linux/aplay.md b/pages.de/linux/aplay.md new file mode 100644 index 00000000000000..ebc059baa1457b --- /dev/null +++ b/pages.de/linux/aplay.md @@ -0,0 +1,16 @@ +# aplay + +> Command-line Musik Player für den ALSA-Soundkarten-Treiber. +> Weitere Informationen: . + +- Spiele eine bestimmte Datei (Abtastrate, Bittiefe, etc. werden automatisch für das Dateiformat erkannt): + +`aplay {{pfad/zu/datei}}` + +- Spiele die ersten 10 Sekunden einer bestimmten Datei mit 2500 Hz: + +`aplay --duration={{10}} --rate={{2500}} {{pfad/zu/datei}}` + +- Spiele die rohe Datei mit 22050 Hz, mono, 8-bit, als Mu-Lw `.au` Datei: + +`aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{pfad/zu/datei}}` diff --git a/pages.de/linux/apport-bug.md b/pages.de/linux/apport-bug.md new file mode 100644 index 00000000000000..ba6cbebd25f479 --- /dev/null +++ b/pages.de/linux/apport-bug.md @@ -0,0 +1,20 @@ +# apport-bug + +> Reiche einen Fehlerbericht über Ubuntu ein. +> Weitere Informationen: . + +- Reiche einen Fehlerbericht über das gesamte System ein: + +`apport-bug` + +- Reiche einen Fehlerbericht über ein bestimmtes Paket ein: + +`apport-bug {{paket}}` + +- Reiche einen Fehlerbericht über eine bestimmte ausführbare Datei ein: + +`apport-bug {{pfad/zum/executable}}` + +- Reiche einen Fehlerbericht über einen bestimmten Prozess ein: + +`apport-bug {{PID}}` diff --git a/pages.de/linux/apt-add-repository.md b/pages.de/linux/apt-add-repository.md index 08a87351d83c01..cc964e88427d41 100644 --- a/pages.de/linux/apt-add-repository.md +++ b/pages.de/linux/apt-add-repository.md @@ -1,7 +1,7 @@ # apt-add-repository > Editiere die Repository-Listen. -> Mehr Informationen: . +> Weitere Informationen: . - Füge ein neues Repository hinzu: @@ -15,6 +15,6 @@ `apt-add-repository --update {{repository}}` -- Aktiviere Source Pakete: +- Aktiviere Source-Pakete: `apt-add-repository --enable-source {{repository}}` diff --git a/pages.de/linux/apt-cache.md b/pages.de/linux/apt-cache.md new file mode 100644 index 00000000000000..a8f6ae3cfe5dd3 --- /dev/null +++ b/pages.de/linux/apt-cache.md @@ -0,0 +1,24 @@ +# apt-cache + +> Debian und Ubuntu-Paketsuche. +> Weitere Informationen: . + +- Suche nach einem Paket in deinen aktuellen Paketquellen: + +`apt-cache search {{suchbegriff}}` + +- Zeige die Paketinformationen zu einem Paket: + +`apt-cache show {{paket}}` + +- Überprüfe ob ein Paket installiert und up to date ist: + +`apt-cache policy {{paket}}` + +- Zeige die Abhängigkeiten eines Pakets: + +`apt-cache depends {{paket}}` + +- Zeige Pakete die von einem bestimmten Paket abhängen: + +`apt-cache rdepends {{paket}}` diff --git a/pages.de/linux/apt-file.md b/pages.de/linux/apt-file.md new file mode 100644 index 00000000000000..861feda85e0c82 --- /dev/null +++ b/pages.de/linux/apt-file.md @@ -0,0 +1,20 @@ +# apt-file + +> Suche nach Dateien in apt-Paketen, auch in den nicht-installierten. +> Weitere Informationen: . + +- Aktualisiere die Metadatenbank: + +`sudo apt update` + +- Suche nach Paketen, die die/den spezifizierten Pfad/Datei enthalten: + +`apt-file {{search|find}} {{pfad/zur/datei}}` + +- Liste die Inhalte eines bestimmten Pakets auf: + +`apt-file {{show|list}} {{paketname}}` + +- Suche nach Paketen auf die die Regular Expression zutrifft: + +`apt-file {{search|find}} --regexp {{regular_expression}}` diff --git a/pages.de/linux/apt-get.md b/pages.de/linux/apt-get.md index 4ab38d61d9cb2a..4fd62f6f306345 100644 --- a/pages.de/linux/apt-get.md +++ b/pages.de/linux/apt-get.md @@ -2,13 +2,13 @@ > Debian und Ubuntu Paket Management Tool. > Suche mit `apt-cache` nach Paketen. -> Mehr Informationen: . +> Weitere Informationen: . -- Aktualisiere die Liste der Paketquellen (es wird empfohlen diesen Befehl zu Begin auszuführen): +- Aktualisiere die Liste der Paketquellen (es wird empfohlen diesen Befehl zu Beginn auszuführen): `apt-get update` -- Installiere ein Paket oder aktualisiere es zur neusten Version: +- Installiere ein Paket oder aktualisiere es zur neuesten Version: `apt-get install {{paket}}` @@ -20,11 +20,11 @@ `apt-get purge {{paket}}` -- Aktualisiere alle Pakete auf die neuste Version: +- Aktualisiere alle Pakete auf die neueste Version: `apt-get upgrade` -- Reinige das Repository +- Reinige das Repository: `apt-get autoclean` diff --git a/pages.de/linux/apt-key.md b/pages.de/linux/apt-key.md new file mode 100644 index 00000000000000..93dfdce85fcd69 --- /dev/null +++ b/pages.de/linux/apt-key.md @@ -0,0 +1,25 @@ +# apt-key + +> Schlüssel-Management-Tool für den APT-Paket-Manager auf Debian und Ubuntu. +> Notiz: `apt-key` ist deprecated (außer für `apt-key del` in Maintainer Scripts). +> Weitere Informationen: . + +- Liste alle vertrauten Schlüssel auf: + +`apt-key list` + +- Füge einen Schlüssel hinzu: + +`apt-key add {{public_key_file.asc}}` + +- Lösche einen Schlüssel: + +`apt-key del {{key_id}}` + +- Füge einen Remote-Schlüssel hinzu: + +`wget -qO - {{https://host.tld/filename.key}} | apt-key add -` + +- Füge einen Schlüssel von einem Schlüsselserver hinzu nur mit der Schlüssel-ID: + +`apt-key adv --keyserver {{pgp.mit.edu}} --recv {{KEYID}}` diff --git a/pages.de/linux/apt-mark.md b/pages.de/linux/apt-mark.md new file mode 100644 index 00000000000000..7f7ae5c4820822 --- /dev/null +++ b/pages.de/linux/apt-mark.md @@ -0,0 +1,24 @@ +# apt-mark + +> Tool um den Status eines installierten Paketes zu verändern. +> Weitere Informationen: . + +- Markiere ein Paket als automatisch installiert: + +`sudo apt-mark auto {{paketname}}` + +- Halte ein Paket auf seiner aktuellen Version und verhindere dass es aktualisiert wird: + +`sudo apt-mark hold {{paketname}}` + +- Erlaube dass ein Paket wieder aktualisiert werden darf: + +`sudo apt-mark unhold {{paketname}}` + +- Zeige manuell installierte Pakete: + +`apt-mark showmanual` + +- Zeige gehaltene Pakete die nicht aktualisiert werden dürfen: + +`apt-mark showhold` diff --git a/pages.de/linux/apt.md b/pages.de/linux/apt.md index ff0f2bc92c49b4..673a34f0066efb 100644 --- a/pages.de/linux/apt.md +++ b/pages.de/linux/apt.md @@ -1,10 +1,10 @@ # apt > Debian und Ubuntu Paket Management Tool. -> Empfohlene Alternative zu apt-get seit Ubuntu 16.04. -> Mehr Informationen: . +> Empfohlene Alternative zu `apt-get` seit Ubuntu 16.04. +> Weitere Informationen: . -- Aktualisiere die Liste der Paketquellen (es wird empfohlen diesen Befehl zu Begin auszuführen): +- Aktualisiere die Liste der Paketquellen (es wird empfohlen, diesen Befehl zu Beginn auszuführen): `sudo apt update` @@ -24,6 +24,10 @@ `sudo apt remove {{paket}}` +- Aktualisiere alle installierten Pakete auf die neueste Version: + +`sudo apt upgrade` + - Liste alle Pakete auf: `apt list` diff --git a/pages.de/linux/aptitude.md b/pages.de/linux/aptitude.md new file mode 100644 index 00000000000000..7076c1d4ae6927 --- /dev/null +++ b/pages.de/linux/aptitude.md @@ -0,0 +1,36 @@ +# aptitude + +> Debian und Ubuntu Paket Management Tool. +> Weitere Informationen: . + +- Synchronisiere die Paketliste und verfügbaren Versionen. Dieser Command sollte zuerst ausgeführt werden bevor weitere aptitude Commands ausgeführt werden: + +`aptitude update` + +- Installiere ein neues Paket und seine Abhängigkeiten: + +`aptitude install {{paket}}` + +- Suche nach einem Paket: + +`aptitude search {{paket}}` + +- Suche nach einem installierten Paket (`?installed` ist ein aptitude Suchbegriff): + +`aptitude search ?installed ({{paket}})` + +- Entferne ein Paket und alle Abhängigkeiten: + +`aptitude remove {{paket}}` + +- Aktualisiere installierte Pakete auf die neusten Versionen: + +`aptitude upgrade` + +- Aktualisiere installierte Pakete (wie `aptitude upgrade`), inklusive obsoleter Pakete und installiere zusätzliche Pakete um die neuen Paket-Abhängigkeiten zu erfüllen: + +`aptitude full-upgrade` + +- Friere ein installiertes Paket ein und verhindere, dass es automatisch aktualisiert wird: + +`aptitude hold '?installed({{paket}})'` diff --git a/pages.de/linux/arch-chroot.md b/pages.de/linux/arch-chroot.md new file mode 100644 index 00000000000000..c5ffa3543b0775 --- /dev/null +++ b/pages.de/linux/arch-chroot.md @@ -0,0 +1,20 @@ +# arch-chroot + +> Erweiterter `chroot`-Befehl zur Unterstützung des Arch-Linux-Installationsprozesses. +> Weitere Informationen: . + +- Starte eine interaktive Shell (Standardmäßig `bash`) in einem neuen Root-Verzeichnis: + +`arch-chroot {{pfad/zu/neuem/root}}` + +- Spezifiziere den Benutzer (nicht der jetzige Benutzer) der die Shell ausführt: + +`arch-chroot -u {{anderer_benutzer}} {{pfad/zu/neuem/root}}` + +- Führe einen benutzerdefinierten Befehl (anstelle des Standardbefehls `bash`) im neuen Root-Verzeichnis aus: + +`arch-chroot {{pfad/zu/neuem/root}} {{befehl}} {{befehlsparameter}}` + +- Gib die Shell an, die nicht die Standard-Shell `bash` ist (in diesem Fall sollte das Paket `zsh` auf dem Zielsystem installiert worden sein): + +`arch-chroot {{pfad/zu/neuem/root}} {{zsh}}` diff --git a/pages.de/linux/archey.md b/pages.de/linux/archey.md new file mode 100644 index 00000000000000..228d8d4c048bc3 --- /dev/null +++ b/pages.de/linux/archey.md @@ -0,0 +1,8 @@ +# archey + +> Simples Tool um System-Informationen stylisch zu präsentieren. +> Weitere Informationen: . + +- Zeige System-Informationen: + +`archey` diff --git a/pages.de/linux/archinstall.md b/pages.de/linux/archinstall.md new file mode 100644 index 00000000000000..31718ff4298e66 --- /dev/null +++ b/pages.de/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> Geführte Arch Linux-Installation. +> Weitere Informationen: . + +- Starte den interaktiven Installer: + +`àrchinstall` + +- Starte einen voreingestellten Installer: + +`archinstall {{minimal|unattended}}` diff --git a/pages.de/linux/archlinux-java.md b/pages.de/linux/archlinux-java.md new file mode 100644 index 00000000000000..278c1ace89c0e7 --- /dev/null +++ b/pages.de/linux/archlinux-java.md @@ -0,0 +1,20 @@ +# archlinux-java + +> Ein Helfer Script das Funktionen für Java-Umgebungen bereitstellt. +> Weitere Informationen: . + +- Liste installierte Java-Umgebungen: + +`archlinux-java status` + +- Setze die default Java-Umgebung: + +`archlinux-java set {{java_environment}}` + +- Entferne die default Java-Umgebung: + +`archlinux-java unset` + +- Setze die default Java-Umgebung automatisch: + +`archlinux-java fix` diff --git a/pages.de/linux/arecord.md b/pages.de/linux/arecord.md new file mode 100644 index 00000000000000..c28d12081b3b7c --- /dev/null +++ b/pages.de/linux/arecord.md @@ -0,0 +1,24 @@ +# arecord + +> Sound Recorder für den ALSA-Soundkarten-Treiber. +> Weitere Informationen: . + +- Nehme einen Schnipsel in CD-Qualität auf (beende die Aufnahme mit CTRL-C): + +`arecord -vv --format=cd {{pfad/zur/datei.wav}}` + +- Nehme einen Schnipsel in CD-Qualität auf mit einer festen Länge von 10 Sekunden: + +`arecord -vv --format=cd --duration={{10}} {{pfad/zur/datei.wav}}` + +- Nehme einen Schnipsel auf und speichere es als MP3 (beende die Aufnahme mit CTRL-C): + +`arecord -vv --format=cd --file-type raw | lame -r - {{path/to/file.mp3}}` + +- Liste alle Soundkarten und digitalen Ausgabe Geräte: + +`arecord --list-devices` + +- Benutze das interaktive Interface (z.B. Space oder Enter für Play oder Pause): + +`arecord --interactive` diff --git a/pages.de/linux/arithmetic.md b/pages.de/linux/arithmetic.md new file mode 100644 index 00000000000000..d58bb219e9246f --- /dev/null +++ b/pages.de/linux/arithmetic.md @@ -0,0 +1,16 @@ +# arithmetic + +> Quiz über simple arithmetische Probleme. +> Weitere Informationen: . + +- Starte ein arithmetisches Quiz: + +`arithmetic` + +- Spezifiziere einen oder mehr arithmetische [O]peratoren um Probleme mit ihnen zu bekommen: + +`arithmetic -o {{+|-|x|/}}` + +- Gib eine Reichweite. Additions- und Multiplikationsprobleme werden Zahlen zwischen 0 und der gegebenen Reichweite enthalten. Subtraktionen und Divisionen werden Zahlen zwischen -1 und der gegebenen Reichweite enthalten: + +`arithmetic -r {{7}}` diff --git a/pages.de/linux/ark.md b/pages.de/linux/ark.md new file mode 100644 index 00000000000000..baaae3aa614433 --- /dev/null +++ b/pages.de/linux/ark.md @@ -0,0 +1,16 @@ +# ark + +> KDE-Archivierungstool. +> Weitere Informationen: . + +- Extrahiere ein Archiv ins aktuelle Verzeichnis: + +`ark --batch {{archiv}}` + +- Verändere das Verzeichnis in das extrahiert wird: + +`ark --batch --destination {{pfad/zum/verzeichnis}} {{archiv}}` + +- Erstelle ein Archiv wenn es nicht existiert und füge Dateien hinzu: + +`ark --add-to {{archiv}} {{datei1}} {{datei2}}` diff --git a/pages.de/linux/as.md b/pages.de/linux/as.md new file mode 100644 index 00000000000000..be4a6679693051 --- /dev/null +++ b/pages.de/linux/as.md @@ -0,0 +1,21 @@ +# as + +> Portabler GNU assembler. +> Hauptsächlich beabsichtigt um output von `gcc` für `ld` vorzubereiten. +> Weitere Informationen: . + +- Assemble eine Datei und schreibe den Output in eine in `a.out`: + +`as {{datei.s}}` + +- Assemble den Output einer gegebenen Datei: + +`as {{datei.s}} -o {{out.o}}` + +- Generiere den Output schneller indem Leerzeichen und Kommentare nicht verarbeitet werden. (Sollte nur für vertrauenswürdige Compiler benutzt werden): + +`as -f {{datei.s}}` + +- Inkludiere einen gegebenen Pfad in der Liste von Verzeichnissen für die Suche nach Dateien: + +`as -I {{pfad/zum/verzeichnis}} {{datei.s}}` diff --git a/pages.de/linux/ascii.md b/pages.de/linux/ascii.md new file mode 100644 index 00000000000000..234b4e07a90143 --- /dev/null +++ b/pages.de/linux/ascii.md @@ -0,0 +1,36 @@ +# ascii + +> Zeige ASCII-Aliase von Buchstaben. +> Weitere Informationen: . + +- Zeige ASCII-Aliase eines Buchstabens: + +`ascii {{a}}` + +- Zeige ASCII-Aliase im kurzen script-freundlichen Modus: + +`ascii -t {{a}}` + +- Zeige ASCII-Aliase von mehreren Buchstaben: + +`ascii -s {{tldr}}` + +- Zeige die ASCII-Tabelle im Dezimalsystem: + +`ascii -d` + +- Zeige die ASCII-Tabelle im Hexadezimalsystem: + +`ascii -x` + +- Zeige die ASCII-Tabelle im Oktalsystem: + +`ascii -o` + +- Zeige die ASCII-Tabelle im Binärsystem: + +`ascii -b` + +- Zeige eine Übersicht über alle Optionen und die komplette ASCII-Tabelle: + +`ascii` diff --git a/pages.de/linux/asciiart.md b/pages.de/linux/asciiart.md new file mode 100644 index 00000000000000..de72956523dedc --- /dev/null +++ b/pages.de/linux/asciiart.md @@ -0,0 +1,28 @@ +# asciiart + +> Konvertiere Bilder zu ASCII. +> Weitere Informationen: . + +- Lese ein Bild aus einer Datei und zeige es als ASCII: + +`asciiart {{pfad/zur/datei.jpg}}` + +- Lese ein Bild aus einer URL und zeige es als ASCII: + +`asciiart {{www.example.com/bild.jpg}}` + +- Wähle die Breite der Ausgabe (standardmäßig 100): + +`asciiart -width {{50}} {{pfad/zum/bild.jpg}}` + +- Zeige die Ausgabe in Farbe: + +`asciiart --color {{pfad/zum/bild.jpg}}` + +- Wähle das Ausgabeformat (standardmäßig text): + +`asciiart --format {{text|html}} {{pfad/zum/bild.jpg}}` + +- Invertiere die Zeichentabelle: + +`asciiart --invert-chars {{pfad/zum/bild.jpg}}` diff --git a/pages.de/linux/aspell.md b/pages.de/linux/aspell.md new file mode 100644 index 00000000000000..9f7745d7af8e34 --- /dev/null +++ b/pages.de/linux/aspell.md @@ -0,0 +1,24 @@ +# aspell + +> Interaktiver Korrekturleser. +> Weitere Informationen: . + +- Überprüfe eine einzelne Datei auf Fehler: + +`aspell check {{pfad/zur/datei}}` + +- Liste falsch geschriebene Worte von Standard Input: + +`cat {{file}} | aspell list` + +- Zeige verfügbare Wörterbuchsprachen: + +`aspell dicts` + +- Nutze `aspell` mit einem anderen Wörterbuch (nimmt 2-Zeichen-Locale laut ISO 639 Sprach Code): + +`aspell --lang={{cs}}` + +- Zeige alle falsch geschriebenen Wörter von Standard Input und ignoriere alle Wörter in einer persönlichen Wortliste: + +`cat {{file}} | aspell --personal={{persönliche-wort-liste.pws}} list` diff --git a/pages.de/linux/batcat.md b/pages.de/linux/batcat.md new file mode 100644 index 00000000000000..2e8ad9e8edc4f1 --- /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/beep.md b/pages.de/linux/beep.md new file mode 100644 index 00000000000000..ea0ed6844a4879 --- /dev/null +++ b/pages.de/linux/beep.md @@ -0,0 +1,24 @@ +# beep + +> Ein Befehl, um den PC-Lautsprecher zu steuern. +> Weitere Informationen: . + +- Gib einen Ton aus: + +`beep` + +- Gib einen Ton mehrmals aus: + +`beep -r {{wiederholungen}}` + +- Gib einen Ton mit einer bestimmten Frequenz (Hz) und Länge (Millisekunden) aus: + +`beep -f {{frequenz}} -l {{länge}}` + +- Spiele jede neue Frequenz und Länge als einen eigenen Ton: + +`beep -f {{frequenz}} -l {{länge}} -n -f {{frequenz}} -l {{länge}}` + +- Spiele die C-Dur-Tonleiter: + +`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.de/linux/bspwm.md b/pages.de/linux/bspwm.md new file mode 100644 index 00000000000000..ea0345e455bd5b --- /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/cal.md b/pages.de/linux/cal.md new file mode 100644 index 00000000000000..74fcd5606c4e23 --- /dev/null +++ b/pages.de/linux/cal.md @@ -0,0 +1,24 @@ +# cal + +> Zeigt einen Kalender an, in dem der aktuelle Tag markiert ist. +> Weitere Informationen: . + +- Zeige den Kalender für den aktuellen Monat an: + +`cal` + +- Zeige den vorherigen, aktuellen und nächsten Monat an: + +`cal -3` + +- Verwende Montag als ersten Tag der Woche: + +`cal --monday` + +- Zeige den Kalender für ein bestimmtes Jahr an (4 Ziffern): + +`cal {{jahr}}` + +- Zeige den Kalender für einen bestimmten Monat eines Jahres an: + +`cal {{monat}} {{jahr}}` diff --git a/pages.de/linux/cc.md b/pages.de/linux/cc.md new file mode 100644 index 00000000000000..b68beb95eddcd2 --- /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/certbot.md b/pages.de/linux/certbot.md index b50bfcaa3d2bf5..1f2184871d8ded 100644 --- a/pages.de/linux/certbot.md +++ b/pages.de/linux/certbot.md @@ -2,7 +2,7 @@ > The Let's Encrypt Agent zum automatischen Erhalten und Erneuern von TLS-Zertifikaten. > Nachfolger von `letsencrypt`. -> Mehr Informationen: . +> Weitere Informationen: . - Beziehe ein neues Zertifikat über die webroot-Autorisierung, aber ohne dieses automatisch zu installieren: @@ -24,6 +24,6 @@ `sudo certbot --webroot --webroot-path {{pfad/zu/webroot}} --domain {{subdomain.beispiel.de}} --dry-run` -- Beziehe eine Test-Zertifikat: +- Beziehe ein Test-Zertifikat: `sudo certbot --webroot --webroot-path {{pfad/zu/webroot}} --domain {{subdomain.beispiel.de}} --test-cert` diff --git a/pages.de/linux/cfdisk.md b/pages.de/linux/cfdisk.md index 687aa13fffab3f..e5ae5032e3a7d6 100644 --- a/pages.de/linux/cfdisk.md +++ b/pages.de/linux/cfdisk.md @@ -1,7 +1,7 @@ # cfdisk > Ein Programm zur Verwaltung von Partitionstabellen mittels einer Curses-basierten UI. -> Mehr Informationen: . +> Weitere Informationen: . - Öffne das Partitionierungsinterface für eine bestimmte Festplatte: diff --git a/pages.de/linux/cgroups.md b/pages.de/linux/cgroups.md new file mode 100644 index 00000000000000..ec77b58d6b16fb --- /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/cp.md b/pages.de/linux/cp.md new file mode 100644 index 00000000000000..d12bb6fe6d8508 --- /dev/null +++ b/pages.de/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Kopiere Dateien und Verzeichnisse. +> Weitere Informationen: . + +- Kopiere eine Datei an einen anderen Ort: + +`cp {{pfad/zur/ausgangs_datei.ext}} {{pfad/zur/ziel_datei.ext}}` + +- Kopiere eine Datei in ein anderes Verzeichnis und behalte den Dateinamen bei: + +`cp {{pfad/zur/ausgang_datei.ext}} {{pfad/zum/ziel_verzeichnis}}` + +- Kopiere die Inhalte eines Verzeichnisses rekursiv zu einem neuen Ort (wenn das Ziel existiert, wird das Verzeichnis ins bestehende Ziel Verzeichnis kopiert): + +`cp -r {{pfad/zum/ausgangs_verzeichnis}} {{pfad/zum/ziel_verzeichnis}}` + +- Kopiere ein Verzeichnis rekursiv im ausführlichen Modus (zeigt die Dateien die kopiert werden): + +`cp -vr {{pfad/zum/ausgangs_verzeichnis}} {{pfad/zum/ziel_verzeichnis}}` + +- Kopiere text Dateien zu einem anderen Ort im interaktiven Modus (fragt die Nutzer:in bevor eine Datei überschrieben wird): + +`cp -i {{*.txt}} {{pfad/zum/ziel_verzeichnis}}` + +- Folge symbolischen Verzeichnislinks vorm Kopieren: + +`cp -L {{link}} {{pfad/zum/ziel_verzeichnis}}` + +- Benutze den vollen Pfad der Ausgangsdateien und erstelle alle fehlenden Verzeichnisse beim Kopieren: + +`cp --parents {{quelle/pfad/zur/datei}} {{pfad/zur/ziel_datei}}` diff --git a/pages.de/linux/cuyo.md b/pages.de/linux/cuyo.md new file mode 100644 index 00000000000000..45752093446455 --- /dev/null +++ b/pages.de/linux/cuyo.md @@ -0,0 +1,20 @@ +# cuyo + +> Tetris-ähnliches Spiel. +> Weitere Informationen: . + +- Starte ein neues Spiel: + +`cuyo` + +- Verschiebe die Teile horizontal: + +`{{A|D}} oder Pfeiltaste {{Links|Rechts}}` + +- Drehe die Teile: + +`{{W|Pfeiltaste nach oben}}` + +- Lasse die Teile schnell fallen: + +`{{S|Pfeiltaste nach unten}}` diff --git a/pages.de/linux/dnf.md b/pages.de/linux/dnf.md index 7444722004eba8..cac86aa5f081ca 100644 --- a/pages.de/linux/dnf.md +++ b/pages.de/linux/dnf.md @@ -1,9 +1,9 @@ # dnf > Paketmanagement Tool für RHEL, Fedora, und CentOS (ersetzt yum). -> Mehr Informationen: . +> Weitere Informationen: . -- Aktualisiere alle Pakete auf die neuste Version: +- Aktualisiere alle Pakete auf die neueste Version: `sudo dnf upgrade` diff --git a/pages.de/linux/dpkg.md b/pages.de/linux/dpkg.md new file mode 100644 index 00000000000000..1addee9a0055e5 --- /dev/null +++ b/pages.de/linux/dpkg.md @@ -0,0 +1,29 @@ +# dpkg + +> Debian Paketmanager. +> Manche Unterbefehle wie `dpkg deb` sind separat dokumentiert. +> Weitere Informationen: . + +- Installiere ein Paket: + +`dpkg -i {{pfad/zu/datei.deb}}` + +- Entferne ein Paket: + +`dpkg -r {{paketname}}` + +- Liste installierte Pakete auf: + +`dpkg -l {{muster}}` + +- Liste die Inhalte eines Pakets auf: + +`dpkg -L {{paketname}}` + +- Liste die Inhalte einer lokalen Paketdatei auf: + +`dpkg -c {{pfad/zu/datei.deb}}` + +- Finde heraus welche Pakete eine Datei besitzen: + +`dpkg -S {{dateiname}}` diff --git a/pages.de/linux/esa-snap.md b/pages.de/linux/esa-snap.md new file mode 100644 index 00000000000000..f2beb5b8990fc9 --- /dev/null +++ b/pages.de/linux/esa-snap.md @@ -0,0 +1,12 @@ +# snap + +> Sentinel Application Platform (SNAP) für die Prozessierung von Satellitendaten der Europäischen Raumfahrtagentur (ESA). +> Weitere Informationen: . + +- Zeige alle Updates an: + +`snap --nosplash --nogui --modules --list --refresh` + +- Zeige Hilfe an: + +`snap --help` diff --git a/pages.de/linux/google-chrome.md b/pages.de/linux/google-chrome.md new file mode 100644 index 00000000000000..8dc9542ffbc2b4 --- /dev/null +++ b/pages.de/linux/google-chrome.md @@ -0,0 +1,12 @@ +# google-chrome + +> Der Webbrowser von Google. +> Weitere Informationen: . + +- Starte mit einem benutzerdefinierten Profilverzeichnis: + +`google-chrome --user-data-dir={{pfad/zu/verzeichnis}}` + +- Starte ohne CORS-Validierung, nützlich zum Testen einer API: + +`google-chrome --user-data-dir={{pfad/zu/verzeichnis}} --disable-web-security` diff --git a/pages.de/linux/ip-address.md b/pages.de/linux/ip-address.md index ae79bbff1542e5..737675c22576b2 100644 --- a/pages.de/linux/ip-address.md +++ b/pages.de/linux/ip-address.md @@ -1,6 +1,7 @@ # ip address > IP Adressen Management Unterbefehl. +> Weitere Informationen: . - Zeige Netzwerk-Interfaces mit ihren Adressen: diff --git a/pages.de/linux/ip-route-list.md b/pages.de/linux/ip-route-list.md new file mode 100644 index 00000000000000..4d0ff5925ee466 --- /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/ip.md b/pages.de/linux/ip.md index 723f05e50a4053..49e0bfec51c664 100644 --- a/pages.de/linux/ip.md +++ b/pages.de/linux/ip.md @@ -1,6 +1,7 @@ # ip > Zeige und manipuliere routing, Geräte, Policy routing und Tunnel. +> Weitere Informationen: . - Zeige Interfaces mit detaillierten Informationen: @@ -22,7 +23,7 @@ `ip neighbour` -- Schaltee ein bestimmten Interface ein oder aus: +- Schalte ein bestimmtes Interface ein oder aus: `ip link set {{interface}} {{up|down}}` diff --git a/pages.de/linux/ipcalc.md b/pages.de/linux/ipcalc.md new file mode 100644 index 00000000000000..4ab10789a0ddaa --- /dev/null +++ b/pages.de/linux/ipcalc.md @@ -0,0 +1,24 @@ +# ipcalc + +> Einfache Operationen und Berechnungen mit IP-Adressen und Netzwerken durchführen. +> Weitere Informationen: . + +- Zeige Informationen über eine Adresse oder ein Netzwerk mit einer bestimmten Subnetzmaske an: + +`ipcalc {{1.2.3.4}} {{255.255.255.0}}` + +- Zeige Informationen über eine Adresse oder ein Netzwerk in CIDR-Notation an: + +`ipcalc {{1.2.3.4}}/{{24}}` + +- Zeige die Broadcast-Adresse einer Adresse oder eines Netzwerks an: + +`ipcalc -b {{1.2.3.4}}/{{30}}` + +- Zeige die Netzwerkadresse der angegebenen IP-Adresse und Netzmaske an: + +`ipcalc -n {{1.2.3.4}}/{{24}}` + +- Zeige geografische Informationen zu einer bestimmten IP-Adresse an: + +`ipcalc -g {{1.2.3.4}}` diff --git a/pages.de/linux/lastb.md b/pages.de/linux/lastb.md new file mode 100644 index 00000000000000..7258b6e8793bc7 --- /dev/null +++ b/pages.de/linux/lastb.md @@ -0,0 +1,24 @@ +# lastb + +> Zeigt eine Liste der zuletzt angemeldeten Benutzer an. +> Weitere Informationen: . + +- Zeige eine Liste aller zuletzt angemeldeten Benutzer an: + +`sudo lastb` + +- Zeige eine Liste aller zuletzt angemeldeten Benutzer seit einem bestimmten Zeitpunkt an: + +`sudo lastb --since {{YYYY-MM-DD}}` + +- Zeige eine Liste aller zuletzt angemeldeten Benutzer bis zu einem bestimmten Zeitpunkt an: + +`sudo lastb --until {{YYYY-MM-DD}}` + +- Zeige eine Liste aller angemeldeten Benutzer zu einem bestimmten Zeitpunkt an: + +`sudo lastb --present {{hh:mm}}` + +- Zeige eine Liste aller zuletzt angemeldeten Benutzer und übersetze die IP zu einem Hostnamen: + +`sudo lastb --dns` diff --git a/pages.de/linux/lastcomm.md b/pages.de/linux/lastcomm.md new file mode 100644 index 00000000000000..caaf4d366576c0 --- /dev/null +++ b/pages.de/linux/lastcomm.md @@ -0,0 +1,20 @@ +# lastcomm + +> Zeige die zuletzt ausgeführten Befehle an. +> Weitere Informationen: . + +- Gib Informationen zu allen Befehlen in acct aus (Aufzeichnungsdatei): + +`lastcomm` + +- Zeige die ausgeführten Befehle eines bestimmten Benutzers an: + +`lastcomm --user {{benutzer}}` + +- Zeige Informationen zu einem bestimmten Befehl an, der auf dem System ausgeführt wird: + +`lastcomm --command {{befehl}}` + +- Zeige Informationen zu Befehlen an, die auf einem bestimmten Terminal ausgeführt wurden: + +`lastcomm --tty {{terminal_name}}` diff --git a/pages.de/linux/lastlog.md b/pages.de/linux/lastlog.md new file mode 100644 index 00000000000000..0d96dce1b8d9b6 --- /dev/null +++ b/pages.de/linux/lastlog.md @@ -0,0 +1,20 @@ +# lastlog + +> Zeigt den letzten Login aller Benutzer oder eines bestimmten Benutzers an. +> Weitere Informationen: . + +- Zeige den letzten Login aller Benutzer an: + +`lastlog` + +- Zeige den lastlog Datensatz des angegebenen Benutzers an: + +`lastlog --user {{benutzername}}` + +- Zeige Datensätze älter als 7 Tage an: + +`lastlog --before {{7}}` + +- Zeige Datensätze jünger als 3 Tage an: + +`lastlog --time {{3}}` diff --git a/pages.de/linux/ldconfig.md b/pages.de/linux/ldconfig.md new file mode 100644 index 00000000000000..547f8e4246b20b --- /dev/null +++ b/pages.de/linux/ldconfig.md @@ -0,0 +1,16 @@ +# ldconfig + +> Symbolische Verknüpfungen und Zwischenspeicher für Abhängigkeiten von gemeinsam genutzten Bibliotheken konfigurieren. +> Weitere Informationen: . + +- Aktualisiere symbolische Verknüpfungen und erstelle den Zwischenspeicher neu (wird normalerweise ausgeführt, wenn eine neue Bibliothek installiert wird): + +`sudo ldconfig` + +- Aktualisiere die symbolischen Verknüpfungen für ein bestimmtes Verzeichnis: + +`sudo ldconfig -n {{pfad/zu/verzeichnis}}` + +- Gib die Bibliotheken im Zwischenspeicher aus und prüfe ob eine bestimmte Bibliothek vorhanden ist: + +`ldconfig -p | grep {{bibliotheksname}}` diff --git a/pages.de/linux/ldd.md b/pages.de/linux/ldd.md new file mode 100644 index 00000000000000..f1daef73478b00 --- /dev/null +++ b/pages.de/linux/ldd.md @@ -0,0 +1,12 @@ +# ldd + +> Zeigt Abhängigkeiten von dynamischen Bibliotheken an. +> Weitere Informationen: . + +- Zeige Abhängigkeiten von dynamischen Bibliotheken einer Binärdatei an: + +`ldd {{pfad/zu/binärdatei}}` + +- Zeige ungenutzte direkte Abhängigkeiten an: + +`ldd -u {{pfad/zu/binärdatei}}` diff --git a/pages.de/linux/line.md b/pages.de/linux/line.md new file mode 100644 index 00000000000000..cf5cc1b6d7d167 --- /dev/null +++ b/pages.de/linux/line.md @@ -0,0 +1,8 @@ +# line + +> Liest eine einzelne Eingabezeile. +> Weitere Informationen: . + +- Lies eine Eingabezeile: + +`line` diff --git a/pages.de/linux/locate.md b/pages.de/linux/locate.md new file mode 100644 index 00000000000000..d48c90cf5ac26a --- /dev/null +++ b/pages.de/linux/locate.md @@ -0,0 +1,16 @@ +# locate + +> Zum schnellen Finden von Dateinamen. +> Weitere Informationen: . + +- Suche nach Dateien in der Datenbank. Hinweis: Die Datenbank wird periodisch aktualisiert (für gewöhnlich täglich oder wöchentlich): + +`locate {{muster}}` + +- Suche nach Dateien mit dem exakten Dateinamen. (Ein Muster ohne Platzhalterzeichen wird als `*muster*` interpretiert): + +`locate */{{dateiname}}` + +- Aktualisiere die Datenbank. Dies ist nötig, falls kürzlich hinzugefügte Dateien gefunden werden sollen: + +`sudo updatedb` diff --git a/pages.de/linux/logsave.md b/pages.de/linux/logsave.md new file mode 100644 index 00000000000000..223e3813dcb681 --- /dev/null +++ b/pages.de/linux/logsave.md @@ -0,0 +1,20 @@ +# logsave + +> Speichert die Ausgabe eines Befehls in eine Logdatei. +> Weitere Informationen: . + +- Führe einen Befehl mit angegebenen Argumenten aus und speichere die Ausgabe in eine Logdatei: + +`logsave {{pfad/zu/logdatei}} {{befehl}}` + +- Übernimm die Eingabe der Standardeingabe und speichere diese in eine Logdatei: + +`logsave {{logdatei}} -` + +- Hänge die Ausgabe an eine Logdatei an, anstatt deren aktuellen Inhalt zu ersetzen: + +`logsave -a {{logfile}} {{befehl}}` + +- Zeige die ausführliche Ausgabe an: + +`logsave -v {{logfile}} {{befehl}}` diff --git a/pages.de/linux/logwatch.md b/pages.de/linux/logwatch.md new file mode 100644 index 00000000000000..56001a471b47e2 --- /dev/null +++ b/pages.de/linux/logwatch.md @@ -0,0 +1,12 @@ +# logwatch + +> Fasst viele verschiedene Logs für gängige Dienste (z.B. Apache, pam_unix, sshd, usw.) in einem einzelnen Bericht zusammen. +> Weitere Informationen: . + +- Analysiere Logs für einen Zeitraum mit einer bestimmten Detailtiefe: + +`logwatch --range {{yesterday|today|all|help}} --detail {{low|medium|others}}'` + +- Beschränke den Bericht auf Informationen zu einem ausgewählten Dienst: + +`logwatch --range {{all}} --service {{apache|pam_unix|etc}}` diff --git a/pages.de/linux/lsmod.md b/pages.de/linux/lsmod.md new file mode 100644 index 00000000000000..39c36618ed5402 --- /dev/null +++ b/pages.de/linux/lsmod.md @@ -0,0 +1,9 @@ +# lsmod + +> Zeigt den Status von Linux-Kernel-Modulen an. +> Siehe auch `modprobe`, welches Kernel-Module lädt. +> Weitere Informationen: . + +- Liste alle aktuell geladenen Kernel-Module auf: + +`lsmod` diff --git a/pages.de/linux/megadl.md b/pages.de/linux/megadl.md new file mode 100644 index 00000000000000..dce442936798d2 --- /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/ncal.md b/pages.de/linux/ncal.md new file mode 100644 index 00000000000000..2455a022170b15 --- /dev/null +++ b/pages.de/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Dieser Befehl ist ein Alias von `cal`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr cal` diff --git a/pages.de/linux/nologin.md b/pages.de/linux/nologin.md new file mode 100644 index 00000000000000..f5a78ed8256637 --- /dev/null +++ b/pages.de/linux/nologin.md @@ -0,0 +1,12 @@ +# nologin + +> Alternative Shell, die verhindert, dass sich ein Benutzer einloggt. +> Weitere Informationen: . + +- Setze die Login-Shell eines Benutzers auf `nologin`, um zu verhindern, dass der Benutzer sich anmeldet: + +`chsh -s {{user}} nologin` + +- Passe die Nachricht für Benutzer mit Login-Shell `nologin` an: + +`echo "{{nachricht}}" > /etc/nologin.txt` diff --git a/pages.de/linux/nordvpn.md b/pages.de/linux/nordvpn.md new file mode 100644 index 00000000000000..42984ed68bc7be --- /dev/null +++ b/pages.de/linux/nordvpn.md @@ -0,0 +1,32 @@ +# nordvpn + +> Kommandozeilen-Schnittstelle für NordVPN. +> Weitere Informationen: . + +- Interaktiv bei einem NordVPN-Konto anmelden: + +`nordvpn login` + +- Zeige den Verbindungsstatus an: + +`nordvpn status` + +- Stelle eine Verbindung zum nächsten NordVPN-Server her: + +`nordvpn connect` + +- Liste alle verfügbaren Länder auf: + +`nordvpn countries` + +- Stelle eine Verbindung zu einem NordVPN-Server in einem bestimmten Land her: + +`nordvpn connect {{Germany}}` + +- Stelle eine Verbindung zu einem NordVPN-Server in einem bestimmten Land und einer bestimmten Stadt her: + +`nordvpn connect {{Germany}} {{Berlin}}` + +- Aktiviere die `autoconnect`-Option: + +`nordvpn set autoconnect on` diff --git a/pages.de/linux/numlockx.md b/pages.de/linux/numlockx.md new file mode 100644 index 00000000000000..9c3f797d4229fe --- /dev/null +++ b/pages.de/linux/numlockx.md @@ -0,0 +1,20 @@ +# numlockx + +> Steuere den Num-Lock-Tasten-Status in X11-Sitzungen. +> Weitere Informationen: . + +- Zeige den aktuellen Status der Num-Lock-Taste an: + +`numlockx status` + +- Schalte die Num-Lock-Taste ein: + +`numlockx on` + +- Schalte die Num-Lock-Taste aus: + +`numlockx off` + +- Schalte die Num-Lock-Taste um: + +`numlockx toggle` diff --git a/pages.de/linux/pacman-database.md b/pages.de/linux/pacman-database.md new file mode 100644 index 00000000000000..cda34752386c22 --- /dev/null +++ b/pages.de/linux/pacman-database.md @@ -0,0 +1,29 @@ +# pacman --database + +> Mit der Arch Linux Paketdatenbank arbeiten. +> Verschiedene Attribute von installierten Paketen bearbeiten. +> Weitere Informationen: . + +- Markiere ein Paket als implizit installiert: + +`sudo pacman --database --asdeps {{paketname}}` + +- Markiere ein Paket als explizit installiert: + +`sudo pacman --database --asexplicit {{paketname}}` + +- Überprüfe, dass alle Paketabhängigkeiten installiert sind: + +`pacman --database --check` + +- Überprüfe in den Repositorien, dass alle angegebenen Abhängigkeiten verfügbar sind: + +`pacman --database --check --check` + +- Zeige nur Fehlermeldungen: + +`pacman --database --check --quiet` + +- Zeige Hilfe an: + +`pacman --database --help` diff --git a/pages.de/linux/pacman-deptest.md b/pages.de/linux/pacman-deptest.md new file mode 100644 index 00000000000000..750eef153ade86 --- /dev/null +++ b/pages.de/linux/pacman-deptest.md @@ -0,0 +1,20 @@ +# 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. +> Weitere Informationen: . + +- Zeige Paketnamen von Abhängigkeiten an, welche nicht installiert sind: + +`pacman --deptest {{paketname1}} {{paketname2}}` + +- Überprüfe ob ein installiertes Paket eine Minimalversion erfüllt: + +`pacman --deptest "{{bash>=5}}"` + +- Überprüfe ob eine neuere version eines Paketes installiert ist: + +`pacman --deptest "{{bash>5}}"` + +- Zeige Hilfe an: + +`pacman --deptest --help` diff --git a/pages.de/linux/pacman-files.md b/pages.de/linux/pacman-files.md new file mode 100644 index 00000000000000..609b3c3d630687 --- /dev/null +++ b/pages.de/linux/pacman-files.md @@ -0,0 +1,33 @@ +# pacman --files + +> Arch Linux Paketverwaltungs-Werkzeug. +> Siehe auch `pkgfile`. +> Weitere Informationen: . + +- Aktualisiere die Paketdatenbank: + +`sudo pacman --files --refresh` + +- Finde das Paket, welches eine bestimmte Datei besitzt: + +`pacman --files {{dateiname}}` + +- Finde das Paket, welches eine bestimmte Datei besitzt, mittels eines regulären Ausdrucks: + +`pacman --files --regex '{{suchmuster}}'` + +- Liste nur Paketnamen auf: + +`pacman --files --quiet {{dateiname}}` + +- Liste die Dateien auf welche einem bestimmten Paket gehören: + +`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 new file mode 100644 index 00000000000000..0887150506756e --- /dev/null +++ b/pages.de/linux/pacman-query.md @@ -0,0 +1,36 @@ +# pacman --query + +> Arch Linux Paketverwaltungs-Werkzeug. +> Weitere Informationen: . + +- Liste alle installierten Pakete und dessen Versionen auf: + +`pacman --query` + +- Liste alle ausdrücklich installierten Pakete und dessen Versionen auf: + +`pacman --query --explicit` + +- Finde heraus welches Paket eine Datei besitzt: + +`pacman --query --owns {{dateiname}}` + +- Zeige Informationen über ein installiertes Paket an: + +`pacman --query --info {{paketname}}` + +- Liste alle Dateien auf welche einem Paket gehören: + +`pacman --query --list {{paketname}}` + +- Liste verwaiste Pakete auf (Pakete welche als Abhängigkeit installiert wurden, aber von keinem Paket benötigt werden): + +`pacman --query --unrequired --deps --quiet` + +- Liste installierte Pakete auf welche nicht in den Repositorien gefunden werden können: + +`pacman --query --foreign` + +- Liste veraltete Pakete auf: + +`pacman --query --upgrades` diff --git a/pages.de/linux/pacman-remove.md b/pages.de/linux/pacman-remove.md new file mode 100644 index 00000000000000..839c3be7749cc3 --- /dev/null +++ b/pages.de/linux/pacman-remove.md @@ -0,0 +1,32 @@ +# pacman --remove + +> Arch Linux Paketverwaltungs-Werkzeug. +> Weitere Informationen: . + +- Entferne ein Paket und dessen Abhängigkeiten: + +`sudo pacman --remove --recursive {{paketname}}` + +- Entferne ein Paket sowie alle Abhängigkeiten und Konfigurationsdateien: + +`sudo pacman --remove --recursive --nosave {{paketname}}` + +- Entferne ein Paket ohne Bestätigungsaufforderung: + +`sudo pacman --remove --noconfirm {{paketname}}` + +- Entferne verwaiste Pakete (Pakete welche als Abhängigkeit installiert wurden, aber von keinem Paket benötigt werden): + +`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)` + +- Entferne ein Paket und alle Pakete die davon abhängig sind: + +`sudo pacman --remove --cascade {{paketname}}` + +- Liste Pakete auf, welche betroffen sein würden (entfernt keine Pakete): + +`pacman --remove --print {{paketname}}` + +- Zeige Hilfe für diesen Unterbefehl an: + +`pacman --remove --help` diff --git a/pages.de/linux/pacman-sync.md b/pages.de/linux/pacman-sync.md new file mode 100644 index 00000000000000..c713a60b0e61e9 --- /dev/null +++ b/pages.de/linux/pacman-sync.md @@ -0,0 +1,36 @@ +# pacman --sync + +> Arch Linux Paketverwaltungs-Werkzeug. +> Weitere Informationen: . + +- Installiere ein neues Paket: + +`sudo pacman --sync {{paketname}}` + +- Synchronisiere und aktualisiere alle Pakete (füge `--downloadonly` hinzu um die Pakete nur herunterzuladen und nicht zu aktualisieren): + +`sudo pacman --sync --refresh --sysupgrade` + +- Aktualisiere alle Pakete und installiere ein neues ohne Bestätigungsaufforderung: + +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{paketname}}` + +- Suche in der Paketdatenbank mit einem regulären Ausdruck oder Schlüsselwort: + +`pacman --sync --search "{{suchmuster}}"` + +- Zeige Informationen über ein Paket an: + +`pacman --sync --info {{paketname}}` + +- Überschreibe widersprüchliche Dateien während einer Paketaktualisierung: + +`sudo pacman --sync --refresh --sysupgrade --overwrite {{pfad/zur/datei}}` + +- Synchronisiere und aktualisiere alle Pakete, ignoriere aber ein bestimmtes Paket (kann mehr als einmal angegeben werden): + +`sudo pacman --sync --refresh --sysupgrade --ignore {{paketname}}` + +- Entferne nicht installierte Pakete und ungenutzte Repositorys vom Cache (nutze zwei `--clean` Operationen um alle Pakete aufzuräumen): + +`sudo pacman --sync --clean` diff --git a/pages.de/linux/pacman-upgrade.md b/pages.de/linux/pacman-upgrade.md new file mode 100644 index 00000000000000..577f6370139e7a --- /dev/null +++ b/pages.de/linux/pacman-upgrade.md @@ -0,0 +1,28 @@ +# pacman --upgrade + +> Arch Linux Paketverwaltungs-Werkzeug. +> Weitere Informationen: . + +- Installiere ein oder mehrere Pakete von Dateien: + +`sudo pacman --upgrade {{pfad/zu/paket1.pkg.tar.zst}} {{pfad/zu/paket2.pkg.tar.zst}}` + +- Installiere ein Paket ohne Bestätigungsaufforderung: + +`sudo pacman --upgrade --noconfirm {{pfad/zu/paket.pkg.tar.zst}}` + +- Überschreibe widersprüchliche Dateien während einer Paketinstallation: + +`sudo pacman --upgrade --overwrite {{pfad/zu/datei}} {{pfad/zu/paket.pkg.tar.zst}}` + +- Installiere ein Paket und überspringe die Überprüfung von Abhängigkeitsversionen: + +`sudo pacman --upgrade --nodeps {{pfad/zu/paket.pkg.tar.zst}}` + +- Liste Pakete auf, welche betroffen sein würden (installiert keine Pakete): + +`pacman --upgrade --print {{pfad/zu/paket.pkg.tar.zst}}` + +- Zeige Hilfe an: + +`pacman --upgrade --help` diff --git a/pages.de/linux/pacman.md b/pages.de/linux/pacman.md new file mode 100644 index 00000000000000..8e5ba72fd07713 --- /dev/null +++ b/pages.de/linux/pacman.md @@ -0,0 +1,37 @@ +# pacman + +> Arch Linux Paket Management Tool. +> Manche Unterbefehle wie `pacman sync` sind separat dokumentiert. +> Weitere Informationen: . + +- Synchronisiere und aktualisiere alle Pakete: + +`sudo pacman -Syu` + +- Installiere ein neues Paket: + +`sudo pacman -S {{paketname}}` + +- Entferne ein Paket und dessen Abhängigkeiten: + +`sudo pacman -Rs {{paketname}}` + +- Suche in der Paketdatenbank nach einem regulären Ausdruck oder Schlüsselwort: + +`pacman -Ss "{{suchmuster}}"` + +- Liste alle installierten Pakete und dessen Versionen auf: + +`pacman -Q` + +- Liste alle ausdrücklich installierten Pakete und dessen Versionen auf: + +`pacman -Qe` + +- Zeige verwaiste Pakete an, welche als Abhängigkeiten installiert wurden, aber nicht mehr von anderen Paketen benötigt werden: + +`pacman -Qtdq` + +- Leere den gesamten pacman Cache: + +`sudo pacman -Scc` diff --git a/pages.de/linux/paru.md b/pages.de/linux/paru.md new file mode 100644 index 00000000000000..1d7fc8d7d1e95f --- /dev/null +++ b/pages.de/linux/paru.md @@ -0,0 +1,28 @@ +# paru + +> Ein AUR-Helfer und pacman-Wrapper. +> Weitere Informationen: . + +- Interaktiv nach einem Paket suchen und es installieren: + +`paru {{paketname_oder_suchbegriff}}` + +- Alle Pakete synchronisieren und aktualisieren: + +`paru` + +- AUR-Pakete aktualisieren: + +`paru -Sua` + +- Informationen über ein Paket abrufen: + +`paru -Si {{paketname}}` + +- Herunterladen von `PKGBUILD` und anderen Paket-Quelldateien aus dem AUR oder dem ABS: + +`paru --getpkgbuild {{paketname}}` + +- Anzeigen der `PKGBUILD`-Datei eines Pakets: + +`paru --getpkgbuild --print {{paketname}}` diff --git a/pages.de/linux/qm-create.md b/pages.de/linux/qm-create.md new file mode 100644 index 00000000000000..76a2c27bf589e7 --- /dev/null +++ b/pages.de/linux/qm-create.md @@ -0,0 +1,24 @@ +# qm create + +> Erzeugung einer virtuellen Maschine per QEMU/KVM Virtual Machine Manager. +> Weitere Informationen: . + +- Erzeuge eine virtuelle Maschine: + +`qm create {{100}}` + +- Erzeuge eine virtuelle Maschine und starte sie unmittelbar danach im Anschluss: + +`qm create {{100}} --start 1` + +- Lege den Typ des Betriebssystems auf der virtuellen Maschine fest: + +`qm create {{100}} --ostype {{win10}}` + +- Ersetze eine bestehende virtuelle Maschine (setzt deren Archivierung voraus): + +`qm create {{100}} --archive {{pfad/zu/backup_file.tar}} --force 1` + +- Lege ein Skript fest, welches automatisch abhängig vom Zustand der virtuellen Maschine ausgelöst werden soll: + +`qm create {{100}} --hookscript {{pfad/zu/script.pl}}` diff --git a/pages.de/linux/qm-start.md b/pages.de/linux/qm-start.md new file mode 100644 index 00000000000000..1124322ce48a78 --- /dev/null +++ b/pages.de/linux/qm-start.md @@ -0,0 +1,16 @@ +# qm start + +> Starte eine virtuelle Maschine per QEMU/KVM Virtual Machine Manager. +> Weitere Informationen: . + +- Starte eine bestimmte virtuelle Maschine: + +`qm start {{100}}` + +- Lege den QEMU Maschinentyp fest (etwa den zu emulierenden Prozessor): + +`qm start {{100}} --machine {{q35}}` + +- Starte eine bestimmte virtuelle Maschine mit einem Timeout (Zeitabschaltung) nach 60 Sekunden: + +`qm start {{100}} --timeout {{60}}` diff --git a/pages.de/linux/qmrestore.md b/pages.de/linux/qmrestore.md new file mode 100644 index 00000000000000..1ab400269649fd --- /dev/null +++ b/pages.de/linux/qmrestore.md @@ -0,0 +1,20 @@ +# qmrestore + +> Wiederherstellung von QemuServer vzdump Backups. +> Weitere Informationen: . + +- Wiederherstellung einer virtuellen Maschine mittels Backupdatei auf dem ursprünglichen Speicher: + +`qmrestore {{pfad/zu/vzdump-qemu-100.vma.lzo}} {{100}}` + +- Überschreibung einer bestehenden virtuellen Maschine auf dem ursprünglichen Speicher: + +`qmrestore {{pfad/zu/vzdump-qemu-100.vma.lzo}} {{100}} --force true` + +- Wiederherstellung einer virtuellen Maschine auf einem bestimmten Speicher: + +`qmrestore {{pfad/zu/vzdump-qemu-100.vma.lzo}} {{100}} --storage {{local}}` + +- Sofortiger Start einer virtuellen Maschine bei gleichzeitiger Wiederherstellung im Hintergrund (nur bei Proxmox Backup Server): + +`qmrestore {{pfad/zu/vzdump-qemu-100.vma.lzo}} {{100}} --live-restore true` diff --git a/pages.de/linux/see.md b/pages.de/linux/see.md new file mode 100644 index 00000000000000..7ac756e85ba7a8 --- /dev/null +++ b/pages.de/linux/see.md @@ -0,0 +1,13 @@ +# see + +> Alias für die Ansicht von `run-mailcap`. +> Ein Alias für die Aktion print eines `run-mailcap`. +> Weitere Informationen: . + +- Die Aktion see kann verwendet werden, um eine beliebige Datei (in der Regel ein Bild) im Standard-Mailcap-Explorer anzuzeigen: + +`see {{dateiname}}` + +- Verwenden mit `run-mailcap`: + +`run-mailcap --action=view {{dateiname}}` diff --git a/pages.de/linux/sysctl.md b/pages.de/linux/sysctl.md new file mode 100644 index 00000000000000..152c0caac0f393 --- /dev/null +++ b/pages.de/linux/sysctl.md @@ -0,0 +1,24 @@ +# sysctl + +> Laufzeit-Kernelparameter auflisten und ändern. +> Weitere Informationen: . + +- Liste alle verfügbaren Kernelparameter mit ihren Werten auf: + +`sysctl -a` + +- Setze einen veränderbaren Kernelparameter: + +`sysctl -w {{sektion.tunable}}={{wert}}` + +- Frage aktuell geöffnete Datei-Handler ab: + +`sysctl fs.file-nr` + +- Frage die maximale Anzahl geöffneter Dateien ab: + +`sysctl fs.file-max` + +- Übernimm Änderungen aus der `/etc/sysctl.conf` Datei: + +`sysctl -p` diff --git a/pages.de/linux/ubuntu-bug.md b/pages.de/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..2c674615f53d0a --- /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 new file mode 100644 index 00000000000000..f8473429ee39b1 --- /dev/null +++ b/pages.de/linux/watch.md @@ -0,0 +1,20 @@ +# watch + +> Führe einen Befehl wiederholt aus und überwache die Ausgabe im Vollbildmodus. +> Weitere Informationen: . + +- Überwache die Dateien im aktuellen Verzeichnis: + +`watch {{ls}}` + +- Überwache verfügbaren Festplatten-Speicherplatz und hebe die Änderungen hervor: + +`watch -d {{df}}` + +- Ü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/linux/xrandr.md b/pages.de/linux/xrandr.md new file mode 100644 index 00000000000000..7d2bde804f4c5f --- /dev/null +++ b/pages.de/linux/xrandr.md @@ -0,0 +1,28 @@ +# xrandr + +> Setzt die Auflösung, Orientierung und/oder Reflektion eines Bildschirmausgangs. +> Weitere Informationen: . + +- Zeige den momentanen Systemzustand an (erkannte Bildschirme, Auflösungen, ...): + +`xrandr --query` + +- Deaktiviere nicht mehr verbundene Ausgangsgeräte und aktiviere verbundene Ausgänge mit Standardeinstellungen: + +`xrandr --auto` + +- Ändere die Auflösung und Bildfrequenz von DisplayPort 1 zu 1920x1080, 60Hz: + +`xrandr --output {{DP1}} --mode {{1920x1080}} --rate {{60}}` + +- Setze die Auflösung von HDMI auf 1280x1024 und platziere HDMI1 rechts von DP1: + +`xrandr --output {{HDMI2}} --mode {{1280x1024}} --right-of {{DP1}}` + +- Deaktiviere den Ausgang von VGA1: + +`xrandr --output {{VGA1}} --off` + +- Setze die Bildschirmhelligkeit von LVDS1 auf 50%: + +`xrandr --output {{LVDS1}} --brightness {{0.5}}` diff --git a/pages.de/linux/yay.md b/pages.de/linux/yay.md new file mode 100644 index 00000000000000..660f1f7710cc7c --- /dev/null +++ b/pages.de/linux/yay.md @@ -0,0 +1,37 @@ +# yay + +> Yet Another Yogurt: Ein Programm für Arch Linux um Pakete vom Arch User Repository zu installieren. +> Siehe auch `pacman`. +> Weitere Informationen: . + +- Suche und installiere Pakete von den Repositorys und dem AUR interaktiv: + +`yay {{paketname|suchbegriff}}` + +- Synchronisiere und aktualisiere alle Pakete von den Repositorys und dem AUR: + +`yay` + +- Synchronisiere und aktualisiere nur AUR-Pakete: + +`yay -Sua` + +- Installiere ein neues Paket von den Repositorys und dem AUR: + +`yay -S {{paketname}}` + +- Entferne ein Paket sowie alle Abhängigkeiten und Konfigurationsdateien: + +`yay -Rns {{paketname}}` + +- Suche in der Paketdatenbank nach einem Schlüsselwort in den Repositorys und dem AUR: + +`yay -Ss {{schlüsselwort}}` + +- Entferne verwaiste Pakete (als Abhängigkeit installiert, aber von keinem Paket benötigt): + +`yay -Yc` + +- Zeige Statistiken für installierte Pakete sowie die Gesundheit des Systems an: + +`yay -Ps` diff --git a/pages.de/linux/zathura.md b/pages.de/linux/zathura.md new file mode 100644 index 00000000000000..b17057e1d4aed1 --- /dev/null +++ b/pages.de/linux/zathura.md @@ -0,0 +1,33 @@ +# zathura + +> Ein vim-artiger modaler Dokumentenbetrachter mit integrierter Kommandozeile. +> Stelle sicher, dass ein Backend installiert ist (poppler, Postscript oder DjVu). +> Weitere Informationen: . + +- Öffne eine Datei: + +`zathura {{pfad/zur/datei}}` + +- Navigiere nach links/oben/unten/rechts: + +` oder Pfeiltasten` + +- Rotiere: + +`r` + +- Invertiere die Farben: + +`Strg + R` + +- Durchsuche den Text nach einem gegebenen String: + +`/{{string}}` + +- Erstelle/lösche Lesezeichen: + +`:{{bmark|bdelete}} {{name_des_lesezeichens}}` + +- Liste alle Lesezeichen auf: + +`:blist` diff --git a/pages.de/linux/zypper.md b/pages.de/linux/zypper.md new file mode 100644 index 00000000000000..3e2a2d878996d2 --- /dev/null +++ b/pages.de/linux/zypper.md @@ -0,0 +1,28 @@ +# zypper + +> SUSE & openSUSE Package-Management-Werkzeug. +> Weitere Informationen: . + +- Synchronisiere die Liste von Paketen und verfügbaren Versionen: + +`zypper refresh` + +- Installiere ein neues Paket: + +`zypper install {{paket}}` + +- Entferne ein Paket: + +`zypper remove {{paket}}` + +- Aktualisiere installierte Pakete zur neuesten verfügbaren Version: + +`zypper update` + +- Suche Paket nach einem bestimmten Schema: + +`zypper search {{schema}}` + +- Zeige Informationen bezüglich der konfigurierten Repositories: + +`zypper repos --sort-by-priority` diff --git a/pages.de/osx/aa.md b/pages.de/osx/aa.md new file mode 100644 index 00000000000000..65605c89cc63d7 --- /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/brew-bundle.md b/pages.de/osx/brew-bundle.md deleted file mode 100644 index 56e4f345649892..00000000000000 --- a/pages.de/osx/brew-bundle.md +++ /dev/null @@ -1,28 +0,0 @@ -# brew bundle - -> Bundler für Homebrew, Homebrew Cask und den Mac App Store. -> Mehr Informationen: . - -- Installiere Pakete aus einer Brewfile im aktuellen Pfad: - -`brew bundle` - -- Installiere Pakete aus einer bestimmten Brewfile: - -`brew bundle --file={{pfad/zu/brewfile}}` - -- Gib eine Liste mit allen installierten Paketen aus: - -`brew bundle dump` - -- Deinstalliere Pakete, die nicht in der Brewfile aufgelisted sind: - -`brew bundle cleanup --force` - -- Prüfe, ob von einem Paket die aktuellste Version installiert ist: - -`brew bundle check` - -- Zeige alle Pakete, die in der Brewfile aufgelistet sind: - -`brew bundle list --all` diff --git a/pages.de/osx/caffeinate.md b/pages.de/osx/caffeinate.md index e002ddfa0f68fd..9c27d13207ef3c 100644 --- a/pages.de/osx/caffeinate.md +++ b/pages.de/osx/caffeinate.md @@ -1,6 +1,7 @@ # caffeinate -> Hindert den Mac daran in den Schlaf-Modus zu gehen. +> Hindert den Mac daran, in den Schlaf-Modus zu gehen. +> Weitere Informationen: . - Halte den Mac für 1 Stunde (3600 Sekunden) wach: diff --git a/pages.de/osx/diskutil.md b/pages.de/osx/diskutil.md new file mode 100644 index 00000000000000..9e5ef515516598 --- /dev/null +++ b/pages.de/osx/diskutil.md @@ -0,0 +1,20 @@ +# diskutil + +> Dienstprogramm zur Verwaltung lokaler Festplatten und Volumes. +> Weitere Informationen: . + +- Auflisten aller aktuell verfügbaren Festplatten, Partitionen und gemounteten Volumes: + +`diskutil list` + +- Reparieren der Dateisystem-Datenstrukturen eines Volumes: + +`diskutil repairVolume {{/dev/diskX}}` + +- Einen Datenträger aushängen: + +`diskutil unmountDisk {{/dev/diskX}}` + +- Eine CD/DVD auswerfen (zuerst aushängen): + +`diskutil eject {{/dev/disk1}}` diff --git a/pages.de/osx/g[.md b/pages.de/osx/g[.md new file mode 100644 index 00000000000000..050ff8d536dc3b --- /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 00000000000000..2963fbe32d9fd9 --- /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 00000000000000..939f70733cd0ca --- /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 00000000000000..dc5e2b7fb6cc67 --- /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 00000000000000..bae26a1dce3d4f --- /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 00000000000000..6934bf9efd737b --- /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 00000000000000..9db5763fb3ee6a --- /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 00000000000000..b96166a0108098 --- /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 00000000000000..9fbce093f34106 --- /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 00000000000000..61a296470a6834 --- /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 00000000000000..b06aeebca2a2f5 --- /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 00000000000000..3703ee282d9add --- /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 00000000000000..b2f631d849d2b6 --- /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 00000000000000..1afab17644adaa --- /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 00000000000000..00a15d3c50b144 --- /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 00000000000000..b5e5fbc5a37e6c --- /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 00000000000000..0c689316ffaabb --- /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 00000000000000..378ecfbcad77a2 --- /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 00000000000000..cd98bd89358784 --- /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 00000000000000..12efa56052d6cb --- /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 00000000000000..590392a66d8898 --- /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 00000000000000..13a2b97e49e235 --- /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 00000000000000..53cd11e4a8135e --- /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 00000000000000..2b9a2c30f58663 --- /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 00000000000000..58cc5c2f5cd106 --- /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 00000000000000..9a63718263c22f --- /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 00000000000000..b700104eb21872 --- /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 00000000000000..3f9fe87da9f6bc --- /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 00000000000000..06fb158f2a5942 --- /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 00000000000000..dabf79d3d13a20 --- /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 00000000000000..7a535ac85c03a0 --- /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 00000000000000..c76590b0a76a9f --- /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 00000000000000..8d91b4dae12d5f --- /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 00000000000000..05c4a7b461d296 --- /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 00000000000000..b1f7899d708f67 --- /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 00000000000000..9ccb59386020ea --- /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 00000000000000..02757e1d5689f1 --- /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 00000000000000..927abc62567ae5 --- /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 00000000000000..c9e7ac87e54192 --- /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 00000000000000..b5c79109328c6f --- /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 00000000000000..d53b5dc7062dce --- /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 00000000000000..13cca705d67ce4 --- /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 00000000000000..d2eb7ad177d89e --- /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 00000000000000..13a492611d20ac --- /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 00000000000000..4590eea5b274f3 --- /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 00000000000000..c585d93f68c9c2 --- /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 00000000000000..3dc4d686162668 --- /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 00000000000000..3432c5eb14a530 --- /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 00000000000000..03703d2e1a1e00 --- /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 00000000000000..fb426e7f6b599b --- /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 00000000000000..922c5210b8113e --- /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 00000000000000..e319e6f43591de --- /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 00000000000000..d1d21cc1e5958d --- /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 00000000000000..10fcb54008e71c --- /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 00000000000000..f607aa44679e05 --- /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 00000000000000..921e0c97ec1493 --- /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 00000000000000..56e4f29eeb6814 --- /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 00000000000000..020a6013306ce5 --- /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 00000000000000..d90aed6414f618 --- /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 00000000000000..51b2a1f2ccfb95 --- /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 00000000000000..fbb25092f6bdd5 --- /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 00000000000000..aaa2c0b5ab6dba --- /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 00000000000000..8e37f09f130f10 --- /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 00000000000000..2ee95ef9945510 --- /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 00000000000000..2be7612e1d149f --- /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 00000000000000..9ba6098e524d50 --- /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 00000000000000..ffcc774663b5b7 --- /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 00000000000000..12cc95cc6890d4 --- /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 00000000000000..c05ddc0a6e2b36 --- /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 00000000000000..6a3bf6973d91cd --- /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 00000000000000..62ccb4fad72f3a --- /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 00000000000000..42f587fea9fb9a --- /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 00000000000000..9ba1e32e006682 --- /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 00000000000000..03ed8c50f7032e --- /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 00000000000000..ee4983198fb8ea --- /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 00000000000000..380f48e672a257 --- /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 00000000000000..ac9051b6584640 --- /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 00000000000000..3f462f30f2b55d --- /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 00000000000000..d78977f038b33a --- /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 00000000000000..823026e21a5015 --- /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 00000000000000..fa5fbeed0df327 --- /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 00000000000000..bf257cc18c68bc --- /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 00000000000000..b8ee65b922df99 --- /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 00000000000000..5052ac0dd32b33 --- /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 00000000000000..386eb1218b2864 --- /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 00000000000000..c2fbd3425b35d7 --- /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 00000000000000..9e33de87ed84e6 --- /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 00000000000000..3701b0ee0ae991 --- /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 00000000000000..8e4bf75bf337ac --- /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 00000000000000..271804f1006630 --- /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 00000000000000..a0af4f12c981ad --- /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 00000000000000..51c7304ede3250 --- /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 00000000000000..9e14710821e2f8 --- /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 00000000000000..2041a8f85e011c --- /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 00000000000000..bf1b02e96081f4 --- /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 00000000000000..d93c90371a30ca --- /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 00000000000000..9771335953b689 --- /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 00000000000000..10a83c49be214f --- /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 00000000000000..611562abab10b2 --- /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 00000000000000..1da587df98f3fa --- /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 00000000000000..b5f296acc39994 --- /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 00000000000000..0a4aafb12f02d5 --- /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 00000000000000..ff055e2ee38e09 --- /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 00000000000000..181783ae9480d9 --- /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 00000000000000..6fa289743c3133 --- /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 00000000000000..12947535ced727 --- /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 00000000000000..f37f0abdbcf8c4 --- /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 00000000000000..9a78b41fdb0310 --- /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 00000000000000..765a585783720b --- /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 00000000000000..c5fa5c50ae7e6a --- /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 00000000000000..eb56a7f34c9c33 --- /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 00000000000000..795dca86a73484 --- /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 00000000000000..72c42f6cb101ac --- /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 00000000000000..efb4a6c529d7aa --- /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 00000000000000..221bd2353b0e19 --- /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 00000000000000..5b8ca21d58c956 --- /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 00000000000000..4e518c7fa33bae --- /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 00000000000000..bb625f61176009 --- /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 00000000000000..100d56e7ce72a9 --- /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 00000000000000..c91c4b8ed02e4e --- /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 00000000000000..69140cf64fa106 --- /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 00000000000000..884c0ce789e06a --- /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 00000000000000..657f0d9ce9057f --- /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 00000000000000..4fbc6ef8ab7de7 --- /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 00000000000000..e5085aa86300de --- /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 00000000000000..0a71c8fe7f0650 --- /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 00000000000000..2a31626d2a1ba4 --- /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 00000000000000..5f1355180f26e7 --- /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 00000000000000..91a35ed7eab15e --- /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 00000000000000..ef7723e2625cb3 --- /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 00000000000000..54b14b33926af1 --- /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 00000000000000..b21f44dd5b6c70 --- /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 00000000000000..0a948dfc06b893 --- /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 00000000000000..482e1a9566ff2e --- /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 00000000000000..6af3afba117a07 --- /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 00000000000000..bc822416e32c6b --- /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 00000000000000..c3bdc1cf0aa709 --- /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 00000000000000..dff01f1ca8fe78 --- /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 00000000000000..ea7c29d8c98f88 --- /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 00000000000000..85cfe8111847d9 --- /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 new file mode 100644 index 00000000000000..6b8f0a0b213af0 --- /dev/null +++ b/pages.de/osx/md5.md @@ -0,0 +1,20 @@ +# md5 + +> Berechne kryptografische MD5-Prüfsummen. +> Weitere Informationen: . + +- Berechne die MD5-Prüfsumme einer Datei und gib sie mit Dateinamen auf der Konsole aus: + +`md5 {{datei_name}}` + +- Berechne die MD5-Prüfsumme mehrerer Dateien und gib sie mit Dateinamen auf der Konsole aus: + +`md5 {{datei_name_1}} {{datei_name_2}}` + +- Gib nur die MD5-Prüfsumme auf der Konsole aus: + +`md5 -q {{datei_name}}` + +- Berechne die MD5-Prüfsumme für den gegebenen Text: + +`md5 -s "{{text}}"` diff --git a/pages.de/osx/open.md b/pages.de/osx/open.md index a4de7eafb8816d..d08b04d737be0e 100644 --- a/pages.de/osx/open.md +++ b/pages.de/osx/open.md @@ -1,6 +1,7 @@ # open > Öffne Dateien, Verzeichnisse und Anwendungen. +> Weitere Informationen: . - Öffne eine Datei in der zugehörigen Anwendung: diff --git a/pages.de/osx/pbpaste.md b/pages.de/osx/pbpaste.md new file mode 100644 index 00000000000000..ff460fba43e8fd --- /dev/null +++ b/pages.de/osx/pbpaste.md @@ -0,0 +1,12 @@ +# pbpaste + +> Sende den Inhalt der Zwischenablage zum Standardoutput. +> Weitere Informationen: . + +- Schreibe den Inhalt der Zwischenablage in eine Datei: + +`pbpaste > {{datei}}` + +- Benutze die Zwischenablage als Eingabe für andere Kommandos: + +`pbpaste | grep foo` diff --git a/pages.de/osx/tmutil.md b/pages.de/osx/tmutil.md index 54dc05ae37a86f..f6436a1ec06a5c 100644 --- a/pages.de/osx/tmutil.md +++ b/pages.de/osx/tmutil.md @@ -1,7 +1,7 @@ # tmutil > Dienstprogramm zum Verwalten von Time Machine-Backups. Die meisten Befehle erfordern Root-Rechte. -> Mehr Informationen: . +> Weitere Informationen: . - Setze ein HFS+ Laufwerk als Backupziel: diff --git a/pages.de/osx/xcode-select.md b/pages.de/osx/xcode-select.md new file mode 100644 index 00000000000000..cf3d5bb5f12217 --- /dev/null +++ b/pages.de/osx/xcode-select.md @@ -0,0 +1,25 @@ +# xcode-select + +> Wechsel zwischen verschiedenen Xcode Versionen und den enthaltenen Entwicklertools. +> Wird auch verwendet, um den Pfad zu Xcode zu aktualisieren, wenn dieser sich nach einer Installation geändert hat. +> Weitere Informationen: . + +- Installiere die Xcode Entwicklertools: + +`xcode-select --install` + +- Wähle einen bestimmten Pfad als aktives Entwicklerverzeichnis aus: + +`sudo xcode-select --switch {{pfad/zu/Xcode.app/Contents/Developer}}` + +- Wähle eine Xcode Version aus und ändere das aktive Entwicklerverzeichnis dahin: + +`sudo xcode-select --switch {{pfad/zu/Xcode.app}}` + +- Gib das derzeit aktive Entwicklerverzeichnis aus: + +`xcode-select --print-path` + +- Verwerfe alle vom Benutzer angegebenen Entwicklerverzeichnisse (fortan wird der Standardsuchmechanismus verwendet, um diese zu finden): + +`sudo xcode-select --reset` diff --git a/pages.de/windows/cd.md b/pages.de/windows/cd.md index d9dd5124a9739d..af33b4a18a27ee 100644 --- a/pages.de/windows/cd.md +++ b/pages.de/windows/cd.md @@ -1,7 +1,7 @@ # cd > Zeige den Namen des aktuellen Arbeitsverzeichnisses an oder ändere dieses. -> Mehr Informationen: . +> Weitere Informationen: . - Wechsle zu einem Verzeichnis im selben Laufwerk: diff --git a/pages.de/windows/choco-apikey.md b/pages.de/windows/choco-apikey.md index 6210f91c71cc2d..580183cbfddfe3 100644 --- a/pages.de/windows/choco-apikey.md +++ b/pages.de/windows/choco-apikey.md @@ -1,7 +1,7 @@ -# choco-apikey +# choco apikey > Verwalte die API-Schlüssel für die Quellen von Chocolatey. -> Mehr Informationen: . +> Weitere Informationen: . - Gib eine Liste von Quellen und ihren API-Schlüsseln aus: diff --git a/pages.de/windows/choco-feature.md b/pages.de/windows/choco-feature.md index ef3dadc3c69be5..53741e1f1159e3 100644 --- a/pages.de/windows/choco-feature.md +++ b/pages.de/windows/choco-feature.md @@ -1,7 +1,7 @@ # choco feature > Interagiere mit Funktionen, die das Verhalten von Chocolatey verändern. -> Mehr Informationen: . +> Weitere Informationen: . - Gib eine Liste von verfügbaren Funktionen aus: diff --git a/pages.de/windows/choco-info.md b/pages.de/windows/choco-info.md index ef6b13e5c9c5f8..a3f610d9bdf5e8 100644 --- a/pages.de/windows/choco-info.md +++ b/pages.de/windows/choco-info.md @@ -1,7 +1,7 @@ # choco info > Zeige ausführliche Informationen über ein Chocolatey-Paket an. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige Informationen über ein bestimmtes Paket an: diff --git a/pages.de/windows/choco-install.md b/pages.de/windows/choco-install.md index af331acc73aeb6..acc899b1daec06 100644 --- a/pages.de/windows/choco-install.md +++ b/pages.de/windows/choco-install.md @@ -1,7 +1,7 @@ # choco install > Installiere ein oder mehrere Pakete mit Chocolatey. -> Mehr Informationen: . +> Weitere Informationen: . - Installiere ein oder mehrere Pakete, deren Namen mit Leerzeichen getrennt sind: diff --git a/pages.de/windows/choco-list.md b/pages.de/windows/choco-list.md index 4705f1c72ead41..7184adbf502079 100644 --- a/pages.de/windows/choco-list.md +++ b/pages.de/windows/choco-list.md @@ -1,7 +1,7 @@ # choco list > Zeige mit Chocolatey eine Liste von Paketen an. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige alle verfügbaren Pakete an: diff --git a/pages.de/windows/choco-new.md b/pages.de/windows/choco-new.md index f7a7499bcfb959..25198bb35d44f1 100644 --- a/pages.de/windows/choco-new.md +++ b/pages.de/windows/choco-new.md @@ -1,7 +1,7 @@ # choco new > Erstelle neue Paket-Beschreibungs-Dateien mit Chocolatey. -> Mehr Informationen: . +> Weitere Informationen: . - Erstelle ein neues Grundgerüst für ein Paket: diff --git a/pages.de/windows/choco-outdated.md b/pages.de/windows/choco-outdated.md index 222c9b70468085..309b242e03c531 100644 --- a/pages.de/windows/choco-outdated.md +++ b/pages.de/windows/choco-outdated.md @@ -1,7 +1,7 @@ # choco outdated > Überprüfe mit Chocolatey, ob Pakete veraltet sind. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige eine Liste von veralteten Paketen im Tabellen-Format: diff --git a/pages.de/windows/choco-pack.md b/pages.de/windows/choco-pack.md index 98587c3c097f84..0df2ee2b7287a2 100644 --- a/pages.de/windows/choco-pack.md +++ b/pages.de/windows/choco-pack.md @@ -1,7 +1,7 @@ # choco pack > Verpacke eine NuGet-Spezifikation in eine nupkg-Datei. -> Mehr Informationen: . +> Weitere Informationen: . - Verpacke eine NuGet-Spezifikation in eine nupkg-Datei: diff --git a/pages.de/windows/choco-pin.md b/pages.de/windows/choco-pin.md index 9a7123c5646300..c9c6c93e4c99c1 100644 --- a/pages.de/windows/choco-pin.md +++ b/pages.de/windows/choco-pin.md @@ -2,7 +2,7 @@ > Hefte ein Chocolatey-Paket bei einer bestimmten Version an. > Angeheftete Pakete werden nicht weiter aktualisiert. -> Mehr Informationen: . +> Weitere Informationen: . - Zeige eine Liste der angehefteten Pakete und ihrer Versionen an: diff --git a/pages.de/windows/choco-search.md b/pages.de/windows/choco-search.md index d8c2a7d7f2674d..ed912398da5b4c 100644 --- a/pages.de/windows/choco-search.md +++ b/pages.de/windows/choco-search.md @@ -1,7 +1,7 @@ # choco search > Suche mit Chocolatey nach einem lokal oder im Internet verfügbaren Paket. -> Mehr Informationen: . +> Weitere Informationen: . - Suche nach einem Paket: diff --git a/pages.de/windows/choco-source.md b/pages.de/windows/choco-source.md index 6b37c61c2f84ba..b01b11d6a92bb2 100644 --- a/pages.de/windows/choco-source.md +++ b/pages.de/windows/choco-source.md @@ -1,7 +1,7 @@ # choco source > Verwalte die Paketquellen mit Chocolatey. -> Mehr Informationen: . +> Weitere Informationen: . - Gib alle momentan verfügbaren Quellen aus: diff --git a/pages.de/windows/choco-uninstall.md b/pages.de/windows/choco-uninstall.md index 420d57bbe4c535..52d5fe32271893 100644 --- a/pages.de/windows/choco-uninstall.md +++ b/pages.de/windows/choco-uninstall.md @@ -1,7 +1,7 @@ # choco uninstall > Deinstalliere mit Chocolatey ein oder mehrere Pakete. -> Mehr Informationen: . +> Weitere Informationen: . - Deinstalliere ein oder mehrere Pakete, deren Namen mit Leerzeichen getrennt sind: diff --git a/pages.de/windows/choco-upgrade.md b/pages.de/windows/choco-upgrade.md index 24aa1af9da37f6..855fe9afb7fc48 100644 --- a/pages.de/windows/choco-upgrade.md +++ b/pages.de/windows/choco-upgrade.md @@ -1,7 +1,7 @@ # choco upgrade > Aktualisiere mit Chocolatey ein oder mehrere Pakete. -> Mehr Informationen: . +> Weitere Informationen: . - Aktualisiere ein oder mehrere Pakete, deren Namen mit Leerzeichen getrennt sind: diff --git a/pages.de/windows/choco.md b/pages.de/windows/choco.md index 3fe040bf3aa915..c7be3a8759ed97 100644 --- a/pages.de/windows/choco.md +++ b/pages.de/windows/choco.md @@ -1,8 +1,8 @@ # choco > Ein Kommandozeilenwerkzeug für die Chocolatey Paketverwaltung. -> Schau dir `choco install`, `choco upgrade` und andere Seiten für weitergehende Informationen an. -> Mehr Informationen: . +> Manche Unterbefehle wie `choco install` sind separat dokumentiert. +> Weitere Informationen: . - Führe einen Chocolatey-Befehl aus: diff --git a/pages.de/windows/chrome.md b/pages.de/windows/chrome.md new file mode 100644 index 00000000000000..d43983342d1c75 --- /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/cinst.md b/pages.de/windows/cinst.md new file mode 100644 index 00000000000000..ec72b187f6fbcc --- /dev/null +++ b/pages.de/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Dieser Befehl ist ein Alias von `choco install`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr choco install` diff --git a/pages.de/windows/cipher.md b/pages.de/windows/cipher.md new file mode 100644 index 00000000000000..c4dc7889f540d0 --- /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 00000000000000..201271b91f0fef --- /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/clist.md b/pages.de/windows/clist.md new file mode 100644 index 00000000000000..fe9cc9eba41273 --- /dev/null +++ b/pages.de/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Dieser Befehl ist ein Alias von `choco list`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr choco list` diff --git a/pages.de/windows/cmd.md b/pages.de/windows/cmd.md new file mode 100644 index 00000000000000..08e3adee0065a5 --- /dev/null +++ b/pages.de/windows/cmd.md @@ -0,0 +1,36 @@ +# cmd + +> Auch Windows-Eingabeaufforderung genannt, der Windows-Befehlsinterpreter. +> Weitere Informationen: . + +- Starten einer interaktiven Shell-Sitzung: + +`cmd` + +- Ausführen eines Befehls (**C**ommand): + +`cmd /c "{{Befehl}}"` + +- Ausführen eines Skripts: + +`cmd {{Pfad/zur/Datei.bat}}` + +- Ausführen eines Befehls und anschließendes Aufrufen einer interaktiven Shell: + +`cmd /k "{{Befehl}}"` + +- Starten einer interaktiven Shell-Sitzung, bei der `echo` in der Befehlsausgabe deaktiviert ist: + +`cmd /q` + +- Starten einer interaktiven Shell-Sitzung mit aktivierter oder deaktivierter verzögerter Erweiterung der Umgebungsvariablen: + +`cmd /v:{{on|off}}` + +- Starten einer interaktiven Shell-Sitzung mit aktivierten oder deaktivierten Befehleerweiterungen: + +`cmd /e:{{on|off}}` + +- Starten einer interaktiven Shell-Sitzung mit Unicode-Kodierung: + +`cmd /u` diff --git a/pages.de/windows/color.md b/pages.de/windows/color.md new file mode 100644 index 00000000000000..b0bebe5dfe70a8 --- /dev/null +++ b/pages.de/windows/color.md @@ -0,0 +1,16 @@ +# color + +> Setze die Vordergrund- und Hintergrundfarben der Kommandozeile. +> Weitere Informationen: . + +- Setze die Kommandozeilenfarben auf die Standardwerte: + +`color` + +- Liste alle verfügbaren Farben und detaillierte Informationen auf: + +`color /?` + +- Setze die Vordergrund- und Hintergrundfarbe der Kommandozeilen auf eine spezifische Farbe: + +`color {{vordergrundfarbe_code}}{{hintergrundfarbe_code}}` diff --git a/pages.de/windows/cpush.md b/pages.de/windows/cpush.md new file mode 100644 index 00000000000000..f00f2f00c42594 --- /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/cuninst.md b/pages.de/windows/cuninst.md new file mode 100644 index 00000000000000..be664535743220 --- /dev/null +++ b/pages.de/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Dieser Befehl ist ein Alias von `choco uninstall`. +> Weitere Informationen: . + +- Zeige die Dokumentation für den originalen Befehl an: + +`tldr choco uninstall` diff --git a/pages.de/windows/curl.md b/pages.de/windows/curl.md new file mode 100644 index 00000000000000..197dcb4d618cc3 --- /dev/null +++ b/pages.de/windows/curl.md @@ -0,0 +1,15 @@ +# curl + +> In PowerShell kann dieser Befehl ein Alias von `Invoke-WebRequest` sein, wenn das Originalprogramm `curl` () nicht ordnungsgemäß installiert wurde. + +- Überprüfen Sie, ob `curl` ordnungsgemäß installiert ist, indem Sie sich die Versionsnummer ausgeben lassen. Wenn nachfolgender Befehl einen Fehler ausgibt, hat PowerShell diesen Befehl möglicherweise durch `Invoke-WebRequest` ersetzt: + +`curl --version` + +- Schaue dir hier die Dokumentation für den ursprünglichen `curl`-Befehl an: + +`tldr curl -p common` + +- Schaue dir hier die Dokumentation für den PowerShell-Befehl `Invoke-WebRequest` an: + +`tldr invoke-webrequest` diff --git a/pages.de/windows/del.md b/pages.de/windows/del.md new file mode 100644 index 00000000000000..1fe951e56b1662 --- /dev/null +++ b/pages.de/windows/del.md @@ -0,0 +1,32 @@ +# del + +> Lösche eine oder mehrere Dateien. +> Weitere Informationen: . + +- Lösche eine oder mehrere durch Leerzeichen getrennte Dateien oder Dateimuster: + +`del {{dateimuster}}` + +- Fordere vor dem Löschen jeder Datei zur Bestätigung auf: + +`del {{dateimuster}} /p` + +- Erzwinge das Löschen von schreibgeschützten Dateien: + +`del {{dateimuster}} /f` + +- Lösche alle Dateien die dem Muster entsprechen rekursiv in allen Unterordnern: + +`del {{dateimuster}} /s` + +- Zeige keine Eingabeaufforderung wenn Dateien basierend auf einem globalen Platzhalter gelöscht werden sollen: + +`del {{dateimuster}} /q` + +- Zeige Hilfe an und liste verfügbare Attribute auf: + +`del /?` + +- Lösche Dateien mit den gegebenen Attributen: + +`del {{dateimuster}} /a {{attribut}}` diff --git a/pages.de/windows/dir.md b/pages.de/windows/dir.md new file mode 100644 index 00000000000000..839423f02cbb8e --- /dev/null +++ b/pages.de/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> Zeige den Inhalt von Verzeichnissen an. +> Weitere Informationen: . + +- Zeige den Inhalt des aktuellen Verzeichnisses an: + +`dir` + +- Zeige den Inhalt des angegebenen Verzeichnisses an: + +`dir {{pfad/zu/verzeichnis}}` + +- Zeige den Inhalt, inklusive versteckter Inhalte, des aktuellen Verzeichnisses an: + +`dir /A` + +- Zeige den Inhalt, inklusive versteckte Inhalte, des angegebenen Verzeichnisses an: + +`dir {{pfad/zu/verzeichnis}} /A` diff --git a/pages.de/windows/exit.md b/pages.de/windows/exit.md new file mode 100644 index 00000000000000..261bfde4b6c915 --- /dev/null +++ b/pages.de/windows/exit.md @@ -0,0 +1,16 @@ +# exit + +> Beendet die aktuelle CMD-Instanz oder die aktuelle Batch-Datei. +> Weitere Informationen: . + +- Beenden der aktuellen CMD-Instanz: + +`exit` + +- Beenden des aktuellen Batch-Skripts: + +`exit /b` + +- Beenden mit einem bestimmten Exit-Code: + +`exit {{exit_code}}` diff --git a/pages.de/windows/ftp.md b/pages.de/windows/ftp.md new file mode 100644 index 00000000000000..711ab0931e3c2f --- /dev/null +++ b/pages.de/windows/ftp.md @@ -0,0 +1,36 @@ +# ftp + +> Interaktiver Dateitransfer zwischen einem lokalen und einem entfernten FTP-Server. +> Weitere Informationen: . + +- Verbinden mit einem entfernten FTP-Server: + +`ftp {{host}}` + +- Anmelden als anonymer Benutzer: + +`ftp -A {{host}}` + +- Deaktivieren der automatische Anmeldung bei der ersten Verbindung: + +`ftp -n {{host}}` + +- Ausführen einer Datei, die eine Liste von FTP-Befehlen enthält: + +`ftp -s:{{Pfad/zur/Datei}} {{host}}` + +- Herunterladen von mehrerern Dateien (globaler Ausdruck): + +`mget {{*.png}}` + +- Hochladen von mehrerern Dateien (globaler Ausdruck): + +`mput {{*.zip}}` + +- Löschen mehrerer Dateien auf dem entfernten Server: + +`mdelete {{*.txt}}` + +- Ausführliche Hilfe anzeigen: + +`ftp --help` diff --git a/pages.de/windows/iwr.md b/pages.de/windows/iwr.md new file mode 100644 index 00000000000000..86978ee52179c5 --- /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 00000000000000..bb91ad6f4f0392 --- /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 00000000000000..5039d0077b43d7 --- /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/robocopy.md b/pages.de/windows/robocopy.md new file mode 100644 index 00000000000000..e5a64f5bac4033 --- /dev/null +++ b/pages.de/windows/robocopy.md @@ -0,0 +1,33 @@ +# robocopy + +> Robustes Kopieren von Dateien und Ordnern. +> Standardmäßig werden Dateien nur kopiert, wenn die Quell- und Zieldatei ein unterschiedliches Änderungsdatum oder eine unterschiedliche Dateigröße haben. +> Weitere Informationen: . + +- Alle `.jpg` und `.bmp` Dateien aus dem einen Verzeichnis in ein anderes Verzeichnis kopieren: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} {{*.jpg}} {{*.bmp}}` + +- Alle Dateien und Unterverzeichnisse kopieren, einschließlich der leeren Verzeichnisse: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} /E` + +- Ein Verzeichnis spiegeln/synchronisieren. Dabei wird Alles, was nicht in der Quelle vorhanden ist, gelöscht sowie alle Attribute und Berechtigungen übertragen: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} /MIR /COPYALL` + +- Alle Dateien und Unterverzeichnisse kopieren, ausgenommen der Quelldateien, die älter sind als die vorhandenen Zieldateien: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} /E /XO` + +- Gibt alle Dateien aus, die 50 MB und größer sind, anstatt sie zu kopieren: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} /MIN:{{52428800}} /L` + +- Erlaubt das Fortsetzen des Vorgangs bei Netzwerkverlust, begrenzt die Anzahl an Versuchen auf 5 und die Wartezeit zwischen Versuchen auf 15 Sekunden: + +`robocopy {{pfad/zur/quelle}} {{pfad/zum/ziel}} /Z /R:5 /W:15` + +- Gibt detaillierte Nutzungshinweise aus: + +`robocopy /?` diff --git a/pages.de/windows/scoop-bucket.md b/pages.de/windows/scoop-bucket.md index 0431acfde834f5..fe2f80d4035c8f 100644 --- a/pages.de/windows/scoop-bucket.md +++ b/pages.de/windows/scoop-bucket.md @@ -2,7 +2,7 @@ > Verwalte "Eimer": Git-Repositories, welche Dateien enthalten, die beschreiben, wie Scoop Programme installiert werden. > Kennt Scoop nicht die URL eines Eimers, so muss diese angegeben werden. -> Mehr Informationen: . +> Weitere Informationen: . - Liste alle Eimer auf, die gerade aktiv sind: diff --git a/pages.de/windows/scoop.md b/pages.de/windows/scoop.md index 43794b6461310f..8ea4833cf38938 100644 --- a/pages.de/windows/scoop.md +++ b/pages.de/windows/scoop.md @@ -1,7 +1,7 @@ # scoop > Ein Kommandozeilenwerkzeug, um Windows-Programme (hier bezeichnet als Pakete) zu installieren. -> Mehr Informationen: . +> Weitere Informationen: . - Installiere ein Paket: diff --git a/pages.de/windows/sls.md b/pages.de/windows/sls.md new file mode 100644 index 00000000000000..f91da456b8379d --- /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 00000000000000..f950f386f19ea6 --- /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.de/windows/winget.md b/pages.de/windows/winget.md new file mode 100644 index 00000000000000..7c44eacfeb2fdc --- /dev/null +++ b/pages.de/windows/winget.md @@ -0,0 +1,16 @@ +# winget + +> Windows Package Manager CLI. +> Weitere Informationen: . + +- Installiere ein Paket: + +`winget install {{paket}}` + +- Zeige Informationen über ein Paket an: + +`winget show {{paket}}` + +- Suche ein Paket: + +`winget search {{paket}}` diff --git a/pages.de/windows/wsl.md b/pages.de/windows/wsl.md new file mode 100644 index 00000000000000..c443830fa99431 --- /dev/null +++ b/pages.de/windows/wsl.md @@ -0,0 +1,36 @@ +# wsl + +> Verwalte das Windows Subsystem für Linux von der Kommandozeile. +> Weitere Informationen: . + +- Starte eine Linux-Shell (in der Standard-Distribution): + +`wsl {{shell_befehl}}` + +- Führe einen Linux-Befehl aus, ohne eine Shell zu benutzen: + +`wsl --exec {{befehl}} {{befehl_argumente}}` + +- Gib eine bestimmte Distribution an: + +`wsl --distribution {{distribution}} {{shell_befehl}}` + +- Liste verfügbare Distributionen auf: + +`wsl --list` + +- Exportiere eine Distribution in eine `.tar` Datei: + +`wsl --export {{distribution}} {{pfad/zu/datei.tar}}` + +- Importiere eine Distribution von einer `.tar` Datei: + +`wsl --import {{distribution}} {{pfad/zu/installations_verzeichnis}} {{pfad/zu/datei.tar}}` + +- Ändere die WSL-Version einer bestimmten Distribution: + +`wsl --set-version {{distribution}} {{version}}` + +- Fahre das Windows Subsystem für Linux herunter: + +`wsl --shutdown` diff --git a/pages.de/windows/xcopy.md b/pages.de/windows/xcopy.md new file mode 100644 index 00000000000000..0d9b1df347f259 --- /dev/null +++ b/pages.de/windows/xcopy.md @@ -0,0 +1,36 @@ +# xcopy + +> Kopieren von Dateien und Verzeichnisbäumen. +> Weitere Informationen: . + +- Kopiere Datei(en) an den angegebenen Zielort: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}}` + +- Liste die zu kopierenden Dateien vor dem Kopieren auf: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /p` + +- Kopiere nur die Verzeichnisstruktur ohne Dateien: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /t` + +- Kopiere leere Verzeichnisse mit: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /e` + +- Behalte die Quell-Zugriffsrichtlinien (ACL) im Ziel Verzeichnis bei: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /o` + +- Setze den Vorgang nach Unterbrechung der Netzwerkverbindung fort: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /z` + +- Überschreibe bereits vorhandene Zieldateien automatisch: + +`xcopy {{pfad/zu/datei_oder_verzeichnis}} {{pfad/zu/ziel}} /y` + +- Zeige die detaillierte Hilfe an: + +`xcopy /?` diff --git a/pages.es/android/am.md b/pages.es/android/am.md new file mode 100644 index 00000000000000..01269cae3c40cd --- /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 00000000000000..a490d49db19b3b --- /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 00000000000000..0346129c01285c --- /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 00000000000000..bb1fa3f9b22acb --- /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 00000000000000..7b43506bb56f1e --- /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/dumpsys.md b/pages.es/android/dumpsys.md new file mode 100644 index 00000000000000..45fed8674a5651 --- /dev/null +++ b/pages.es/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Suministra información sobre los servicios del sistema Android. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Obtiene resultados de diagnóstico para todos los servicios del sistema: + +`dumpsys` + +- Obtiene resultados de diagnóstico para un servicio de sistema específico: + +`dumpsys {{service}}` + +- Enumera todos los servicios que `dumpsys` sobre los que puede proporcionar información: + +`dumpsys -l` + +- Enumera los argumentos específicos del servicio para un servicio determinado: + +`dumpsys {{service}} -h` + +- Excluye un servicio específico de la salida de diagnóstico: + +`dumpsys --skip {{service}}` + +- Especifica un período de tiempo de espera en segundos (predeterminado en 10 segundos): + +`dumpsys -t {{seconds}}` diff --git a/pages.es/android/getprop.md b/pages.es/android/getprop.md new file mode 100644 index 00000000000000..452b9773dc3e91 --- /dev/null +++ b/pages.es/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Muestra información sobre las propiedades del sistema Android. +> Más información: . + +- Muestra información sobre las propiedades del sistema Android: + +`getprop` + +- Muestra información sobre una propiedad específica: + +`getprop {{prop}}` + +- Muestra el nivel SDK de la API: + +`getprop {{ro.build.version.sdk}}` + +- Muestra la versión de Android instalada: + +`getprop {{ro.build.version.release}}` + +- Muestra el modelo del dispositivo Android: + +`getprop {{ro.vendor.product.model}}` + +- Muestra el estado de desbloqueo del OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Muestra la dirección MAC de la tarjeta Wi-Fi de Android: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.es/android/input.md b/pages.es/android/input.md new file mode 100644 index 00000000000000..b0550a37beb59c --- /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 new file mode 100644 index 00000000000000..5817d0e72986e4 --- /dev/null +++ b/pages.es/android/logcat.md @@ -0,0 +1,24 @@ +# logcat + +> Vuelca un registro de mensajes del sistema, incluyendo seguimientos de pila cuando ocurren errores, y mensajes informativos enviados por las aplicaciones. +> Más información: . + +- Muestra registros del sistema: + +`logcat` + +- Escribe registros del sistema a un archivo: + +`logcat -f {{ruta/al/archivo}}` + +- 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 00000000000000..2aec7f6d0a04c1 --- /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 00000000000000..fd6a38145ae387 --- /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/screencap.md b/pages.es/android/screencap.md new file mode 100644 index 00000000000000..d4424b027d6363 --- /dev/null +++ b/pages.es/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Toma una captura de pantalla de una pantalla móvil. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Toma una captura de pantalla: + +`screencap {{ruta/al/archivo}}` diff --git a/pages.es/android/settings.md b/pages.es/android/settings.md new file mode 100644 index 00000000000000..683f3c9816edc1 --- /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/android/wm.md b/pages.es/android/wm.md new file mode 100644 index 00000000000000..9a3a779c9f2c56 --- /dev/null +++ b/pages.es/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Muestra información sobre la pantalla de un dispositivo Android. +> Este comando solo se puede usar a través de `adb shell`. +> Más información: . + +- Muestra el tamaño físico de la pantalla de un dispositivo Android: + +`wm {{tamaño}}` + +- Muestra la densidad física de la pantalla de un dispositivo Android: + +`wm {{densidad}}` diff --git a/pages.es/common/2to3.md b/pages.es/common/2to3.md new file mode 100644 index 00000000000000..1c2c327463d03d --- /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 55830e51ce3474..375116969986a7 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: @@ -25,7 +25,7 @@ - Comprime usando un tipo de archivo comprimido específico: -`7z a -t{{zip|gzip|bzip2|tar}} {{archivo_comprimido.7z}} {{ruta/al/archivo_o_directorio_a_comprimir}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{archivo_comprimido.7z}} {{ruta/al/archivo_o_directorio_a_comprimir}}` - Lista los tipos de archivo comprimido disponibles: diff --git a/pages.es/common/7za.md b/pages.es/common/7za.md new file mode 100644 index 00000000000000..94b96c198ae620 --- /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 00000000000000..95dde75ef37f46 --- /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 new file mode 100644 index 00000000000000..0d78257577e83c --- /dev/null +++ b/pages.es/common/[.md @@ -0,0 +1,33 @@ +# [ + +> 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 es igual a la cadena especificada: + +`["${{variable}}" {{==|!=}} "{{cadena}}" ]` + +- 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: + +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{entero}} ]` + +- 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 archivo ([f]ile) especificado existe: + +`[ -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 00000000000000..575a6f18c3a0ae --- /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/aapt.md b/pages.es/common/aapt.md new file mode 100644 index 00000000000000..43f7fdc93c932f --- /dev/null +++ b/pages.es/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Herramienta para empaquetado de activos de Android. +> Compila y empaqueta recursos de una app de Android. +> Más información: . + +- Lista los archivos contenidos en un archivo APK: + +`aapt list {{ruta/al/app.apk}}` + +- Muestra la metadata de una app (versión, permisos, etc.): + +`aapt dump badging {{ruta/al/app.apk}}` + +- Crea un nuevo archivo APK con archivos de un directorio especificado: + +`aapt package -F {{ruta/al/app.apk}} {{ruta/al/directorio}}` diff --git a/pages.es/common/ab.md b/pages.es/common/ab.md new file mode 100644 index 00000000000000..0d7099368fd906 --- /dev/null +++ b/pages.es/common/ab.md @@ -0,0 +1,24 @@ +# ab + +> Herramienta comparativa del servidor Apache HTTP. +> Más información: . + +- Ejecuta 100 solicitudes HTTP GET a una URL dada: + +`ab -n {{100}} {{url}}` + +- Ejecuta 100 solicitudes HTTP GET, en lotes simultáneos de a 10, a una URL: + +`ab -n {{100}} -c {{10}} {{url}}` + +- Ejecuta 100 solicitudes HTTP POST a una URL, utilizando la carga JSON de un archivo: + +`ab -n {{100}} -T {{application/json}} -p {{ruta/al/archivo.json}} {{url}}` + +- Utiliza HTTP [K]eep Alive, es decir, realiza múltiples solicitudes dentro de una sesión HTTP: + +`ab -k {{url}}` + +- Establece el máximo número de segundos utilizados para la comparación: + +`ab -t {{60}} {{url}}` diff --git a/pages.es/common/abduco.md b/pages.es/common/abduco.md new file mode 100644 index 00000000000000..8eabafc5f7ba3c --- /dev/null +++ b/pages.es/common/abduco.md @@ -0,0 +1,24 @@ +# abduco + +> Administrador de sesión de terminal. +> Más información: . + +- Lista sesiones: + +`abduco` + +- Adjunta a una sesión, creándola si no existe: + +`abduco -A {{nombre}} {{bash}}` + +- Adjunta a una sesión con `dvtm`, creándola si no existe: + +`abduco -A {{nombre}}` + +- Separarse de una sesión: + +`Ctrl + \` + +- Adjunta a una sesión en modo solo-lectura: + +`abduco -Ar {{nombre}}` diff --git a/pages.es/common/ac.md b/pages.es/common/ac.md new file mode 100644 index 00000000000000..6fffa2fcc11afe --- /dev/null +++ b/pages.es/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> Imprimir estadísticas sobre cuanto tiempo han estado conectados los usuarios. +> Más información: . + +- Imprime cuanto tiempo ha estado conectado el usuario actual en horas: + +`ac` + +- Imprime cuanto tiempo han estado conectados los usuarios en horas: + +`ac -p` + +- Imprime cuanto tiempo ha estado conectado un usuario en particular en horas: + +`ac -p {{nombre_de_usuario}}` + +- Imprime cuánto tiempo ha estado conectado un usuario en particular en horas por día (con total): + +`ac -dp {{nombre_de_usuario}}` diff --git a/pages.es/common/ack.md b/pages.es/common/ack.md new file mode 100644 index 00000000000000..53e61e0e772b3a --- /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 00000000000000..f4a227537b8b5b --- /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 00000000000000..eb353f3a2e6a9d --- /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 00000000000000..6257d35513e279 --- /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/acyclic.md b/pages.es/common/acyclic.md new file mode 100644 index 00000000000000..23273936e7632b --- /dev/null +++ b/pages.es/common/acyclic.md @@ -0,0 +1,17 @@ +# acyclic + +> Hace un gráfico acíclico invirtiendo algunos bordes. +> Filtros Graphviz: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> Más información: . + +- Hace un gráfico acíclico invirtiendo algunos bordes: + +`acyclic {{ruta/a/entrada.gv}} > {{ruta/a/salida.gv}}` + +- Imprime si un gráfico es acíclico, tiene un ciclo o si no posee instrucciones, no genera ningún gráfico de salida: + +`acyclic -v -n {{ruta/a/entrada.gv}}` + +- Mostrar ayuda para `acyclic`: + +`acyclic -?` diff --git a/pages.es/common/adb-install.md b/pages.es/common/adb-install.md new file mode 100644 index 00000000000000..bd4b3b090d1248 --- /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 00000000000000..fadca7c231e798 --- /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 00000000000000..28d18644dee991 --- /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 00000000000000..b9cf8d76001e58 --- /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 f8ac0ad403cffa..d93d24cdfa9d1e 100644 --- a/pages.es/common/adb.md +++ b/pages.es/common/adb.md @@ -1,6 +1,7 @@ # adb > Android Debug Bridge: comunica con una instancia de un emulador Android o conecta dispositivos Android. +> Algunos subcomandos, como `adb shell`, tienen su propia documentación de uso. > Más información: . - Verifica si el proceso del servidor adb está ejecutandose y lo inicia: diff --git a/pages.es/common/adscript.md b/pages.es/common/adscript.md new file mode 100644 index 00000000000000..8d4f81cbcaf9d9 --- /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 00000000000000..57d56d21f10b69 --- /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/ag.md b/pages.es/common/ag.md new file mode 100644 index 00000000000000..73134238e37d6e --- /dev/null +++ b/pages.es/common/ag.md @@ -0,0 +1,32 @@ +# ag + +> The Silver Searcher. Como ack, pero apunta a ser más rápido. +> Más información: . + +- Encuentra archivos que contengan "foo", e imprime las líneas coincidentes en su contexto: + +`ag {{foo}}` + +- Busca archivos que contengan "foo" en un directorio específico: + +`ag {{foo}} {{ruta/al/directorio}}` + +- Busca archivos que contengan "foo", pero sólo se alistan los nombres de los archivos: + +`ag -l {{foo}}` + +- Busca archivos que contengan "FOO" sin distinguir entre mayúsculas y minúsculas, e imprime sólo la coincidencia, en lugar de toda la línea: + +`ag -i -o {{FOO}}` + +- Busca "foo" en archivos cuyo nombre coincide con "bar": + +`ag {{foo}} -G {{bar}}` + +- Busca archivos cuyo contenido coincide con una expresión regular: + +`ag '{{^ba(r|z)$}}'` + +- Busca archivos con un nombre que coincida con "foo": + +`ag -g {{foo}}` diff --git a/pages.es/common/agate.md b/pages.es/common/agate.md new file mode 100644 index 00000000000000..5e1032251c51db --- /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 00000000000000..8eb885821962f9 --- /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/aireplay-ng.md b/pages.es/common/aireplay-ng.md new file mode 100644 index 00000000000000..2b57f1c3d3ef35 --- /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 00000000000000..eab3b9609a733d --- /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 00000000000000..01c2d1f2d285db --- /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 00000000000000..2d7aba16039779 --- /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 00000000000000..0347a1a0d8d565 --- /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/alacritty.md b/pages.es/common/alacritty.md new file mode 100644 index 00000000000000..bf269c1f0841d3 --- /dev/null +++ b/pages.es/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Emulador de terminal acelerado por GPU y multiplataforma. +> Más información: . + +- Abre una nueva ventana de Alacritty: + +`alacritty` + +- Ejecuta Alacritty en un directorio específico: + +`alacritty --working-directory {{ruta/al/directorio}}` + +- Ejecuta un comando en una nueva ventana de Alacritty: + +`alacritty -e {{comando}}` + +- Especifica un archivo de configuración alternativo (por defecto es `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): + +`alacritty --config-file {{ruta/al/config.yml}}` + +- Ejecuta con recarga automática de la configuración activada (puede activarse por defecto en `alacritty.yml`): + +`alacritty --live-config-reload --config-file {{ruta/al/config.yml}}` diff --git a/pages.es/common/alex.md b/pages.es/common/alex.md new file mode 100644 index 00000000000000..a7ef58800df1c7 --- /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/alias.md b/pages.es/common/alias.md index 3b2615d29a9d34..05fa1e46be3a86 100644 --- a/pages.es/common/alias.md +++ b/pages.es/common/alias.md @@ -1,6 +1,6 @@ # alias -> Crea alias -- palabras que son remplazadas por una cadena de comando(s). +> Crea alias -- palabras que son reemplazadas por una cadena de comando(s). > Los alias son temporales en la sesión de shell actual, a no ser que estén definidos en el archivo de configuración de la shell, ej. `~/.bashrc`. > Más información: . diff --git a/pages.es/common/amass-db.md b/pages.es/common/amass-db.md new file mode 100644 index 00000000000000..eaf59da4be00fe --- /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 00000000000000..c29777230c7b1f --- /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 00000000000000..e1debb48930afa --- /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 00000000000000..c67fd9ea7e8c7a --- /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 00000000000000..5ab2351e99b7c7 --- /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 00000000000000..7889e174da13ed --- /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 00000000000000..3e3dc9659c301c --- /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 00000000000000..93d697cdcc1019 --- /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 00000000000000..02fa3a88b391aa --- /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 00000000000000..d8372454a34061 --- /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 00000000000000..a5b3d2aad95fd5 --- /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 00000000000000..d28f22245b9f0e --- /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 00000000000000..9683ed4cd494bb --- /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 00000000000000..b8740155318ede --- /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 {{archivo_diccionario}}` diff --git a/pages.es/common/apktool.md b/pages.es/common/apktool.md new file mode 100644 index 00000000000000..402248fcf0901d --- /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 00000000000000..a94ea80941964d --- /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 http://atom.io/packages o un tema de http://atom.io/themes: + +`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 00000000000000..73272a1f6f77c4 --- /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 00000000000000..b4bdc02faace10 --- /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 00000000000000..9f518eb5d484d7 --- /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 00000000000000..91d711f385a08a --- /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 00000000000000..db0b8db9cad5c1 --- /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 00000000000000..e650ca176bef9d --- /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/asar.md b/pages.es/common/asar.md new file mode 100644 index 00000000000000..17c2b216cf8bc0 --- /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 00000000000000..e1e5d9fcce1240 --- /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 27f88ae53a0ddf..8e976d1bf4343e 100644 --- a/pages.es/common/asciinema.md +++ b/pages.es/common/asciinema.md @@ -1,13 +1,13 @@ # asciinema -> Graba y reproduce sesiones de terminal, y opcionalmente compartelas en asciinema.org. -> Más información: . +> Graba y reproduce sesiones de terminal, y opcionalmente compártelas en asciinema.org. +> Más información: . - Asocia el programa local de `asciinema` con una cuenta de asciinema.org: `asciinema auth` -- Crea una nueva grabación (una vez acabada, se pregutará al usuario si la quiere cuardar en local, o subirla): +- Crea una nueva grabación (una vez acabada, se preguntará al usuario si la quiere guardar en local, o subirla): `asciinema rec` diff --git a/pages.es/common/assimp.md b/pages.es/common/assimp.md new file mode 100644 index 00000000000000..63c179bcdc01c4 --- /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 00000000000000..5cbcbd127ac704 --- /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/audacious.md b/pages.es/common/audacious.md new file mode 100644 index 00000000000000..3e0b3ecf198022 --- /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/autopep8.md b/pages.es/common/autopep8.md new file mode 100644 index 00000000000000..5924d100531c1c --- /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/avo.md b/pages.es/common/avo.md new file mode 100644 index 00000000000000..a688c9567e4e3d --- /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/aws-cognito-idp.md b/pages.es/common/aws-cognito-idp.md new file mode 100644 index 00000000000000..3215d66637499d --- /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 00000000000000..0ff7167c981b2d --- /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-glue.md b/pages.es/common/aws-glue.md new file mode 100644 index 00000000000000..7c4dea0ee4168d --- /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-kinesis.md b/pages.es/common/aws-kinesis.md new file mode 100644 index 00000000000000..9a884e6a00479d --- /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-pricing.md b/pages.es/common/aws-pricing.md new file mode 100644 index 00000000000000..b15d8a16900367 --- /dev/null +++ b/pages.es/common/aws-pricing.md @@ -0,0 +1,24 @@ +# aws pricing + +> Consultar servicios, productos e información de precios de Amazon Web Services. +> Más información: . + +- Lista códigos de servicio de una región específica: + +`aws pricing describe-services --region {{us-east-1}}` + +- Lista atributos para un código de servicio dado en una región específica: + +`aws pricing describe-services --service-code {{AmazonEC2}} --region {{us-east-1}}` + +- Imprime información de precios para un código de servicio en una región específica: + +`aws pricing get-products --service-code {{AmazonEC2}} --region {{us-east-1}}` + +- Lista valores para un atributo específico para un código de servicio en una región específica: + +`aws pricing get-attribute-values --service-code {{AmazonEC2}} --attribute-name {{instanceType}} --region {{us-east-1}}` + +- Imprime información de precios para un código de servicio usando filtros por tipo de instancia y ubicación: + +`aws pricing get-products --service-code {{AmazonEC2}} --filters "{{Type=TERM_MATCH,Field=instanceType,Value=m5.xlarge}}" "{{Type=TERM_MATCH,Field=location,Value=US East (N. Virginia)}}" --region {{us-east-1}}` diff --git a/pages.es/common/aws-rds.md b/pages.es/common/aws-rds.md new file mode 100644 index 00000000000000..585387eed9f0b4 --- /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 00000000000000..cc0f33c8633b0b --- /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/az-logout.md b/pages.es/common/az-logout.md new file mode 100644 index 00000000000000..292a94253ac156 --- /dev/null +++ b/pages.es/common/az-logout.md @@ -0,0 +1,13 @@ +# az logout + +> Cierra la sesión de una suscripción de Azure. +> Parte de `azure-cli`. +> Más información: . + +- Cierra la sesión de la cuenta activa: + +`az logout` + +- Cierra la sesión de un nombre de usuario específico: + +`az logout --username {{alias@somedomain.com}}` diff --git a/pages.es/common/az-sshkey.md b/pages.es/common/az-sshkey.md new file mode 100644 index 00000000000000..1dfcba71ff0b35 --- /dev/null +++ b/pages.es/common/az-sshkey.md @@ -0,0 +1,21 @@ +# az sshkey + +> Administra claves públicas SSH con máquinas virtuales. +> Parte de `azure-cli`. +> Más información: . + +- Crea una nueva clave SSH: + +`az sshkey create --name {{nombre}} --resource-group {{grupo_de_recursos}}` + +- Sube una clave SSH existente: + +`az sshkey create --name {{nombre}} --resource-group {{grupo_de_recursos}} --public-key "{{@ruta/de/llave.pub}}"` + +- Lista todas las claves públicas SSH: + +`az sshkey list` + +- Muestra información sobre una clave pública SSH: + +`az sshkey show --name {{nombre}} --resource-group {{grupo_de_recursos}}` diff --git a/pages.es/common/az-vm.md b/pages.es/common/az-vm.md new file mode 100644 index 00000000000000..b29f57d7154b8f --- /dev/null +++ b/pages.es/common/az-vm.md @@ -0,0 +1,33 @@ +# az vm + +> Administra máquinas virtuales en Azure. +> Parte de `azure-cli`. +> Más información: . + +- Lista los detalles de las máquinas virtuales disponibles: + +`az vm list` + +- Crea una máquina virtual usando la imagen por defecto de Ubuntu y genera claves ssh: + +`az vm create --resource-group {{grupo_de_recursos}} --name {{nombre}} --image {{UbuntuLTS}} --admin-user {{usuario_azure}} --generate-ssh-keys` + +- Detiene una máquina virtual: + +`az vm stop --resource-group {{grupo_de_recursos}} --name {{nombre}}` + +- Desasigna una máquina virtual: + +`az vm deallocate --resource-group {{grupo_de_recursos}} --name {{nombre}}` + +- Inicia una máquina virtual: + +`az vm start --resource-group {{grupo_de_recursos}} --name {{nombre}}` + +- Reinicia una máquina virtual: + +`az vm restart --resource-group {{grupo_de_recursos}} --name {{nombre}}` + +- Lista las imágenes de VM disponibles en el Azure Marketplace: + +`az vm image list` diff --git a/pages.es/common/az-webapp.md b/pages.es/common/az-webapp.md new file mode 100644 index 00000000000000..6bff4c5f6caa83 --- /dev/null +++ b/pages.es/common/az-webapp.md @@ -0,0 +1,21 @@ +# az webapp + +> Administra aplicaciones web alojadas en Azure Cloud Services. +> Parte de `azure-cli`. +> Más información: . + +- Lista los entornos de ejecución disponibles para una aplicación web: + +`az webapp list-runtimes --os-type {{windows|linux}}` + +- Crea una aplicación web: + +`az webapp up --name {{nombre}} --location {{ubicación}} --runtime {{entorno_de_ejecución}}` + +- Lista todas las aplicaciones web: + +`az webapp list` + +- Elimina una aplicación web específica: + +`az webapp delete --name {{nombre}} --resource-group {{grupo_de_recursos}}` diff --git a/pages.es/common/bash.md b/pages.es/common/bash.md index 1b7675bdbf97bc..53365c09599aab 100644 --- a/pages.es/common/bash.md +++ b/pages.es/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell. > Intérprete de línea de comandos compatible con `sh`. -> Más información: . +> Más información: . - Inicia un intérprete de comandos interactivo: diff --git a/pages.es/common/bat.md b/pages.es/common/bat.md index c285001d5217a8..e780cae3702918 100644 --- a/pages.es/common/bat.md +++ b/pages.es/common/bat.md @@ -16,7 +16,7 @@ `bat {{archivo1}} {{archivo2}} >> {{archivo_final}}` -- Numera las lineas del archivo: +- Numera las líneas del archivo: `bat -n {{archivo}}` diff --git a/pages.es/common/bc.md b/pages.es/common/bc.md new file mode 100644 index 00000000000000..84e0bb85d0234a --- /dev/null +++ b/pages.es/common/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 matemática estándar activada: + +`bc --mathlib` + +- Calcula una expresión: + +`echo '{{5 / 3}}'' | bc` + +- Ejecuta un script: + +`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/common/brew.md b/pages.es/common/brew.md new file mode 100644 index 00000000000000..9fd81541a34d96 --- /dev/null +++ b/pages.es/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> Administrador de paquetes para macOS y Linux. +> Más información: . + +- Instala la última versión estable de una fórmula (usar `--devel` para versiones de desarrollo): + +`brew install {{formula}}` + +- Lista todas las fórmulas y casks instaladas: + +`brew list` + +- Actualiza una fórmula o cask instalada (si no se indica ninguna, todas las fórmulas/casks se actualizan): + +`brew upgrade {{formula}}` + +- Trae la versión más reciente de Homebrew y todas sus fórmulas y casks desde el repositorio fuente de Homebrew: + +`brew update` + +- Muestra las fórmulas y casks que tienen una versión más reciente disponible: + +`brew outdated` + +- Busca fórmulas (por ej. paquetes) y casks (por ej. paquetes nativos) disponibles: + +`brew search {{texto}}` + +- Muestra la información de una fórmula o un cask (versión, ruta de instalación, dependencias, etc.): + +`brew info {{formula}}` + +- Revisa la instalación local de Homebrew en busca de problemas potenciales: + +`brew doctor` diff --git a/pages.es/common/bundler.md b/pages.es/common/bundler.md new file mode 100644 index 00000000000000..fefb5332fd5779 --- /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/calc.md b/pages.es/common/calc.md new file mode 100644 index 00000000000000..6f4357b6e8e1da --- /dev/null +++ b/pages.es/common/calc.md @@ -0,0 +1,12 @@ +# calc + +> Una calculadora de precisión arbitraria en la terminal. +> Más información: . + +- Iniciar calc en modo interactivo: + +`calc` + +- Realizar un cálculo en modo no-interactivo: + +`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.es/common/cargo.md b/pages.es/common/cargo.md new file mode 100644 index 00000000000000..976f31c11f9f09 --- /dev/null +++ b/pages.es/common/cargo.md @@ -0,0 +1,37 @@ +# cargo + +> 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: . + +- Busca crates: + +`cargo search {{texto_de_búsqueda}}` + +- Instala un crate: + +`cargo install {{nombre_del_módulo}}` + +- Lista crates instalados: + +`cargo install --list` + +- Crea un nuevo proyecto Rust binario o biblioteca en el directorio actual: + +`cargo init --{{bin|lib}}` + +- Crea un nuevo proyecto Rust binario o biblioteca en el directorio especificado: + +`cargo new {{ruta/al/directorio}} --{{bin|lib}}` + +- Compila el proyecto Rust en el directorio actual: + +`cargo build` + +- Compila el proyecto Rust en el directorio actual usando el compilador nightly: + +`cargo +nightly build` + +- Compila el proyecto Rust en el directorio actual usando un número específico de hilos (por defecto es el número de núcleos de la CPU): + +`cargo build --jobs {{numero_de_hilos}}` diff --git a/pages.es/common/cd.md b/pages.es/common/cd.md index 20403db20f7888..b4c2b89051b0a4 100644 --- a/pages.es/common/cd.md +++ b/pages.es/common/cd.md @@ -1,20 +1,28 @@ # cd -> Cambiar el directorio de trabajo. -> Más información: . +> 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: +- Subir al directorio padre respecto del directorio actual: + +`cd ..` + +- Accede al directorio raíz del usuario actual: `cd` -- Accede al directorio padre del directorio actual: +- Accede al directorio personal del usuario especificado: -`cd ..` +`cd ~{{nombredeusuario}}` -- Accede al directorio elegido previamente: +- 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 00000000000000..f4e47c2f410d3b --- /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/clang-cpp.md b/pages.es/common/clang-cpp.md new file mode 100644 index 00000000000000..7ba11a22e2ae4a --- /dev/null +++ b/pages.es/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Este comando es un alias de `clang++`. + +- Ver documentación para el comando original: + +`tldr clang++` diff --git a/pages.es/common/clojure.md b/pages.es/common/clojure.md new file mode 100644 index 00000000000000..85ce93893305d7 --- /dev/null +++ b/pages.es/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Este comando es un alias de `clj`. + +- Ver documentación para el comando original: + +`tldr clj` diff --git a/pages.es/common/code.md b/pages.es/common/code.md new file mode 100644 index 00000000000000..d43e7d2a71b860 --- /dev/null +++ b/pages.es/common/code.md @@ -0,0 +1,36 @@ +# code + +> Editor de código extensible y multiplataforma. +> Más información: . + +- Inicia Visual Studio Code: + +`code` + +- Abre archivos o directorios específicos: + +`code {{ruta/al/archivo_o_directorio1 ruta/al/archivo_o_directorio2 ...}}` + +- Compara dos archivos específicos: + +`code --diff {{ruta/al/archivo1}} {{ruta/al/archivo2}}` + +- Abre archivos o directorios específicos en una nueva ventana: + +`code --new-window {{ruta/al/archivo_o_directorio1 ruta/al/archivo_o_directorio2 ...}}` + +- Instala/desinstala una extensión específica: + +`code --{{install-extension|uninstall-extension}} {{editor.extension}}` + +- Imprime las extensiones instaladas: + +`code --list-extensions` + +- Imprime las extensiones instaladas con su versión: + +`code --list-extensions --show-versions` + +- Inicia el editor como súper usuario (root) mientras que almacena los datos del usuario en un directorio específico: + +`sudo code --user-data-dir {{ruta/al/directorio}}` diff --git a/pages.es/common/cola.md b/pages.es/common/cola.md new file mode 100644 index 00000000000000..f93d59bc2cba4d --- /dev/null +++ b/pages.es/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Este comando es un alias de `git-cola`. + +- Ver documentación para el comando original: + +`tldr git-cola` diff --git a/pages.es/common/cpdf.md b/pages.es/common/cpdf.md index 18a3ca8d48bcf4..5faa1f756a245e 100644 --- a/pages.es/common/cpdf.md +++ b/pages.es/common/cpdf.md @@ -1,7 +1,7 @@ # cpdf > Interfaz de línea de comandos para manipular documentos PDF existentes de diferentes maneras. -> Más información: . +> Más información: . - Selecciona las páginas 1, 2, 3 y 6 del documento fuente y escribirlas en el documento objetivo: diff --git a/pages.es/common/cron.md b/pages.es/common/cron.md new file mode 100644 index 00000000000000..0c3e88e68a563d --- /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 f10077faf91900..d659b3dbc67eed 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. -> Más información: +> 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/deno.md b/pages.es/common/deno.md new file mode 100644 index 00000000000000..d37c9ddec064e3 --- /dev/null +++ b/pages.es/common/deno.md @@ -0,0 +1,24 @@ +# deno + +> Un entorno de ejecución seguro para JavaScript y TypeScript. +> Más información: . + +- Ejecuta un archivo JavaScript o TypeScript: + +`deno run {{ruta/al/archivo.ts}}` + +- Inicia un REPL (intérprete de comandos interactivo): + +`deno` + +- Ejecuta un archivo con acceso a la red habilitado: + +`deno run --allow-net {{ruta/al/archivo.ts}}` + +- Ejecuta un archivo desde una URL: + +`deno run {{https://deno.land/std/examples/welcome.ts}}` + +- Instala un archivo de secuencia de comandos ejecutable desde una URL: + +`deno install {{https://deno.land/std/examples/colors.ts}}` diff --git a/pages.es/common/df.md b/pages.es/common/df.md new file mode 100644 index 00000000000000..a356f19f38ad98 --- /dev/null +++ b/pages.es/common/df.md @@ -0,0 +1,24 @@ +# df + +> Entrega información general del uso de espacio en disco del sistema de archivos. +> Más información: . + +- Muestra todos los sistemas de archivos y sus usos de disco: + +`df` + +- Muestra todos los sistemas de archivos y sus usos de disco en formato legible para humanos: + +`df -h` + +- Muestra el sistema de archivos que contiene determinado archivo o directorio y su uso de disco: + +`df {{ruta/al/archivo_o_directorio}}` + +- Muestra estadísticas sobre el número de inodos libres: + +`df -i` + +- Muestra sistemas de archivos excluyendo los tipos especificados: + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.es/common/dig.md b/pages.es/common/dig.md new file mode 100644 index 00000000000000..f7b8c5b1701f9c --- /dev/null +++ b/pages.es/common/dig.md @@ -0,0 +1,36 @@ +# dig + +> Utilidad de consulta para DNS. +> Más información: . + +- Consulta la(s) IP(s) asociadas a un nombre de equipo (registros A): + +`dig +short {{example.com}}` + +- Obtiene una respuesta detallada para un dominio determinado (registros A): + +`dig +noall +answer {{example.com}}` + +- Consulta un tipo de registro DNS específico asociado a un dominio determinado: + +`dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}` + +- Obtiene todos los tipos de registros para un dominio determinado: + +`dig {{example.com}} ANY` + +- Especifica un servidor DNS alterno a consultar: + +`dig @{{8.8.8.8}} {{example.com}}` + +- Realiza una búsqueda DNS inversa para una dirección IP (registro PTR): + +`dig -x {{8.8.8.8}}` + +- Encuentra servidores de nombre autoritativos para la zona y muestra registros SOA: + +`dig +nssearch {{example.com}}` + +- Realiza consultas iterativas y muestra el trazado de ruta completo para resolver un dominio: + +`dig +trace {{example.com}}` diff --git a/pages.es/common/docker-compose.md b/pages.es/common/docker-compose.md index 03c7c1c660296f..c9e944b5bbaa44 100644 --- a/pages.es/common/docker-compose.md +++ b/pages.es/common/docker-compose.md @@ -1,32 +1,36 @@ -# docker-compose +# docker compose > Ejecuta y gestiona múltiples contenedores Docker. -> Más información: . +> Más información: . - Lista los contenedores en ejecución: -`docker-compose ps` +`docker compose ps` - 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` +`docker compose up --build` - Inicia todos los contenedores usando un archivo compose alternativo: -`docker-compose --file {{ruta/al/directorio}} up` +`docker compose --file {{ruta/al/directorio}} up` - Detiene todos los contenedores en ejecución: -`docker-compose stop` +`docker compose stop` - Detiene y elimina todos los contenedores, redes, imágenes y volúmenes: -`docker-compose down --rmi all --volumes` +`docker compose down --rmi all --volumes` - Sigue los registros de todos los contenedores: -`docker-compose logs --follow` +`docker compose logs --follow` + +- Sigue los registros de un contenedor específico: + +`docker compose logs --follow {{nombre_de_contenedor}}` diff --git a/pages.es/common/docker.md b/pages.es/common/docker.md index 83965d0a198bcd..fcb9ab8d6060c4 100644 --- a/pages.es/common/docker.md +++ b/pages.es/common/docker.md @@ -1,15 +1,12 @@ # docker > Administra contenedores e imágenes de Docker. +> Algunos subcomandos, como `docker run`, tienen su propia documentación de uso. > Más información: . -- Lista los contenedores de Docker en ejecución: - -`docker ps` - - Lista todos los contenedores de Docker (en ejecución y detenidos): -`docker ps -a` +`docker ps --all` - Inicia un contenedor desde una imagen con un nombre personalizado: @@ -23,6 +20,10 @@ `docker pull {{imagen}}` +- Muestra la lista de imagenes descargadas: + +`docker images` + - Inicia una línea de Comandos dentro de un contenedor en ejecución: `docker exec -it {{nombre_de_contenedor}} {{sh}}` diff --git a/pages.es/common/dotnet-build.md b/pages.es/common/dotnet-build.md index a8bb591d463be9..cac97243331d14 100644 --- a/pages.es/common/dotnet-build.md +++ b/pages.es/common/dotnet-build.md @@ -1,7 +1,7 @@ # dotnet build > Compila una aplicación .NET y sus dependencias. -> Más información: . +> Más información: . - Compila el proyecto o solución en el directorio actual: diff --git a/pages.es/common/dotnet-publish.md b/pages.es/common/dotnet-publish.md index 2018e5af14b685..b63e88fff0e38a 100644 --- a/pages.es/common/dotnet-publish.md +++ b/pages.es/common/dotnet-publish.md @@ -1,7 +1,7 @@ # dotnet publish > Publica una aplicación .NET y sus dependencias en una carpeta para la implementación en un sistema de hospedaje. -> Más información: . +> Más información: . - Compila un proyecto .NET en modo de lanzamiento: diff --git a/pages.es/common/dotnet-restore.md b/pages.es/common/dotnet-restore.md index e1f1b686df3fd7..10573a42cba9f8 100644 --- a/pages.es/common/dotnet-restore.md +++ b/pages.es/common/dotnet-restore.md @@ -1,7 +1,7 @@ # dotnet restore > Restarua las dependencias y herramientas de un proyecto .NET. -> Más información: . +> Más información: . - Restaura dependencias para un proyecto o solución .NET en el directorio actual: diff --git a/pages.es/common/dotnet.md b/pages.es/common/dotnet.md index 56cea0c5a89e4a..a05a97b5caa073 100644 --- a/pages.es/common/dotnet.md +++ b/pages.es/common/dotnet.md @@ -1,7 +1,8 @@ # dotnet > Herramienta multiplataforma de línea de comandos para .NET Core. -> Más información: . +> Algunos subcomandos, como `dotnet build`, tienen su propia documentación de uso. +> Más información: . - Inicializa un proyecto .NET nuevo: diff --git a/pages.es/common/du.md b/pages.es/common/du.md new file mode 100644 index 00000000000000..bd2bec02a2bec8 --- /dev/null +++ b/pages.es/common/du.md @@ -0,0 +1,28 @@ +# du + +> Uso de disco: estima y resume el uso de espacio en disco de archivos y directorios. +> Más información: . + +- Lista los tamaños de un directorio y sus subdirectorios en las unidades dadas (B/KiB/MiB): + +`du -{{b|k|m}} {{ruta/al/directorio}}` + +- Lista los tamaños de un directorio y sus subdirectorios en formato legible para humanos (es decir, seleccionando automáticamente las unidades apropiadas para cada tamaño): + +`du -h {{ruta/al/directorio}}` + +- Muestra el tamaño de un solo directorio en formato legible para humanos: + +`du -sh {{ruta/al/directorio}}` + +- Lista los tamaños legibles para humanos de un directorio y de todos los archivos y directorios dentro del mismo: + +`du -ah {{ruta/al/directorio}}` + +- Lista los tamaños legibles para humanos de un directorio y sus subdirectorios hasta N niveles de profundidad: + +`du -h --max-depth=N {{ruta/al/directorio}}` + +- Lista el tamaño legible para humanos de todos los archivos `.jpg` en subdirectorios del directorio actual y muestra un total al final: + +`du -ch {{*/*.jpg}}` diff --git a/pages.es/common/espanso.md b/pages.es/common/espanso.md new file mode 100644 index 00000000000000..8367255fb73554 --- /dev/null +++ b/pages.es/common/espanso.md @@ -0,0 +1,20 @@ +# espanso + +> Expansor de texto multiplataforma escrito en Rust. +> Más información: . + +- Comprueba el estado de Espanso: + +`espanso status` + +- Edita la configuración de Espanso: + +`espanso edit config` + +- Instala un paquete desde el hub store (): + +`espanso install {{nombre_paquete}}` + +- Reinicia Espanso (necesario después de instalar un paquete, útil en caso de fallo): + +`espanso restart` diff --git a/pages.es/common/feh.md b/pages.es/common/feh.md new file mode 100644 index 00000000000000..9b4ce371a4d718 --- /dev/null +++ b/pages.es/common/feh.md @@ -0,0 +1,32 @@ +# feh + +> Utilidad ligera de visualización de imágenes. +> Más información: . + +- Muestra imágenes localmente o usando una URL: + +`feh {{ruta/a/imagen}}` + +- Muestra imágenes recursivamente: + +`feh --recursive {{ruta/al/directorio}}` + +- Muestra imágenes sin bordes: + +`feh --borderless {{ruta/a/imagen}}` + +- Cierra después de la última imagen: + +`feh --cycle-once {{ruta/a/imagen}}` + +- Agrega una demora al ciclo de la presentación: + +`feh --slideshow-delay {{secundos}} {{ruta/a/imagen}}` + +- Cambia el fondo de pantalla (centrado, llenar, maximizado, ampliado o amontonado): + +`feh --bg-{{center|fill|max|scale|tile}} {{ruta/a/imagen}}` + +- Crea un montaje de todas las imágenes en un directorio. Produce una nueva imagen: + +`feh --montage --thumb-height {{150}} --thumb-width {{150}} --index-info "{{%nn%wx%h}}" --output {{ruta/a/nueva_imagen}}` diff --git a/pages.es/common/figlet.md b/pages.es/common/figlet.md new file mode 100644 index 00000000000000..bbc0ca7d0b6395 --- /dev/null +++ b/pages.es/common/figlet.md @@ -0,0 +1,21 @@ +# figlet + +> Genera encabezados usando caracteres ASCII desde la entrada del usuario. +> Véase también `showfigfonts`. +> Más información: . + +- Genera el encabezado directamente introduciendo el texto: + +`figlet {{texto_de_entrada}}` + +- Usa un archivo de fuente personalizada: + +`figlet {{texto_de_entrada}} -f {{ruta/al/archivo_de_fuente.flf}}` + +- Use una fuente del directorio predeterminado (la extensión puede ser omitida): + +`figlet {{texto_de_entrada}} -f {{archivo_de_fuente}}` + +- Redirige la salida de un comando hacia figlet: + +`{{comando}} | figlet` diff --git a/pages.es/common/fortune.md b/pages.es/common/fortune.md index d0b8e13a7dc75e..a24d719c96804e 100644 --- a/pages.es/common/fortune.md +++ b/pages.es/common/fortune.md @@ -1,7 +1,7 @@ # fortune > Imprime por pantalla una cita aleatoria (al estilo de una galleta de la suerte). -> Más información: . +> Más información: . - Imprime por pantalla una cita: diff --git a/pages.es/common/fossil-ci.md b/pages.es/common/fossil-ci.md new file mode 100644 index 00000000000000..a0efa685a9d482 --- /dev/null +++ b/pages.es/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil ci + +> Este comando es un alias de `fossil commit`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr fossil-commit` diff --git a/pages.es/common/fossil-delete.md b/pages.es/common/fossil-delete.md new file mode 100644 index 00000000000000..9145fa9620f531 --- /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 00000000000000..d288047078f791 --- /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 00000000000000..04704d77fd4ce5 --- /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 00000000000000..f922e9fac9fbfe --- /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-add.md b/pages.es/common/git-add.md index 12d0d3ee67566f..af5330c731899a 100644 --- a/pages.es/common/git-add.md +++ b/pages.es/common/git-add.md @@ -19,10 +19,14 @@ `git add -f` -- Añade partes de archivos interativamente: +- Añade partes de archivos interactivamente: `git add -p` -- Añade partes de un archivo interactivamente: +- Añade partes de un archivo dado interactivamente: `git add -p {{ruta/al/archivo}}` + +- Añade un archivo interactivamente: + +`git add -i` diff --git a/pages.es/common/git-branch.md b/pages.es/common/git-branch.md index 8f4d15ddc5370c..238cda7749db1a 100644 --- a/pages.es/common/git-branch.md +++ b/pages.es/common/git-branch.md @@ -3,7 +3,7 @@ > Comando Git principal para trabajar con ramas. > Más información: . -- Muestra las ramas locales. La rama actual está resaltado por `*`: +- Muestra las ramas locales. La rama actual está resaltada por `*`: `git branch` @@ -23,10 +23,14 @@ `git branch {{nombre_de_rama}} {{hash_del_commit}}` -- Renombra una rama (no debe haber sido verificada para hacer esto): +- Renombra una rama (no debe haber sido fusionada para hacer esto): `git branch -m {{antiguo_nombre_de_la_rama}} {{nuevo_nombre_de_la_rama}}` -- Borrar una rama local (no debe haber sido verificada para hacer esto): +- Borra una rama local (no debe haber sido fusionada para hacer esto): `git branch -d {{nombre_de_la_rama}}` + +- Borra una rama remota: + +`git push {{nombre_remoto}} --delete {{nombre_de_la_rama_remota}}` diff --git a/pages.es/common/git-clone.md b/pages.es/common/git-clone.md index 44bb3d4da7eaff..be4ac798358c75 100644 --- a/pages.es/common/git-clone.md +++ b/pages.es/common/git-clone.md @@ -5,20 +5,32 @@ - Clona un repositorio existente: -`git clone {{ubicación_remota_del_repositorio}}` +`git clone {{ubicacion_remota_del_repositorio}}` + +- Clona un repositorio existente en un directorio específico: + +`git clone {{ubicacion_remota_del_repositorio}} {{ruta/al/directorio}}` - Clona un repositorio existente y sus submódulos: -`git clone --recursive {{ubicación_remota_del_repositorio}}` +`git clone --recursive {{ubicacion_remota_del_repositorio}}` - Clona un repositorio local: `git clone -l {{ruta/al/repositorio/local}}` -- Clona silenciosamente (sin detalles del proceso de clonación): +- Clona silenciosamente: + +`git clone -q {{ubicacion_remota_del_repositorio}}` + +- Clona un repositorio existente solo descargando los 10 commits más recientes de la rama por defecto (útil para ahorrar tiempo): + +`git clone --depth {{10}} {{ubicacion_remota_del_repositorio}}` + +- Clona un repositorio existente solo descargando un branch específico: -`git clone -q {{ubicación_remota_del_repositorio}}` +`git clone --branch {{nombre}} --single-branch {{ubicacion_remota_del_repositorio}}` -- Clona un repositorio existente a partir de los últimos 10 commits más reciente de la rama por defecto (útil para ahorrar tiempo): +- Clona un repositorio existente usando un comando SSH específico: -`git clone --depth {{10}} {{ubicación_remota_del_repositorio}}` +`git clone --config core.sshCommand="{{ssh -i ruta/a/clave_ssh_privada}}" {{ubicacion_remota_del_repositorio}}` diff --git a/pages.es/common/git-commit.md b/pages.es/common/git-commit.md index 2aa94ee4ada90b..91483e52ef2b13 100644 --- a/pages.es/common/git-commit.md +++ b/pages.es/common/git-commit.md @@ -3,18 +3,26 @@ > Realiza commits de los archivos al repositorio. > Más información: . -- Raliza un commit de los archivos marcados al repositorio con un mensaje: +- Realiza un commit de los archivos marcados al repositorio con un mensaje: `git commit -m "{{mensaje}}"` +- Realiza un commit de los archivos marcados con un mensaje leído desde un archivo: + +`git commit --file {{ruta/al/archivo_del_mensaje_del_commit}}` + - Marca automáticamente todos los archivos modificados y realiza un commit con un mensaje: `git commit -a -m "{{mensaje}}"` -- Sustituye el último commit con los cambios marcados actualmente: +- Sustituye el último commit con los cambios marcados actualmente, cambiando el hash del commit: `git commit --amend` -- Realiza un commit para unos archivos específicos (que ya deben haber sido marcados previamente): +- Realiza un commit para archivos específicos (marcados previamente): + +`git commit {{ruta/al/archivo1}} {{ruta/al/archivo2}}` + +- Crea un commit, incluso si no hay archivos marcados: -`git commit {{ruta/de/mi/archivo1}} {{ruta/de/mi/archivo2}}` +`git commit -m "{{mensaje}}" --allow-empty` diff --git a/pages.es/common/git-config.md b/pages.es/common/git-config.md index b4fbe95b3793f4..7ac2fed3813bb9 100644 --- a/pages.es/common/git-config.md +++ b/pages.es/common/git-config.md @@ -1,7 +1,7 @@ # git config > Gestiona opciones personalizadas para la configuración de repositorios Git. -> Esta configuración puede ser local (para el repositorio actual) o global (para el usuario actual). +> Estas configuraciones pueden ser locales (para el repositorio actual) o globales (para el usuario actual). > Más información: . - Muestra solo las entradas de la configuración local (almacenadas en `.git/config` en el repositorio actual): @@ -12,7 +12,7 @@ `git config --list --global` -- Muestra todas las entradas de configuración que han sido definas local o globalmente: +- Muestra todas las entradas de configuración que han sido definidas local o globalmente: `git config --list` @@ -20,10 +20,18 @@ `git config alias.unstage` -- Establece un valor global para una entrada específica de la configuración: +- Establece el valor global para una entrada específica de la configuración: `git config --global alias.unstage "reset HEAD --"` - Revierte una entrada de la configuración global a su valor por defecto: `git config --global --unset alias.unstage` + +- Edita la configuración de Git para el repositorio actual en el editor por defecto: + +`git config --edit` + +- Edita la configuración global de Git en el editor por defecto: + +`git config --global --edit` diff --git a/pages.es/common/git-grep.md b/pages.es/common/git-grep.md index 087373e815c530..b78138629d2d85 100644 --- a/pages.es/common/git-grep.md +++ b/pages.es/common/git-grep.md @@ -12,7 +12,7 @@ `git grep {{cadena_a_buscar}} -- {{patrón_de_archivos}}` -- Busca una cadena en los archivos rastreados, incluyendo submodulos: +- Busca una cadena en los archivos rastreados, incluyendo submódulos: `git grep --recurse-submodules {{cadena_a_buscar}}` diff --git a/pages.es/common/git-imerge.md b/pages.es/common/git-imerge.md index 5a35bdd7791529..51a316fcf60cb7 100644 --- a/pages.es/common/git-imerge.md +++ b/pages.es/common/git-imerge.md @@ -16,7 +16,7 @@ `git imerge diagram` -- Continua la operación imerge después de resolver los conflictos (primero añade con `git add` los archivos conflictivios): +- Continua la operación imerge después de resolver los conflictos (primero añade con `git add` los archivos conflictivos): `git imerge continue --no-edit` diff --git a/pages.es/common/git-init.md b/pages.es/common/git-init.md index c6e221063edfc1..c86b2caf395d2c 100644 --- a/pages.es/common/git-init.md +++ b/pages.es/common/git-init.md @@ -7,6 +7,14 @@ `git init` +- Inicializa un repositorio con un nombre especifico para la rama inicial: + +`git init --initial-branch={{nombre_de_la_rama}}` + +- Inicializa un repositorio usando SHA256 como hash del objeto (requiere la versión 2.29+ de Git): + +`git init --object-format={{sha256}}` + - Inicializa un repositorio vacío, adecuado para usarlo como remoto a través de ssh: `git init --bare` diff --git a/pages.es/common/git-lfs.md b/pages.es/common/git-lfs.md index 6156ddc6aaf204..58cea05ee7112a 100644 --- a/pages.es/common/git-lfs.md +++ b/pages.es/common/git-lfs.md @@ -1,6 +1,6 @@ # git lfs -> Herramienta para trabajar con archivos grandes en repositorios Git. +> Trabaja con archivos grandes en repositorios de Git. > Más información: . - Inicializa Git LFS: @@ -26,3 +26,11 @@ - Introduce todos los objetos LFS en el servidor remoto (útil si se encuentran errores): `git lfs push --all {{nombre_remoto}} {{nombre_de_la_rama}}` + +- Trae todos los objetos de Git LFS: + +`git lfs fetch` + +- Verifica todos los objetos de Git LFS: + +`git lfs checkout` diff --git a/pages.es/common/git-log.md b/pages.es/common/git-log.md index d48a44aa56312b..08fddcf7b5b42c 100644 --- a/pages.es/common/git-log.md +++ b/pages.es/common/git-log.md @@ -3,30 +3,34 @@ > Muestra un historial de commits. > Más información: . -- Muestra la secuencia de commits que comienza desde el actual, en orden cronológico inverso: +- Muestra la secuencia de commits comenzando desde el actual, en orden cronológico inverso, del respositorio de Git en el directorio de trabajo actual: `git log` -- Muestra el historial de un archivo o directorio específico e incluye las diferencias: +- Muestra el historial de un archivo o directorio específico, incluyendo las diferencias: `git log -p {{ruta/al/archivo_o_directorio}}` -- Muestra solo la primera línea de cada mensaje de commit: - -`git log --oneline` - - Muestra un resumen de los archivos, o archivo, cambiados en cada commit: `git log --stat` -- Muestra un gráfico de los commits en la rama actual: +- Muestra un gráfico de los commits en la rama actual, utilizando solo la primer línea del mensaje de cada uno: -`git log --graph` +`git log --oneline --graph` - Muestra un gráfico de todos los commits, etiquetas y ramas en todo el repositorio: `git log --oneline --decorate --all --graph` -- Muestra solo los commits cuyo mensaje incluya una cadena concreta (no diferencia entre mayúsculas y minúsculas): +- Muestra solo los commits cuyo mensaje incluye una cadena dada (no diferencia entre mayúsculas y minúsculas): `git log -i --grep {{cadena_a_buscar}}` + +- Muestra los últimos N commits de cierto autor: + +`git log -n {{numero}} --author={{autor}}` + +- Muestra los commits entre dos fechas (yyyy-mm-dd): + +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.es/common/git-push.md b/pages.es/common/git-push.md index b218d4371f4e45..2ab165cff12598 100644 --- a/pages.es/common/git-push.md +++ b/pages.es/common/git-push.md @@ -15,6 +15,10 @@ `git push {{nombre_remoto}} -u {{rama_remota}}` +- Envia los cambios locales de una rama específica a una rama específica en el remoto: + +`git push {{nombre_remoto}} {{rama_local}}:{{rama_remota}}` + - Envia los cambios de todas las ramas locales a sus respectivas ramas en el repositorio remoto: `git push --all {{nombre_remoto}}` diff --git a/pages.es/common/git-rebase.md b/pages.es/common/git-rebase.md index 2d910c7520f87a..63f4e56604818f 100644 --- a/pages.es/common/git-rebase.md +++ b/pages.es/common/git-rebase.md @@ -32,6 +32,6 @@ `git rebase -i {{HEAD~5}}` -- Resuelve automáticamente cualquier conflicto favoreciendo la versión de la rama en la que se esta trabajando (en este caso la palabra `theirs` tiene un significado invertido): +- Resuelve automáticamente cualquier conflicto favoreciendo la versión de la rama en la que se está trabajando (en este caso la palabra `theirs` tiene un significado invertido): `git rebase -X theirs {{rama_de_reorganización}}` diff --git a/pages.es/common/git-remote.md b/pages.es/common/git-remote.md index 5c800b33fa36bf..4ad41bf69182e0 100644 --- a/pages.es/common/git-remote.md +++ b/pages.es/common/git-remote.md @@ -7,6 +7,10 @@ `git remote -v` +- Muestra información de un remoto: + +`git remote show {{nombre_remoto}}` + - Añade un remoto: `git remote add {{nombre_remoto}} {{url_remoto}}` diff --git a/pages.es/common/git-reset.md b/pages.es/common/git-reset.md index f2992f4d0c3282..f04441206067d7 100644 --- a/pages.es/common/git-reset.md +++ b/pages.es/common/git-reset.md @@ -12,9 +12,9 @@ `git reset {{ruta/al/archivo_o_archivos}}` -- Desmarca partes de un archivo: +- Interactivamente desmarca partes de un archivo: -`git reset -p {{ruta/al/archivo}}` +`git reset --patch {{ruta/al/archivo}}` - Deshace el último commit, manteniendo sus cambios,y cualquier otro cambios sin commit,en el sistema de archivo: diff --git a/pages.es/common/git-restore.md b/pages.es/common/git-restore.md index 0a3f29a3021d72..4a469bcd58a610 100644 --- a/pages.es/common/git-restore.md +++ b/pages.es/common/git-restore.md @@ -1,17 +1,33 @@ # git restore -> Restura archivo del arbol de trabajo. Requiere la version 2.23 o superior de Git. -> Véase también `git checkout`. +> Restaura los archivos del árbol de trabajo. Requiere la version 2.23+ de Git. +> Véase también `git checkout` y `git reset`. > Más información: . -- Restaura un archivo eliminado del contenido del commit actual (HEAD): +- Restaura un archivo sin marcar a la versión del commit actual (HEAD): `git restore {{ruta/al/archivo}}` -- Restaura un archivo a la versión de un commit diferente: +- Restaura un archivo sin marcar a la versión de un commit específico: `git restore --source {{commit}} {{ruta/al/archivo}}` -- Deshace cambios sin commit para los archivos rastreados, revirtiendo al HEAD actual: +- Descarta los cambios sin commit para los archivos rastreados: -`git restore .` +`git restore :/` + +- Desmarca un archivo: + +`git restore --staged {{ruta/al/archivo}}` + +- Desmarca todos los archivos: + +`git restore --staged :/` + +- Descarta todos los cambios de los archivos, marcados o no: + +`git restore --worktree --staged :/` + +- Selecciona interactivamente secciones de archivos para restaurar: + +`git restore --patch` diff --git a/pages.es/common/git-rev-list.md b/pages.es/common/git-rev-list.md index db6c693b257c5c..a0dd72549a033e 100644 --- a/pages.es/common/git-rev-list.md +++ b/pages.es/common/git-rev-list.md @@ -7,6 +7,10 @@ `git rev-list {{HEAD}}` +- Imprime el último commit que cambió (agregó/editó/eliminó) un archivo específico en la rama actual: + +`git rev-list -n 1 HEAD -- {{ruta/al/archivo}}` + - Muestra los commits más recientes a partir de una fecha y una rama específica: `git rev-list --since={{'2019-12-01 00:00:00'}} {{nombre_de_rama}}` @@ -14,3 +18,7 @@ - Muestra todos los commits fusionados en un commit específico: `git rev-list --merges {{commit}}` + +- Imprime el número de commits desde una etiqueta específica: + +`git rev-list {{nombre_de_la_etiqueta}}..HEAD --count` diff --git a/pages.es/common/git-rev-parse.md b/pages.es/common/git-rev-parse.md index e6e2884e9d41ff..11212c37fecbac 100644 --- a/pages.es/common/git-rev-parse.md +++ b/pages.es/common/git-rev-parse.md @@ -1,6 +1,6 @@ # git rev-parse -> Muestra metados relativos a revisiones específicas. +> Muestra metadatos relativos a revisiones específicas. > Más información: . - Obtiene el hash del commit de una rama: diff --git a/pages.es/common/git-revert.md b/pages.es/common/git-revert.md index bda26922dc3568..31be8548403a74 100644 --- a/pages.es/common/git-revert.md +++ b/pages.es/common/git-revert.md @@ -1,11 +1,11 @@ # git revert -> Crea nuevos commits que revierten el efecton de los anteriores. +> Crea nuevos commits que revierten el efecto de los anteriores. > Más información: . - Revierte el commit más reciente: -`git revert {{@}}` +`git revert {{HEAD}}` - Revierte el quinto último commit: diff --git a/pages.es/common/git-show.md b/pages.es/common/git-show.md index 2ffd6ef61e0841..f16362d73b9c91 100644 --- a/pages.es/common/git-show.md +++ b/pages.es/common/git-show.md @@ -3,7 +3,7 @@ > Muestra varios tipos de objetos Git (commits, etiquetas, etcétera). > Más información: . -- Muestra información sobre el último commit (mensaje, cambios y otros metadatos): +- Muestra información sobre el último commit (hash, mensaje, cambios y otros metadatos): `git show` @@ -15,14 +15,22 @@ `git show {{etiqueta}}` -- Muestra información del tercer commit desde la punta de la rama: +- Muestra información del tercer commit desde la punta de una rama: `git show {{rama}}~{{3}}` -- Muestra un hash de commit y un mensaje en una única línea, eliminando la el resultado de la diferencia: +- Muestra el mensaje de un commit en una única línea, eliminando el resultado de la diferencia: `git show --oneline -s {{commit}}` -- Muestra el contenido de una archivo en una revisión específica (por ej., una rama, una etiqueta o un commit): +- Muestra solo estadísticas (caracteres agregados o removidos) de los archivos modificados: + +`git show --stat {{commit}}` + +- Muestra solo la lista de archivos agregados, renombrados o eliminados: + +`git show --summary {{commit}}` + +- Muestra el contenido de un archivo en una revisión específica (por ej., una rama, una etiqueta o un commit): `git show {{revisión}}:{{ruta/al/archivo}}` diff --git a/pages.es/common/git-status.md b/pages.es/common/git-status.md index 4fd1da357573da..26eea73498604b 100644 --- a/pages.es/common/git-status.md +++ b/pages.es/common/git-status.md @@ -1,7 +1,7 @@ # git status > Muestra los cambios realizados en los archivos del repositorio Git. -> Indica los archivos cambiados, añadidos y eliminados comparándolos con el último commit. +> Lista los archivos cambiados, añadidos y eliminados comparándolos con el último commit. > Más información: . - Muestra los archivos cambiados que aún no han sido añadidos a un commit: @@ -15,3 +15,7 @@ - No muestra los archivos sin rastrear en la salida: `git status --untracked-files=no` + +- Muestra la salida en formato breve junto a la información del branch: + +`git status --short --branch` diff --git a/pages.es/common/git-submodule.md b/pages.es/common/git-submodule.md index de3c9bfc31d6bc..577215596d89a1 100644 --- a/pages.es/common/git-submodule.md +++ b/pages.es/common/git-submodule.md @@ -11,7 +11,7 @@ `git submodule add {{url_del_repositorio}}` -- Añade un repositorio Git como submulo en un directorio específico: +- Añade un repositorio Git como submódulo en un directorio específico: `git submodule add {{url_del_repositorio}} {{ruta/al/directorio}}` diff --git a/pages.es/common/git-svn.md b/pages.es/common/git-svn.md index 07380b65c2cf81..5e16357f1eae77 100644 --- a/pages.es/common/git-svn.md +++ b/pages.es/common/git-svn.md @@ -11,7 +11,7 @@ `git svn clone -r{{1234}}:HEAD {{https://svn.ejemplo.net/subversion/repo}} {{directorio_local}}` -- Actualiza el clon local apartir del repositorio SVN: +- Actualiza el clon local a partir del repositorio SVN: `git svn rebase` diff --git a/pages.es/common/git-switch.md b/pages.es/common/git-switch.md index 27d8bcf695037e..7e5d910df54cb2 100644 --- a/pages.es/common/git-switch.md +++ b/pages.es/common/git-switch.md @@ -1,7 +1,7 @@ # git switch -> Alterna entre ramas Git. Requiere una Git 2.23+. -> Véase también `git-checkout`. +> Alterna entre ramas Git. Requiere una versión 2.23+ de Git. +> Véase también `git checkout`. > Más información: . - Cambia a una rama existente: @@ -16,10 +16,14 @@ `git switch --create {{nombre_de_la_rama}} {{commit}}` -- Se cambia a una rama y actualiza todos los submódulos para coincidir: +- Cambia a la rama anterior: + +`git switch -` + +- Cambia a una rama y actualiza todos los submódulos para coincidir: `git switch --recurse-submodules {{nombre_de_la_rama}}` -- Se cambia a una rama y automáticamente fusiona la rama actual y cualquier cambio sin commit en ella: +- Cambia a una rama y automáticamente fusiona la rama actual y cualquier cambio sin commit en ella: `git switch --merge {{nombre_de_la_rama}}` diff --git a/pages.es/common/git-worktree.md b/pages.es/common/git-worktree.md index daf4627cf77ba6..d80d1771f71cc1 100644 --- a/pages.es/common/git-worktree.md +++ b/pages.es/common/git-worktree.md @@ -3,7 +3,7 @@ > Gestiona múltiples árboles de trabajo adjuntos al mismo repositorio. > Más información: . -- Crea un nuevo directorio con la rama específicada y se cambia él: +- Crea un nuevo directorio con la rama específicada y se cambia a él: `git worktree add {{ruta/al/directorio}} {{rama}}` diff --git a/pages.es/common/git.md b/pages.es/common/git.md new file mode 100644 index 00000000000000..f2cf764b807e36 --- /dev/null +++ b/pages.es/common/git.md @@ -0,0 +1,29 @@ +# git + +> Sistema de control de versiones distribuido. +> Algunos subcomandos, como `commit`, `add`, `branch`, `checkout`, `push`, etc., tienen su propia documentación de uso, accessible a través de `tldr git subcomando`. +> Más información: . + +- Muestra la versión de Git: + +`git --version` + +- Muestra ayuda general: + +`git --help` + +- Muestra ayuda sobre un subcomando de Git (como `clone`, `add`, `push`, `log`, etc.): + +`git help {{subcomando}}` + +- Ejecuta un subcomando de Git: + +`git {{subcomando}}` + +- Ejecuta un subcomando de Git en un repositorio en la ruta raíz especificada: + +`git -C {{ruta/al/repositorio}} {{subcomando}}` + +- Ejecuta un subcomando de Git con la configuración definida: + +`git -c '{{config.clave}}={{valor}}' {{subcomando}}` diff --git a/pages.es/common/gnmic-sub.md b/pages.es/common/gnmic-sub.md new file mode 100644 index 00000000000000..71d42c8cdb40f8 --- /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 00000000000000..b309d80b0a6de6 --- /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/gradle.md b/pages.es/common/gradle.md index fccb17fa858660..107cb17ffaa402 100644 --- a/pages.es/common/gradle.md +++ b/pages.es/common/gradle.md @@ -11,7 +11,7 @@ `gradle build -x {{test}}` -- Ejecuta en modo offline para prevenir que gradle acceda a la red durante una compilación: +- Ejecuta en modo offline para prevenir que Gradle acceda a la red durante una compilación: `gradle build --offline` @@ -19,6 +19,6 @@ `gradle clean` -- Compila y genera un paquete: +- Compila un paquete Android (APK) en modo lanzamiento: `gradle assembleRelease` diff --git a/pages.es/common/grep.md b/pages.es/common/grep.md index 644461a16996f3..35c53c2704cc2a 100644 --- a/pages.es/common/grep.md +++ b/pages.es/common/grep.md @@ -2,7 +2,7 @@ > Encuentra coincidencias en el texto introducido. > Soporta patrones simples y expresiones regulares. -> Más información: +> Más información: . - Busca un patrón dentro de un archivo: diff --git a/pages.es/common/histexpand.md b/pages.es/common/histexpand.md new file mode 100644 index 00000000000000..3bd30f99013bae --- /dev/null +++ b/pages.es/common/histexpand.md @@ -0,0 +1,36 @@ +# history expansion + +> Reutiliza y expande el historial de la shell en `sh`, `bash`, `zsh`, `rbash` y `ksh`. +> Más información: . + +- Ejecuta el último comando: + +`!!` + +- Ejecuta el último comando como administrador: + +`sudo !!` + +- Ejecuta un comando con el último argumento del último comando: + +`{{comando}} !$` + +- Ejecuta un comando con el primer argumento del comando anterior: + +`{{comando}} !^` + +- Ejecuta el comando `n` líneas atrás en el historial: + +`!-{{n}}` + +- Ejecuta el último comando con el prefijo `cadena`: + +`!{{cadena}}` + +- Ejecuta el último comando, reemplazando `cadena1` por `cadena2`: + +`^{{cadena1}}^{{cadena2}}^` + +- Realiza una expansión del historial, pero muestra el comando que se ejecutaría en lugar de ejecutarlo realmente: + +`{{!-n}}:p` diff --git a/pages.es/common/history.md b/pages.es/common/history.md new file mode 100644 index 00000000000000..c674727f209415 --- /dev/null +++ b/pages.es/common/history.md @@ -0,0 +1,24 @@ +# history + +> Historial de la línea de comandos. +> Más información: . + +- Muestra el historial de comandos junto a su número de línea: + +`history` + +- Muestra los últimos 20 comandos: + +`history {{20}}` + +- Limpia el historial de comandos (solo para la shell actual): + +`history -c` + +- Sobrescribe el archivo histórico con el historial de la shell actual (comúnmente se combina con `history -c` para limpiar el historial): + +`history -w` + +- Borra la entrada del historial en el índice especificado: + +`history -d {{indice}}` diff --git a/pages.es/common/htop.md b/pages.es/common/htop.md index cd3f506fc737e6..54d254cbb7a18c 100644 --- a/pages.es/common/htop.md +++ b/pages.es/common/htop.md @@ -1,6 +1,7 @@ # htop > Muestra información dinámica en tiempo real sobre los procesos ejecutándose. Una versión mejorada de `top`. +> Más información: . - Inicia htop: @@ -8,12 +9,16 @@ - Inicia htop mostrando solo procesos pertenecientes a un usuario dado: -`htop -u {{usuario}}` +`htop --user {{nombre_de_usuario}}` -- Ordena procesos por columna (use `--sort-key help` para ver una lista de columnas): +- Ordena procesos por un específico `elemento_de_ordenamiento` (use `htop --sort help` para opciones disponibles): -`htop -s {{nombre_columna}}` +`htop --sort {{elemento_de_ordenamiento}}` -- Recibe ayuda sobre comandos interactivos: +- Muestra comandos interactivos mientras corre htop: `?` + +- Muestra la ayuda: + +`htop --help` diff --git a/pages.es/common/hx.md b/pages.es/common/hx.md new file mode 100644 index 00000000000000..0ef169ecb8e115 --- /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 00000000000000..996865a0ba8eb8 --- /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/kill.md b/pages.es/common/kill.md new file mode 100644 index 00000000000000..328fb05e507d42 --- /dev/null +++ b/pages.es/common/kill.md @@ -0,0 +1,37 @@ +# kill + +> Envía una señal a un proceso, usualmente relacionado a detener el proceso. +> kill envia una señal para terminar uno o un grupo de procesos. +> Más información: . + +- Termina un programa usando la señal SIGTERM (terminar) por defecto: + +`kill {{id_del_proceso}}` + +- Lista todas las señales disponibles (para ser utilizadas sin el prefijo `SIG`): + +`kill -l` + +- Termina una tarea en segundo plano: + +`kill %{{id_de_tarea}}` + +- Termina un programa usando la señal SIGHUP (hang up/colgar). Muchos programas residentes se recargarán en lugar de terminar: + +`kill -{{1|HUP}} {{id_del_proceso}}` + +- Termina un programa usando la señal SIGINT (interrumpir). Esto es normalmente iniciado por el usuario presionando `Ctrl + C`: + +`kill -{{2|INT}} {{id_del_proceso}}` + +- Señala al sistema operativo para terminar inmediatamente un programa (el cual no tiene oportunidad de capturar la señal): + +`kill -{{9|KILL}} {{id_del_proceso}}` + +- Señala al sistema operativo para pausar un programa hasta que la señal SIGCONT ("continuar") es recibida: + +`kill -{{17|STOP}} {{id_del_proceso}}` + +- Envia una señal `SIGUSR1` a todos los procesos con un GID (id de grupo) dado: + +`kill -{{SIGUSR1}} -{{id_de_grupo}}` diff --git a/pages.es/common/krunvm.md b/pages.es/common/krunvm.md new file mode 100644 index 00000000000000..8f84ebe3f1e47e --- /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/llvm-ar.md b/pages.es/common/llvm-ar.md new file mode 100644 index 00000000000000..e7566a5870371a --- /dev/null +++ b/pages.es/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Este comando es un alias de `ar`. + +- Ver documentación para el comando original: + +`tldr ar` diff --git a/pages.es/common/llvm-g++.md b/pages.es/common/llvm-g++.md new file mode 100644 index 00000000000000..a25c9ec536728d --- /dev/null +++ b/pages.es/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Este comando es un alias de `clang++`. + +- Ver documentación para el comando original: + +`tldr clang++` diff --git a/pages.es/common/llvm-gcc.md b/pages.es/common/llvm-gcc.md new file mode 100644 index 00000000000000..81f7ce67049170 --- /dev/null +++ b/pages.es/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Este comando es un alias de `clang`. + +- Ver documentación para el comando original: + +`tldr clang` diff --git a/pages.es/common/llvm-nm.md b/pages.es/common/llvm-nm.md new file mode 100644 index 00000000000000..e875a92b817a46 --- /dev/null +++ b/pages.es/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Este comando es un alias de `nm`. + +- Ver documentación para el comando original: + +`tldr nm` diff --git a/pages.es/common/llvm-objdump.md b/pages.es/common/llvm-objdump.md new file mode 100644 index 00000000000000..06cdbe6e4bd665 --- /dev/null +++ b/pages.es/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Este comando es un alias de `objdump`. + +- Ver documentación para el comando original: + +`tldr objdump` diff --git a/pages.es/common/llvm-strings.md b/pages.es/common/llvm-strings.md new file mode 100644 index 00000000000000..99054d72451e4e --- /dev/null +++ b/pages.es/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Este comando es un alias de `strings`. + +- Ver documentación para el comando original: + +`tldr strings` diff --git a/pages.es/common/ln.md b/pages.es/common/ln.md new file mode 100644 index 00000000000000..25decd098ef7ff --- /dev/null +++ b/pages.es/common/ln.md @@ -0,0 +1,16 @@ +# ln + +> Crea enlaces a archivos y directorios. +> Más información: . + +- Crea un enlace simbólico a un archivo o directorio: + +`ln -s {{/ruta/al/archivo_o_directorio}} {{ruta/al/enlace_simbólico}}` + +- Sobrescribe un enlace simbólico existente para que apunte a un archivo distinto: + +`ln -sf {{/ruta/al/nuevo_archivo}} {{ruta/al/enlace_simbólico}}` + +- Crea un enlace duro a un archivo: + +`ln {{/ruta/al/archivo}} {{ruta/al/enlace_duro}}` diff --git a/pages.es/common/ls.md b/pages.es/common/ls.md index 41436077263d5f..5d80c0f20ce876 100644 --- a/pages.es/common/ls.md +++ b/pages.es/common/ls.md @@ -30,3 +30,7 @@ - Lista todos los archivos con formato largo, ordenado por fecha de modificación (archivos más viejos en primer lugar): `ls -ltr` + +- Lista solamente directorios: + +`ls -d */` diff --git a/pages.es/common/lzcat.md b/pages.es/common/lzcat.md new file mode 100644 index 00000000000000..9c317dff7984b8 --- /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 00000000000000..7f2ed2297fe03b --- /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/maza.md b/pages.es/common/maza.md new file mode 100644 index 00000000000000..99e059efe8fb5e --- /dev/null +++ b/pages.es/common/maza.md @@ -0,0 +1,20 @@ +# maza + +> Bloqueador en local de anuncios. Como Pi-hole pero local y usando el sistema operativo. +> Más información: . + +- Actualiza la base de datos de Maza: + +`maza update` + +- Inicia Maza: + +`sudo maza start` + +- Para Maza: + +`sudo maza stop` + +- Muestra el estado de Maza: + +`maza status` diff --git a/pages.es/common/mid3v2.md b/pages.es/common/mid3v2.md new file mode 100644 index 00000000000000..969ea906298c50 --- /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/more.md b/pages.es/common/more.md new file mode 100644 index 00000000000000..c3f36cdf8bc43c --- /dev/null +++ b/pages.es/common/more.md @@ -0,0 +1,32 @@ +# more + +> Abre un archivo para lectura interactiva, permitiendo navegar y buscar. +> Más información: . + +- Abre un archivo: + +`more {{ruta/al/archivo}}` + +- Abre un archivo mostrando desde una línea específica: + +`more +{{numero_linea}} {{ruta/al/archivo}}` + +- Muestra la ayuda: + +`more --help` + +- Avanza hacia la siguiente página: + +`` + +- Busca una cadena (presione `n` para ir a la siguiente coincidencia): + +`/{{cadena}}` + +- Salir: + +`q` + +- Muestra la ayuda sobre comandos interactivos: + +`h` diff --git a/pages.es/common/mscore.md b/pages.es/common/mscore.md new file mode 100644 index 00000000000000..35fa61f7145a8a --- /dev/null +++ b/pages.es/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Este comando es un alias de `musescore`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr musescore` diff --git a/pages.es/common/nano.md b/pages.es/common/nano.md index 8359167cab9f55..ba27d11a7b9390 100644 --- a/pages.es/common/nano.md +++ b/pages.es/common/nano.md @@ -3,14 +3,26 @@ > Editor sencillo y fácil de usar. Un clon libre y mejorado de Pico. > Más información: . -- Inicia nano en la terminal con {nombre_del_archivo}: +- Abre un nuevo archivo en nano: -`nano {{nombre_del_archivo}}` +`nano` -- Activar desplazamiento suave: +- Abre un archivo específico: -`nano -S {{nombre_del_archivo}}` +`nano {{ruta/al/archivo}}` -- Sangra las nuevas líneas a la sangría de las líneas anteriores: +- Abre un archivo específico, posicionando el cursor en la línea y columna específica: -`nano -i {{nombre_del_archiv}}` +`nano +{{linea}},{{columna}} {{ruta/al/archivo}}` + +- Abre un archivo específico y activa el ajuste de línea: + +`nano --softwrap {{ruta/al/archivo}}` + +- Abre un archivo específico y sangra nuevas líneas a la sangría de las líneas anteriores: + +`nano --autoindent {{ruta/al/archivo}}` + +- Abre nano y crea un archivo de resguardo (`archivo~`) cuando se guardan las ediciones: + +`nano --backup {{ruta/al/archivo}}` diff --git a/pages.es/common/nc.md b/pages.es/common/nc.md new file mode 100644 index 00000000000000..e7bdc2818aaae6 --- /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 00000000000000..344059e58d3335 --- /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 00000000000000..3a4a2acb5ea6df --- /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 00000000000000..e6ca6130c13c4f --- /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 00000000000000..b0c6bdf69893dc --- /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/pio-init.md b/pages.es/common/pio-init.md new file mode 100644 index 00000000000000..d248563a1d5d62 --- /dev/null +++ b/pages.es/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Este comando es un alias de `pio project`. + +- Ver documentación para el comando original: + +`tldr pio project` diff --git a/pages.es/common/piodebuggdb.md b/pages.es/common/piodebuggdb.md new file mode 100644 index 00000000000000..aad611a23c1b74 --- /dev/null +++ b/pages.es/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Este comando es un alias de `pio debug`. + +- Ver documentación para el comando original: + +`tldr pio debug` diff --git a/pages.es/common/platformio.md b/pages.es/common/platformio.md new file mode 100644 index 00000000000000..7108214b88c527 --- /dev/null +++ b/pages.es/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Este comando es un alias de `pio`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr pio` diff --git a/pages.es/common/ps.md b/pages.es/common/ps.md new file mode 100644 index 00000000000000..d1b774af7c6504 --- /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 00000000000000..f2c0dd7763a871 --- /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/pwd.md b/pages.es/common/pwd.md new file mode 100644 index 00000000000000..0e763795d85825 --- /dev/null +++ b/pages.es/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> Muestra el nombre del directorio actual. +> Más información: . + +- Muestra el directorio actual: + +`pwd` + +- Muestra el directorio actual y resuelve todos los enlaces simbólicos (es decir, muestra la ruta "física"): + +`pwd -P` diff --git a/pages.es/common/python3.md b/pages.es/common/python3.md new file mode 100644 index 00000000000000..041bfe0b8fa6e6 --- /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/r2.md b/pages.es/common/r2.md new file mode 100644 index 00000000000000..3ccd4f6a47a339 --- /dev/null +++ b/pages.es/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Este comando es un alias de `radare2`. + +- Ver documentación para el comando original: + +`tldr radare2` diff --git a/pages.es/common/rcat.md b/pages.es/common/rcat.md new file mode 100644 index 00000000000000..bef79d7162e850 --- /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 00000000000000..3ce8aaf7b5b313 --- /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/rubocop.md b/pages.es/common/rubocop.md new file mode 100644 index 00000000000000..a025a99900307d --- /dev/null +++ b/pages.es/common/rubocop.md @@ -0,0 +1,32 @@ +# rubocop + +> Analiza archivos de Ruby. +> Más información: . + +- Verifica todos los archivos en el directorio actual (incluyendo subdirectorios): + +`rubocop` + +- Verifica uno o más archivos o directorios determinados: + +`rubocop {{path/to/file}} {{path/to/directory}}` + +- Guarda la salida en un archivo: + +`rubocop --out {{path/to/file}}` + +- Muestra la lista de cops (reglas de análisis): + +`rubocop --show-cops` + +- Excluye una regla: + +`rubocop --except {{cop_1}} {{cop_2}}` + +- Ejecuta sólo determinadas reglas: + +`rubocop --only {{cop_1}} {{cop_2}}` + +- Autocorrige archivos (experimental): + +`rubocop --auto-correct` diff --git a/pages.es/common/showfigfonts.md b/pages.es/common/showfigfonts.md new file mode 100644 index 00000000000000..c3db6469095ad2 --- /dev/null +++ b/pages.es/common/showfigfonts.md @@ -0,0 +1,13 @@ +# showfigfonts + +> Muestra una lista de fuentes disponibles para figlet. +> Véase también `figlet`. +> Más información: . + +- Muestra las fuentes disponibles: + +`showfigfonts` + +- Muestra las fuentes disponibles usando un texto específico: + +`showfigfonts {{texto_de_entrada}}` diff --git a/pages.es/common/tee.md b/pages.es/common/tee.md index 27386d80ab9344..f605f12726174b 100644 --- a/pages.es/common/tee.md +++ b/pages.es/common/tee.md @@ -1,7 +1,7 @@ # tee > Lee desde la entrada estándar y escribe a la salida estándar a la vez que a archivos o comandos. -> Más información: +> Más información: . - Copia la entrada estándar al archivo, reemplazando su contenido, y también a la salida estándar: diff --git a/pages.es/common/tldrl.md b/pages.es/common/tldrl.md new file mode 100644 index 00000000000000..7378ceda208d56 --- /dev/null +++ b/pages.es/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Este comando es un alias de `tldr-lint`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr tldr-lint` diff --git a/pages.es/common/tlmgr-arch.md b/pages.es/common/tlmgr-arch.md new file mode 100644 index 00000000000000..31a208a47b1f6a --- /dev/null +++ b/pages.es/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Este comando es un alias de `tlmgr platform`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr tlmgr platform` diff --git a/pages.es/common/todoman.md b/pages.es/common/todoman.md new file mode 100644 index 00000000000000..8db01f8ac2a1e0 --- /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 50c6bc99951107..9181f4f14c0a08 100644 --- a/pages.es/common/touch.md +++ b/pages.es/common/touch.md @@ -1,13 +1,13 @@ # 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: `touch {{archivo}}` -- Establece los tiempos de un archivo a un dia y hora específicos: +- Establece los tiempos de un archivo a un día y hora específicos: `touch -t {{YYYYMMDDHHMM.SS}} {{archivo}}` diff --git a/pages.es/common/transmission.md b/pages.es/common/transmission.md new file mode 100644 index 00000000000000..4bbfb53bff891d --- /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/tree.md b/pages.es/common/tree.md new file mode 100644 index 00000000000000..e0744db2428b8d --- /dev/null +++ b/pages.es/common/tree.md @@ -0,0 +1,36 @@ +# tree + +> Muestra los contenidos del directorio actual en forma de árbol. +> Más información: . + +- Imprime archivos y directories hasta `num` niveles de profundidad (donde 1 significa el directorio actual): + +`tree -L {{num}}` + +- Imprime solo directorios: + +`tree -d` + +- Imprime también archivos ocultos, coloreando la salida: + +`tree -a -C` + +- Imprime el árbol sin sangría, mostrando la ruta completa en su lugar (use `-N` para evitar escapar caracteres no imprimibles): + +`tree -i -f` + +- Imprime el tamaño de cada archivo y el tamaño total de cada directorio en formato legible para humanos: + +`tree -s -h --du` + +- Imprime archivos dentro de la jerarquía de árbol, especificando un patrón comodín, excluyendo los directorios que no contengan archivos coincidentes: + +`tree -P '{{*.txt}}' --prune` + +- Imprime archivos dentro de la jerarquía de árbol, especificando un patrón, excluyendo los directorios que no sean ancestros del especificado: + +`tree -P {{nombre_del_directorio}} --matchdirs --prune` + +- Imprime el árbol ignorando los directorios especificados: + +`tree -I '{{nombre_del_directorio1|nombre_del_directorio2}}'` diff --git a/pages.es/common/unlzma.md b/pages.es/common/unlzma.md new file mode 100644 index 00000000000000..798f33e8d4716f --- /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/unrar.md b/pages.es/common/unrar.md index 80815ec89e8e51..710cc84f8e876a 100644 --- a/pages.es/common/unrar.md +++ b/pages.es/common/unrar.md @@ -1,6 +1,7 @@ # unrar > Extrae archivos RAR. +> Más información: . - Extrae archivos comprimidos respetando la estructura original del archivo: diff --git a/pages.es/common/unxz.md b/pages.es/common/unxz.md new file mode 100644 index 00000000000000..ccd0affc3e506c --- /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/vi.md b/pages.es/common/vi.md new file mode 100644 index 00000000000000..6a3eb5e500621c --- /dev/null +++ b/pages.es/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Este comando es un alias de `vim`. + +- Ver documentación para el comando original: + +`tldr vim` diff --git a/pages.es/common/vim.md b/pages.es/common/vim.md new file mode 100644 index 00000000000000..0c39954cab4d46 --- /dev/null +++ b/pages.es/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), un editor de texto para la línea de comandos, que proporciona varios modos para diferentes tipos de manipulación de texto. +> Pulsando `i` entra en el modo insertar. `` regresa al modo normal, permitiendo el uso de comandos Vim. +> Más información: . + +- Abre un archivo: + +`vim {{ruta/al/archivo}}` + +- Abre un archivo en un número de línea especificado: + +`vim +{{número_de_línea}} {{ruta/al/archivo}}` + +- Ver el manual de Vim: + +`:help` + +- Guarda y sale: + +`:wq` + +- Deshace la última operación: + +`u` + +- Busca un patrón en el archivo (pulsa `n`/`N` para ir a la próxima/previa coincidencia): + +`/{{patrón_a_buscar}}` + +- Realiza una sustitución de una expresión regular en el archivo completo: + +`:%s/{{expresión_regular}}/{{reemplazo}}/g` + +- Muestra los números de línea: + +`:set nu` diff --git a/pages.es/common/vimdiff.md b/pages.es/common/vimdiff.md new file mode 100644 index 00000000000000..e313cf93dd8dee --- /dev/null +++ b/pages.es/common/vimdiff.md @@ -0,0 +1,37 @@ +# vimdiff + +> Abre dos o más archivos en Vim y muestra las diferencias entre ellos. +> Ver también `vim`. +> Más información: . + +- Abre dos archivos y muestra las diferencias: + +`vimdiff {{archivo1}} {{archivo2}}` + +- Mueve el cursor a la ventana de la izquierda|derecha: + +`Ctrl + w {{h|l}}` + +- Salta a la diferencia previa: + +`[c` + +- Salta a la siguiente diferencia: + +`]c` + +- Copia la diferencia resaltada de la otra ventana a la ventana actual: + +`do` + +- Copia la diferencia resaltada de la ventana actual a la otra ventana: + +`dp` + +- Actualiza todos los resaltados y folds (plegados de texto): + +`:diffupdate` + +- Alterna la apertura/cierre de la fold (plegado de texto) de código resaltada: + +`za` diff --git a/pages.es/common/vimtutor.md b/pages.es/common/vimtutor.md new file mode 100644 index 00000000000000..337b3deecf8ef1 --- /dev/null +++ b/pages.es/common/vimtutor.md @@ -0,0 +1,12 @@ +# vimtutor + +> Vim tutor, enseña los comandos básicos de vim. +> Más información: . + +- Ejecuta vim tutor utilizando el idioma especificado (en, es, de, ...): + +`vimtutor {{idioma}}` + +- Sale del tutor: + +` :q ` diff --git a/pages.es/common/wc.md b/pages.es/common/wc.md index 26c83ba17045f5..42d3d76cd95e77 100644 --- a/pages.es/common/wc.md +++ b/pages.es/common/wc.md @@ -1,24 +1,28 @@ # wc -> Cuenta líneas, palabras, o bytes. -> Más información: +> Cuenta líneas, palabras, y bytes. +> Más información: . -- Cuenta las líneas en un archivo: +- Cuenta todas las líneas en un archivo: -`wc -l {{ruta/al/archivo}}` +`wc --lines {{ruta/al/archivo}}` -- Cuenta las palabras en un archivo: +- Cuenta todas las palabras en un archivo: -`wc -w {{ruta/al/archivo}}` +`wc --words {{ruta/al/archivo}}` -- Cuenta caracteres (bytes) en un archivo: +- Cuenta todos los bytes en un archivo: -`wc -c {{ruta/al/archivo}}` +`wc --bytes {{ruta/al/archivo}}` -- Cuenta caracteres en un archivo (considerando los caracteres de varios bytes): +- Cuenta todos los caracteres en un archivo (considerando los caracteres de varios bytes): -`wc -m {{ruta/al/archivo}}` +`wc --chars {{ruta/al/archivo}}` -- Usa la entrada estandar para contar líneas, palabras o caracteres (bytes), en ese orden: +- Cuenta todas las líneas, palabras y bytes desde stdin: `{{find .}} | wc` + +- Cuenta la longitud de la línea más larga en número de caracteres: + +`wc --max-line-length {{ruta/al/archivo}}` diff --git a/pages.es/common/xkill.md b/pages.es/common/xkill.md index 4c3fce347df542..c0e161d77f920c 100644 --- a/pages.es/common/xkill.md +++ b/pages.es/common/xkill.md @@ -2,6 +2,7 @@ > Cierra de manera forzosa una ventana interactivamente en una sesión gráfica. > Véase también `kill` y `killall`. +> Más información: . - Muestra un cursor para cerrar forzosamente una ventana presionando con el botón izquierdo (presiona cualquier otro botón del ratón para cancelar): diff --git a/pages.es/common/xzcat.md b/pages.es/common/xzcat.md new file mode 100644 index 00000000000000..c4b36a99b21fb4 --- /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/common/zsh.md b/pages.es/common/zsh.md new file mode 100644 index 00000000000000..c54b3aa1926b44 --- /dev/null +++ b/pages.es/common/zsh.md @@ -0,0 +1,25 @@ +# zsh + +> Z SHell, un intérprete para la línea de comandos compatible con Bash. +> Véase también `histexpand` para la expansión del historial. +> Más información: . + +- Comienza una sesión interactiva en la shell: + +`zsh` + +- Ejecuta un comando y sale: + +`zsh -c "{{comando}}"` + +- Ejecuta un script: + +`zsh {{ruta/al/script.zsh}}` + +- Ejecuta un script, mostrando cada comando antes de ejecutarlo: + +`zsh --xtrace {{ruta/al/script.zsh}}` + +- Comienza una sesión interactiva en la shell en modo detallado, mostrando cada comando antes de ejecutarlo: + +`zsh --verbose` diff --git a/pages.es/linux/a2disconf.md b/pages.es/linux/a2disconf.md new file mode 100644 index 00000000000000..75c3c6c7ab387a --- /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 00000000000000..f875536a008e4e --- /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 00000000000000..f7dc4d8d3f20af --- /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 00000000000000..2d206120c6ff13 --- /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 00000000000000..3b9f4457563765 --- /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 00000000000000..edd37d5427a6e8 --- /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 00000000000000..618a9788ab3838 --- /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 00000000000000..03337f96ae5312 --- /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 00000000000000..165b8cffd9553d --- /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 00000000000000..2ab31135973fde --- /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/alternatives.md b/pages.es/linux/alternatives.md new file mode 100644 index 00000000000000..4bba3b20e76b64 --- /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/apk.md b/pages.es/linux/apk.md new file mode 100644 index 00000000000000..73a93489480266 --- /dev/null +++ b/pages.es/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> Herramienta de gestión de paquetes de Alpine Linux. +> Más información: . + +- Actualiza los índices de repositorio desde todos los repositorios remotos: + +`apk update` + +- Instala un nuevo paquete: + +`apk add {{paquete}}` + +- Remueve un paquete: + +`apk del {{paquete}}` + +- Repara un paquete o lo actualiza sin modificar dependencias principales: + +`apk fix {{paquete}}` + +- Busca un paquete usando palabras clave: + +`apk search {{palabras_clave}}` + +- Muestra información sobre un paquete específico: + +`apk info {{paquete}}` diff --git a/pages.es/linux/apt-key.md b/pages.es/linux/apt-key.md index 2a7c3fedf7cda2..a69b5677969fd2 100644 --- a/pages.es/linux/apt-key.md +++ b/pages.es/linux/apt-key.md @@ -7,18 +7,18 @@ `apt-key list` -- Añade una clave al almacén de claves de confianza): +- Añade una clave al almacén de claves de confianza: `apt-key add {{archivo_clave_pública.asc}}` -- Borrar una clave del almacén de claves de confianza: +- Borra una clave del almacén de claves de confianza: `apt-key del {{id_clave}}` -- Añadir un clave remota al almacén de claves de confianza: +- Añade un clave remota al almacén de claves de confianza: `wget -qO - {{https://host.tld/archivo.clave}} | apt-key add -` -- Añadir una clave de un servidor de claves con el identificador de la clave: +- Añade una clave de un servidor de claves con el identificador de la clave: `apt-key adv --keyserver {{pgp.mit.edu}} --recv {{id_clave}}` diff --git a/pages.es/linux/apt.md b/pages.es/linux/apt.md index 821ed5d3d1666c..b0a1c7e4c8009e 100644 --- a/pages.es/linux/apt.md +++ b/pages.es/linux/apt.md @@ -1,7 +1,7 @@ # apt > Herramienta de gestión de paquete para distribuciones basadas en Debian. -> Se recomienda sustituirlo por apt-get cuando se use interactivamente en Ubuntu 16.04 o versiones posteriores. +> Se recomienda sustituirlo por `apt-get` cuando se use interactivamente en Ubuntu 16.04 o versiones posteriores. > Más información: . - Actualiza la lista de paquetes y versiones disponibles (se recomienda ejecutar este comando antes que cualquier otro comando `apt`): diff --git a/pages.es/linux/aptitude.md b/pages.es/linux/aptitude.md index dc5a0dfe5bea82..79531917b7bc3d 100644 --- a/pages.es/linux/aptitude.md +++ b/pages.es/linux/aptitude.md @@ -23,7 +23,7 @@ `aptitude remove {{paquete}}` -- Actualiza todos los paquetes sus nuevas versiones disponibles: +- Actualiza todos los paquetes a sus nuevas versiones disponibles: `aptitude upgrade` diff --git a/pages.es/linux/archey.md b/pages.es/linux/archey.md index 8dfff21e85b76b..be2bf75521a470 100644 --- a/pages.es/linux/archey.md +++ b/pages.es/linux/archey.md @@ -1,6 +1,7 @@ # archey > Herramienta sencilla para mostrar información del sistema con estilo. +> Más información: . - Muestra información del sistema: diff --git a/pages.es/linux/batcat.md b/pages.es/linux/batcat.md new file mode 100644 index 00000000000000..2f199b2bd675f5 --- /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/brew.md b/pages.es/linux/brew.md deleted file mode 100644 index d0d323cc9da1ea..00000000000000 --- a/pages.es/linux/brew.md +++ /dev/null @@ -1,35 +0,0 @@ -# brew - -> Gestor de paquetes Homebrew para Linux. - -- Busca fórmulas disponibles: - -`brew search {{texto}}` - -- Instala la última versión de una fórmula (usar `--devel` para la versión de desarrollo): - -`brew install {{formula}}` - -- Lista todas las fórmulas instaladas: - -`brew list` - -- Actualizar una fórmula instalada (si no se indica ninguna, todas las fórmulas son actualizadas): - -`brew upgrade {{formula}}` - -- Actualiza a la última versión de Linuxbrew y de todas las fórmulas desde GitHub: - -`brew update` - -- Mostrar las fórmulas que tienen una versión más reciente disponible: - -`brew outdated` - -- Mostrar la información de una fórmula (versión, ruta de instalación, dependencias, etc.): - -`brew info {{fórmula}}` - -- Revisar la instalación local de Linuxbrew en busca de problemas potenciales: - -`brew doctor` diff --git a/pages.es/linux/bspwm.md b/pages.es/linux/bspwm.md new file mode 100644 index 00000000000000..544ece0147c72f --- /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/cal.md b/pages.es/linux/cal.md index 757d4331eda7ce..c901bff4dd599d 100644 --- a/pages.es/linux/cal.md +++ b/pages.es/linux/cal.md @@ -1,6 +1,7 @@ # cal > Muestra el calendario, con el día actual resaltado. +> Más información: . - Muestra el calendario para el mes actual: @@ -16,8 +17,8 @@ - Muestra el calendario para un año concreto (4 dígitos): -`cal {{year}}` +`cal {{año}}` -- Muestra el calendario para un año y mes concretos: +- Muestra el calendario para un mes y año concretos: -`cal {{month}} {{year}}` +`cal {{mes}} {{año}}` diff --git a/pages.es/linux/calc.md b/pages.es/linux/calc.md deleted file mode 100644 index dae41add39cf8f..00000000000000 --- a/pages.es/linux/calc.md +++ /dev/null @@ -1,11 +0,0 @@ -# calc - -> Una calculadora de precisión arbitraria en la terminal. - -- Iniciar calc en modo interactivo: - -`calc` - -- Realizar un cálculo en modo no-interactivo: - -`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.es/linux/cc.md b/pages.es/linux/cc.md new file mode 100644 index 00000000000000..536df67fd89480 --- /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 00000000000000..96e7ba9dfaa14f --- /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/chmod.md b/pages.es/linux/chmod.md new file mode 100644 index 00000000000000..e9c118404108da --- /dev/null +++ b/pages.es/linux/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> Cambia los permisos de acceso de un archivo o directorio. +> Más información: https://www.gnu.org/software/coreutils/chmod. + +- Da al [u]suario que posee al archivo el permiso de ejecución [x]: + +`chmod u+x {{ruta/al/archivo}}` + +- Da al [u]suario permisos de lectu[r]a y escritura [w] a un archivo o directorio: + +`chmod u+rw {{ruta/al/archivo_o_directorio}}` + +- Remueve permisos de ejecución [x] del [g]rupo: + +`chmod g-x {{ruta/al/archivo}}` + +- Da a todos [a] los usuarios permisos de lectu[r]a y ejecución [x]: + +`chmod a+rx {{ruta/al/archivo}}` + +- Da a [o]tros usuarios (no dentro del grupo dueño del archivo) los mismos permisos que el [g]rupo: + +`chmod o=g {{ruta/al/archivo}}` + +- Remueve todos los permisos de [o]tros: + +`chmod o= {{ruta/al/archivo}}` + +- Cambia los permisos recursivamente dando al [g]rupo y a [o]tros la habilidad de escribir [w]: + +`chmod -R g+w,o+w {{ruta/al/directorio}}` + +- Recursivamente da a todos [a] los usuarios permisos de lectu[r]a y ejecución [X] de los subdirectorios de un directorio: + +`chmod -R a+rX {{ruta/al/directorio}}` diff --git a/pages.es/linux/cmus.md b/pages.es/linux/cmus.md index 89822cf25d6d76..140433fba8acfd 100644 --- a/pages.es/linux/cmus.md +++ b/pages.es/linux/cmus.md @@ -1,7 +1,8 @@ # cmus > Reproductor de música para la línea de comandos. -> Usa las teclas de dirección para navegar, `` para seleccionar, y los números 1-8 para cambiar entra las diferentes vistas. +> Usa las teclas de dirección para navegar, `` para seleccionar, y los números 1-8 para cambiar entre las diferentes vistas. +> Más información: . - Abre cmus en un directorio concreto: diff --git a/pages.es/linux/conky.md b/pages.es/linux/conky.md index c2696085505926..46bfd26c667e34 100644 --- a/pages.es/linux/conky.md +++ b/pages.es/linux/conky.md @@ -23,6 +23,6 @@ `conky -a {{{arriba,abajo,en_medio}_{izquierda,derecha,en_medio}}}` -- Pausa de 5 segundos al inciar antes de ejecutarlo: +- Pausa de 5 segundos al iniciar antes de ejecutarlo: `conky -p {{5}}` diff --git a/pages.es/linux/coredumpctl.md b/pages.es/linux/coredumpctl.md new file mode 100644 index 00000000000000..93d3662b8da927 --- /dev/null +++ b/pages.es/linux/coredumpctl.md @@ -0,0 +1,24 @@ +# coredumpctl + +> Recupera y procesa volcados de memoria y sus metadatos. +> Más información: . + +- Lista todos los volcados de memoria capturados: + +`coredumpctl list` + +- Lista los volcados de memoria capturados para un programa: + +`coredumpctl list {{programa}}` + +- Muestra información sobre los volcados de memoria que coincidan con el `PID` de un programa: + +`coredumpctl info {{PID}}` + +- Invoca el depurador usando el último volcado de memoria para un programa: + +`coredumpctl debug {{programa}}` + +- Extrae el último volcado de memoria a un fichero: + +`coredumpctl --output={{ruta/al/archivo}} dump {{programa}}` diff --git a/pages.es/linux/cp.md b/pages.es/linux/cp.md new file mode 100644 index 00000000000000..d0b0e91b50912d --- /dev/null +++ b/pages.es/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Copia archivos y directorios. +> Más información: . + +- Copia un archivo a otro directorio: + +`cp {{ruta/al/archivo_origen.ext}} {{ruta/al/archivo_destino.ext}}` + +- Copia un archivo en otro directorio, conservando el nombre del archivo: + +`cp {{path/to/archivo_origen.ext}} {{ruta/al/directorio_principal}}` + +- Copia de forma recursiva el contenido de un directorio a otra ubicación (si el destino existe, el directorio es copiado en esa ubicación): + +`cp -r {{ruta/al/directorio_origen}} {{ruta/al/directorio_destino}}` + +- Copia un directorio de forma recursiva en modo verbose (muestra los archivos a medida que se copian): + +`cp -vr {{ruta/al/directorio_origen}} {{ruta/al/directorio_destino}}` + +- Copia archivos de texto en otra ubicación en modo interactivo (pregunta al usuario antes de sobreescribir): + +`cp -i {{*.txt}} {{ruta/al/directorio_destino}}` + +- Sigue los enlaces simbólicos antes de copiar: + +`cp -L {{link}} {{ruta/al/directorio_destino}}` + +- Usa la ruta completa de los archivos de origen, creando los directorios intermedios faltantes al copiar: + +`cp --parents {{ruta_de_origen/al/archivo}} {{ruta/al/archivo_destino}}` diff --git a/pages.es/linux/cpuid.md b/pages.es/linux/cpuid.md new file mode 100644 index 00000000000000..5d5a7d80e01e7c --- /dev/null +++ b/pages.es/linux/cpuid.md @@ -0,0 +1,16 @@ +# cpuid + +> Muestra información detallada sobre todas las CPUs. +> Más información: . + +- Muestra información de todas las CPUs: + +`cpuid` + +- Muestra información sólo para la CPU actual: + +`cpuid -1` + +- Muestra la información hexadecimal en bruto sin decodificar: + +`cpuid -r` diff --git a/pages.es/linux/cpulimit.md b/pages.es/linux/cpulimit.md new file mode 100644 index 00000000000000..6b8397731f8f5f --- /dev/null +++ b/pages.es/linux/cpulimit.md @@ -0,0 +1,28 @@ +# cpulimit + +> Una herramienta para limitar el uso del CPU de otros procesos. +> Más información: . + +- Limita un proceso existente con PID 1234 para que solo use el 25% del CPU: + +`cpulimit --pid {{1234}} --limit {{25%}}` + +- Limita un programa existente por su nombre de ejecución: + +`cpulimit --exe {{programa}} --limit {{25}}` + +- Ejecuta un programa determinado y limita su uso a solo el 50% del CPU: + +`cpulimit --limit {{50}} -- {{programa arg1 arg2 ...}}` + +- Ejecuta un programa, limita el uso del CPU a 50% y corre cpulimit en segundo plano: + +`cpulimit --limit {{50}} --background -- {{programa}}` + +- Mata su proceso si el uso del CPU del programa supera el 50%: + +`cpulimit --limit 50 --kill -- {{programa}}` + +- Regula su proceso y sus subprocesos para que ninguno supere el 25% del CPU: + +`cpulimit --limit {{25}} --monitor-forks -- {{programa}}` diff --git a/pages.es/linux/dmesg.md b/pages.es/linux/dmesg.md index fab0beb8a22904..c92b0d37719a7b 100644 --- a/pages.es/linux/dmesg.md +++ b/pages.es/linux/dmesg.md @@ -1,6 +1,7 @@ # dmesg > Escribe los mensajes del núcleo a la salida estándar. +> Más información: . - Muestra los mensajes del núcleo: @@ -10,7 +11,7 @@ `dmesg --level err` -- Muestra los mensajes del núcleo y sigue leyedos los nuevos, similar a `tail -f` (disponible en los núcleos 3.5.0 y posteriores): +- Muestra los mensajes del núcleo y sigue leyendo los nuevos, similar a `tail -f` (disponible en los núcleos 3.5.0 y posteriores): `dmesg -w` diff --git a/pages.es/linux/dmidecode.md b/pages.es/linux/dmidecode.md new file mode 100644 index 00000000000000..cd0ed64f6f737a --- /dev/null +++ b/pages.es/linux/dmidecode.md @@ -0,0 +1,29 @@ +# dmidecode + +> Muestra la tabla de contenidos del DMI (también conocido como SMBIOS) en un formato legible por humanos. +> Requiere privilegios de root. +> Más información: . + +- Muestra todos la tabla de contenidos de DMI: + +`sudo dmidecode` + +- Muestra la versión de la BIOS: + +`sudo dmidecode -s bios-version` + +- Muestra el número de serie del equipo: + +`sudo dmidecode -s system-serial-number` + +- Muestra información de la BIOS: + +`sudo dmidecode -t bios` + +- Muestra información de la CPU: + +`sudo dmidecode -t processor` + +- Muestra información de la memoria: + +`sudo dmidecode -t memory` diff --git a/pages.es/linux/dnf.md b/pages.es/linux/dnf.md index a0a5d2e5690e6c..81ecc0ef4ae4d3 100644 --- a/pages.es/linux/dnf.md +++ b/pages.es/linux/dnf.md @@ -19,7 +19,7 @@ `sudo dnf install {{paquete}}` -- Instala un nuevo paquete respondiendo si a todas las preguntas: +- Instala un nuevo paquete respondiendo sí a todas las preguntas: `sudo dnf install -y {{paquete}}` diff --git a/pages.es/linux/dos2unix.md b/pages.es/linux/dos2unix.md index 8666a8f53eac2d..bd010d0be7a84a 100644 --- a/pages.es/linux/dos2unix.md +++ b/pages.es/linux/dos2unix.md @@ -1,7 +1,8 @@ # dos2unix > Cambia saltos de línea con formato DOS a saltos de línea con formato Unix. -> Reemplaza CRLF con CR. +> Reemplaza CRLF con LF. +> Más información: . - Cambia los saltos de línea de un archivo: diff --git a/pages.es/linux/free.md b/pages.es/linux/free.md index 06287fd127bda9..fcb1fc9447328b 100644 --- a/pages.es/linux/free.md +++ b/pages.es/linux/free.md @@ -1,6 +1,7 @@ # free > Muestra la cantidad de memoria libre y usada en el sistema. +> Más información: . - Muestra la memoria del sistema: diff --git a/pages.es/linux/gedit.md b/pages.es/linux/gedit.md new file mode 100644 index 00000000000000..f27da70fe299bb --- /dev/null +++ b/pages.es/linux/gedit.md @@ -0,0 +1,20 @@ +# gedit + +> Editor de texto del proyecto GNOME. +> Más información: . + +- Abre un archivo de texto: + +`gedit {{ruta/al/archivo}}` + +- Abre varios archivos de texto: + +`gedit {{archivo1 archivo2 ...}}` + +- Abre un archivo de texto con una codificación específica: + +`gedit --encoding={{UTF-8}} {{ruta/al/archivo}}` + +- Muestra una lista de las codificaciones disponibles: + +`gedit --list-encodings` diff --git a/pages.es/linux/halt.md b/pages.es/linux/halt.md index 1837d6ece60c97..bcc52e6cb6994c 100644 --- a/pages.es/linux/halt.md +++ b/pages.es/linux/halt.md @@ -1,6 +1,7 @@ # halt > Detiene, apaga o reinicia la máquina. +> Más información: . - Detiene la máquina: diff --git a/pages.es/linux/i3.md b/pages.es/linux/i3.md new file mode 100644 index 00000000000000..8117a1e70b2c93 --- /dev/null +++ b/pages.es/linux/i3.md @@ -0,0 +1,32 @@ +# i3 + +> Un gestor dinámico de ventanas en mosaico. +> Más información: . + +- Comienza i3 (Tener en cuenta que no debe haber abierto ningún otro gestor de ventanas existente cuando se ejecute este comando): + +`i3` + +- Abre una terminal en una nueva ventana: + +`Super + Enter` + +- Crea un nuevo espacio de trabajo: + +`Super + Shift + {{número}}` + +- Cambia al espacio de trabajo {{número}}: + +`Super + {{número}}` + +- Abre una nueva ventana en mosaico horizontal: + +`Super + h` + +- Abre una nueva ventana en mosaico vertical: + +`Super + v` + +- Abre una aplicación (escribir el nombre de la aplicación después de ejecutar el comando): + +`Super + D` diff --git a/pages.es/linux/i7z.md b/pages.es/linux/i7z.md new file mode 100644 index 00000000000000..a8a6c8e66fa8ea --- /dev/null +++ b/pages.es/linux/i7z.md @@ -0,0 +1,8 @@ +# i7z + +> Una herramienta de informes en tiempo real para CPUs Intel (sólo i3, i5 e i7). +> Más información: . + +- Inicia i7z (se necesita ejecutar en modo superusuario): + +`sudo i7z` diff --git a/pages.es/linux/ifdown.md b/pages.es/linux/ifdown.md new file mode 100644 index 00000000000000..4f53d95805f2fa --- /dev/null +++ b/pages.es/linux/ifdown.md @@ -0,0 +1,12 @@ +# ifdown + +> Desactiva interfaces de red. +> Más información: . + +- Desactiva la interfaz eth0: + +`ifdown {{eth0}}` + +- Desactiva todas las interfaces que estén activadas: + +`ifdown -a` diff --git a/pages.es/linux/ip-route-list.md b/pages.es/linux/ip-route-list.md new file mode 100644 index 00000000000000..efb26a176d33ba --- /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/line.md b/pages.es/linux/line.md index 5a899ef064a9ce..5ad726bb79539c 100644 --- a/pages.es/linux/line.md +++ b/pages.es/linux/line.md @@ -1,6 +1,7 @@ # line > Lee una única línea de entrada. +> Más información: . - Lee una entrada: diff --git a/pages.es/linux/lsb_release.md b/pages.es/linux/lsb_release.md index ab30339484f103..1594e334d44017 100644 --- a/pages.es/linux/lsb_release.md +++ b/pages.es/linux/lsb_release.md @@ -1,6 +1,7 @@ # lsb_release > Proporciona información específica de la distribución y LSB (Linux Standard Base). +> Más información: . - Muestra toda la información disponible: diff --git a/pages.es/linux/lsmod.md b/pages.es/linux/lsmod.md index ea42b9dfb0866b..f55ee2d7b522a2 100644 --- a/pages.es/linux/lsmod.md +++ b/pages.es/linux/lsmod.md @@ -2,6 +2,7 @@ > Muestra el estado de los módulos cargados en el kernel de linux. > Vease tambien `modprobe`, el cual carga módulos de kernel. +> Más información: . - Lista todos los módulos de kernel cargados: diff --git a/pages.es/linux/lsusb.md b/pages.es/linux/lsusb.md index a7fae3f40543ba..ef993a72d482e3 100644 --- a/pages.es/linux/lsusb.md +++ b/pages.es/linux/lsusb.md @@ -1,6 +1,7 @@ # lsusb > Muestra información sobre puertos y dispositivos USB. +> Más información: . - Lista todos los dispositivos USB disponibles: diff --git a/pages.es/linux/man.md b/pages.es/linux/man.md new file mode 100644 index 00000000000000..f9ad05c32f0395 --- /dev/null +++ b/pages.es/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Da formato y muestra páginas del manual. +> Más información: . + +- Muestra la página del manual para un comando: + +`man {{comando}}` + +- Mostrar la página del manual para un comando de la sección 7: + +`man {{7}} {{comando}}` + +- Listar todas las secciones disponibles para un comando: + +`man --whatis {{comando}}` + +- Muestra las rutas usadas para la búsqueda de las páginas: + +`man --path` + +- Muestra la ubicación de la página del manual en lugar de la propia página: + +`man --where {{comando}}` + +- Muestra la página del manual usando una ubicación específica: + +`man --locale={{locale}} {{comando}}` + +- Busca las páginas del manual que contienen la string indicada: + +`man --apropos "{{cadena_a_buscar}}"` diff --git a/pages.es/linux/megadl.md b/pages.es/linux/megadl.md new file mode 100644 index 00000000000000..db41f8b258c90c --- /dev/null +++ b/pages.es/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Este comando es un alias de `megatools-dl`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr megatools-dl` diff --git a/pages.es/linux/mklost+found.md b/pages.es/linux/mklost+found.md new file mode 100644 index 00000000000000..228adde96cc53c --- /dev/null +++ b/pages.es/linux/mklost+found.md @@ -0,0 +1,8 @@ +# mklost+found + +> Crea un directorio lost+found. +> Más información: . + +- Crea un directorio `lost+found` en el directorio actual: + +`mklost+found` diff --git a/pages.es/linux/nautilus.md b/pages.es/linux/nautilus.md new file mode 100644 index 00000000000000..86b8e5db7607d5 --- /dev/null +++ b/pages.es/linux/nautilus.md @@ -0,0 +1,33 @@ +# nautilus + +> Explorador de archivos por defecto para el entorno de escritorio GNOME. +> También conocido como Archivos de GNOME. +> Más información: . + +- Inicia Nautilus: + +`nautilus` + +- Inicia Nautilus como usuario root: + +`sudo nautilus` + +- Inicia Nautilus y muestra un directorio específico: + +`nautilus {{ruta/al/directorio}}` + +- Inicia Nautilus con un archivo o directorio específico seleccionado: + +`nautilus --select {{ruta/al/archivo_o_directorio}}` + +- Inicia Nautilus en una ventana separada: + +`nautilus --new-window` + +- Cierra todas las instancias de Nautilus: + +`nautilus --quit` + +- Muestra la ayuda: + +`nautilus --help` diff --git a/pages.es/linux/ncal.md b/pages.es/linux/ncal.md new file mode 100644 index 00000000000000..2da323f8043820 --- /dev/null +++ b/pages.es/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Este comando es un alias de `cal`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr cal` diff --git a/pages.es/linux/newgrp.md b/pages.es/linux/newgrp.md new file mode 100644 index 00000000000000..31c0601ceeed47 --- /dev/null +++ b/pages.es/linux/newgrp.md @@ -0,0 +1,12 @@ +# newgrp + +> Cambia el grupo primario de pertenencia. +> Más información: . + +- Cambia el grupo primario de pertenencia del usuario: + +`newgrp {{nombre_grupo}}` + +- Restablece el grupo primario de pertenencia al grupo por defecto del usuario `/etc/passwd`: + +`newgrp` diff --git a/pages.es/linux/ntfsfix.md b/pages.es/linux/ntfsfix.md index 426e92978c762b..9416b2a91ac810 100644 --- a/pages.es/linux/ntfsfix.md +++ b/pages.es/linux/ntfsfix.md @@ -1,6 +1,7 @@ # ntfsfix > Arregla problemas habituales de una partición NTFS. +> Más información: . - Arregla una partición NTFS dada: diff --git a/pages.es/linux/pkgadd.md b/pages.es/linux/pkgadd.md new file mode 100644 index 00000000000000..aea84c832ecb22 --- /dev/null +++ b/pages.es/linux/pkgadd.md @@ -0,0 +1,12 @@ +# pkgadd + +> Añade un paquete a un sistema CRUX. +> Más información: . + +- Instala un paquete de software local: + +`pkgadd {{nombre_paquete}}` + +- Actualiza un paquete ya instalado a partir de un paquete local: + +`pkgadd -u {{nombre_paquete}}` diff --git a/pages.es/linux/pkgrm.md b/pages.es/linux/pkgrm.md index 1bef0b28f8ac8b..0b28c67d7c1778 100644 --- a/pages.es/linux/pkgrm.md +++ b/pages.es/linux/pkgrm.md @@ -1,6 +1,7 @@ # pkgrm > Elimina un paquete de un sistema CRUX. +> Más información: . - Elimina un paquete instalado: diff --git a/pages.es/linux/poweroff.md b/pages.es/linux/poweroff.md index 99b48b47eafb9d..0b06e1f032e5a0 100644 --- a/pages.es/linux/poweroff.md +++ b/pages.es/linux/poweroff.md @@ -1,6 +1,7 @@ # poweroff > Apaga la máquina. +> Más información: . - Apaga la máquina: diff --git a/pages.es/linux/pwdx.md b/pages.es/linux/pwdx.md index 03c4625454c6a3..421742ee01ca11 100644 --- a/pages.es/linux/pwdx.md +++ b/pages.es/linux/pwdx.md @@ -1,6 +1,7 @@ # pwdx > Muestra el directorio de trabajo de un proceso. +> Más información: . - Muestra el directorio de trabajo actual de un proceso: diff --git a/pages.es/linux/raspinfo.md b/pages.es/linux/raspinfo.md new file mode 100644 index 00000000000000..4fce5c6d91cde5 --- /dev/null +++ b/pages.es/linux/raspinfo.md @@ -0,0 +1,8 @@ +# raspinfo + +> Muestra informacion del sistema en una Raspberry Pi. +> Más información: . + +- Muestra información del sistema: + +`raspinfo` diff --git a/pages.es/linux/reboot.md b/pages.es/linux/reboot.md index 28791629653599..ffafdb8958c1f4 100644 --- a/pages.es/linux/reboot.md +++ b/pages.es/linux/reboot.md @@ -1,6 +1,7 @@ # reboot > Reinicia la máquina. +> Más información: . - Reinicia inmediatamente: diff --git a/pages.es/linux/reset.md b/pages.es/linux/reset.md new file mode 100644 index 00000000000000..d413804771b2d4 --- /dev/null +++ b/pages.es/linux/reset.md @@ -0,0 +1,12 @@ +# reset + +> Reinicializa la terminal actual. Borra toda la pantalla de la terminal. +> Más información: . + +- Reinicializa la terminal actual: + +`reset` + +- Muestra el tipo de terminal: + +`reset -q` diff --git a/pages.es/linux/rig.md b/pages.es/linux/rig.md index 25d08c43243103..cc33112c85787f 100644 --- a/pages.es/linux/rig.md +++ b/pages.es/linux/rig.md @@ -1,7 +1,7 @@ # rig > Utilidad para generar un nombre, apellido, calle y número, junto a ubicación geográfica consistente (un conjunto válido de ciudad, estado y código postal). -> Más información: . +> Más información: . - Muestra un nombre aleatorio (masculino o femenino) y una dirección: diff --git a/pages.es/linux/sensible-browser.md b/pages.es/linux/sensible-browser.md new file mode 100644 index 00000000000000..4606f799345626 --- /dev/null +++ b/pages.es/linux/sensible-browser.md @@ -0,0 +1,12 @@ +# sensible-browser + +> Abre el navegador predeterminado. +> Más información: . + +- Abre una nueva ventana del navegador predeterminado: + +`sensible-browser` + +- Abre una URL en el navegador predeterminado: + +`sensible-browser {{url}}` diff --git a/pages.es/linux/sensors.md b/pages.es/linux/sensors.md new file mode 100644 index 00000000000000..9702afe43d45ff --- /dev/null +++ b/pages.es/linux/sensors.md @@ -0,0 +1,12 @@ +# sensors + +> Proporciona información de los sensores. +> Más información: . + +- Muestra las lecturas actuales de todos los sensores: + +`sensors` + +- Muestra las temperaturas en grados Fahrenheit: + +`sensors --fahrenheit` diff --git a/pages.es/linux/service.md b/pages.es/linux/service.md new file mode 100644 index 00000000000000..c5cc3bbbb3c7cd --- /dev/null +++ b/pages.es/linux/service.md @@ -0,0 +1,21 @@ +# service + +> Gestiona los servicios mediante la ejecución de scripts init. +> Se debe omitir la ruta completa del script (se asume `/etc/init.d/`). +> Más información: . + +- Lista el nombre y el estado de todos los servicios: + +`service --status-all` + +- Inicia/Para/Reinicia/Recarga servicio (_start_/_stop_ debería estar siempre disponible): + +`service {{nombre_de_servicio}} {{start|stop|restart|reload}}` + +- Hace un reinicio completo (ejecuta el script dos veces con _start_ y _stop_): + +`service {{nombre_de_servicio}} --full-restart` + +- Muestra el estado actual de un servicio: + +`service {{nombre_de_servicio}} status` diff --git a/pages.es/linux/shutdown.md b/pages.es/linux/shutdown.md index 774b3aec3d5192..52156b405905c8 100644 --- a/pages.es/linux/shutdown.md +++ b/pages.es/linux/shutdown.md @@ -1,6 +1,7 @@ # shutdown > Detiene, apaga o reinicia la máquina. +> Más información: . - Detiene inmediatamente: diff --git a/pages.es/linux/snake4scores.md b/pages.es/linux/snake4scores.md new file mode 100644 index 00000000000000..f4ce76c7f6d618 --- /dev/null +++ b/pages.es/linux/snake4scores.md @@ -0,0 +1,8 @@ +# snake4scores + +> Muestra las máximas puntuaciones del juego snake4. +> Más información: . + +- Muestra las máximas puntuaciones: + +`snake4scores` diff --git a/pages.es/linux/systemctl.md b/pages.es/linux/systemctl.md new file mode 100644 index 00000000000000..1f4381d146ec8e --- /dev/null +++ b/pages.es/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Controla el sistema systemd y el gestor de servicios. +> Más información: . + +- Muestra todos los servicios en ejecución: + +`systemctl status` + +- Lista las unidades fallidas: + +`systemctl --failed` + +- Inicia/Para/Reinicia/Recarga un servicio: + +`systemctl {{start|stop|restart|reload}} {{unidad}}` + +- Muestra el estado de una unidad: + +`systemctl status {{unidad}}` + +- Habilita/Deshabilita una unidad para que se inicie en el arranque: + +`systemctl {{enable/disable}} {{unidad}}` + +- Enmascara/Desenmascara una unidad para evitar su habilitación y activación manual: + +`systemctl {{mask|unmask}} {{unidad}}` + +- Recarga systemd, buscando unidades nuevas o modificadas: + +`systemctl daemon-reload` + +- Comprueba si una unidad está habilitada: + +`systemctl is-enabled {{unidad}}` diff --git a/pages.es/linux/tcpflow.md b/pages.es/linux/tcpflow.md new file mode 100644 index 00000000000000..69c2f67e101094 --- /dev/null +++ b/pages.es/linux/tcpflow.md @@ -0,0 +1,8 @@ +# tcpflow + +> Captura el tráfico TCP para depuración y análisis. +> Más información: . + +- Muestra todos los datos de la interfaz y el puerto indicados: + +`tcpflow -c -i {{eth0}} port {{80}}` diff --git a/pages.es/linux/tcpkill.md b/pages.es/linux/tcpkill.md new file mode 100644 index 00000000000000..366fc6d3a1aff7 --- /dev/null +++ b/pages.es/linux/tcpkill.md @@ -0,0 +1,8 @@ +# tcpkill + +> Mata la conexiones TCP en curso especificadas. +> Más información: . + +- Mata las conexiones en curso de una interfaz, máquina y puerto indicados: + +`tcpkill -i {{eth1}} host {{192.95.4.27}} and port {{2266}}` diff --git a/pages.es/linux/thunar.md b/pages.es/linux/thunar.md new file mode 100644 index 00000000000000..2a9b762d6cdab8 --- /dev/null +++ b/pages.es/linux/thunar.md @@ -0,0 +1,16 @@ +# thunar + +> Administrador de archivos gráficos para entornos de escritorio XFCE. +> Más información: . + +- Abre una nueva ventana mostrando el directorio actual: + +`thunar` + +- Abra la utilidad de cambio de nombre masivo: + +`thunar --bulk-rename` + +- Cierra todas las ventanas abiertas de thunar: + +`thunar --quit` diff --git a/pages.es/linux/top.md b/pages.es/linux/top.md index c30bfedd88084a..3e5459a1a9efb1 100644 --- a/pages.es/linux/top.md +++ b/pages.es/linux/top.md @@ -1,6 +1,7 @@ # top > Muestra información dinámica en tiempo real sobre procesos ejecutándose. +> Más información: . - Inicia top: @@ -22,7 +23,7 @@ `top -Hp {{id_proceso}}` -- Muestra solo los procesos con un(os) PID(s) dado(s), sepadados por comas. (Normalmente no se conoce el PID de antemano. Este ejemplo lo obtiene del nombre del proceso): +- Muestra solo los procesos con un(os) PID(s) dado(s), separados por comas. (Normalmente no se conoce el PID de antemano. Este ejemplo lo obtiene del nombre del proceso): `top -p $(pgrep -d ',' {{nombre_proceso}})` diff --git a/pages.es/linux/ubuntu-bug.md b/pages.es/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..5edf02c3fb95f5 --- /dev/null +++ b/pages.es/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> Este comando es un alias de `apport-bug`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr apport-bug` diff --git a/pages.es/linux/ufw.md b/pages.es/linux/ufw.md new file mode 100644 index 00000000000000..213d84bc9d512f --- /dev/null +++ b/pages.es/linux/ufw.md @@ -0,0 +1,37 @@ +# ufw + +> Cortafuegos sin complicaciones (_Uncomplicated Firewall_). +> Interfaz de usuario de iptables para facilitar la configuración de un firewall. +> Más información: . + +- Activa ufw: + +`ufw enable` + +- Desactiva ufw: + +`ufw disable` + +- Muestra reglas del ufw, junto con sus números: + +`ufw status numbered` + +- Permite el tráfico entrante en el puerto 5432 en este host con un comentario que identifique el servicio: + +`ufw allow {{5432}} comment "{{servicio}}"` + +- Permite sólo el tráfico TCP desde 192.168.0.4 a cualquier dirección de este host, en el puerto 22: + +`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}` + +- Deniega tráfico en el puerto 80 en este host: + +`ufw deny {{80}}` + +- Deniega todo el tráfico al puerto 22: + +`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}` + +- Elimina una regla concreta. El número de la regla puede obtenerse del comando `ufw status numbered`: + +`ufw delete {{número_de_regla}}` diff --git a/pages.es/linux/useradd.md b/pages.es/linux/useradd.md new file mode 100644 index 00000000000000..44eb8313c10e30 --- /dev/null +++ b/pages.es/linux/useradd.md @@ -0,0 +1,24 @@ +# useradd + +> Crea un usuario nuevo. +> Más información: . + +- Crea un usuario nuevo: + +`useradd {{nombre}}` + +- Crea un usuario nuevo con el directorio home predeterminado: + +`useradd --create-home {{nombre}}` + +- Crea un usuario nuevo con una shell específica: + +`useradd --shell {{ruta/a/la/shell}} {{nombre}}` + +- Crea un usuario nuevo perteneciente a grupos adicionales (tener en cuenta que no existen espacios en blanco): + +`useradd --groups {{grupo1,grupo2}} {{nombre}}` + +- Crea un usuario nuevo del sistema sin directorio home: + +`useradd --no-create-home --system {{nombre}}` diff --git a/pages.es/linux/userdel.md b/pages.es/linux/userdel.md index 43f16adc68ce95..90f5c3bc09bc85 100644 --- a/pages.es/linux/userdel.md +++ b/pages.es/linux/userdel.md @@ -1,8 +1,21 @@ # userdel -> Elimina un usuario. +> Elimina una cuenta de usuario o elimina un usuario de un grupo. +> Nota: todos los comandos deben ser ejecutados como root. > Más información: . -- Elimina un usuario y su directorio personal: +- Elimina un usuario: -`userdel -r {{nombre_de_usuario}}` +`userdel {{nombre}}` + +- Elimina un usuario junto con su directorio home y mail spool: + +`userdel --remove {{nombre}}` + +- Elimina un usuario de un grupo: + +`userdel {{nombre}} {{grupo}}` + +- Elimina un usuario en otro directorio root: + +`userdel --root {{ruta/al/otro/root}} {{nombre}}` diff --git a/pages.es/linux/usermod.md b/pages.es/linux/usermod.md new file mode 100644 index 00000000000000..564c0ec6004500 --- /dev/null +++ b/pages.es/linux/usermod.md @@ -0,0 +1,16 @@ +# usermod + +> Modifica una cuenta de usuario. +> Más información: . + +- Cambia el nombre de un usuario: + +`usermod -l {{nuevo_nombre}} {{usuario}}` + +- Añade un usuario a grupos suplementarios (tener en cuenta los espacios en blanco): + +`usermod -a -G {{grupo1,grupo2}} {{usuario}}` + +- Crea un nuevo directorio home para un usuario y mueve sus archivos a él: + +`usermod -m -d {{ruta/al/home}} {{usuario}}` diff --git a/pages.es/linux/vipw.md b/pages.es/linux/vipw.md new file mode 100644 index 00000000000000..000e92f56e51f7 --- /dev/null +++ b/pages.es/linux/vipw.md @@ -0,0 +1,12 @@ +# vipw + +> Edita el archivo de contraseñas. +> Más información: . + +- Edita el archivo de contraseñas: + +`vipw` + +- Muestra la versión actual de `vipw`: + +`vipw --version` diff --git a/pages.es/linux/vmstat.md b/pages.es/linux/vmstat.md new file mode 100644 index 00000000000000..f49afdfa071224 --- /dev/null +++ b/pages.es/linux/vmstat.md @@ -0,0 +1,12 @@ +# vmstat + +> Reporta información sobre procesos, memoria, paginación, IO en bloque, traps, discos y actividad del CPU. +> Más información: . + +- Muestra las estadísticas de la memoria virtual: + +`vmstat` + +- Muestra informes cada 2 segundos por 5 veces: + +`vmstat {{2}} {{5}}` diff --git a/pages.es/linux/w.md b/pages.es/linux/w.md new file mode 100644 index 00000000000000..064131ac1789ca --- /dev/null +++ b/pages.es/linux/w.md @@ -0,0 +1,20 @@ +# w + +> Muestra quien ha iniciado sesión y sus procesos. +> Más información: . + +- Muestra información sobre todos los usuarios que han iniciado sesión actualmente: + +`w` + +- Muestra información sobre un usuario específico: + +`w {{nombre_de_usuario}}` + +- Muestra información sin incluir la cabecera: + +`w --no-header` + +- Muestra información sin incluir las columnas de inicio de sesión, JCPU y PCPU: + +`w --short` diff --git a/pages.es/linux/xdg-open.md b/pages.es/linux/xdg-open.md index 785e6f913b6a61..6a78f9a6dbb800 100644 --- a/pages.es/linux/xdg-open.md +++ b/pages.es/linux/xdg-open.md @@ -1,7 +1,7 @@ # xdg-open > Abre un archivo o URL en la aplicación predeterminada del usuario. -> Más información: . +> Más información: . - Abre el directorio actual en el explorador de archivos predeterminado: @@ -11,7 +11,7 @@ `xdg-open {{https://www.ejemplo.es}}` -- Abre una image en el visor de imágenes predeterminado: +- Abre una imagen en el visor de imágenes predeterminado: `xdg-open {{ruta/al/imagen}}` diff --git a/pages.es/linux/xfreerdp.md b/pages.es/linux/xfreerdp.md new file mode 100644 index 00000000000000..60a283788bb19e --- /dev/null +++ b/pages.es/linux/xfreerdp.md @@ -0,0 +1,8 @@ +# xfreerdp + +> Implementación libre del protocolo de escritorio remoto (_Remote Desktop Protocol_). +> Más información: . + +- Conecta con un servidor FreeRDP: + +`xfreerdp /u:{{nombre_de_usuario}} /p:{{contraseña}} /v:{{direccion_ip}}` diff --git a/pages.es/linux/yum.md b/pages.es/linux/yum.md new file mode 100644 index 00000000000000..73fddd6c2e5756 --- /dev/null +++ b/pages.es/linux/yum.md @@ -0,0 +1,28 @@ +# yum + +> Administrador de paquetes para RHEL, CentOS y Fedora (para versiones anteriores). +> Más información: . + +- Instala un nuevo paquete: + +`yum install {{package}}` + +- Instala un nuevo paquete respondiendo sí a todas las preguntas (también trabaja con actualizaciones, útil para actualizaciones automáticas): + +`yum -y install {{package}}` + +- Encuentra que paquete provee un archivo determinado: + +`yum provides {{command}}` + +- Elimina un paquete: + +`yum remove {{package}}` + +- Muestra las actualizaciones disponibles para los paquetes instalados: + +`yum check-update` + +- Actualiza los paquetes instalados a las versiones más recientes disponibles: + +`yum upgrade` diff --git a/pages.es/linux/zipcloak.md b/pages.es/linux/zipcloak.md new file mode 100644 index 00000000000000..cbb7d6063b609b --- /dev/null +++ b/pages.es/linux/zipcloak.md @@ -0,0 +1,16 @@ +# zipcloak + +> Encripta el contenido de un archivo zip. +> Más información: . + +- Encripta el contenido de un archivo zip: + +`zipcloak {{ruta/al/archivo.zip}}` + +- [d]esencripta el contenido de un archivo zip: + +`zipcloak -d {{ruta/al/archivo_encriptado.zip}}` + +- Genera un nuev[O] archivo zip con el contenido encriptado: + +`zipcloak {{ruta/al/archivo.zip}} -O {{ruta/al/archivo_encriptado.zip}}` diff --git a/pages.es/linux/zypper.md b/pages.es/linux/zypper.md new file mode 100644 index 00000000000000..0951ed8690b152 --- /dev/null +++ b/pages.es/linux/zypper.md @@ -0,0 +1,28 @@ +# zypper + +> Utilidad para la gestión de paquetes en SUSE y openSUSE. +> Más información: . + +- Sincroniza la lista de paquetes y versiones disponibles: + +`zypper refresh` + +- Instala un nuevo paquete: + +`zypper install {{paquete}}` + +- Elimina un paquete: + +`zypper remove {{paquete}}` + +- Actualiza los paquetes instalados a la versión más reciente disponible: + +`zypper update` + +- Busca en los repositorios un paquete mediante una palabra clave: + +`zypper search {{palabra_clave}}` + +- Muestra información relacionada con los repositorios configurados: + +`zypper repos --sort-by-priority` diff --git a/pages.es/osx/aa.md b/pages.es/osx/aa.md new file mode 100644 index 00000000000000..20f259bf8d51b8 --- /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/afinfo.md b/pages.es/osx/afinfo.md index f2e3269d9a1a80..63c7339d2369af 100644 --- a/pages.es/osx/afinfo.md +++ b/pages.es/osx/afinfo.md @@ -2,6 +2,7 @@ > Analizador de metadatos de archivos de audio para OS X. > Comando nativo de OS X. +> Más información: . - Muestra información de un archivo de audio dado: diff --git a/pages.es/osx/afplay.md b/pages.es/osx/afplay.md index fb493b249b37b6..7a1a822d144c79 100644 --- a/pages.es/osx/afplay.md +++ b/pages.es/osx/afplay.md @@ -1,6 +1,7 @@ # afplay > Reproductor de audio de línea de comandos. +> Más información: . - Reproduce un archivo de audio (espera hasta que finalice la reproducción): diff --git a/pages.es/osx/airport.md b/pages.es/osx/airport.md index 2cffed5975ca6b..6f0d7d11b83f95 100644 --- a/pages.es/osx/airport.md +++ b/pages.es/osx/airport.md @@ -1,6 +1,7 @@ # airport > Utilidad de configuración de red inalámbrica. +> Más información: . - Muestra la información del estado actual de la red inalámbrica: diff --git a/pages.es/osx/apachectl.md b/pages.es/osx/apachectl.md index 39ec472fe66d69..c6ed3a3d09ef85 100644 --- a/pages.es/osx/apachectl.md +++ b/pages.es/osx/apachectl.md @@ -1,6 +1,7 @@ # apachectl -> Interfaz de control pata Apache HTTP Server para macOS. +> Interfaz de control de Apache HTTP Server para macOS. +> Más información: . - Inicia la tarea launchd `org.apache.httpd`: diff --git a/pages.es/osx/applecamerad.md b/pages.es/osx/applecamerad.md new file mode 100644 index 00000000000000..6dc39a70664046 --- /dev/null +++ b/pages.es/osx/applecamerad.md @@ -0,0 +1,9 @@ +# applecamerad + +> Gestor de cámara. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`applecamerad` diff --git a/pages.es/osx/archey.md b/pages.es/osx/archey.md index e5d971026719be..2b7c74ac6bbfaa 100644 --- a/pages.es/osx/archey.md +++ b/pages.es/osx/archey.md @@ -1,6 +1,7 @@ # archey > Herramienta sencilla para mostrar información del sistema con estilo. +> Más información: . - Muestra información del sistema: @@ -10,7 +11,7 @@ `archey --nocolor` -- Muestra información del sistema, usando MacPorts en lugar de Hombrew: +- Muestra información del sistema, usando MacPorts en lugar de Homebrew: `archey --macports` diff --git a/pages.es/osx/as.md b/pages.es/osx/as.md index 0c344d399b0180..d13a61b498feb1 100644 --- a/pages.es/osx/as.md +++ b/pages.es/osx/as.md @@ -2,6 +2,7 @@ > Ensamblador portable GNU. > Principalmente destinado a ensamblar la salida de `gcc` para ser utilizada por` ld`. +> Más información: . - Ensambla un archivo, escribiendo la salida en `a.out`: diff --git a/pages.es/osx/asr.md b/pages.es/osx/asr.md index 169f1965da182e..dbe2d9ef95b94e 100644 --- a/pages.es/osx/asr.md +++ b/pages.es/osx/asr.md @@ -2,6 +2,7 @@ > Restaura (copia) una imagen de disco en un volumen. > El nombre del comando significa Restauración de Software de Apple. +> Más información: . - Restaura una imagen de disco en un volumen: diff --git a/pages.es/osx/autofsd.md b/pages.es/osx/autofsd.md new file mode 100644 index 00000000000000..6a011d8c2ffe39 --- /dev/null +++ b/pages.es/osx/autofsd.md @@ -0,0 +1,9 @@ +# autofsd + +> Ejecuta `automount` al inicio del sistema y en cambios en la configuración de red. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`autofsd` diff --git a/pages.es/osx/base64.md b/pages.es/osx/base64.md new file mode 100644 index 00000000000000..b731214a84dfba --- /dev/null +++ b/pages.es/osx/base64.md @@ -0,0 +1,20 @@ +# base64 + +> Codifica y decodifica usando la repesentación Base64. +> Más información: . + +- Codifica un archivo: + +`base64 --input={{archivo_plano}}` + +- Decodifica un archivo: + +`base64 --decode --input={{base64_archivo}}` + +- Codifica desde stdin: + +`echo -n "{{texto_plano}}" | base64` + +- Decodifica desde stdin: + +`echo -n {{base64_texto}} | base64 --decode` diff --git a/pages.es/osx/biometrickitd.md b/pages.es/osx/biometrickitd.md new file mode 100644 index 00000000000000..9fee547f08cafb --- /dev/null +++ b/pages.es/osx/biometrickitd.md @@ -0,0 +1,9 @@ +# biometrickitd + +> Proporciona soporte para operaciones biométricas. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`biometrickitd` diff --git a/pages.es/osx/bird.md b/pages.es/osx/bird.md new file mode 100644 index 00000000000000..6b594e9168be77 --- /dev/null +++ b/pages.es/osx/bird.md @@ -0,0 +1,9 @@ +# bird + +> Esto admite la sincronización de iCloud e iCloud Drive. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`bird` diff --git a/pages.es/osx/brew.md b/pages.es/osx/brew.md deleted file mode 100644 index 9e9db0e532d84a..00000000000000 --- a/pages.es/osx/brew.md +++ /dev/null @@ -1,36 +0,0 @@ -# brew - -> Administrador de paquetes para macOS. -> Más información: . - -- Busca fórmulas y paquetes disponibles: - -`brew search {{text}}` - -- Instala la última versión estable de una fórmula (usa `--devel` para versiones de desarrollo): - -`brew install {{formula}}` - -- Muestra todas las fórmulas instaladas: - -`brew list` - -- Muestra fórmulas instaladas que no dependen de otras: - -`brew leaves` - -- Actualiza una fórmula instalada (si no se indica el nombre, se actualizan todas las fórmulas): - -`brew upgrade {{formula}}` - -- Actualiza a la última versión de Homebrew y todas sus fórmulas desde GitHub: - -`brew update` - -- Muestra información acerca de una fórmula (versión, ruta de instalación, dependencias, etc.): - -`brew info {{formula}}` - -- Verifica la instalación local de Homebrew en busca de problemas potenciales: - -`brew doctor` diff --git a/pages.es/osx/caffeinate.md b/pages.es/osx/caffeinate.md new file mode 100644 index 00000000000000..ef586cbbe0ec68 --- /dev/null +++ b/pages.es/osx/caffeinate.md @@ -0,0 +1,20 @@ +# caffeinate + +> Evita que macOS entre en modo de reposo. +> Más información: . + +- Evita entrar en modo reposo por 1 hora (3600 segundos): + +`caffeinate -u -t {{3600}}` + +- Evita entrar en modo reposo hasta que un comando finaliza: + +`caffeinate -s "{{command}}"` + +- Evita entrar en modo reposo (use `Ctrl + C` para salir): + +`caffeinate -i` + +- Evita al disco entrar en modo reposo (use `Ctrl + C` para salir): + +`caffeinate -m` diff --git a/pages.es/osx/corebrightnessd.md b/pages.es/osx/corebrightnessd.md new file mode 100644 index 00000000000000..f9d66cad03be38 --- /dev/null +++ b/pages.es/osx/corebrightnessd.md @@ -0,0 +1,9 @@ +# corebrightnessd + +> Gestiona Night Shift. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`corebrightnessd` diff --git a/pages.es/osx/coredatad.md b/pages.es/osx/coredatad.md new file mode 100644 index 00000000000000..41c7d4f1b232d2 --- /dev/null +++ b/pages.es/osx/coredatad.md @@ -0,0 +1,9 @@ +# coredatad + +> Programa operaciones CloudKit para clientes de NSPersistentCloudKitContainer. +> No debe ser invocado manualmente. +> Más información: . + +- Inicia el proceso residente: + +`coredatad` diff --git a/pages.es/osx/dark-mode.md b/pages.es/osx/dark-mode.md new file mode 100644 index 00000000000000..7d28e27c093e1b --- /dev/null +++ b/pages.es/osx/dark-mode.md @@ -0,0 +1,20 @@ +# dark-mode + +> Controla el modo oscuro de macOS desde la línea de comandos. +> Más información: . + +- Alterna el modo oscuro (lo activa si actualmente está desactivado, lo desactiva si actualmente está activado): + +`dark-mode` + +- Activa el modo oscuro: + +`dark-mode on` + +- Desactiva el modo oscuro: + +`dark-mode off` + +- Verifica si el modo oscuro está activado: + +`dark-mode status` diff --git a/pages.es/osx/g[.md b/pages.es/osx/g[.md new file mode 100644 index 00000000000000..8e00aada184f8b --- /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 00000000000000..5d222387fe6060 --- /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 00000000000000..74c45e9ca3c37d --- /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 00000000000000..d061609341e3e5 --- /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 00000000000000..06b6fad1d05ba0 --- /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 00000000000000..add0e33171f4b5 --- /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 00000000000000..2a6e0ac54230df --- /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 00000000000000..0b2d71cd5272dd --- /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 00000000000000..873974cdd78fa4 --- /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 00000000000000..fbc1b6e95a6dee --- /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 00000000000000..ece220963742b4 --- /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 00000000000000..c7f15b2c1e2ed0 --- /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 00000000000000..14cc926baf5b9d --- /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 00000000000000..62963febee2e4b --- /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 00000000000000..d7d1137eceb160 --- /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 00000000000000..9c45c6b3fcc1f3 --- /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 00000000000000..6078ba24b4305f --- /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 00000000000000..828fb12e2552ac --- /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 00000000000000..9f7f7bdbc23272 --- /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 00000000000000..e8e85be5c4ad96 --- /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 00000000000000..b5929e2731ba86 --- /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 00000000000000..f892f0e1728d4a --- /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 00000000000000..0d48484d387575 --- /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 00000000000000..15e8e4c3f622b5 --- /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 00000000000000..9defcc8669fe47 --- /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 00000000000000..9de89b58c521d8 --- /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 00000000000000..18fdd12e369534 --- /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 00000000000000..4f78b71cff6d12 --- /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 00000000000000..238dc32aee0ab2 --- /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 00000000000000..605c1b4d90c5b7 --- /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 00000000000000..cf9b4a001612b0 --- /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 00000000000000..576d760086c59f --- /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 00000000000000..ddb0d5d5ab867a --- /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 00000000000000..79b17263b3dc7b --- /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 00000000000000..3b4904071553b4 --- /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 00000000000000..42a4b5bb4b7a85 --- /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 00000000000000..971f51a5303032 --- /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 00000000000000..a9dec215b4094b --- /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 00000000000000..9ddf9a216978cb --- /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 00000000000000..d37dbbe3e6b91e --- /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 00000000000000..f830dea32ce797 --- /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 00000000000000..9328e9c24cb45e --- /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 00000000000000..17cf26918667c6 --- /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 00000000000000..c76af8e934e9c6 --- /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 00000000000000..de0d514dd1619e --- /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 00000000000000..48c6018e617531 --- /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 00000000000000..68110ed15c6f93 --- /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 00000000000000..f25aeb1de2d823 --- /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 00000000000000..d5a101f9a1d0b0 --- /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 00000000000000..b5061d6a54113e --- /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 00000000000000..69605077feea03 --- /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 00000000000000..b852f6a244c7ba --- /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 00000000000000..2e8c607661c12c --- /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 00000000000000..694da61b104c24 --- /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 00000000000000..c1b9b58384ac0c --- /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 00000000000000..92df45ad8f4cf0 --- /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 00000000000000..b3f679ecc268e5 --- /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 00000000000000..1604de18de6664 --- /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 00000000000000..0f341b44a70709 --- /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 00000000000000..65917f0a81c59d --- /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 00000000000000..47a0b8b87b5292 --- /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 00000000000000..557de620beb67f --- /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 00000000000000..e37b820c1e3593 --- /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 00000000000000..2fb4368d41bb9c --- /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 00000000000000..d1a89eca974394 --- /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 00000000000000..3e5efec791cf2c --- /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 00000000000000..fd65c2c68ce410 --- /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 00000000000000..48a5cf21e85fe2 --- /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 00000000000000..b79ea4841b5285 --- /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 00000000000000..ff78be55c0d6db --- /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 00000000000000..7eeaff7b1858a5 --- /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 00000000000000..c506446aaa8815 --- /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 00000000000000..06e53e4e9ecb48 --- /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 00000000000000..05ba1b9eb6fd41 --- /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 00000000000000..d7db7e5c9f419e --- /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 00000000000000..468f2b393f4311 --- /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 00000000000000..fe6fc7d6625553 --- /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 00000000000000..0acaa5c913d048 --- /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 00000000000000..8c4fb3b0956158 --- /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 00000000000000..dff6ffe5557363 --- /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 00000000000000..b512935cc42308 --- /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 00000000000000..b358cdbfe7e77c --- /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 00000000000000..112d640b01e029 --- /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 00000000000000..c1b4efc4221b50 --- /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 00000000000000..ef01e5c0382b8d --- /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 00000000000000..716b3fca4c379b --- /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 00000000000000..a7609f025f3868 --- /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 00000000000000..fb5a93f3f74586 --- /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 00000000000000..ca84623ddfb352 --- /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 00000000000000..55080714401aeb --- /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 00000000000000..6688b32d2982ea --- /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 00000000000000..e0f95cd7e11c88 --- /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 00000000000000..6e690b03abd5c4 --- /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 00000000000000..572ab421dead9f --- /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 00000000000000..c538aee8be6c01 --- /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 00000000000000..397b26448495f7 --- /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 00000000000000..abb8334ebfdb3a --- /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 00000000000000..ddeeb47d2a4432 --- /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 00000000000000..e81b1277d2d376 --- /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 00000000000000..ec6f12461c7273 --- /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 00000000000000..765fd4f8142035 --- /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 00000000000000..731b526ec7b368 --- /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 00000000000000..a31d4c785c7ab3 --- /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 00000000000000..994f9daf8d50a9 --- /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 00000000000000..c1929e6654aaca --- /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 00000000000000..ebc560c4528969 --- /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 00000000000000..0f44e254024f04 --- /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 00000000000000..7020c8957d6da4 --- /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 00000000000000..0a0ff1cc1aa48a --- /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 00000000000000..0634b5815f255b --- /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 00000000000000..636e36c6c1d3a7 --- /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 00000000000000..a480e275e223e0 --- /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 00000000000000..e3a4a19e7d7e00 --- /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 00000000000000..a66d76db25ed03 --- /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 00000000000000..ae8e39db1acff7 --- /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 00000000000000..9c9e9acd8c84de --- /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 00000000000000..c4420a0920cf33 --- /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 00000000000000..3f0acb9b01efd4 --- /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 00000000000000..f9e612825b788a --- /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 00000000000000..59338d4aeab1c4 --- /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 00000000000000..1e8171434404be --- /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 00000000000000..9341f44d1009f0 --- /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 00000000000000..9e6a797cc4c548 --- /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 00000000000000..7165a0f4c189c6 --- /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 00000000000000..b7029919d3d638 --- /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 00000000000000..e490cab4200c32 --- /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 00000000000000..f4974400ad1ee2 --- /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 00000000000000..ef7e0673139176 --- /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 00000000000000..284fbc170d7957 --- /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 00000000000000..b50d43bcb88c07 --- /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 00000000000000..14bd1f53a238a8 --- /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 00000000000000..49c2864cf3e81e --- /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 00000000000000..a16efd3d3c1da1 --- /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 00000000000000..34814e38a3a934 --- /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 00000000000000..ca7dfb76c39de7 --- /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 00000000000000..d9d9b99842dcbd --- /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 00000000000000..06679e64a06778 --- /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 00000000000000..bc3db2a12be2f4 --- /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 00000000000000..20c9485d96b18e --- /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/icalbuddy.md b/pages.es/osx/icalbuddy.md new file mode 100644 index 00000000000000..3c788eac89c940 --- /dev/null +++ b/pages.es/osx/icalbuddy.md @@ -0,0 +1,24 @@ +# icalBuddy + +> Utilidad de línea de comandos para imprimir eventos y tareas desde la base de datos del calendario de macOS. +> Más información: . + +- Mostrar los eventos de hoy más tarde: + +`icalBuddy -n eventsToday` + +- Mostrar tareas no completadas: + +`icalBuddy uncompletedTasks` + +- Mostrar una lista formateada y discriminada de acuerdo al calendario de todos los eventos en el día de hoy: + +`icalBuddy -f -sc eventsToday` + +- Mostrar las tareas para un número determinado de días: + +`icalBuddy -n "tasksDueBefore:today+{{days}}"` + +- Mostrar los eventos en un rango de tiempo: + +`icalBuddy eventsFrom:{{start_date}} to:{{end_date}}` diff --git a/pages.es/osx/launchd.md b/pages.es/osx/launchd.md new file mode 100644 index 00000000000000..a94d4db773b0b3 --- /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/port.md b/pages.es/osx/port.md new file mode 100644 index 00000000000000..ee83ba84976002 --- /dev/null +++ b/pages.es/osx/port.md @@ -0,0 +1,28 @@ +# port + +> Gestor de paquetes para macOS. +> Más información: . + +- Busca un paquete: + +`port search {{termino_de_busqueda}}` + +- Instala un paquete: + +`sudo port install {{nombre_de_paquete}}` + +- Lista los paquetes instalados: + +`port installed` + +- Actualiza port y trae la última lista de paquetes disponibles: + +`sudo port selfupdate` + +- Actualiza los paquetes desactualizados: + +`sudo port upgrade outdated` + +- Remueve versiones antiguas de paquetes instalados: + +`sudo port uninstall inactive` diff --git a/pages.es/osx/rubocop.md b/pages.es/osx/rubocop.md deleted file mode 100644 index d9515c5d84cefa..00000000000000 --- a/pages.es/osx/rubocop.md +++ /dev/null @@ -1,31 +0,0 @@ -# rubocop - -> Analiza archivos de Ruby. - -- Verifica todos los archivos en el directorio actual (incluyendo subdirectorios): - -`rubocop` - -- Verifica uno o más archivos o directorios determinados: - -`rubocop {{path/to/file}} {{path/to/directory}}` - -- Guarda la salida en un archivo: - -`rubocop --out {{path/to/file}}` - -- Muestra la lista de cops (reglas de análisis): - -`rubocop --show-cops` - -- Excluye una regla: - -`rubocop --except {{cop_1}} {{cop_2}}` - -- Ejecuta sólo determinadas reglas: - -`rubocop --only {{cop_1}} {{cop_2}}` - -- Autocorrige archivos (experimental): - -`rubocop --auto-correct` diff --git a/pages.es/osx/textutil.md b/pages.es/osx/textutil.md new file mode 100644 index 00000000000000..9784b9c41099d0 --- /dev/null +++ b/pages.es/osx/textutil.md @@ -0,0 +1,24 @@ +# textutil + +> Manipula archivos de texto en varios formatos. +> Más información: . + +- Muestra información de `foo.rtf`: + +`textutil -info {{foo.rtf}}` + +- Convierte `foo.rtf` en `foo.html`: + +`textutil -convert {{html}} {{foo.rtf}}` + +- Convierte texto enriquecido a texto normal: + +`textutil {{foo.rtf}} -convert {{txt}}` + +- Convierte `foo.txt` en `foo.rtf`, usando la fuente Times con un tamaño 10: + +`textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}` + +- Carga todos los archivos RTF en el directorio actual, concatena su contenido y escribe el resultado como `index.html` con el título HTML establecido en "Varios archivos": + +`textutil -cat {{html}} -title "Varios archivos" -output {{index.html}} *.rtf` diff --git a/pages.es/osx/uuidgen.md b/pages.es/osx/uuidgen.md new file mode 100644 index 00000000000000..4a32f188db1136 --- /dev/null +++ b/pages.es/osx/uuidgen.md @@ -0,0 +1,8 @@ +# uuidgen + +> Genera nuevas cadenas UUID (Identificador único universal). +> Más información: . + +- Genera una cadena UUID: + +`uuidgen` diff --git a/pages.es/osx/wacaw.md b/pages.es/osx/wacaw.md new file mode 100644 index 00000000000000..4f1d42625bd01f --- /dev/null +++ b/pages.es/osx/wacaw.md @@ -0,0 +1,24 @@ +# wacaw + +> Herramienta de línea de comandos para macOS para capturar imágenes fijas y videos desde una cámara adjunta. +> Más información: . + +- Toma una foto desde la cámara web: + +`wacaw {{filename}}` + +- Graba un video: + +`wacaw --video {{filename}} --duration {{duration_in_seconds}}` + +- Toma una foto con resolución personalizada: + +`wacaw --width {{width}} --height {{height}} {{filename}}` + +- Copia imagen recién tomada al portapapeles: + +`wacaw --to-clipboard` + +- Lista de los dispositivos disponibles: + +`wacaw --list-devices` diff --git a/pages.es/osx/warm.md b/pages.es/osx/warm.md new file mode 100644 index 00000000000000..c5906dc24e5bff --- /dev/null +++ b/pages.es/osx/warm.md @@ -0,0 +1,9 @@ +# warmd + +> Controla los cachés utilizados 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/wifi-password.md b/pages.es/osx/wifi-password.md new file mode 100644 index 00000000000000..24e0c90ff8a923 --- /dev/null +++ b/pages.es/osx/wifi-password.md @@ -0,0 +1,16 @@ +# wifi-password + +> Obtiene la contraseña del Wi-Fi. +> Más información: . + +- Obtiene la contraseña de la red Wi-Fi en la que está conectado actualmente: + +`wifi-password` + +- Obtiene la contraseña para el Wi-Fi con un SSID específico: + +`wifi-password {{ssid}}` + +- Imprime solo la contraseña como salida: + +`wifi-password -q` diff --git a/pages.es/osx/yabai.md b/pages.es/osx/yabai.md new file mode 100644 index 00000000000000..fcf5062d57ed74 --- /dev/null +++ b/pages.es/osx/yabai.md @@ -0,0 +1,24 @@ +# yabai + +> Un administrador de ventanas en mosaico para macOS basado en la partición de espacio binario. +> Más información: . + +- Establece la disposición a bsp: + +`yabai -m config layout {{bsp}}` + +- Establece el espacio de la ventana en 10pt: + +`yabai -m config window_gap {{10}}` + +- Habilita opacidad: + +`yabai -m config window_opacity on` + +- Deshabilita la sombra de la ventana: + +`yabai -m config window_shadow off` + +- Habilita la barra de estado: + +`yabai -m config status_bar on` diff --git a/pages.es/windows/cd.md b/pages.es/windows/cd.md new file mode 100644 index 00000000000000..c09772eb27776d --- /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 00000000000000..b933900b39c6e2 --- /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/cinst.md b/pages.es/windows/cinst.md new file mode 100644 index 00000000000000..e4c9e98d8c29ee --- /dev/null +++ b/pages.es/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Este comando es un alias de `choco install`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr choco install` diff --git a/pages.es/windows/clist.md b/pages.es/windows/clist.md new file mode 100644 index 00000000000000..fbeb538de8e445 --- /dev/null +++ b/pages.es/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Este comando es un alias de `choco list`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr choco list` diff --git a/pages.es/windows/cls.md b/pages.es/windows/cls.md new file mode 100644 index 00000000000000..6650ef1468083a --- /dev/null +++ b/pages.es/windows/cls.md @@ -0,0 +1,8 @@ +# cls + +> Borra la pantalla. +> Más información: . + +- Borra la pantalla: + +`cls` diff --git a/pages.es/windows/cpush.md b/pages.es/windows/cpush.md new file mode 100644 index 00000000000000..162e59bffd0e90 --- /dev/null +++ b/pages.es/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Este comando es un alias de `choco push`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr choco-push` diff --git a/pages.es/windows/cuninst.md b/pages.es/windows/cuninst.md new file mode 100644 index 00000000000000..fe2e92536b289f --- /dev/null +++ b/pages.es/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Este comando es un alias de `choco uninstall`. +> Más información: . + +- Ver documentación para el comando original: + +`tldr choco uninstall` diff --git a/pages.es/windows/curl.md b/pages.es/windows/curl.md new file mode 100644 index 00000000000000..b5ff81680c3bb1 --- /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/iwr.md b/pages.es/windows/iwr.md new file mode 100644 index 00000000000000..69a339305f4553 --- /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 00000000000000..2a6481a9a5a6f4 --- /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 00000000000000..f1cb5fa44c134a --- /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 00000000000000..f85e2cd1e5ee89 --- /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 00000000000000..1c0515afa8bba4 --- /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/common/7z.md b/pages.fa/common/7z.md new file mode 100644 index 00000000000000..238a935f0279c1 --- /dev/null +++ b/pages.fa/common/7z.md @@ -0,0 +1,36 @@ +# 7z + +> آرشیو کننده فایل با نسبت فشرده سازی بالا. +> اطلاعات بیشتر: . + +- آرشیو کننده فایل یا دایرکتوری: + +`7z a {{7z.مسیر فایل آرشیو}} {{مسیر فایل یا دایرکتوری}}` + +- رمزگذاری بر روی فایل آرشیو موجود(ازجمله نام فایل ها): + +`7z a {{7z.مسیر فایل آرشیو رمزگذاری شده}} -p{{رمز عبور}} -mhe=on {{7z.مسیر فایل آرشیو}}` + +- خارج کردن فایل از حالت آرشیو با حفظ ساختار دایرکتوری ها: + +`7z x {{7z.مسیر فایل آرشیو}}` + +- خارج کردن یک فایل از حالت آرشیو در یک دایرکتوری خاص: + +`7z x {{7z.مسیر فایل آرشیو}} -o{{مسیر دایرکتوری خروجی}}` + +- خارج کردن یک فایل از حالت آرشیو و انتقال آن به 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/cd.md b/pages.fa/common/cd.md index e78fa0b9e23a8c..60fadaaffdaadb 100644 --- a/pages.fa/common/cd.md +++ b/pages.fa/common/cd.md @@ -1,7 +1,7 @@ # cd > تغییر دایرکتوری جاری. -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . - تغییر مسیربه دایرکتوری مشخص شده: diff --git a/pages.fa/common/time.md b/pages.fa/common/time.md index 383c305e27f748..80cf94b3784408 100644 --- a/pages.fa/common/time.md +++ b/pages.fa/common/time.md @@ -1,6 +1,7 @@ # time > نمایش زمان اجرای یک دستور. +> اطلاعات بیشتر: . - نمایش زمان اجرای دستور `ls`: diff --git a/pages.fa/common/unclutter.md b/pages.fa/common/unclutter.md index eb831a8f20e2a7..603e820184ec67 100644 --- a/pages.fa/common/unclutter.md +++ b/pages.fa/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > مخفی کردن نشان ماوس. +> اطلاعات بیشتر: . - مخفی کردن نشان ماوس بعد از 3 ثانیه: diff --git a/pages.fa/common/view.md b/pages.fa/common/view.md index 70a0fe685e7ed9..7d094731f385f1 100644 --- a/pages.fa/common/view.md +++ b/pages.fa/common/view.md @@ -2,6 +2,7 @@ > نسخه فقط خواندنی vim. > معادل vim -R. +> اطلاعات بیشتر: . - باز کردن فایل: diff --git a/pages.fa/common/whereis.md b/pages.fa/common/whereis.md new file mode 100644 index 00000000000000..128f97c72c7289 --- /dev/null +++ b/pages.fa/common/whereis.md @@ -0,0 +1,28 @@ +# whereis + +> پیداکردن فایل اجرایی، سورس، صفحه راهنما برای یک دستور. +> اطلاعات بیشتر: . + +- پیداکردن فایل اجرایی، سورس و صفحه راهنما برای ssh: + +`whereis {{ssh}}` + +- پیداکردن فایل اجرایی و صفحه راهنما برای ls: + +`whereis -bm {{ls}}` + +- پیداکردن سورس برای gcc و صفحه راهنما برای git: + +`whereis -s {{gcc}} -m {{git}}` + +- پیداکردن فایل اجرایی برای gcc در مسیر `/usr/bin/`: + +`whereis -b -B {{/usr/bin/}} -f {{gcc}}` + +- پیدا کردن فایل های اجرایی غیر عادی(برای آنهایی که بیشتر از یک فایل اجرایی در سیستم دارند): + +`whereis -u *` + +- پیدا کردن صفحات راهنمای غیر عادی(برای آنهایی که بیشتر از یک فایل اجرایی در سیستم دارند): + +`whereis -u -m *` diff --git a/pages.fa/linux/whatis.md b/pages.fa/linux/whatis.md index 74b5e6ae665b1e..bad1ee8f9b35c6 100644 --- a/pages.fa/linux/whatis.md +++ b/pages.fa/linux/whatis.md @@ -1,6 +1,7 @@ # whatis > نمایش توضیحات یک خطی از صفحات راهنما. +> اطلاعات بیشتر: . - نمایش توضیحات یک دستور از صفحات راهنما: diff --git a/pages.fa/linux/where.md b/pages.fa/linux/where.md new file mode 100644 index 00000000000000..576a647195bab3 --- /dev/null +++ b/pages.fa/linux/where.md @@ -0,0 +1,7 @@ +# where + +> نمایش محل فایل باینری یا اجرایی یک دستور در لینوکس. + +- نمایش محل فایل اجرایی یک دستور: + +`where {{command}}` diff --git a/pages.fa/linux/whereis.md b/pages.fa/linux/whereis.md deleted file mode 100644 index cb0d562ccb1c6a..00000000000000 --- a/pages.fa/linux/whereis.md +++ /dev/null @@ -1,27 +0,0 @@ -# whereis - -> پیداکردن فایل اجرایی، سورس، صفحه راهنما برای یک دستور. - -- پیداکردن فایل اجرایی، سورس و صفحه راهنما برای ssh: - -`whereis {{ssh}}` - -- پیداکردن فایل اجرایی و صفحه راهنما برای ls: - -`whereis -bm {{ls}}` - -- پیداکردن سورس برای gcc و صفحه راهنما برای git: - -`whereis -s {{gcc}} -m {{git}}` - -- پیداکردن فایل اجرایی برای gcc در مسیر `/usr/bin/`: - -`whereis -b -B {{/usr/bin/}} -f {{gcc}}` - -- پیدا کردن فایل های اجرایی غیر عادی(برای آنهایی که بیشتر از یک فایل اجرایی در سیستم دارند): - -`whereis -u *` - -- پیدا کردن صفحات راهنمای غیر عادی(برای آنهایی که بیشتر از یک فایل اجرایی در سیستم دارند): - -`whereis -u -m *` diff --git a/pages.fa/linux/yum.md b/pages.fa/linux/yum.md index c1cbdf90ca4945..29c255d1efd572 100644 --- a/pages.fa/linux/yum.md +++ b/pages.fa/linux/yum.md @@ -1,7 +1,7 @@ # yum > ابزار مدیریت بسته برای ردهت، فدورا و سنت اواس(برای نسخه های قدیمی). -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . - نصب یک بسته: diff --git a/pages.fa/windows/cls.md b/pages.fa/windows/cls.md index 6d468aab3b24a6..3ef04ad550bd1c 100644 --- a/pages.fa/windows/cls.md +++ b/pages.fa/windows/cls.md @@ -1,7 +1,7 @@ # cls > پاک کردن صفحه. -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . - پاک کردن صفحه: diff --git a/pages.fa/windows/type.md b/pages.fa/windows/type.md index 78bb8def7440ba..131cdab011ae39 100644 --- a/pages.fa/windows/type.md +++ b/pages.fa/windows/type.md @@ -1,7 +1,7 @@ # type > نمایش محتویات فایل. -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . - نمایش محتویات فایل مشخص شده: diff --git a/pages.fa/windows/ver.md b/pages.fa/windows/ver.md index 17b81e0b6d1fa9..0654d71525c4ea 100644 --- a/pages.fa/windows/ver.md +++ b/pages.fa/windows/ver.md @@ -1,7 +1,7 @@ # ver > نمایش شماره نسخه ویندوز یا داس. -> اطلاعات بیشتر: . +> اطلاعات بیشتر: . - نمایش شماره نسخه: diff --git a/pages.fr/android/am.md b/pages.fr/android/am.md new file mode 100644 index 00000000000000..8db2ed1e84de0f --- /dev/null +++ b/pages.fr/android/am.md @@ -0,0 +1,20 @@ +# am + +> Manager d'activité Android. +> Plus d'informations : . + +- Commence une activité spécifique : + +`am start -n {{com.android.settings/.Settings}}` + +- Commence une activité et insère de la donnée : + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Commence une activité qui correspond à une action et une catégorie spécifique : + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Convertis une intention en URI : + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.fr/android/bugreport.md b/pages.fr/android/bugreport.md new file mode 100644 index 00000000000000..746cc662bea970 --- /dev/null +++ b/pages.fr/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Affiche un rapport de bug Android. +> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Plus d'informations : . + +- Affiche un rapport de bug d'un appareil Android : + +`bugreport` diff --git a/pages.fr/android/bugreportz.md b/pages.fr/android/bugreportz.md new file mode 100644 index 00000000000000..7db27267c6e98d --- /dev/null +++ b/pages.fr/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Génère une archive d'un rapport de bug Android. +> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Plus d'informations : . + +- Génère une archive à partir d'un rapport de bug d'un appareil Android : + +`bugreportz` + +- Affiche la progression courante d'une opération `bugreportz` : + +`bugreportz -p` + +- Affiche la version de `bugreportz` : + +`bugreportz -v` + +- Affiche l'aide : + +`bugreportz -h` diff --git a/pages.fr/android/cmd.md b/pages.fr/android/cmd.md new file mode 100644 index 00000000000000..5b8ab12b7e291e --- /dev/null +++ b/pages.fr/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Manager de service Android. +> Plus d'informations : . + +- Liste tous les services en cours d'exécution : + +`cmd -l` + +- Appelle un service spécifique : + +`cmd {{alarm}}` + +- Appelle un service avec des arguments : + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.fr/android/dalvikvm.md b/pages.fr/android/dalvikvm.md new file mode 100644 index 00000000000000..8865e41a78374b --- /dev/null +++ b/pages.fr/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Machine virtuelle Java pour Android. +> Plus d'informations : . + +- Démarre un programme Java : + +`dalvikvm -classpath {{chemin/vers/fichier.jar}} {{nom_de_la_classe}}` diff --git a/pages.fr/android/dumpsys.md b/pages.fr/android/dumpsys.md new file mode 100644 index 00000000000000..8a09a732479f05 --- /dev/null +++ b/pages.fr/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Fourni des informations sur les services du système Android. +> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Plus d'informations : . + +- Récupère un diagnostic pour chaque service système : + +`dumpsys` + +- Récupère un diagnostic pour un service système spécifique : + +`dumpsys {{service}}` + +- Liste tous les services dont `dumpsys` peut donner les informations : + +`dumpsys -l` + +- Liste les arguments spécifiques d'un service : + +`dumpsys {{service}} -h` + +- Exclus un service spécifique d'un diagnostic : + +`dumpsys --skip {{service}}` + +- Spécifie un temps limite en secondes (10s par défault) : + +`dumpsys -t {{seconds}}` diff --git a/pages.fr/android/getprop.md b/pages.fr/android/getprop.md new file mode 100644 index 00000000000000..03a05281aa0699 --- /dev/null +++ b/pages.fr/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Affiche les informations des propriétés système Android. +> Plus d'informations : . + +- Affiche les informations des propriétés système Android : + +`getprop` + +- Affiche les informations d'une propriété spécifique : + +`getprop {{prop}}` + +- Affiche le niveau API du SDK : + +`getprop {{ro.build.version.sdk}}` + +- Affiche la version d'Android : + +`getprop {{ro.build.version.release}}` + +- Affiche le modèle de l'appareil Android : + +`getprop {{ro.vendor.product.model}}` + +- Affiche le status du déblocage OEM : + +`getprop {{ro.oem_unlock_supported}}` + +- Affiche l'adresse MAC de la carte Wi-FI Android : + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.fr/android/input.md b/pages.fr/android/input.md new file mode 100644 index 00000000000000..9ea812811daf27 --- /dev/null +++ b/pages.fr/android/input.md @@ -0,0 +1,26 @@ +# 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`. +> Plus d'informations : . + +- Envoie un code événement (un seul caractère) à un appareil Android : + +`input keyevent {{event_code}}` + +- Envoie du texte à un appareil Android (`%s` représentant les espaces) : + +`input text "{{text}}"` + +- Envoie un tapotement (tap) à un appareil Android : + +`input tap {{x_pos}} {{y_pos}}` + +- Envoie un mouvement de swipe à un appareil Android : + +`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duration_in_ms}}` + +- Envoie un appui long à un appareil Android en utilisant un mouvement de swipe : + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duration_in_ms}}` diff --git a/pages.fr/android/logcat.md b/pages.fr/android/logcat.md new file mode 100644 index 00000000000000..a552b7c38bc3da --- /dev/null +++ b/pages.fr/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Exporte une log depuis les messages système. +> Plus d'informations : . + +- Affiche la journalisation système : + +`logcat` + +- Écris la journalisation système dans un fichier : + +`logcat -f {{chemin/vers/fichier}}` + +- Affiche les lignes qui correspondent à une expression régulière : + +`logcat --regex {{expression_régulière}}` diff --git a/pages.fr/android/pkg.md b/pages.fr/android/pkg.md new file mode 100644 index 00000000000000..e4965c5171ba3e --- /dev/null +++ b/pages.fr/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Utilitaire de gestion de paquets pour Termux. +> Plus d'informations : . + +- Mets à jour tous les paquets déjà installés : + +`pkg upgrade` + +- Installe un paquet : + +`pkg install {{paquet}}` + +- Désinstalle un paquet : + +`pkg uninstall {{paquet}}` + +- Réinstalle un paquet : + +`pkg reinstall {{paquet}}` + +- Cherche un paquet : + +`pkg search {{paquet}}` diff --git a/pages.fr/android/pm.md b/pages.fr/android/pm.md new file mode 100644 index 00000000000000..8e624e4498d5ca --- /dev/null +++ b/pages.fr/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Afficher des informations sur les applications d'un appareil Android. +> Plus d'informations : . + +- Affiche la liste des applications installées : + +`pm list packages` + +- Affiche une liste de toutes les applications système instalées : + +`pm list packages -s` + +- Affiche une liste de toutes les applications tierces : + +`pm list packages -3` + +- Affiche une liste des applications qui correspondent à des mots clés : + +`pm list packages {{mots_clés}}` + +- Affiche le chemin vers l'APK d'une application spécifique : + +`pm path {{application}}` diff --git a/pages.fr/android/screencap.md b/pages.fr/android/screencap.md new file mode 100644 index 00000000000000..d60a113ac17fe4 --- /dev/null +++ b/pages.fr/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Prenez une capture d'écran d'un écran mobile. +> Cette commande ne peut être utilisée que via `adb shell`. +> Plus d'informations : . + +- Prendre une capture d'écran : + +`screencap {{chemin/vers/fichier}}` diff --git a/pages.fr/android/settings.md b/pages.fr/android/settings.md new file mode 100644 index 00000000000000..e9234d1f1c47b9 --- /dev/null +++ b/pages.fr/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Récupère les informations du système d'exploitation Android. +> Plus d'informations : . + +- Affiche une liste des paramètres de l'espace de nom `global` : + +`settings list {{global}}` + +- Récupère la valeur d'un paramètre : + +`settings get {{global}} {{airplane_mode_on}}` + +- Assigne une valeur à un paramètre : + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Supprime un paramètre : + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.fr/android/wm.md b/pages.fr/android/wm.md new file mode 100644 index 00000000000000..bef29d02d3aa97 --- /dev/null +++ b/pages.fr/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Affiche les informations de l'écran d'un appareil Android. +> Cette commande peut être utilisé uniquement depuis `adb shell`. +> Plus d'informations : . + +- Affiche la taille physique de l'écran d'un appareil Android : + +`wm {{size}}` + +- Affiche la densité physique de l'écran d'un appareil Android : + +`wm {{density}}` diff --git a/pages.fr/common/2to3.md b/pages.fr/common/2to3.md new file mode 100644 index 00000000000000..99efc470f4e9e4 --- /dev/null +++ b/pages.fr/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> Conversion automatisé de code python 2 vers 3. +> Plus d'informations : . + +- Afficher les changements qui seront effectués sans les effectuer (coup d'essai) : + +`2to3 {{chemin/vers/fichier.py}}` + +- Convertir un fichier Python 2 en Python 3 : + +`2to3 --write {{chemin/vers/fichier.py}}` + +- Convertir des fonctionnalités spécifiques de Python 2 vers Python 3 : + +`2to3 --write {{chemin/vers/fichier.py}} --fix={{raw_input}} --fix={{print}}` + +- Convertir toutes les fonctionnalités de Python 2 vers Python 3 sauf exceptions spécifiques : + +`2to3 --write {{chemin/vers/fichier.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- Afficher une liste de toutes les fonctionnalités de language qui peuvent être converties de Python 2 vers Python 3 : + +`2to3 --list-fixes` + +- Convertir tous les fichier Python2 vers Python 3 dans un dossier : + +`2to3 --output-dir={{chemin/vers/dossier_python3}} --write-unchanged-files --nobackups {{chemin/vers/dossier_python2}}` + +- Executer 2to3 avec plusieurs fil d'exécution : + +`2to3 --processes={{4}} --output-dir={{chemin/vers/dossier_python3}} --write --nobackups --no-diff {{chemin/vers/dossier_python2}}` diff --git a/pages.fr/common/7z.md b/pages.fr/common/7z.md index 0480704df73e68..80c15d33358a17 100644 --- a/pages.fr/common/7z.md +++ b/pages.fr/common/7z.md @@ -1,36 +1,36 @@ # 7z > Un archiveur de fichiers avec un haut taux de compression. -> Plus d'informations : . +> Plus d'informations : . -- Compresser un fichier ou un dossier : +- Compresser un fichier ou un dossier : `7z a {{archive.7z}} {{chemin/vers/fichier_ou_dossier}}` -- Chiffrer une archive existente (en incluant les en-têtes) : +- Chiffrer une archive existante (en incluant les en-têtes) : `7z a {{archive_chiffree.7z}} -p{{motdepasse}} -mhe=on {{archive.7z}}` -- Extraire un fichier 7z existant en conservant l'arborescence des fichiers : +- Extraire un fichier 7z existant en conservant l'arborescence des fichiers : `7z x {{archive.7z}}` -- Extraire une archive vers la destination donnée : +- Extraire une archive vers la destination donnée : `7z x {{archive.7z}} -o{{chemin/vers/destination}}` -- Extraire une archive vers la sortie standard : +- Extraire une archive vers la sortie standard : `7z x {{archive.7z}} -so` -- Archiver en utilisant un algorithme de compression particulier : +- Archiver en utilisant un algorithme de compression particulier : -`7z a -t{{zip|gzip|bzip2|tar}} {{archive.7z}} {{chemin/vers/fichier_ou_dossier}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{archive.7z}} {{chemin/vers/fichier_ou_dossier}}` -- Lister les types d'archives disponibles : +- Lister les types d'archives disponibles : `7z i` -- Lister le contenu d'une archive : +- Lister le contenu d'une archive : `7z l {{archive.7z}}` diff --git a/pages.fr/common/7za.md b/pages.fr/common/7za.md new file mode 100644 index 00000000000000..10a4315b14b5ea --- /dev/null +++ b/pages.fr/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> 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 : . + +- Compresse un fichier ou un dossier : + +`7za a {{chemin/vers/archive.7z}} {{chemin/vers/file_or_directory}}` + +- Chiffre une archive existante (en incluant les en-têtes) : + +`7za a {{chemin/vers/archive_chiffree.7z}} -p{{motdepasse}} -mhe=on {{chemin/vers/archive.7z}}` + +- Extrait une archive en conservant l'arborescence des fichiers : + +`7za x {{chemin/vers/archive.7z}}` + +- Extrait une archive vers un dossier specifique : + +`7za x {{chemin/vers/archive.7z}} -o{{chemin/vers/la/sortie}}` + +- Extrait une archive vers sortie standard : + +`7za x {{chemin/vers/archive.7z}} -so` + +- Compresse en utilisant une compression spécifique : + +`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{chemin/vers/archive.7z}} {{chemin/vers/le/fichier_ou_dossier}}` + +- Liste le contenu d'une archive : + +`7za l {{chemin/vers/archive.7z}}` + +- Liste les types de compression disponible : + +`7za i` diff --git a/pages.fr/common/7zr.md b/pages.fr/common/7zr.md new file mode 100644 index 00000000000000..fd535cd0c453de --- /dev/null +++ b/pages.fr/common/7zr.md @@ -0,0 +1,33 @@ +# 7zr + +> Un archiveur de fichiers avec un haut taux de compression. +> Similaire à `7z` sauf qu'il supporte que les fichiers `.7z`. +> Plus d'informations : . + +- Compresse un fichier ou un dossier : + +`7zr a {{chemin/vers/archive.7z}} {{chemin/vers/le/fichier_ou_dossier}}` + +- 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}}` + +- Extrait une archive en conservant l'arborescence des fichiers : + +`7zr x {{chemin/vers/archive.7z}}` + +- Extrait une archive vers un dossier specifique : + +`7zr x {{chemin/vers/archive.7z}} -o{{chemin/vers/la/sortie}}` + +- Extrait une archive vers sortie standard : + +`7zr x {{chemin/vers/archive.7z}} -so` + +- Liste le contenu d'une archive : + +`7zr l {{chemin/vers/archive.7z}}` + +- Liste les types de compression disponible : + +`7zr i` diff --git a/pages.fr/common/aapt.md b/pages.fr/common/aapt.md new file mode 100644 index 00000000000000..8a0646a49b70d7 --- /dev/null +++ b/pages.fr/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Android Asset Packaging Tool. +> Compile et empaquette les ressources d'une application Android. +> Plus d'informations : . + +- Liste les fichiers contenus une archive APK : + +`aapt list {{chemin/vers/app.apk}}` + +- Affiche les metadatas d'une application (version, autorisations, etc.) : + +`aapt dump badging {{chemin/vers/app.apk}}` + +- Créé une nouvelle archive APK avec les fichiers venant d'un dossier spécifique : + +`aapt package -F {{chemin/vers/app.apk}} {{chemin/vers/le/dossier}}` diff --git a/pages.fr/common/ab.md b/pages.fr/common/ab.md new file mode 100644 index 00000000000000..cf5e9a7b16683f --- /dev/null +++ b/pages.fr/common/ab.md @@ -0,0 +1,24 @@ +# ab + +> Outil d'analyse pour serveur Apache HTTP. +> Plus d'informations : . + +- Exécute 100 requêtes HTTP GET sur une URL donnée : + +`ab -n {{100}} {{url}}` + +- Exécute 100 requêtes HTTP GET en parallèle par groupe de 10, sur une URL : + +`ab -n {{100}} -c {{10}} {{url}}` + +- Exécute 100 requêtes HTTP POST sur une URL, en utilisant un contenu JSON depuis un fichier : + +`ab -n {{100}} -T {{application/json}} -p {{chemin/vers/le/fichier.json}} {{url}}` + +- Utilise la fonctionalitée HTTP Keep Alive pour exécuter plusieurs requêtes dans la même session HTTP : + +`ab -k {{url}}` + +- Fixe le nombre maximum de secondes d'exécution pour l'analyse : + +`ab -t {{60}} {{url}}` diff --git a/pages.fr/common/abduco.md b/pages.fr/common/abduco.md new file mode 100644 index 00000000000000..fd41f6517ae378 --- /dev/null +++ b/pages.fr/common/abduco.md @@ -0,0 +1,24 @@ +# abduco + +> Manageur de session dans un terminal. +> Plus d'informations : . + +- Affiche les sessions : + +`abduco` + +- Rejoint une session, la crée si elle n'existe pas : + +`abduco -A {{nom}} {{bash}}` + +- Rejoint une session avec `dvtm`, la crée si elle n'existe pas : + +`abduco -A {{name}}` + +- Quitte la session courante : + +`Ctrl + \` + +- Rejoint une session en mode lecture seule : + +`abduco -Ar {{name}}` diff --git a/pages.fr/common/ack.md b/pages.fr/common/ack.md new file mode 100644 index 00000000000000..cb8f5a3d5627ea --- /dev/null +++ b/pages.fr/common/ack.md @@ -0,0 +1,37 @@ +# ack + +> Un outil de recherche comme grep, optimisé pour les développeurs. +> Regardez aussi : `rg`, qui est beaucoup plus rapide. +> Plus d'informations : . + +- Recherche des fichiers contenant une chaine de caractère ou une expression régulière dans le répertoire courant récursivement : + +`ack "{{motif_de_recherche}}"` + +- Recherche pour un motif insensible à la casse : + +`ack --ignore-case "{{motif_de_recherche}}"` + +- Recherche les lignes qui correspondent à un motif, affiche uniquement les textes correspondants et pas le reste de la ligne : + +`ack -o "{{motif_de_recherche}}"` + +- Limite la recherche aux fichiers d'un certain type : + +`ack --type={{ruby}} "{{motif_de_recherche}}"` + +- Exlcus un certain type de fichier de la recherche : + +`ack --type=no{{ruby}} "{{motif_de_recherche}}"` + +- Compte le nombre total de correspondances : + +`ack --count --no-filename "{{motif_de_recherche}}"` + +- Affiche les noms et le nombre total de correspondances pour chaque fichiers : + +`ack --count --files-with-matches "{{motif_de_recherche}}"` + +- Affiche toutes les valeurs qui peuvent être utilisées avec `--type` : + +`ack --help-types` diff --git a/pages.fr/common/acme.sh.md b/pages.fr/common/acme.sh.md new file mode 100644 index 00000000000000..2b1f7a1a23a5ab --- /dev/null +++ b/pages.fr/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> Script shell implémentant le protocole client ACME, une alternative à certbot. +> Voir aussi `acme.sh dns`. +> Plus d'informations : . + +- Publie un certificat en utilisant le mode webroot : + +`acme.sh --issue --domain {{exemple.com}} --webroot {{/chemin/vers/webroot}}` + +- Publie un certificat pour plusieurs domaines en utilisant le mode autonome avec le port 80 : + +`acme.sh --issue --standalone --domain {{exemple.com}} --domain {{www.exemple.com}}` + +- Publie un certificat en utilisant le mode autonome TLS avec le port 443 : + +`acme.sh --issue --alpn --domain {{exemple.com}}` + +- Publie un certificat en utilisant une configuration Nginx : + +`acme.sh --issue --nginx --domain {{exemple.com}}` + +- Publie un certificat en utilisant une configuration Apache : + +`acme.sh --issue --apache --domain {{exemple.com}}` + +- Publie un certificat wildcard (\*) en utilisant le mode automatique DNS API : + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.exemple.com}}` + +- Installe les fichiers de certificat dans un dossier spécifique (Utile pour les renouvellements automatiques de certificat) : + +`acme.sh --install-cert -d {{exemple.com}} --key-file {{/chemin/vers/exemple.com.key}} --fullchain-file {{/chemin/vers/exemple.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages.fr/common/act.md b/pages.fr/common/act.md new file mode 100644 index 00000000000000..faf0da480679ca --- /dev/null +++ b/pages.fr/common/act.md @@ -0,0 +1,28 @@ +# act + +> Execute des GitHub Actions en local avec Docker. +> Plus d'informations : . + +- Liste les actions disponibles : + +`act -l` + +- Execute l'événement par défault : + +`act` + +- Execute un événement spécifique : + +`act {{type_d_événement}}` + +- Execute une action spécifique : + +`act -a {{id_action}}` + +- Ne pas lancer les actions maintenant (e.g un essai) : + +`act -n` + +- Affiche le journal en mode verbeux : + +`act -v` diff --git a/pages.fr/common/acyclic.md b/pages.fr/common/acyclic.md new file mode 100644 index 00000000000000..0870da78a5a65d --- /dev/null +++ b/pages.fr/common/acyclic.md @@ -0,0 +1,17 @@ +# acyclic + +> Construit un graphe orienté acyclique en inversant quelques sommets. +> Filtres Graphviz : `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> Plus d'informations : . + +- Construit un graphe orienté acyclique en inversant quelques sommets : + +`acyclic {{chemin/vers/entrée.gv}} > {{chemin/vers/sortie.gv}}` + +- Affiche si un graphe est acyclique, possède une boucle ou est non-dirigé, ne produit pas de graphe en sortie : + +`acyclic -v -n {{chemin/vers/entrée.gv}}` + +- Affiche l'aide d' `acyclic` : + +`acyclic -?` diff --git a/pages.fr/common/adb-install.md b/pages.fr/common/adb-install.md new file mode 100644 index 00000000000000..0144b421596125 --- /dev/null +++ b/pages.fr/common/adb-install.md @@ -0,0 +1,28 @@ +# adb install + +> Android Debug Bridge Install: Pousse des paquets vers une instance d'émulateur Android ou un appareil Android. +> Plus d'informations : . + +- Pousse une application Android vers l'émulateur/l'appareil : + +`adb install {{chemin/vers/le/fichier.apk}}` + +- Pousse une application Android vers l'émulateur/l'appareil spécifique via son numéro de série (écrase la variable `$ANDROID_SERIAL`): + +`adb -s {{numero_de_serie}} install {{chemin/vers/le/fichier.apk}}` + +- Réinstalle une application existante, tout en gardant ses données : + +`adb install -r {{chemin/vers/le/fichier.apk}}` + +- Pousse une application Android en autorisant la rétrogradation de version (uniquement pour les paquets debuggable) : + +`adb install -d {{chemin/vers/le/fichier.apk}}` + +- Accorde toutes les permissions listées dans le manifeste de l'application : + +`adb install -g {{chemin/vers/le/fichier.apk}}` + +- Mets à jour rapidement un paquet en mettant à jour uniquement les parties de l'APK qui ont changé : + +`adb install --fastdeploy {{chemin/vers/le/fichier.apk}}` diff --git a/pages.fr/common/adb-logcat.md b/pages.fr/common/adb-logcat.md new file mode 100644 index 00000000000000..dc3489c40d1a40 --- /dev/null +++ b/pages.fr/common/adb-logcat.md @@ -0,0 +1,28 @@ +# adb-logcat + +> Jeter une log des messages systèmes. +> Plus d'informations : . + +- Affiche les logs systèmes : + +`adb logcat` + +- Affiche les logs qui correspond à une expression régulière : + +`adb logcat -e {{expression_régulière}}` + +- Affiche les logs pour un tag donné, dans un mode spécifique ([V]erbose, [D]ebug, [I]nfo, [W]arning, [E]rror, [F]atal, [S]ilent) : + +`adb logcat {{tag}}:{{mode}} *:S` + +- Affiche les logs pour des applications React Native en mode [V]erbose et mes sous [S]ilence les autres tags : + +`adb logcat ReactNative:V ReactNativeJS:V *:S` + +- Affiche les logs avec un niveau de priorité supérieur à [W]arning : + +`adb logcat *:W` + +- Colorie les logs (souvent utilisé avec des filtres) : + +`adb logcat -v color` diff --git a/pages.fr/common/adb-reverse.md b/pages.fr/common/adb-reverse.md new file mode 100644 index 00000000000000..979cece883ff43 --- /dev/null +++ b/pages.fr/common/adb-reverse.md @@ -0,0 +1,20 @@ +# adb reverse + +> Android Debug Bridge Reverse: Transfère des connections réseaux depuis une instance d'émulateur Android ou un appareil Android. +> Plus d'informations : . + +- Affiche la liste de toutes les connections réseaux qui sont transféré depuis les émulateurs ou les appareils : + +`adb reverse --list` + +- Transfère un port TCP depuis un émulateur ou un appareil vers localhost : + +`adb reverse tcp:{{port_distant}} tcp:{{port_local}}` + +- Supprime une connection socket en cours depuis un émulateur ou un appareil : + +`adb reverse --remove tcp:{{port_distant}}` + +- Supprime toutes les connections socket depuis tous les émulateurs et appareils : + +`adb reverse --remove-all` diff --git a/pages.fr/common/adb-shell.md b/pages.fr/common/adb-shell.md new file mode 100644 index 00000000000000..16bde57ac02b5e --- /dev/null +++ b/pages.fr/common/adb-shell.md @@ -0,0 +1,36 @@ +# adb shell + +> Android Debug Bridge Shell: Exécute une commande shell sur une instance d'émulateur Android ou un appareil Android. +> Plus d'informations : . + +- Démarre une session shell interactive sur l'émulateur/l'appareil : + +`adb shell` + +- Récupère toutes les propriétés depuis un émulateur ou un appareil : + +`adb shell getprop` + +- Remet toutes les permissions courante à leurs valeurs par défaut : + +`adb shell pm reset-permissions` + +- Révoque une permission dangereuse pour une application : + +`adb shell pm revoke {{paquet}} {{permission}}` + +- Déclenche un événement clé : + +`adb shell input keyevent {{code}}` + +- Nettoie les données d'une application sur un émulateur ou un appareil : + +`adb shell pm clear {{paquet}}` + +- Démarre une activité sur un émulateur ou un appareil : + +`adb shell am start -n {{paquet}}/{{activité}}` + +- Démarre une activité maison depuis un émulateur ou un appareil : + +`adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.fr/common/adb.md b/pages.fr/common/adb.md new file mode 100644 index 00000000000000..0ba2a7933d4983 --- /dev/null +++ b/pages.fr/common/adb.md @@ -0,0 +1,33 @@ +# adb + +> Android Debug Bridge: Communiquer avec une instance d'émulateur Android ou un appareil Android. +> Certaines commandes comme `adb shell` ont leur propre documentation. +> Plus d'informations : . + +- Vérifie si le processus du serveur adb est en fonctionnement et le démarre : + +`adb start-server` + +- Arrête le processus du serveur adb : + +`adb kill-server` + +- Démarre un shell distant sur l'émulateur/l'appareil ciblé : + +`adb shell` + +- Pousse une application Android vers l'émulateur/l'appareil : + +`adb install -r {{chemin/vers/le/fichier.apk}}` + +- Copie un fichier/dossier depuis l'appareil ciblé : + +`adb pull {{chemin/vers/le/fichier_ou_dossier_de_l'appareil}} {{chemin/vers/le/dossier_de_destination_local}}` + +- Copie un fichier/dossier vers l'appareil ciblé : + +`adb push {{chemin/vers/le/fichier_ou_dossier_local}} {{chemin/vers/le/dossier_de_destination_de_l'appareil}}` + +- Récupère une liste des appareils connectés : + +`adb devices` diff --git a/pages.fr/common/adguardhome.md b/pages.fr/common/adguardhome.md new file mode 100644 index 00000000000000..f4048b0ff0215f --- /dev/null +++ b/pages.fr/common/adguardhome.md @@ -0,0 +1,32 @@ +# AdGuardHome + +> Un logiciel réseau pour bloquer les pubs et les traqueurs. +> Plus d'informations : . + +- Lance AdGuard Home : + +`AdGuardHome` + +- Lance AdGuard Home avec une configuration spécifique : + +`AdGuardHome --config {{chemin/vers/AdGuardHome.yaml}}` + +- Configure le répertoire de travail où les données seront stockées : + +`AdGuardHome --work-dir {{chemin/vers/répertoire}}` + +- Installe ou désinstalle AdGuard Home comme un service : + +`AdGuardHome --service {{install|uninstall}}` + +- Démarre le service AdGuard Home : + +`AdGuardHome --service start` + +- Recharge la configuration pour le service AdGuard Home : + +`AdGuardHome --service reload` + +- Éteint ou redémarre le service AdGuard Home : + +`AdGuardHome --service {{stop|restart}}` diff --git a/pages.fr/common/adscript.md b/pages.fr/common/adscript.md new file mode 100644 index 00000000000000..d8a29435c0bbb9 --- /dev/null +++ b/pages.fr/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> Compilateur pour fichiers Adscript. +> Plus d'informations : . + +- Compile un fichier vers un fichier objet : + +`adscript --output {{chemin/vers/fichier.o}} {{chemin/vers/fichier_source.adscript}}` + +- Compile et lie un fichier vers un exécutable autonome : + +`adscript --executable --output {{chemin/vers/fichier}} {{chemin/vers/fichier_source.adscript}}` + +- Compile un fichier vers LLVM IR à la place du code machine natif : + +`adscript --llvm-ir --output {{chemin/vers/fichier.ll}} {{chemin/vers/fichier_source.adscript}}` + +- Fait une compilation croisée d'un fichier vers un fichier objet pour une architecture CPU ou un système d'exploitation distant : + +`adscript --target-triple {{i386-linux-elf}} --output {{chemin/vers/fichier.o}} {{chemin/vers/fichier_source.adscript}}` diff --git a/pages.fr/common/ag.md b/pages.fr/common/ag.md new file mode 100644 index 00000000000000..cbe92fa9c1b6cb --- /dev/null +++ b/pages.fr/common/ag.md @@ -0,0 +1,32 @@ +# ag + +> The Silver Searcher. Comme ack, mais inspire à être plus rapide. +> Plus d'informations : . + +- Trouve les fichiers qui contiennent "foo", et affiche les lignes correspondantes dans le contexte courant : + +`ag {{foo}}` + +- Trouve les fichiers qui contiennent "foo" dans un dossier spécifique : + +`ag {{foo}} {{chelin/vers/dossier}}` + +- Trouve les fichiers qui contiennent "foo", mais affiche les nom de fichier uniquement : + +`ag -l {{foo}}` + +- Trouve les fichiers qui contiennent "FOO" en étant insensible à la casse et affiche que le premier résultat plutôt que la ligne entière : + +`ag -i -o {{FOO}}` + +- Trouve "foo" dans les fichiers avec un nom contenant "bar" : + +`ag {{foo}} -G {{bar}}` + +- Trouve des fichiers dont le contenu correspond à une expression régulière : + +`ag '{{^ba(r|z)$}}'` + +- Trouve les fichiers avec un nom contenant "foo" : + +`ag -g {{foo}}` diff --git a/pages.fr/common/agate.md b/pages.fr/common/agate.md new file mode 100644 index 00000000000000..ec06fc99f13667 --- /dev/null +++ b/pages.fr/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> Un serveur simple pour le protocole réseau Gemini. +> Plus d'informations : . + +- Exécute et génère une clé privée et un certificat : + +`agate --content {{chemin/vers/contenu/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{exemple.com}} --lang {{fr-FR}}` + +- Lance le serveur : + +`agate {{chemin/vers/fichier}}` + +- Affiche l'aide : + +`agate -h` diff --git a/pages.fr/common/age.md b/pages.fr/common/age.md new file mode 100644 index 00000000000000..5574ae01e6c16b --- /dev/null +++ b/pages.fr/common/age.md @@ -0,0 +1,28 @@ +# age + +> Un outil de cryptage de fichiers simple, moderne et sécurisé. +> Plus d'informations : . + +- Générez un fichier crypté qui peut être décrypté avec une mot de passe: + +`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: + +`age-keygen --output {{chemin/vers/fichier}}` + +- Cryptage d'un fichier avec une ou plusieurs clés publiques qui sont entrées comme des littéraux: + +`age --recipient {{clé_publique_1}} --recipient {{clé_publique_2}} {{chemin/vers/fichier_non_crypté}} --output {{chemin/vers/fichier_crypté}}` + +- Cryptez un fichier avec une ou plusieurs clés publiques spécifiées dans un fichier de destinataires: + +`age --recipients-file {{chemin/vers/fichier_destinataire}} {{chemin/vers/fichier_non_crypté}} --output {{chemin/vers/fichier_crypté}}` + +- Déchiffrer un fichier avec un mot de passe: + +`age --decrypt --output {{chemin/vers/fichier_décrypté}} {{chemin/vers/fichier_crypté}}` + +- Decrypt a file with a private key file: + +`age --decrypt --identity {{chemin/vers/fichier_clé_privée}} --output {{chemin/vers/fichier_décrypté}} {{chemin/vers/fichier_crypté}}` diff --git a/pages.fr/common/airmon-ng.md b/pages.fr/common/airmon-ng.md new file mode 100644 index 00000000000000..c4c9bc8a1d245a --- /dev/null +++ b/pages.fr/common/airmon-ng.md @@ -0,0 +1,20 @@ +# airmon-ng + +> Active le mode surveillance sur les appareils sans fils. +> Plus d'informations : . + +- Liste les appareils sans fils et leurs statuts : + +`sudo airmon-ng` + +- Allume le mode surveillance sur un appareil spécifique : + +`sudo airmon-ng start {{wlan0}}` + +- Tue les processus nuisibles qui utilisent les appareils sans fils : + +`sudo airmon-ng check kill` + +- Éteint le mode surveillance pour une interface réseau spécifique : + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.fr/common/airpaste.md b/pages.fr/common/airpaste.md new file mode 100644 index 00000000000000..554ebfec592b91 --- /dev/null +++ b/pages.fr/common/airpaste.md @@ -0,0 +1,24 @@ +# airpaste + +> Partage des messages et des fichiers sur le même réseau en utilisant mDNS. +> Plus d'informations : . + +- Attend un message et l'affiche une fois reçu : + +`airpaste` + +- Envoie un message : + +`echo {{text}} | airpaste` + +- Envoie un fichier : + +`airpaste < {{chemin/vers/fichier}}` + +- Recevoir un fichier : + +`airpaste > {{chemin/vers/fichier}}` + +- Crée ou rejoins un canal : + +`airpaste {{nom_du_canal}}` diff --git a/pages.fr/common/ajson.md b/pages.fr/common/ajson.md new file mode 100644 index 00000000000000..f7a9cd9a665405 --- /dev/null +++ b/pages.fr/common/ajson.md @@ -0,0 +1,20 @@ +# ajson + +> Exécute un JSONPath sur un objet JSON. +> Plus d'informations : . + +- Lis un JSON depuis un fichier et exécute une expression JSONPath spécifique : + +`ajson '{{$..json[?(@.path)]}}' {{chemin/vers/fichier.json}}` + +- Lis un JSON depuis l'entrée standard et exécute une expression JSONPath spécifique : + +`cat {{chemin/vers/fichier.json}} | ajson '{{$..json[?(@.path)]}}'` + +- Lis un JSON depuis une URL et évalue une expression JSONPath spécifique : + +`ajson '{{avg($..price)}}' '{{https://exemple.com/api/}}'` + +- Lis un JSON simple et calcule une valeur : + +`echo '{{3}}' | ajson '{{2 * pi * $}}'` diff --git a/pages.fr/common/alacritty.md b/pages.fr/common/alacritty.md new file mode 100644 index 00000000000000..3ae7686e0d0543 --- /dev/null +++ b/pages.fr/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Emulateur de terminal propulsé par GPU, Multi-plateforme. +> Plus d'informations : . + +- Ouvre une nouvelle fenêtre Alacritty : + +`alacritty` + +- Lance dans un dossier spécifique : + +`alacritty --working-directory {{chemin/vers/dossier}}` + +- Lance une commande dans une nouvelle fenêtre Alacritty : + +`alacritty -e {{commande}}` + +- Utilise un autre fichier de configuration (le fichier par défault étant `$XDG_CONFIG_HOME/alacritty/alacritty.yml`) : + +`alacritty --config-file {{chemin/vers/config.yml}}` + +- Lance avec la mise à jour en live dès que la configuration est modifiée ( peu également être activé par défaut dans `alacritty.yml`) : + +`alacritty --live-config-reload --config-file {{chemin/vers/config.yml}}` diff --git a/pages.fr/common/alex.md b/pages.fr/common/alex.md new file mode 100644 index 00000000000000..75d498b03eddff --- /dev/null +++ b/pages.fr/common/alex.md @@ -0,0 +1,21 @@ +# alex + +> Un outil qui corrige les phrases insensible et inconsidérée (en Anglais uniquement). +> Il vous aide à trouver un genre, une polarité, une ethnie, un blasphème, ou autre inégalité en lisant un texte en anglais. +> Plus d'informations : . + +- Analyse un texte depuis l'entrée standard : + +`echo {{His network looks good}} | alex --stdin` + +- Analyse tous les fichiers dans le dossier courant : + +`alex` + +- Analyse un fichier spécifique : + +`alex {{fichiertexte.md}}` + +- Analyse tous les fichiers Markdown sauf `exemple.md` : + +`alex *.md !{{exemple.md}}` diff --git a/pages.fr/common/alias.md b/pages.fr/common/alias.md new file mode 100644 index 00000000000000..ad6296d31ba1c8 --- /dev/null +++ b/pages.fr/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> Créé des alias -- mots qui sont remplacés par une commande textuelle. +> Les alias expirent avec la session courante shell, sauf s'il a été défini dans le fichier de configuration shell, par exemple `~/.bashrc`. +> Plus d'informations : . + +- Liste tous les alias : + +`alias` + +- Crée un alias générique : + +`alias {{mot}}="{{commande}}"` + +- Affiche la commande associée à un alias donné : + +`alias {{mot}}` + +- Enlève un alias : + +`unalias {{mot}}` + +- Transforme `rm` en une commande intéractive : + +`alias {{rm}}="{{rm -i}}"` + +- Crée `la` comme un raccourci de `ls -a` : + +`alias {{la}}="{{ls -a}}"` diff --git a/pages.fr/common/amass-db.md b/pages.fr/common/amass-db.md new file mode 100644 index 00000000000000..49dfe26988d4be --- /dev/null +++ b/pages.fr/common/amass-db.md @@ -0,0 +1,20 @@ +# amass db + +> Intéragie avec une base de données Amass. +> Plus d'informations : . + +- Liste toutes les énumérations performées pas la base de données : + +`amass db -dir {{chemin/vers/dossier_de_la_base_de_données}} -list` + +- Affiche les résultats pour un index d'énumération et un nom de domaine spécifiés : + +`amass db -dir {{chemin/vers/dossier_de_la_base_de_données}} -d {{nom_de_domaine}} -enum {{index_depuis_la liste}} -show` + +- Liste tous les sous-domaines trouvés pour un domaine inclus dans une énumération : + +`amass db -dir {{chemin/vers/dossier_de_la_base_de_données}} -d {{nom_de_domaine}} -enum {{index_depuis_la liste}} -names` + +- Affiche un sommaire des sous-domaines inclus dans une énumération : + +`amass db -dir {{chemin/vers/dossier_de_la_base_de_données}} -d {{nom_de_domaine}} -enum {{index_depuis_la liste}} -summary` diff --git a/pages.fr/common/amass-enum.md b/pages.fr/common/amass-enum.md new file mode 100644 index 00000000000000..fa2833822192d7 --- /dev/null +++ b/pages.fr/common/amass-enum.md @@ -0,0 +1,24 @@ +# amass enum + +> Trouve les sous-domaines d'un domaine. +> Plus d'informations : . + +- Trouve les sous-domaines d'un domaine passivement : + +`amass enum -passive -d {{nom_de_domaine}}` + +- Trouve les sous-domaines d'un domaine et les verifie activement en essayant de résoudre les sous-domaines trouvés : + +`amass enum -active -d {{nom_de_domaine}} -p {{80,443,8080}}` + +- Fait recherche par force brute pour les sous-domaines : + +`amass enum -brute -d {{nom_de_domaine}}` + +- Sauvegarde les résultats vers un fichier texte : + +`amass enum -o {{fichier_de_sortie}} -d {{nom_de_domaine}}` + +- Sauvegarde les résultats dans une base de données : + +`amass enum -o {{fichier_de_sortie}} -dir {{chemin/vers/la_base_de_données}}` diff --git a/pages.fr/common/amass-intel.md b/pages.fr/common/amass-intel.md new file mode 100644 index 00000000000000..31df149669216e --- /dev/null +++ b/pages.fr/common/amass-intel.md @@ -0,0 +1,28 @@ +# amass intel + +> Collecte des renseignements open source sur une organisation comme les noms de domaines racine et les ASNs. +> Plus d'informations : . + +- Recherche les domaines racines inclus dans une plage d'adresse IP : + +`amass intel -addr {{192.168.0.1-254}}` + +- Utilise les méthodes de reconnaissance active : + +`amass intel -active -addr {{192.168.0.1-254}}` + +- Recherche les noms de domaines racines reliés à un domaine : + +`amass intel -whois -d {{nom_de_domaine}}` + +- Recherche les ASNs qui correspondent à une organisation : + +`amass intel -org {{nom_de_l_organisation}}` + +- Recherche les domaines racines qui correspondent à un ASN : + +`amass intel -asn {{asn}}` + +- Sauvegarde les résultats dans un fichier texte : + +`amass intel -o {{fichier_de_sortie}} -whois -d {{nom_de_domaine}}` diff --git a/pages.fr/common/amass-track.md b/pages.fr/common/amass-track.md new file mode 100644 index 00000000000000..20256c56b9e0b2 --- /dev/null +++ b/pages.fr/common/amass-track.md @@ -0,0 +1,12 @@ +# amass track + +> Traque les différences entre les énumérations d'un même domaine. +> Plus d'informations : . + +- Affiche la différence entre les deux dernières énumérations d'un domaine donné : + +`amass track -dir {{chemin/vers/la_base_de_données}} -d {{nom_de_domaine}} -last 2` + +- Affiche la différence entre un certain moment dans le temps et la dernière énumération : + +`amass track -dir {{chemin/vers/la_base_de_données}} -d {{nom_de_domaine}} -since {{01/02 15:04:05 2006 MST}}` diff --git a/pages.fr/common/amass-viz.md b/pages.fr/common/amass-viz.md new file mode 100644 index 00000000000000..59b496b0239a06 --- /dev/null +++ b/pages.fr/common/amass-viz.md @@ -0,0 +1,24 @@ +# amass viz + +> Visualise les informations recueillies dans graphique de réseau. +> Plus d'informations : . + +- Génère une visualisation D3.js basé sur la data de la base de données : + +`amass viz -d3 -dir {{chemin/vers/la_base_de_données}}` + +- Génère un fichier DOT basé sur la data de la base de données : + +`amass viz -dot -dir {{chemin/vers/la_base_de_données}}` + +- Génère un fichier GEXF basé sur la data de la base de données : + +`amass viz -gexf -dir {{chemin/vers/la_base_de_données}}` + +- Génère un fichier JSON Graphistry basé sur la data de la base de données : + +`amass viz -graphistry -dir {{chemin/vers/la_base_de_données}}` + +- Génère un fichier CSV Maltego basé sur la data de la base de données : + +`amass viz -maltego -dir {{chemin/vers/la_base_de_données}}` diff --git a/pages.fr/common/amass.md b/pages.fr/common/amass.md new file mode 100644 index 00000000000000..129443663c3610 --- /dev/null +++ b/pages.fr/common/amass.md @@ -0,0 +1,21 @@ +# amass + +> Outil de Cartographie des Attaques de Surface et découverte de ressource. +> Certaines commandes comme `amass db` ont leur propre documentation. +> Plus d'informations : . + +- Exécute une sous-commande Amass : + +`amass {{sous_commande}}` + +- Affiche l'aide général : + +`amass -help` + +- Affiche l'aide sur une sous-commande de Amass ( comme `intel`, `enum`, etc.) : + +`amass -help {{sous_commande}}` + +- Affiche la version : + +`amass -version` diff --git a/pages.fr/common/androguard.md b/pages.fr/common/androguard.md new file mode 100644 index 00000000000000..562de04da7ffdf --- /dev/null +++ b/pages.fr/common/androguard.md @@ -0,0 +1,16 @@ +# androguard + +> Outil d’ingénierie inverse pour les applications Android. Écrit en Python. +> Plus d'informations : . + +- Affiche le manifest d'application Android : + +`androguard axml {{chemin/vers/app.apk}}` + +- Affiche les métadonnées de l'application (version et id d'application) : + +`androguard apkid {{chemin/vers/app.apk}}` + +- Décompile le code Java de l'application : + +`androguard decompile {{chemin/vers/app.apk}} --output {{chemin/vers/dossier}}` diff --git a/pages.fr/common/ani-cli.md b/pages.fr/common/ani-cli.md new file mode 100644 index 00000000000000..3642ba551ce184 --- /dev/null +++ b/pages.fr/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> Une CLI pour chercher et regarder des animés. +> Plus d'informations : . + +- Cherche un anime par nom : + +`ani-cli "{{nom_de_l_animé}}"` + +- Télécharge l'épisode : + +`ani-cli -d "{{nom_de_l_animé}}"` + +- Utilise VLC comme lecteur de video : + +`ani-cli -v "{{nom_de_l_animé}}"` + +- Spécifie un épisode à regarder : + +`ani-cli -a {{numéro_de_l_épisode}} "{{nom_de_l_animé}}"` + +- Continue de regarder l'animé depuis l'historique : + +`ani-cli -c` + +- Met à jour `ani-cli` : + +`ani-cli -U` diff --git a/pages.fr/common/ansible-doc.md b/pages.fr/common/ansible-doc.md new file mode 100644 index 00000000000000..9d3a202ba45f6e --- /dev/null +++ b/pages.fr/common/ansible-doc.md @@ -0,0 +1,29 @@ +# ansible-doc + +> Affiche les informations des modules installés dans les librairies Ansible. +> Affiche une liste concise des plugins et leurs description courte. +> Plus d'informations : . + +- Liste les plugins action (modules) disponibles : + +`ansible-doc --list` + +- Liste les plugins disponible d'un certain type : + +`ansible-doc --type {{type_de_plugin}} --list` + +- Affiche les informations sur un plugin action (module) spécifique : + +`ansible-doc {{nom_du_plugin}}` + +- Affiche les informations sur un plugin avec un certain type : + +`ansible-doc --type {{type_de_plugin}} {{nom_du_plugin}}` + +- Affiche le raccourci playbook d'un plugin action (module) : + +`ansible-doc --snippet {{nom_du_plugin}}` + +- Affiche les informations sur un plugin action (module) en JSON : + +`ansible-doc --json {{nom_du_plugin}}` diff --git a/pages.fr/common/ansible-galaxy.md b/pages.fr/common/ansible-galaxy.md new file mode 100644 index 00000000000000..ad7e69c4496c34 --- /dev/null +++ b/pages.fr/common/ansible-galaxy.md @@ -0,0 +1,32 @@ +# ansible-galaxy + +> Crée et gère les rôles Ansible. +> Plus d'informations : . + +- Installe un rôle : + +`ansible-galaxy install {{nom_d_utilisateur}}.{{nom_du_rôle}}` + +- Enlève un rôle : + +`ansible-galaxy remove {{nom_d_utilisateur}}.{{nom_du_rôle}}` + +- Liste les rôles installés : + +`ansible-galaxy list` + +- Recherche pour un role donné : + +`ansible-galaxy search {{nom_du_rôle}}` + +- Crée un nouveau rôle : + +`ansible-galaxy init {{nom_du_rôle}}` + +- Récupère les informations sur le rôle d'un utilisateur : + +`ansible-galaxy role info {{nom_d_utilisateur}}.{{nom_du_rôle}}` + +- Récupère les informations d'une collection : + +`ansible-galaxy collection info {{nom_d_utilisateur}}.{{nom_de_la_collection}}` diff --git a/pages.fr/common/ansible-inventory.md b/pages.fr/common/ansible-inventory.md new file mode 100644 index 00000000000000..2f0430e9889d5a --- /dev/null +++ b/pages.fr/common/ansible-inventory.md @@ -0,0 +1,21 @@ +# ansible-inventory + +> Display or dump an Ansible inventory. +> Voir aussi : `ansible`. +> Plus d'informations : . + +- Affiche l'inventaire par défaut : + +`ansible-inventory --list` + +- Affiche un inventaire spécifique : + +`ansbile-inventory --list --inventory {{chemin/vers/fichier_ou_script_ou_dossier}}` + +- Affiche l'inventaire par défaut en YAML : + +`ansible-inventory --list --yaml` + +- Sauvegarde l'inventaire par défaut dans un fichier : + +`ansible-inventory --list --output {{chemin/vers/fichier}}` diff --git a/pages.fr/common/ansible-playbook.md b/pages.fr/common/ansible-playbook.md new file mode 100644 index 00000000000000..560ca1518dd6f2 --- /dev/null +++ b/pages.fr/common/ansible-playbook.md @@ -0,0 +1,28 @@ +# ansible-playbook + +> Exécute les tâches définies dans le playbook sur les machines distantes via SSH. +> Plus d'informations : . + +- Exécute les tâches d'un playbook : + +`ansible-playbook {{playbook}}` + +- Exécute les tâches d'un playbook avec fichier d'inventaire spécifié : + +`ansible-playbook {{playbook}} -i {{fichier_d_inventaire}}` + +- Exécute les tâches d'un playbook avec des variables supplémentaires définies via la ligne de commande : + +`ansible-playbook {{playbook}} -e "{{variable1}}={{valeur1}} {{variable2}}={{valeur2}}"` + +- Exécute les tâches d'un playbook avec des variables supplémentaires définies dans un fichier JSON : + +`ansible-playbook {{playbook}} -e "@{{variables.json}}"` + +- Exécute les tâches d'un playbook pour certain tags : + +`ansible-playbook {{playbook}} --tags {{tag1,tag2}}` + +- Exécute les tâches d'un playbook en démarrant depuis une certaine tache : + +`ansible-playbook {{playbook}} --start-at {{nom_de_la_tache}}` diff --git a/pages.fr/common/ansible-pull.md b/pages.fr/common/ansible-pull.md new file mode 100644 index 00000000000000..f86b09d4f9427e --- /dev/null +++ b/pages.fr/common/ansible-pull.md @@ -0,0 +1,20 @@ +# ansible-pull + +> Récupère les playbook ansible depuis un dépôt VCS et exécute les en local. +> Plus d'informations : . + +- Récupère le playbook depuis un VCS et exécute le fichier par défaut local.yaml du playbook : + +`ansible-pull -U {{url_du_dépôt}}` + +- Récupère le playbook depuis un VCS et exécute un playbook spécifique : + +`ansible-pull -U {{url_du_dépôt}} {{playbook}}` + +- Récupère un playbook depuis un VCS sur une branche spécifique et exécute ce dernier : + +`ansible-pull -U {{url_du_dépôt}} -C {{branche}} {{playbook}}` + +- Récupère un playbook depuis un VCS, spécifie les fichiers hôtes et exécute un playbook spécifique : + +`ansible-pull -U {{url_du_dépôt}} -i {{fichier_hôtes}} {{playbook}}` diff --git a/pages.fr/common/ansible-vault.md b/pages.fr/common/ansible-vault.md new file mode 100644 index 00000000000000..be88f87482bfe0 --- /dev/null +++ b/pages.fr/common/ansible-vault.md @@ -0,0 +1,28 @@ +# ansible-vault + +> Chiffre & déchiffre des valeurs, des structures de données et des fichiers dans un projet Ansible. +> Plus d'informations : . + +- Crée un nouveau fichier vault chiffré avec une invite à rentrer un mot passe : + +`ansible-vault create {{fichier_vault}}` + +- Crée un nouveau fichier vault chiffré avec un fichier clé vault pour le chiffrer : + +`ansible-vault create --vault-password-file={{fichier_de_mot_de_passe}} {{fichier_vault}}` + +- Chiffre un ficher existant avec un fichier de mot de passe optionnel : + +`ansible-vault encrypt --vault-password-file={{fichier_de_mot_de_passe}} {{fichier_vault}}` + +- Chiffre un texte avec le format de chiffrage pour textes d'Ansible, en affichant une invite interactif : + +`ansible-vault encrypt_string` + +- Affiche un fichier chiffré, en utilisant un fichier de mot de passe pour le déchiffrer : + +`ansible-vault view --vault-password-file={{fichier_de_mot_de_passe}} {{fichier_vault}}` + +- Remplace le fichier de mot de passe d'un fichier vault déjà chiffré par un autre : + +`ansible-vault rekey --vault-password-file={{ancien_fichier_de_mot_de_passe}} --new-vault-password-file={{nouveau_fichier_de_mot_de_passe}} {{fichier_vault}}` diff --git a/pages.fr/common/ansible.md b/pages.fr/common/ansible.md index 4f98b75b41d4b1..0b30261b538340 100644 --- a/pages.fr/common/ansible.md +++ b/pages.fr/common/ansible.md @@ -1,33 +1,33 @@ # ansible -> Gestionnaire de groupes d'ordinateurs à distance depuis SSH. -> Utiliser le fichier `/etc/ansible/hosts` pour ajouter de nouveaux groupes/hôtes. -> Plus d'information : . +> Gestionnaire de groupes d'ordinateurs à distance depuis SSH. (Utiliser le fichier `/etc/ansible/hosts` pour ajouter de nouveaux groupes/hôtes). +> Certaines commandes comme `ansible galaxy` ont leur propre documentation. +> Plus d'informations : . -- Lister les hôtes appartenant à un groupe : +- Lister les hôtes appartenant à un groupe : `ansible {{groupe}} --list-hosts` -- Ping d'un groupe d'hôtes en invoquant le [m]odule "ping" : +- Ping d'un groupe d'hôtes en invoquant le [m]odule "ping" : `ansible {{groupe}} -m ping` -- Afficher des informations sur un groupe d'hôtes en invoquant le [m]odule "setup" : +- Afficher des informations sur un groupe d'hôtes en invoquant le [m]odule "setup" : `ansible {{groupe}} -m setup` -- Exécuter une commande sur un groupe d'hôtes en invoquant le [m]odule "command" avec en paramètre (a) cette commande : +- Exécuter une commande sur un groupe d'hôtes en invoquant le [m]odule "command" avec en paramètre (a) cette commande : `ansible {{groupe}} -m command -a '{{ma_commande}}'` -- Exécuter une commande avec des droits administrateur : +- Exécuter une commande avec des droits administrateur : `ansible {{groupe}} --become --ask-become-pass -m command -a '{{ma_commande}}'` -- Exécuter une commande en utilisant un fichier d'inventaire personnalisé : +- Exécuter une commande en utilisant un fichier d'inventaire personnalisé : `ansible {{groupe}} -i {{fichier_d'inventaire}} -m command -a '{{ma_commande}}'` -- Lister les groupes d'un inventaire : +- Lister les groupes d'un inventaire : `ansible localhost -m debug -a '{{var=groups.keys()}}'` diff --git a/pages.fr/common/ansiweather.md b/pages.fr/common/ansiweather.md new file mode 100644 index 00000000000000..eaaac1787f64d4 --- /dev/null +++ b/pages.fr/common/ansiweather.md @@ -0,0 +1,16 @@ +# ansiweather + +> Un script Shell pour afficher les conditions météo actuelles dans votre terminal. +> Plus d'informations : . + +- Affiche une prévision avec le système métrique pour les 5 prochains jours dans la ville de Paris, France : + +`ansiweather -u {{metric}} -f {{5}} -l {{Paris,FR}}` + +- Affiche une prévision avec des symboles et les données d'ensoleillement pour votre position actuelle : + +`ansiweather -s {{true}} -d {{true}}` + +- Affiche une prévision avec les données sur le vent et l'humidité pour votre position actuelle : + +`ansiweather -w {{true}} -h {{true}}` diff --git a/pages.fr/common/ant.md b/pages.fr/common/ant.md new file mode 100644 index 00000000000000..2670868038b0ac --- /dev/null +++ b/pages.fr/common/ant.md @@ -0,0 +1,25 @@ +# ant + +> Apache Ant. +> Outil pour construire et gérer les projets basés sur du Java. +> Plus d'informations : . + +- Construit un projet avec le fichier de construction `build.xml` : + +`ant` + +- Construit un projet en utilisant un autre fichier que `build.xml` : + +`ant -f {{fichier_de_construction.xml}}` + +- Affiche les informations sur les cibles possibles pour ce projet : + +`ant -p` + +- Affiche les informations de débogage : + +`ant -d` + +- Exécute toutes les cibles qui ne dépendent pas d'une ou plusieurs cibles en erreur : + +`ant -k` diff --git a/pages.fr/common/antibody.md b/pages.fr/common/antibody.md new file mode 100644 index 00000000000000..793d2efac5798a --- /dev/null +++ b/pages.fr/common/antibody.md @@ -0,0 +1,16 @@ +# antibody + +> Le gestionnaire de modules shell "le plus rapide". +> Plus d'informations : . + +- Regroupe tous les modules pour un chargement statique : + +`antibody bundle < {{~/.zsh_modules.txt}} > {{~/.zsh_modules.sh}}` + +- Mets à jour tous les modules : + +`antibody update` + +- Liste tous les modules installés : + +`antibody list` diff --git a/pages.fr/common/apg.md b/pages.fr/common/apg.md new file mode 100644 index 00000000000000..9ade5bf262f7dc --- /dev/null +++ b/pages.fr/common/apg.md @@ -0,0 +1,24 @@ +# apg + +> Crée arbitrairement les mots de passe aléatoires et complexes. +> Plus d'informations : . + +- Crée des mots de passe aléatoires (la longueur par défaut est 8) : + +`apg` + +- Crée un mot de passe avec au moins 1 symbole (S), 1 Nombre (N), 1 Majuscule (C), 1 Minuscule (L) : + +`apg -M SNCL` + +- Crée un mot de passe avec 16 caractères : + +`apg -m {{16}}` + +- Crée un mot de passe avec une longeur maximum de 16 : + +`apg -x {{16}}` + +- 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}}` diff --git a/pages.fr/common/apktool.md b/pages.fr/common/apktool.md new file mode 100644 index 00000000000000..201f8204d1d411 --- /dev/null +++ b/pages.fr/common/apktool.md @@ -0,0 +1,16 @@ +# apktool + +> Outil de Rétro-ingénierie pour les fichier APK. +> Plus d'informations : . + +- Décode un fichier APK : + +`apktool d {{fichier.apk}}` + +- Construit un fichier APK depuis un dossier : + +`apktool b {{chemin/vers/un/dossier}}` + +- Installe et enregistre le framework : + +`apktool if {{framework.apk}}` diff --git a/pages.fr/common/apm.md b/pages.fr/common/apm.md new file mode 100644 index 00000000000000..37abebff95b931 --- /dev/null +++ b/pages.fr/common/apm.md @@ -0,0 +1,17 @@ +# apm + +> Gestionnaire de paquets pour Atom. +> Voir `atom`. +> Plus d'informations : . + +- Installe un paquet depuis http://atom.io/packages ou un thème depuis http://atom.io/themes : + +`apm install {{nom_du_paquet}}` + +- Supprime un paquet ou un thème : + +`apm remove {{nom_du_paquet}}` + +- Mets à jour un paquet ou un thème : + +`apm upgrade {{nom_du_paquet}}` diff --git a/pages.fr/common/apropos.md b/pages.fr/common/apropos.md index f233d7a360b97b..abf8f3255118bf 100644 --- a/pages.fr/common/apropos.md +++ b/pages.fr/common/apropos.md @@ -1,16 +1,16 @@ # apropos > Recherche dans les pages de manuel, par exemple pour trouver une nouvelle commande. -> Plus d'informations : . +> Plus d'informations : . -- Recherche par mot clé : +- Recherche par mot clé : `apropos {{expression_reguliere}}` -- Recherche sans limiter la sortie à la largeur du terminal : +- Recherche sans limiter la sortie à la largeur du terminal : `apropos -l {{expression_reguliere}}` -- Recherche les pages qui contiennent toutes les expressions données (fonction ET) : +- Recherche les pages qui contiennent toutes les expressions données (fonction ET) : `apropos {{expression_reguliere_1}} -a {{expression_reguliere_2}} -a {{expression_reguliere_3}}` diff --git a/pages.fr/common/ar.md b/pages.fr/common/ar.md new file mode 100644 index 00000000000000..a8da5dc7aaf9e0 --- /dev/null +++ b/pages.fr/common/ar.md @@ -0,0 +1,24 @@ +# ar + +> Crée, modifie et extrais depuis des archives (`.a`, `.so`, `.o`). +> Plus d'informations : . + +- Extrais tous les éléments depuis une archive : + +`ar -x {{chemin/vers/archive.a}}` + +- Liste tous les éléments depuis une archive : + +`ar -t {{chemin/vers/archive.a}}` + +- Remplace ou ajoute des fichiers à une archive : + +`ar -r {{chemin/vers/archive.a}} {{chemin/vers/fichier1.o}} {{chemin/vers/fichier2.o}}` + +- Insère un fichier d'indexation (équivalent à `ranlib`) : + +`ar -s {{chemin/vers/archive.a}}` + +- Crée une archive avec des fichiers et un fichier d'indexation qui l'accompagne : + +`ar -rs {{chemin/vers/archive.a}} {{chemin/vers/fichier1.o}} {{chemin/vers/fichier2.o}}` diff --git a/pages.fr/common/arc.md b/pages.fr/common/arc.md new file mode 100644 index 00000000000000..8a2d8263511644 --- /dev/null +++ b/pages.fr/common/arc.md @@ -0,0 +1,20 @@ +# arc + +> Arcanist: Une CLI pour Phabricator. +> Plus d'informations : . + +- Envoie les changements à un différentiel pour relecture : + +`arc diff` + +- Affiche les informations de la révision en suspens : + +`arc list` + +- Mets à jour les messages de commit Git après relecture : + +`arc amend` + +- Pousse les changements Git : + +`arc land` diff --git a/pages.fr/common/arch.md b/pages.fr/common/arch.md new file mode 100644 index 00000000000000..4590873dc8fe2b --- /dev/null +++ b/pages.fr/common/arch.md @@ -0,0 +1,9 @@ +# arch + +> Affiche le nom de l'architecture système. +> Voir aussi `uname`. +> Plus d'informations : . + +- Affiche l'architecture système : + +`arch` diff --git a/pages.fr/common/arduino-builder.md b/pages.fr/common/arduino-builder.md new file mode 100644 index 00000000000000..3849f00f9a44e0 --- /dev/null +++ b/pages.fr/common/arduino-builder.md @@ -0,0 +1,25 @@ +# arduino-builder + +> Un outil en ligne de commande pour compiler des croquis arduino. +> AVERTISSEMENT DE DÉPRÉCIATION: Cet outil a été retiré au profit de `arduino`. +> Plus d'informations : . + +- Construis un croquis : + +`arduino-builder -compile {{chemin/vers/croquis.ino}}` + +- Spécifie the niveau de débogage (1 à 10, 5 par défaut) : + +`arduino-builder -debug-level {{niveau}}` + +- Spécifie un dossier de construction : + +`arduino-builder -build-path {{chemin/vers/dossier/de/construction}}` + +- Utilise un fichier d'option de construction, au lieu de spécifier `--hardware`, `--tools`, etc. Manuellement à chaque fois : + +`arduino-builder -build-options-file {{chemin/vers/construction.options.json}}` + +- Active le mode verbeux : + +`arduino-builder -verbose {{true}}` diff --git a/pages.fr/common/arduino.md b/pages.fr/common/arduino.md new file mode 100644 index 00000000000000..ae31281d3ba66d --- /dev/null +++ b/pages.fr/common/arduino.md @@ -0,0 +1,28 @@ +# arduino + +> Arduino Studio - Environnement de Développement Intégré pour la plateforme Arduino. +> Plus d'informations : . + +- Construis un croquis : + +`arduino --verify {{chemin/vers/croquis.ino}}` + +- Construis et téléverse un croquis : + +`arduino --upload {{chemin/vers/croquis.ino}}` + +- Construis et téléverse un croquis vers un Arduino Nano avec un CPU Atmega328p, connecté sur le port `/dev/ttyACM0` : + +`arduino --board {{arduino:avr:nano:cpu=atmega328p}} --port {{/dev/ttyACM0}} --upload {{chemin/vers/croquis.ino}}` + +- Configure la préférence `nom` à une valeur `valeur` : + +`arduino --pref {{nom}}={{valeur}}` + +- Construis un croquis, mets le résultat de ce dernier dans un dossier, et réutilise n'importe quelles versions précédentes dans ce dossier : + +`arduino --pref build.path={{chemin/vers/dossier/de/construction}} --verify {{chemin/vers/croquis.ino}}` + +- Sauvegarde toutes préférences (modifiées) dans un fichier `preferences.txt` : + +`arduino --save-prefs` diff --git a/pages.fr/common/aria2.md b/pages.fr/common/aria2.md new file mode 100644 index 00000000000000..8284438cf04ecf --- /dev/null +++ b/pages.fr/common/aria2.md @@ -0,0 +1,7 @@ +# aria2 + +> Cette commande est un alias de `aria2c`. + +- Voir la documentation pour la commande : + +`tldr aria2c` diff --git a/pages.fr/common/aria2c.md b/pages.fr/common/aria2c.md new file mode 100644 index 00000000000000..21cd3d405d5be1 --- /dev/null +++ b/pages.fr/common/aria2c.md @@ -0,0 +1,37 @@ +# aria2c + +> Utilitaire de téléchargement. +> Supporte HTTP(S), FTP, SFTP, BitTorrent, et Metalink. +> Plus d'informations : . + +- Télécharge depuis une URI vers un fichier : + +`aria2c {{url}}` + +- Télécharge un fichier via l'url spécifié en choisissant le nom de ce dernier : + +`aria2c --out={{nom_de_fichier}} {{url}}` + +- Télécharge plusieurs fichiers (différents) en parallèle : + +`aria2c --force-sequential {{false}} {{url_1}} {{url_2}}` + +- Télécharge depuis plusieurs sources avec chaque URI pointant vers le même fichier : + +`aria2c {{url_1}} {{url_2}}` + +- Télécharge les URIs listées dans un fichier avec un nombre limité de téléchargements en parallèle: + +`aria2c --input-file={{nom_de_fichier}} --max-concurrent-downloads={{nombre_de_téléchargements}}` + +- Télécharge avec plusieurs connections : + +`aria2c --split={{nombre_de_connections}} {{url}}` + +- Téléchargement FTP avec nom d'utilisateur et mot de passe : + +`aria2c --ftp-user={{nom_d_utilisateur}} --ftp-passwd={{mot_de_passe}} {{url}}` + +- Limite la vitesse de téléchargement en octets/s : + +`aria2c --max-download-limit={{vitesse}} {{url}}` diff --git a/pages.fr/common/arp-scan.md b/pages.fr/common/arp-scan.md new file mode 100644 index 00000000000000..b6ed9715539194 --- /dev/null +++ b/pages.fr/common/arp-scan.md @@ -0,0 +1,20 @@ +# arp-scan + +> Envoie des paquets ARP à des hôtes (spécifié via des adresses IP ou des noms de domaines) pour scanner le réseau local. +> Plus d'informations : . + +- Scanne le réseau local actuel : + +`arp-scan --localnet` + +- Scanne un réseau IP pour un masque de bits donné : + +`arp-scan {{192.168.1.1}}/{{24}}` + +- Scanne un réseau IP dans une plage IP : + +`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` + +- Scanne un réseau IP pour un masque de sous-réseaux donné : + +`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages.fr/common/arp.md b/pages.fr/common/arp.md new file mode 100644 index 00000000000000..6ebb383ce34f67 --- /dev/null +++ b/pages.fr/common/arp.md @@ -0,0 +1,16 @@ +# arp + +> Affiche et manipule votre cache système ARP. +> Plus d'informations : . + +- Affiche la table ARP courante : + +`arp -a` + +- Supprime une entrée spécifique : + +`arp -d {{adresse}}` + +- Crée une entré dans la table ARP: + +`arp -s {{adresse}} {{adresse_mac}}` diff --git a/pages.fr/common/arping.md b/pages.fr/common/arping.md new file mode 100644 index 00000000000000..42d02209224755 --- /dev/null +++ b/pages.fr/common/arping.md @@ -0,0 +1,29 @@ +# arping + +> Découvre et sonde des hôtes dans un réseau en utilisant le protocol ARP. +> Très utile pour la découverte d'adresse MAC. +> Plus d'informations : . + +- Ping un hôte par paquets de requête ARP : + +`arping {{ip_hôte}}` + +- Ping un hôte sur une interface spécifique : + +`arping -I {{interface}} {{ip_hôte}}` + +- Ping un hôte et arrête à la première réponse : + +`arping -f {{ip_hôte}}` + +- Ping un hôte un certain nombre de fois : + +`arping -c {{nombre_d_appel}} {{ip_hôte}}` + +- Diffuse les paquets de requête ARP pour mettre à jour les caches ARP voisin : + +`arping -U {{ip_à_diffuser}}` + +- Détecte les adresses IP dupliquées dans le réseau en envoyant les requêtes ARP avec une expiration de 3 secondes : + +`arping -D -w {{3}} {{ip_à_vérifier}}` diff --git a/pages.fr/common/asar.md b/pages.fr/common/asar.md new file mode 100644 index 00000000000000..de57fdf00dcead --- /dev/null +++ b/pages.fr/common/asar.md @@ -0,0 +1,20 @@ +# asar + +> Un outil d'archivage pour la plateforme Electron. +> Plus d'informations : . + +- Archive un fichier ou un dossier : + +`asar pack {{chemin/vers/fichier_ou_dossier}} {{archive.asar}}` + +- Extrais une archive : + +`asar extract {{archive.asar}}` + +- Extrais un fichier spécifique d'une archive : + +`asar extract-file {{archive.asar}} {{fichier}}` + +- Liste les éléments contenus dans une archive : + +`asar list {{archive.asar}}` diff --git a/pages.fr/common/asciidoctor.md b/pages.fr/common/asciidoctor.md new file mode 100644 index 00000000000000..035cece9d92e54 --- /dev/null +++ b/pages.fr/common/asciidoctor.md @@ -0,0 +1,20 @@ +# asciidoctor + +> Un processeur qui convertit des fichiers AsciiDoc vers un format publiable. +> Plus d'informations : . + +- Convertis un fichier `.adoc` vers un fichier HTML (le format de sortie par défaut) : + +`asciidoctor {{chemin/vers/fichier.adoc}}` + +- Convertis un fichier `.adoc` vers un fichier HTML et lie une feuille de style CSS : + +`asciidoctor -a stylesheet={{chemin/vers/feuille_de_style.css}} {{chemin/vers/fichier.adoc}}` + +- Convertis un fichier `.adoc` vers un fichier HTML embarqué, en enlevant tout sauf le body : + +`asciidoctor --embedded {{chemin/vers/fichier.adoc}}` + +- Convertis un fichier `.adoc` vers un PDF en utilisant la librairie `asciidoctor-pdf` : + +`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{chemin/vers/fichier.adoc}}` diff --git a/pages.fr/common/asciinema.md b/pages.fr/common/asciinema.md new file mode 100644 index 00000000000000..410af2ccc91378 --- /dev/null +++ b/pages.fr/common/asciinema.md @@ -0,0 +1,36 @@ +# asciinema + +> Enregistre et rejoue les sessions de terminal, et également partageable sur asciinema.org. +> Plus d'informations : . + +- Associe l’installation locale de `asciinema` avec un compte asciinema.org : + +`asciinema auth` + +- Crée un nouvel enregistrement (une fois fini, l'utilisateur sera questionné pour l'enregistrer localement ou l'envoyer en ligne) : + +`asciinema rec` + +- Crée un nouvel enregistrement et l'enregistre dans un fichier local : + +`asciinema rec {{chemin/vers/fichier}}.cast` + +- Rejoue un enregistrement depuis un fichier local : + +`asciinema play {{chemin/vers/fichier}}.cast` + +- Rejoue un enregistrement depuis asciinema.org : + +`asciinema play https://asciinema.org/a/{{id_d_enregistrement}}` + +- Crée un nouvel enregistrement, en limitant le temps d’inactivité au maximum à 2.5 secondes : + +`asciinema rec -i {{2.5}}` + +- Affiche la sortie complète d'un enregistrement local : + +`asciinema cat {{chemin/vers/fichier}}.cast` + +- Envoie un enregistrement local vers asciinema.org : + +`asciinema upload {{chemin/vers/fichier}}.cast` diff --git a/pages.fr/common/asdf.md b/pages.fr/common/asdf.md new file mode 100644 index 00000000000000..0faf5cabf4c35e --- /dev/null +++ b/pages.fr/common/asdf.md @@ -0,0 +1,28 @@ +# asdf + +> Interface en ligne de commande pour gérer les versions de différents paquets. +> Plus d'informations : . + +- Liste toutes les extensions disponibles : + +`asdf plugin-list-all` + +- Installe une extension : + +`asdf plugin-add {{nom}}` + +- Liste toutes les versions disponible d'un paquet : + +`asdf list-all {{nom}}` + +- Installe une version spécifique d'un paquet : + +`asdf install {{nom}} {{version}}` + +- Fixe au global une version d'un paquet : + +`asdf global {{nom}} {{version}}` + +- Fix en local la version d'un paquet : + +`asdf local {{nom}} {{version}}` diff --git a/pages.fr/common/assimp.md b/pages.fr/common/assimp.md new file mode 100644 index 00000000000000..d51c8bf77ef622 --- /dev/null +++ b/pages.fr/common/assimp.md @@ -0,0 +1,33 @@ +# assimp + +> 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 : . + +- Liste tous les formats d'import supportés : + +`assimp listext` + +- Liste tous les formats de sortie supportés : + +`assimp listexport` + +- Convertis un fichier vers un format de sortie supporté, avec les paramètres par défaut : + +`assimp export {{fichier_d_entrée.stl}} {{fichier_de_sortie.obj}}` + +- Convertis un fichier avec des paramètres personnalisés (le fichier dox_cmd.h dans le code source de assimp liste tous les paramètres disponible) : + +`assimp export {{fichier_d_entrée.stl}} {{fichier_de_sortie.obj}} {{paramètres}}` + +- Affiche un sommaire du contenu d'un fichier 3D : + +`assimp info {{chemin/vers/fichier}}` + +- Liste toutes les sous-commandes supportées ("mots") : + +`assimp help` + +- Affiche l'aide d'un sous-commande (e.g les paramètres qui lui sont spécifique) : + +`assimp {{sous_commande}} --help` diff --git a/pages.fr/common/astronomer.md b/pages.fr/common/astronomer.md new file mode 100644 index 00000000000000..5784c4b314cd10 --- /dev/null +++ b/pages.fr/common/astronomer.md @@ -0,0 +1,16 @@ +# astronomer + +> Outil qui détecte les étoiles non-légitimes d'un robot sur les projets GitHub. +> Plus d'informations : . + +- Analyse un dépôt : + +`astronomer {{tldr-pages/tldr-node-client}}` + +- Analyse le nombre maximum d'étoiles sur un dépôt : + +`astronomer {{tldr-pages/tldr-node-client}} --stars {{50}}` + +- Analyse un dépôt en affichant les rapports comparatifs : + +`astronomer {{tldr-pages/tldr-node-client}} --verbose` diff --git a/pages.fr/common/astyle.md b/pages.fr/common/astyle.md new file mode 100644 index 00000000000000..7fcb9d6e9203e8 --- /dev/null +++ b/pages.fr/common/astyle.md @@ -0,0 +1,25 @@ +# astyle + +> 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 : . + +- Applique le style par défaut de 4 espaces pour l'indentation et pas de changement de formatage : + +`astyle {{fichier_source}}` + +- Applique le style Java avec le style `attached` : + +`astyle --style=java {{chemin/vers/fichier}}` + +- Applique le style `allman` : + +`astyle --style=allman {{chemin/vers/fichier}}` + +- Applique une indentation personnalisé avec des espaces. Choisi entre 2 et 20 espaces : + +`astyle --indent=spaces={{nombre_d_espaces}} {{chemin/vers/fichier}}` + +- Applique une indentation personnalisé avec des tabulations. Choisi entre 2 et 20 tabulations : + +`astyle --indent=tab={{nombre_de_tabulations}} {{chemin/vers/fichier}}` diff --git a/pages.fr/common/at.md b/pages.fr/common/at.md index fe165c4efda92b..f09d18f7c3ed39 100644 --- a/pages.fr/common/at.md +++ b/pages.fr/common/at.md @@ -1,17 +1,17 @@ # at > Planifie l'exécution d'une commande une fois à un moment donné. -> Le service atd (ou atrun) doit être actif pour l'exécution des commandes plannifiées. -> Plus d'informations : . +> Le service atd (ou atrun) doit être actif pour l'exécution des commandes planifiées. +> Plus d'informations : . -- Planifie l'exécution de la commande donnée dans l'entrée standard dans 5 minutes (Appuyer sur `Ctrl + D` une fois la commande inscrite) : +- Planifie l'exécution de la commande donnée dans l'entrée standard dans 5 minutes (Appuyer sur `Ctrl + D` une fois la commande inscrite) : `at now + 5 minutes` -- Planifie l'exécution d'une commande depuis l'entrée standard (impression echo redirigée dans un tube) aujourd'hui à 10h00 : +- Planifie l'exécution d'une commande depuis l'entrée standard (impression echo redirigée dans un tube) aujourd'hui à 10h00 : `echo "{{./ma_commande.sh}}" | at 1000` -- Planifie l'exécution des commandes inclues dans un [f]ichier pour mardi prochain 21h30 : +- Planifie l'exécution des commandes inclues dans un [f]ichier pour mardi prochain 21h30 : `at -f {{chemin/vers/fichier}} 9:30 PM Tue` diff --git a/pages.fr/common/atom.md b/pages.fr/common/atom.md index 507afec4b3e14e..2d0291b5db106f 100644 --- a/pages.fr/common/atom.md +++ b/pages.fr/common/atom.md @@ -2,28 +2,28 @@ > Un éditeur de texte multiplateforme proposant de nombreuses extensions. > Les extensions sont gérées par `apm`. -> Plus d'informations : . +> Plus d'informations : . -- Ouvrir un fichier ou un dossier : +- Ouvrir un fichier ou un dossier : `atom {{chemin/vers/fichier_ou_dossier}}` -- Ouvrir un fichier ou un dossier dans une nouvelle fenêtre : +- Ouvrir un fichier ou un dossier dans une nouvelle fenêtre : `atom -n {{chemin/vers/fichier_ou_dossier}}` -- Ouvrir un fichier ou un dossier dans une fenêtre existante : +- Ouvrir un fichier ou un dossier dans une fenêtre existante : `atom --add {{chemin/vers/fichier_ou_dossier}}` -- Ouvrir en mode sans-échec (les extensions ne seront pas chargées) : +- Ouvrir en mode sans-échec (les extensions ne seront pas chargées) : `atom --safe` -- Empêcher Atom de se lancer en arrière-plan, en le forçant à s'attacher au terminal : +- Empêcher Atom de se lancer en arrière-plan, en le forçant à s'attacher au terminal : `atom --foreground` -- Attendre la fermeture de la fenêtre avant de quitter (utile pour l'éditeur de commits Git) : +- Attendre la fermeture de la fenêtre avant de quitter (utile pour l'éditeur de commits Git) : `atom --wait` diff --git a/pages.fr/common/atoum.md b/pages.fr/common/atoum.md new file mode 100644 index 00000000000000..eb09b8fd22a1a7 --- /dev/null +++ b/pages.fr/common/atoum.md @@ -0,0 +1,36 @@ +# atoum + +> Un framework de test unitaire pour PHP simple, moderne et intuitif. +> Plus d'informations : . + +- Initialise un fichier de configuration : + +`atoum --init` + +- Lance les tests : + +`atoum` + +- Lance les tests avec un fichier de configuration donné : + +`atoum -c {{chemin/vers/fichier}}` + +- Lance un fichier de test spécifique : + +`atoum -f {{chemin/vers/fichier}}` + +- Lance les tests présent dans dossier donné : + +`atoum -d {{chemin/vers/dossier}}` + +- Lance tous les tests sous un certain namespace : + +`atoum -ns {{namespace}}` + +- Lance tous les tests avec un certain tag : + +`atoum -t {{tag}}` + +- Charge un fichier d'amorce avant de lancer les tests : + +`atoum --bootstrap-file {{chemin/vers/fichier}}` diff --git a/pages.fr/common/atq.md b/pages.fr/common/atq.md new file mode 100644 index 00000000000000..8edba416017a7c --- /dev/null +++ b/pages.fr/common/atq.md @@ -0,0 +1,16 @@ +# atq + +> Affiche les travaux programmés par la commande `at` ou `batch`. +> Plus d'informations : . + +- Affiche les travaux programmés de l'utilisateur courant : + +`atq` + +- Affiche les travaux de la file nommé 'a' (les files ont des noms avec une seule lettre) : + +`atq -q {{a}}` + +- Affiche les travaux de tous les utilisateurs (lancé en tant que super-utilisateur) : + +`sudo atq` diff --git a/pages.fr/common/atrm.md b/pages.fr/common/atrm.md new file mode 100644 index 00000000000000..0009e1d5d5f7c6 --- /dev/null +++ b/pages.fr/common/atrm.md @@ -0,0 +1,13 @@ +# atrm + +> Supprime les travaux programmés par la commande `at` ou `batch`. +> Pour retrouver les numéros des travaux, utilise `atq`. +> Plus d'informations : . + +- Supprime le travail numéro 10 : + +`atrm {{10}}` + +- Supprime plusieurs travaux, séparés par un espace : + +`atrm {{15}} {{17}} {{22}}` diff --git a/pages.fr/common/atuin.md b/pages.fr/common/atuin.md new file mode 100644 index 00000000000000..6a46b763acbb68 --- /dev/null +++ b/pages.fr/common/atuin.md @@ -0,0 +1,29 @@ +# atuin + +> Enregistre votre historique shell dans une base de donnée. +> Peut également synchroniser votre historique chiffré entre plusieurs machines. +> Plus d'informations : . + +- Installe atuin dans votre shell : + +`eval "$(atuin init {{bash|zsh|fish}})"` + +- Importe l'historique du shell par défaut : + +`atuin import auto` + +- Recherche dans l'historique shell une commande spécifique : + +`atuin search {{commande}}` + +- Inscrire un compte sur le serveur de synchronisation par défaut : + +`atuin register -u {{nom_d_utilisateur}} -e {{email}} -p {{mot_de_passe}}` + +- Connexion au serveur de synchronisation par défaut : + +`atuin login -u {{nom_d_utilisateur}} -p {{mot_de_passe}}` + +- Synchronise l'historique avec le serveur : + +`atuin sync` diff --git a/pages.fr/common/auditd.md b/pages.fr/common/auditd.md new file mode 100644 index 00000000000000..83f917c4525084 --- /dev/null +++ b/pages.fr/common/auditd.md @@ -0,0 +1,17 @@ +# auditd + +> Réponds aux requêtes depuis l'outil d'audition et de notifications du kernel. +> Il ne doit pas être utilisé manuellement. +> Plus d'informations : . + +- Démarre le démon : + +`auditd` + +- Démarre le démon en mode débogage : + +`auditd -d` + +- Démarre le démon à la demande depuis launchd : + +`auditd -l` diff --git a/pages.fr/common/autoconf.md b/pages.fr/common/autoconf.md new file mode 100644 index 00000000000000..9a625d33c6934e --- /dev/null +++ b/pages.fr/common/autoconf.md @@ -0,0 +1,16 @@ +# autoconf + +> Génère des scripts de configuration pour configurer automatiquement les paquets du code source. +> Plus d'informations : . + +- Génère un script de configuration depuis `configure.ac` (si présent) ou `configure.in` et le sauvegarde dans `configure` : + +`autoconf` + +- Génère un script de configuration depuis un modèle spécifié; et l'affiche la sortie standard : + +`autoconf {{fichier_de_template}}` + +- Génère un script de configuration depuis un modèle spécifié (même si the fichier d'entrée n'a pas changé) et l'écrit dans un fichier : + +`autoconf --force --output={{fichier_de_sortie}} {{fichier_de_template}}` diff --git a/pages.fr/common/autoflake.md b/pages.fr/common/autoflake.md new file mode 100644 index 00000000000000..c9817786bd71b6 --- /dev/null +++ b/pages.fr/common/autoflake.md @@ -0,0 +1,20 @@ +# autoflake + +> Un outil pour enlever les imports et les variables inutilisés d'un code Python. +> Plus d'informations : . + +- Enlève les variables non-utilisées d'un fichier et affiche la différence : + +`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 {{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 {{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 : + +`autoflake --remove-unused-variables --in-place --recursive {{chemin/vers/dossier}}` diff --git a/pages.fr/common/autojump.md b/pages.fr/common/autojump.md new file mode 100644 index 00000000000000..076186a2d647c9 --- /dev/null +++ b/pages.fr/common/autojump.md @@ -0,0 +1,25 @@ +# autojump + +> Accède rapidement aux dossiers que vous visitez le plus. +> Les alias comme j or jc sont fournis pour simplifier leurs utilisation. +> Plus d'informations : . + +- Accède à un dossier qui contiens le motif suivant : + +`j {{motif}}` + +- Accède à un sous-dossier (enfant) du repertoire courant qui contiens the motif suivant : + +`jc {{motif}}` + +- Ouvre le dossier qui contiens the motif suivant dans le gestionnaire de fichier du système d'exploitation : + +`jo {{motif}}` + +- Enlève les dossiers qui n'existent plus de la base de données de autojump : + +`j --purge` + +- Affiche les entrées dans la base de données de autojump : + +`j -s` diff --git a/pages.fr/common/autopep8.md b/pages.fr/common/autopep8.md new file mode 100644 index 00000000000000..0c2066ff7cc717 --- /dev/null +++ b/pages.fr/common/autopep8.md @@ -0,0 +1,20 @@ +# autopep8 + +> Formate du code Python en accord avec le style PEP 8. +> Plus d'informations : . + +- Formate une fichier vers la sortie standard, avec une taille de ligne maximal personnalisée : + +`autopep8 {{chemin/vers/fichier.py}} --max-line-length {{longueur}}` + +- Formate un fichier, en affichant les changements : + +`autopep8 --diff {{chemin/vers/fichier}}` + +- Formate un fichier et sauvegarde les changements : + +`autopep8 --in-place {{chemin/vers/fichier.py}}` + +- Formate récursivement les fichiers dans un dossier et sauvegarde les changements : + +`autopep8 --in-place --recursive {{chemin/vers/dossier}}` diff --git a/pages.fr/common/autossh.md b/pages.fr/common/autossh.md new file mode 100644 index 00000000000000..7d00a535a396c9 --- /dev/null +++ b/pages.fr/common/autossh.md @@ -0,0 +1,29 @@ +# autossh + +> Lance, surveille et redémarre les connections SSH. +> Reconnecte automatiquement pour garder le tunnel de transfert de port ouvert. Accepte toutes les options de `ssh`. +> Plus d'informations : . + +- Démarre une session SSH, redémarre quand le port échoue à renvoyer de la data : + +`autossh -M {{port_surveillé}} "{{commande_ssh}}"` + +- Fait suivre un port local vers un port distant, redémarre si nécessaire : + +`autossh -M {{port_surveillé}} -L {{port_local}}:localhost:{{port_distant}} {{utilisateur}}@{{hôte}}` + +- Diverge `autossh` en arrière plan avant de lancer `ssh` et n'ouvre pas de shell distant : + +`autossh -f -M {{port_surveillé}} -N "{{commande_ssh}}"` + +- Démarre en arrière plan, sans surveillance de port et à la place envoie des paquets SSH "keep-alive" toutes les 10 secondes pour détecter les échecs : + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" "{{commande_ssh}}"` + +- Démarre en arrière plan, sans surveillance de port ni shell distant et s’arrête si le partage de port échoue : + +`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" -o ExitOnForwardFailure=yes -L {{port_local}}:localhost:{{port_distant}} {{utilisateur}}@{{hôte}}` + +- Démarre en arrière plan, logue la sortie de déboggage d'`autossh` et la sortie verbeuse de `ssh` dans des fichiers : + +`AUTOSSH_DEBUG=1 AUTOSSH_LOGFILE={{chemin/vers/fichier_logs_autossh.log}} autossh -f -M {{port_surveillé}} -v -E {{chemin/vers/fichier_logs_ssh.log}} {{commande_ssh}}` diff --git a/pages.fr/common/avo.md b/pages.fr/common/avo.md new file mode 100644 index 00000000000000..3aa7a2d60b981f --- /dev/null +++ b/pages.fr/common/avo.md @@ -0,0 +1,36 @@ +# avo + +> La ligne de commande officielle pour Avo. +> Plus d'informations : . + +- Initialise un espace de travail dans le dossier courant : + +`avo init` + +- Connecte la cli à la plateforme Avo : + +`avo login` + +- Change de branche vers une branche existante Avo : + +`avo checkout {{nom_de_branche}}` + +- Récupère les couvertures analytique pour le chemin courant : + +`avo pull` + +- Affiche le status de l'implémentation Avo : + +`avo status` + +- Résous les conflits Git dans les fichiers Avo : + +`avo conflict` + +- Ouvre l'espace de travail courant Avo dans le navigateur web par défaut : + +`avo edit` + +- Affiche l'aide pour une sous-commande : + +`avo {{sous_commande}} --help` diff --git a/pages.fr/common/avrdude.md b/pages.fr/common/avrdude.md new file mode 100644 index 00000000000000..e39530de467f96 --- /dev/null +++ b/pages.fr/common/avrdude.md @@ -0,0 +1,20 @@ +# avrdude + +> Pilotes pour programmer les microcontrôleurs Atmel AVR. +> Plus d'informations : . + +- Lire le contenu du microcontrôleur AVR : + +`avrdude -p {{appareil_AVR}} -c {{programmeur}} -U flash:r:{{fichier.hex}}:i` + +- Programme le microcontrôleur AVR : + +`avrdude -p {{appareil_AVR}} -c {{programmeur}} -U flash:w:{{fichier.hex}}` + +- Affiche les appareils AVR disponibles : + +`avrdude -p \?` + +- Affiche les programmeurs AVR disponibles : + +`avrdude -c \?` diff --git a/pages.fr/common/awk.md b/pages.fr/common/awk.md index 19a84f0cd264a2..41ca25c9fbc16a 100644 --- a/pages.fr/common/awk.md +++ b/pages.fr/common/awk.md @@ -1,36 +1,36 @@ # awk > Langage de programmation polyvalent pour travailler sur des fichiers. -> Plus d'informations : . +> Plus d'informations : . -- Affiche la cinquième colonne (ou le champ) dans un fichier qui utilise des espaces comme séparateur : +- Affiche la cinquième colonne (ou le champ) dans un fichier qui utilise des espaces comme séparateur : `awk '{print $5}' {{nom_de_fichier}}` -- Affiche la deuxième colonne dans des lignes contenant "quelque-chose" dans un fichier qui utilise des espaces comme séparateur : +- Affiche la deuxième colonne dans des lignes contenant "quelque-chose" dans un fichier qui utilise des espaces comme séparateur : `awk '/{{quelque-chose}}/ {print $2}' {{nom_de_fichier}}` -- Affiche la dernière colonne de chaque ligne d'un fichier en utilisant une virgule (au lieu des espaces) comme séparateur : +- Affiche la dernière colonne de chaque ligne d'un fichier en utilisant une virgule (au lieu des espaces) comme séparateur : `awk -F ',' '{print $NF}' {{nom_de_fichier}}` -- Additionne les valeurs de la première colonne des lignes d'un fichier et affiche le total : +- Additionne les valeurs de la première colonne des lignes d'un fichier et affiche le total : `awk '{s+=$1} END {print s}' {{nom_de_fichier}}` -- Additionne les valeurs de la première colonne des lignes d'un fichier et affiche ces valeurs puis affiche le total : +- Additionne les valeurs de la première colonne des lignes d'un fichier et affiche ces valeurs puis affiche le total : `awk '{s+=$1; print $1} END {print "--------"; print s}' {{nom_de_fichier}}` -- Affiche une ligne sur trois en partant de la première ligne : +- Affiche une ligne sur trois en partant de la première ligne : `awk 'NR%3==1' {{nom_de_fichier}}` -- Affiche les lignes dont la valeur de la colone 10 vaut la valeur recherchée : +- Affiche les lignes dont la valeur de la colonne 10 vaut la valeur recherchée : `awk '($10 == valeur)'` -- Affiche les lignes dont la valeur de la colone 10 est comprise entre un min et un max : +- Affiche les lignes dont la valeur de la colonne 10 est comprise entre un min et un max : `awk '($10 >= valeur_min && $10 <= valeur_max)'` diff --git a/pages.fr/common/aws-cur.md b/pages.fr/common/aws-cur.md new file mode 100644 index 00000000000000..37275c270cd063 --- /dev/null +++ b/pages.fr/common/aws-cur.md @@ -0,0 +1,16 @@ +# aws cur + +> Crée, requête et supprime des rapports de définition d'utilisation AWS. +> Plus d'informations : . + +- Créé un rapport de définition de coût et d'utilisation AWS depuis un fichier JSON : + +`aws cur put-report-definition --report-definition file://{{chemin/vers/rapport_de_définition.json}}` + +- Liste les rapports de définition définis pour le compte connecté : + +`aws cur describe-report-definitions` + +- Supprime un rapport de définition d'utilisation : + +`aws cur --region {{region_aws}} delete-report-definition --report-name {{rapport}}` diff --git a/pages.fr/common/aws-ec2.md b/pages.fr/common/aws-ec2.md new file mode 100644 index 00000000000000..4ac0ecdfc8b9c7 --- /dev/null +++ b/pages.fr/common/aws-ec2.md @@ -0,0 +1,37 @@ +# aws ec2 + +> CLI pour AWS EC2. +> Provisionne, sécurise et des capacités de calcul redimensionnable dans le cloud AWS pour accélérer le développement et le déploiement d'applications. +> Plus d'informations : . + +- Affiche les informations sur une instance spécifique : + +`aws ec2 describe-instances --instance-ids {{id_d_instance}}` + +- Affiche les informations de toutes les instances : + +`aws ec2 describe-instances` + +- Affiche les informations sur tous les volumes EC2 : + +`aws ec2 describe-volumes` + +- Supprime un volume EC2 : + +`aws ec2 delete-volume --volume-id {{id_de_volume}}` + +- Crée une sauvegarde de votre volume EC2 : + +`aws ec2 create-snapshot --volume-id {{id_de_volume}}` + +- Liste toutes les AMIs (Images de Machine Amazon) disponible : + +`aws ec2 describe-images` + +- Affiche la liste de toutes les commandes EC2 disponible : + +`aws ec2 help` + +- Affiche l'aide pour une sous-commande EC2 spécifique : + +`aws ec2 {{sous-commande}} help` diff --git a/pages.fr/common/aws-ecr.md b/pages.fr/common/aws-ecr.md new file mode 100644 index 00000000000000..738898f493d50d --- /dev/null +++ b/pages.fr/common/aws-ecr.md @@ -0,0 +1,36 @@ +# aws ecr + +> Pousse, récupère et gère les images de conteneur. +> Plus d'informations : . + +- Connecte docker avec le registre par défaut (le nom d'utilisateur est AWS) : + +`aws ecr get-login-password --region {{région}} | {{docker login}} --username AWS --password-stdin {{id_de_compte_aws}}.dkr.ecr.{{région}}.amazonaws.com` + +- Crée un dépôt : + +`aws ecr create-repository --repository-name {{dépôt}} --image-scanning-configuration scanOnPush={{true|false}} --region {{région}}` + +- Tag une image locale pour ECR : + +`docker tag {{nom_de_conteneur}}:{{tag}} {{id_de_compte_aws}}.dkr.ecr.{{région}}.amazonaws.com/{{nom_de_conteneur}}:{{tag}}` + +- Pousse une image dans le dépôt : + +`docker push {{id_de_compte_aws}}.dkr.ecr.{{région}}.amazonaws.com/{{nom_de_conteneur}}:{{tag}}` + +- Récupère une image depuis un dépôt : + +`docker pull {{id_de_compte_aws}}.dkr.ecr.{{région}}.amazonaws.com/{{nom_de_conteneur}}:{{tag}}` + +- Supprime une image d'un dépôt : + +`aws ecr batch-delete-image --repository-name {{dépôt}} --image-ids imageTag={{latest}}` + +- Supprime un dépôt : + +`aws ecr delete-repository --repository-name {{dépôt}} --force` + +- Liste les images dans un dépôt : + +`aws ecr list-images --repository-name {{dépôt}}` diff --git a/pages.fr/common/aws-glue.md b/pages.fr/common/aws-glue.md new file mode 100644 index 00000000000000..ff7b7d54a25666 --- /dev/null +++ b/pages.fr/common/aws-glue.md @@ -0,0 +1,29 @@ +# aws glue + +> CLI pour AWS Glue. +> Définie un endpoint publique pour le service AWS Glue. +> Plus d'informations : . + +- Liste les tâches : + +`aws glue list-jobs` + +- Démarre une tâche : + +`aws glue start-job-run --job-name {{nom_de_la_tâche}}` + +- Démarre un flux de travail : + +`aws glue start-workflow-run --name {{nom_flux_de_travail}}` + +- Liste les déclencheurs : + +`aws glue list-triggers` + +- Démarre un déclencheur : + +`aws glue start-trigger --name {{nom_du_déclencheur}}` + +- Créé un endpoint de développement : + +`aws glue create-dev-endpoint --endpoint-name {{nom}} --role-arn {{rôle_arn_utilisé_par_l_endpoint}}` diff --git a/pages.fr/common/aws-google-auth.md b/pages.fr/common/aws-google-auth.md new file mode 100644 index 00000000000000..0f9eccc456d625 --- /dev/null +++ b/pages.fr/common/aws-google-auth.md @@ -0,0 +1,20 @@ +# aws-google-auth + +> Outil en ligne de commande pour obtenir des credentials AWS temporaire (STS) en utilisant Google Apps comme un fournisseur de fédération (SSO). +> Plus d'informations : . + +- Connecte l'utilisateur avec le SSO Google en utilisant les identifiants IDP et SP et donne une durée de vie d'une heure à la connection : + +`aws-google-auth -u {{exemple@exemple.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}}` + +- Connecte l'utilisateur en lui demandant quel rôle utiliser (dans le cas où il y a plusieurs rôles SAML) : + +`aws-google-auth -u {{exemple@exemple.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a` + +- Résous les alias pour des comptes AWS : + +`aws-google-auth -u {{exemple@exemple.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a --resolve-aliases` + +- Affiche l'aide : + +`aws-google-auth -h` diff --git a/pages.fr/common/aws-help.md b/pages.fr/common/aws-help.md new file mode 100644 index 00000000000000..1295a6fa573e76 --- /dev/null +++ b/pages.fr/common/aws-help.md @@ -0,0 +1,16 @@ +# aws help + +> Affiche l'aide sur la CLI AWS. +> Plus d'informations : . + +- Affiche l'aide : + +`aws help` + +- Liste tous les sujets disponibles : + +`aws help topics` + +- Affiche l'aide à propos d'un sujet particulier : + +`aws help {{nom_du_sujet}}` diff --git a/pages.fr/common/aws-history.md b/pages.fr/common/aws-history.md new file mode 100644 index 00000000000000..b06719348b91a9 --- /dev/null +++ b/pages.fr/common/aws-history.md @@ -0,0 +1,12 @@ +# aws history + +> Affiche l'historique de l'outil en ligne de commandes aws (l'enregistrement de l'historique de aws cli doit avoir été préalablement activé). +> Plus d'informations : . + +- Liste l'historique des commandes avec leurs identifiants : + +`aws history list` + +- Affiche les événements liés à une commande spécifiée par son identifiant : + +`aws history show {{identifiant_commande}}` diff --git a/pages.fr/common/aws-iam.md b/pages.fr/common/aws-iam.md new file mode 100644 index 00000000000000..ae6c97e92e970c --- /dev/null +++ b/pages.fr/common/aws-iam.md @@ -0,0 +1,36 @@ +# aws iam + +> CLI pour AWS IAM. +> Plus d'informations : . + +- Affiche la page d'aide pour `aws iam` (avec toutes les commandes iam disponibles) : + +`aws iam help` + +- Liste les utilisateurs : + +`aws iam list-users` + +- Liste les politiques : + +`aws iam list-policies` + +- Liste les groupes : + +`aws iam list-groups` + +- Récupère les utilisateurs dans un groupe : + +`aws iam get-group --group-name {{nom_du_groupe}}` + +- Décris une politique IAM : + +`aws iam get-policy --policy-arn arn:aws:iam::aws:policy/{{nom_de_la_politique}}` + +- Liste les clés d’accès : + +`aws iam list-access-keys` + +- Liste les clés d'accès pour un utilisateur spécifique : + +`aws iam list-access-keys --user-name {{nom_d_utilisateur}}` diff --git a/pages.fr/common/aws-kinesis.md b/pages.fr/common/aws-kinesis.md new file mode 100644 index 00000000000000..360b6a8421e516 --- /dev/null +++ b/pages.fr/common/aws-kinesis.md @@ -0,0 +1,28 @@ +# aws kinesis + +> CLI officiel d'AWS pour les services de streaming d'Amazon Kinesis. +> Plus d'informations : . + +- Affiche tous les streams du compte : + +`aws kinesis list-streams` + +- Écris une entrée dans le stream Kinesis : + +`aws kinesis put-record --stream-name {{nom}} --partition-key {{clé}} --data {{message_encodé_en_base64}}` + +- Écris une entrée dans le stream Kinesis avec un encodage base64 inline : + +`aws kinesis put-record --stream-name {{nom}} --partition-key {{clé}} --data "$( echo "{{mon message}}" | base64 )"` + +- Liste tous les fragments disponible dans un stream : + +`aws kinesis list-shards --stream-name {{nom}}` + +- Récupère un fragment pour lire depuis le plus vieux message dans la stream de ce dernier : + +`aws kinesis get-shard-iterator --shard-iterator-type TRIM_HORIZON --stream-name {{nom}} --shard-id {{id}}` + +- Lis les entrées d'un fragment en utilisant un itérateur de fragment : + +`aws kinesis get-records --shard-iterator {{itérateur}}` diff --git a/pages.fr/common/aws-lambda.md b/pages.fr/common/aws-lambda.md new file mode 100644 index 00000000000000..9c2e6713ff3c41 --- /dev/null +++ b/pages.fr/common/aws-lambda.md @@ -0,0 +1,32 @@ +# aws lambda + +> CLI pour AWS lambda. +> Plus d'informations : . + +- Lance une fonction : + +`aws lambda invoke --function-name {{nom}} {{chemin/vers/la/réponse}}.json` + +- Lance une fonction avec pour donnée d'entrée, un document JSON : + +`aws lambda invoke --function-name {{nom}} --payload {{json}} {{chemin/vers/la/réponse}}.json` + +- Liste les fonctions : + +`aws lambda list-functions` + +- Affiche la configuration d'une fonction : + +`aws lambda get-function-configuration --function-name {{nom}}` + +- Affiche les alias d'une fonction : + +`aws lambda list-aliases --function-name {{nom}}` + +- Affiche la configuration de concurrence pour une fonction : + +`aws lambda get-function-concurrency --function-name {{nom}}` + +- Affiche quel service AWS peut appeler une fonction : + +`aws lambda get-policy --function-name {{nom}}` diff --git a/pages.fr/common/aws-quicksight.md b/pages.fr/common/aws-quicksight.md new file mode 100644 index 00000000000000..fb259b820c8a00 --- /dev/null +++ b/pages.fr/common/aws-quicksight.md @@ -0,0 +1,29 @@ +# aws quicksight + +> CLI pour AWS QuickSight. +> Accès aux entrées QuickSight. +> Plus d'informations : . + +- Liste les datasets: + +`aws quicksight list-data-sets --aws-account-id {{id_compte_aws}}` + +- Liste les utilisateurs : + +`aws quicksight list-users --aws-account-id {{id_compte_aws}} --namespace default` + +- Liste les groupes : + +`aws quicksight list-groups --aws-account-id {{id_compte_aws}} --namespace default` + +- Liste les tableaux de bords : + +`aws quicksight list-dashboards --aws-account-id {{id_compte_aws}}` + +- Affiche les informations détaillées sur un dataset : + +`aws quicksight describe-data-set --aws-account-id {{id_compte_aws}} --data-set-id {{id_data_set}}` + +- Affiche les personnes qui peuvent accéder au dataset et quelles actions ils peuvent effectuer sur ce dernier : + +`aws quicksight describe-data-set-permissions --aws-account-id {{id_compte_aws}} --data-set-id {{id_data_set}}` diff --git a/pages.fr/common/aws-rds.md b/pages.fr/common/aws-rds.md new file mode 100644 index 00000000000000..00e96e61ef5259 --- /dev/null +++ b/pages.fr/common/aws-rds.md @@ -0,0 +1,37 @@ +# aws rds + +> CLI AWS pour Relational Database Service. +> Crée et gère des bases de données relationnelles. +> Plus d'informations : . + +- Affiche l'aide pour une sous-commande RDS donnée : + +`aws rds {{sous_commande}} help` + +- Stoppe une instance : + +`aws rds stop-db-instance --db-instance-identifier {{identifiant_de_l_instance}}` + +- Démarre une nouvelle instance : + +`aws rds start-db-instance --db-instance-identifier {{identifiant_de_l_instance}}` + +- Modifie une instance RDS : + +`aws rds modify-db-instance --db-instance-identifier {{identifiant_de_l_instance}} {{paramètres}} --apply-immediately` + +- Applique les mises à jour à une instance RDS : + +`aws rds apply-pending-maintenance-action --resource-identifier {{arn_de_la_base_de_données}} --apply-action {{mise_à_jour_du_système}} --opt-in-type {{immediate}}` + +- Change l'identifiant d'une instance : + +`aws rds modify-db-instance --db-instance-identifier {{ancien_identifiant_de_l_instance}} --new-db-instance-identifier {{nouvel_identifiant_de_l_instance}}` + +- Redémarre une instance : + +`aws rds reboot-db-instance --db-instance-identifier {{identifiant_de_l_instance}}` + +- Supprime une instance : + +`aws rds delete-db-instance --db-instance-identifier {{identifiant_de_l_instance}} --final-db-snapshot-identifier {{identifiant_de_l_image}} --delete-automated-backups` diff --git a/pages.fr/common/aws-s3.md b/pages.fr/common/aws-s3.md new file mode 100644 index 00000000000000..e08324a5a8e1fe --- /dev/null +++ b/pages.fr/common/aws-s3.md @@ -0,0 +1,28 @@ +# aws s3 + +> CLI pour AWS S3 - fournis du stockage à travers les services web. +> Plus d'informations : . + +- Affiche les fichiers d'un bucket : + +`aws s3 ls {{nom_du_bucket}}` + +- Synchronise les fichiers et dossiers locaux avec un bucket : + +`aws s3 sync {{chemin/vers/les/fichiers}} s3://{{nom_du_bucket}}` + +- Synchronise les fichiers et dossiers d'un bucket avec le ceux en local : + +`aws s3 sync s3://{{nom_du_bucket}} {{chemin/vers/cible}}` + +- Synchronise les fichiers et les dossiers avec des exclusions : + +`aws s3 sync {{chemin/vers/les/fichiers}} s3://{{nom_du_bucket}} --exclude {{chemin/vers/le/fichier}} --exclude {{chemin/vers/le/dossier}}/*` + +- Supprime un fichier d'un bucket : + +`aws s3 rm s3://{{bucket}}/{{chemin/vers/le/fichier}}` + +- Prévisualise uniquement les changements : + +`aws s3 {{n_importe_quelle_commande}} --dryrun` diff --git a/pages.fr/common/aws.md b/pages.fr/common/aws.md new file mode 100644 index 00000000000000..2c0fee09fc7d33 --- /dev/null +++ b/pages.fr/common/aws.md @@ -0,0 +1,37 @@ +# aws + +> La CLI officielle pour Amazon Web Services. +> Certaines commandes comme `aws s3` ont leur propre documentation. +> Plus d'informations : . + +- Configure la ligne de commande AWS : + +`aws configure wizard` + +- Configure la ligne de commande AWS en utilisant le SSO : + +`aws configure sso` + +- Voir l'aide pour une commande AWS : + +`aws {{commande}} help` + +- Récupère l'identité de l'appelant (utilisé pour débogguer les permissions) : + +`aws sts get-caller-identity` + +- Liste les ressources AWS d'une région et affiche le résultat en YAML : + +`aws dynamodb list-tables --region {{us-east-1}} --output yaml` + +- Utilise l'aide automatique au remplissage d'une commande : + +`aws iam create-user --cli-auto-prompt` + +- Utilise un guide interactif pour une ressource AWS : + +`aws dynamodb wizard {{nouvelle_table}}` + +- Génère un squelette CLI en JSON (utile pour l'Infrastructure as Code) : + +`aws dynamodb update-table --generate-cli-skeleton` diff --git a/pages.fr/common/axel.md b/pages.fr/common/axel.md new file mode 100644 index 00000000000000..1f2531350ae59b --- /dev/null +++ b/pages.fr/common/axel.md @@ -0,0 +1,25 @@ +# axel + +> Accélérateur de téléchargement. +> Supporte HTTP, HTTPS, et FTP. +> Plus d'informations : . + +- Télécharge depuis une URL vers un fichier : + +`axel {{url}}` + +- Télécharge et spécifie le nom de fichier : + +`axel {{url}} -o {{nom_de_fichier}}` + +- Télécharge avec plusieurs connections : + +`axel -n {{nombre_de_connections}} {{url}}` + +- Recherche des miroirs : + +`axel -S {{nombre_de_miroirs}} {{url}}` + +- Limite la vitesse de téléchargement (en octets par secondes) : + +`axel -s {{vitesse}} {{url}}` diff --git a/pages.fr/common/az.md b/pages.fr/common/az.md new file mode 100644 index 00000000000000..d4dfba4f0a7a8a --- /dev/null +++ b/pages.fr/common/az.md @@ -0,0 +1,29 @@ +# az + +> La CLI officielle de Microsoft Azure. +> Certaines commandes comme `az login` ont leur propre documentation. +> Plus d'informations : . + +- Connexion à Azure : + +`az login` + +- Gère les informations de souscription azure : + +`az account` + +- Affiche tous les disques managés Azure : + +`az disk list` + +- Liste toutes les machines virtuelles Azure : + +`az vm list` + +- Gère Azure Kubernetes Services: + +`az aks` + +- Gère les ressources réseaux Azure : + +`az network` diff --git a/pages.fr/common/b2sum.md b/pages.fr/common/b2sum.md new file mode 100644 index 00000000000000..e1bc2c87d66889 --- /dev/null +++ b/pages.fr/common/b2sum.md @@ -0,0 +1,28 @@ +# b2sum + +> Calcule les sommes de contrôle cryptographiques BLAKE2. +> Plus d'informations : . + +- Calcule la somme de contrôle BLAKE2 d'un fichier : + +`b2sum {{chemin/vers/fichier}}` + +- Calcule les sommes de contrôle BLAKE2 pour plusieurs fichiers : + +`b2sum {{chemin/vers/fichier1}} {{chemin/vers/fichier2}}` + +- Calcule la somme de contrôle BLAKE2 depuis stdin : + +`{{commande}} | b2sum` + +- Lis un fichier contenant des sommes de contrôle BLAKE2 et des noms de fichier et vérifie que tous les fichiers ont des sommes de contrôle correspondantes : + +`b2sum --check {{chemin/vers/fichier.b2}}` + +- Affiche un message uniquement pour les fichiers manquants ou lorsque la vérification échoue : + +`b2sum --check --quiet {{chemin/vers/fichier.b2}}` + +- N'affiche un message que pour les fichiers pour lesquels la vérification a échoué, en ignorant les fichiers manquants : + +`b2sum --ignore-missing --check --quiet {{chemin/vers/fichier.b2}}` diff --git a/pages.fr/common/babel.md b/pages.fr/common/babel.md new file mode 100644 index 00000000000000..148126219218fd --- /dev/null +++ b/pages.fr/common/babel.md @@ -0,0 +1,36 @@ +# babel + +> Un transpilateur qui convertit du code JavaScript avec la syntaxe ES6/ES7 en syntaxe ES5. +> Plus d'informations : . + +- Transpile une fichier spécifié et affiche le résultat dans la sortie standard : + +`babel {{chemin/vers/fichier}}` + +- Transpile un fichier spécifié et enregistre le résultat dans un autre fichier : + +`babel {{chemin/vers/fichier/d_entrée}} --out-file {{chemin/vers/fichier/de/sortie}}` + +- Transpile un fichier d'entrée à chaque fois qu'il est modifié : + +`babel {{chemin/vers/fichier/d_entrée}} --watch` + +- Transpile tout un dossier et ses fichiers : + +`babel {{chemin/vers/dossier}}` + +- Ignore des fichiers (séparés par une virgule) dans un dossier : + +`babel {{chemin/vers/dossier}} --ignore {{fichiers_ignorés}}` + +- Transpile et minifie la sortie : + +`babel {{chemin/vers/fichier/d_entrée}} --minified` + +- Sélectionne un lot de pré-configuration pour le formatage de sortie : + +`babel {{chemin/vers/fichier/d_entrée}} --presets {{pré-configurations}}` + +- Affiche toutes les options disponibles : + +`babel --help` diff --git a/pages.fr/common/balena.md b/pages.fr/common/balena.md new file mode 100644 index 00000000000000..dc2eefc4e569c9 --- /dev/null +++ b/pages.fr/common/balena.md @@ -0,0 +1,24 @@ +# balena + +> Interagis avec balenaCloud, openBAlena et l'API balena depuis la ligne de commande. +> Plus d'informations : . + +- Connexion à balenaCloud : + +`balena login` + +- Crée une application balenaCloud ou openBalena : + +`balena app create {{nom_d_application}}` + +- Affiche toutes les applications balenaCloud ou openBalena du compte : + +`balena apps` + +- Affiche tous les appareils associés au compte balenaCloud ou openBalena : + +`balena devices` + +- Flash une image balenaOS sur l'appareil local : + +`balena local flash {{chemin/vers/balenaos.img}} --drive {{localisation_de_l_appareil}}` diff --git a/pages.fr/common/base32.md b/pages.fr/common/base32.md index 335d62afc9772e..daeb853352d8aa 100644 --- a/pages.fr/common/base32.md +++ b/pages.fr/common/base32.md @@ -1,13 +1,13 @@ # base32 > Encode ou décode un fichier ou l'entrée standard vers ou depuis la base 32, et retourne le résultat à la sortie standard. -> Plus d'informations : . +> Plus d'informations : . -- Encode un fichier : +- Encode un fichier : `base32 {{fichier}}` -- Décode un fichier : +- Décode un fichier : `base32 --decode {{fichier}}` diff --git a/pages.fr/common/base64.md b/pages.fr/common/base64.md index 10d492aba85320..ec91e42589787e 100644 --- a/pages.fr/common/base64.md +++ b/pages.fr/common/base64.md @@ -1,20 +1,20 @@ # base64 > Encoder ou décoder un fichier ou l'entrée standard en utilisant le codage Base64 à destination de la sortie standard. -> Plus d'informations : . +> Plus d'informations : . -- Encoder un fichier : +- Encode un fichier : `base64 {{fichier}}` -- Décoder un fichier : +- Décode un fichier : `base64 --decode {{fichier}}` -- Encoder depuis stdin : +- Encode depuis stdin : `{{une_commande}} | base64` -- Décoder depuis stdin : +- Décode depuis stdin : `{{une_commande}} | base64 --decode` diff --git a/pages.fr/common/basename.md b/pages.fr/common/basename.md index 7cb9e453246496..3a346222064114 100644 --- a/pages.fr/common/basename.md +++ b/pages.fr/common/basename.md @@ -1,16 +1,16 @@ # basename > Retourne la portion ne contenant pas de dossiers d'un chemin complet. -> Plus d'informations : . +> Plus d'informations : . -- N'afficher que le nom du fichier depuis un chemin : +- N'afficher que le nom du fichier depuis un chemin : `basename {{chemin/vers/fichier}}` -- N'afficher que le nom du dernier répertoire depuis un chemin : +- N'afficher que le nom du dernier répertoire depuis un chemin : `basename {{chemin/vers/répertoire/}}` -- N'afficher que le nom du fichier depuis un chemin, en ôtant un préfixe donné : +- N'afficher que le nom du fichier depuis un chemin, en ôtant un préfixe donné : `basename {{chemin/vers/fichier}} {{suffixe}}` diff --git a/pages.fr/common/bash.md b/pages.fr/common/bash.md new file mode 100644 index 00000000000000..9db2b4d1fe4d95 --- /dev/null +++ b/pages.fr/common/bash.md @@ -0,0 +1,33 @@ +# bash + +> Bourne-Again SHell, un interpréteur de ligne de commande compatible avec `sh`. +> Voir aussi `histexpand` pour l'expansion de l'historique. +> Plus d'informations : . + +- Démarre une session shell interactive : + +`bash` + +- Exécute une commande, puis termine la session : + +`bash -c "{{commande}}"` + +- Exécute un script : + +`bash {{chemin/vers/le/script.sh}}` + +- Exécute un script en affichant chaque commande avant de l'exécuter : + +`bash -x {{chemin/vers/le/script.sh}}` + +- Exécute un script en s'arrêtant à la première erreur : + +`bash -e {{chemin/vers/le/script.sh}}` + +- Lit et exécute des commandes depuis l'entrée standard `stdin` : + +`bash -s` + +- Affiche la version de Bash (`$BASH_VERSION` ne contenant que la version, sans les informations de license): + +`bash --version` diff --git a/pages.fr/common/bat.md b/pages.fr/common/bat.md index 1034e0b3352b8a..16b5f6f5f7cc6b 100644 --- a/pages.fr/common/bat.md +++ b/pages.fr/common/bat.md @@ -1,29 +1,29 @@ # bat > Affiche et concatène le contenu d'un ou plusieurs fichiers. -> Un clon de `cat` avec mise en valeur de la syntaxe et integration avec Git. -> Plus d'informations : . +> Un clone de `cat` avec mise en valeur de la syntaxe et intégration avec Git. +> Plus d'informations : . -- Affiche le contenu d'un fichier sur la sortie standard : +- Affiche le contenu d'un fichier sur la sortie standard : `bat {{fichier}}` -- Concatène le contenu de plusieurs fichiers vers le fichier de destination : +- Concatène le contenu de plusieurs fichiers vers le fichier de destination : `bat {{fichier1}} {{fichier2}} > {{fichier_de_destination}}` -- Ajoute le contenu d'un ficher à la fin du fichier de destination : +- Ajoute le contenu d'un ficher à la fin du fichier de destination : `bat {{fichier1}} {{fichier2}} >> {{fichier_de_destination}}` -- Numérote toutes les lignes affichées : +- Numérote toutes les lignes affichées : `bat -n {{fichier}}` -- Affiche le contenu d'un fichier JSON sur la sortie standard avec mise en valeur de la syntaxe : +- Affiche le contenu d'un fichier JSON sur la sortie standard avec mise en valeur de la syntaxe : `bat --language json {{fichier.json}}` -- Affiche toutes les langages prises en charge : +- Affiche tous les langages pris en charge : `bat --list-languages` diff --git a/pages.fr/common/bc.md b/pages.fr/common/bc.md new file mode 100644 index 00000000000000..3f1d69d434a62f --- /dev/null +++ b/pages.fr/common/bc.md @@ -0,0 +1,29 @@ +# bc + +> Un langage de calcul de précision arbitraire. +> Voir aussi : `dc`. +> Plus d'informations : . + +- Démarre une session interactive : + +`bc` + +- Démarre une session interactive avec la bibliothèque mathématique standard activée : + +`bc --mathlib` + +- Calcule une expression : + +`echo '{{5 / 3}}' | bc` + +- Exécute un script : + +`bc {{chemin/vers/le/script.bc}}` + +- Calcule une expression avec l'échelle spécifiée : + +`echo 'scale = {{10}}; {{5 / 3}}' | bc` + +- Calcule une fonction sinus/cosinus/arctangente/logarithme naturel/exponentielle en utilisant `mathlib` : + +`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib` diff --git a/pages.fr/common/bg.md b/pages.fr/common/bg.md new file mode 100644 index 00000000000000..46af3e56c5f0c0 --- /dev/null +++ b/pages.fr/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> Reprend l'exécution de tâches qui ont été suspendues (en utilisant `Ctrl + Z` par exemple) en arrière-plan. +> Plus d'informations : . + +- Reprend l'exécution de la dernière tâche suspendue en arrière-plan : + +`bg` + +- Reprend l'exécution d'une tâche précise (utiliser `jobs -l` pour obtenir son ID) en arrière-plan : + +`bg %{{job_id}}` diff --git a/pages.fr/common/borg.md b/pages.fr/common/borg.md index 367d7f62ef9e48..59ee691b19a983 100644 --- a/pages.fr/common/borg.md +++ b/pages.fr/common/borg.md @@ -1,33 +1,33 @@ # borg -> Outil de sauvegarde avec déduplication. +> Outil de sauvegarde avec dé-duplication. > Crée des sauvegardes distantes ou locales qui peuvent être montées comme un système de fichiers. -> Plus d'informations : . +> Plus d'informations : . -- Initialise un dépôt local : +- Initialise un dépôt local : `borg init {{/chemin/vers/repertoire_du_depot}}` -- Sauvegarde un répertoire dans le dépôt en créant une archive appelée "Lundi" : +- Sauvegarde un répertoire dans le dépôt en créant une archive appelée "Lundi" : `borg create --progress {{/chemin/vers/repertoire_du_depot}}::{{Lundi}} {{/chemin/vers/repertoire_source}}` -- Liste toutes les archives d'un dépôt : +- Liste toutes les archives d'un dépôt : `borg list {{/chemin/vers/repertoire_du_depot}}` -- Extrait un répertoire donné de l'archive nommée "Lundi" à partir d'un dépôt distant tout en excluant tous les fichiers *.ext : +- Extrait un répertoire donné de l'archive nommée "Lundi" à partir d'un dépôt distant tout en excluant tous les fichiers *.ext : `borg extract {{utilisateur}}@{{hote}}:{{/chemin/vers/repertoire_du_depot}}::{{Lundi}} {{chemin/vers/repertoire_destination}} --exclude '{{*.ext}}'` -- Nettoie un dépôt en effaçant toutes les archives âgées de plus de 7 jours tout en affichant les changements : +- Nettoie un dépôt en effaçant toutes les archives âgées de plus de 7 jours tout en affichant les changements : `borg prune --keep-within {{7d}} --list {{/chemin/vers/repertoire_du_depot}}` -- Monte un dépôt comme un système de fichiers FUSE : +- Monte un dépôt comme un système de fichiers FUSE : `borg mount {{/chemin/vers/repertoire_du_depot}}::{{Lundi}} {{/chemin/vers/point_de_montage}}` -- Affiche l'aide sur la création d'archives : +- Affiche l'aide sur la création d'archives : `borg create --help` diff --git a/pages.fr/common/brew-bundle.md b/pages.fr/common/brew-bundle.md new file mode 100644 index 00000000000000..d6c4b066af5d3c --- /dev/null +++ b/pages.fr/common/brew-bundle.md @@ -0,0 +1,28 @@ +# brew bundle + +> Gestionnaire de paquets pour Homebrew, Homebrew Cask et le Mac App Store. +> Plus d'informations : . + +- Installe tous les paquets listés dans le Brewfile situé dans le dossier courant : + +`brew bundle` + +- Installe tous les paquets listés dans le Brewfile situé au chemin spécifié : + +`brew bundle --file={{chemin/vers/fichier}}` + +- Créé un Brewfile avec tous les paquets installés actuellement : + +`brew bundle dump` + +- Désinstalle tous les paquets non listés dans le Brewfile : + +`brew bundle cleanup --force` + +- Vérifie si il y a un ou plusieurs paquets à installer ou à mettre à jour depuis le Brewfile : + +`brew bundle check` + +- Affiche la liste de toutes les entrées dans un Brewfile : + +`brew bundle list --all` diff --git a/pages.fr/common/brew-cask.md b/pages.fr/common/brew-cask.md new file mode 100644 index 00000000000000..5852a263eb9bdc --- /dev/null +++ b/pages.fr/common/brew-cask.md @@ -0,0 +1,37 @@ +# brew --cask + +> Outil en lignes de commande pour gérer les applications macOS distribuées sous forme de binaires. +> Cette commande remplace `brew cask`, qui a été dépréciée en faveur de `brew --cask`. +> Plus d'informations : . + +- Recherche une formule (c.a.d. un package) et/ou un casks (c.a.d une application native) : + +`brew search {{texte}}` + +- Installe un cask : + +`brew install --cask {{nom_du_cask}}` + +- Liste les casks installés : + +`brew list --cask` + +- Liste les casks installés qui ont une nouvelle version disponible : + +`brew outdated --cask` + +- Met à jour le cask précisé (si aucun nom de cask n'est précisé, tous seront mis à jour) : + +`brew upgrade --cask {{nom_du_cask}}` + +- Désinstalle un cask : + +`brew uninstall --cask {{nom_du_cask}}` + +- Désinstalle un cask et supprime les paramètres et fichiers associés : + +`brew zap --cask {{nom_du_cask}}` + +- Affiche les informations d'un cask en particulier : + +`brew info --cask {{nom_du_cask}}` diff --git a/pages.fr/common/brew.md b/pages.fr/common/brew.md new file mode 100644 index 00000000000000..6b4c5f7dacecaf --- /dev/null +++ b/pages.fr/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> Gestionnaire de paquets pour macOS et Linux. +> Plus d'informations : . + +- Installe la dernière version stable d'une formule ou d'un cask (ajouter `--devel` pour une version de développement): + +`brew install {{formule}}` + +- Liste toutes les formules et les casks installés : + +`brew list` + +- Met à jour une formule ou cask déjà installé (si rien n'est précisé, toutes les formules et tous les casks installés seront mis à jour) : + +`brew upgrade {{formule}}` + +- Récupère la dernière version d'Homebrew et toutes les formules et casks depuis le dépôt source d'Homebrew : + +`brew update` + +- Montre les formules et les casks disposants d'une nouvelle version : + +`brew outdated` + +- Recherche une formule (c.a.d. un package) et/ou un cask (c.a.d une application native) : + +`brew search {{texte}}` + +- Affiche les informations d'une formule ou d'un cask (version, chemin d'installation, dépendances, etc.) : + +`brew info {{formule}}` + +- Vérifie que l'installation locale d'Homebrew n'a pas de problème : + +`brew doctor` diff --git a/pages.fr/common/bundle.md b/pages.fr/common/bundle.md new file mode 100644 index 00000000000000..5ab8ea42aa8977 --- /dev/null +++ b/pages.fr/common/bundle.md @@ -0,0 +1,36 @@ +# bundle + +> Gestionnaire de dépendances pour le langage de programmation Ruby. +> Plus d'informations : . + +- Installe toutes les gems définies dans le `Gemfile` attendu dans le répertoire de travail : + +`bundle install` + +- Exécute une commande dans le contexte du bundle actuel : + +`bundle exec {{commande}} {{arguments}}` + +- Mets à jour toutes les gems selon les règles définies dans le `Gemfile` et régénére le fichier `Gemfile.lock` : + +`bundle update` + +- Mets à jour une ou plusieurs gem(s) spécifique(s) définie(s) dans le `Gemfile` : + +`bundle update {{nom_de_la_gem}} {{nom_de_la_gem}}` + +- Mets à jour une ou plusieurs gem(s) spécifique(s) définie(s) dans le `Gemfile` mais seulement vers la prochaine version de patch : + +`bundle update --patch {{nom_de_la_gem}} {{nom_de_la_gem}}` + +- Mets à jour toutes les gem(s) du groupe donné dans le `Gemfile` : + +`bundle update --group {{nom_groupe}}` + +- Liste les gem(s) installée(s) dans le `Gemfile` avec les nouvelles versions disponibles : + +`bundle outdated` + +- Crée un nouveau squelette de gem : + +`bundle gem {{nom_de_la_gem}}` diff --git a/pages.fr/common/bundler.md b/pages.fr/common/bundler.md new file mode 100644 index 00000000000000..e9ce55b6bf0062 --- /dev/null +++ b/pages.fr/common/bundler.md @@ -0,0 +1,9 @@ +# bundler + +> Gestionnaire de dépendances pour le langage de programmation Ruby. +> `bundler` est un nom commun pour la commande `bundle`, mais pas une commande elle-même. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr bundle` diff --git a/pages.fr/common/cargo.md b/pages.fr/common/cargo.md new file mode 100644 index 00000000000000..1970e61a59e220 --- /dev/null +++ b/pages.fr/common/cargo.md @@ -0,0 +1,37 @@ +# cargo + +> Gestion d'un projet Rust et ses dependences (crates). +> Certaines sous-commandes comme `cargo build` ont leurs propres documentations. +> Plus d'informations : . + +- Rechercher des crates : + +`cargo search {{recherche}}` + +- Installer un crate : + +`cargo install {{nom_du_crate}}` + +- Lister les crates déjà installés : + +`cargo install --list` + +- Créer un nouveau binaire ou librairie du projet Rust dans le dossier courant : + +`cargo init --{{bin|lib}}` + +- Créer un nouveau binaire ou librairie du projet Rust dans un dossier spécifique : + +`cargo new {{chemin/vers/dossier}} --{{bin|lib}}` + +- Compiler le projet Rust dans le dossier courant : + +`cargo build` + +- Compiler le projet Rust dans le dossier courant en utilisant le compilateur nightly : + +`cargo +nightly build` + +- Compiler en utilisant un nombre spécifique de threads (par défaut on prend le nombre de coeurs du CPU) : + +`cargo build --jobs {{nombre_de_threads}}` diff --git a/pages.fr/common/cat.md b/pages.fr/common/cat.md index 635d74bf8d209e..0149673df4ae75 100644 --- a/pages.fr/common/cat.md +++ b/pages.fr/common/cat.md @@ -1,24 +1,24 @@ # cat > Affiche et concatène le contenu d'un ou plusieurs fichiers. -> Plus d'informations : . +> Plus d'informations : . -- Affiche le contenu d'un fichier sur la sortie standard : +- Affiche le contenu d'un fichier sur la sortie standard : `cat {{fichier}}` -- Concatène le contenu de plusieurs fichiers vers le fichier de destination : +- Concatène le contenu de plusieurs fichiers vers le fichier de destination : `cat {{fichier1}} {{fichier2}} > {{fichier_de_destination}}` -- Ajoute le contenu d'un ficher à la fin du fichier de destination : +- Ajoute le contenu d'un ficher à la fin du fichier de destination : `cat {{fichier1}} {{fichier2}} >> {{fichier_de_destination}}` -- Numérote toutes les lignes affichées : +- Numérote toutes les lignes affichées : `cat -n {{fichier}}` -- Affiche les caractères non-imprimables ainsi que les caractères d'espacement (en utilisant le préfixe `M-` prefix si non-ASCII) : +- Affiche les caractères non-imprimables ainsi que les caractères d'espacement (en utilisant le préfixe `M-` si non-ASCII) : `cat -v -t -e {{fichier}}` diff --git a/pages.fr/common/cd.md b/pages.fr/common/cd.md index e6017774213750..50c1d0ea1910df 100644 --- a/pages.fr/common/cd.md +++ b/pages.fr/common/cd.md @@ -1,20 +1,28 @@ # cd -> Modifier le répertoire de travail courant. -> Plus d'informations : . +> Modifie le répertoire de travail actuel. +> Plus d'informations : . -- Se déplacer vers le dossier donné : +- Se déplace vers le répertoire donné : `cd {{chemin/vers/dossier}}` -- Se déplacer vers le répertoire personnel de l'utilisateur actuel : +- Remonte vers le parent du répertoire actuel : + +`cd ..` + +- Se déplace vers le répertoire personnel de l'utilisateur actuel : `cd` -- Remonter vers le parent du répertoire courant : +- Se déplace vers le répertoire personnel de l'utilisateur donné : -`cd ..` +`cd ~{{nom_utilisateur}}` -- Revenir au répertoire précédent : +- Retourne au répertoire précédent : `cd -` + +- Se déplace vers le répertoire racine : + +`cd /` diff --git a/pages.fr/common/chgrp.md b/pages.fr/common/chgrp.md new file mode 100644 index 00000000000000..b4c1c9c7d6a826 --- /dev/null +++ b/pages.fr/common/chgrp.md @@ -0,0 +1,20 @@ +# chgrp + +> Change la propriété de groupe des fichiers et des répertoires. +> Plus d'informations : . + +- Change le groupe propriétaire d'un fichier/répertoire : + +`chgrp {{groupe}} {{chemin/vers/fichier_ou_répertoire}}` + +- Change récursivement le groupe propriétaire d'un répertoire et de son contenu : + +`chgrp -R {{groupe}} {{chemin/vers/répertoire}}` + +- Change le groupe propriétaire d'un lien symbolique : + +`chgrp -h {{groupe}} {{chemin/vers/lien_symbolique}}` + +- Modifie le groupe propriétaire d'un fichier/répertoire pour qu'il corresponde à un fichier de référence : + +`chgrp --reference={{chemin/vers/fichier_référence}} {{chemin/vers/fichier_ou_répertoire}}` diff --git a/pages.fr/common/chmod.md b/pages.fr/common/chmod.md index 83eb27ed52795f..de1d454325e461 100644 --- a/pages.fr/common/chmod.md +++ b/pages.fr/common/chmod.md @@ -1,32 +1,36 @@ # chmod > Modifie les droits d'accès d'un fichier ou d'un répertoire. -> Plus d'informations : . +> Plus d'informations : . -- Donne les droits d'e[x]écution à l'[u]tilisateur auquel le fichier appartient : +- Donne les droits d'e[x]écution à l'[u]tilisateur auquel le fichier appartient : -`chmod u+x {{fichier}}` +`chmod u+x {{chemin/vers/fichier}}` -- Donne à l'utilisateur les droits de lecture (r) et d'écriture (w) sur un fichier/répertoire : +- Donne à l'[u]tilisateur les droits de lecture [r] et d'écriture [w] sur un fichier/répertoire : -`chmod u+rw {{fichier_ou_repertoire}}` +`chmod u+rw {{chemin/vers/fichier_ou_répertoire}}` -- Enlève les droits d'exécution pour le [g]roupe : +- Enlève les droits d'e[x]écution pour le [g]roupe : -`chmod g-x {{fichier}}` +`chmod g-x {{chemin/vers/fichier}}` -- Donne à tous (a) les utilisateurs les droits de lecture et d'exécution : +- Donne à tous [a] les utilisateurs les droits de lecture [r] et d'e[x]écution : -`chmod a+rx {{fichier}}` +`chmod a+rx {{chemin/vers/fichier}}` -- Donne aux autres utilisateurs (qui sont dans un autre groupe) les mêmes droits que ceux du groupe propriétaire : +- Donne aux autres [o] utilisateurs (qui sont dans un autre groupe) les mêmes droits que ceux du [g]roupe propriétaire : -`chmod o=g {{fichier}}` +`chmod o=g {{chemin/vers/fichier}}` -- Retire tous les droits aux autres (o) utilisateurs : +- Retire tous les droits aux autres [o] utilisateurs : -`chmod o= {{fichier}}` +`chmod o= {{chemin/vers/fichier}}` -- Modifie les permissions recursivement en donnant aux membres du groupe et aux autres utilisateurs le droit d'écriture : +- Modifie les permissions récursivement en donnant aux membres du [g]roupe et aux autres [o] utilisateurs le droit d'écriture [w] : -`chmod -R g+w,o+w {{repertoire}}` +`chmod -R g+w,o+w {{chemin/vers/répertoire}}` + +- Donne récursivement à tous [a] les utilisateurs les droits de lecture [r] de fichiers et d'e[X]écution de sous-répertoires à l'intérieur d'un répertoire : + +`chmod -R a+rX {{chemin/vers/répertoire}}` diff --git a/pages.fr/common/chown.md b/pages.fr/common/chown.md index 161f7af909bc83..cd3fa399d1a6de 100644 --- a/pages.fr/common/chown.md +++ b/pages.fr/common/chown.md @@ -1,24 +1,24 @@ # chown > Modifie l'utilisateur et le groupe propriétaire des fichiers et dossiers. -> Plus d'informations : . +> Plus d'informations : . -- Modifie le propriétaire d'un fichier/dossier : +- Modifie le propriétaire d'un fichier/dossier : `chown {{utilisateur}} {{chemin/vers/fichier_ou_dossier}}` -- Modifie l'utilisateur et le groupe propriétaire d'un fichier/dossier : +- Modifie l'utilisateur et le groupe propriétaire d'un fichier/dossier : `chown {{utilisateur}}:{{groupe}} {{chemin/vers/fichier_ou_dossier}}` -- Modifie récursivement le propriétaire d'un dossier et de son contenu : +- Modifie récursivement le propriétaire d'un dossier et de son contenu : `chown -R {{utilisateur}} {{chemin/vers/dossier}}` -- Modifie le propriétaire d'un lien symbolique : +- Modifie le propriétaire d'un lien symbolique : `chown -h {{utilisateur}} {{chemin/vers/lien_symbolique}}` -- Modifie the propriétaire d'un fichuer/dossier pour correspondre à un fichier de référence : +- Modifie le propriétaire d'un fichier / dossier pour correspondre à un fichier de référence : `chown --reference={{chemin/vers/fichier_de_référence}} {{chemin/vers/fichier_ou_dossier}}` diff --git a/pages.fr/common/chromium.md b/pages.fr/common/chromium.md new file mode 100644 index 00000000000000..16db0a09e275cc --- /dev/null +++ b/pages.fr/common/chromium.md @@ -0,0 +1,36 @@ +# chromium + +> Navigateur Web open source principalement développé et maintenu par Google. +> Plus d'informations : . + +- Ouvre une URL ou un fichier spécifique : + +`chromium {{https://exemple.com|chemin/vers/fichier.html}}` + +- Ouvre en mode navigation privée : + +`chromium --incognito {{exemple.com}}` + +- Ouvre dans une nouvelle fenêtre : + +`chromium --new-window {{exemple.com}}` + +- Ouvre en mode application (sans barres d'outils, barre d'URL, boutons, etc) : + +`chromium --app={{https://exemple.com}}` + +- Utilise un serveur proxy : + +`chromium --proxy-server="{{://hostname:66}}" {{exemple.com}}` + +- Ouvre dans un répertoire de profil personnalisé : + +`chromium --user-data-dir={{chemin/vers/répertoire}}` + +- Ouvre sans validation CORS (utile pour tester une API) : + +`chromium --user-data-dir={{chemin/vers/répertoire}} --disable-web-security` + +- Ouvre avec une fenêtre outils de développement pour chaque onglet ouvert : + +`chromium --auto-open-devtools-for-tabs` diff --git a/pages.fr/common/chroot.md b/pages.fr/common/chroot.md new file mode 100644 index 00000000000000..7fe3de11c6eda9 --- /dev/null +++ b/pages.fr/common/chroot.md @@ -0,0 +1,12 @@ +# chroot + +> Exécute une commande ou un shell interactif avec un répertoire racine spécial. +> Plus d'informations : . + +- Exécute la commande en tant que nouveau répertoire racine : + +`chroot {{chemin/vers/nouveau/répertoire/racine}} {{command}}` + +- Spécifie l'utilisateur et le groupe (ID ou nom) à utiliser : + +`chroot --userspec={{utilisateur:groupe}}` diff --git a/pages.fr/common/chsh.md b/pages.fr/common/chsh.md new file mode 100644 index 00000000000000..eaf9272c606499 --- /dev/null +++ b/pages.fr/common/chsh.md @@ -0,0 +1,20 @@ +# chsh + +> Change le shell de connexion de l'utilisateur. +> Plus d'informations : . + +- Change le shell de connexion de l'utilisateur actuel de manière interactive : + +`chsh` + +- Change le shell de connexion de l'utilisateur actuel : + +`chsh -s {{chemin/vers/shell}}` + +- Change le shell de connexion pour un utilisateur donné : + +`chsh -s {{chemin/vers/shell}} {{nom_utilisateur}}` + +- Liste les shells disponibles : + +`chsh --list-shells` diff --git a/pages.fr/common/clamav.md b/pages.fr/common/clamav.md new file mode 100644 index 00000000000000..535cd4680d100b --- /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/clang-cpp.md b/pages.fr/common/clang-cpp.md new file mode 100644 index 00000000000000..dd24e841bc05fc --- /dev/null +++ b/pages.fr/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Cette commande est un alias de `clang++`. + +- Voir la documentation de la commande originale : + +`tldr clang++` diff --git a/pages.fr/common/clear.md b/pages.fr/common/clear.md index dbffd7fc545ff9..339cb598680c4f 100644 --- a/pages.fr/common/clear.md +++ b/pages.fr/common/clear.md @@ -1,20 +1,20 @@ # clear > Efface l'écran du terminal. -> Plus d'informations : . +> Plus d'informations : . -- Effacer l'écran (identique à la séquence Contrôle-L sur une interface bash) : +- Effacer l'écran (identique à la séquence Contrôle-L sur une interface bash) : `clear` -- Effacer l'écran mais conserve le tampon de défilement du terminal : +- Effacer l'écran mais conserve le tampon de défilement du terminal : `clear -x` -- Indiquer le type de terminal à effacer (utilise par défaut la variable d'environnement `TERM`) : +- Indiquer le type de terminal à effacer (utilise par défaut la variable d'environnement `TERM`) : `clear -T {{type_de_terminal}}` -- Afficher la version de `ncurses` utilisée par `clear` : +- Afficher la version de `ncurses` utilisée par `clear` : `clear -V` diff --git a/pages.fr/common/clojure.md b/pages.fr/common/clojure.md new file mode 100644 index 00000000000000..bcc542fcccf5cd --- /dev/null +++ b/pages.fr/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Cette commande est un alias de `clj`. + +- Voir la documentation de la commande originale : + +`tldr clj` diff --git a/pages.fr/common/cmake.md b/pages.fr/common/cmake.md new file mode 100644 index 00000000000000..cf12eb2891502a --- /dev/null +++ b/pages.fr/common/cmake.md @@ -0,0 +1,28 @@ +# cmake + +> Système de construction logicielle multiplateforme, qui permet de générer des recettes de construction pour les systèmes de construction natifs. +> Plus d'informations : . + +- Génère une recette de construction `CMakeLists.txt` depuis le répertoire d'un projet : + +`cmake {{chemin/vers/le/répertoire_du_projet}}` + +- Génère une recette de construction, en définissant le type de construction à `Release` à l'aide d'une variable CMake : + +`cmake {{chemin/vers/le/répertoire_du_projet}} -D {{CMAKE_BUILD_TYPE=Release}}` + +- Utilise une recette déjà générée dans un répertoire donné pour construire les artefacts : + +`cmake --build {{chemin/vers/le/répertoire_de_construction}}` + +- Installe les artefacts de construction dans `/usr/local/` et retirer les symboles de débogage : + +`cmake --install {{chemin/vers/le/répertoire_de_construction}} --strip` + +- Installe les artefacts de construction en utilisant un préfixe personnalisé pour les chemins : + +`cmake --install {{chemin/vers/le/répertoire_de_construction}} --strip --prefix {{chemin/vers/le/répertoire}}` + +- Lance une cible de construction personnalisée : + +`cmake --build {{chemin/vers/le/répertoire_de_construction}} --target {{nom_de_la_cible}}` diff --git a/pages.fr/common/code.md b/pages.fr/common/code.md new file mode 100644 index 00000000000000..254d061153b545 --- /dev/null +++ b/pages.fr/common/code.md @@ -0,0 +1,36 @@ +# code + +> Éditeur de code multiplateforme et extensible. +> Plus d'informations : . + +- Démarre Visual Studio Code : + +`code` + +- Ouvre des fichiers/répertoires spécifiques : + +`code {{chemin/vers/fichier_ou_répertoire1 chemin/vers/fichier_ou_répertoire2 ...}}` + +- Compare deux fichiers spécifiques : + +`code --diff {{chemin/vers/fichier1}} {{chemin/vers/fichier2}}` + +- Ouvre des fichiers/répertoires spécifiques dans une nouvelle fenêtre : + +`code --new-window {{chemin/vers/fichier_ou_répertoire1 chemin/vers/fichier_ou_répertoire2 ...}}` + +- Installe/désinstalle une extension spécifique : + +`code --{{install|uninstall}}-extension {{éditeur.extension}}` + +- Affiche les extensions installées : + +`code --list-extensions` + +- Affiche les extensions installées avec leurs versions : + +`code --list-extensions --show-versions` + +- Démarre l'éditeur en tant que super utilisateur (root) tout en stockant les données utilisateur dans un répertoire spécifique : + +`sudo code --user-data-dir {{chemin/vers/répertoire}}` diff --git a/pages.fr/common/cola.md b/pages.fr/common/cola.md new file mode 100644 index 00000000000000..b27bd8a2342ce0 --- /dev/null +++ b/pages.fr/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Cette commande est un alias de `git-cola`. + +- Voir la documentation de la commande originale : + +`tldr git-cola` diff --git a/pages.fr/common/convert.md b/pages.fr/common/convert.md index 58dc78310d732d..ffd623c9f7b28c 100644 --- a/pages.fr/common/convert.md +++ b/pages.fr/common/convert.md @@ -1,32 +1,32 @@ # convert -> Outil de conversion d'image de Imagemagick. -> Plus d'informations : . +> Outil de conversion d'image d'ImageMagick. +> Plus d'informations : . -- Convertir une image JPG en PNG : +- Convertir une image JPG en PNG : `convert {{image.jpg}} {{image.png}}` -- Redimensionner une image à 50% de ses dimensions d'origine : +- Redimensionner une image à 50% de ses dimensions d'origine : `convert {{image.png}} -resize 50% {{image2.png}}` -- Redimensionner une image en conservant son ratio hauteur/largeur initial pour une taille maximum de 640x480 : +- Redimensionner une image en conservant son ratio hauteur/largeur initial pour une taille maximum de 640x480 : `convert {{image.png}} -resize 640x480 {{image2.png}}` -- Coller plusieurs images horizontallement : +- Coller plusieurs images horizontallement : `convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}` -- Coller plusieurs images verticalement : +- Coller plusieurs images verticalement : `convert {{image1.png}} {{image2.png}} {{image3.png}} -append {{image123.png}}` -- Créer un gif à partir d'une série d'images avec un délai de 100ms entre chaque : +- Créer un gif à partir d'une série d'images avec un délai de 100ms entre chaque : `convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}` -- Créer une image avec un simple arrière-plan uni : +- Créer une image avec un simple arrière-plan uni : `convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}` diff --git a/pages.fr/common/cp.md b/pages.fr/common/cp.md index 7422c87cca5b19..8a79f4576338db 100644 --- a/pages.fr/common/cp.md +++ b/pages.fr/common/cp.md @@ -1,28 +1,28 @@ # cp > Copie des fichiers et des répertoires. -> Plus d'informations : . +> Plus d'informations : . -- Copier un fichier vers un autre emplacement : +- Copier un fichier vers un autre emplacement : `cp {{chemin/vers/fichier_source.ext}} {{chemin/vers/fichier_cible.ext}}` -- Copier un fichier vers un autre répertoire en conservant le nom du fichier : +- Copier un fichier vers un autre répertoire en conservant le nom du fichier : `cp {{chemin/vers/fichier_source.ext}} {{chemin/vers/répertoire_parent_cible}}` -- Copier récursivement le contenu d'un répertoire vers un autre emplacement (si la destination existe, le répertoire est copié à l'intérieur) : +- Copier récursivement le contenu d'un répertoire vers un autre emplacement (si la destination existe, le répertoire est copié à l'intérieur) : `cp -R {{chemin/vers/répertoire_source}} {{chemin/vers/répertoire_cible}}` -- Copier un répertoire récursivement, en mode verbeux (affiche les fichiers au fur et à mesure de leur copie) : +- Copier un répertoire récursivement, en mode verbeux (affiche les fichiers au fur et à mesure de leur copie) : `cp -vR {{chemin/vers/répertoire_source}} {{chemin/vers/répertoire_cible}}` -- Copier les fichiers texte vers un autre emplacement, en mode interactif (demande confirmation avant d'écraser) : +- Copier les fichiers texte vers un autre emplacement, en mode interactif (demande confirmation avant d'écraser) : `cp -i {{*.txt}} {{chemin/vers/répertoire_cible}}` -- Déréférencer les liens symboliques avant de copier : +- Déréférencer les liens symboliques avant de copier : `cp -L {{link}} {{chemin/vers/répertoire_cible}}` diff --git a/pages.fr/common/cron.md b/pages.fr/common/cron.md new file mode 100644 index 00000000000000..38e646d35dc5a5 --- /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/curl.md b/pages.fr/common/curl.md new file mode 100644 index 00000000000000..5facdcf3bf0583 --- /dev/null +++ b/pages.fr/common/curl.md @@ -0,0 +1,37 @@ +# curl + +> Transfère des données depuis ou vers un serveur. +> Accepte la plupart des protocoles, notamment HTTP, FTP et POP3. +> Plus d'informations : . + +- Télécharger le contenu d'une URL dans un fichier : + +`curl {{http://exemple.fr}} --output {{nom_fichier}}` + +- Télécharger le contenu d'une URL dans un fichier nommé comme indiqué par l'URL : + +`curl --remote-name {{http://exemple.fr/nom_fichier}}` + +- Télécharger un fichier, en suivant les redirections, et poursuivre (reprendre) automatiquement un transfert de fichier précédent et renvoyer une erreur lors d'erreurs serveurs : + +`curl --fail --remote-name --location --continue-at - {{http://exemple.fr/nom_fichier}}` + +- Envoyer des données de formulaire encodées (requête POST de type `application/x-www-form-urlencoded`). Utiliser `--data @file_name` ou `--data @'-'` pour lire depuis STDIN : + +`curl --data {{'nom=bob'}} {{http://exemple.fr/formulaire}}` + +- Envoyer une requête avec un en-tête supplémentaire, en spécifiant la méthode HTTP : + +`curl --header {{'X-Mon-En-Tete: 123'}} --request {{PUT}} {{http://exemple.fr}}` + +- Envoyez des données au format JSON, en spécifiant l'en-tête content-type adéquate : + +`curl --data {{'{"nom":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://exemple.fr/utilisateurs/1234}}` + +- Fournir un nom d'utilisateur et un mot de passe pour une authentification auprès du serveur : + +`curl --user identifiant:motdepasse {{http://exemple.fr}}` + +- Fournir le certificat et la clé du client pour une ressource, en évitant la validation du certificat : + +`curl --cert {{client.pem}} --key {{cle.pem}} --insecure {{https://exemple.fr}}` diff --git a/pages.fr/common/dart.md b/pages.fr/common/dart.md new file mode 100644 index 00000000000000..9e9b9fb0667ae4 --- /dev/null +++ b/pages.fr/common/dart.md @@ -0,0 +1,28 @@ +# dart + +> Ligne de commande pour gérer un projet Dart. +> Plus d'informations : . + +- Initialise un nouveau projet Dart dans un dossier du même nom : + +`dart create {{nom_du_projet}}` + +- Exécuter un fichier Dart : + +`dart run {{chemin/vers/fichier.dart}}` + +- Télécharger les dépendences pour le projet courant : + +`dart pub get` + +- Exécuter les tests unitaire pour le projet courant : + +`dart test` + +- Mettre à jour les dépendances d'un projet pour supporter null-safety : + +`dart pun upgrade --null-safety` + +- Compiler un fichier Dart vers un binaire natif : + +`dart compile exe {{chemin/vers/fichier.dart}}` diff --git a/pages.fr/common/dash.md b/pages.fr/common/dash.md new file mode 100644 index 00000000000000..1866642016b2d3 --- /dev/null +++ b/pages.fr/common/dash.md @@ -0,0 +1,28 @@ +# dash + +> Debian Almquist SHell, une implémentation de `sh` moderne, conforme à POSIX (non compatible avec Bash). +> Plus d'informations : . + +- Démarre une session shell interactive : + +`dash` + +- Exécute une commande, puis termine la session : + +`dash -c "{{commande}}"` + +- Exécute un script : + +`dash {{chemin/vers/le/script.sh}}` + +- Exécute un script en affichant chaque commande avant de l'exécuter : + +`dash -x {{chemin/vers/le/script.sh}}` + +- Exécute un script en s'arrêtant à la première erreur : + +`dash -e {{chemin/vers/le/script.sh}}` + +- Lit et exécute des commandes depuis l'entrée standard `stdin` : + +`dash -s` diff --git a/pages.fr/common/deluge.md b/pages.fr/common/deluge.md index 9973b4874c59b5..6af81957a43373 100644 --- a/pages.fr/common/deluge.md +++ b/pages.fr/common/deluge.md @@ -1,20 +1,20 @@ # deluge > Client BitTorrent à base de ligne de commande. -> Plus d'informations : . +> Plus d'informations : . -- Télécharge un torrent : +- Télécharge un torrent : `deluge {{url|magnet|chemin/vers/fichier}}` -- Télécharge un torrent à l'aide d'un fichier de configuration particulier : +- Télécharge un torrent à l'aide d'un fichier de configuration particulier : `deluge -c {{chemin/vers/fichier_configuration}} {{url|magnet|chemin/vers/fichier}}` -- Télécharge un torrent et lance un interface usager particulier : +- Télécharge un torrent et lance un interface usager particulier : `deluge -u {{gtk|web|console}} {{url|magnet|chemin/vers/fichier}}` -- Télécharge un torrent et enregistre les journaux dans un ficher : +- Télécharge un torrent et enregistre les journaux dans un ficher : `deluge -l {{chemin/vers/fichier_journalisation}} {{url|magnet|chemin/vers/fichier}}` diff --git a/pages.fr/common/deluged.md b/pages.fr/common/deluged.md index 630aa2a463dfac..99a9889c529560 100644 --- a/pages.fr/common/deluged.md +++ b/pages.fr/common/deluged.md @@ -1,20 +1,20 @@ # deluged > Un processus démon pour le client BitTorrent Deluge. -> Plus d'informations : . +> Plus d'informations : . -- Lance le démon Deluge : +- Lance le démon Deluge : `deluged` -- Lance le démon Deluge sur un port spécifique : +- Lance le démon Deluge sur un port spécifique : `deluged -p {{port}}` -- Lance le démon Deluge à l'aide d'un fichier de configuration spécifique : +- Lance le démon Deluge à l'aide d'un fichier de configuration spécifique : `deluged -c {{chemin/vers/fichier_configuration}}` -- Lance le démon Deluge et enregistre les journaux dans un fichier : +- Lance le démon Deluge et enregistre les journaux dans un fichier : `deluged -l {{chemin/vers/fichier_journalisation}}` diff --git a/pages.fr/common/df.md b/pages.fr/common/df.md index f174ad5fe1aa9c..bda19045bd0895 100644 --- a/pages.fr/common/df.md +++ b/pages.fr/common/df.md @@ -1,24 +1,24 @@ # df > Montre un aperçu de l'utilisation de l'espace disque. -> Plus d'informations : . +> Plus d'informations : . -- Afficher tous les systèmes de fichiers et leur utilisation d'espace disque : +- Afficher tous les systèmes de fichiers et leur utilisation d'espace disque : `df` -- Afficher tous les systèmes de fichiers et leur utilisation d'espace disque dans un format plus facilement : +- Afficher tous les systèmes de fichiers et leur utilisation d'espace disque dans un format plus facilement : `df -h` -- Afficher le système de fichiers et son utilisation d'espace disque rattaché au chemin donné : +- Afficher le système de fichiers et son utilisation d'espace disque rattaché au chemin donné : `df {{chemin/vers/fichier_ou_dossier}}` -- Afficher des statistiques sur le nombre d'inodes disponibles : +- Afficher des statistiques sur le nombre d'inodes disponibles : `df -i` -- Afficher les systèmes de fichiers sauf ceux de types spécifiques : +- Afficher les systèmes de fichiers sauf ceux de types spécifiques : `df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.fr/common/diff.md b/pages.fr/common/diff.md new file mode 100644 index 00000000000000..f204ea5257053b --- /dev/null +++ b/pages.fr/common/diff.md @@ -0,0 +1,32 @@ +# diff + +> Compare deux fichiers ou répertoires. +> Plus d'informations : . + +- Compare deux fichiers (liste les changements pour transformer `ancien_fichier` en `nouveau_fichier`) : + +`diff {{ancien_fichier}} {{nouveau_fichier}}` + +- Compare deux fichiers, en ignorant l'espacement : + +`diff --ignore-all-space {{ancien_fichier}} {{nouveau_fichier}}` + +- Compare deux fichiers, en affichant différences côte à côte : + +`diff --side-by-side {{ancien_fichier}} {{nouveau_fichier}}` + +- Compare deux fichiers, en affichant les différences dans un format unifié (comme `git diff`) : + +`diff --unified {{ancien_fichier}} {{nouveau_fichier}}` + +- Compare récursivement deux répertoires directories (affiche les noms de fichiers et de répertoires divergents ainsi que les modifications de fichiers) : + +`diff --recursive {{ancien_répertoire}} {{nouveau_répertoire}}` + +- Compare deux répertoires, en affichant uniquement les fichiers qui diffèrent : + +`diff --recursive --brief {{ancien_répertoire}} {{nouveau_répertoire}}` + +- Crée un fichier patch des différences entre deux fichiers texte pour Git, en traitant les fichiers inexistants comme fichiers vides : + +`diff --text --unified --new-file {{ancien_fichier}} {{nouveau_fichier}} > {{diff.patch}}` diff --git a/pages.fr/common/docker-build.md b/pages.fr/common/docker-build.md index 417bc68c75f32c..04f465e661dbaa 100644 --- a/pages.fr/common/docker-build.md +++ b/pages.fr/common/docker-build.md @@ -1,28 +1,32 @@ # docker-build -> Construis une image à partir d'un Dockerfile. -> Plus d'informations : . +> Construit une image à partir d'un Dockerfile. +> Plus d'informations : . -- Construis une image Docker en utilisant le Dockerfile du répertoire courant : +- Construire une image Docker en utilisant le Dockerfile du répertoire courant : `docker build .` -- Construis une image Docker à partir d'un Dockerfile situé à une URL précisée : +- Construire une image Docker à partir d'un Dockerfile situé à une URL précisée : `docker build {{github.com/creack/docker-firefox}}` -- Construis une image Docker et l'étiquette : +- Construire une image Docker et l'étiquette : `docker build --tag {{nom:etiquette}} .` -- N'utilise pas le cache lors de la construction de l'image : +- Construit une image docker sans contexte de construction : + +`docker build --tag {{nom:etiquette}} - < {{Dockerfile}}` + +- Ne pas utiliser le cache lors de la construction de l'image : `docker build --no-cache --tag {{nom:etiquette}} .` -- Construis une image Docker utilisant un Dockerfile spécifique : +- Construire une image Docker utilisant un Dockerfile spécifique : `docker build --file {{Dockerfile}} .` -- Construis avec des variables personnalisées définies à la volée : +- Construire avec des variables personnalisées définies à la volée : `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.fr/common/docker-commit.md b/pages.fr/common/docker-commit.md new file mode 100644 index 00000000000000..8152c2cddfe4aa --- /dev/null +++ b/pages.fr/common/docker-commit.md @@ -0,0 +1,32 @@ +# docker commit + +> Créer une nouvelle image depuis les changement d'un conteneur. +> Plus d'informations : . + +- Créer une image à partir d'un conteneur spécifique : + +`docker commit {{conteneur}} {{image}}:{{etiquette}}` + +- Appliquer une instruction `CMD` du Dockerfile à l'image créée : + +`docker commit --change="CMD {{commande}}" {{conteneur}} {{image}}:{{etiquette}}` + +- Appliquer une instruction `ENV` du Dockerfile à l'image créée : + +`docker commit --change="ENV {{name}}={{value}}" {{conteneur}} {{image}}:{{etiquette}}` + +- Créer une image avec un auteur spécifique dans les métadonnées : + +`docker commit --author="{{auteur}}" {{conteneur}} {{image}}:{{etiquette}}` + +- Créer une image avec un commentaire spécifique dans les métadonnées : + +`docker commit --message="{{commentaire}}" {{conteneur}} {{image}}:{{etiquette}}` + +- Créer une image sans mettre en pause le conteneur pendant la création : + +`docker commit --pause={{false}} {{conteneur}} {{image}}:{{etiquette}}` + +- Afficher l'aide : + +`docker commit --help` diff --git a/pages.fr/common/docker-compose.md b/pages.fr/common/docker-compose.md index 848a6939dffe0b..3eeb586889e88d 100644 --- a/pages.fr/common/docker-compose.md +++ b/pages.fr/common/docker-compose.md @@ -1,32 +1,36 @@ -# docker-compose +# docker compose > Exécute et gère des applications au travers de plusieurs conteneurs Docker. -> Plus d'informations : . +> Plus d'informations : . -- Liste tous les conteneurs en cours d'exécution : +- Liste tous les conteneurs en cours d'exécution : -`docker-compose ps` +`docker compose ps` -- Crée et démarre en arrière-plan tous les conteneurs décrits dans le fichier `docker-compose.yml` du répertoire courant : +- 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 : +- Démarre tous les conteneurs après les avoir recréés si nécessaire : -`docker-compose up --build` +`docker compose up --build` -- Démarre tous les conteneurs spécifiés dans un fichier compose alternatif : +- Démarre tous les conteneurs spécifiés dans un fichier compose alternatif : -`docker-compose --file {{chemin/vers/fichier}} up` +`docker compose --file {{chemin/vers/fichier}} up` -- Arrête tous les conteneurs en cours d'exécution : +- Arrête tous les conteneurs en cours d'exécution : -`docker-compose stop` +`docker compose stop` -- Arrête et supprime tous les conteneurs, réseaux, images et volumes : +- Arrête et supprime tous les conteneurs, réseaux, images et volumes : -`docker-compose down --rmi all --volumes` +`docker compose down --rmi all --volumes` -- Affiche et suit la journalisation de tous les conteneurs : +- Affiche et suit la journalisation de tous les conteneurs : -`docker-compose logs --follow` +`docker compose logs --follow` + +- Affiche et suit la journalisation pour un conteneurs spécifique : + +`docker compose logs --follow {{nom_container}}` diff --git a/pages.fr/common/docker-container.md b/pages.fr/common/docker-container.md index 2e630710e2cc50..f9f8fbf01dc04a 100644 --- a/pages.fr/common/docker-container.md +++ b/pages.fr/common/docker-container.md @@ -1,36 +1,36 @@ # docker container > Gère les conteneurs Docker. -> Plus d'informations : . +> Plus d'informations : . -- Liste les conteneurs Dockers en cours d'exécution : +- Liste les conteneurs Dockers en cours d'exécution : `docker container ls` -- Démarre un ou plusieurs conteneur arrêtés : +- Démarre un ou plusieurs conteneur arrêtés : `docker container start {{nom_conteneur_1}} {{nom_conteneur_2}}` -- Tue un ou plusieurs conteneurs en cours d'exécution : +- Tue un ou plusieurs conteneurs en cours d'exécution : `docker container kill {{nom_conteneur}}` -- Arrête un ou plusieurs conteneurs en cours d'exécution : +- Arrête un ou plusieurs conteneurs en cours d'exécution : `docker container stop {{nom_conteneur}}` -- Mets en pause tous les processus d'un ou plusieurs conteneurs : +- Mets en pause tous les processus d'un ou plusieurs conteneurs : `docker container pause {{nom_conteneur}}` -- Affiche des informations détaillées sur un ou plusieurs conteneurs : +- Affiche des informations détaillées sur un ou plusieurs conteneurs : `docker container inspect {{nom_conteneur}}` -- Exporte le système de fichiers d'un conteneur sous forme d'archive Tar : +- Exporte le système de fichiers d'un conteneur sous forme d'archive Tar : `docker container export {{nom_conteneur}}` -- Crée une nouvelle image à partir des changements d'un conteneur : +- Crée une nouvelle image à partir des changements d'un conteneur : `docker container commit {{nom_conteneur}}` diff --git a/pages.fr/common/docker-cp.md b/pages.fr/common/docker-cp.md new file mode 100644 index 00000000000000..3150af425da67c --- /dev/null +++ b/pages.fr/common/docker-cp.md @@ -0,0 +1,16 @@ +# docker cp + +> Copier des fichiers ou des répertoires entre les systèmes de fichiers hôte et conteneur. +> Plus d'informations : . + +- 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}}` + +- 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}` + +- 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) : + +`docker cp --follow-link {{chemin/vers/le_lien_symbolique_de_l_hote}} {{nom_du_conteneur}}:{{chemin/vers/le_fichier_ou_le_dossier_de_conteneur}}` diff --git a/pages.fr/common/docker-exec.md b/pages.fr/common/docker-exec.md new file mode 100644 index 00000000000000..8105f9ef1b5557 --- /dev/null +++ b/pages.fr/common/docker-exec.md @@ -0,0 +1,28 @@ +# docker exec + +> Exécute une commande dans un conteneur déjà en cours d'exécution. +> Plus d'informations : . + +- Entrer dans un shell interactif dans un conteneur en cours d'exécution : + +`docker exec --interactive --tty {{nom_du_conteneur}} {{/bin/bash}}` + +- Exécuter une commande en arrière-plan (détachée) dans un conteneur en cours d'exécution : + +`docker exec --detach {{nom_du_conteneur}} {{commande}}` + +- Sélectionner le répertoire de travail pour une commande donnée à exécuter : + +`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 : + +`docker exec --interactive --detach {{nom_du_conteneur}} {{commande}}` + +- Définir une variable d'environnement dans une session Bash en cours d'exécution : + +`docker exec --interactive --tty --env {{variable_d_environnement}}={{valeur}} {{nom_du_conteneur}} {{/bin/bash}}` + +- Exécuter une commande en tant qu'utilisateur spécifique : + +`docker exec --user {{utilisateur}} {{nom_du_conteneur}} {{commande}}` diff --git a/pages.fr/common/docker-image.md b/pages.fr/common/docker-image.md new file mode 100644 index 00000000000000..4916eb5029252d --- /dev/null +++ b/pages.fr/common/docker-image.md @@ -0,0 +1,21 @@ +# docker image + +> Gérer les images Docker. +> Voir aussi `docker build`, `docker import`, and `docker pull`. +> Plus d'informations : . + +- Lister les images Docker locales : + +`docker image ls` + +- Supprimer les images Docker locales inutilisées : + +`docker image prune` + +- Supprimer toutes les images inutilisées (pas seulement celles sans étiquette) : + +`docker image prune --all` + +- Afficher l'historique d'une image Docker locale : + +`docker image history {{image}}` diff --git a/pages.fr/common/docker-images.md b/pages.fr/common/docker-images.md new file mode 100644 index 00000000000000..83790da4929cc8 --- /dev/null +++ b/pages.fr/common/docker-images.md @@ -0,0 +1,24 @@ +# docker images + +> Gérer les images Docker. +> Plus d'informations : . + +- Lister toutes les images Docker : + +`docker images` + +- Lister toutes les images Docker, y compris les intermédiaires : + +`docker images --all` + +- Lister les images Docker en mode silencieux (seulement les IDs numériques) : + +`docker images --quiet` + +- Lister toutes les images Docker non utilisées par un conteneur : + +`docker images --filter dangling=true` + +- Lister les images Docker qui contiennent une sous-chaîne dans leur nom : + +`docker images "{{*nom*}}"` diff --git a/pages.fr/common/docker-inspect.md b/pages.fr/common/docker-inspect.md new file mode 100644 index 00000000000000..a8b8a141124463 --- /dev/null +++ b/pages.fr/common/docker-inspect.md @@ -0,0 +1,32 @@ +# docker inspect + +> Retour d'informations de bas niveau sur les objets Docker. +> Plus d'informations : . + +- Montrer l'aide : + +`docker inspect` + +- Afficher les informations de configuration d'un conteneur, image ou volume en utilisant un nom ou un ID : + +`docker inspect {{conteneur|image|ID}}` + +- Afficher l'adresse IP d'un conteneur : + +`docker inspect --format='{{range .NetworkSettings.Networks}} {{.IPAddress}}{{end}}' {{conteneur}}` + +- Afficher le chemin du fichier journal d'un conteneur : + +`docker inspect --format='{{.LogPath}}' {{conteneur}}` + +- Afficher le nom de l'image d'un conteneur : + +`docker inspect --format='{{.Config.Image}}' {{conteneur}}` + +- Afficher les informations de configuration en JSON : + +`docker inspect --format='{{json .Config}}' {{conteneur}}` + +- Afficher toutes les liaisons de port : + +`docker inspect --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' {{conteneur}}` diff --git a/pages.fr/common/docker-login.md b/pages.fr/common/docker-login.md new file mode 100644 index 00000000000000..f2d87510a51d44 --- /dev/null +++ b/pages.fr/common/docker-login.md @@ -0,0 +1,20 @@ +# docker login + +> Se connecter à un registre Docker. +> Plus d'informations : . + +- Se connecter de manière interactive à un registre : + +`docker login` + +- Se connecter à un registre avec un nom d'utilisateur spécifique (l'utilisateur sera invité à saisir un mot de passe) : + +`docker login --username {{nom_d_utilisateur}}` + +- Se connecter à un registre avec un nom d'utilisateur et un mot de passe spécifiques : + +`docker login --username {{nom_d_utilisateur}} --password {{mot_de_passe}} {{serveur}}` + +- Se connecter à un registre avec un mot de passe depuis l'entrée standard : + +`echo "{{mot_de_passe}}" | docker login --username {{nom_d_utilisateur}} --password-stdin` diff --git a/pages.fr/common/docker-logs.md b/pages.fr/common/docker-logs.md new file mode 100644 index 00000000000000..dbc22c26e6f89d --- /dev/null +++ b/pages.fr/common/docker-logs.md @@ -0,0 +1,24 @@ +# docker logs + +> Affiche les journaux d'un conteneur. +> Plus d'informations : . + +- Afficher les journaux d'un conteneur : + +`docker logs {{nom_du_conteneur}}` + +- Afficher les journaux d'un conteneur en les suivants : + +`docker logs -f {{nom_du_conteneur}}` + +- Afficher les 5 dernière lignes des journaux d'un conteneur : + +`docker logs {{nom_du_conteneur}} --tail {{5}}` + +- Afficher les journaux d'un conteneur avec l'horodatage : + +`docker logs -t {{nom_du_conteneur}}` + +- Afficher les journaux d'un conteneur depuis un certain temps (i.e. 23m, 10s, 2013-01-02T13:23:37) : + +`docker logs {{nom_du_conteneur}} --until {{temps}}` diff --git a/pages.fr/common/docker-machine.md b/pages.fr/common/docker-machine.md new file mode 100644 index 00000000000000..3be7960980e46f --- /dev/null +++ b/pages.fr/common/docker-machine.md @@ -0,0 +1,28 @@ +# docker-machine + +> Créer et gérer des machines qui exécutent Docker. +> Plus d'informations : . + +- Lister les machines Docker actuellement en cours d'exécution: + +`docker-machine ls` + +- Créer une nouvelle machine Docker avec un nom spécifique: + +`docker-machine create {{nom}}` + +- Récupérer les informations d'une machine Docker: + +`docker-machine status {{nom}}` + +- Démarrer une machine Docker: + +`docker-machine start {{nom}}` + +- Arrêter une machine Docker: + +`docker-machine stop {{nom}}` + +- Inspecter les informations d'une machine Docker: + +`docker-machine inspect {{nom}}` diff --git a/pages.fr/common/docker-network.md b/pages.fr/common/docker-network.md new file mode 100644 index 00000000000000..9deb6580e85e1b --- /dev/null +++ b/pages.fr/common/docker-network.md @@ -0,0 +1,32 @@ +# docker network + +> Créer et gérer des réseaux Docker. +> Plus d'informations : . + +- Lister tous les réseaux disponible et configuré du service Docker : + +`docker network ls` + +- Créer un réseau défini par l'utilisateur : + +`docker network create --driver {{nom_du_driver}} {{nom_du_reseau}}` + +- Afficher les informations détaillées des réseaux séparés par des espaces : + +`docker network inspect {{nom_du_reseau}}` + +- Connecter un conteneur à un réseau en utilisant un nom ou un ID : + +`docker network connect {{nom_du_reseau}} {{nom_du_conteneur|ID}}` + +- Déconnecter un conteneur d'un réseau en utilisant un nom ou un ID : + +`docker network disconnect {{nom_du_reseau}} {{nom_du_conteneur|ID}}` + +- Supprimer tous les réseaux non utilisés (non reliés à un conteneur) : + +`docker network prune` + +- Supprimer les réseaux séparés par des espaces : + +`docker network rm {{nom_du_reseau}}` diff --git a/pages.fr/common/docker-ps.md b/pages.fr/common/docker-ps.md new file mode 100644 index 00000000000000..bda4aeb61209c2 --- /dev/null +++ b/pages.fr/common/docker-ps.md @@ -0,0 +1,36 @@ +# docker ps + +> Lister les conteneurs Docker. +> Plus d'informations : . + +- Lister les conteneurs Docker en cours d'exécution : + +`docker ps` + +- Lister tous les conteneurs Docker (en cours d'exécution et arrêtés) : + +`docker ps --all` + +- Afficher le dernier conteneur Docker créé (avec tous les états) : + +`docker ps --latest` + +- Afficher les conteneurs avec une chaine de caractère dans leur nom : + +`docker ps --filter="name={{name}}"` + +- Afficher les conteneurs avec une même image comme parent : + +`docker ps --filter "ancestor={{image}}:{{etiquette}}"` + +- Afficher les conteneurs avec un code de sorti spécifique : + +`docker ps --all --filter="exited={{code}}"` + +- Afficher les conteneurs avec un statut spécifique (créé, en cours d'exécution, en cours de suppresion, en pause, arrêté, mort) : + +`docker ps --filter="status={{status}}"` + +- Afficher les conteneurs avec un point de montage spécifique : + +`docker ps --filter="volume={{chemin/vers/le/dossier}}" --format "table {{.ID}}\t{{.Image}}\t{{.Names}}\t{{.Mounts}}"` diff --git a/pages.fr/common/docker-rmi.md b/pages.fr/common/docker-rmi.md new file mode 100644 index 00000000000000..1cf6a644820c9d --- /dev/null +++ b/pages.fr/common/docker-rmi.md @@ -0,0 +1,20 @@ +# docker rmi + +> Supprimer une ou plusieurs images Docker. +> Plus d'informations : . + +- Afficher l'aide : + +`docker rmi` + +- Supprimer une ou plusieurs images en fonction de leurs noms : + +`docker rmi {{image1 image2 ...}}` + +- Supprimer une image en forçant la suppression : + +`docker rmi --force {{image}}` + +- Supprimer une image sans supprimer les parents non étiquetés : + +`docker rmi --no-prune {{image}}` diff --git a/pages.fr/common/docker-run.md b/pages.fr/common/docker-run.md new file mode 100644 index 00000000000000..54f77eb1856c5f --- /dev/null +++ b/pages.fr/common/docker-run.md @@ -0,0 +1,36 @@ +# docker run + +> Exécuter une commande dans un nouveau conteneur Docker. +> Plus d'informations : . + +- Exécuter une commande dans un nouveau conteneur Docker avec une iamge étiquetée : + +`docker run {{image:etiquette}} {{commande}}` + +- Exécuter une commande dans un nouveau contenu Docker en mode détaché (en arrière-plan) et afficher l'ID du conteneur : + +`docker run --detach {{image}} {{commande}}` + +- Exécuter une command dans un conteneur effemère avec une mode interactif et un terminal pseudo-TTY : + +`docker run --rm --interactive --tty {{image}} {{commande}}` + +- Exécuter une commande dans un nouveau conteneur avec des variables d'environnement : + +`docker run --env '{{variable}}={{valuer}}' --env {{variable}} {{image}} {{commande}}` + +- Exécuter une commande dans un nouveau conteneur avec des volumes montés : + +`docker run --volume {{/chemin/vers/l_hote}}:{{chemin/vers/le/conteneur}} {{image}} {{commande}}` + +- Exécuter une commande dans un nouveau conteneur avec des ports publiés : + +`docker run --publish {{port_de_l_hote}}:{{port_du_conteneur}} {{image}} {{commande}}` + +- Exécuter une commande dans un nouveau conteneur en écrasant l'entrée du point d'entrée de l'image : + +`docker run --entrypoint {{commande}} {{image}}` + +- Exécuter une commande dans un nouveau conteneur en le connectant à un réseau : + +`docker run --network {{reseau}} {{image}}` diff --git a/pages.fr/common/docker-save.md b/pages.fr/common/docker-save.md new file mode 100644 index 00000000000000..bf3dd26fdaf1b9 --- /dev/null +++ b/pages.fr/common/docker-save.md @@ -0,0 +1,20 @@ +# docker save + +> Exporeter une ou plusieurs images Docker dans une archive. +> Plus d'informations : . + +- Sauvegarder une image en redirigeant la sortie standard vers une archive tar : + +`docker save {{image}}:{{etquette}} > {{chemin/vers/fichier.tar}}` + +- Sauvegarder une image dans une archive tar : + +`docker save --output {{chemin/vers/fichier.tar}} {{image}}:{{etquette}}` + +- Sauvegarder toutes les étiquettes de l'image : + +`docker save --output {{chemin/vers/fichier.tar}} {{nom_de_l_image}}` + +- Sélectionner des étiquettes particulières d'une image à sauvegarder : + +`docker save --output {{chemin/vers/fichier.tar}} {{nom_de_l_image:etquette1 nom_de_l_image:etquette2 ...}}` diff --git a/pages.fr/common/docker-secret.md b/pages.fr/common/docker-secret.md new file mode 100644 index 00000000000000..a6b5c60d891df4 --- /dev/null +++ b/pages.fr/common/docker-secret.md @@ -0,0 +1,24 @@ +# docker secret + +> Gérer les secrets de Docker swarm. +> Plus d'informations : . + +- Créer un nouveau secret depuis l'entrée standard : + +`{{commande}} | docker secret create {{nom_du_secret}} -` + +- Créer un nouveau secret depuis un fichier : + +`docker secret create {{nom_du_secret}} {{chemin/vers/fichier}}` + +- Lister tous les secrets : + +`docker secret ls` + +- Afficher des informations détaillées sur un ou plusieurs secrets dans un format humain : + +`docker secret inspect --pretty {{nom_du_secret1 nom_du_secret2 ...}}` + +- Supprimer un ou plusieurs secrets : + +`docker secret rm {{nom_du_secret1 nom_du_secret2 ...}}` diff --git a/pages.fr/common/docker-service.md b/pages.fr/common/docker-service.md new file mode 100644 index 00000000000000..e90de1e205da61 --- /dev/null +++ b/pages.fr/common/docker-service.md @@ -0,0 +1,28 @@ +# docker service + +> Gérer les services sur un démon Docker. +> Plus d'informations : . + +- Lister les services sur un démon Docker : + +`docker service ls` + +- Créer un nouveau service : + +`docker service create --name {{nom_du_service}} {{image}}:{{etiquette}}` + +- Afficher des informations détaillées d'une liste de services séparée par des espaces : + +`docker service inspect {{nom_du_service|ID}}` + +- Lister les tâches d'une liste de services séparée par des espaces : + +`docker service ps {{nom_du_service|ID}}` + +- Redimensionner à un nombre spécifique de réplicas pour une liste de services séparée par des espaces : + +`docker service scale {{nom_du_service}}={{count_of_replicas}}` + +- Supprimer une liste de services séparée par des espaces : + +`docker service rm {{nom_du_service|ID}}` diff --git a/pages.fr/common/docker-slim.md b/pages.fr/common/docker-slim.md new file mode 100644 index 00000000000000..03b2b1d0e8946a --- /dev/null +++ b/pages.fr/common/docker-slim.md @@ -0,0 +1,24 @@ +# docker-slim + +> Analyser et optimiser les images Docker. +> Plus d'informations : . + +- Démarrer DockerSlim en mode interactif : + +`docker-slim` + +- Analyser les couches Docker à partir d'une image spécifique : + +`docker-slim xray --target {{image:etiquette}}` + +- Linter un Dockerfile : + +`docker-slim lint --target {{chemin/vers/Dockerfile}}` + +- Analyser et générer une image Docker optimisée : + +`docker-slim build {{image:etiquette}}` + +- Afficher l'aide pour une sous-commande : + +`docker-slim {{subcommande}} --help` diff --git a/pages.fr/common/docker-start.md b/pages.fr/common/docker-start.md new file mode 100644 index 00000000000000..cfec4c0dc98e86 --- /dev/null +++ b/pages.fr/common/docker-start.md @@ -0,0 +1,20 @@ +# docker start + +> Lancer un ou plusieurs conteneurs arrêtés. +> Plus d'informations : . + +- Afficher l'aide : + +`docker start` + +- Lancer un conteneur docker : + +`docker start {{conteneur}}` + +- 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)}}` diff --git a/pages.fr/common/docker-stats.md b/pages.fr/common/docker-stats.md new file mode 100644 index 00000000000000..5199c07318a7fe --- /dev/null +++ b/pages.fr/common/docker-stats.md @@ -0,0 +1,24 @@ +# docker stats + +> Affiché un flux en direct des statistiques d'utilisation des ressources pour les conteneurs. +> Plus d'informations : . + +- Afficher un flux en direct des statistiques d'utilisation des ressources pour tous les conteneurs : + +`docker stats` + +- Afficher un flux en direct des statistiques d'utilisation des ressources pour un ou plusieurs conteneurs séparés par des espaces : + +`docker stats {{nom_du_conteneur}}` + +- Change le format de sortie pour afficher l'utilisation CPU du conteneur en pourcentage : + +`docker stats --format "{{.Name}}:\t{{.CPUPerc}}"` + +- Afficher les statistiques d'utilisation des ressources pour tous les conteneurs (y compris ceux qui ne sont pas en cours d'exécution) : + +`docker stats --all` + +- Desactiver le flux en direct des statistiques d'utilisation des ressources et afficher les statistiques une seule fois : + +`docker stats --no-stream` diff --git a/pages.fr/common/docker-swarm.md b/pages.fr/common/docker-swarm.md new file mode 100644 index 00000000000000..cafaf51baac1c3 --- /dev/null +++ b/pages.fr/common/docker-swarm.md @@ -0,0 +1,32 @@ +# docker swarm + +> Outil d'orchestration de conteneurs. +> Plus d'informations : . + +- Initialiser un cluster swarm : + +`docker swarm init` + +- Afficher le jeton pour rejoindre un cluster swarm en tant que nœud manager ou worker : + +`docker swarm join-token {{worker|manager}}` + +- Rejoindre un nouveau nœud au cluster : + +`docker swarm join --token {{jeton}} {{url_du_manager:2377}}` + +- Supprimer un worker du cluster (à exécuter dans le nœud worker) : + +`docker swarm leave` + +- Afficher le certificat CA actuel au format PEM : + +`docker swarm ca` + +- Changer la certificat CA actuel et afficher le nouveau certificat : + +`docker swarm ca --rotate` + +- Changer la période de validité des certificats des nœuds : + +`docker swarm update --cert-expiry {{heures}}h{{minutes}}m{{secondes}}s` diff --git a/pages.fr/common/docker-system.md b/pages.fr/common/docker-system.md new file mode 100644 index 00000000000000..c0c00ec8fb7932 --- /dev/null +++ b/pages.fr/common/docker-system.md @@ -0,0 +1,36 @@ +# docker system + +> Gérer les données Docker et afficher des informations sur l'ensemble du système. +> Plus d'informations : . + +- Afficher l'aide : + +`docker system` + +- Afficher l'utilisation du disque par docker: + +`docker system df` + +- Afficher des informations détaillées sur l'utilisation du disque par docker: + +`docker system df --verbose` + +- Supprimer les données non utilisées : + +`docker system prune` + +- Supprimer les données non utilisées de plus d'un temps donné dans le passé : + +`docker system prune --filter="until={{heures}}h{{minutes}}m"` + +- Afficher les événements du démon Docker en temps réel : + +`docker system events` + +- Afficher les événements du démon Docker en temps réel avec un format JSON : + +`docker system events --filter 'type=container' --format '{{json .}}'` + +- Afficher les informations sur le système Docker : + +`docker system info` diff --git a/pages.fr/common/docker-volume.md b/pages.fr/common/docker-volume.md new file mode 100644 index 00000000000000..99593d4de83d3a --- /dev/null +++ b/pages.fr/common/docker-volume.md @@ -0,0 +1,36 @@ +# docker volume + +> Gérer les volumes de Docker. +> Plus d'informations : . + +- Créer un volume : + +`docker volume create {{nom_du_volume}}` + +- Créer un volume avec une étiquette spécifique : + +`docker volume create --label {{étiuette}} {{nom_du_volume}}` + +- Créer un volume `tmpfs` avec une taille de 100 Mo et un uid de 1000 : + +`docker volume create --opt {{type}}={{tmpfs}} --opt {{device}}={{tmpfs}} --opt {{o}}={{size=100m,uid=1000}} {{nom_du_volume}}` + +- Lister tous les volumes : + +`docker volume ls` + +- Supprimer un volume : + +`docker volume rm {{nom_du_volume}}` + +- Afficher des informations sur un volume : + +`docker volume inspect {{nom_du_volume}}` + +- Supprimer tous les volumes locaux non utilisés : + +`docker volume prune` + +- Afficher l'aide pour une sous-commande : + +`docker volume {{sous_commande}} --help` diff --git a/pages.fr/common/docker.md b/pages.fr/common/docker.md index 8a40a9b410b1aa..ff847e53e72200 100644 --- a/pages.fr/common/docker.md +++ b/pages.fr/common/docker.md @@ -1,36 +1,37 @@ # docker > Gestion des conteneurs et des images Docker. -> Plus d'informations : . +> Certaines commandes comme `docker run` ont leur propre documentation. +> Plus d'informations : . -- Liste les conteneurs Docker en cours d'exécution : +- Liste tous les conteneurs Docker (en cours d'exécution ou arrêtés) : -`docker ps` +`docker ps --all` -- Liste tous les conteneurs Docker (en cours d'exécution ou arrêtés) : - -`docker ps -a` - -- Démarre un conteneur à partir d'une image, avec un nom personnalisé : +- Démarre un conteneur à partir d'une image, avec un nom personnalisé : `docker run --name {{nom_conteneur}} {{image}}` -- Démarre ou arrête un conteneur existant : +- Démarre ou arrête un conteneur existant : `docker {{start|stop}} {{nom_conteneur}}` -- Télécharge une image depuis un registre Docker : +- Télécharge une image depuis un registre Docker : `docker pull {{image}}` -- Ouvre un shell dans un conteneur déjà en cours d'exécution : +- Affiche les images déjà téléchargées : + +`docker images` + +- Ouvre un shell dans un conteneur déjà en cours d'exécution : `docker exec -it {{nom_conteneur}} {{sh}}` -- Supprime un conteneur arrêté : +- Supprime un conteneur arrêté : `docker rm {{nom_conteneur}}` -- Récupère et suit les journaux de message d'un conteneur : +- Récupère et suit les journaux de message d'un conteneur : `docker logs -f {{nom_conteneur}}` diff --git a/pages.fr/common/echo.md b/pages.fr/common/echo.md index 0142cfa8217005..1ed8e2ce095124 100644 --- a/pages.fr/common/echo.md +++ b/pages.fr/common/echo.md @@ -1,24 +1,24 @@ # echo > Affiche les paramètres donnés dans la console. -> Plus d'informations : . +> Plus d'informations : . -- Affiche un message (les guillemets sont facultatifs) : +- Affiche un message (les guillemets sont facultatifs) : `echo "{{Hello World}}"` -- Affiche un message avec des variables d'environment : +- Affiche un message avec des variables d'environnement : `echo "{{Ma variable PATH est $PATH}}"` -- Affiche un message sans retour à la ligne : +- Affiche un message sans retour à la ligne : `echo -n "{{Hello World}}"` -- Ajoute un message à un fichier : +- Ajoute un message à un fichier : `echo "{{Hello World}}" >> {{fichier.txt}}` -- Active l'interprétation des spécificateurs d'échappement : +- Active l'interprétation des spécificateurs d'échappement : `echo -e "{{Colonne 1\tColonne 2}}"` diff --git a/pages.fr/common/egrep.md b/pages.fr/common/egrep.md new file mode 100644 index 00000000000000..0fdc5512c52100 --- /dev/null +++ b/pages.fr/common/egrep.md @@ -0,0 +1,28 @@ +# egrep + +> Recherche de motifs dans un texte. Supporte la version étendues des expressions regulieres (`?`, `+`, `{}`, `()`, et `|`). +> Plus d'informations : . + +- Recherche une chaîne de caractères précise : + +`egrep "{{chaîne_recherchée}}" {{chemin/vers/fichier}}` + +- Recherche une chaîne de caractères dans plusieurs fichiers : + +`egrep "{{chaîne_recherchée}}" {{chemin/vers/fichier1}} {{chemin/vers/fichier2}} {{chemin/vers/fichier3}}` + +- Utilise l'entrée standard au lieu d'un fichier : + +`cat {{chemin/vers/fichier}} | egrep {{chaîne_recherchée}}` + +- Affiche le nom du fichier avec la ligne correspondante pour chaque concordance : + +`egrep --with-filename --line-number "{{chaîne_recherchée}}" {{chemin/vers/fichier}}` + +- Recherche récursivement dans le dossier courant, en ignorant les fichiers binaires, une chaîne de caractères précise : + +`egrep --recursive --binary-files={{without-match}} "{{chaîne_recherchée}}" {{chemin/vers/fichier}}` + +- Inverse le résultat pour exclure des chaînes de caractères spécifiques : + +`egrep --invert-match "{{chaîne_recherchée}}" {{chemin/vers/fichier}}` diff --git a/pages.fr/common/env.md b/pages.fr/common/env.md new file mode 100644 index 00000000000000..b4ed23908838c1 --- /dev/null +++ b/pages.fr/common/env.md @@ -0,0 +1,28 @@ +# env + +> Affiche l'environnement ou exécute un programme dans un environnement modifié. +> Plus d'informations : . + +- Affiche l'environnement : + +`env` + +- Exécute le programme donné. Souvent utilisé dans les scripts après le shebang (`#!`) pour consulter le chemin vers le programme : + +`env {{programme}}` + +- Exécute le programme donné, avec un environnement vide : + +`env -i {{programme}}` + +- Supprime une variable d'environnement et execute le programme donné : + +`env -u {{variable}} {{programme}}` + +- Définit ou modifie une variable d'environnement et execute le programme donné : + +`env {{variable}}={{valeur}} {{programme}}` + +- Définit ou modifie plusieurs variables d'environnement et execute le programme donné : + +`env {{variable1}}={{valeur}} {{variable2}}={{valeur}} {{variable3}}={{valeur}} {{programme}}` diff --git a/pages.fr/common/errno.md b/pages.fr/common/errno.md new file mode 100644 index 00000000000000..8739f014229821 --- /dev/null +++ b/pages.fr/common/errno.md @@ -0,0 +1,20 @@ +# errno + +> Recherche les noms et descriptions des codes errno. +> Plus d'informations : . + +- Recherche la description d'une erreur par nom ou par code : + +`errno {{nom|code}}` + +- Liste tous les noms, codes et descriptions d'errno : + +`errno --list` + +- Cherche les codes dont la description contient le texte entier indiqué : + +`errno --search {{texte}}` + +- Cherche les codes dont la description contient le texte entier indiqué (dans toutes les langues) : + +`errno --search-all-locales {{texte}}` diff --git a/pages.fr/common/fdupes.md b/pages.fr/common/fdupes.md index c6c8a335a00129..6399c3e8ab18fd 100644 --- a/pages.fr/common/fdupes.md +++ b/pages.fr/common/fdupes.md @@ -1,28 +1,28 @@ # fdupes > Trouve les fichiers dupliqués dans les dossiers donnés. -> Plus d'informations : . +> Plus d'informations : . -- Cherchez dans un dossier : +- Chercher dans un dossier : `fdupes {{dossier}}` -- Cherchez dans plusieurs dossiers : +- Chercher dans plusieurs dossiers : `fdupes {{dossier1}} {{dossier2}}` -- Cherchez dans un dossier recursivement : +- Chercher dans un dossier récursivement : `fdupes -r {{dossier}}` -- Cherchez dans plusieurs dossiers dont un recursivement : +- Chercher dans plusieurs dossiers dont un récursivement : `fdupes {{dossier1}} -R {{dossier2}}` -- Cherche recursivement les dupliqués et demande les fichiers à conserver, supprimant les autres : +- Chercher récursivement les dupliqués et demander les fichiers à conserver, supprimant les autres : `fdupes -rd {{dossier}}` -- Cherche recursivement et supprime les dupliqués automatiquement : +- Chercher récursivement et supprimer les dupliqués automatiquement : `fdupes -rdN {{dossier}}` diff --git a/pages.fr/common/find.md b/pages.fr/common/find.md new file mode 100644 index 00000000000000..00b2a5e3122fca --- /dev/null +++ b/pages.fr/common/find.md @@ -0,0 +1,36 @@ +# find + +> Trouve récursivement des fichiers ou des dossiers dans l'arborescence spécifiée. +> Plus d'informations : . + +- Trouve des fichiers par extension : + +`find {{racine}} -name '{{*.ext}}'` + +- Trouve des fichiers correspondant à plusieurs chemins ou motifs : + +`find {{racine}} -path '{{**/chemin/**/*.ext}}' -or -name '{{*motif*}}'` + +- Trouve des dossiers correspondant à un nom donné sans vérifier la casse : + +`find {{racine}} -type d -iname '{{*lib*}}'` + +- Trouve des fichiers correspondant à un motif donné en excluant certains chemins de la recherche : + +`find {{racine}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'` + +- Trouve des fichiers dans une fourchette de tailles : + +`find {{racine}} -size {{+500k}} -size {{-10M}}` + +- Exécute une commande pour chaque fichier (utiliser `{}` dans la commande pour utiliser le nom des fichiers) : + +`find {{racine}} -name '{{*.ext}}' -exec {{wc -l {} }}\;` + +- Trouve les fichiers modifiés dans les 7 derniers jours et les supprimer : + +`find {{racine}} -daystart -mtime -{{7}} -delete` + +- Trouve les fichiers vides (de taille nulle) et les supprimer : + +`find {{racine}} -type {{f}} -empty -delete` diff --git a/pages.fr/common/fish.md b/pages.fr/common/fish.md new file mode 100644 index 00000000000000..23dc3278e80fcc --- /dev/null +++ b/pages.fr/common/fish.md @@ -0,0 +1,32 @@ +# fish + +> Friendly Interactive SHell, un interpréteur de ligne de commande, conçu pour être facile à utiliser. +> Plus d'informations : . + +- Démarre une session shell interactive : + +`fish` + +- Exécute une commande, puis termine la session : + +`fish -c "{{commande}}"` + +- Exécute un script : + +`fish {{chemin/vers/le/script.fish}}` + +- Vérifie les erreurs de syntaxe dans un script : + +`fish --no-execute {{chemin/vers/le/script.fish}}` + +- Démarre une session shell interactive en mode privé, dans laquelle le shell n'a pas accès à l'historique et n'y écrit rien : + +`fish --private` + +- Affiche les informations de version : + +`fish --version` + +- Ajoute et exporte une variable d'environnement, qui persiste entre les redémarrages du shell (à exécuter depuis le shell uniquement) : + +`set -Ux {{nom_de_la_variable}} {{valeur_de_la_variable}}` diff --git a/pages.fr/common/fossil-ci.md b/pages.fr/common/fossil-ci.md new file mode 100644 index 00000000000000..5a2c4111c0030d --- /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 00000000000000..0cadac863a50bb --- /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 00000000000000..531ee140443676 --- /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 00000000000000..ae5c7c3bb3d009 --- /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/ftp.md b/pages.fr/common/ftp.md index 13748597304ae0..c1c3119f9a120d 100644 --- a/pages.fr/common/ftp.md +++ b/pages.fr/common/ftp.md @@ -1,31 +1,36 @@ # ftp -> Outils permettant d'interragir avec un serveur avec le protocole FTP. +> Outils permettant d'interagir avec un serveur avec le protocole FTP. +> Plus d'informations : . -- Se connecter à un serveur FTP : +- Connexion à un serveur FTP : `ftp {{ftp.exemple.com}}` -- Passer au mode de transfert binaire (medias, fichiers compressés, etc) : +- Connexion à un serveur FTP en spécifiant son adresse IP et son port : + +`ftp {{adresse_IP}} {{port}}` + +- Passe en mode de transfert binaire (médias, fichiers compressés, etc) : `binary` -- Transférer plusieurs fichiers sans demander de confirmation pour chaque : +- Transfère plusieurs fichiers sans demander de confirmation pour chaque : `prompt off` -- Télécharger plusieurs fichiers : +- Télécharge plusieurs fichiers : `mget {{*.png}}` -- Uploader plusieurs fichiers : +- Téléverse plusieurs fichiers : `mput {{*.zip}}` -- Supprimer plusieurs fichiers sur le serveur distant : +- Supprime plusieurs fichiers sur le serveur distant : `mdelete {{*.txt}}` -- Renommer un fichier sur le serveur distant : +- Renomme un fichier sur le serveur distant : `rename {{ancien_fichier}} {{nouveau_fichier}}` diff --git a/pages.fr/common/gcc.md b/pages.fr/common/gcc.md new file mode 100644 index 00000000000000..44f755aaabbd43 --- /dev/null +++ b/pages.fr/common/gcc.md @@ -0,0 +1,24 @@ +# gcc + +> Préprocesse et compile des fichiers sources C et C++, pour ensuite les assembler et les lier entre eux. +> Plus d'informations : . + +- Compile plusieurs fichiers source en un exécutable : + +`gcc {{chemin/vers/le/fichier1.c chemin/vers/le/fichier2.c ...}} -o {{chemin/vers/l'exécutable/à/produire}}` + +- Active les averissements et les symboles de débogage dans la sortie de commande : + +`gcc {{chemin/vers/le/fichiersource.c}} -Wall -Og -o {{chemin/vers/l'exécutable/à/produire}}` + +- Inclut les bibliothèques depuis un chemin différent de celui par défaut : + +`gcc {{chemin/vers/le/fichiersource.c}} -o {{chemin/vers/l'exécutable/à/produire}} -I{{chemin/vers/les/fichiers/d'en-tête}} -L{{chemin/vers/la/bibliothèque}} -l{{bibliothèque}}` + +- Compile le code source en des instructions d'assemblage : + +`gcc -S {{chemin/vers/le/fichiersource.c}}` + +- Compile le code source en un fichier objet sans le lier : + +`gcc -c {{chemin/vers/le/fichiersource.c}}` diff --git a/pages.fr/common/gdb.md b/pages.fr/common/gdb.md new file mode 100644 index 00000000000000..eee7624b39806f --- /dev/null +++ b/pages.fr/common/gdb.md @@ -0,0 +1,24 @@ +# gdb + +> Le débogueur GNU. +> Plus d'informations : . + +- Débogue un exécutable : + +`gdb {{exécutable}}` + +- Attache un processus à gdb : + +`gdb -p {{identifiant_processus}}` + +- Débogue avec un fichier comme image mémoire : + +`gdb -c {{fichier}} {{exécutable}}` + +- Execute les commandes gdb données au démarrage : + +`gdb -ex "{{commandes}}" {{exécutable}}` + +- Démarre gdb en passant des arguments à l'exécutable : + +`gdb --args {{exécutable}} {{argument1}} {{argument2}}` diff --git a/pages.fr/common/gh-alias.md b/pages.fr/common/gh-alias.md new file mode 100644 index 00000000000000..ab95f0bd3dec71 --- /dev/null +++ b/pages.fr/common/gh-alias.md @@ -0,0 +1,24 @@ +# gh alias + +> Gérer les alias de commandes GitHub CLI depuis la ligne de commande. +> Plus d'informations : . + +- Affiche l'aide pour la sous-commande `alias` : + +`gh alias` + +- Liste tous les alias pour lesquels `gh` est configuré : + +`gh alias list` + +- Crée un alias de sous-commande pour `gh` : + +`gh alias set {{alias}} '{{commande_gh}}` + +- Définit une commande shell comme sous-commande de `gh` : + +`gh alias set --shell {{nom_de_l'alias}} {{commande}}` + +- Supprime un alias : + +`gh alias delete {{nom_de_l'alias}}` diff --git a/pages.fr/common/gh-cs.md b/pages.fr/common/gh-cs.md new file mode 100644 index 00000000000000..b665d481233391 --- /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/gh.md b/pages.fr/common/gh.md new file mode 100644 index 00000000000000..5ba905b031c5a1 --- /dev/null +++ b/pages.fr/common/gh.md @@ -0,0 +1,37 @@ +# gh + +> Travailler harmonieusement avec GitHub depuis la ligne de commande. +> Certaines commandes comme `gh config` ont leur propre documentation. +> Plus d'informations : . + +- Clone un dépôt GitHub localement : + +`gh repo clone {{utilisateur}}/{{dépôt}}` + +- Crée une nouvelle issue : + +`gh issue create` + +- Affiche et filtre les issues ouvertes du dépôt courant : + +`gh issue list` + +- Affiche une issue dans le navigateur Web par défaut : + +`gh issue view --web {{numéro_de_l'issue}}` + +- Crée une pull request : + +`gh pr create` + +- Affiche une pull request dans le navigateur Web par défaut : + +`gh pr view --web {{numéro_de_la_PR}}` + +- Observe une pull request spécifique localement : + +`gh pr checkout {{numéro_de_la_PR}}` + +- Affiche le statut des pull requests du dépôt courant: + +`gh pr status` diff --git a/pages.fr/common/ghdl.md b/pages.fr/common/ghdl.md index 911fd4c08f0e4b..a1742b9a921fb6 100644 --- a/pages.fr/common/ghdl.md +++ b/pages.fr/common/ghdl.md @@ -1,28 +1,28 @@ # ghdl -> Simulateur à source ouverte pour le langage VHDL. -> Plus d'informations : . +> Simulateur à source ouvert pour le langage VHDL. +> Plus d'informations : . -- Analyse un fichier de source VHDL et génère un fichier objet : +- Analyse un fichier de source VHDL et génère un fichier objet : `ghdl -a {{fichier.vhdl}}` -- Élabore un design (où `{{design}}` est le nom d'une unité de configuration, d'entité, ou d'architecture) : +- Élabore un design (où `{{design}}` est le nom d'une unité de configuration, d'entité, ou d'architecture) : `ghdl -e {{design}}` -- Exécute un design élaboré : +- Exécute un design élaboré : `ghdl -r {{design}}` -- Exécute un design élaboré et sauvegarde la sortie à un fichier de forme d'onde : +- Exécute un design élaboré et sauvegarde la sortie à un fichier de forme d'onde : `ghdl -r {{design}} --wave={{sortie.ghw}}` -- Vérifie le syntaxe d'un fichier de source VHDL : +- Vérifie le syntaxe d'un fichier de source VHDL : `ghdl -s {{fichier.vhdl}}` -- Affiche l'aide générale : +- Affiche l'aide générale : `ghdl --help` diff --git a/pages.fr/common/gimp.md b/pages.fr/common/gimp.md new file mode 100644 index 00000000000000..47fd0a4a2918b5 --- /dev/null +++ b/pages.fr/common/gimp.md @@ -0,0 +1,29 @@ +# gimp + +> Outil d'édition et de retouche d'image, libre et multiplateforme. +> Voir aussi : `krita`. +> Plus d'informations : . + +- Démarre GIMP : + +`gimp` + +- Démarre sans l'écran de démarrage : + +`gimp --no-splash` + +- Ouvre les fichiers spécifiés : + +`gimp {{chemin/vers/image1 chemin/vers/image2 ...}}` + +- Démarre une nouvelle instance, même si une instance est déjà en cours d'exécution : + +`gimp --new-instance` + +- Affiche les erreurs et les avertissements sur la console au lieu de les afficher dans une boîte de dialogue : + +`gimp --console-messages` + +- Active les routines de débogage des signaux non fatals : + +`gimp --debug-handlers` diff --git a/pages.fr/common/git-add.md b/pages.fr/common/git-add.md index c1360b4aeadb86..964351b6275538 100644 --- a/pages.fr/common/git-add.md +++ b/pages.fr/common/git-add.md @@ -1,32 +1,32 @@ # git add > Ajoute les fichiers modifiés à l'index. -> Plus d'informations : . +> Plus d'informations : . -- Ajouter un fichier à l'index : +- Ajouter un fichier à l'index : `git add {{chemin/vers/fichier}}` -- Ajouter tous les fichiers (suivis et non-suivis) : +- Ajouter tous les fichiers (suivis et non-suivis) : `git add -A` -- Ajoute les modifications des fichiers déjà suivis : +- Ajoute les modifications des fichiers déjà suivis : `git add -u` -- Ajoute aussi les fichiers ignorés : +- Ajoute aussi les fichiers ignorés : `git add -f` -- Ajoute des parties de fichiers interactivement : +- Ajoute des parties de fichiers interactivement : `git add -p` -- Ajoute interactivement les parties d un fichier specifié : +- Ajoute interactivement les parties d'un fichier spécifié : `git add -p {{chemin/vers/fichier}}` -- Ajouter un fichier interactivement : +- Ajouter un fichier interactivement : `git add -i` diff --git a/pages.fr/common/git-am.md b/pages.fr/common/git-am.md index 19a69d88483c56..1077d541408bec 100644 --- a/pages.fr/common/git-am.md +++ b/pages.fr/common/git-am.md @@ -1,17 +1,17 @@ # git am -> Appliaquer des fichiers de path. Utile lorsque l on recoit des comits par email. -> Voir aussi `git format-patch`, pour generer des ficheirs de patch. -> Plus d'informations : . +> Appliquer des fichiers de "patch" Git. Utile lorsque l'on reçoit des commits par email. +> Voir aussi `git format-patch`, pour générer des fichiers de patch. +> Plus d'informations : . -- Appliquer un fichier de patch : +- Appliquer un fichier de patch : `git am {{chemin/vers/fichier.patch}}` -- Annuler l'application d un fichier de patch : +- Annuler l'application d'un fichier de patch : `git am --abort` -- Appliquer autant de fichier de correctif que possible, en enregistrant les morceaux échoués pour rejeter le fichier : +- Appliquer autant de fichiers de correctif que possible, en enregistrant les morceaux échoués pour rejeter le fichier : `git am --reject {{chemin/vers/fichier.patch}}` diff --git a/pages.fr/common/git-annex.md b/pages.fr/common/git-annex.md index 239eea8c402ae4..b6844ee8651436 100644 --- a/pages.fr/common/git-annex.md +++ b/pages.fr/common/git-annex.md @@ -2,28 +2,28 @@ > Gérez les fichiers avec Git, sans archiver leur contenu. > 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 : . +> Plus d'informations : . -- Aide : +- Aide : `git annex help` -- Initialize le repo avec Git annex : +- Initialise le dépôt : `git annex init` -- Ajoute un fichier : +- Ajoute un fichier : `git annex add {{chemin/vers/fichier_ou_repertoire}}` -- Affiche le statut courrand d un fichier ou repertoire : +- Affiche le statut courant d'un fichier ou répertoire : `git annex status {{chemin/vers/fichier_ou_repertoire}}` -- Synchronise un repository local avec un distant : +- Synchronise un dépôt local avec un distant : `git annex {{distant}}` -- Recupére un ficheir ou un repertoire : +- Récupère un fichier ou un répertoire : `git annex get {{chemin/vers/fichier_ou_repertoire}}` diff --git a/pages.fr/common/git-apply.md b/pages.fr/common/git-apply.md index 6d13e87c26637c..330d5eba619fa6 100644 --- a/pages.fr/common/git-apply.md +++ b/pages.fr/common/git-apply.md @@ -1,28 +1,28 @@ # git apply -> Applique un correctif a un fichier et/ou a l index. -> Plus d'informations : . +> Applique un correctif à un fichier et/ou à l index. +> Plus d'informations : . -- Afficher les messages a propos des fichiers corrigés : +- Afficher les messages à propos des fichiers corrigés : `git apply --verbose {{chemin/vers/fichier}}` -- Applique le correctif et ajoute les fichiers a l index : +- Applique le correctif et ajoute les fichiers à l index : `git apply --index {{chemin/vers/fichier}}` -- Applique un correctif depuis une source distante : +- Applique un correctif depuis une source distante : `curl {{https://example.com/file.patch}} | git apply` -- Affiche les differencs resultantes et applique le correctif : +- Affiche les différences résultantes et applique le correctif : `git apply --stat --apply {{chemin/vers/fichier}}` -- Applique le correctif en ordre inverse : +- Applique le correctif en ordre inverse : `git apply --reverse {{chemin/vers/fichier}}` -- Stocke le resultat du correctif dans l index sans modifier la branche courrante : +- Stocke le résultat du correctif dans l'index sans modifier la branche courante : `git apply --cache {{chemin/vers/fichier}}` diff --git a/pages.fr/common/git-archive.md b/pages.fr/common/git-archive.md index ac6997dbaa7a17..d55eff7e21b861 100644 --- a/pages.fr/common/git-archive.md +++ b/pages.fr/common/git-archive.md @@ -1,28 +1,28 @@ # git archive -> Cree une archive de fichiers depuis un branche donée. -> Plus d'informations : . +> Crée une archive de fichiers depuis un branche donnée. +> Plus d'informations : . -- Crée une archive `.tar` avec le contenu de la HEAD et l'affiche sur la sortie stanard : +- Crée une archive `.tar` avec le contenu de la HEAD et l'affiche sur la sortie standard : `git archive --verbose HEAD` -- Crée une archive `.zip` avec le contenu de la HEAD et l'affiche sur la sortie stanard : +- Crée une archive `.zip` avec le contenu de la HEAD et l'affiche sur la sortie standard : `git archive --verbose --format=zip HEAD` -- Pareil que ci-dessus mais ecrit dans l archive specifiée : +- Pareil que ci-dessus mais écrit dans l'archive spécifiée : `git archive --verbose --output={{chemin/vers/fichier.zip}} HEAD` -- Crée une archive depuis le dernier commit de la branche spécifiée : +- Crée une archive depuis le dernier commit de la branche spécifiée : `git archive --output={{chemin/vers/fichier.tar}} {{nom_de_branche}}` -- Crée une archive avec le contenu d un repertoire donné : +- Crée une archive avec le contenu d'un répertoire donné : `git archive --output={{chemin/vers/fichier.tar}} HEAD:{{chemin/vers/repertoire}}` -- Ajoutez un chemin d'accès à chaque fichier pour l'archiver dans un répertoire spécifique : +- Ajoutez un chemin d'accès à chaque fichier pour l'archiver dans un répertoire spécifique : `git archive --output={{chemin/vers/fichier.tar}} --prefix={{chemin/vers/cible}}/ HEAD` diff --git a/pages.fr/common/git-bisect.md b/pages.fr/common/git-bisect.md index 61632c0f864bbf..ac4207f8d60b06 100644 --- a/pages.fr/common/git-bisect.md +++ b/pages.fr/common/git-bisect.md @@ -2,20 +2,20 @@ > Utiliser une recherche binaire pour trouver le commit qui a introduit un bug. > Git saute automatiquement d'avant en arrière dans le graphe de commit pour isoler le commit défectueux. -> Plus d'informations : . +> Plus d'informations : . -- Démarrez une dissection sur une plage de commit délimitée par un bug connu et un commit propre connu (généralement plus ancien) : +- Démarrez une dissection sur une plage de commit délimitée par un bug connu et un commit propre connu (généralement plus ancien) : `git bisect start {{bad_commit}} {{good_commit}}` -- Pour chaque `git bisect` selectionné, le marquer comme "bad" ou "good" apres l'avoir testé pour le probléme : +- Pour chaque `git bisect` sélectionné, le marquer comme "mauvais" (`bad`) ou "bon" (`good`) après l'avoir testé pour le problème : `git bisect {{good|bad}}` -- Apres que `git bisect` pointe vers le mauvais commit, terminer la dissection et retourner a la branche précedante : +- Après que `git bisect` pointe vers le mauvais commit, terminer la dissection et retourner à la branche précédente : `git bisect reset` -- Sauter un commit lorrs de la dissection (e.g. celui qui echoue les tests pour une autre raison) : +- Sauter un commit lors de la dissection (e.g. celui qui échoue les tests pour une autre raison) : `git bisect skip` diff --git a/pages.fr/common/git-blame.md b/pages.fr/common/git-blame.md index c582d269561db1..731b581e635334 100644 --- a/pages.fr/common/git-blame.md +++ b/pages.fr/common/git-blame.md @@ -1,12 +1,12 @@ # git blame > Affiche le hash de commit et le dernier auteur de chaque ligne d un fichier. -> Plus d'informations : . +> Plus d'informations : . -- Affiche le hash de commit et le nom de l auteur en face de chaque ligne : +- Affiche le hash de commit et le nom de l auteur en face de chaque ligne : `git blame {{file}}` -- Affiche le hash de commit le nom et l email de l auteur en face de chaque ligne : +- Affiche le hash de commit le nom et l email de l auteur en face de chaque ligne : `git blame -e {{file}}` diff --git a/pages.fr/common/git-branch.md b/pages.fr/common/git-branch.md index bfe179a1f3164b..b73372202c7cda 100644 --- a/pages.fr/common/git-branch.md +++ b/pages.fr/common/git-branch.md @@ -1,36 +1,36 @@ # git branch > Commande Git principale pour travailler avec des branches. -> Plus d'informations : . +> Plus d'informations : . -- Liste les branches locale, prefixe la branche courrante avec `*` : +- Liste les branches locale en préfixant la branche courante avec `*` : `git branch` -- Liste toutes les branches (locale et distantes) : +- Liste toutes les branches (locale et distantes) : `git branch -a` -- Affiche le nom de la branche courrante : +- Affiche le nom de la branche courante : `git branch --show-current` -- Crée une nouvelle branche depuis le commit courrant : +- Crée une nouvelle branche depuis le commit courant : `git branch {{nom_de_branche}}` -- Crée une nouvelle branche depuis un commit en particulier : +- Crée une nouvelle branche depuis un commit en particulier : `git branch {{nom_de_branche}} {{commit_hash}}` -- Renommer une branche (ne pas se trouver sur la branche pour le faire) : +- Renommer une branche (ne pas se trouver sur la branche pour le faire) : `git branch -m {{ancien_nom_de_branche}} {{nouveau_nom_de_branche}}` -- Supprimer un branche locale (ne pas se trouver sur la branche pour le faire) : +- Supprimer un branche locale (ne pas se trouver sur la branche pour le faire) : `git branch -d {{nom_de_branche}}` -- Supprimer une branche distante : +- Supprimer une branche distante : `git push {{nom_distant}} --delete {{nom_de_branche_distante}}` diff --git a/pages.fr/common/git-bundle.md b/pages.fr/common/git-bundle.md index 72f3481364cf9b..aaec240ac57fad 100644 --- a/pages.fr/common/git-bundle.md +++ b/pages.fr/common/git-bundle.md @@ -1,32 +1,32 @@ # git bundle > Empaquetez des objets et des références dans une archive. -> Plus d'informations : . +> Plus d'informations : . -- Empaquetez tout les objets et les refferences d'une branche spécifiée : +- Empaquetez tout les objets et les références d'une branche spécifiée : `git bundle create {{chemin/vers/fichier.bundle}} {{nom_de_branche}}` -- Crée un empaquetage de tout les fichiers de toutes les branches : +- Crée un empaquetage de tout les fichiers de toutes les branches : `git bundle create {{chemin/vers/fichier.bundle}} --all` -- Crée un empaquetage des 5 derniers commits de la branche courrante : +- Crée un empaquetage des 5 derniers commits de la branche courante : `git bundle create {{chemin/vers/fichier.bundle}} -{{5}} {{HEAD}}` -- Crée un empaquetage des 7 derniers jours : +- Crée un empaquetage des 7 derniers jours : `git bundle create {{chemin/vers/fichier.bundle}} --since={{7.days}} {{HEAD}}` -- Verifie qu'un empaquetage est valide et peut étre appliquer à la branche courrante : +- Vérifie qu'un empaquetage est valide et peut être appliqué à la branche courante : `git bundle verify {{chemin/vers/fichier.bundle}}` -- Affiche sur la sortie standard la liste des réfferences contenues dans un empaquetage : +- Affiche sur la sortie standard la liste des références contenues dans un empaquetage : `git bundle unbundle {{chemin/vers/fichier.bundle}}` -- Extraire une branche spécifique d'un fichier de bundle dans le référentiel actuel : +- Extraire une branche spécifique d'un fichier de bundle dans le référentiel actuel : `git pull {{chemin/vers/fichier.bundle}} {{nom_de_branche}}` diff --git a/pages.fr/common/git-cat-file.md b/pages.fr/common/git-cat-file.md index 925f4005119213..713396af53f540 100644 --- a/pages.fr/common/git-cat-file.md +++ b/pages.fr/common/git-cat-file.md @@ -1,16 +1,16 @@ # git cat-file -> Fournir des informations sur le contenu ou le type et la taille des objets du référentiel Git. -> Plus d'informations : . +> Fournir des informations sur le contenu ou le type et la taille des objets du dépôt Git. +> Plus d'informations : . -- Obtenir la taill [s] du commit HEAD en octets : +- Obtenir la taille [s] du commit HEAD en octets : `git cat-file -s HEAD` -- Obtenir le type [t] (blob, tree, commit, tag) d'un objet Git spécifié : +- Obtenir le type [t] (blob, tree, commit, tag) d'un objet Git spécifié : `git cat-file -t {{8c442dc3}}` -- Affiche le contenu [p] d'un objet Git basé sur son type : +- Affiche le contenu [p] d'un objet Git basé sur son type : `git cat-file -p {{HEAD~2}}` diff --git a/pages.fr/common/git-check-ignore.md b/pages.fr/common/git-check-ignore.md index d96eee38a64745..69b71d82011da2 100644 --- a/pages.fr/common/git-check-ignore.md +++ b/pages.fr/common/git-check-ignore.md @@ -1,24 +1,24 @@ # git check-ignore > Analyser et déboguer les fichiers ignorés / exclus (".gitignore") de Git. -> Plus d'informations : . +> Plus d'informations : . -- Verifie qu'un fichier ou repertoire est ignoré : +- Vérifie qu'un fichier ou répertoire est ignoré : -`git check-ignore {{chemin/vers/fichier_ou_repertoire}}` +`git check-ignore {{chemin/vers/fichier_ou_répertoire}}` -- Verifie que plusieurs fichiers ou repertoires sont ignorés : +- Vérifie que plusieurs fichiers ou répertoires sont ignorés : -`git check-ignore {{chemin/vers/fichier}} {{chemin/vers/repertoire}}` +`git check-ignore {{chemin/vers/fichier}} {{chemin/vers/répertoire}}` - Utilisez des chemins d'accès, un par ligne, de stdin : `git check-ignore --stdin < {{chemin/vers/fichier_annexe}}` -- Ne pas vérifier l'index (utilisé pour déboguer pourquoi les chemins ont été suivis et non ignorés) : +- Ne pas vérifier l'index (utilisé pour déboguer pourquoi les chemins ont été suivis et non ignorés) : -`git check-ignore --no-index {{chemin/vers/fichiers_ou_repertoires}}` +`git check-ignore --no-index {{chemin/vers/fichiers_ou_répertoires}}` -- Inclure les details pour chaque occurence dans le chemin : +- Inclure les détails pour chaque occurrence dans le chemin : -`git check-ignore --verbose {{chemin/vers/fichiers_ou_repertoires}}` +`git check-ignore --verbose {{chemin/vers/fichiers_ou_répertoires}}` diff --git a/pages.fr/common/git-checkout.md b/pages.fr/common/git-checkout.md index b55da77a89a55b..f65cea23caa326 100644 --- a/pages.fr/common/git-checkout.md +++ b/pages.fr/common/git-checkout.md @@ -1,36 +1,36 @@ # git checkout > Extraire une branche ou des chemins vers l'arborescence de travail. -> Plus d'informations : . +> Plus d'informations : . -- Créer une branche et basculer dessus : +- Créer une branche et basculer dessus : `git checkout -b {{nom_de_branche}}` -- Créer une branche depuis une reférence spçifiaue et basculer dessus (par exemple, branche locales/distantes, tag, commit) : +- Créer une branche depuis une référence spécifique et basculer dessus (par exemple, branche locale/distante, tag, commit) : -`git checkout -b {{nom_de_branche}} {{reference}}` +`git checkout -b {{nom_de_branche}} {{référence}}` -- Basculer sur une branche locale existante : +- Basculer sur une branche locale existante : `git checkout {{nom_de_branche}}` -- Basculer sur la branche précedante : +- Basculer sur la branche précédente : `git checkout -` -- Basculer sur une brnche distante existante : +- Basculer sur une branche distante existante : `git checkout --track {{nom_distant}}/{{nom_de_branche}}` -- Annule tout les changements dans le repertoire courrant (voir `git reset` pour plus de commandes d'annulation) : +- Annule tout les changements dans le répertoire courant (voir `git reset` pour plus de commandes d'annulation) : `git checkout .` -- Annule tout les changements dans le fichier spécifié : +- Annule tout les changements dans le fichier spécifié : `git checkout {{filename}}` -- Remplace un fichier par sa version d'une autre branche : +- Remplace un fichier par sa version d'une autre branche : `git checkout {{nom_de_branche}} -- {{filename}}` diff --git a/pages.fr/common/git-cherry-pick.md b/pages.fr/common/git-cherry-pick.md index 05d4a5a803e178..09f69070b16a8a 100644 --- a/pages.fr/common/git-cherry-pick.md +++ b/pages.fr/common/git-cherry-pick.md @@ -2,20 +2,20 @@ > Appliquer les modifications introduites par les commits existants à la branche actuelle. > Pour appliquer les changements a une autre branche, utiliser d'abord `git checkout` pour basculer sur la branche désirée. -> Plus d'informations : . +> Plus d'informations : . -- Applique un commit à la branche courrante : +- Applique un commit à la branche courante : `git cherry-pick {{commit}}` -- Appliquer une plage de commits à la branche courrante (voir aussi `git rebase --onto`) : +- Appliquer une plage de commits à la branche courante (voir aussi `git rebase --onto`) : `git cherry-pick {{start_commit}}~..{{end_commit}}` -- Appliquer plusieurs commits non sequentiels à la branche courrante : +- Appliquer plusieurs commits non séquentiels à la branche courante : `git cherry-pick {{commit_1}} {{commit_2}}` -- Appliquer les changements d'un commit a la branche courrante sans créer de commit : +- Appliquer les changements d'un commit à la branche courante sans créer de commit : `git cherry-pick -n {{commit}}` diff --git a/pages.fr/common/git-cherry.md b/pages.fr/common/git-cherry.md index 3cd174e6b5723a..bbaf150d422088 100644 --- a/pages.fr/common/git-cherry.md +++ b/pages.fr/common/git-cherry.md @@ -1,16 +1,16 @@ # git cherry > Rechercher des commits qui n'ont pas encore été appliqués en amont. -> Plus d'informations : . +> Plus d'informations : . -- Afficher les commits (et leurs messages) avec des commits équivalents en amont : +- Afficher les commits (et leurs messages) avec des commits équivalents en amont : `git cherry -v` -- Spécifiez une branche amont et une branche de rubrique différentes : +- Spécifiez une branche amont et une branche de rubrique différentes : `git cherry {{origin}} {{topic}}` -- Limiter les commits a ceux dans la limite donnée : +- Limiter les commits à ceux dans la limite donnée : `git cherry {{origin}} {{topic}} {{base}}` diff --git a/pages.fr/common/git-clean.md b/pages.fr/common/git-clean.md index 12b9cdabacd91b..21ad8b9b3acdd6 100644 --- a/pages.fr/common/git-clean.md +++ b/pages.fr/common/git-clean.md @@ -1,28 +1,28 @@ # git clean -> Supprimer les fichiers non suivis du repertoire. -> Plus d'informations : . +> Supprimer les fichiers non-suivis d'un dépôt Git. +> Plus d'informations : . -- Supprimer les fichiers non suivis par Git : +- Supprimer les fichiers non-suivis : `git clean` -- Supprimer les fichiers non suivis par Git de manière interactive : +- Supprimer les fichiers non-suivis de manière interactive : `git clean -i` -- Affiche les fichiers non suivis qui peuvent étre suprimmés : +- Affiche les fichiers non-suivis qui peuvent être supprimés : `git clean --dry-run` -- Nettoyage forcé des fichiers non suivis par Git : +- Nettoyage forcé des fichiers non-suivis : `git clean -f` -- Nettoyage forcé des repertoires non suivis par Git : +- Nettoyage forcé des répertoires non-suivis : `git clean -fd` -- Supprime tout les fichiers suivis, incluant ceux repertoriés par `.gitignore` et `.git/info/exclude` : +- Supprime tous les fichiers suivis, incluant ceux répertoriés par `.gitignore` et `.git/info/exclude` : `git clean -x` diff --git a/pages.fr/common/git-clone.md b/pages.fr/common/git-clone.md index 8422edb6e845f2..7d3eb109f42440 100644 --- a/pages.fr/common/git-clone.md +++ b/pages.fr/common/git-clone.md @@ -1,24 +1,36 @@ # git clone > Clone un dépôt existant. -> Plus d'informations : . +> Plus d'informations : . -- Clone un dépôt existant : +- Clone un dépôt existant : -`git clone {{location_du_depot_distant}}` +`git clone {{emplacement_du_depot_distant}}` -- Clone un dépôt existant et ses sous-modules : +- Clone un dépôt existant dans un répertoire spécifique : -`git clone --recursive {{location_du_depot_distant}}` +`git clone {{emplacement_du_depot_distant}} {{chemin/vers/repertoire}}` -- Clone un dépôt local : +- Clone un dépôt existant et ses sous-modules : -`git clone -l` +`git clone --recursive {{emplacement_du_depot_distant}}` -- Clone silencieusement : +- Clone un dépôt local : -`git clone -q` +`git clone -l {{chemin/vers/depot/local}}` -- Clone un dépôt existant en ne récupérant que les 10 commits les plus récents sur la branche par défaut (plus rapide) : +- Clone silencieusement : -`git clone --depth {{10}} {{location_du_depot_distant}}` +`git clone -q {{emplacement_du_depot_distant}}` + +- Clone un dépôt existant en ne récupérant que les 10 commits les plus récents sur la branche par défaut (plus rapide) : + +`git clone --depth {{10}} {{emplacement_du_depot_distant}}` + +- Clone un dépôt existant en ne récupérant qu'une branche spécifique : + +`git clone --branch {{nom}} --single-branch {{emplacement_du_depot_distant}}` + +- Clone un dépôt existant en utilisant une commande SSH spécifique : + +`git clone --config core.sshCommand="{{ssh -i chemin/vers/clef_ssh_privee}}" {{emplacement_du_depot_distant}}` diff --git a/pages.fr/common/git-commit.md b/pages.fr/common/git-commit.md index 57d5667693b06e..7d4be6aabab74c 100644 --- a/pages.fr/common/git-commit.md +++ b/pages.fr/common/git-commit.md @@ -1,20 +1,20 @@ # git commit -> Commit les fichers dans le repository. -> Plus d'informations : . +> Enregistrer (`commit`) les fichiers dans le dépôt. +> Plus d'informations : . -- Commit les fichiers en stage dans le dépôt avec un message : +- Commit les fichiers en stage dans le dépôt avec un message : `git commit -m "{{message}}"` -- Commit tous les fichiers modifiés avec un message : +- Commit tous les fichiers modifiés avec un message : `git commit -am "{{message}}"` -- Mets à jour le dernier commit avec les modifications en stage : +- Met à jour le dernier commit avec les modifications en stage : `git commit --amend` -- Commit seulement les fichiers spécifiés (qui sont déjà en stage) : +- Commit seulement les fichiers spécifiés (qui sont déjà en stage) : `git commit {{chemin/vers/mon/fichier1}} {{chemin/vers/mon/fichier2}}` diff --git a/pages.fr/common/git-config.md b/pages.fr/common/git-config.md index 65bdf7265ab998..1118b682e88431 100644 --- a/pages.fr/common/git-config.md +++ b/pages.fr/common/git-config.md @@ -1,37 +1,37 @@ # git config > Gérer les options de configuration personnalisées pour les référentiels Git. -> Ces configurations peuvent étre locales (pour le réferentiel courrant) ou globales (pour l utilisateur). -> Plus d'informations : . +> Ces configurations peuvent être locales (pour le référentiel courant) ou globales (pour l'utilisateur). +> Plus d'informations : . -- Liste les entrés de configurations locales (stockés dans `.git/config` du repertoire courrant) : +- Liste les entrées de configurations locales (stockées dans `.git/config` du répertoire courant) : `git config --list --local` -- Liste les entrés de conffigurations globales (stoqués dans `~/.gitconfig`) : +- Liste les entrées de configuration globales (stockées dans `~/.gitconfig`) : `git config --list --global` -- Liste toutes les entrés de conffiguration, globales et locales : +- Liste toutes les entrées de configuration, globales et locales : `git config --list` -- Recupére la valeure d'une entrée de configurations : +- Récupère la valeur d'une entrée de configuration : `git config alias.unstage` -- Attribue la valeur d'une entree de configuration : +- Attribue la valeur d'une entrée de configuration : `git config --global alias.unstage "reset HEAD --"` -- Restore la valeur d'une entree de configuration globale a sa valeur par défaut : +- Restaure la valeur d'une entrée de configuration globale à sa valeur par défaut : `git config --global --unset alias.unstage` -- Édite le fichier de configuration du référentiel courrant dans l'éditeur par défaut : +- Édite le fichier de configuration du référentiel courant dans l'éditeur par défaut : `git config --edit` -- Édite le fichier de configuration globale dans l'éditeur par défaut : +- Édite le fichier de configuration globale dans l'éditeur par défaut : `git config --global --edit` diff --git a/pages.fr/common/git-describe.md b/pages.fr/common/git-describe.md index 2ae5eb1b946c0d..32d3e0fc97981e 100644 --- a/pages.fr/common/git-describe.md +++ b/pages.fr/common/git-describe.md @@ -1,24 +1,24 @@ # git describe -> Créer un nom unique et lisible pour un objet à partir d’une référence disponible. -> Plus d'informations : . +> Créer un nom unique et lisible pour un objet à partir d'une référence disponible. +> Plus d'informations : . -- Créer un nom unique pour le commit courant (le nom contient le tag le plus recent, le nombre de commits additionnel, and le hash abrégé du commit) : +- Créer un nom unique pour le commit courant (le nom contient le tag le plus récent, le nombre de commits additionnels, et l'empreinte abrégée du commit) : `git describe` -- Créer un nom avec un hash de commit de 4 carctéres : +- Créer un nom avec une empreinte de commit de 4 caractères : `git describe --abbrev={{4}}` -- Générer un nom avec le chemin complet du tag : +- Générer un nom avec le chemin complet du tag : `git describe --all` -- Décrire un tag Git : +- Décrire un tag Git : `git describe {{v1.0.0}}` -- Créer un nom pour le dernier commit d'une branche donnée : +- Créer un nom pour le dernier commit d'une branche donnée : `git describe {{nom_de_branche}}` diff --git a/pages.fr/common/git-diff.md b/pages.fr/common/git-diff.md index 1263a02145b0e6..ce4e92aa807aca 100644 --- a/pages.fr/common/git-diff.md +++ b/pages.fr/common/git-diff.md @@ -1,36 +1,36 @@ # git diff > Afficher les changements sur les fichiers suivis. -> Plus d'informations : . +> Plus d'informations : . -- Afficher les changements sur les fichiers suvis : +- Afficher les changements sur les fichiers suivis : `git diff` -- Afficher tout les changements sur les fichiers par rapport a la téte de branche : +- Afficher tous les changements sur les fichiers par rapport à la tête de branche : `git diff HEAD` -- Afficher tout les changements sur les fichiers ajoutés mais pas encore commités : +- Afficher tous les changements sur les fichiers ajoutés mais pas encore commités : `git diff --staged` -- Afficher les changements de tout les commits a partir d une date/heure donnée (expression de dates, ex : "1 week 2 days" ou une date ISO) : +- Afficher les changements de tous les commits à partir d'une date / heure donnée (expression de dates, ex : "1 week 2 days" pour 1 semaine et 2 jours ou une date ISO) : `git diff 'HEAD@{3 months|weeks|days|hours|seconds ago}'` -- Afficher seulement les noms des fichiers modifiés depuis un commit donné : +- Afficher seulement les noms des fichiers modifiés depuis un commit donné : `git diff --name-only {{commit}}` -- Afficher un resumé des creation de fichiers, renomages ou changements de droits depuis un commit : +- Afficher un résumé des créations de fichiers, renommages ou changements de droits depuis un commit : `git diff --summary {{commit}}` -- Comparer un ficheir entre deux branches ou commits : +- Comparer un fichier entre deux branches ou commits : `git diff {{branche_1}}..{{branche_2}} [--] {{chemin/vers/fichier}}` -- Comparer plusieurs fichiers de la branche courrante avec une autre branche : +- Comparer plusieurs fichiers de la branche courante avec une autre branche : `git diff {{branche}}:{{chemin/vers/fichier2}} {{chemin/vers/fichier}}` diff --git a/pages.fr/common/git-difftool.md b/pages.fr/common/git-difftool.md index 9c3aa9da79d7c8..68203101b1633c 100644 --- a/pages.fr/common/git-difftool.md +++ b/pages.fr/common/git-difftool.md @@ -1,20 +1,20 @@ # git difftool > Afficher les modifications apportées aux fichiers à l'aide d'outils de comparaison externes. Accepte les mêmes options et arguments que Git diff. -> Plus d'informations : . +> Plus d'informations : . -- Lister les outils de coparaison disponnible : +- Lister les outils de comparaison disponibles : `git difftool --tool-help` -- Configurer Meld comme outil de comparaison par defaut : +- Configurer Meld comme outil de comparaison par défaut : `git config --global diff.tool "{{meld}}"` -- Utiliser l'outil de comparaison par defaut pour afficher les fichiers modifiés : +- Utiliser l'outil de comparaison par défaut pour afficher les fichiers modifiés : `git difftool --staged` -- Utiliser un outil de comparaison spécifique (opendiff) pour afficher les changements depuis un commit : +- Utiliser un outil de comparaison spécifique (opendiff) pour afficher les changements depuis un commit : `git difftool --tool={{opendiff}} {{commit}}` diff --git a/pages.fr/common/git-fetch.md b/pages.fr/common/git-fetch.md index 4b33bef5e5be37..5e3186bb6af469 100644 --- a/pages.fr/common/git-fetch.md +++ b/pages.fr/common/git-fetch.md @@ -1,24 +1,24 @@ # git fetch -> Cherche les objets et réferences depuis un registre distant. -> Plus d'informations : . +> Cherche les objets et références depuis un dépôt distant. +> Plus d'informations : . -- Cherche les dernières modifications du référentiel amont distant par défaut (si configuré) : +- Cherche les dernières modifications du référentiel amont distant par défaut (si configuré) : `git fetch` -- Cherche les nouvelles branches depuis un registre distant : +- Cherche les nouvelles branches depuis un registre distant : `git fetch {{nom_distant}}` -- Cherche les nouvelles branches depuis tout les registres distant : +- Cherche les nouvelles branches depuis tous les registres distants : `git fetch --all` -- Recherche egalement les tags depuis le registre courrant : +- Recherche également les tags depuis le registre courant : `git fetch --tags` -- Supprime les références locales de branches ayant été supprimés du registre distant : +- Supprime les références locales de branches ayant été supprimés du registre distant : `git fetch --prune` diff --git a/pages.fr/common/git-flow.md b/pages.fr/common/git-flow.md index f63a2df60d95fa..ee3f7b49b7415f 100644 --- a/pages.fr/common/git-flow.md +++ b/pages.fr/common/git-flow.md @@ -1,24 +1,24 @@ # git flow -> Une colletion d'extentions Git pour procurer des opperation de registre supplementaires. -> Plus d'informations : . +> Une collection d'extensions Git pour procurer des opérations supplémentaires sur les dépôts. +> Plus d'informations : . -- Initialiser dans un registre Git existant : +- Initialiser dans un registre Git existant : `git flow init` -- Commencer le travail sur une fonctionnalité basé sur la branche `develop` : +- Commencer le travail sur une fonctionnalité basé sur la branche `develop` : `git flow feature start {{feature}}` -- Terminer le travail sur une branche de fonctionnalité, le merger dans la branche `develop` puis suprimmer : +- Terminer le travail sur une branche de fonctionnalité, la fusionner dans la branche `develop` puis la supprimer : `git flow feature finish {{feature}}` -- Publier une fonctionalité sur le serveur distant : +- Publier une fonctionnalité sur le serveur distant : `git flow feature publish {{feature}}` -- Recupérer un fonctionalité publiée par un autre utilisateur : +- Récupérer une fonctionnalité publiée par un autre utilisateur : `git flow feature pull origin {{feature}}` diff --git a/pages.fr/common/git-format-patch.md b/pages.fr/common/git-format-patch.md index d9f9dccf26963c..518b930d9d3272 100644 --- a/pages.fr/common/git-format-patch.md +++ b/pages.fr/common/git-format-patch.md @@ -1,14 +1,14 @@ # git format-patch -> Preparer des ficchiers de correctifs, utiles pour les envoyer par email. -> Voir egalement `git am`, qui peut appliquer des fichiers de correctifs genérés. -> Plus d'informations : . +> Préparer des fichiers de correctifs, utiles pour les envoyer par courriel. +> Voir également `git am`, qui peut appliquer des fichiers de correctifs générés. +> Plus d'informations : . - Créer un fichier de correctif `.patch` nommé automatiquement pour tout les commits non poussés : `git format-patch {{origin}}` -- Crér un fichier correctif `.patch` pour les changements entre 2 révisions : +- Créer un fichier correctif `.patch` pour les changements entre 2 révisions : `git format-patch {{revision_1}}..{{revision_2}}` diff --git a/pages.fr/common/git-fsck.md b/pages.fr/common/git-fsck.md index 94c96a97a3a5fc..2e5f1f5a51b845 100644 --- a/pages.fr/common/git-fsck.md +++ b/pages.fr/common/git-fsck.md @@ -1,17 +1,17 @@ # git fsck -> Vérifier la validité et la connectivité des nœuds dans un réferentiel Git. -> N'applique ucune modification. Voir `git gc` pour nettoyer. -> Plus d'informations : . +> Vérifier la validité et la connectivité des nœuds dans un dépôt Git. +> N'applique aucune modification. Voir `git gc` pour nettoyer. +> Plus d'informations : . -- Verifier le registre courrant : +- Vérifier le registre courant : `git fsck` -- Lister tout les tags trouvés : +- Lister tous les tags trouvés : `git fsck --tags` -- Lister tout les noeuds racine trouvés : +- Lister tout les nœuds racine trouvés : `git fsck --root` diff --git a/pages.fr/common/git-gc.md b/pages.fr/common/git-gc.md index 27885469dc0be8..cb7a7e8967cb0a 100644 --- a/pages.fr/common/git-gc.md +++ b/pages.fr/common/git-gc.md @@ -1,24 +1,24 @@ # git gc -> Optimise le registre local en nettoyant les fichiers inutiles. -> Plus d'informations : . +> Optimise le dépôt local git en nettoyant les fichiers inutiles. +> Plus d'informations : . -- Optimise le registrey : +- Optimise le dépôt : `git gc` -- Optimise le registre plus agressivement, plus long : +- Optimise le dépôt plus agressivement, plus long : `git gc --aggressive` -- Afficher les objets a supprimer : +- Afficher les objets à supprimer : `git gc --no-prune` -- Supprime tout les objets trouvés sans l'afficher sur la sortie standart : +- Supprime tout les objets trouvés sans les afficher sur la sortie standard : `git gc --quiet` -- Afficher le manuel : +- Afficher le manuel : `git gc --help` diff --git a/pages.fr/common/git-grep.md b/pages.fr/common/git-grep.md index 916582c2356ff6..ac9a238f0ee5c6 100644 --- a/pages.fr/common/git-grep.md +++ b/pages.fr/common/git-grep.md @@ -1,25 +1,25 @@ # git-grep -> Rechercher une occurence de texte nomport ou dans l historique d un repository. -> Comprends la plus-part des arguments que le `grep` classique. -> Plus d'informations : . +> Rechercher une occurrence de texte n'importe où dans l'historique d'un dépôt git. +> Comprend la plupart des arguments du `grep` classique. +> Plus d'informations : . -- Rechercher une occrence dans les fichiers suivis : +- Rechercher une occurrence dans les fichiers suivis : `git grep {{chaine_recherché}}` -- Rechercher une occrence dans les fichiers suivis d'appres un pattern de fichiers : +- Rechercher une occurrence dans les fichiers suivis d'après un pattern de fichiers : `git grep {{chaine_recherché}} -- {{file_glob_pattern}}` -- Rechercher une occrence dans les fichiers suivis et les sous-modules : +- Rechercher une occurrence dans les fichiers suivis et les sous-modules : `git grep --recurse-submodules {{chaine_recherché}}` -- Rechercher une occurence à partir d un point spécifique dans l'historique : +- Rechercher une occurrence à partir d'un point spécifique dans l'historique : `git grep {{chaine_recherché}} {{HEAD~2}}` -- Rechercher une occurence dans toutes les branches : +- Rechercher une occurrence dans toutes les branches : `git grep {{chaine_recherché}} $(git rev-list --all)` diff --git a/pages.fr/common/git-help.md b/pages.fr/common/git-help.md index 9e3f8c06b31013..450cb6aacd5998 100644 --- a/pages.fr/common/git-help.md +++ b/pages.fr/common/git-help.md @@ -1,24 +1,24 @@ # git help > Afficher le manuel de Git. -> Plus d'informations : . +> Plus d'informations : . -- Afficher le manuel d'une sous commande : +- Afficher le manuel d'une sous-commande : `git help {{subcommand}}` -- Méme chose dans un navigateur : +- Même chose dans un navigateur : `git help --web {{subcommand}}` -- Afficher la liste des sous commandes disponnibles : +- Afficher la liste des sous-commandes disponibles : `git help --all` -- Lister les manuels disponnibles : +- Lister les manuels disponibles : `git help --guide` -- Lister toutes les variables de configuration disponnibles : +- Lister toutes les variables de configuration disponibles : `git help --config` diff --git a/pages.fr/common/git-ignore-io.md b/pages.fr/common/git-ignore-io.md new file mode 100644 index 00000000000000..ca699e3f3fde41 --- /dev/null +++ b/pages.fr/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Générer le fichier .gitignore depuis des templates prédéfinis. +> Plus d'informations : . + +- Lister les templates disponibles : + +`git ignore-io list` + +- Générer un template .gitignore : + +`git ignore-io {{item_a,item_b,item_n}}` diff --git a/pages.fr/common/git-ignore.md b/pages.fr/common/git-ignore.md deleted file mode 100644 index a508fa955960b0..00000000000000 --- a/pages.fr/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Génerer le fichier .gitignore depuis des templates prédéfinis. -> Plus d'informations : . - -- Lister les templates disponnibles : - -`git ignore list` - -- Genénerer un template .gitignore : - -`git ignore {{item_a,item_b,item_n}}` diff --git a/pages.fr/common/git-imerge.md b/pages.fr/common/git-imerge.md index 3120647b81b37b..54f6b55ceed428 100644 --- a/pages.fr/common/git-imerge.md +++ b/pages.fr/common/git-imerge.md @@ -1,29 +1,29 @@ # git-imerge -> Génerer un merge ou un rebase entre deux branches de maniére incrémentale. +> Générer un `git merge` ou un `git rebase` entre deux branches de manière incrémentale. > Les conflits entre les branches sont suivis en paires de commits individuels, pour simplifier la résolution des conflits. -> Plus d'informations : . +> Plus d'informations : . -- Démarrer un i-merge rebase (se placer dans la branche a rebaser d'abord) : +- Démarrer un imerge rebase (se placer dans la branche à rebaser d'abord) : `git imerge rebase {{branche_sur_laquelle_rebaser}}` -- Démarrer imerge merge (se placer dans la branche depuis laquelle merger d'abord) : +- Démarrer imerge merge (se placer dans la branche depuis laquelle merger d'abord) : `git imerge merge {{branche_a_merger}}` -- Afficher le diagramme ASCII du merge ou rebase en cours : +- Afficher le diagramme ASCII du merge ou rebase en cours : `git imerge diagram` -- Continuer l opperation après une résolution de conflit (d'abord `git add` les fichiers en conflits) : +- Continuer l'opération après une résolution de conflit (d'abord `git add` les fichiers en conflits) : `git imerge continue --no-edit` -- Terminer l'opperation i-merge après la resolution de tout les conflits : +- Terminer l'opération i-merge après la résolution de tous les conflits : `git imerge finish` -- Annuler l'opperation et retourner à la branche précédante : +- Annuler l'opération et retourner à la branche précédente : `git-imerge remove && git checkout {{previous_branch}}` diff --git a/pages.fr/common/git-init.md b/pages.fr/common/git-init.md index 5aa61e0337e424..8166a474e398e8 100644 --- a/pages.fr/common/git-init.md +++ b/pages.fr/common/git-init.md @@ -1,12 +1,12 @@ # git init > Initialise un nouveau registre Git. -> Plus d'informations : . +> Plus d'informations : . -- Initialise un nouveau registre Git local : +- Initialise un nouveau registre Git local : `git init` -- Initialiser un référentiel barebones, adapté à une utilisation distante via ssh : +- Initialiser un référentiel barebones, adapté à une utilisation distante via ssh : `git init --bare` diff --git a/pages.fr/common/git-instaweb.md b/pages.fr/common/git-instaweb.md index cda137772fc67c..421fc621769cb0 100644 --- a/pages.fr/common/git-instaweb.md +++ b/pages.fr/common/git-instaweb.md @@ -1,32 +1,32 @@ # git instaweb -> Outil pour le lancemend d'un serveur gitweb. -> Plus d'informations : . +> Outil pour le lancement d'un serveur gitweb. +> Plus d'informations : . -- Démare un serveur gitweb depuis le repository courrant : +- Démarre un serveur gitweb depuis le dépôt (`repository`) courant : `git instaweb --start` -- Écoute uniquement sur le port localhost : +- Écoute uniquement sur le port localhost : `git instaweb --start --local` -- Écoute sur un port spécifique : +- Écoute sur un port spécifique : `git instaweb --start --port {{1234}}` -- Utiliser un daemon http spécifique : +- Utiliser un daemon http spécifique : `git instaweb --start --httpd {{lighttpd|apache2|mongoose|plackup|webrick}}` -- Lancer en méme temps qu un navigateur web : +- Lancer en même temps qu'un navigateur web : `git instaweb --start --browser` -- Stoppe le serveur : +- Stoppe le serveur : `git instaweb --stop` -- Redémarre le serveur : +- Redémarre le serveur : `git instaweb --restart` diff --git a/pages.fr/common/git-lfs.md b/pages.fr/common/git-lfs.md index ff017469d019c9..342328a6622041 100644 --- a/pages.fr/common/git-lfs.md +++ b/pages.fr/common/git-lfs.md @@ -1,36 +1,36 @@ # git lfs > Travailler dans un registre Git avec des fichiers volumineux. -> Plus d'informations : . +> Plus d'informations : . -- Initialise le Git LFS : +- Initialise le Git LFS : `git lfs install` -- Suivre des fichiers correspondant à un pattern : +- Suivre des fichiers correspondant à un pattern : `git lfs track '{{*.bin}}'` -- Changer l'URL du point de terminaison Git LFS (utile si le serveur LFS est séparé du serveur Git) : +- Changer l'URL du point de terminaison Git LFS (utile si le serveur LFS est séparé du serveur Git) : `git config -f .lfsconfig lfs.url {{lfs_endpoint_url}}` -- Lister les pattern de fichiers suivis : +- Lister les pattern de fichiers suivis : `git lfs track` -- Lister les fichiers suivis ayant été commité : +- Lister les fichiers suivis ayant été commité : `git lfs ls-files` -- Pousser tout les objets LFS vers le serveur distant : +- Pousser tout les objets LFS vers le serveur distant : `git lfs push --all {{nom_distant}} {{nom_de_branche}}` -- Chercher tout les objets LFS : +- Chercher tout les objets LFS : `git lfs fetch` -- Charger tout les objets LFS : +- Charger tout les objets LFS : `git lfs checkout` diff --git a/pages.fr/common/git-log.md b/pages.fr/common/git-log.md index b8346d663ab9b5..6f2b0ba7963a05 100644 --- a/pages.fr/common/git-log.md +++ b/pages.fr/common/git-log.md @@ -1,36 +1,36 @@ # git log > Afficher un historique de commits. -> Plus d'informations : . +> Plus d'informations : . -- Afficher la séquence de commits à partir de l'actuel, dans l'ordre chronologique inverse du dépôt Git dans le répertoire de travail actuel : +- Afficher la séquence de commits à partir de l'actuel, dans l'ordre chronologique inverse du dépôt Git dans le répertoire de travail actuel : `git log` -- Afficher l'historique de fichiers ou repertoires en particulier : +- Afficher l'historique de fichiers ou répertoires en particulier : `git log -p {{chemin/vers/fichier_ou_repertoire}}` -- Afficher la liste des fichiers modifiés pour chaque commit : +- Afficher la liste des fichiers modifiés pour chaque commit : `git log --stat` -- Afficher un graphique des commits dans la branche actuelle en utilisant uniquement la première ligne de chaque message de commit : +- Afficher un graphique des commits dans la branche actuelle en utilisant uniquement la première ligne de chaque message de commit : `git log --oneline --graph` -- Afficher un graphique de tout les commits, tags et branches dans le dépot entier : +- Afficher un graphique de tout les commits, tags et branches dans le dépôt entier : `git log --oneline --decorate --all --graph` -- Afficher uniqueent les commits dont le message contient la chaine (non sensible à la case) : +- Afficher uniquement les commits dont le message contient la chaine (non sensible à la casse) : `git log -i --grep {{chaine_recherché}}` -- Afficher les N derniers commits d'un utilisateur : +- Afficher les N derniers commits d'un utilisateur : `git log -n {{number}} --author={{author}}` -- Afficher les commits entre deux dates : +- Afficher les commits entre deux dates (yyyy-mm-dd): -`git log --before={{date}} --after={{date}}` +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.fr/common/git-ls-remote.md b/pages.fr/common/git-ls-remote.md index 5d647d7ae4ece9..0512cadab2cb42 100644 --- a/pages.fr/common/git-ls-remote.md +++ b/pages.fr/common/git-ls-remote.md @@ -1,25 +1,25 @@ # git ls-remote -> Commande Git pour répertorier les références dans un dépot distant en fonction du nom ou de l'URL. +> Commande Git pour répertorier les références dans un dépôt distant en fonction du nom ou de l'URL. > Si aucun nom ou URL n'est donné, alors la branche amont configurée sera utilisée, ou l'origine distante si la première n'est pas configurée. -> Plus d'informations : . +> Plus d'informations : . -- Afficher les références du dépot configuré par défaut : +- Afficher les références du dépôt configuré par défaut : `git ls-remote` -- Afficher uniquement les références HEAD du dépot configuré par défaut : +- Afficher uniquement les références HEAD du dépôt configuré par défaut : `git ls-remote --heads` -- Afficher uniquement les tags du dépot configuré par défaut : +- Afficher uniquement les tags du dépôt configuré par défaut : `git ls-remote --tags` -- Afficher les références du dépot précisé : +- Afficher les références du dépôt précisé : -`git ls-remote {{repositiory-url}}` +`git ls-remote {{url-du-dépôt}}` -- Afficher les références du dépot précisé filtrés par un pattern : +- Afficher les références du dépôt précisé filtrés par un motif : -`git ls-remote {{repositiory-name}} "{{pattern}}"` +`git ls-remote {{nom-du-dépôt}} "{{motif}}"` diff --git a/pages.fr/common/git-ls-tree.md b/pages.fr/common/git-ls-tree.md index 1a6c01c526b33e..ae9b7bf219c272 100644 --- a/pages.fr/common/git-ls-tree.md +++ b/pages.fr/common/git-ls-tree.md @@ -1,16 +1,16 @@ # git ls-tree > Lister le contenu d'un arbre. -> Plus d'informations : . +> Plus d'informations : . -- Lister le contenu de l'arbre dans la branche : +- Lister le contenu de l'arbre dans la branche : `git ls-tree {{nom_de_branche}}` -- Lister le contenu de l'arbre dans le commit, recursif avec les sous-arbres : +- Lister le contenu de l'arbre dans le commit, récursif avec les sous-arbres : `git ls-tree -r {{commit_hash}}` -- Lister uniquement les moms de fichiers de l'arbre dans un commit : +- Lister uniquement les noms de fichiers de l'arbre dans un commit : `git ls-tree --name-only {{commit_hash}}` diff --git a/pages.fr/common/git-merge.md b/pages.fr/common/git-merge.md index 78c458bc28eeb8..544c971418524b 100644 --- a/pages.fr/common/git-merge.md +++ b/pages.fr/common/git-merge.md @@ -1,24 +1,24 @@ # git merge -> Merge branches. -> Plus d'informations : . +> Pour fusionner des branches `git`. +> Plus d'informations : . -- Merge une branche dans votre branche courrante : +- Fusionne une branche dans votre branche courante : `git merge {{nom_de_branche}}` -- Editer le message de merge : +- Editer le message de fusion (`merge commit`) : `git merge -e {{nom_de_branche}}` -- Merge une branche et créer un commit de merge : +- Fusionner une branche et créer un commit de fusion (`merge commit`) : `git merge --no-ff {{nom_de_branche}}` -- Annuler un merge en cas de conflit : +- Annuler une fusion en cas de conflit : `git merge --abort` -- Continuer un merge apreés une résolution de conflit : +- Continuer une fusion après une résolution de conflit : `git merge --continue` diff --git a/pages.fr/common/git-mergetool.md b/pages.fr/common/git-mergetool.md index a746442c76d7d1..56b515e061be67 100644 --- a/pages.fr/common/git-mergetool.md +++ b/pages.fr/common/git-mergetool.md @@ -1,28 +1,28 @@ # git mergetool -> Executer un utilitaire de différences pour resoudre les conflits de merge. -> Plus d'informations : . +> Executer un utilitaire de différences pour résoudre les conflits de merge. +> Plus d'informations : . -- Démarrer l'outil de différences par défaut : +- Démarrer l'outil de différences par défaut : `git mergetool` -- Lister les outils de différences valides : +- Lister les outils de différences valides : `git mergetool --tool-help` -- Démarrer l'outil de différences en précisant son nom : +- Démarrer l'outil de différences en précisant son nom : `git mergetool --tool {{tool_name}}` -- Démarer l'outil de difféerences sans dialogues : +- Démarrer l'outil de différences sans dialogues : `git mergetool --no-prompt` -- Utiliser explicitement l'outil de différences graphique (voir la variable de config `merge.guitool`) : +- Utiliser explicitement l'outil de différences graphique (voir la variable de config `merge.guitool`) : `git mergetool --gui` -- tiliser explicitement l'outil de différences clasique (voir la variable de config `merge.tool`) : +- Utiliser explicitement l'outil de différences classique (voir la variable de config `merge.tool`) : `git mergetool --no-gui` diff --git a/pages.fr/common/git-mv.md b/pages.fr/common/git-mv.md index a41060676681f2..3ef69d4b1aac82 100644 --- a/pages.fr/common/git-mv.md +++ b/pages.fr/common/git-mv.md @@ -1,16 +1,16 @@ # git mv -> Déplacer ou renomer des fichiers inscrits dans l'index. -> Plus d'informations : . +> Déplacer ou renommer des fichiers inscrits dans l'index. +> Plus d'informations : . -- Déplace les fichiers dans l'index Git, valide au prochain commit : +- Déplace les fichiers dans l'index Git, valide au prochain commit : `git mv {{chemin/vers/fichier}} {{new/path/to/file}}` -- Renome un fichier et met a jour l'index, valide au prochain commit : +- Renome un fichier et met a jour l'index, valide au prochain commit : `git mv {{filename}} {{new_filename}}` -- Force l'écrasement d'un fichier : +- Force l'écrasement d'un fichier : `git mv --force {{file}} {{cible}}` diff --git a/pages.fr/common/git-notes.md b/pages.fr/common/git-notes.md index dd6108cd13e6a5..9b743b337b5147 100644 --- a/pages.fr/common/git-notes.md +++ b/pages.fr/common/git-notes.md @@ -1,36 +1,36 @@ # git notes > Ajoute ou inspecte des notes d'objets. -> Plus d'informations : . +> Plus d'informations : . -- Lister toutes les notes et leurs objets rattachés : +- Lister toutes les notes et leurs objets rattachés : `git notes list` -- Lister toutes les notes attaches a un objet donné : +- Lister toutes les notes attachées à un objet donné : -`git notes list [{{object}}]` +`git notes list [{{objet}}]` -- Afficher les notes attachés a un objet donné : +- Afficher les notes attachées à un objet donné : -`git notes show [{{object}}]` +`git notes show [{{objet}}]` -- Ajoute une note à un objet donné : +- Ajoute une note à un objet donné : -`git notes append {{object}}` +`git notes append {{objet}}` -- Ajoute une note à un objet donné, en spécifiant le message : +- Ajoute une note à un objet donné, en spécifiant le message : -`git notes append --message="{{message_text}}"` +`git notes append --message="{{texte_du_message}}"` -- Edite une note éxistante : +- Édite une note existante : -`git notes edit [{{object}}]` +`git notes edit [{{objet}}]` -- Copy la note d'un objet vers un autre : +- Copie la note d'un objet vers un autre : -`git notes copy {{source_object}} {{objet_cible}}` +`git notes copy {{objet_source}} {{objet_cible}}` -- Supprime toutes les notes d'un objet spécifié : +- Supprime toutes les notes d'un objet donné : -`git notes remove {{object}}` +`git notes remove {{objet}}` diff --git a/pages.fr/common/git-pr.md b/pages.fr/common/git-pr.md index 5d8a00986b26d0..2528f63da9fb20 100644 --- a/pages.fr/common/git-pr.md +++ b/pages.fr/common/git-pr.md @@ -1,19 +1,20 @@ # git pr -> Récupére les pull-request GitHub localement. +> Récupère les pull-requests GitHub localement. +> Plus d'informations : . -- Récupére une pull-request spécifique : +- Récupère une pull-request spécifique : `git pr {{pr_number}}` -- Récupére une pull-request d un dépot spécifique : +- Récupère une pull-request d'un dépôt spécifique : `git pr {{pr_number}} {{distant}}` -- Récupére une pull-request depuis sont url : +- Récupère une pull-request depuis son URL : `git pr {{url}}` -- Nettoie les branches de pull-request terminés : +- Nettoie les branches de pull-requests terminées : `git pr clean` diff --git a/pages.fr/common/git-pull.md b/pages.fr/common/git-pull.md index 6348d124c28b9c..e58fa46375684f 100644 --- a/pages.fr/common/git-pull.md +++ b/pages.fr/common/git-pull.md @@ -1,16 +1,16 @@ # git pull > Récupère une branche depuis le serveur distant et la fusionne dans la branche local. -> Plus d'informations : . +> Plus d'informations : . -- Télécharge les changements depuis le serveur distant par défaut et fusionne les : +- Télécharge les changements depuis le serveur distant par défaut et fusionne les : `git pull` -- Télécharge les changements depuis le serveur distant par défaut et applique les changements locaux par dessus : +- Télécharge les changements depuis le serveur distant par défaut et applique les changements locaux par dessus : `git pull --rebase` -- Télécharge les changements depuis un serveur et une branche distante, puis fusionne les dans HEAD : +- Télécharge les changements depuis un serveur et une branche distante, puis fusionne les dans HEAD : `git pull {{nom_distant}} {{branche}}` diff --git a/pages.fr/common/git-push.md b/pages.fr/common/git-push.md index 0afaae7447815b..f6bdbf913f8d1e 100644 --- a/pages.fr/common/git-push.md +++ b/pages.fr/common/git-push.md @@ -1,32 +1,32 @@ # git push > Pousse les commits vers un dépôt distant. -> Plus d'informations : . +> Plus d'informations : . -- Envoie les changements locaux dans la branche courante vers sa contrepartie distante : +- Envoie les changements locaux dans la branche courante vers sa contrepartie distante : `git push` -- Envoie les changements locaux d'une branche spécifique vers sa contrepartie distante : +- Envoie les changements locaux d'une branche spécifique vers sa contrepartie distante : `git push {{nom_distant}} {{local_branch}}` -- Publie la branche courante vers un dépôt distant, crée le nom de la branche distante : +- Publie la branche courante vers un dépôt distant, crée le nom de la branche distante : `git push {{nom_distant}} -u {{branche_distante}}` -- Envoi les changements locaux sur toutes les branches locales vers leur contrepartie sur le dépôt distant : +- Envoi les changements locaux sur toutes les branches locales vers leur contrepartie sur le dépôt distant : `git push --all {{nom_distant}}` -- Supprime une branche dans un dépôt distant : +- Supprime une branche dans un dépôt distant : `git push {{nom_distant}} --delete {{branche_distante}}` -- Supprime les branches distantes qui n'ont pas de contrepartie locale : +- Supprime les branches distantes qui n'ont pas de contrepartie locale : `git push --prune {{nom_distant}}` -- Publie les tags qui ne sont pas sur le dépôt distant : +- Publie les tags qui ne sont pas sur le dépôt distant : `git push --tags` diff --git a/pages.fr/common/git-rebase.md b/pages.fr/common/git-rebase.md index a983faaffcccc7..57102f1f3d4219 100644 --- a/pages.fr/common/git-rebase.md +++ b/pages.fr/common/git-rebase.md @@ -2,36 +2,36 @@ > Rejoue les commits d'une branche par dessus une autre. > Communément utilisé pour dupliquer les commits d'une branche dans une autre, en créant de nouveaux commits dans la branche de destination. -> Plus d'informations : . +> Plus d'informations : . -- Rejouer les commits de la branche courrante sur la branche master : +- Rejouer les commits de la branche courante sur la branche master : `git rebase {{master}}` -- Rejouer les comits interactivement, ce qui permet aux commits d'éte re-arrangés, exclus, combimés ou modifiés : +- Rejouer les comits interactivement, ce qui permet aux commits d'être re-arrangés, exclus, combinés ou modifiés : `git rebase -i {{branche_de_base_ou_commit}}` -- Continuer le re-jeu des commits apres la resolution d'un conflit : +- Continuer le re-jeu des commits après la résolution d'un conflit : `git rebase --continue` -- Continuer le re-jeu des commits en sautant la résolution d'un conflit : +- Continuer le re-jeu des commits en sautant la résolution d'un conflit : `git rebase --skip` -- Annule l'operation (ex : en cas de conflict) : +- Annule l'opération (ex : en cas de conflit) : `git rebase --abort` -- Déplacez une partie de la branche actuelle sur une nouvelle base, fournissant l'ancienne base à partir de laquelle commencer : +- Déplacez une partie de la branche actuelle sur une nouvelle base, fournissant l'ancienne base à partir de laquelle commencer : `git rebase --onto {{new_base}} {{old_base}}` -- Rejoue les 5 derniers commits, ce qui permet aux commits d'éte re-arrangés, exclus, combimés ou modifiés : +- Rejoue les 5 derniers commits, ce qui permet aux commits d'être re-arrangés, exclus, combinés ou modifiés : `git rebase -i {{HEAD~5}}` -- Resoudre automatiquement les conflits en precisant la version a conserver (`theirs` signifie la version des fichiers a privilégier) : +- Résoudre automatiquement les conflits en précisant la version à conserver (`theirs` signifie la version des fichiers à privilégier) : `git rebase -X theirs {{master}}` diff --git a/pages.fr/common/git-reflog.md b/pages.fr/common/git-reflog.md index 9646e75821cf69..5cab0a9f4d11e1 100644 --- a/pages.fr/common/git-reflog.md +++ b/pages.fr/common/git-reflog.md @@ -1,16 +1,16 @@ # git reflog > Affiche un log des changements locaux comme HEAD, tags et branches. -> Plus d'informations : . +> Plus d'informations : . -- Afficher le reflog de HEAD : +- Afficher le reflog de HEAD : `git reflog` -- Affiche le reflog d'une branche spécifique : +- Affiche le reflog d'une branche spécifique : `git reflog {{nom_de_branche}}` -- Affiche les 5 dérniéres entrés dans le reflog : +- Affiche les 5 dernières entrées dans le reflog : `git reflog -n {{5}}` diff --git a/pages.fr/common/git-remote.md b/pages.fr/common/git-remote.md index e965d241df83c2..ecde4bc71e812c 100644 --- a/pages.fr/common/git-remote.md +++ b/pages.fr/common/git-remote.md @@ -1,28 +1,28 @@ # git remote -> Organisation des dépots suivis ("remotes"). -> Plus d'informations : . +> Organisation des dépôts suivis ("remotes"). +> Plus d'informations : . -- Affiche les dépots existants, leur nom et url : +- Affiche les dépôts existants, leur nom et URL : `git remote -v` -- Affiche les informations a propos d'un dépot : +- Affiche les informations à propos d'un dépôt : `git remote show {{nom_distant}}` -- Ajoute un dépot : +- Ajoute un dépôt : `git remote add {{nom_distant}} {{url_distant}}` -- Change l'url d'un dépot (ajouter `--add` pour conserver l'url existante) : +- Change l'URL d'un dépôt (ajouter `--add` pour conserver l'URL existante) : `git remote set-url {{nom_distant}} {{new_url}}` -- Suprime un dṕot : +- Supprime un dépôt : `git remote remove {{nom_distant}}` -- Renome un dépot : +- Renomme un dépôt : `git remote rename {{old_name}} {{new_name}}` diff --git a/pages.fr/common/git-repack.md b/pages.fr/common/git-repack.md index 3600f6d63449fc..4765641e678072 100644 --- a/pages.fr/common/git-repack.md +++ b/pages.fr/common/git-repack.md @@ -1,12 +1,12 @@ # git repack -> Empaqueter les objets décompressés dans un dépot Git. -> Plus d'informations : . +> Empaqueter les objets décompressés dans un dépôt Git. +> Plus d'informations : . -- Empaqueter les objets décompressés dans le dépot courrant : +- Empaqueter les objets décompressés dans le dépôt courant : `git repack` -- Egalement suprime les objets redondants après empaquetage : +- Également supprimer les objets redondants après empaquetage : `git repack -d` diff --git a/pages.fr/common/git-request-pull.md b/pages.fr/common/git-request-pull.md index 32ef05e177bfb7..07406e150b881b 100644 --- a/pages.fr/common/git-request-pull.md +++ b/pages.fr/common/git-request-pull.md @@ -1,12 +1,12 @@ # git request-pull > Générer une requête demandant au projet en amont d'inclure les modifications dans son arborescence. -> Plus d'informations : . +> Plus d'informations : . -- Produire une requête résumant les changements entre la version v1.1 et le master : +- Produire une requête résumant les changements entre la version v1.1 et le master : `git request-pull {{v1.1}} {{https://example.com/project}} {{master}}` -- Produire une requête résumant les changements entre la version v1.1 sur la branche master et la branche locale foo : +- Produire une requête résumant les changements entre la version v1.1 sur la branche master et la branche locale foo : `git request-pull {{v0.1}} {{https://example.com/project}} {{master:foo}}` diff --git a/pages.fr/common/git-reset.md b/pages.fr/common/git-reset.md index 8a4faea49c5713..66f451abf8288d 100644 --- a/pages.fr/common/git-reset.md +++ b/pages.fr/common/git-reset.md @@ -3,32 +3,32 @@ > Enlève des commits ou des changements en réinitialisant la tête Git à l'état spécifié. > Si un chemin est passé en paramètre, Git reset fonctionne comme «unstage». > Si un hash de commit est passé en paramètre, Git reset annule les commits jusqu'à ce dernier. -> Plus d'informations : . +> Plus d'informations : . -- Tout enlever de la *zone de stage* : +- Tout enlever de la *zone de stage* : `git reset` -- Enlever des fichiers spécifiques de la *zone de stage* : +- Enlever des fichiers spécifiques de la *zone de stage* : `git reset {{chemin/vers/fichier(s)}}` -- Enlever une portion d'un fichier de la *zone de stage* : +- Enlever, en mode interactif, des fichiers spécifiques de l’index : -`git reset -p {{chemin/vers/fichier}}` +`git reset --patch {{chemin/vers/fichier}}` -- Annuler le dernier *commit*, mais garder les chagements éffectués dans votre système de fichier : +- Annuler le dernier *commit*, mais garder les changements effectués dans votre système de fichiers : `git reset HEAD~` -- Défaire les deux derniers *commits*, et ajouter leur changements à l'index adding their changes to the index (dans la zone de stage) : +- Défaire les deux derniers *commits*, et ajouter leurs changements à l'index (dans la zone de stage) : `git reset --soft HEAD~2` -- Enlever tout les changements qui n'ont pas été *commit*, qu'ils soient dans la *zone de stage* ou non (pour enlever seulement les changements de la *zone de stage*, utiliser `git checkout`) : +- Enlever tout les changements qui n'ont pas été *commit*, qu'ils soient dans la *zone de stage* ou non (pour enlever seulement les changements de la *zone de stage*, utiliser `git checkout`) : `git reset --hard` -- Réinitialiser le dépôt à un commit spécifique en retirant tout les changements (ceci inclus les changements dans des commits entre la *tête* et le *commit* spécifié!) : +- Réinitialiser le dépôt à un commit spécifique en retirant tout les changements (ceci inclus les changements dans des commits entre la *tête* et le *commit* spécifié !) : `git reset --hard {{commit}}` diff --git a/pages.fr/common/git-restore.md b/pages.fr/common/git-restore.md index 047156ba36446f..8cb60f2cb114ac 100644 --- a/pages.fr/common/git-restore.md +++ b/pages.fr/common/git-restore.md @@ -2,16 +2,16 @@ > Restaurez les fichiers de l'arborescence de travail. Nécessite la version 2.23+ de Git. > Voir aussi `git checkout`. -> Plus d'informations : . +> Plus d'informations : . -- Restaurer un fichier supprimé à partir du contenu du commit actuel (HEAD) : +- Restaurer un fichier supprimé à partir du contenu du commit actuel (HEAD) : `git restore {{chemin/vers/fichier}}` -- Restaurer un fichier a la version d'un commit spécifié : +- Restaurer un fichier a la version d'un commit spécifié : `git restore --source {{commit}} {{chemin/vers/fichier}}` -- Annulez toutes les modifications non validées des fichiers suivis, en revenant au HEAD : +- Annulez toutes les modifications non validées des fichiers suivis, en revenant au HEAD : `git restore .` diff --git a/pages.fr/common/git-rev-list.md b/pages.fr/common/git-rev-list.md index e524fe577e4e69..118c3bfdd9f166 100644 --- a/pages.fr/common/git-rev-list.md +++ b/pages.fr/common/git-rev-list.md @@ -1,16 +1,16 @@ # git rev-list -> Liste les révisionts (commits) dans l'ordre chronologique inverse. -> Plus d'informations : . +> Liste les révisions (commits) dans l'ordre chronologique inverse. +> Plus d'informations : . -- Lister tout les commits dans la branche courrante : +- Lister tout les commits dans la branche courante : `git rev-list {{HEAD}}` -- Lister tout les commits plus récents qu'une date spécifique, sur une branche spécifique : +- Lister tout les commits plus récents qu'une date spécifique, sur une branche spécifique : `git rev-list --since={{'2019-12-01 00:00:00'}} {{master}}` -- Lister tout les commits de merge depuis un commit spécifique : +- Lister tout les commits de merge depuis un commit spécifique : `git rev-list --merges {{commit}}` diff --git a/pages.fr/common/git-rev-parse.md b/pages.fr/common/git-rev-parse.md index e3baa149efb02d..6113f9f9a23479 100644 --- a/pages.fr/common/git-rev-parse.md +++ b/pages.fr/common/git-rev-parse.md @@ -1,16 +1,16 @@ # git rev-parse > Afficher les métadonnées liées à des révisions spécifiques. -> Plus d'informations : . +> Plus d'informations : . -- Afficher le hash de commit de la branche courrante : +- Afficher l'empreinte du commit de la branche courante : `git rev-parse {{nom_de_branche}}` -- Affiche le nom de la branche courrante : +- Affiche le nom de la branche courante : `git rev-parse --abbrev-ref {{HEAD}}` -- Obtenir le chamin absolu du repertoire racine : +- Obtenir le chemin absolu du répertoire racine : `git rev-parse --show-toplevel` diff --git a/pages.fr/common/git-revert.md b/pages.fr/common/git-revert.md index 519f19ef3ae06b..af6dc70f1082e4 100644 --- a/pages.fr/common/git-revert.md +++ b/pages.fr/common/git-revert.md @@ -1,20 +1,20 @@ # git revert -> Créer un nouveau commit qui efface les changements du précedant. -> Plus d'informations : . +> Créer un nouveau commit qui efface les changements du précédent. +> Plus d'informations : . -- Crée un commit qui annule les changements du dernier commit : +- Crée un commit qui annule les changements du dernier commit : -`git revert {{@}}` +`git revert {{HEAD}}` -- Crée un commit qui annule les changements des 5 dernier commit : +- Crée un commit qui annule les changements des 5 dernier commit : `git revert HEAD~{{4}}` -- Crée un commit qui annule les changements de plusieurs commit : +- Crée un commit qui annule les changements de plusieurs commit : `git revert {{master~5..master~2}}` -- Ne pas créer de nouveau commit, remplacer uniquement dans l'arbre courrant : +- Ne pas créer de nouveau commit, remplacer uniquement dans l'arbre courant : `git revert -n {{0c01a9..9a1743}}` diff --git a/pages.fr/common/git-rm.md b/pages.fr/common/git-rm.md index 3fde310c77d2ec..a7e9c3e8c47f1c 100644 --- a/pages.fr/common/git-rm.md +++ b/pages.fr/common/git-rm.md @@ -1,16 +1,16 @@ # git rm -> Supprimer des fichiers de l'index, du dépot et du systéme de fichiers. -> Plus d'informations : . +> Supprimer des fichiers de l'index, du dépôt et du système de fichiers. +> Plus d'informations : . -- Supprimer un fichiers de l'index, du dépot et du systéme de fichiers : +- Supprimer un fichiers de l'index, du dépôt et du système de fichiers : `git rm {{file}}` -- Supprimer un répertoire de l'index, du dépot et du systéme de fichiers : +- Supprimer un répertoire de l'index, du dépôt et du système de fichiers : `git rm -r {{directory}}` -- Supprimer un fichiers de l'index, du dépot mais le conserve sur le systéme de fichiers : +- Supprimer un fichiers de l'index, du dépôt mais le conserve sur le système de fichiers : `git rm --cached {{file}}` diff --git a/pages.fr/common/git-send-email.md b/pages.fr/common/git-send-email.md index 5a7c45d849ee58..63cf68c711daa7 100644 --- a/pages.fr/common/git-send-email.md +++ b/pages.fr/common/git-send-email.md @@ -2,24 +2,24 @@ > Envoyer une collection de correctifs par email. > Les correctifs peuvent être spécifiés sous forme de fichiers, de directions ou de liste de révisions. -> Plus d'informations : . +> Plus d'informations : . -- Envoyer le dernier commit de la branche courrante : +- Envoyer le dernier commit de la branche courante : `git send-email -1` -- envoyer un commit spécifiaue : +- Envoyer un commit spécifique : `git send-email -1 {{commit}}` -- envoyer de multiples commits de la branche courrante (ici : 10) : +- Envoyer de multiples commits de la branche courante (ici : 10) : `git send-email {{-10}}` -- Envoyez un e-mail de présentation de la série de correctifs : +- Envoyez un e-mail de présentation de la série de correctifs : `git send-email -{{number of commits}} --compose` -- Consultez et modifiez l'e-mail de chaque patch que vous êtes sur le point d'envoyer : +- Consultez et modifiez l'e-mail de chaque patch que vous êtes sur le point d'envoyer : `git send-email -{{number of commits}} --annotate` diff --git a/pages.fr/common/git-shortlog.md b/pages.fr/common/git-shortlog.md index 078baa2f57d64b..741f7349798557 100644 --- a/pages.fr/common/git-shortlog.md +++ b/pages.fr/common/git-shortlog.md @@ -1,28 +1,28 @@ # git shortlog > Récapitule la sortie de `git log`. -> Plus d'informations : . +> Plus d'informations : . -- Afficher un résumé de tous les commits effectués, regroupés par ordre alphabétique par nom d'auteur : +- Afficher un résumé de tous les commits effectués, regroupés par ordre alphabétique par nom d'auteur : `git shortlog` -- Afficher un résumé de tous les commits effectués, regroupés par le nombre de commits effectués : +- Afficher un résumé de tous les commits effectués, regroupés par le nombre de commits effectués : `git shortlog -n` -- Afficher un résumé de tous les commits effectués, regroupés par le nom et l'email de l'utilisateur : +- Afficher un résumé de tous les commits effectués, regroupés par le nom et l'email de l'utilisateur : `git shortlog -c` -- fficher un résumé des 5 derniers commits effectués : +- Afficher un résumé des 5 derniers commits effectués : `git shortlog HEAD~{{5}}..HEAD` -- Afficher tout les utilisateurs, emails et le nombre de commits dans la branche : +- Afficher tout les utilisateurs, emails et le nombre de commits dans la branche : `git shortlog -sne` -- Afficher tout les utilisateurs, emails et le nombre de commits dans toutes les branches : +- Afficher tout les utilisateurs, emails et le nombre de commits dans toutes les branches : `git shortlog -sne --all` diff --git a/pages.fr/common/git-show-branch.md b/pages.fr/common/git-show-branch.md index eab9e0b2597b3b..0249665ac8d448 100644 --- a/pages.fr/common/git-show-branch.md +++ b/pages.fr/common/git-show-branch.md @@ -1,36 +1,36 @@ # git show-branch > Affiche les branches et leurs commits. -> Plus d'informations : . +> Plus d'informations : . -- Affiche un resumé du dernier commit dans la branche : +- Affiche un résumé du dernier commit dans la branche : `git show-branch {{nom_de_branche}}|ref|commit}}` -- Comparer des commits avec plusieurs commits ou branches : +- Comparer des commits avec plusieurs commits ou branches : `git show-branch {{nom_de_branche}}|ref|commit}}` -- Comparer toutes les branches distantes : +- Comparer toutes les branches distantes : `git show-branch --remotes` -- Comparer le branche locale avec la branche distante : +- Comparer la branche locale avec la branche distante : `git show-branch --all` -- Lister les derniers commits sur toutes les branches : +- Lister les derniers commits sur toutes les branches : `git show-branch --all --list` -- Compareer une branche spécifique a la branche courante : +- Comparer une branche spécifique à la branche courante : `git show-branch --current {{commit|branch_name|ref}}` -- Afficher le nom du commit au lieu du nom relatif : +- Afficher le nom du commit au lieu du nom relatif : `git show-branch --sha1-name --current {{current|branch_name|ref}}` -- Continuez l'affichage d'un certain nombre de commits au-delà de l'ancêtre commun : +- Continuez l'affichage d'un certain nombre de commits au-delà de l'ancêtre commun : `git show-branch --more {{5}} {{commit|branch_name|ref}} {{commit|branch_name|ref}} {{...}}` diff --git a/pages.fr/common/git-show-ref.md b/pages.fr/common/git-show-ref.md index 311fbe8f26d7f0..6ba3845297d12c 100644 --- a/pages.fr/common/git-show-ref.md +++ b/pages.fr/common/git-show-ref.md @@ -1,20 +1,20 @@ # git show-ref > Commande Git pour lister les références. -> Plus d'informations : . +> Plus d'informations : . -- Affiche toutes les références dans le dépot : +- Affiche toutes les références dans le dépôt : `git show-ref` -- Affiche seulement les références des tétes de branches : +- Affiche seulement les références des têtes de branches : `git show-ref --heads` -- Affiche seulement les références de tags : +- Affiche seulement les références de tags : `git show-ref --tags` -- Verifier l'existence d'une référence : +- Vérifier l'existence d'une référence : `git show-ref --verify {{chemin/vers/reference}}` diff --git a/pages.fr/common/git-show.md b/pages.fr/common/git-show.md index 7e795c90a0a327..51b7121fde7933 100644 --- a/pages.fr/common/git-show.md +++ b/pages.fr/common/git-show.md @@ -1,32 +1,32 @@ # git show > Affiche différents types d'objets Git (commits, tags, etc.). -> Plus d'informations : . +> Plus d'informations : . -- Afficher des informations sur le dernier commit (hachage, message, modifications et autres métadonnées) : +- Afficher des informations sur le dernier commit (hachage, message, modifications et autres métadonnées) : `git show` -- Affiche les informations du dernier commit : +- Affiche les informations du dernier commit : `git show {{commit}}` -- Affiche les informations associés au tag spécifié : +- Affiche les informations associés au tag spécifié : `git show {{etiquette}}` -- Affiche les informations a propos du 3éme commit en partant du sommet de la branche : +- Affiche les informations à propos du 3ème commit en partant du sommet de la branche : `git show {{branche}}~{{3}}` -- Afficher le message d'un commit sur une seule ligne, en supprimant la sortie diff : +- Afficher le message d'un commit sur une seule ligne, en supprimant la sortie diff : `git show --oneline -s {{commit}}` -- Affiche uniquement la liste des fichiers changés dans un commit : +- Affiche uniquement la liste des fichiers changés dans un commit : `git show --stat {{commit}}` -- Afficher le contenu d'un fichier tel qu'il était à une révision donnée (par exemple, branche, tag ou commit) : +- Afficher le contenu d'un fichier tel qu'il était à une révision donnée (par exemple, branche, tag ou commit) : `git show {{revision}}:{{chemin/vers/fichier}}` diff --git a/pages.fr/common/git-sizer.md b/pages.fr/common/git-sizer.md index 23477d6ea03974..8385142eda7e32 100644 --- a/pages.fr/common/git-sizer.md +++ b/pages.fr/common/git-sizer.md @@ -1,16 +1,16 @@ # git sizer -> Calcule diverses métriques de taille de dépot Git et vous alerte de tout ce qui pourrait causer des problèmes ou des inconvénients. -> Plus d'informations : . +> Calcule diverses métriques de taille de dépôt Git et vous alerte de tout ce qui pourrait causer des problèmes ou des inconvénients. +> Plus d'informations : . -- Signaler uniquement les statistiques dont le niveau de préoccupation est supérieur à 0 : +- Signaler uniquement les statistiques dont le niveau de préoccupation est supérieur à 0 : `git sizer` -- Signaler toutes les statistiques : +- Signaler toutes les statistiques : `git sizer -v` -- Afficher les options additionelles : +- Afficher les options additionnelles : `git sizer -h` diff --git a/pages.fr/common/git-stage.md b/pages.fr/common/git-stage.md index 04b25629363a99..b7b49ae6a9d2a0 100644 --- a/pages.fr/common/git-stage.md +++ b/pages.fr/common/git-stage.md @@ -1,33 +1,33 @@ # git stage > Ajouter le contenu du fichier à la zone de préparation. -> Synonym of `git add`. -> Plus d'informations : . +> Synonyme de `git add`. +> Plus d'informations : . -- Ajouter un fichier à l'index : +- Ajouter un fichier à l'index : `git stage {{chemin/vers/fichier}}` -- Ajoute tout les fichiers à l'index (suivis et non suivis) : +- Ajoute tous les fichiers à l'index (suivis et non-suivis) : `git stage -A` -- Ajout uniquement des fichiers déja suivis : +- Ajout uniquement des fichiers déjà suivis : `git stage -u` -- Ajout egalement des fichiers ignorés : +- Ajout également des fichiers ignorés : `git stage -f` -- Ajout des fichiers par parties, interactivement : +- Ajout des fichiers par parties, interactivement : `git stage -p` -- Ajout d'un fichier par parties, interactivement : +- Ajout d'un fichier par parties, interactivement : `git stage -p {{chemin/vers/fichier}}` -- Ajout d'un fichier, interactivement : +- Ajout d'un fichier, interactivement : `git stage -i` diff --git a/pages.fr/common/git-stash.md b/pages.fr/common/git-stash.md index c79c9920c41fce..b378988dca02bc 100644 --- a/pages.fr/common/git-stash.md +++ b/pages.fr/common/git-stash.md @@ -1,36 +1,36 @@ # git stash > Stocker les modifications Git locales dans une zone temporaire. -> Plus d'informations : . +> Plus d'informations : . -- Stocker les changements courrants, sauf les fichiers non suivis : +- Stocker les changements courants, sauf les fichiers non-suivis : `git stash [push -m {{nom_de_stash_optionel}}]` -- Stocker les changements courrants, incluant le sfichiers non suivis : +- Stocker les changements courants, incluant les fichiers non-suivis : `git stash -u` -- Stocker les parties d'un fichier interactivement : +- Stocker les parties d'un fichier interactivement : `git stash -p` -- Lister tout les stash (saffiche leurs noms, les branches relatives et messages) : +- Lister tous les stashs (affiche leurs noms, les branches relatives et messages) : `git stash list` -- Applique un stash (par défaut, le dernier, nommé stash@{0}) : +- Applique un stash (par défaut, le dernier, nommé stash@{0}) : `git stash apply {{nom_de_stash_ou_de_commit_optionel}}` -- Applique un stash (par défaut le dernier, stash@{0}), et le suprimmer de la liste des stash si il n'y a pas de conflits : +- Applique un stash (par défaut le dernier, stash@{0}), et le supprimer de la liste des stashs s'il n'y a pas de conflit : `git stash pop {{nom_de_stash_optionel}}` -- Suprime un stash (par défaut le dernier, stash@{0}) : +- Supprime un stash (par défaut le dernier, stash@{0}) : `git stash drop {{nom_de_stash_optionel}}` -- Suprime tout les stash : +- Supprime tous les stashs : `git stash clear` diff --git a/pages.fr/common/git-status.md b/pages.fr/common/git-status.md index 94405241902288..38dc6215b72075 100644 --- a/pages.fr/common/git-status.md +++ b/pages.fr/common/git-status.md @@ -1,21 +1,21 @@ # git status -> Affiche les changements sur les fichiers dans la branche courrante. -> Affiche les fichiers édités, deplacés, renomés, ajoutés, suprimés par rapport a la référence de la branche courrante. -> Plus d'informations : . +> Affiche les changements sur les fichiers dans la branche courante. +> Affiche les fichiers édités, déplacés, renommés, ajoutés, supprimés par rapport à la référence de la branche courante. +> Plus d'informations : . -- Affiche les fichiers mofifiés qui n ont pas encore été ajoutés pour le commit : +- Affiche les fichiers modifiés qui n'ont pas encore été ajoutés pour le commit : `git status` -- Affiche les fichiers mofifiés (version courte) : +- Affiche les fichiers modifiés (version courte) : `git status -s` -- Affiche les fichiers mofifiés, sans tenir des comptes des fichiers non suivis : +- Affiche les fichiers modifiés, sans tenir des comptes des fichiers non-suivis : `git status --untracked-files=no` -- Affiche les fichiers mofifiés (version courte) avec les informations de branche : +- Affiche les fichiers modifiés (version courte) avec les informations de branche : `git status -sb` diff --git a/pages.fr/common/git-submodule.md b/pages.fr/common/git-submodule.md index d63db9e6b41d2c..ac72c041da26bf 100644 --- a/pages.fr/common/git-submodule.md +++ b/pages.fr/common/git-submodule.md @@ -1,20 +1,20 @@ # git submodule -> Inspecter, metre a jour et manager des sous modules. -> Plus d'informations : . +> Inspecter, mettre à jour et manager des sous-modules. +> Plus d'informations : . -- Installer un submodule depuis le dépot courrant : +- Installer un sous-module depuis le dépôt courant : `git submodule update --init --recursive` -- Ajout d'un dépot Git en tant que sous module : +- Ajout d'un dépôt Git en tant que sous-module : `git submodule add {{repository_url}}` -- Ajout d'un dépot Git en tant que sous module a répertoire donné : +- Ajout d'un dépôt Git en tant que sous-module à un répertoire donné : `git submodule add {{repository_url}} {{chemin/vers/repertoire}}` -- Metre à jour tout les sous modules à leurs derniers commit : +- Mettre à jour tout les sous-modules à leur dernier commit : `git submodule foreach git pull` diff --git a/pages.fr/common/git-subtree.md b/pages.fr/common/git-subtree.md index bd3d0e9cc54638..5b67946994a80c 100644 --- a/pages.fr/common/git-subtree.md +++ b/pages.fr/common/git-subtree.md @@ -1,24 +1,24 @@ # 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épot Git en tant que sous arbre : +- Ajout d'un dépôt Git en tant que sous-arbre : `git subtree add --prefix={{chemin/vers/repertoire/}} --squash {{repository_url}} {{master}}` -- Metre a jour le sous arbre avec son dernier commit : +- Mettre à jour le sous-arbre avec son dernier commit : `git subtree pull --prefix={{chemin/vers/repertoire/}} {{repository_url}} {{master}}` -- Merge le dépot d'un sous arbre dans la branche master : +- Merge le dépot d'un sous arbre dans la branche master : `git subtree merge --prefix={{chemin/vers/repertoire/}} --squash {{repository_url}} {{master}}` -- Pousser les commits vers le dépot d'un sous arbre : +- Pousser les commits vers le dépôt d'un sous-arbre : `git subtree push --prefix={{chemin/vers/repertoire/}} {{repository_url}} {{master}}` -- Extraire un nouvel historique de projet de l'historique d'un sous-arbre : +- Extraire un nouvel historique de projet de l'historique d'un sous-arbre : `git subtree split --prefix={{chemin/vers/repertoire/}} {{repository_url}} -b {{nom_de_branche}}` diff --git a/pages.fr/common/git-svn.md b/pages.fr/common/git-svn.md index 3237d286ba8b48..983ab779918756 100644 --- a/pages.fr/common/git-svn.md +++ b/pages.fr/common/git-svn.md @@ -1,24 +1,24 @@ # git svn > Opération bidirectionnelle entre un référentiel Subversion et Git. -> Plus d'informations : . +> Plus d'informations : . -- Cloner un dépot SVN : +- Cloner un dépôt SVN : `git svn clone {{https://example.com/subversion_repo}} {{local_dir}}` -- Cloner un dépot SVN a partir d'une révision donnée : +- Cloner un dépôt SVN à partir d'une révision donnée : `git svn clone -r{{1234}}:HEAD {{https://svn.example.net/subversion/repo}} {{local_dir}}` -- Metre a jourr le clone local a partir du depot SVN distant : +- Mettre à jour le clone local à partir du dépôt SVN distant : `git svn rebase` -- Chercher les changements distants dans le dépot SVN dans les appliquer sur le HEAD : +- Chercher les changements distants dans le dépôt SVN dans les appliquer sur le HEAD : `git svn fetch` -- Commiter sur le SVN : +- Commiter sur le SVN : -`git svn dcommit` +`git svn commit` diff --git a/pages.fr/common/git-switch.md b/pages.fr/common/git-switch.md index a73fe24b84785e..9d6c2f175634b6 100644 --- a/pages.fr/common/git-switch.md +++ b/pages.fr/common/git-switch.md @@ -1,29 +1,29 @@ # git switch > Basculez entre les branches Git. Nécessite la version 2.23+ de Git. -> Voir egalement `git checkout`. -> Plus d'informations : . +> Voir également `git checkout`. +> Plus d'informations : . -- Baculer sur une branche existante : +- Baculer sur une branche existante : `git switch {{nom_de_branche}}` -- Créer une nouvelle branche et basculer dessus : +- Créer une nouvelle branche et basculer dessus : `git switch --create {{nom_de_branche}}` -- Créer une nouvelle branche en partant d'un commit donné et basculer dessus : +- Créer une nouvelle branche en partant d'un commit donné et basculer dessus : `git switch --create {{nom_de_branche}} {{commit}}` -- Basculer sur la branche précedante : +- Basculer sur la branche précédente : `git switch -` -- Basculer vers une branche et mettre à jour tous les sous-modules pour qu'ils correspondent : +- Basculer vers une branche et mettre à jour tous les sous-modules pour qu'ils correspondent : `git switch --recurse-submodules {{nom_de_branche}}` -- Basculer vers une branche et fusionner automatiquement la branche actuelle et toutes les modifications non validées dedans : +- Basculer vers une branche et fusionner automatiquement la branche actuelle et toutes les modifications non validées dedans : `git switch --merge {{nom_de_branche}}` diff --git a/pages.fr/common/git-tag.md b/pages.fr/common/git-tag.md index 847ab56b9580e0..8a3f0613503610 100644 --- a/pages.fr/common/git-tag.md +++ b/pages.fr/common/git-tag.md @@ -1,33 +1,33 @@ # git tag -> Créer, lister, verifier et suprimer des tags. -> Un tag est une reférence statique vers un commit. -> Plus d'informations : . +> Créer, lister, vérifier et supprimer des tags. +> Un tag est une référence statique vers un commit. +> Plus d'informations : . -- Lister tout les tags : +- Lister tout les tags : `git tag` -- Créer un tag avec le nom donné pointant vers le commit actuel : +- Créer un tag avec le nom donné pointant vers le commit actuel : `git tag {{nom_d_etiquette}}` -- Créer un tag avec le nom donné pointant vers un commit spécifié : +- Créer un tag avec le nom donné pointant vers un commit spécifié : `git tag {{nom_d_etiquette}} {{commit}}` -- Créer un tag annoté avec le message spécifié : +- Créer un tag annoté avec le message spécifié : `git tag {{nom_d_etiquette}} -m {{message_d_etiquette}}` -- Suprimer le tag avec le nom spécifié : +- Supprimer le tag avec le nom spécifié : `git tag -d {{nom_d_etiquette}}` -- Metre a jour les tags depuis l'origine : +- Mettre à jour les tags depuis l'origine : `git fetch --tags` -- Liste toutes les tags dont les ancêtres incluent un commit donné : +- Liste toutes les tags dont les ancêtres incluent un commit donné : `git tag --contains {{commit}}` diff --git a/pages.fr/common/git-update-index.md b/pages.fr/common/git-update-index.md index 2513c619674126..550db115cc6377 100644 --- a/pages.fr/common/git-update-index.md +++ b/pages.fr/common/git-update-index.md @@ -1,8 +1,8 @@ # git update-index > Commande Git pour manipuler l'index. -> Plus d'informations : . +> Plus d'informations : . -- Prétendre qu'un fichier modifié est inchangé (`git status` ne l'affichera pas comme modifié) : +- Prétendre qu'un fichier modifié est inchangé (`git status` ne l'affichera pas comme modifié) : `git update-index --skip-worktree {{chemin/vers/fichier_modifié}}` diff --git a/pages.fr/common/git-update-ref.md b/pages.fr/common/git-update-ref.md index 8cb6944e53b268..c782504a849a31 100644 --- a/pages.fr/common/git-update-ref.md +++ b/pages.fr/common/git-update-ref.md @@ -1,12 +1,12 @@ # git update-ref > Commande Git pour créer, mettre à jour et supprimer des références Git. -> Plus d'informations : . +> Plus d'informations : . -- Supprimer une référence, utile pour la réinitialisation du premier commit : +- Supprimer une référence, utile pour la réinitialisation du premier commit : `git update-ref -d {{HEAD}}` -- Mettre a jour une référence avec un message : +- Mettre a jour une référence avec un message : `git update-ref -m {{message}} {{HEAD}} {{4e95e05}}` diff --git a/pages.fr/common/git-worktree.md b/pages.fr/common/git-worktree.md index 5212e39b054350..e2e632bb3afd4b 100644 --- a/pages.fr/common/git-worktree.md +++ b/pages.fr/common/git-worktree.md @@ -1,20 +1,20 @@ # git worktree -> Gérez plusieurs arborescences de travail attachées au même dépot. -> Plus d'informations : . +> Gérer plusieurs arbres de travail attachés au même dépôt. +> Plus d'informations : . -- Créer un nouveau sous arbre avec la branche spécifiée extraite dedans : +- Créer un nouvel arbre de travail avec une branche spécifiée : -`git worktree add {{chemin/vers/repertoire}} {{branche}}` +`git worktree add {{chemin/vers/répertoire}} {{branche}}` -- Créer un nouveau sous arbre branche extraite dedans : +- Créer un nouvel arbre de travail avec une nouvelle branche : -`git worktree add {{chemin/vers/repertoire}} -b {{nouvelle_branche}}` +`git worktree add {{chemin/vers/répertoire}} -b {{nouvelle_branche}}` -- Répertoriez tous les sous arbres attachés à ce dépot : +- Répertorier tous les arbres de travail attachés à ce dépôt : `git worktree list` -- Suprime les sous arbres (apres avoir suprimé les repertoires de travail) : +- Supprimer les arbres de travail (après avoir supprimé les répertoires de travail) : `git worktree prune` diff --git a/pages.fr/common/git.md b/pages.fr/common/git.md index f98d3cc19108a9..e5ebfddb76fc91 100644 --- a/pages.fr/common/git.md +++ b/pages.fr/common/git.md @@ -1,28 +1,29 @@ # git > Système de gestion de versions décentralisé. -> Plus d'informations : . +> Certaines commandes comme `git commit` ont leur propre documentation. +> Plus d'informations : . -- Obtenir la version de Git : +- Obtenir la version de Git : `git --version` -- Afficher l'aide générale : +- Afficher l'aide générale : `git --help` -- Afficher l'aide sur une sous-commande Git : +- Afficher l'aide sur une sous-commande Git : `git help {{sous_commande}}` -- Exécuter une sous-commande Git : +- Exécuter une sous-commande Git : `git {{sous_commande}}` -- Exécuter une sous-commande Git sur un répertoire personalisé : +- Exécuter une sous-commande Git sur un répertoire personnalisé : `git -C {{chemin/vers/repertoire}} {{sous_commande}}` -- Exécuter une sous-commande Git avec un paramètre de configuration spécifique : +- Exécuter une sous-commande Git avec un paramètre de configuration spécifique : `git -c '{{cle_param_config}}={{valeur}}' {{sous_commande}}` diff --git a/pages.fr/common/gnmic-sub.md b/pages.fr/common/gnmic-sub.md new file mode 100644 index 00000000000000..b15a9c19e0538f --- /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/go.md b/pages.fr/common/go.md new file mode 100644 index 00000000000000..da8c3add95b8ea --- /dev/null +++ b/pages.fr/common/go.md @@ -0,0 +1,33 @@ +# go + +> Outil de gestion du code source Go. +> Certaines sous-commandes telles que `go build` ont leur propre documentation d'utilisation. +> Plus d'informations : . + +- Télécharger et installer un paquet, spécifié par son chemin d'importation : + +`go get {{chemin_du_paquet}}` + +- Compiler et exécuter un fichier source (il doit contenir un paquet `main`) : + +`go run {{fichier}}.go` + +- Compiler un fichier source dans un exécutable nommé : + +`go build -o {{executable}} {{fichier}}.go` + +- Compile le paquet présent dans le répertoire courant : + +`go build` + +- Exécuter tous les cas de test du paquet courant (les fichiers doivent se terminer par `_test.go`) : + +`go test` + +- Compiler et installer le paquet actuel : + +`go install` + +- Initialiser un nouveau module dans le répertoire courant : + +`go mod init {{nom_du_module}}` diff --git a/pages.fr/common/google-chrome.md b/pages.fr/common/google-chrome.md new file mode 100644 index 00000000000000..3fbb02b48336d8 --- /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/grep.md b/pages.fr/common/grep.md index d52549fea0fb5d..05a51f8a74c0bb 100644 --- a/pages.fr/common/grep.md +++ b/pages.fr/common/grep.md @@ -1,37 +1,37 @@ # grep > Recherche des motifs dans un texte. -> Supporte des motifs simples et des expressions regulières. -> Plus d'informations : . +> Supporte des motifs simples et des expressions régulières. +> Plus d'informations : . -- Recherche une chaîne de caractères précise : +- Recherche une chaîne de caractères précise : `grep {{chaîne_recherchée}} {{chemin/vers/fichier}}` -- Recherche en ignorant la casse : +- Recherche en ignorant la casse : `grep -i {{chaîne_recherchée}} {{chemin/vers/fichier}}` -- Recherche récursivement (en ignorant les fichiers non-texte) dans le dossier courant une chaîne de caractères précise : +- Recherche récursivement (en ignorant les fichiers non-texte) dans le dossier courant une chaîne de caractères précise : `grep -RI {{chaîne_recherchée}} .` -- Utilise des expressions rationnelles étendues (supporte `?`, `+`, `{}`, `()` et `|`) : +- Utilise des expressions régulières étendues (supporte `?`, `+`, `{}`, `()` et `|`) : -`grep -E {{^regex$}} {{chemin/vers/fichier}}` +`grep -E {{expression_régulière}} {{chemin/vers/fichier}}` -- Affiche 3 lignes de [C]ontexte, avant ([B]efore), ou [A]près chaque concordance : +- Affiche 3 lignes de [C]ontexte, avant ([B]efore), ou [A]près chaque concordance : `grep -{{C|B|A}} 3 {{chaîne_recherchée}} {{chemin/vers/fichier}}` -- Affiche le nom du fichier avec la ligne correspondante pour chaque concordance : +- Affiche le nom du fichier avec la ligne correspondante pour chaque concordance : `grep -Hn {{chaîne_recherchée}} {{chemin/vers/fichier}}` -- Utilise l'entrée standard au lieu d'un fichier : +- Utilise l'entrée standard au lieu d'un fichier : `cat {{chemin/vers/fichier}} | grep {{chaîne_recherchée}}` -- Inverse le résultat pour exclure des chaînes de caractères spécifiques : +- Inverse le résultat pour exclure des chaînes de caractères spécifiques : `grep -v {{chaîne_recherchée}}` diff --git a/pages.fr/common/histexpand.md b/pages.fr/common/histexpand.md new file mode 100644 index 00000000000000..d0508074a5c879 --- /dev/null +++ b/pages.fr/common/histexpand.md @@ -0,0 +1,36 @@ +# history expansion + +> Réutiliser et développer l'historique des commandes shell dans `sh`, `bash`, `zsh`, `rbash` et `ksh`. +> Plus d'informations : . + +- Exécute de nouveau la commande précédente en tant que root (`!!` est remplacé par la commande précédente) : + +`sudo !!` + +- Exécute une commande avec le dernier argument de la commande précédente : + +`{{commande}} !$` + +- Exécute une commande avec le premier argument de la commande précédente : + +`{{command}} !^` + +- Exécute la `n`-ème commande de l'historique, en partant de la plus ancienne : + +`!{{n}}` + +- Exécute la `n`-ème commande de l'historique, en partant de la plus récente : + +`!-{{n}}` + +- Exécute la commande contenant `string` la plus récente : + +`!?{{string}}?` + +- Exécute la commande précédente, en remplaçant `string1` par `string2` : + +`^{{string1}}^{{string2}}^` + +- Effectue une expansion de l'historique, mais affiche la commande qui aurait du être exécutée au lieu de l'exécuter : + +`{{!-n}}:p` diff --git a/pages.fr/common/hping.md b/pages.fr/common/hping.md index 2244fe67b6630a..9250f34e37ce97 100644 --- a/pages.fr/common/hping.md +++ b/pages.fr/common/hping.md @@ -2,24 +2,24 @@ > Outil en ligne de commande permettant d'assembler ou analyser des paquets TCP/IP. > Inspirer par la commande `ping`. -> Plus d'informations : . +> Plus d'informations : . -- Ping localhost via TCP : +- Ping localhost via TCP : `hping3 {{localhost}}` -- Ping une adresse IP, via TCP, sur un port spécifique : +- 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 : +- 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 : +- 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 : +- Effectuer un test de montée en charge sur le port 80 : `hping3 --flood -p {{80}} -S {{192.168.1.1}}` diff --git a/pages.fr/common/hx.md b/pages.fr/common/hx.md new file mode 100644 index 00000000000000..d00d6d8e9398e3 --- /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/ifconfig.md b/pages.fr/common/ifconfig.md index 69e0b96caf04c2..ee0388948a70c8 100644 --- a/pages.fr/common/ifconfig.md +++ b/pages.fr/common/ifconfig.md @@ -1,23 +1,24 @@ # ifconfig > Configurateur des interfaces réseau. +> Plus d'informations : . -- Affiche les paramètres de réseau d'un adaptateur ethernet : +- Affiche les paramètres de réseau d'un adaptateur ethernet : `ifconfig {{eth0}}` -- Affiche les détails de toutes les interfaces, y compris les interfaces désactivées : +- Affiche les détails de toutes les interfaces, y compris les interfaces désactivées : `ifconfig -a` -- Désactive l'interface eth0 : +- Désactive l'interface eth0 : `ifconfig {{eth0}} down` -- Active l'interface eth0 : +- Active l'interface eth0 : `ifconfig {{eth0}} up` -- Assigne une addresse IP à l'interface eth0 : +- Assigne une adresse IP à l'interface eth0 : `ifconfig {{eth0}} {{addresse_ip}}` diff --git a/pages.fr/common/install.md b/pages.fr/common/install.md index 198350294cd7a5..e66562569c33b5 100644 --- a/pages.fr/common/install.md +++ b/pages.fr/common/install.md @@ -1,25 +1,25 @@ # install -> Copie des fichiers et mets à jour leurs attributs. +> Copie des fichiers et met à jour leurs attributs. > Copie des fichiers (souvent des exécutables) dans un répertoire système comme `/usr/local/bin` et leur donne les permissions et propriétaires appropriés. -> Plus d'informations : . +> Plus d'informations : . -- Copie des fichiers vers une destination : +- Copie des fichiers vers une destination : `install {{chemin/fichier/source}} {{chemin/repertoire/destination}}` -- Copie des fichiers vers une destination en mettant à jour leur propriétaire : +- Copie des fichiers vers une destination en mettant à jour leur propriétaire : -`install -o {{utilisateur}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` +`install --owner {{utilisateur}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` -- Copie des fichiers vers une destination en mettant à jour leur groupe d'appartenance : +- Copie des fichiers vers une destination en mettant à jour leur groupe d'appartenance : -`install -g {{utilisateur}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` +`install --group {{utilisateur}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` -- Copie des fichiers vers une destination en mettant à jour leur mode : +- Copie des fichiers vers une destination en mettant à jour leur mode : -`install -m {{+x}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` +`install --mode {{+x}} {{chemin/fichier/source}} {{chemin/repertoire/destination}}` -- Copie des fichiers en mettant à jour leur dates d'accès et de modification à partir de leurs sources respectives : +- Copie des fichiers en mettant à jour leur dates d'accès et de modification à partir de leurs sources respectives : -`install -p {{chemin/fichier/source}} {{chemin/repertoire/destination}}` +`install --preserve-timestamps {{chemin/fichier/source}} {{chemin/repertoire/destination}}` diff --git a/pages.fr/common/jekyll.md b/pages.fr/common/jekyll.md index 37613d12d5e1a7..fcb86b12c37301 100644 --- a/pages.fr/common/jekyll.md +++ b/pages.fr/common/jekyll.md @@ -1,24 +1,24 @@ # jekyll -> Générateur de site statique simple et convenable aux blogs. -> Plus d'informations : . +> Générateur de site statique simple, adapté aux blogs. +> Plus d'informations : . -- Génère un serveur de développement qui tourne au http://localhost:4000/ : +- Génère un serveur de développement qui tourne en http://localhost:4000/ : `jekyll serve` -- Active la régénération incrémentale : +- Active la régénération incrémentale : `jekyll serve --incremental` -- Active la sortie verbeuse : +- Active la sortie verbeuse : `jekyll serve --verbose` -- Génère le répertoire actuel dans `./_site` : +- Génère le répertoire actuel dans `./_site` : `jekyll build` -- Nettoie le site (c.-à.-d. supprime la sortie du site et le répertoire `cache`) sans compiler : +- Nettoie le site (c.-à.-d. supprime la sortie du site et le répertoire `cache`) sans compiler : `jekyll clean` diff --git a/pages.fr/common/jest.md b/pages.fr/common/jest.md index 55f2c2ae4ccade..73c8eef66db865 100644 --- a/pages.fr/common/jest.md +++ b/pages.fr/common/jest.md @@ -1,32 +1,36 @@ # jest -> Une plateforme de test JavaScript avec zero configuration. -> Plus d'informations : . +> Une plateforme de test JavaScript sans configuration. +> Plus d'informations : . -- Exécuter tous les tests disponibles : +- Exécuter tous les tests disponibles : `jest` -- Exécuter les suites de test des fichiers dont les chemins correspondent aux expressions régulières indiquées : +- Exécuter les suites de test de fichiers donnés : -`jest {{fichier_test1}} {{chemin/vers/fichier_test2.js}}` +`jest {{chemin/vers/fichier1}} {{chemin/vers/fichier2}}` -- Exécuter les tests dont les noms correspondent aux expressions régulières indiquées : +- Exécuter les suites de test pour des fichiers, dans le répertoire courant et ses sous-répertoires, dont le chemin correspond à l'expression régulière indiquée : + +`jest {{expression_régulière}} {{expression_régulière}}` + +- Exécuter les tests dont les noms correspondent aux expressions régulières indiquées : `jest --testNamePattern {{nom_test}}` -- Exécuter les suites de test associées à un fichier source donné : +- Exécuter les suites de test associées à un fichier source donné : `jest --findRelatedTests {{chemin/vers/fichier_source.js}}` -- Exécuter les suites de test associées à tous les fichiers non commités : +- Exécuter les suites de test associées à tous les fichiers non commités : `jest --onlyChanged` -- Surveiller les changements sur les fichiers et réexécuter les tests associés : +- Surveiller les changements sur les fichiers et ré-exécuter les tests associés : `jest --watch` -- Montrer l'aide : +- Montrer l'aide : `jest --help` diff --git a/pages.fr/common/kafkacat.md b/pages.fr/common/kafkacat.md new file mode 100644 index 00000000000000..669f4fd56d86fb --- /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 new file mode 100644 index 00000000000000..99fb3f800b6e5a --- /dev/null +++ b/pages.fr/common/kill.md @@ -0,0 +1,37 @@ +# kill + +> 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 : . + +- Termine un processus avec le signal SIGTERM (terminaison) par défaut : + +`kill {{indentifiant_processus}}` + +- Liste les noms des signaux disponibles (à utiliser sans leurs préfixes `SIG`) : + +`kill -l` + +- Termine une tâche de fond : + +`kill %{{identifiant_tâche}}` + +- Termine un processus avec le signal SIGHUP ("raccrocher"). Beaucoup de daemons se rafraîchissent au lieu de terminer : + +`kill -{{1|HUP}} {{indentifiant_processus}}` + +- Termine un processus avec le signal SIGINT ("interruption"). Généralement initié par l'utilisateur appuyant sur `Ctrl + C` : + +`kill -{{2|INT}} {{indentifiant_processus}}` + +- Demande au système d'exploitation de mettre fin à un processus immédiatement (sans possibilité d'intercepter le signal) : + +`kill -{{9|KILL}} {{indentifiant_processus}}` + +- Demande au système d'exploitation de suspendre un processus jusqu'à recevoir le signal SIGCONT ("continue") : + +`kill -{{17|STOP}} {{indentifiant_processus}}` + +- Envoie le signal SIGUSR1 à tous les processus dans le groupe avec l'identifiant indiqué : + +`kill -{{SIGUSR1}} -{{identifiant_groupe}}` diff --git a/pages.fr/common/kosmorro.md b/pages.fr/common/kosmorro.md index b20b32db29ea56..ccbd935ed62453 100644 --- a/pages.fr/common/kosmorro.md +++ b/pages.fr/common/kosmorro.md @@ -1,20 +1,20 @@ # kosmorro -> Calcule les éphémérides et les événements pour une date donnée, à un emplacement donné sur Terre. -> Plus d'informations : . +> Calcule les éphémérides et les évènements pour une date donnée, à un emplacement donné sur Terre. +> Plus d'informations : . -- Obtenir les éphémérides pour Paris (France) : +- Obtenir les éphémérides pour Paris (France) : `kosmorro --latitude={{48.7996}} --longitude={{2.3511}}` -- Obtenir les éphémérides pour Paris (France), sur le fuseau horaire UTC+2 : +- Obtenir les éphémérides pour Paris (France), sur le fuseau horaire UTC+2 : `kosmorro --latitude={{48.7996}} --longitude={{2.3511}} --timezone={{2}}` -- Obtenir les éphémérides du 9 juin 2020 pour Paris (France) : +- Obtenir les éphémérides du 9 juin 2020 pour Paris (France) : `kosmorro --latitude={{48.7996}} --longitude={{2.3511}} --date={{2020-06-09}}` -- Générer un fichier PDF (TeXLive doit être installé) : +- Générer un fichier PDF (TeXLive doit être installé) : `kosmorro --format={{pdf}} --output={{chemin/vers/le/fichier.pdf}}` diff --git a/pages.fr/common/ksh.md b/pages.fr/common/ksh.md new file mode 100644 index 00000000000000..22f8867958ab04 --- /dev/null +++ b/pages.fr/common/ksh.md @@ -0,0 +1,21 @@ +# ksh + +> Korn SHell, un interpréteur de ligne de commande compatible avec Bash. +> Voir aussi `histexpand` pour l'expansion de l'historique. +> Plus d'informations : . + +- Démarre une session shell interactive : + +`ksh` + +- Exécute une commande, puis termine la session : + +`ksh -c "{{commande}}"` + +- Exécute un script : + +`ksh {{chemin/vers/le/script.ksh}}` + +- Exécute un script en affichant chaque commande avant de l'exécuter : + +`ksh -x {{chemin/vers/le/script.ksh}}` diff --git a/pages.fr/common/llvm-ar.md b/pages.fr/common/llvm-ar.md new file mode 100644 index 00000000000000..ba620c8accba9e --- /dev/null +++ b/pages.fr/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Cette commande est un alias de `ar`. + +- Voir la documentation de la commande originale : + +`tldr ar` diff --git a/pages.fr/common/llvm-g++.md b/pages.fr/common/llvm-g++.md new file mode 100644 index 00000000000000..5fee9b4fee1195 --- /dev/null +++ b/pages.fr/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Cette commande est un alias de `clang++`. + +- Voir la documentation de la commande originale : + +`tldr clang++` diff --git a/pages.fr/common/llvm-gcc.md b/pages.fr/common/llvm-gcc.md new file mode 100644 index 00000000000000..23b3e756886417 --- /dev/null +++ b/pages.fr/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Cette commande est un alias de `clang`. + +- Voir la documentation de la commande originale : + +`tldr clang` diff --git a/pages.fr/common/llvm-nm.md b/pages.fr/common/llvm-nm.md new file mode 100644 index 00000000000000..e4db03dcd58f17 --- /dev/null +++ b/pages.fr/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Cette commande est un alias de `nm`. + +- Voir la documentation de la commande originale : + +`tldr nm` diff --git a/pages.fr/common/llvm-objdump.md b/pages.fr/common/llvm-objdump.md new file mode 100644 index 00000000000000..7b732875895e01 --- /dev/null +++ b/pages.fr/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Cette commande est un alias de `objdump`. + +- Voir la documentation de la commande originale : + +`tldr objdump` diff --git a/pages.fr/common/llvm-strings.md b/pages.fr/common/llvm-strings.md new file mode 100644 index 00000000000000..797ec67c74bdd1 --- /dev/null +++ b/pages.fr/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Cette commande est un alias de `strings`. + +- Voir la documentation de la commande originale : + +`tldr strings` diff --git a/pages.fr/common/ln.md b/pages.fr/common/ln.md index 29774522a8acd1..5b5db24ad6544e 100644 --- a/pages.fr/common/ln.md +++ b/pages.fr/common/ln.md @@ -1,16 +1,16 @@ # ln > Crée des liens vers des fichiers et répertoires. -> Plus d'informations : . +> Plus d'informations : . -- Crée un lien symbolique vers un fichier ou un répertoire : +- Crée un lien symbolique vers un fichier ou un répertoire : -`ln -s {{chemin/vers/fichier_ou_repertoire}} {{chemin/vers/lien_symbolique}}` +`ln -s {{/chemin/vers/fichier_ou_repertoire}} {{chemin/vers/lien_symbolique}}` -- Modifie la cible d'un lien symbolique existant : +- Modifie la cible d'un lien symbolique existant : -`ln -sf {{chemin/vers/nouveau_fichier}} {{chemin/vers/lien_symbolique}}` +`ln -sf {{/chemin/vers/nouveau_fichier}} {{chemin/vers/lien_symbolique}}` -- Crée un lien dur vers un fichier : +- Crée un lien dur vers un fichier : -`ln {{chemin/vers/fichier}} {{chemin/vers/lien_dur}}` +`ln {{/chemin/vers/fichier}} {{chemin/vers/lien_dur}}` diff --git a/pages.fr/common/ls.md b/pages.fr/common/ls.md index 213b0478b88500..000a617e1e6b31 100644 --- a/pages.fr/common/ls.md +++ b/pages.fr/common/ls.md @@ -1,28 +1,36 @@ # ls > Liste le contenu d'un répertoire. -> Plus d'informations : . +> Plus d'informations : . -- Liste les fichiers, un par ligne : +- Liste les fichiers, un par ligne : `ls -1` -- Liste tous les fichiers, ainsi que les fichiers cachés : +- Liste tous les fichiers, ainsi que les fichiers cachés : `ls -a` -- Liste tous les fichiers avec un format détaillé (permissions, propriétaire, taille et date de modification) : +- Liste tous les fichiers, avec les noms de répertoires suivis d'un `/` : + +`ls -F` + +- Liste tous les fichiers avec un format détaillé (permissions, propriétaire, taille et date de modification) : `ls -la` -- Liste les fichiers avec un format détaillé en utilisant des prefixes d'unités (KiB, MiB, GiB) : +- Liste les fichiers avec un format détaillé en utilisant des préfixes d'unités (KiB, MiB, GiB) : `ls -lh` -- Liste les fichiers avec un format détaillé en triant par taille décroissante : +- Liste les fichiers avec un format détaillé en triant par taille décroissante : `ls -lS` -- Liste avec un format détaillé tous les fichiers en triant par date de modification (les plus anciennes en premier) : +- Liste avec un format détaillé tous les fichiers en triant par date de modification (les plus anciennes en premier) : `ls -ltr` + +- Liste uniquement les répertoires : + +`ls -d */` diff --git a/pages.fr/common/lua.md b/pages.fr/common/lua.md index 68e1ddce991e30..5567de2443759f 100644 --- a/pages.fr/common/lua.md +++ b/pages.fr/common/lua.md @@ -1,16 +1,16 @@ # lua > Un langage de programmation puissant, léger, et convenable aux systèmes embarqués. -> Plus d'informations : . +> Plus d'informations : . -- Démarre une session de commandes intéractive Lua : +- Démarre une session de commandes interactive Lua : `lua` -- Exécute un script Lua : +- Exécute un script Lua : `lua {{nom_du_script.lua}} {{--arguments-facultatifs}}` -- Exécute une expression Lua : +- Exécute une expression Lua : -`lua -e '{{print( "Hello World" )}}` +`lua -e '{{print( "Hello World" )}}'` diff --git a/pages.fr/common/lzcat.md b/pages.fr/common/lzcat.md new file mode 100644 index 00000000000000..f2734a140eff78 --- /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 00000000000000..b2b9b2ad8bae57 --- /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/matlab.md b/pages.fr/common/matlab.md index 60141bc6fe97c4..14a6d35eaae57b 100644 --- a/pages.fr/common/matlab.md +++ b/pages.fr/common/matlab.md @@ -1,16 +1,16 @@ # matlab > Environnement de calcul numérique créé par MathWorks. -> Plus d'informations : . +> Plus d'informations : . -- Lance MATLAB sans afficher l'écran de démarrage : +- Lance MATLAB sans afficher l'écran de démarrage : `matlab -nosplash` -- Exécute une instruction MATLAB : +- Exécute une instruction MATLAB : `matlab -r "{{instruction_matlab}}"` -- Exécute un script MATLAB : +- Exécute un script MATLAB : `matlab -r "run({{chemin/vers/script.m}})"` diff --git a/pages.fr/common/mc.md b/pages.fr/common/mc.md index 59c12c287b64f9..4a3f03a94812c5 100644 --- a/pages.fr/common/mc.md +++ b/pages.fr/common/mc.md @@ -2,12 +2,12 @@ > Midnight Commander, gestionnaire de fichiers à base de console. > 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 : . +> Plus d'informations : . -- Démarre `mc` : +- Démarre `mc` : `mc` -- Démarre `mc` en mode noir et blanc : +- Démarre `mc` en mode noir et blanc : `mc -b` diff --git a/pages.fr/common/mkdir.md b/pages.fr/common/mkdir.md index a01d78cc6bd1e8..b43bd769ddeb12 100644 --- a/pages.fr/common/mkdir.md +++ b/pages.fr/common/mkdir.md @@ -1,12 +1,16 @@ # mkdir > Crée un répertoire. -> Plus d'informations : . +> Plus d'informations : . -- Crée un répertoire dans le répertoire actuel ou dans un chemin donné : +- Crée un répertoire dans le répertoire actuel ou dans un chemin donné : `mkdir {{répertoire}}` -- Crée des répertoires récursivement (utile pour créer des répertoires imbriqués) : +- Crée plusieurs répertoires dans le répertoire actuel : + +`mkdir {{répertoire_1 répertoire_2 ...}}` + +- Crée des répertoires récursivement (utile pour créer des répertoires imbriqués) : `mkdir -p {{chemin/vers/répertoire}}` diff --git a/pages.fr/common/mongo.md b/pages.fr/common/mongo.md new file mode 100644 index 00000000000000..eb29355dc88974 --- /dev/null +++ b/pages.fr/common/mongo.md @@ -0,0 +1,20 @@ +# mongo + +> Client shell pour MongoDB. +> Plus d'informations : . + +- Connecte à une base de données (database) : + +`mongo {{nom_de_la_base_de_données}}` + +- Connecte à une base de données (database) sur un hôte (host) distant et un port donné : + +`mongo --host {{hôte}} --port {{port}} {{nom_de_la_base_de_données}}` + +- Connecte à une base de données (database) avec un nom d'utilisateur (username); L'utilisateur sera invité à saisir son mot de passe : + +`mongo --username {{nom_d'utilisateur}} {{nom_de_la_base_de_données}} --password` + +- Évalue une expression JavaScript sur une base de données (database) : + +`mongo --eval '{{JSON.stringify(db.foo.findOne())}}' {{nom_de_la_base_de_données}}` diff --git a/pages.fr/common/mscore.md b/pages.fr/common/mscore.md new file mode 100644 index 00000000000000..1736c25bff1b37 --- /dev/null +++ b/pages.fr/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Cette commande est un alias de `musescore`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr musescore` diff --git a/pages.fr/common/nano.md b/pages.fr/common/nano.md index b87ac40d4dd91d..c7f8f62d2ca7af 100644 --- a/pages.fr/common/nano.md +++ b/pages.fr/common/nano.md @@ -1,24 +1,24 @@ # nano > Éditeur de texte simple et convivial. C'est un clone libre et amélioré de Pico. -> Plus d'informations : . +> Plus d'informations : . -- Ouvre un fichier : +- Ouvre un fichier : `nano {{chemin/vers/fichier}}` -- Ouvre un fichier en positionnant le curseur à une rangée et colonne donnée : +- Ouvre un fichier en positionnant le curseur à une rangée et colonne donnée : `nano +{{ligne}},{{colonne}} {{chemin/vers/fichier}}` -- Active le défilement fluide : +- Active le défilement fluide : `nano -S {{fichier}}` -- Indente les nouvelles lignes à la même indentation que les lignes précédentes : +- Indente les nouvelles lignes à la même indentation que les lignes précédentes : `nano -i {{fichier}}` -- Avant la modification, sauvegarde le fichier actuel sous le format `{{nom_du_fichier_actuel}}~` : +- Avant la modification, sauvegarde le fichier actuel sous le format `{{nom_du_fichier_actuel}}~` : `nano -B {{fichier}}` diff --git a/pages.fr/common/nm-classic.md b/pages.fr/common/nm-classic.md new file mode 100644 index 00000000000000..f4b9747b530e01 --- /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/node.md b/pages.fr/common/node.md new file mode 100644 index 00000000000000..00b7e514f4e129 --- /dev/null +++ b/pages.fr/common/node.md @@ -0,0 +1,24 @@ +# node + +> Plateforme JavaScript côté serveur. +> Plus d'informations : . + +- Éxecute un fichier JavaScript : + +`node {{chemin/vers/fichier}}` + +- Démarre un REPL (shell interactif) : + +`node` + +- Évalue du code JavaScript en le passant en argument : + +`node -e "{{code}}"` + +- Évalue et affiche le résultat, très utile pour voir les versions de dépendances node : + +`node -p "{{process.versions}}"` + +- Active l'inspecteur, mets en pause l'éxécution jusqu'à ce qu'un debugger soit connecté une fois que le code source est totalement interprété : + +`node --no-lazy --inspect-brk {{chemin/vers/fichier}}` diff --git a/pages.fr/common/ntl.md b/pages.fr/common/ntl.md new file mode 100644 index 00000000000000..74aae28d71ea59 --- /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/passwd.md b/pages.fr/common/passwd.md new file mode 100644 index 00000000000000..f98b32041499fe --- /dev/null +++ b/pages.fr/common/passwd.md @@ -0,0 +1,20 @@ +# passwd + +> Passwd est un outil de changement de mot de passe utilisateur. +> Plus d'informations : . + +- Change le mot de passe de l'utilisateur actuel : + +`passwd` + +- Change le mot de passe d'un utilisateur particulier : + +`passwd {{utilisateur}}` + +- Affiche l'état actuel du compte utilisateur : + +`passwd -S` + +- Supprime le mot de passe de l'utilisateur (supprime l'authentification par mot de passe pour l'utilisateur indiqué) : + +`passwd -d` diff --git a/pages.fr/common/perl.md b/pages.fr/common/perl.md new file mode 100644 index 00000000000000..e68c9d47cc833e --- /dev/null +++ b/pages.fr/common/perl.md @@ -0,0 +1,36 @@ +# perl + +> Interpréteur du langage Perl (version 5). +> Plus d'informations : . + +- Exécuter le code contenu dans un fichier : + +`perl {{fichier.pl}}` + +- Vérifier la syntaxe sans exécuter le programme : + +`perl -c {{fichier.pl}}` + +- Exécuter une expression Perl : + +`perl -e {{expression}}` + +- Lancer le programme avec le debugger Perl : + +`perl -d {{fichier.pl}}` + +- Itérer sur toutes les lignes d'un fichier, en les modifiant sur place en utilisant une expression de recherche et de remplacement : + +`perl -p -i -e 's/{{recherche}}/{{remplacement}}' {{fichier}}` + +- Lancer une expression de recherche et remplacement sur un fichier, en sauvegardant le fichier original avec une autre extension : + +`perl -p -i'.ancien' -e 's/{{recherche}}/{{remplacement}}/g' {{fichier}}` + +- Lancer une expression de recherche et remplacement sur un fichier, en sauvegardant le résultat dans un autre fichier : + +`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 : + +`cat {{fichier_entrée}} | perl -nle 'if (/{{regex}}/) { print "$1"; last;}'` diff --git a/pages.fr/common/pio-init.md b/pages.fr/common/pio-init.md new file mode 100644 index 00000000000000..13443f2e18a091 --- /dev/null +++ b/pages.fr/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Cette commande est un alias de `pio project`. + +- Voir la documentation de la commande originale : + +`tldr pio project` diff --git a/pages.fr/common/piodebuggdb.md b/pages.fr/common/piodebuggdb.md new file mode 100644 index 00000000000000..68edb8793964a3 --- /dev/null +++ b/pages.fr/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Cette commande est un alias de `pio debug`. + +- Voir la documentation de la commande originale : + +`tldr pio debug` diff --git a/pages.fr/common/pip.md b/pages.fr/common/pip.md index 9d122ce2ed4c71..a383456407d8be 100644 --- a/pages.fr/common/pip.md +++ b/pages.fr/common/pip.md @@ -1,32 +1,37 @@ # pip > Gestionnaire des paquets pour Python. -> Plus d'informations : . +> Certaines commandes comme `pip install` ont leur propre documentation. +> Plus d'informations : . -- Installe un paquet : +- Installe un paquet : `pip install {{paquet}}` -- Installe une version particulière d'un paquet : +- Installe une version particulière d'un paquet : `pip install {{paquet}}=={{version}}` -- Met à jour un paquet : +- Installe un paquet dans le répertoire utilisateur au lieu de l'emplacement par défaut système : -`pip install -U {{paquet}}` +`pip install --user {{paquet}}` -- Désinstalle un paquet : +- Met à jour un paquet : + +`pip install --upgrade {{paquet}}` + +- Désinstalle un paquet : `pip uninstall {{paquet}}` -- Sauvegarde une liste des paquets installés : +- Sauvegarde une liste des paquets installés : `pip freeze > {{requirements.txt}}` -- Installe des paquets à partir d'un fichier : +- Installe des paquets à partir d'un fichier : -`pip install -r {{requirements.txt}}` +`pip install --requirement {{requirements.txt}}` -- Affiche les informations d'un paquet installé : +- Affiche les informations d'un paquet installé : `pip show {{paquet}}` diff --git a/pages.fr/common/pip3.md b/pages.fr/common/pip3.md index 322f16b6feb950..deafd5ae5c41c4 100644 --- a/pages.fr/common/pip3.md +++ b/pages.fr/common/pip3.md @@ -1,36 +1,36 @@ # pip3 > Gestionnaire des paquets pour Python. -> Plus d'informations : . +> Plus d'informations : . -- Recherche un paquet : +- Recherche un paquet : `pip3 search {{paquet}}` -- Installe un paquet : +- Installe un paquet : `pip3 install {{paquet}}` -- Installe une version particulière d'un paquet : +- Installe une version particulière d'un paquet : `pip3 install {{paquet}}=={{version}}` -- Met à jour un paquet : +- Met à jour un paquet : `pip3 install --upgrade {{paquet}}` -- Désinstalle un paquet : +- Désinstalle un paquet : `pip3 uninstall {{paquet}}` -- Sauvegarde une liste des paquets installés : +- Sauvegarde une liste des paquets installés : `pip3 freeze > {{requirements.txt}}` -- Installe des paquets à partir d'un fichier : +- Installe des paquets à partir d'un fichier : -`pip3 install --requirements {{requirements.txt}}` +`pip3 install --requirement {{requirements.txt}}` -- Affiche les informations d'un paquet installé : +- Affiche les informations d'un paquet installé : `pip3 show {{paquet}}` diff --git a/pages.fr/common/pipenv.md b/pages.fr/common/pipenv.md index 70ee9f3fec1bc6..93310cfe99be2e 100644 --- a/pages.fr/common/pipenv.md +++ b/pages.fr/common/pipenv.md @@ -2,36 +2,36 @@ > Workflow de développement simple et unifié pour Python. > Gère les paquets et l'environnement virtuel d'un projet. -> Plus d'informations : . +> Plus d'informations : . -- Crée un nouveau projet : +- Crée un nouveau projet : `pipenv` -- Crée un nouveau projet à l'aide de Python 3 : +- Crée un nouveau projet à l'aide de Python 3 : `pipenv --three` -- Installe un paquet : +- Installe un paquet : `pipenv install {{paquet}}` -- Installe toutes les dépendances d'un projet : +- Installe toutes les dépendances d'un projet : `pipenv install` -- Installe toutes les dépendances d'un projet (y compris les paquets de développement) : +- Installe toutes les dépendances d'un projet (y compris les paquets de développement) : `pipenv install --dev` -- Désinstalle un paquet : +- Désinstalle un paquet : `pipenv uninstall {{paquet}}` -- Démarre une session de commandes dans l'environnement virtuel : +- Démarre une session de commandes dans l'environnement virtuel : `pipenv shell` -- Génère un `requirements.txt` (une liste de dépendances) pour un projet : +- Génère un `requirements.txt` (une liste de dépendances) pour un projet : `pipenv lock --requirements` diff --git a/pages.fr/common/platformio.md b/pages.fr/common/platformio.md new file mode 100644 index 00000000000000..01a2771b20a09f --- /dev/null +++ b/pages.fr/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Cette commande est un alias de `pio`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr pio` diff --git a/pages.fr/common/ptpython3.md b/pages.fr/common/ptpython3.md new file mode 100644 index 00000000000000..74a7f98ad55aeb --- /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/pwd.md b/pages.fr/common/pwd.md index a9280cdf1e3f33..fc161176f11326 100644 --- a/pages.fr/common/pwd.md +++ b/pages.fr/common/pwd.md @@ -1,12 +1,12 @@ # pwd > Affiche le nom du répertoire actuel. -> Plus d'informations : . +> Plus d'informations : . -- Affiche le répertoire actuel : +- Affiche le répertoire actuel : `pwd` -- Affiche le répertoire actuel tout en traduisant les liens symboliques (c.-à-d. afficher le répertoire « physique ») : +- Affiche le répertoire actuel tout en traduisant les liens symboliques (c.-à-d. afficher le répertoire « physique ») : `pwd -P` diff --git a/pages.fr/common/python3.md b/pages.fr/common/python3.md new file mode 100644 index 00000000000000..7e8e0fc3df872b --- /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/r.md b/pages.fr/common/r.md index 23963e667c952d..9b25a53483d15c 100644 --- a/pages.fr/common/r.md +++ b/pages.fr/common/r.md @@ -1,16 +1,16 @@ # r -> Interpréteur pour la langue R. -> Plus d'informations : . +> Interpréteur pour le langage R. +> Plus d'informations : . -- Démarre une session de commande R (REPL) : +- Démarre une session de commande R (REPL) : `R` -- Vérifie la version de R : +- Vérifie la version de R : `R --version` -- Exécute un fichier : +- Exécute un fichier : `R -f {{fichier.R}}` diff --git a/pages.fr/common/r2.md b/pages.fr/common/r2.md new file mode 100644 index 00000000000000..918a10957905f2 --- /dev/null +++ b/pages.fr/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Cette commande est un alias de `radare2`. + +- Voir la documentation de la commande originale : + +`tldr radare2` diff --git a/pages.fr/common/rcat.md b/pages.fr/common/rcat.md new file mode 100644 index 00000000000000..963824138577ff --- /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 00000000000000..8390b9a60e4ad9 --- /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 f69c8f3d7ef54b..ea3aa15f910d41 100644 --- a/pages.fr/common/rsync.md +++ b/pages.fr/common/rsync.md @@ -2,35 +2,36 @@ > 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 : . -- Transférer un fichier local vers un serveur distant : +- Transférer un fichier local vers un serveur distant : `rsync {{chemin/vers/fichier_local}} {{hote_distant}}:{{chemin/vers/dossier_distant}}` -- Transférer un fichier d'un serveur distant vers l'hôte local : +- Transférer un fichier d'un serveur distant vers l'hôte local : `rsync {{hote_distant}}:{{chemin/vers/fichier_distant}} {{chemin/vers/dossier_local}}` -- Transférer un fichier sous forme d'[a]rchive (pour conserver les attributs) et compressé ([z]ippé), en mode [v]erbeux, lisible par l'[h]umain et afficher la [p]rogression du transfert : +- Transférer un fichier sous forme d'[a]rchive (pour conserver les attributs) et compressé ([z]ippé), en mode [v]erbeux, lisible par l'[h]umain et afficher la [p]rogression du transfert : `rsync -azvhP {{chemin/vers/fichier_local}} {{hote_distant}}:{{chemin/vers/dossier_distant}}` -- Transférer un dossier et tous ses sous-dossiers d'un hôte distant vers l'hôte local : +- Transférer un dossier et tous ses sous-dossiers d'un hôte distant vers l'hôte local : `rsync -r {{hote_distant}}:{{chemin/vers/dossier_distant}} {{chemin/vers/dossier_local}}` -- Transférer le contenu d'un dossier (mais pas le dossier lui-même) d'un hôte distant vers un hôte local : +- Transférer le contenu d'un dossier (mais pas le dossier lui-même) d'un hôte distant vers un hôte local : `rsync -r {{hote_distant}}:{{chemin/vers/dossier_distant}}/ {{chemin/vers/dossier_local}}` -- Transférer un dossier [r]écursivement, dans une [a]rchive pour conserver les attributs, en résolvant les [l]iens symboliques, et ignorant les fichiers déjà transférés sa[u]f si plus récents : +- Transférer un dossier [r]écursivement, dans une [a]rchive pour conserver les attributs, en résolvant les [l]iens symboliques, et ignorant les fichiers déjà transférés sa[u]f si plus récents : `rsync -rauL {{hote_distant}}:{{chemin/vers/fichier_distant}} {{chemin/vers/dossier_local}}` -- Transférer un fichier par SSH et effacer les fichiers de l'hôte local qui n'existent pas sur l'hôte distant : +- Transférer un fichier par SSH et effacer les fichiers de l'hôte local qui n'existent pas sur l'hôte distant : `rsync -e ssh --delete {{hote_distant}}:{{chemin/vers/fichier_distant}} {{chemin/vers/fichier_local}}` -- Transférer un fichier par SSH et afficher l'avancement global du transfert : +- Transférer un fichier par SSH et afficher l'avancement global du transfert : `rsync -e ssh --info=progress2 {{hote_distant}}:{{chemin/vers/fichier_distant}} {{chemin/vers/fichier_local}}` diff --git a/pages.fr/common/sh.md b/pages.fr/common/sh.md new file mode 100644 index 00000000000000..c31a0d86d92223 --- /dev/null +++ b/pages.fr/common/sh.md @@ -0,0 +1,21 @@ +# sh + +> Bourne SHell, l'interpréteur de ligne de commande classique. +> Voir aussi `histexpand` pour l'expansion de l'historique. +> Plus d'informations : . + +- Démarre une session shell interactive : + +`sh` + +- Exécute une commande, puis termine la session : + +`sh -c "{{commande}}"` + +- Exécute un script : + +`sh {{chemin/vers/le/script.sh}}` + +- Lit et exécute des commandes depuis l'entrée standard `stdin` : + +`sh -s` diff --git a/pages.fr/common/shards.md b/pages.fr/common/shards.md new file mode 100644 index 00000000000000..a6ae7f0696ef1c --- /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-add.md b/pages.fr/common/ssh-add.md new file mode 100644 index 00000000000000..9da4f78ad771f1 --- /dev/null +++ b/pages.fr/common/ssh-add.md @@ -0,0 +1,29 @@ +# ssh-add + +> Gère les clés SSH enregistrées dans l'agent SSH `ssh-agent`. +> S'assurer que `ssh-agent` est en fonctionnement pour enregistrer des clés. +> Plus d'informations : . + +- Ajoute les clés présentes dans `~/.ssh` (clés par défaut) à l'agent SSH : + +`ssh-add` + +- Ajoute une clé spécifique à l'agent SSH : + +`ssh-add {{chemin/vers/clé_privée}}` + +- Liste les empreintes des clés actuellement enregistrées : + +`ssh-add -l` + +- Supprime une clé de l'agent SSH : + +`ssh-add -d {{chemin/vers/clé_privée}}` + +- Supprime toutes les clés enregistrées de l'agent SSH : + +`ssh-add -D` + +- Ajoute une clé spécifique à l'agent SSH et au trousseau de clés : + +`ssh-add -K {{chemin/vers/clé_privée}}` diff --git a/pages.fr/common/ssh-agent.md b/pages.fr/common/ssh-agent.md new file mode 100644 index 00000000000000..0cb7d45c6962cc --- /dev/null +++ b/pages.fr/common/ssh-agent.md @@ -0,0 +1,14 @@ +# ssh-agent + +> Lance un agent SSH. +> Un agent SSH permet de stocker des clés SSH déchiffrées, jusqu'à ce qu'elle soient retirées ou que l'agent soit arrêté. +> Voir également `ssh-add`, qui permet d'ajouter et de gérer les clés enregistrées par l'agent SSH. +> Plus d'informations : . + +- Démarre un agent SSH pour le shell actuel : + +`eval $(ssh-agent)` + +- Arrête l'agent actuellement en fonctionnement : + +`ssh-agent -k` diff --git a/pages.fr/common/ssh-copy-id.md b/pages.fr/common/ssh-copy-id.md new file mode 100644 index 00000000000000..bb103f8c59c40a --- /dev/null +++ b/pages.fr/common/ssh-copy-id.md @@ -0,0 +1,16 @@ +# ssh-copy-id + +> Dépose une clé publique sur une machine distante, dans les clés autorisées `authorized_keys`. +> Plus d'informations : . + +- Dépose toutes les clés publiques sur la machine distante : + +`ssh-copy-id {{nom_utilisateur@hote_distant}}` + +- Dépose une clé publique spécifique sur la machine distante : + +`ssh-copy-id -i {{chemin/vers/certificat}} {{nom_utilisateur}}@{{hote_distant}}` + +- Dépose une clé publique spécifique sur la machine distante en utilisant un port particulier : + +`ssh-copy-id -i {{chemin/vers/certificat}} -p {{port}} {{nom_utilisateur}}@{{hote_distant}}` diff --git a/pages.fr/common/ssh-keygen.md b/pages.fr/common/ssh-keygen.md new file mode 100644 index 00000000000000..c5eeb3f1a3164a --- /dev/null +++ b/pages.fr/common/ssh-keygen.md @@ -0,0 +1,36 @@ +# ssh-keygen + +> Génère des clés SSH. Utilisées entre autres pour l'authentification ou la connexion sans utiliser de mot de passe. +> Plus d'informations : . + +- Génère une clé de manière interactive : + +`ssh-keygen` + +- Génère une clé dans un fichier spécifique : + +`ssh-keygen -f {{~/.ssh/fichier}}` + +- Génère une clé ed25519, avec 100 passages de fonction de dérivation de clé: + +`ssh-keygen -t {{ed25519}} -a {{100}}` + +- 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}}"` + +- 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é) : + +`ssh-keygen -R {{hote_distant}}` + +- Affiche l'empreinte d'une clé sous format d'un hash MD5 : + +`ssh-keygen -l -E {{md5}} -f {{~/.ssh/fichier}}` + +- Change le mot de passe d'une clé : + +`ssh-keygen -p -f {{~/.ssh/fichier}}` + +- Change le format d'une clé (par exemple du format OPENSSH vers PEM), le fichier étant réécrit : + +`ssh-keygen -p -N "" -m {{PEM}} -f {{~/.ssh/cle_privee_OpenSSH}}` diff --git a/pages.fr/common/ssh-keyscan.md b/pages.fr/common/ssh-keyscan.md new file mode 100644 index 00000000000000..1cb481c96712b6 --- /dev/null +++ b/pages.fr/common/ssh-keyscan.md @@ -0,0 +1,20 @@ +# ssh-keyscan + +> Récupère les clés SSH publiques de machines distantes. +> Plus d'informations : . + +- Récupère toutes les clés d'une machine distante : + +`ssh-keyscan {{hote_distant}}` + +- Récupère toutes les clés d'une machine distante en écoutant sur un port particulier : + +`ssh-keyscan -p {{port}} {{hote_distant}}` + +- Récupère un type particulier de clés d'une machine distante : + +`ssh-keyscan -t {{rsa,dsa,ecdsa,ed25519}} {{hote_distant}}` + +- Met à jour manuellement le fichier `known_hosts` des hôtes connus avec l'empreinte d'une : + +`ssh-keyscan -H {{hote_distant}} >> ~/.ssh/known_hosts` diff --git a/pages.fr/common/ssh.md b/pages.fr/common/ssh.md index e5431774816de0..41e39dedf038c2 100644 --- a/pages.fr/common/ssh.md +++ b/pages.fr/common/ssh.md @@ -2,35 +2,36 @@ > Secure Shell est un protocole utilisé pour se connecter de façon sécurisée à des systèmes distants. > On peut l'utiliser pour se connecter ou exécuter des commandes sur un serveur distant. +> Plus d'informations : . -- Se connecter à un serveur distant : +- Se connecter à un serveur distant : `ssh {{utilisateur}}@{{hote_distant}}` -- Se connecter à un serveur distant en utilisant une identité spécifique (clé privée) : +- Se connecter à un serveur distant en utilisant une identité spécifique (clé privée) : `ssh -i {{chemin/vers/fichier_clef}} {{utilisateur}}@{{hote_distant}}` -- Se connecter à un serveur distant en utilisant un port spécifique : +- Se connecter à un serveur distant en utilisant un port spécifique : `ssh {{utilisateur}}@{{hote_distant}} -p {{2222}}` -- Exécuter une commande sur un serveur distant : +- Exécuter une commande sur un serveur distant : `ssh {{hote_distant}} {{commande -avec -options}}` -- Tunnel SSH : Transfert par port dynamique (le SOCKS proxy se trouve sur localhost:1080) : +- Tunnel SSH : Transfert par port dynamique (le SOCKS proxy se trouve sur localhost:1080) : `ssh -D {{1080}} {{utilisateur}}@{{hote_distant}}` -- Tunnel SSH : Transfère un port spécifique (localhost:9999 vers example.org:80) en désactivant l'allocation de pseudo-[t]ty et l'exécution de commandes distantes : +- Tunnel SSH : Transfère un port spécifique (localhost:9999 vers example.org:80) en désactivant l'allocation de pseudo-[t]ty et l'exécution de commandes distantes : `ssh -L {{9999}}:{{exemple.org}}:{{80}} -N -T {{utilisateur}}@{{hote_distant}}` -- Saut SSH : Se connecter sur un serveur distant à travers une machine de rebond (plusieurs machines de rebond peuvent être définies en les séparant par des virgules) : +- Saut SSH : Se connecter sur un serveur distant à travers une machine de rebond (plusieurs machines de rebond peuvent être définies en les séparant par des virgules) : `ssh -J {{utilisateur}}@{{hote_de_rebond}} {{utilisateur}}@{{hote_distant}}` -- Transfert d'agent : Transfère les informations d'authentification vers la machine distante (voir `man ssh_config` pour les options disponibles) : +- Transfert d'agent : Transfère les informations d'authentification vers la machine distante (voir `man ssh_config` pour les options disponibles) : `ssh -A {{utilisateur}}@{{hote_distant}}` diff --git a/pages.fr/common/sudo.md b/pages.fr/common/sudo.md new file mode 100644 index 00000000000000..22c741642c54b3 --- /dev/null +++ b/pages.fr/common/sudo.md @@ -0,0 +1,36 @@ +# sudo + +> Exécute une commande unique en tant que super-utilisateur (super-user) ou un autre utilisateur. +> Plus d'informations : . + +- Exécute une commande en tant que super-utilisateur : + +`sudo {{less /var/log/syslog}}` + +- Édite un fichier en tant que super-utilisateur avec votre éditeur par défaut : + +`sudo --edit {{/etc/fstab}}` + +- Exécute une commande en tant qu'un autre utilisateur et/ou groupe : + +`sudo --user={{utilisateur}} --group={{groupe}} {{id -a}}` + +- Répéte la dernière commande préfixée de `sudo` (uniquement dans `bash`, `zsh`, etc.) : + +`sudo !!` + +- Lance le terminal par défaut avec des privilèges de super-utilisateur et exécuter des fichiers à profil spécifique (`.profile`, `.bash_profile`, etc.) : + +`sudo --login` + +- Lance le terminal par défaut avec des privilèges de super-utilisateur sans modifier l'environnement : + +`sudo --shell` + +- Lance le terminal par défaut en tant que l'utilisateur spécifié, en chargeant l'environnement de cet utilisateur et en lisant les fichiers à profil spécifique de cet utilisateur (`.profile`, `.bash_profile`, etc.) : + +`sudo --login --user={{utilisateur}}` + +- Liste les commandes autorisées (et interdites) pour l'utilisateur courant : + +`sudo --list` diff --git a/pages.fr/common/tar.md b/pages.fr/common/tar.md index 4e3b13ff1c165e..6169dd2490f16d 100644 --- a/pages.fr/common/tar.md +++ b/pages.fr/common/tar.md @@ -2,32 +2,36 @@ > Utilitaire d'archivage. > Souvent combiné avec une méthode de compression, telle que gzip ou bzip2. -> Plus d'informations : . +> Plus d'informations : . -- Créer une archive à partir de fichiers : +- Crée une archive à partir de fichiers : -`tar cf {{cible.tar}} {{fichier1 fichier2 fichier3}}` +`tar cf {{chemin/vers/cible.tar}} {{chemin/vers/fichier1 chemin/vers/fichier2 ...}}` -- Créer une archive gzip : +- Crée une archive gzip à partir de fichiers : -`tar czf {{cible.tar.gz}} {{fichier1 fichier2 fichier3}}` +`tar czf {{chemin/vers/cible.tar.gz}} {{chemin/vers/fichier1 chemin/vers/fichier2 ...}}` -- Extraie une archive (compressée) dans le dossier courant : +- Crée une archive gzip à partir d'un répertoire en utilisant son chemin relatif : -`tar xf {{source.tar[.gz|.bz2|.xz]}}` +`tar czf {{chemin/vers/cible.tar.gz}} --directory={{chemin/vers/répertoire}} .` -- Extraie une archive dans un dossier cible : +- Extrait une archive (compressée) dans le dossier courant en affichant la liste des fichiers traités : -`tar xf {{source.tar}} -C {{dossier}}` +`tar xvf {{chemin/vers/source.tar[.gz|.bz2|.xz]}}` -- Créer une archive compressée, en utilisant le suffixe de l'archive pour déterminer le programme de compression : +- Extrait une archive (compressée) dans un répertoire cible : -`tar caf {{cible.tar.xz}} {{fichier1 fichier2 fichier3}}` +`tar xf {{chemin/vers/source.tar[.gz|.bz2|.xz]}} --directory={{répertoire}}` -- Lister le contenu d'une archive tar : +- Crée une archive compressée, en utilisant le suffixe de l'archive pour déterminer le programme de compression : -`tar tvf {{source.tar}}` +`tar caf {{chemin/vers/cible.tar.xz}} {{chemin/vers/fichier1 chemin/vers/fichier2 ...}}` -- Extraire les fichiers correspondant au motif : +- Liste les fichiers contenus dans une archive tar : + +`tar tvf {{chemin/vers/source.tar}}` + +- Extrait les fichiers correspondant au motif : `tar xf {{source.tar}} --wildcards "{{*.html}}"` diff --git a/pages.fr/common/tldr.md b/pages.fr/common/tldr.md new file mode 100644 index 00000000000000..f68bb048965ef2 --- /dev/null +++ b/pages.fr/common/tldr.md @@ -0,0 +1,20 @@ +# tldr + +> Affiche des pages d'aide simples pour les outils en ligne de commande, depuis le projet `tldr-pages`. +> Plus d'informations : . + +- Affiche la page tldr d'une commande (indice : c'est comme ça que vous êtes arrivé ici !) : + +`tldr {{commande}}` + +- Affiche la page tldr de `cd`, en forçant la plateforme par défaut : + +`tldr -p {{android|linux|osx|sunos|windows}} {{cd}}` + +- Affiche la page tldr d'une sous-commande : + +`tldr {{git-checkout}}` + +- Met à jour les pages enregistrées localement (si le client supporte la mise en cache) : + +`tldr -u` diff --git a/pages.fr/common/tldrl.md b/pages.fr/common/tldrl.md new file mode 100644 index 00000000000000..371332c98a8b4e --- /dev/null +++ b/pages.fr/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Cette commande est un alias de `tldr-lint`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr tldr-lint` diff --git a/pages.fr/common/tlmgr-arch.md b/pages.fr/common/tlmgr-arch.md new file mode 100644 index 00000000000000..831142308ec00c --- /dev/null +++ b/pages.fr/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Cette commande est un alias de `tlmgr platform`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr tlmgr platform` diff --git a/pages.fr/common/tmux.md b/pages.fr/common/tmux.md index 92096fb9d53f56..b00e242ba8e044 100644 --- a/pages.fr/common/tmux.md +++ b/pages.fr/common/tmux.md @@ -1,36 +1,36 @@ # tmux > Multiplexeur de terminaux. Permet plusieurs sessions avec fenêtres, panneaux, et plus encore. -> Plus d'informations : . +> Plus d'informations : . -- Démarrer une nouvelle session : +- Démarrer une nouvelle session : `tmux` -- Démarrer une nouvelle session nommée : +- Démarrer une nouvelle session nommée : `tmux new-session -s {{nom}}` -- Lister les sessions existantes : +- Lister les sessions existantes : `tmux ls` -- S'attacher à la session utilisée la plus récemment : +- S'attacher à la session utilisée la plus récemment : `tmux attach-session` -- S'attacher à une session nommée : +- S'attacher à une session nommée : `tmux attach-session -t {{nom}}` -- Se détacher de la session actuelle (avec le préfixe Ctrl-B) : +- Se détacher de la session actuelle (avec le préfixe Ctrl-B) : `Ctrl-B d` -- Détruire une session nommée : +- Détruire une session nommée : `tmux kill-session -t {{nom}}` -- Détruire la session actuelle (avec le préfixe Ctrl-B) : +- Détruire la session actuelle (avec le préfixe Ctrl-B) : `Ctrl-B :kill-session` diff --git a/pages.fr/common/todoman.md b/pages.fr/common/todoman.md new file mode 100644 index 00000000000000..20c2c01e5dae67 --- /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/topydo.md b/pages.fr/common/topydo.md new file mode 100644 index 00000000000000..48995aefbed719 --- /dev/null +++ b/pages.fr/common/topydo.md @@ -0,0 +1,28 @@ +# topydo + +> Une application de liste de choses à faire qui utilise le format todo.txt. +> Plus d'informations : . + +- Ajouter une tâche à un projet spécifique avec un contexte donné : + +`topydo add "{{todo_message}} +{{projet_nom}} @{{context_nom}}"` + +- Ajouter une tâche à faire avec une date d'échéance de demain et une priorité de `A` : + +`topydo add "(A) {{todo _message}} due:{{1d}}"` + +- Ajouter une tâche à faire dont la date d'échéance est le vendredi : + +`topydo add "{{todo_message}} due:{{fri}}"` + +- Ajouter une tâche répétitive non stricte (jour + récurrence) : + +`topydo add "water flowers due:{{mon}} rec:{{1w}}"` + +- Ajouter une tâche répétitive stricte (prochaine échéance = date + récurrence) : + +`topydo add "{{todo_message}} due:{{2020-01-01}} rec:{{+1m}}"` + +- Revenir sur la dernière commande `topydo` exécutée : + +`topydo revert` diff --git a/pages.fr/common/tput.md b/pages.fr/common/tput.md index d3554138a16e76..bd81df91023e95 100644 --- a/pages.fr/common/tput.md +++ b/pages.fr/common/tput.md @@ -1,27 +1,28 @@ # tput > Accède et modifie les paramètres du terminal. +> Plus d'informations : . -- Déplace le curseur à un endroit donné sur l'écran : +- Déplace le curseur à un endroit donné sur l'écran : `tput cup {{coordonnée_y}} {{coordonnée_x}}` -- Règle la couleur de l'avant-plan (af) ou de l'arrière-plan (ab) : +- Règle la couleur de l'avant-plan (af) ou de l'arrière-plan (ab) : `tput {{setaf|setab}} {{code_de_couleur_ANSI}}` -- Affiche le numéro de colonnes, de rangées, ou de couleurs : +- Affiche le numéro de colonnes, de rangées, ou de couleurs : `tput {{cols|lines|colors}}` -- Active la sonnerie du terminal : +- Active la sonnerie du terminal : `tput bel` -- Réinitialise tous les attributs du terminal : +- Réinitialise tous les attributs du terminal : `tput sgr0` -- Active ou désactive le retour automatique à la ligne : +- Active ou désactive le retour automatique à la ligne : `tput {{smam|rmam}}` diff --git a/pages.fr/common/tr.md b/pages.fr/common/tr.md new file mode 100644 index 00000000000000..083296f04e2496 --- /dev/null +++ b/pages.fr/common/tr.md @@ -0,0 +1,32 @@ +# tr + +> Convertisseur de caractères : exécute des remplacements basés sur des caractères uniques et des jeux de caractères. +> Plus d'informations : . + +- Remplace toutes les occurrences d'un caractère dans un fichier, et affiche le résultat : + +`tr {{caractère_recherché}} {{caractère_remplacé}} < {{fichier}}` + +- Remplace toutes les occurrences d'un caractère dans la sortie d'une autre commande : + +`echo {{texte}} | tr {{caractère_recherché}} {{caractère_remplacé}}` + +- Fais correspondre chaque caractère du premier ensemble au caractère correspondant du second ensemble : + +`tr '{{abcd}}' '{{jkmn}}' < {{fichier}}` + +- Supprime toutes les occurrences de l'ensemble de caractères spécifié dans l'entrée : + +`tr -d '{{caractères_en_entrée}}' < {{fichier}}` + +- Comprime une série de caractères identiques en un seul caractère : + +`tr -s '{{caractères_en_entrée}}' < {{fichier}}` + +- Traduis le contenu d'un fichier en majuscules : + +`tr "[:lower:]" "[:upper:]" < {{fichier}}` + +- Supprime les caractères non imprimables d'un fichier : + +`tr -cd "[:print:]" < {{fichier}}` diff --git a/pages.fr/common/transmission.md b/pages.fr/common/transmission.md new file mode 100644 index 00000000000000..c3d4ffebecae61 --- /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/type.md b/pages.fr/common/type.md new file mode 100644 index 00000000000000..1e913dd503bd92 --- /dev/null +++ b/pages.fr/common/type.md @@ -0,0 +1,16 @@ +# type + +> Affiche le type de la commande que le terminal exécuterait. +> Plus d'informations : . + +- Affiche le type d'une commande : + +`type {{commande}}` + +- Affiche tous les emplacements contenants l'exécutable spécifié : + +`type -a {{commande}}` + +- Affiche le nom du fichier qui serait exécuté : + +`type -p {{commande}}` diff --git a/pages.fr/common/unlzma.md b/pages.fr/common/unlzma.md new file mode 100644 index 00000000000000..339bd77646834d --- /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 00000000000000..8873a4686de56d --- /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/vegeta.md b/pages.fr/common/vegeta.md new file mode 100644 index 00000000000000..e9190a7d4b3c0b --- /dev/null +++ b/pages.fr/common/vegeta.md @@ -0,0 +1,29 @@ +# vegeta + +> Un utilitaire de ligne de commande et une bibliothèque pour les tests de charge HTTP. +> Voir aussi `ab`. +> Plus d'informations : . + +- Lancer une attaque d'une durée de 30 secondes : + +`echo "{{GET https://exemple.com}}" | vegeta attack -duration={{30s}}` + +- Lancez une attaque sur un serveur avec un certificat HTTPS auto-signé : + +`echo "{{GET https://exemple.com}}" | vegeta attack -insecure -duration={{30s}}` + +- Lancer une attaque avec un taux de 10 demandes par seconde : + +`echo "{{GET https://exemple.com}}" | vegeta attack -duration={{30s}} -rate={{10}}` + +- Lancer une attaque et afficher un rapport : + +`echo "{{GET https://exemple.com}}" | vegeta attack -duration={{30s}} | vegeta report` + +- Lancer une attaque et reporter les résultats sur un graphique (latence en fonction du temps) : + +`echo "{{GET https://exemple.com}}" | vegeta attack -duration={{30s}} | vegeta plot > {{chemin/au/results.html}}` + +- Lancer une attaque contre plusieurs URL à partir d'un fichier : + +`vegeta attack -duration={{30s}} -targets={{requetes.txt}} | vegeta report` diff --git a/pages.fr/common/vi.md b/pages.fr/common/vi.md new file mode 100644 index 00000000000000..3f234309cd8f12 --- /dev/null +++ b/pages.fr/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Cette commande est un alias de `vim`. + +- Voir la documentation de la commande originale : + +`tldr vim` diff --git a/pages.fr/common/vim.md b/pages.fr/common/vim.md index 83c66de0e72b3d..cb4c102cdee23f 100644 --- a/pages.fr/common/vim.md +++ b/pages.fr/common/vim.md @@ -1,37 +1,37 @@ # vim -> Vim (Vi IMproved), un editeur de texte en ligne de commandes, fournit plusieurs modes pour differentes manipulations de texte. +> Vim (Vi IMproved), un éditeur de texte en ligne de commandes, fournit plusieurs modes pour différentes manipulations de texte. > Pressez `i` pour passer en mode édition. `` revient au mode normal, qui ne permet pas l insertion de code. -> Plus d'informations : . +> Plus d'informations : . -- Ouvrir un fichier : +- Ouvrir un fichier : `vim {{chemin/vers/fichier}}` -- consulter le manuel utilisateur : +- Ouvrir un fichier à une ligne spécifiée : -`:help` +`vim +{{numero_ligne}} {{chemin/vers/fichier}}` -- Sauvegarder et fermer : +- Consulter le manuel utilisateur : -`:wq` +`:help` -- Ouvrir un fichier a une ligne specifiée : +- Sauvegarder et fermer : -`vim +{{numero_ligne}} {{chemin/vers/fichier}}` +`:wq` -- Annuler la derniere operation : +- Annuler la dernière opération : `u` -- Rechercher un pattern dans un fichier (appuyez `n`/`N` pour aller a la prochaine/précedante occurence) : +- Rechercher un motif dans un fichier (appuyez `n`/`N` pour aller à la prochaine / précédente occurrence) : -`/{{pattern_recherche}}` +`/{{motif_recherché}}` -- Effectuer une substition par éxpression reguliere dans tout le fichier : +- Effectuer une substitution par expression régulière dans tout le fichier : -`:%s/{{pattern}}/{{replacement}}/g` +`:%s/{{motif}}/{{remplacement}}/g` -- Afficher les numeros de ligne : +- Afficher les numéros de ligne : -`:set nu` +`:set nu` diff --git a/pages.fr/common/wc.md b/pages.fr/common/wc.md index ccc10ca5888766..8f9b980a47dfc4 100644 --- a/pages.fr/common/wc.md +++ b/pages.fr/common/wc.md @@ -1,20 +1,28 @@ # wc > Compte les lignes, les mots ou les octets. -> Plus d'informations : . +> Plus d'informations : . -- Compte les lignes d'un fichier : +- Compte les lignes d'un fichier : -`wc -l {{file}}` +`wc --lines {{chemin/vers/fichier}}` -- Compte les mots d'un fichier : +- Compte les mots d'un fichier : -`wc -w {{file}}` +`wc --words {{chemin/vers/fichier}}` -- Compte les caractères (octets) d'un fichier : +- Compte les octets d'un fichier : -`wc -c {{file}}` +`wc --bytes {{chemin/vers/fichier}}` -- Compte les caractères d'un fichier (en prenant en compte l'ensemble des caractères multi-octets) : +- Compte les caractères d'un fichier (en prenant en compte l'ensemble des caractères multi-octets) : -`wc -m {{file}}` +`wc --chars {{chemin/vers/fichier}}` + +- Compte les lignes, les mots et les caractères depuis l'entrée standard `stdin` : + +`{{find .}} | wc` + +- Compte la longueur en nombre de caractères de la plus grande ligne d'un fichier : + +`wc --max-line-length {{chemin/vers/fichier}}` diff --git a/pages.fr/common/which.md b/pages.fr/common/which.md index 0b894075fb3af9..2ee77beab6a6e0 100644 --- a/pages.fr/common/which.md +++ b/pages.fr/common/which.md @@ -1,11 +1,12 @@ # which > Localise un programme dans le chemin de l'utilisateur. +> Plus d'informations : . -- Fouille la variable d'environnement « PATH » et affiche l'endroit des programmes exécutables correspondantes à la requete : +- Fouille la variable d'environnement « PATH » et affiche l'emplacement des programmes exécutables correspondants à la requête : `which {{exécutable}}` -- Affiche toutes les exécutables correspondantes à la requete, si il y en a plus qu'un : +- Affiche tous les exécutables correspondants à la requête, s'il y en a plus qu'un : `which -a {{exécutable}}` diff --git a/pages.fr/common/xzcat.md b/pages.fr/common/xzcat.md new file mode 100644 index 00000000000000..955b21cb4e10f1 --- /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/common/yes.md b/pages.fr/common/yes.md index 6cd14be6769b6d..0280109accaffd 100644 --- a/pages.fr/common/yes.md +++ b/pages.fr/common/yes.md @@ -2,16 +2,16 @@ > Envoie un message à répétition en sortie console. > Cette commande est souvent utilisée pour éviter de devoir accepter des opérations successives (par exemple des installations via la commande `apt-get`). -> Plus d'informations : . +> Plus d'informations : . -- Envoyer « message » à répétition : +- Envoyer « message » à répétition : `yes {{message}}` -- Envoyer « y » à répétition : +- Envoyer « y » à répétition : `yes` -- Répondre « oui » à toutes les questions posées par la commande `apt-get` : +- Répondre « oui » à toutes les questions posées par la commande `apt-get` : `yes | sudo apt-get install {{program}}` diff --git a/pages.fr/common/z.md b/pages.fr/common/z.md index 9973421cdd8d22..531ce7ad163391 100644 --- a/pages.fr/common/z.md +++ b/pages.fr/common/z.md @@ -1,28 +1,28 @@ # z -> Recherche les répertoires les plus utilisés et permet une navigation rapide à l'aide de chaine de caractères ou de regex. -> Plus d'informations : . +> Recherche les répertoires les plus utilisés et permet une navigation rapide à l'aide de chaînes de caractères ou d'expressions régulières. +> Plus d'informations : . -- Aller dans un répertoire qui contient "foo" dans son nom : +- Aller dans un répertoire qui contient "foo" dans son nom : `z {{foo}}` -- Aller dans un répertoire qui contient "foo" et "bar' dans son nom : +- Aller dans un répertoire qui contient "foo" et "bar' dans son nom : `z {{foo}} {{bar}}` -- Aller dans le répertoire le mieux classé parmi ceux qui contiennent "foo" dans leurs noms : +- Aller dans le répertoire le mieux classé parmi ceux qui contiennent "foo" dans leurs noms : `z -r {{foo}}` -- Aller dans le répertoire accédé le plus récemment parmi ceux qui contiennent "foo" dans leurs noms : +- Aller dans le répertoire accédé le plus récemment parmi ceux qui contiennent "foo" dans leurs noms : `z -t {{foo}}` -- Lis l'ensemble des répertoires dans la base de données `z` qui contiennent "foo" dans leurs noms : +- Lis l'ensemble des répertoires dans la base de données `z` qui contiennent "foo" dans leurs noms : `z -l {{foo}}` -- Supprime le répertoire courant de la base de données de `z` : +- Supprime le répertoire courant de la base de données de `z` : `z -x .` diff --git a/pages.fr/common/zip.md b/pages.fr/common/zip.md index e2322ffdf00b75..fb13b70854b04c 100644 --- a/pages.fr/common/zip.md +++ b/pages.fr/common/zip.md @@ -1,35 +1,36 @@ # zip -> Package et compresse (archive) les fichiers en un fichier zip. +> Empaquette et compresse (archive) les fichiers en un fichier zip. +> Plus d'informations : . -- Package et compresse [r]écursivement un répertoire et son contenu : +- Empaquette et compresse [r]écursivement un répertoire et son contenu : `zip -r {{archive.zip}} {{chemin/du/répertoire}}` -- E[x]clure des fichiers de l'archive : +- E[x]clure des fichiers de l'archive : `zip -r {{archive.zip}} {{chemin/vers/le/répertoire}} -x {{chemin/des/fichiers/exclus}}` -- Archive un répertoire et son contenu avec le plus haut niveau [9] de compression : +- Archive un répertoire et son contenu avec le plus haut niveau [9] de compression : `zip -r -{{9}} {{archive.zip}} {{chemin/du/répertoire}}` -- Package et compresse plusieurs répertoires et fichiers : +- Empaquette et compresse plusieurs répertoires et fichiers : `zip -r {{archive.zip}} {{chemin/du/répertoire1 chemin/du/répertoire2 chemin/du/fichier}}` -- Créé une archive chifrée (l'utilisateur sera sollicité pour saisir le mot de passe) : +- Crée une archive chiffrée (l'utilisateur sera sollicité pour saisir le mot de passe) : `zip -e -r {{archive.zip}} {{chemin/du/répertoire}}` -- Ajoute des fichiers à une archive existante : +- Ajoute des fichiers à une archive existante : `zip {{archive.zip}} {{chemin/du/fichier}}` -- Supprime des fichiers d'une archive existante : +- Supprime des fichiers d'une archive existante : `zip -d {{archive.zip}} "{{foo/*.tmp}}"` -- Archive un répertoire et son contenu en plusieurs fichiers zip [s]cindés (ex : des fichiers de 3 Go) : +- Archive un répertoire et son contenu en plusieurs fichiers zip [s]cindés (ex : des fichiers de 3 Go) : `zip -r -s {{3g}} {{archive.zip}} {{chemin/du/répertoire}}` diff --git a/pages.fr/common/zless.md b/pages.fr/common/zless.md index 2666ccdce9c603..63c05eb4c48c6f 100644 --- a/pages.fr/common/zless.md +++ b/pages.fr/common/zless.md @@ -1,7 +1,8 @@ # zless -> Lire des fichiers compréssés. +> Lire des fichiers compressés. +> Plus d'informations : . -- Parcourrir une archive compréssé avec `less` : +- Parcourir une archive compressée avec `less` : `zless {{fichier.txt.gz}}` diff --git a/pages.fr/common/zola.md b/pages.fr/common/zola.md index 5235994c038596..7eb7b539d0e482 100644 --- a/pages.fr/common/zola.md +++ b/pages.fr/common/zola.md @@ -1,24 +1,24 @@ # zola -> Un générateur de site statique à partir d'un unique binaire sans dépendances. -> Plus d'informations : . +> Un générateur de site statique à partir d'un unique binaire sans dépendance. +> Plus d'informations : . -- Créé la structure du répertoire utilisé par Zola dans un répertoire donné : +- Créer la structure du répertoire utilisé par Zola dans un répertoire donné : `zola init {{mon_site}}` -- Cronstuit la totalité du site dans le répertoire `public` (si le répertoire existe, il est supprimé) : +- Construit la totalité du site dans le répertoire `public` (si le répertoire existe, il est supprimé) : `zola build` -- Construit la totalité du site dans un répertoire différent : +- Construit la totalité du site dans un répertoire différent : `zola build --output-dir {{chemin/du/répertoire_de_sortie/}}` -- Contruit et met à disposition le site à partir d'un serveur local (l'adresse par défaut est `127.0.0.1:1111`) : +- Construit et met à disposition le site à partir d'un serveur local (l'adresse par défaut est `127.0.0.1:1111`) : `zola serve` -- Construit l'ensemble des pages comme la commande build, sans écrire le résultat sur le disque : +- Construit l'ensemble des pages comme la commande `build`, sans écrire le résultat sur le disque : `zola check` diff --git a/pages.fr/common/zopflipng.md b/pages.fr/common/zopflipng.md index d6f256a830e3c0..2187e4f4efc5cd 100644 --- a/pages.fr/common/zopflipng.md +++ b/pages.fr/common/zopflipng.md @@ -1,12 +1,12 @@ # zopflipng > Utilitaire de compression d'images PNG. -> Plus d'informations : . +> Plus d'informations : . -- Optimise une imahe PNG : +- Optimise une image PNG : `zopflipng {{entrée.png}} {{sortie.png}}` -- Optimise plusieurs images PNG et sauvegarde avec prefix donné : +- Optimise plusieurs images PNG et sauvegarde avec préfixe donné : `zopflipng --prefix={{prefix}} {{image1.png}} {{image2.png}} {{image3.png}}` diff --git a/pages.fr/common/zoxide.md b/pages.fr/common/zoxide.md index c2c2632b7bc627..c95ea3ec9790c1 100644 --- a/pages.fr/common/zoxide.md +++ b/pages.fr/common/zoxide.md @@ -2,28 +2,28 @@ > Garde une trace des répertoires les plus utilisés. > Utilise un algorithme de classement pour identifier le meilleur résultat. -> Plus d'informations : . +> Plus d'informations : . -- Aller au répertoire avec le meilleur classement qui contient "foo" dans son nom : +- Aller au répertoire avec le meilleur classement qui contient "foo" dans son nom : `zoxide query {{foo}}` -- Aller au répertoire avec le meilleur classement qui contient "foo" et "bar" dans son nom : +- Aller au répertoire avec le meilleur classement qui contient "foo" et "bar" dans son nom : `zoxide query {{foo}} {{bar}}` -- Démarre une recherche de répertoire interactive (requires `fzf`) : +- Démarre une recherche de répertoire interactive (nécessite `fzf`) : `zoxide query --interactive` -- Ajoute un répertoire ou incrémente son classement : +- Ajoute un répertoire ou incrémente son classement : `zoxide add {{chemin/du/répertoire}}` -- Supprime un répertoire de la base de donnée de `zoxide` : +- Supprime un répertoire de la base de données de `zoxide` : `zoxide remove {{chemin/du/répertoire}}` -- Génére la configuration du shell pour la mise en place des alias de commandes (`z`, `za`, `zi`, `zq`, `zr`) : +- Génère la configuration du shell pour la mise en place des alias de commandes (`z`, `za`, `zi`, `zq`, `zr`) : `zoxide init {{bash|fish|zsh}}` diff --git a/pages.fr/common/zsh.md b/pages.fr/common/zsh.md new file mode 100644 index 00000000000000..a70d80d3a26e70 --- /dev/null +++ b/pages.fr/common/zsh.md @@ -0,0 +1,29 @@ +# zsh + +> Z SHell, un interpréteur de ligne de commande compatible avec Bash. +> Voir aussi `histexpand` pour l'expansion de l'historique. +> Plus d'informations : . + +- Démarre une session shell interactive : + +`zsh` + +- Exécute une commande, puis termine la session : + +`zsh -c "{{commande}}"` + +- Exécute un script : + +`zsh {{chemin/vers/script.zsh}}` + +- Exécute un script en affichant chaque commande avant de l'exécuter : + +`zsh --xtrace {{chemin/vers/script.zsh}}` + +- Démarre une session shell interactive en mode verbeux, qui affiche chaque commande avant de l'exécuter : + +`zsh --verbose` + +- Exécute une commande spécifique dans `zsh` sans motifs génériques d'expansion des noms de fichier : + +`noglob "{{command}}"` diff --git a/pages.fr/linux/a2disconf.md b/pages.fr/linux/a2disconf.md index d743982157c918..99c602caca0973 100644 --- a/pages.fr/linux/a2disconf.md +++ b/pages.fr/linux/a2disconf.md @@ -1,12 +1,12 @@ # a2disconf > Désactive un fichier de configuration sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . -- Désactive un fichier de configuration : +- Désactive un fichier de configuration : `sudo a2disconf {{fichier_de_configuration}}` -- N'affiche aucun message (mode silencieux) : +- N'affiche aucun message (mode silencieux) : `sudo a2disconf --quiet {{fichier_de_configuration}}` diff --git a/pages.fr/linux/a2dismod.md b/pages.fr/linux/a2dismod.md index d248716802f932..9634d81a4787fd 100644 --- a/pages.fr/linux/a2dismod.md +++ b/pages.fr/linux/a2dismod.md @@ -1,12 +1,12 @@ # a2dismod > Désactive un module Apache sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . -- Désactive un module : +- Désactive un module : `sudo a2dismod {{module}}` -- N'affiche aucun message (mode silencieux) : +- N'affiche aucun message (mode silencieux) : `sudo a2dismod --quiet {{module}}` diff --git a/pages.fr/linux/a2dissite.md b/pages.fr/linux/a2dissite.md index 325239f1a0f6c6..c0d36f18e85d49 100644 --- a/pages.fr/linux/a2dissite.md +++ b/pages.fr/linux/a2dissite.md @@ -1,12 +1,12 @@ # a2dissite > Désactive un hôte virtuel Apache sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . -- Désactive un hôte virtuel : +- Désactive un hôte virtuel : `sudo a2dissite {{virtual_host}}` -- N'affiche aucun message (mode silencieux) : +- N'affiche aucun message (mode silencieux) : `sudo a2dissite --quiet {{virtual_host}}` diff --git a/pages.fr/linux/a2enconf.md b/pages.fr/linux/a2enconf.md index ac60caa33254eb..0f7348b33dfe75 100644 --- a/pages.fr/linux/a2enconf.md +++ b/pages.fr/linux/a2enconf.md @@ -1,7 +1,7 @@ # a2enconf > Active un fichier de configuration sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . - Active un fichier de configuration : diff --git a/pages.fr/linux/a2enmod.md b/pages.fr/linux/a2enmod.md index 9de8dc0368ab3d..801852d0786c22 100644 --- a/pages.fr/linux/a2enmod.md +++ b/pages.fr/linux/a2enmod.md @@ -1,7 +1,7 @@ # a2enmod > Active un module Apache sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . - Active un module : diff --git a/pages.fr/linux/a2ensite.md b/pages.fr/linux/a2ensite.md index aac88587803ec1..59379ac2c96694 100644 --- a/pages.fr/linux/a2ensite.md +++ b/pages.fr/linux/a2ensite.md @@ -1,12 +1,12 @@ # a2ensite > Active un hôte virtuel Apache sur des systèmes d'exploitation (SE) basés sur Debian. -> Plus d'information : . +> Plus d'informations : . -- Active un hôte virtuel : +- Active un hôte virtuel : `sudo a2ensite {{hote_virtuel}}` -- N'affiche aucun message (mode silencieux) : +- N'affiche aucun message (mode silencieux) : `sudo a2ensite --quiet {{hote_virtuel}}` diff --git a/pages.fr/linux/a2query.md b/pages.fr/linux/a2query.md index ed1f46c06f5ef4..e38745a24654f6 100644 --- a/pages.fr/linux/a2query.md +++ b/pages.fr/linux/a2query.md @@ -1,24 +1,24 @@ # a2query > Retourne la configuration d'exécution d'Apache sur une distribution Debian. -> Plus d'information : . +> Plus d'informations : . -- Liste les [m]odules Apache actifs : +- Liste les [m]odules Apache actifs : `sudo a2query -m` -- Vérifie si un module spécifique est installé : +- Vérifie si un module spécifique est installé : `sudo a2query -m {{nom_module}}` -- Liste les hôtes virtuels actifs : +- Liste les hôtes virtuels actifs : `sudo a2query -s` -- Affiche le [M]odule de traitement multiple actif : +- Affiche le [M]odule de traitement multiple actif : `sudo a2query -M` -- Affiche la [v]ersion d'Apache : +- Affiche la [v]ersion d'Apache : `sudo a2query -v` diff --git a/pages.fr/linux/abbr.md b/pages.fr/linux/abbr.md new file mode 100644 index 00000000000000..8bc7f75a336340 --- /dev/null +++ b/pages.fr/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Gère les abréviations pour le shell Fish. +> Les mots définis par l'utilisateur sont remplacés par des phrases plus longues après leur saisie. +> Plus d'informations : . + +- Ajoute une nouvelle abréviation : + +`abbr --add {{nom_abrégé}} {{commande}} {{arguments_de_la_commande}}` + +- Renomme une abréviation existante : + +`abbr --rename {{ancien_nom}} {{nouveau_nom}}` + +- Supprime une abréviation existante : + +`abbr --erase {{nom_abrégé}}` + +- Importe les abréviations définies sur un autre hôte via SSH : + +`ssh {{nom_de_l_hôte}} abbr --show | source` diff --git a/pages.fr/linux/ac.md b/pages.fr/linux/ac.md new file mode 100644 index 00000000000000..da1cb0339528c2 --- /dev/null +++ b/pages.fr/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Affiche les statistiques concernant la durée de connexion des utilisateurs. +> Plus d'informations : . + +- Affiche pendant combien de temps l'utilisateur actuel a été connecté, en heures : + +`ac` + +- Affiche pendant combien de temps les utilisateurs ont été connectés, en heures : + +`ac --individual-totals` + +- Affiche pendant combien de temps un utilisateur particulier a été connecté, en heures : + +`ac --individual-totals {{nom_d_utilisateur}}` + +- Affiche pendant combien de temps un utilisateur particulier a été connecté, en heures par jour (avec le total) : + +`ac --daily-totals --individual-totals {{nom_d_utilisateur}}` + +- Affiche des détails supplémentaires : + +`ac --compatibility` diff --git a/pages.fr/linux/acpi.md b/pages.fr/linux/acpi.md new file mode 100644 index 00000000000000..ff73bbed97b2b7 --- /dev/null +++ b/pages.fr/linux/acpi.md @@ -0,0 +1,28 @@ +# acpi + +> Affiche l'état de la batterie ou des renseignements sur la température. +> Plus d'informations : . + +- Affiche les informations sur la batterie : + +`acpi` + +- Affiche les informations sur la température : + +`acpi -t` + +- Afficher les informations sur le dispositif de refroidissement : + +`acpi -c` + +- Afficher les informations sur le dispositif de refroidissement en Fahrenheit : + +`acpi -tf` + +- Afficher toutes les informations : + +`acpi -V` + +- Extraye les informations depuis `/proc` au lieu de `/sys` : + +`acpi -p` diff --git a/pages.fr/linux/adduser.md b/pages.fr/linux/adduser.md new file mode 100644 index 00000000000000..d010a2d8a75c80 --- /dev/null +++ b/pages.fr/linux/adduser.md @@ -0,0 +1,24 @@ +# adduser + +> Outil d'ajout d'utilisateurs. +> Plus d'informations : . + +- Crée un nouvel utilisateur avec un répertoire personnel générique et demande interactivement un mot de passe : + +`adduser {{nom_d_utilisateur}}` + +- Crée un nouvel utilisateur sans répertoire personnel : + +`adduser --no-create-home {{nom_dutilisateur}}` + +- Crée un nouvel utilisateur avec un répertoire personnel correspondant au dossier spécifié : + +`adduser --home {{chemin/vers/dossier}} {{nom_d_utilisateur}}` + +- Crée un nouvel utilisateur avec l'interpréteur de commandes spécifié comme interpréteur de commandes de connexion : + +`adduser --shell {{chemin/vers/shell}} {{nom_d_utilisateur}}` + +- Crée un nouvel utilisateur appartenant au groupe donné : + +`adduser --ingroup {{groupe}} {{nom_d_utilisateur}}` diff --git a/pages.fr/linux/alien.md b/pages.fr/linux/alien.md new file mode 100644 index 00000000000000..97f2bfb7f48aae --- /dev/null +++ b/pages.fr/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> Convertit différents paquets d'installation vers d'autres formats : +> Plus d'informations : . + +- Convertit un fichier d'installation spécifique vers le format Debian (extension `.deb`) : + +`sudo alien --to-deb {{chemin/vers/fichier}}` + +- Convertit un fichier d'installation spécifique vers le format Red Hat (extension `.rpm`) : + +`sudo alien --to-rpm {{chemin/vers/fichier}}` + +- Convertit un fichier d'installation spécifique en un fichier d'installation Slackware (extension `.tgz`) : + +`sudo alien --to-tgz {{chemin/vers/fichier}}` + +- Convertit un fichier d'installation spécifique vers le format Debian et l'installe sur le système : + +`sudo alien --to-deb --install {{chemin/vers/fichier}}` diff --git a/pages.fr/linux/alternatives.md b/pages.fr/linux/alternatives.md new file mode 100644 index 00000000000000..b21598c4fd26c3 --- /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/apache2ctl.md b/pages.fr/linux/apache2ctl.md index 05ed1f1628080e..976cb2ec453084 100644 --- a/pages.fr/linux/apache2ctl.md +++ b/pages.fr/linux/apache2ctl.md @@ -2,24 +2,24 @@ > L'outil d'Interface en Lignes de Commandes (ILC) pour administrer le serveur web HTTP Apache. > Cette commande est disponible sur une distribution Debian. Pour les distributions basées Red Hat, voir `httpd`. -> Plus d'information : . +> Plus d'informations : . -- Démarre le démon Apache. Envoie un message s'il est déjà actif : +- Démarre le démon Apache. Envoie un message s'il est déjà actif : `sudo apache2ctl start` -- Arrête le démon Apache : +- Arrête le démon Apache : `sudo apache2ctl stop` -- Re-démarre le démon Apache : +- Re-démarre le démon Apache : `sudo apache2ctl restart` -- Teste la syntaxe du fichier de configuration : +- Teste la syntaxe du fichier de configuration : `sudo apache2ctl -t` -- Liste les modules chargés : +- Liste les modules chargés : `sudo apache2ctl -M` diff --git a/pages.fr/linux/apk.md b/pages.fr/linux/apk.md new file mode 100644 index 00000000000000..aca641b097192a --- /dev/null +++ b/pages.fr/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> Gestionnaire de paquet d'Alpine Linux. +> Plus d'informations : . + +- Mets à jour les indexes de tous les dépôts distants : + +`apk update` + +- Installe un nouveau paquet : + +`apk add {{paquet}}` + +- Désinstalle un paquet : + +`apk del {{paquet}}` + +- Essaye de réparer un paquet ou de mettre à jour un paquet sans ses dépendances : + +`apk fix {{paquet}}` + +- Recherche des paquets à partir d'un mot-clé : + +`apk search {{mot_cle}}` + +- Obtiens des information à propos d'un paquet précis : + +`apk info {{paquet}}` diff --git a/pages.fr/linux/apt-add-repository.md b/pages.fr/linux/apt-add-repository.md index b50142dbafb37b..a342f25a3c755d 100644 --- a/pages.fr/linux/apt-add-repository.md +++ b/pages.fr/linux/apt-add-repository.md @@ -1,20 +1,20 @@ # apt-add-repository > Gère la définition des dépôts apt. -> Plus d'informations : . +> Plus d'informations : . -- Ajout d'un nouveau dépôt : +- Ajout d'un nouveau dépôt : `apt-add-repository {{repository_spec}}` -- Suppression d'un dépôt : +- Suppression d'un dépôt : `apt-add-repository --remove {{repository_spec}}` -- Mise à jour du cache des paquets après ajout d'un dépôt : +- Mise à jour du cache des paquets après ajout d'un dépôt : `apt-add-repository --update {{repository_spec}}` -- Activation pour les paquets source : +- Activation pour les paquets source : `apt-add-repository --enable-source {{repository_spec}}` diff --git a/pages.fr/linux/apt-cache.md b/pages.fr/linux/apt-cache.md index a4eb5eae9f9e37..2d57721d2ca67a 100644 --- a/pages.fr/linux/apt-cache.md +++ b/pages.fr/linux/apt-cache.md @@ -1,24 +1,24 @@ # apt-cache > Outil de recherche de paquets Debian et Ubuntu. -> Plus d'informations : . +> Plus d'informations : . -- Recherche un paquet dans vos sources actuelles : +- Recherche un paquet dans vos sources actuelles : `apt-cache search {{query}}` -- Affiche des informations sur un paquet : +- Affiche des informations sur un paquet : `apt-cache show {{package}}` -- Indique si un paquet est installé et à jour : +- Indique si un paquet est installé et à jour : `apt-cache policy {{package}}` -- Affiche les dépendances d'un paquet : +- Affiche les dépendances d'un paquet : `apt-cache depends {{package}}` -- Affiche les paquets qui dépendent d'un paquet particulier : +- Affiche les paquets qui dépendent d'un paquet particulier : `apt-cache rdepends {{package}}` diff --git a/pages.fr/linux/apt-file.md b/pages.fr/linux/apt-file.md index dd7f3e0913a726..7f6eded03fce1d 100644 --- a/pages.fr/linux/apt-file.md +++ b/pages.fr/linux/apt-file.md @@ -1,16 +1,16 @@ # apt-file > Recherche de fichiers dans les paquets apt, y compris ceux qui ne sont pas encore installés. -> Plus d'informations : . +> Plus d'informations : . -- Mise à jour la base de données des métadonnées : +- Mise à jour la base de données des métadonnées : `sudo apt update` -- Recherche des paquets qui contiennent le fichier ou le chemin d'accès spécifié : +- Recherche des paquets qui contiennent le fichier ou le chemin d'accès spécifié : `apt-file search {{part/of/filename}}` -- Énumère le contenu d'un paquet spécifique : +- Énumère le contenu d'un paquet spécifique : `apt-file list {{package_name}}` diff --git a/pages.fr/linux/apt-get.md b/pages.fr/linux/apt-get.md index f112fc5272a410..e12044ef2bb1a5 100644 --- a/pages.fr/linux/apt-get.md +++ b/pages.fr/linux/apt-get.md @@ -2,36 +2,36 @@ > Utilitaire de gestion des paquets Debian et Ubuntu. > Recherche des paquets en utilisant `apt-cache`. -> Plus d'informations : . +> Plus d'informations : . -- Mise à jour de la liste des paquets et des versions disponibles (il est recommandé de l'exécuter avant les autres commandes `apt-get`) : +- Mise à jour de la liste des paquets et des versions disponibles (il est recommandé de l'exécuter avant les autres commandes `apt-get`) : `apt-get update` -- Installation d'un paquet, ou mise à jour avec la dernière version disponible : +- Installation d'un paquet, ou mise à jour avec la dernière version disponible : `apt-get install {{package}}` -- Suppression d'un paquet : +- Suppression d'un paquet : `apt-get remove {{package}}` -- Suppression d'un paquet et de ses fichiers de configuration : +- Suppression d'un paquet et de ses fichiers de configuration : `apt-get purge {{package}}` -- Mise à jour de tous les paquets installés vers les dernières versions disponibles : +- Mise à jour de tous les paquets installés vers les dernières versions disponibles : `apt-get upgrade` -- Nettoyage du dépôt local - supprime les fichiers de paquets (`.deb`) des téléchargements interrompus qui ne peuvent plus être téléchargés: +- Nettoyage du dépôt local - supprime les fichiers de paquets (`.deb`) des téléchargements interrompus qui ne peuvent plus être téléchargés : `apt-get autoclean` -- Suppression de tous les paquets qui ne sont plus nécessaires : +- Suppression de tous les paquets qui ne sont plus nécessaires : `apt-get autoremove` -- Mise à jour des paquets installés (comme la commande `upgrade`), mais avec suppression des paquets obsolètes et installation des paquets supplémentaires pour répondre aux nouvelles dépendances : +- Mise à jour des paquets installés (comme la commande `upgrade`), mais avec suppression des paquets obsolètes et installation des paquets supplémentaires pour répondre aux nouvelles dépendances : `apt-get dist-upgrade` diff --git a/pages.fr/linux/apt-mark.md b/pages.fr/linux/apt-mark.md index 82d378c968c87b..226d43ed9c640c 100644 --- a/pages.fr/linux/apt-mark.md +++ b/pages.fr/linux/apt-mark.md @@ -1,24 +1,24 @@ # apt-mark > Utilitaire permettant de modifier l'état des paquets installés. -> Plus d'informations : . +> Plus d'informations : . -- Marquer un paquet comme étant automatiquement installé : +- Marquer un paquet comme étant automatiquement installé : `sudo apt-mark auto {{package_name}}` -- Maintenir un paquet à sa version actuelle et empêcher les mises à jour : +- Maintenir un paquet à sa version actuelle et empêcher les mises à jour : `sudo apt-mark hold {{package_name}}` -- Permettre une nouvelle mise à jour d'un paquet : +- Permettre une nouvelle mise à jour d'un paquet : `sudo apt-mark unhold {{package_name}}` -- Afficher les paquets installés manuellement : +- Afficher les paquets installés manuellement : `apt-mark showmanual` -- Afficher les paquets détenus qui ne sont pas mis à jour : +- Afficher les paquets détenus qui ne sont pas mis à jour : `apt-mark showhold` diff --git a/pages.fr/linux/apt.md b/pages.fr/linux/apt.md index ae548775b25662..43e11ccea39633 100644 --- a/pages.fr/linux/apt.md +++ b/pages.fr/linux/apt.md @@ -1,37 +1,37 @@ # apt > Utilitaire de gestion des paquets pour les distributions basées sur Debian. -> Remplacement recommandé pour apt-get lorsqu'il est utilisé de manière interactive dans les versions 16.04 et ultérieures d'Ubuntu. -> Plus d'informations : . +> Remplacement recommandé pour `apt-get` lorsqu'il est utilisé de manière interactive dans les versions 16.04 et ultérieures d'Ubuntu. +> Plus d'informations : . -- Mettre à jour la liste des paquets et des versions disponibles (il est recommandé de l'exécuter avant les autres commandes `apt`) : +- Mettre à jour la liste des paquets et des versions disponibles (il est recommandé de l'exécuter avant les autres commandes `apt`) : `sudo apt update` -- Recherche d'un paquet donné : +- Recherche d'un paquet donné : `apt search {{package}}` -- Afficher les informations pour un paquet : +- Afficher les informations pour un paquet : `apt show {{package}}` -- Installer un paquet, ou le mettre à jour avec la dernière version disponible : +- Installer un paquet, ou le mettre à jour avec la dernière version disponible : `sudo apt install {{package}}` -- Supprimer un paquet (utiliser `purge` à la place supprime également ses fichiers de configuration) : +- Supprimer un paquet (utiliser `purge` à la place supprime également ses fichiers de configuration) : `sudo apt remove {{package}}` -- Mettre à jour tous les paquets installés vers les dernières versions disponibles : +- Mettre à jour tous les paquets installés vers les dernières versions disponibles : `sudo apt upgrade` -- Lister tous les paquets : +- Lister tous les paquets : `apt list` -- Lister les paquets installés : +- Lister les paquets installés : `apt list --installed` diff --git a/pages.fr/linux/ark.md b/pages.fr/linux/ark.md new file mode 100644 index 00000000000000..511021df9af3b8 --- /dev/null +++ b/pages.fr/linux/ark.md @@ -0,0 +1,16 @@ +# ark + +> Outil d'archive de KDE. +> Plus d'informations : . + +- Extrait une archive dans le répertoire courant : + +`ark --batch {{archive}}` + +- Change le répertoire d'extraction : + +`ark --batch --destination {{chemin/vers/le/répertoire}} {{archive}}` + +- Crée une archive si elle n'existe pas et y ajouter des fichiers : + +`ark --add-to {{archive}} {{fichier1}} {{fichier2}} ...` diff --git a/pages.fr/linux/as.md b/pages.fr/linux/as.md new file mode 100644 index 00000000000000..d5ef7b15494395 --- /dev/null +++ b/pages.fr/linux/as.md @@ -0,0 +1,20 @@ +# as + +> Assembleur GNU portable. Principalement destiné pour assembler la sortie de `gcc` pour être utilisé par `ld`. +> Plus d'informations : . + +- Assemble un fichier, en écrivant la sortie dans le fichier `a.out` : + +`as {{fichier.s}}` + +- Assemble la sortie vers un fichier donné : + +`as {{fichier.s}} -p {{sortie.o}}` + +- Génère la sortie plus vite en évitant le preprocess des espaces et des commentaires (doit seulement être utilisé sur des compilateurs sûrs) : + +`as -f {{fichier.s}}` + +- Inclut un chemin donné à la liste des répertoires dans lesquels chercher les fichiers spécifiés dans les directives `.include` : + +`as -I {{chemin/vers/le/répertoire}} {{fichier.s}}` diff --git a/pages.fr/linux/ascii.md b/pages.fr/linux/ascii.md new file mode 100644 index 00000000000000..306c4322788efa --- /dev/null +++ b/pages.fr/linux/ascii.md @@ -0,0 +1,36 @@ +# ascii + +> Affiche les alias de caractères ASCII. +> Plus d'informations : . + +- Affiche les alias ASCII d'un caractère : + +`ascii {{c}}` + +- Affiche les alias ASCII dans un format court, adapté pour les scripts : + +`ascii -t {{c}}` + +- Affiche les alias ASCII de plusieurs caractères : + +`ascii -s {{tldr}}` + +- Affiche la table ASCII en décimal : + +`ascii -d` + +- Affiche la table ASCII en hexadécimal : + +`ascii -x` + +- Affiche la table ASCII en octal : + +`ascii -o` + +- Affiche la table ASCII en binaire : + +`ascii -b` + +- Affiche le résumé des options et une table ASCII complète : + +`ascii` diff --git a/pages.fr/linux/asciiart.md b/pages.fr/linux/asciiart.md new file mode 100644 index 00000000000000..3c60db1b5cb919 --- /dev/null +++ b/pages.fr/linux/asciiart.md @@ -0,0 +1,28 @@ +# asciiart + +> Convertit des images en ASCII. +> Plus d'informations : . + +- Lit une image depuis un fichier et l'affiche en ASCII : + +`asciiart {{chemin/vers/image.jpg}}` + +- Lit une image depuis une URL et l'affiche en ASCII : + +`asciiart {{www.example.com/image.jpg}}` + +- Choisit la largeur de sortie (valeur par défaut : 100) : + +`asciiart --width {{50}} {{chemin/vers/image.jpg}}` + +- Colorise la sortie ASCII : + +`asciiart --color {{chemin/vers/image.jpg}}` + +- Choisit le format de sortie (format par défaut : textuel) : + +`asciiart --format {{text|html}} {{chemin/vers/image.jpg}}` + +- Inverse la table de caractères : + +`asciiart --invert-chars {{chemin/vers/image.jpg}}` diff --git a/pages.fr/linux/at.md b/pages.fr/linux/at.md new file mode 100644 index 00000000000000..29dd622283c9f7 --- /dev/null +++ b/pages.fr/linux/at.md @@ -0,0 +1,20 @@ +# at + +> Exécute des commandes à des temps détermintés. +> Plus d'informations : . + +- Ouvre une invite `at` afin de créer un nouvel ensemble de commandes programmées, presser `Ctrl + D` pour sauvegarder et quitter : + +`at {{hh:mm}}` + +- Exécute les commandes et envoie les résultats par mail en utilisant un programme de messagerie local comme Sendmail : + +`at {{hh:mm}} -m` + +- Exécute un script à un temps donné : + +`at {{hh:mm}} -f {{chemin/vers/le/script}}` + +- Affiche une notification système à 23 heures le 18 Février : + +`echo "notify-send '{{Debout !}}'" | at {{11pm}} {{Feb 18}}` diff --git a/pages.fr/linux/batcat.md b/pages.fr/linux/batcat.md new file mode 100644 index 00000000000000..ec4f0f1d27113a --- /dev/null +++ b/pages.fr/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Cette commande est un alias de `bat`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr bat` diff --git a/pages.fr/linux/blight.md b/pages.fr/linux/blight.md new file mode 100644 index 00000000000000..9b4985473fed5b --- /dev/null +++ b/pages.fr/linux/blight.md @@ -0,0 +1,24 @@ +# blight + +> Utilitaire pour changer la luminosité de l'affichage. +> Plus d'informations : . + +- Fixe la luminosité de l'affichage à 50% : + +`blight set {{50}} -r` + +- Affiche la luminosité actuelle de l'affichage : + +`blight show` + +- Affiche la luminosité maximale de l'affichage : + +`blight max` + +- Augmente la luminosité de l'affichage en pourcentage : + +`blight inc {{nombre}} -r` + +- Réduit la luminosité de l'affichage en unités internes : + +`blight dec {{nombre}}` diff --git a/pages.fr/linux/bspwm.md b/pages.fr/linux/bspwm.md new file mode 100644 index 00000000000000..adeeb2bbe28218 --- /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-check.md b/pages.fr/linux/btrfs-check.md new file mode 100644 index 00000000000000..4a376be68f8185 --- /dev/null +++ b/pages.fr/linux/btrfs-check.md @@ -0,0 +1,32 @@ +# btrfs check + +> Vérifier l'état, ou réparer un système de fichiers de type btrfs. +> Plus d'informations : . + +- Vérifier l'état d'un système de fichiers btrfs : + +`sudo btrfs check {{chemin/vers/partition}}` + +- Vérifier l'état et réparer d'un système de fichiers btrfs (dangereux) : + +`sudo btrfs check --repair {{chemin/vers/partition}}` + +- Afficher la progression de vérification en cours : + +`sudo btrfs check --progress {{chemin/vers/partition}}` + +- Vérifier la somme de contrôle de chaque bloc de données (si le système de fichiers à été correctement vérifié) : + +`sudo btrfs check --check-data-csum {{chemin/vers/partition}}` + +- Utiliser le `n`-ième super-bloc (`n` peut-être `0`, `1` ou `2`) : + +`sudo btrfs check --super {{n}} {{chemin/vers/partition}}` + +- Reconstruire l'arbre des sommes de contrôle (checksum tree) : + +`sudo btrfs check --repair --init-csum-tree {{chemin/vers/partition}}` + +- Reconstruire l'arbre des domaines (extent tree) : + +`sudo btrfs check --repair --init-extent-tree {{chemin/vers/partition}}` diff --git a/pages.fr/linux/btrfs-device.md b/pages.fr/linux/btrfs-device.md new file mode 100644 index 00000000000000..f9c65917ca4f1a --- /dev/null +++ b/pages.fr/linux/btrfs-device.md @@ -0,0 +1,24 @@ +# btrfs device + +> Gestion des partitions dans un système de fichiers BTRFS. +> Plus d'informations : . + +- Ajouter un ou plusieurs périphériques à un système de fichiers btrfs : + +`sudo btrfs device add {{chemin/vers/block_device1}} [{{chemin/vers/block_device2}}] {{chemin/vers/systeme_de_fichiers_btrfs}}` + +- Retirer un périphérique d'un système de fichiers btrfs : + +`sudo btrfs device remove {{chemin/vers/peripherique|identifiant_peripherique}} [{{...}}]` + +- Afficher les statistiques d'erreurs : + +`sudo btrfs device stats {{chemin/vers/systeme_de_fichiers_btrfs}}` + +- Scanner tous les disques et informer le noyau de tous les sytèmes de fichiers btrfs détectés : + +`sudo btrfs device scan --all-devices` + +- Afficher les statistiques détaillées d'allocation par disque : + +`sudo btrfs device usage {{chemin/vers/systeme_de_fichiers_btrfs}}` diff --git a/pages.fr/linux/btrfs-filesystem.md b/pages.fr/linux/btrfs-filesystem.md new file mode 100644 index 00000000000000..f7502400a5a642 --- /dev/null +++ b/pages.fr/linux/btrfs-filesystem.md @@ -0,0 +1,28 @@ +# btrfs filesystem + +> Gérer les systèmes de fichiers btrfs. +> Plus d'informations : . + +- Afficher l'utilisation du système de fichiers (affiche les informations détaillées si executé en tant que `root`) : + +`btrfs filesystem usage {{chemin/vers/point_de_montage_btrfs}}` + +- Afficher l'utilisation individuellement pour chaque périphérique : + +`sudo btrfs filesystem show {{chemin/vers/point_de_montage_btrfs}}` + +- Défragmenter un fichier unique sur un système de fichiers btrfs (à éviter lorsqu'un agent de dé-duplication est en cours d'exécution) : + +`sudo btrfs filesystem defragment -v {{chemin/vers/fichier}}` + +- Défragmenter récursivement un dossier (ne franchit pas la limite de sous-volume) : + +`sudo btrfs filesystem defragment -v -r {{chemin/vers/dossier}}` + +- Force la resynchronisation des blocs de données non écrits sur le ou les disques : + +`sudo btrfs filesystem sync {{chemin/vers/point_de_montage_btrfs}}` + +- Afficher un sommaire d'utilisation des disques pour les fichiers dans un dossier, récursivement : + +`sudo btrfs filesystem du --summarize {{chemin/vers/dossier}}` diff --git a/pages.fr/linux/btrfs-inspect-internal.md b/pages.fr/linux/btrfs-inspect-internal.md new file mode 100644 index 00000000000000..2d41e4b6193eb7 --- /dev/null +++ b/pages.fr/linux/btrfs-inspect-internal.md @@ -0,0 +1,28 @@ +# btrfs inspect-internal + +> Recherche des informations internes concernant un système de fichier btrfs. +> Plus d'informations : . + +- Afficher les informations du superbloc : + +`sudo btrfs inspect-internal dump-super {{chemin/vers/partition}}` + +- Afficher les informations sur les superblocs et toutes ses copies : + +`sudo btrfs inspect-internal dump-super --all {{chemin/vers/partition}}` + +- Afficher les meta-informations du système de fichiers : + +`sudo btrfs inspect-internal dump-tree {{chemin/vers/partition}}` + +- Afficher la liste des fichiers dans le `n`-ième inode : + +`sudo btrfs inspect-internal inode-resolve {{n}} {{chemin/vers/point_de_montage_btrfs}}` + +- Afficher la liste des fichiers à une adresse logique donnée : + +`sudo btrfs inspect-internal logical-resolve {{addresse_logique}} {{chemin/vers/point_de_montage_btrfs}}` + +- Afficher les statistiques concernant les arbres de racines, de domaines (extent), de sommes de contrôle (csum) et de système de fichiers : + +`sudo btrfs inspect-internal tree-stats {{chemin/vers/partition}}` diff --git a/pages.fr/linux/btrfs-rescue.md b/pages.fr/linux/btrfs-rescue.md new file mode 100644 index 00000000000000..b3efcfd3d36b28 --- /dev/null +++ b/pages.fr/linux/btrfs-rescue.md @@ -0,0 +1,24 @@ +# btrfs rescue + +> Essayer de récupérer un système de fichiers btrfs endommagé. +> Plus d'informations : . + +- Reconstruire les méta-données du système de fichiers (très lent) : + +`sudo btrfs rescue chunk-recover {{chemin/vers/partition}}` + +- Corriger les problèmes d'alignement de taille de périphérique (e.g. incohérence entre la taille du système de fichiers et le nombre total d'octets empéchant de monter la partition) : + +`sudo btrfs rescue fix-device-size {{chemin/vers/partition}}` + +- Restaurer un superbloc corrompu depuis ses copies correctes (restauration de la racine de l'arbre du système de fichiers) : + +`sudo btrfs rescue super-recover {{chemin/vers/partition}}` + +- Restaurer depuis des transactions interrompues (correction des problèmes de re-exécution des messages de journaux) : + +`sudo btrfs rescue zero-log {{chemin/vers/partition}}` + +- Créer un périphérique de contrôle sous `/dev/btrfs-control` quand l'outil `mknod` n'est pas installé : + +`sudo btrfs rescue create-control-device` diff --git a/pages.fr/linux/btrfs-restore.md b/pages.fr/linux/btrfs-restore.md new file mode 100644 index 00000000000000..dbff636351c869 --- /dev/null +++ b/pages.fr/linux/btrfs-restore.md @@ -0,0 +1,24 @@ +# btrfs restore + +> Tenter de récupérer des fichiers depuis un système de fichiers btrfs endommagé. +> Plus d'informations : . + +- Restaurer tout les fichiers depuis un système de fichier btrfs vers un répertoire cible indiqué : + +`sudo btrfs restore {{chemin/vers/peripherique_btrfs}} {{chemin/vers/dossier}}` + +- Lister (sans écriture) les fichiers qui peuvent être récupérés depuis un système de fichiers btrfs : + +`sudo btrfs restore --dry-run {{chemin/du/device/btrfs}} {{chemin/du/dossier}}` + +- Restaurer les fichiers correspondants à une expression régulière donnée (non sensible à la casse) à restaurer depuis un système de fichiers btrfs (tous les répertoires parents des fichiers doivent correspondre également à l'expression régulière) : + +`sudo btrfs restore --path-regex {{expression_reguliere}} -c {{chemin/vers/peripherique_btrfs}} {{chemin/vers/dossier}}` + +- Restaurer les fichiers depuis un système de fichiers btrfs en utilisant un arbre racine spécifique `bytenr` (voir `btrfs-find-root`) : + +`sudo btrfs restore -t {{bytenr}} {{chemin/vers/peripherique_btrfs}} {{chemin/vers/dossier}}` + +- Restaurer les fichiers depuis un système de fichiers btrfs (avec métadonnées, attributs étendus, et liens symboliques) en écrivant par dessus les fichiers déjà existants dans le répertoire cible : + +`sudo btrfs restore --metadata --xattr --symlinks --overwrite {{chemin/vers/peripherique_btrfs}} {{chemin/vers/dossier}}` diff --git a/pages.fr/linux/btrfs-scrub.md b/pages.fr/linux/btrfs-scrub.md new file mode 100644 index 00000000000000..a21fec2fffdf80 --- /dev/null +++ b/pages.fr/linux/btrfs-scrub.md @@ -0,0 +1,29 @@ +# btrfs scrub + +> É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 : . + +- Démarrer un examen : + +`sudo btrfs scrub start {{chemin/vers/point_de_montage_btrfs}}` + +- Afficher le statut d'un examen en cours, ou du dernier examen complété : + +`sudo btrfs scrub status {{chemin/vers/point_de_montage_btrfs}}` + +- Stopper un examen en cours : + +`sudo btrfs scrub cancel {{chemin/vers/point_de_montage_btrfs}}` + +- Reprendre un examen précédemment stoppé : + +`sudo btrfs scrub resume {{chemin/vers/point_de_montage_btrfs}}` + +- Démarrer un examen, mais attendre qu'il termine avant de rendre la main : + +`sudo btrfs scrub start -B {{chemin/vers/point_de_montage_btrfs}}` + +- Démarrer un examen en mode silencieux (n'affiche ni erreurs ni statistiques) : + +`sudo btrfs scrub start -q {{chemin/vers/le/point_de_montage_btrfs}}` diff --git a/pages.fr/linux/btrfs-subvolume.md b/pages.fr/linux/btrfs-subvolume.md new file mode 100644 index 00000000000000..5f46d64ae38a24 --- /dev/null +++ b/pages.fr/linux/btrfs-subvolume.md @@ -0,0 +1,28 @@ +# btrfs subvolume + +> Gestion des sous-volumes et instantanés btrfs. +> Plus d'informations : . + +- Créer un nouveau sous-volume vide : + +`sudo btrfs subvolume create {{chemin/vers/nouveau_sous_volume}}` + +- Lister tous les sous-volumes et instantanés du système de fichiers indiqué : + +`sudo btrfs subvolume list {{chemin/vers/systeme_de_fichiers_btrfs}}` + +- Supprimer un sous-volume : + +`sudo btrfs subvolume delete {{chemin/vers/sous_volume}}` + +- Créer un instantané en lecture seule d'un sous-volume existant : + +`sudo btrfs subvolume snapshot -r {{chemin/vers/sous_volume_source}} {{chemin/vers/sous_volume_cible}}` + +- Créer un instantané en lecture et écriture d'un sous-volume existant : + +`sudo btrfs subvolume snapshot {{chemin/vers/sous_volume_source}} {{chemin/vers/sous_volume_cible}}` + +- Afficher les informations détaillées d'un sous-volume : + +`sudo btrfs subvolume show {{chemin/vers/sous_volume}}` diff --git a/pages.fr/linux/btrfs-version.md b/pages.fr/linux/btrfs-version.md new file mode 100644 index 00000000000000..7e04407ddcc3c6 --- /dev/null +++ b/pages.fr/linux/btrfs-version.md @@ -0,0 +1,12 @@ +# btrfs version + +> Afficher les informations de version des outils btrfs, et accéder aux pages d'aide. +> Plus d'informations : . + +- Afficher les informations de version des outils btrfs : + +`btrfs version` + +- Afficher l'aide : + +`btrfs version --help` diff --git a/pages.fr/linux/btrfs.md b/pages.fr/linux/btrfs.md new file mode 100644 index 00000000000000..d0471b423a5a9a --- /dev/null +++ b/pages.fr/linux/btrfs.md @@ -0,0 +1,25 @@ +# btrfs + +> Système de fichiers basé sur le principe de copie à l’écriture ("copy-on-write", souvent désigné par son sigle anglais COW) pour Linux. +> Certaines sous-commandes comme `btrfs device` ont leur propre documentation. +> Plus d'informations : . + +- Créer un sous-volume : + +`sudo btrfs subvolume create {{chemin/vers/sous_volume}}` + +- Lister les sous-volumes : + +`sudo btrfs subvolume list {{chemin/vers/point_de_montage}}` + +- Afficher les informations d'utilisation d'espace : + +`sudo btrfs filesystem df {{chemin/vers/point_de_montage}}` + +- Activer les quotas : + +`sudo btrfs quota enable {{chemin/vers/sous_volume}}` + +- Afficher les quotas : + +`sudo btrfs qgroup show {{chemin/vers/sous_volume}}` diff --git a/pages.fr/linux/cal.md b/pages.fr/linux/cal.md new file mode 100644 index 00000000000000..1effdbaf0caa92 --- /dev/null +++ b/pages.fr/linux/cal.md @@ -0,0 +1,24 @@ +# cal + +> Affiche un calendrier, en surlignant la date d'aujourd'hui. +> Plus d'informations : . + +- Affiche un calendrier pour le mois en cours : + +`cal` + +- Affiche les mois précédent, courant et suivant : + +`cal -3` + +- Utilise le Lundi comme le premier jour de la semaine : + +`cal --monday` + +- Affiche un calendrier pour une année en particulier (4 chiffres) : + +`cal {{année}}` + +- Affiche un calendrier pour un mois et une année en particulier : + +`cal {{mois}} {{année}}` diff --git a/pages.fr/linux/cc.md b/pages.fr/linux/cc.md new file mode 100644 index 00000000000000..05d5dbd9d4577c --- /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/cfdisk.md b/pages.fr/linux/cfdisk.md new file mode 100644 index 00000000000000..02a15fb50a2e38 --- /dev/null +++ b/pages.fr/linux/cfdisk.md @@ -0,0 +1,12 @@ +# cfdisk + +> Un programme pour gérer les tables de partitions et les partitions sur un disque dur en utilisant une interface utilisateur de type "curses". +> Plus d'informations : . + +- Lance le manipulateur de partitions sur un appareil spécifique : + +`cfdisk {{/dev/sdX}}` + +- Crée une nouvelle table de partitions pour un appareil spécifique et la gère : + +`cfdisk --zero {{/dev/sdX}}` diff --git a/pages.fr/linux/cgroups.md b/pages.fr/linux/cgroups.md new file mode 100644 index 00000000000000..2eacfdecd3d0a7 --- /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 new file mode 100644 index 00000000000000..66a7403dc1e0dc --- /dev/null +++ b/pages.fr/linux/chcon.md @@ -0,0 +1,32 @@ +# chcon + +> Change le contexte de sécurité de SELinux d'un ou plusieurs fichiers/dossiers. +> Plus d'informations : . + +- Affiche le contexte de sécurité d'un fichier : + +`ls -lZ {{chemin/vers/fichier}}` + +- Change le contexte de sécurité d'un fichier cible, en utilisant un fichier de référence : + +`chcon --reference={{fichier_référence}} {{fichier_cible}}` + +- Change le contexte de sécurité SELinux complet d'un fichier : + +`chcon {{utilisateur}}:{{role}}:{{type}}:{{range/level}} {{fichier}}` + +- Change seulement la partie utilisateur du contexte de sécurité SELinux : + +`chcon -u {{utilisateur}} {{fichier}}` + +- Change seulement la partie role du contexte de sécurité SELinux : + +`chcon -r {{role}} {{fichier}}` + +- Change seulement la partie type du contexte de sécurité SELinux : + +`chcon -t {{type}} {{fichier}}` + +- Change seulement la partie plage/niveau du contexte de sécurité SELinux : + +`chcon -l {{plage/niveau}} {{fichier}}` diff --git a/pages.fr/linux/cmus.md b/pages.fr/linux/cmus.md new file mode 100644 index 00000000000000..19823f091f04fc --- /dev/null +++ b/pages.fr/linux/cmus.md @@ -0,0 +1,25 @@ +# cmus + +> Lecteur de musique en ligne de commande. +> Utiliser les flèches pour naviguer, `` pour sélectionner, et les nombres 1-8 pour se déplacer dans les différentes vues. +> Plus d'informations : . + +- Ouvre cmus dans le dossier spécifié (celui-ci deviendra le dossier de travail) : + +`cmus {{chemin/vers/dossier}}` + +- Ajoute un fichier/dossier à la bibliothèque : + +`:add {{chemin/vers/fichier_ou_dossier}}` + +- Mets en pause/relancer la musique actuelle : + +`c` + +- Active/désactive le mode aléatoire : + +`s` + +- Quitte cmus : + +`q` diff --git a/pages.fr/linux/cp.md b/pages.fr/linux/cp.md new file mode 100644 index 00000000000000..bf477313a8e8fe --- /dev/null +++ b/pages.fr/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Copier fichiers et répertoires. +> Plus d'informations : . + +- Copier un fichier vers un autre emplacement: + +`cp {{chemin/vers/fichier_original.ext}} {{chemin/vers/fichier_cible.ext}}` + +- Copier un ficher d'un répertoire vers un autre en conservant le nom du fichier : + +`cp {{chemin/vers/fichier_original.ext}} {{chemin/vers/repertoire_cible}}` + +- Copier récursivement le contenu d'un répertoire vers un autre emplacement (si la destination existe, le répertoire est copié dans celle-ci) : + +`cp -r {{chemin/vers/repertoire_source}} {{chemin/vers/repertoire_cible}}` + +- Copier récursivement le contenu d'un répertoire vers un autre emplacement en mode verbeux (affichage des noms fichiers à mesure de leur copie) : + +`cp -vr {{chemin/vers/repertoire_source}} {{chemin/vers/repertoire_cible}}` + +- Copier les fichiers textes vers un autre emplacement, en mode interactive (demande une confirmation avant d'écrire par dessus un fichier du même nom) : + +`cp -i {{*.txt}} {{chemin/vers/repertoire_cible}}` + +- Suivre le lien symbolique avant de copier (copie le fichier lié, et non le lien) : + +`cp -L {{link}} {{chemin/vers/repertoire_cible}}` + +- Utiliser le chemin complet du fichier source, créant tout répertoire manquant lors de la copie : + +`cp --parents {{chemin/vers/fichier_source}} {{chemin/vers/fichier_cible}}` diff --git a/pages.fr/linux/ctr.md b/pages.fr/linux/ctr.md new file mode 100644 index 00000000000000..5d016a295133cd --- /dev/null +++ b/pages.fr/linux/ctr.md @@ -0,0 +1,20 @@ +# ctr + +> Gère les conteneurs et images de `containerd`. +> Plus d'informations : . + +- Liste tous les conteneurs (en marche et arrêtés) : + +`ctr containers list` + +- Liste toutes les images : + +`ctr images list` + +- Télécharge une image : + +`ctr images pull {{image}}` + +- Étiquette une image : + +`ctr images tag {{image_source}}:{{étiquette_source}} {{image_destination}}:{{étiquette_destination}}` diff --git a/pages.fr/linux/curlie.md b/pages.fr/linux/curlie.md new file mode 100644 index 00000000000000..5f807e8ffadf57 --- /dev/null +++ b/pages.fr/linux/curlie.md @@ -0,0 +1,20 @@ +# curlie + +> Curlie est un frontend pour curl qui ajoute la facilité d'utilisation de httpie. +> Plus d'informations : . + +- Envoie une requête GET : + +`curlie {{httpbin.org/get}}` + +- Envoie une requête POST : + +`curlie post {{httpbin.org/post}} {{name=john}} {{age:=25}}` + +- Envoie une requête GET avec des paramètres de requête (par ex : `premier_param=5&deuxième_param=true`) : + +`curlie get {{httpbin.org/get}} {{premier_param=5}} {{second_param=true}}` + +- Envoie une requête GET avec un en-tête personnalisé : + +`curlie get {{httpbin.org/get}} {{clef-d-en-tête:valeur-d-en-tête}}` diff --git a/pages.fr/linux/daemonize.md b/pages.fr/linux/daemonize.md new file mode 100644 index 00000000000000..1e0f8d78ab893e --- /dev/null +++ b/pages.fr/linux/daemonize.md @@ -0,0 +1,20 @@ +# daemonize + +> Lance une commande (qui ne se "démonise" pas elle-même) comme démon UNIX. +> Plus d'informations : . + +- Lance une commande comme démon : + +`daemonize {{commande}} {{arguments_de_commande}}` + +- Écrit le PID dans le fichier spécifié : + +`daemonize -p {{chemin/vers/le/fichier/pid}} {{commande}} {{arguments_de_commande}}` + +- Utilise un fichier verrou pour s'assurer que seulement une instance fonctionne à la fois : + +`daemonize -l {{chemin/vers/le/fichier/verrou}} {{commande}} {{arguments_de_commande}}` + +- Utilise le compte utilisateur spécifié : + +`sudo daemonize -u {{utilisateur}} {{commande}} {{arguments_de_commande}}` diff --git a/pages.fr/linux/deluser.md b/pages.fr/linux/deluser.md new file mode 100644 index 00000000000000..fc7fb2f7518eb8 --- /dev/null +++ b/pages.fr/linux/deluser.md @@ -0,0 +1,20 @@ +# deluser + +> Supprime un utilisateur du système. +> Plus d'informations : . + +- Supprime un utilisateur : + +`sudo deluser {{nom_dutilisateur}}` + +- Supprime un utilisateur et son répertoire "home" : + +`sudo deluser --remove-home {{nom_dutilisateur}}` + +- Supprime un utilisateur et son répertoire "home", mais sauvegarde ses fichiers dans une archive `.tar.gz` dans le répertoire spécifié : + +`sudo deluser --backup-to {{chemin/vers/le/répertoire/de/sauvegarde}} --remove-home {{nom_dutilisateur}}` + +- Supprime un utilisateur et tous les fichiers qu'il possède : + +`sudo deluser --remove-all-files {{nom_dutilisateur}}` diff --git a/pages.fr/linux/dex.md b/pages.fr/linux/dex.md new file mode 100644 index 00000000000000..37f391f654e483 --- /dev/null +++ b/pages.fr/linux/dex.md @@ -0,0 +1,32 @@ +# dex + +> DesktopEntry Execution est un programme servant à générer et à exécuter des fichiers DesktopEntry de type Application +> Plus d'informations : . + +- Exécute tous les programmes dans les dossiers de démarrage automatique : + +`dex --autostart` + +- Exécute tous les programmes dans les dossiers spécifiés : + +`dex --autostart --search-paths {{chemin/vers/dossier1}}:{{chemin/vers/dossier2}}:{{chermin/vers/dossier3}}:` + +- Prévisualise les programmes qui seraient exécutés lors d'un démarrage automatique spécifique à GNOME : + +`dex --autostart --environment {{GNOME}}` + +- Prévisualise les programmes qui seraient exécutés lors d'un démarrage automatique standard : + +`dex --autostart --dry-run` + +- Prévisualise la valeur de la propriété `Name` de DesktopEntry : + +`dex -- property {{Name}} {{chemin/vers/fichier.desktop}}` + +- Crée une DesktopEntry pour un programme dans le dossier courant : + +`dex --create {{chemin/vers/fichier.destkop}}` + +- Exécute un programme (avec `Terminal=true` dans le fichier Desktop) dans le terminal donné : + +`dex --term {{terminal}} {{chemin/vers/fichier.desktop}}` diff --git a/pages.fr/linux/edit.md b/pages.fr/linux/edit.md new file mode 100644 index 00000000000000..3eedefc17aff80 --- /dev/null +++ b/pages.fr/linux/edit.md @@ -0,0 +1,13 @@ +# edit + +> Un alias à l'action de modification de `run-mailcap`. +> Originellement, `run-mailcap` est utilisé afin de modifier des fichiers mime-type. +> Plus d'informations : . + +- L'action de modification peut être utilisée pour voir n'importe quel fichier dans l'explorateur mailcap par défaut : + +`edit {{fichier}}` + +- Avec `run-mailcap` : + +`run-mailcap --action=edit {{fichier}}` diff --git a/pages.fr/linux/eject.md b/pages.fr/linux/eject.md new file mode 100644 index 00000000000000..82b0c16d5485b2 --- /dev/null +++ b/pages.fr/linux/eject.md @@ -0,0 +1,32 @@ +# eject + +> Éjecte les CD, disquettes et les bandes magnétiques. +> Plus d'informations : . + +- Affiche l'appareil par défaut : + +`eject -d` + +- Éjecte l'appareil par défaut : + +`eject` + +- Éjecte un appareil spécifique (l'ordre par défaut est CD-ROM, SCSI, Disquette puis bande magnétique) : + +`eject {{/dev/cdrom}}` + +- Bascule le support d'appareil en mode ouvert ou fermé : + +`eject -T {{/dev/cdrom}}` + +- Éjecte un CD : + +`eject -r {{/dev/cdrom}}` + +- Éjecte une disquette : + +`eject -f {{/mnt/disquette}}` + +- Éjecte une bande magnétique : + +`eject -q {{/mnt/bande}}` diff --git a/pages.fr/linux/flameshot.md b/pages.fr/linux/flameshot.md index c8a634248db315..b821d5fe7df222 100644 --- a/pages.fr/linux/flameshot.md +++ b/pages.fr/linux/flameshot.md @@ -2,24 +2,24 @@ > Outil de capture d'écran avec une interface graphique. > Ajoute du texte, des formes, des couleurs et envoie à imgur. -> Plus d'informations : . +> Plus d'informations : . -- Lancez Flameshot en mode graphique : +- Lancez Flameshot en mode graphique : `flameshot launcher` -- Prenez une capture d'écran en cliquant et en faisant glisser : +- Prenez une capture d'écran en cliquant et en faisant glisser : `flameshot gui` -- Prenez une capture d'écran en plein écran : +- Prenez une capture d'écran en plein écran : `flameshot full` -- Définissez le chemin de sauvegarde : +- Définissez le chemin de sauvegarde : `flameshot full --path {{path/to/directory}}` -- Retardez la capture d'écran de N millisecondes et la sortie dans le presse-papiers : +- Retardez la capture d'écran de N millisecondes et la sortie dans le presse-papiers : `flameshot full --delay {{2000}} --clipboard` diff --git a/pages.fr/linux/ifdown.md b/pages.fr/linux/ifdown.md index a5dfeb3ddbceca..3861aa633b579f 100644 --- a/pages.fr/linux/ifdown.md +++ b/pages.fr/linux/ifdown.md @@ -1,12 +1,12 @@ # ifdown > Désactive des interfaces réseau. -> Plus d'information : . +> Plus d'informations : . -- Désactive l'interface eth0 : +- Désactive l'interface eth0 : `ifdown {{eth0}}` -- Désactive toutes les interfaces déjà actives : +- Désactive toutes les interfaces déjà actives : `ifdown -a` diff --git a/pages.fr/linux/ifup.md b/pages.fr/linux/ifup.md index 20d8511a5a0169..84b8e47b8dc17c 100644 --- a/pages.fr/linux/ifup.md +++ b/pages.fr/linux/ifup.md @@ -1,12 +1,12 @@ # ifup > Outil utilisé pour activer des interfaces réseau. -> Plus d'information : . +> Plus d'informations : . -- Active l'interface eth0 : +- Active l'interface eth0 : `ifup {{eth0}}` -- Active l'ensemble des interfaces réseau définies dans le fichier `/etc/network/interfaces` : +- Active l'ensemble des interfaces réseau définies dans le fichier `/etc/network/interfaces` : `ifup -a` diff --git a/pages.fr/linux/ip-address.md b/pages.fr/linux/ip-address.md index 3947d49329693a..0b5fac6feb1795 100644 --- a/pages.fr/linux/ip-address.md +++ b/pages.fr/linux/ip-address.md @@ -1,28 +1,28 @@ # ip address -> Sous commande de gestion IP Address. -> Plus d'information : . +> Sous-commande de gestion des adresses IP. +> Plus d'informations : . -- Liste les interfaces réseau et leurs adresses IP associées : +- Liste les interfaces réseau et leurs adresses IP associées : `ip address` -- Filtre pour n'afficher que les interfaces réseau actives : +- Filtre pour n'afficher que les interfaces réseau actives : `ip address show up` -- Affiche les informations relatives à une interface réseau spécifique : +- Affiche les informations relatives à une interface réseau spécifique : `ip address show dev {{eth0}}` -- Ajoute une adresse IP à une interface réseau : +- Ajoute une adresse IP à une interface réseau : `ip address add {{ip_address}} dev {{eth0}}` -- Supprimer une adresse réseau d'une interface réseau : +- Supprimer une adresse réseau d'une interface réseau : `ip address delete {{ip_address}} dev {{eth0}}` -- Supprime l'ensemble des adresses IP sur une portée donnée (scope) depuis une interface réseau : +- Supprime l'ensemble des adresses IP sur une portée donnée (scope) depuis une interface réseau : `ip address flush dev {{eth0}} scope {{global|host|link}}` diff --git a/pages.fr/linux/ip-route-list.md b/pages.fr/linux/ip-route-list.md new file mode 100644 index 00000000000000..bfcf4eb9b2d9bc --- /dev/null +++ b/pages.fr/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip route list + +> Cette commande est un alias de `ip route show`. + +- Voir la documentation de la commande originale : + +`tldr ip-route-show` diff --git a/pages.fr/linux/ip-route-show.md b/pages.fr/linux/ip-route-show.md new file mode 100644 index 00000000000000..49d41d7cf10c06 --- /dev/null +++ b/pages.fr/linux/ip-route-show.md @@ -0,0 +1,36 @@ +# ip route show + +> Sous commande de gestion de l'affichage des tables de routage. +> Plus d'informations : . + +- Affiche la table de routage : + +`ip route show` + +- Affiche la table de routage principale (identique au premier exemple) : + +`ip route show {{main|254}}` + +- Affiche la table de routage locale : + +`ip route show table {{local|255}}` + +- Affiche l'ensemble des tables de routage : + +`ip route show table {{all|unspec|0}}` + +- Affiche les routes d'un périphérique donné : + +`ip route show dev {{eth0}}` + +- Affiche les routes d'une portée donnée : + +`ip route show scope link` + +- Affiche le cache de routage : + +`ip route show cache` + +- N'affiche que les routes IPv6 ou IPv4 : + +`ip {{-6|-4}} route show` diff --git a/pages.fr/linux/ip.md b/pages.fr/linux/ip.md index ce01ed5d1fe67c..f3cb83b25a3184 100644 --- a/pages.fr/linux/ip.md +++ b/pages.fr/linux/ip.md @@ -1,36 +1,37 @@ # ip > Affiche / manipule l'adressage, le routage, les interfaces et périphériques réseau, les règles de routage et les tunnels. -> Plus d'information : . +> Certaines commandes comme `ip address` ont leur propre documentation. +> Plus d'informations : . -- Liste les interfaces avec des infos détaillées : +- Liste les interfaces avec des infos détaillées : `ip address` -- Liste les interfaces sur la couche réseau de façon synthétique : +- Liste les interfaces sur la couche réseau de façon synthétique : `ip -brief address` -- Liste les interfaces sur la couche liaison de façon synthétique : +- Liste les interfaces sur la couche liaison de façon synthétique : `ip -brief link` -- Affiche la table de routage : +- Affiche la table de routage : `ip route` -- Affiche les voisins (table ARP) : +- Affiche les voisins (table ARP) : `ip neighbour` -- Active/Désactive une interface : +- Active/Désactive une interface : `ip link set {{interface}} up/down` -- Ajoute/Supprime une adresse ip à une interface : +- Ajoute/Supprime une adresse ip à une interface : `ip addr add/del {{ip}}/{{mask}} dev {{interface}}` -- Ajoute une route par défaut : +- Ajoute une route par défaut : `ip route add default via {{ip}} dev {{interface}}` diff --git a/pages.fr/linux/iwctl.md b/pages.fr/linux/iwctl.md index bfed05226f57db..256d38650b573d 100644 --- a/pages.fr/linux/iwctl.md +++ b/pages.fr/linux/iwctl.md @@ -1,28 +1,28 @@ # iwctl -> Un outil de ligne de commande pour gèrer iwd. -> Plus d'informations : . +> Un outil de ligne de commande pour gérer iwd. +> Plus d'informations : . -- Lancer le mode interactif, dans ce mode vous pouvez entrer les commandes directement, avec de l'autocompletion : +- Lancer le mode interactif, dans ce mode vous pouvez entrer les commandes directement, avec de l'auto-complétion : `iwctl` -- Avoir l'aide générale : +- Avoir l'aide générale : `iwctl --help` -- Afficher vos stations wifi : +- Afficher vos stations wifi : `iwctl station list` -- Lancer la recherche de réseaux avec une station : +- Lancer la recherche de réseaux avec une station : `iwctl station {{station}} scan` -- Afficher les réseaux trouvés par une station : +- Afficher les réseaux trouvés par une station : `iwctl station {{station}} get-networks` -- Se connecter à un réseau avec une station, si des informations de connexion sont nécessaires elles seront démandées : +- Se connecter à un réseau avec une station, si des informations de connexion sont nécessaires elles seront demandées : -`iwctl station {{station}} connect {{network_name}}` +`iwctl station {{station}} connect {{nom_du_réseau}}` diff --git a/pages.fr/linux/login.md b/pages.fr/linux/login.md new file mode 100644 index 00000000000000..e0ebb697b09cbd --- /dev/null +++ b/pages.fr/linux/login.md @@ -0,0 +1,20 @@ +# login + +> Démarre une session pour un utilisateur. +> Plus d'informations : . + +- Démarrer une session en tant qu'utilisateur : + +`login {{utilisateur}}` + +- Démarrer une session en tant qu'utilisateur sans authentification si jamais l'utilisateur est déjà pré-authentifié : + +`login -f {{utilisateur}}` + +- Démarrer une session en tant qu'utilisateur et en préservant l'environnement courant : + +`login -p {{utilisateur}}` + +- Démarrer une session en tant qu'utilisateur sur un hôte distant : + +`login -h {{hote}} {{utilisateur}}` diff --git a/pages.fr/linux/man.md b/pages.fr/linux/man.md new file mode 100644 index 00000000000000..cb2d996cfdcb5c --- /dev/null +++ b/pages.fr/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Interface de consultation des pages du manuel de référence. +> Plus d'informations : . + +- Affiche la page de manuel d'une commande : + +`man {{commande}}` + +- Affiche la page de manuel de la section 7 d'une commande : + +`man {{7}} {{commande}}` + +- Liste toutes les sections dans lesquelles se trouve une commande : + +`man --whatis {{commande}}` + +- Affiche tous les chemins où se trouvent les pages de manuel : + +`man --path` + +- Affiche l'emplacement d'une page de manuel plutôt que la page elle-même : + +`man --where {{commande}}` + +- Affiche la page de manuel dans une langue particulière : + +`man --locale={{fr_FR}} {{commande}}` + +- Cherche toutes les pages de manuel contenant la chaîne de caractères spécifée : + +`man --apropos "{{chaîne_de_caractères}}"` diff --git a/pages.fr/linux/megadl.md b/pages.fr/linux/megadl.md new file mode 100644 index 00000000000000..5190d0702587d2 --- /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/ncal.md b/pages.fr/linux/ncal.md new file mode 100644 index 00000000000000..abc6241e45c9ea --- /dev/null +++ b/pages.fr/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Cette commande est un alias de `cal`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr cal` diff --git a/pages.fr/linux/pacman-database.md b/pages.fr/linux/pacman-database.md new file mode 100644 index 00000000000000..6bc035c6bf9010 --- /dev/null +++ b/pages.fr/linux/pacman-database.md @@ -0,0 +1,29 @@ +# pacman --database + +> Interagis avec les bases de données des paquets Arch Linux. +> Modifie des attributs des paquets installés. +> Plus d'informations : . + +- Marque un paquet comme étant installé en tant que dépendance : + +`sudo pacman --database --asdeps {{paquet}}` + +- Marque un paquet comme étant explicitement installé : + +`sudo pacman --database --asexplicit {{paquet}}` + +- Vérifie les dépendances de tous les paquets installés : + +`pacman --database --check` + +- Vérifie que toutes les dépendances des paquets installés sont disponibles dans les dépôts : + +`pacman --database --check --check` + +- N'affiche que les messages d'erreur : + +`pacman --database --check --quiet` + +- Affiche l'aide : + +`pacman --database --help` diff --git a/pages.fr/linux/pacman-deptest.md b/pages.fr/linux/pacman-deptest.md new file mode 100644 index 00000000000000..917cb81283b4ea --- /dev/null +++ b/pages.fr/linux/pacman-deptest.md @@ -0,0 +1,20 @@ +# pacman --deptest + +> Vérifie la satisfaction des dépendances et renvoie celles qui ne le sont pas. +> Plus d'informations : . + +- Affiche les noms des paquets qui ne sont pas installés dans la liste : + +`pacman --deptest {{paquet1}} {{paquet2}}` + +- Vérifie que le paquet installé a une version supérieure ou égale : + +`pacman --deptest "{{bash>=5}}"` + +- Vérifie qu'une version ultérieure du paquet est installée : + +`pacman --deptest "{{bash>5}}"` + +- Affiche l'aide : + +`pacman --deptest --help` diff --git a/pages.fr/linux/pacman-files.md b/pages.fr/linux/pacman-files.md new file mode 100644 index 00000000000000..d0e7693849b83c --- /dev/null +++ b/pages.fr/linux/pacman-files.md @@ -0,0 +1,29 @@ +# pacman --files + +> Interagis avec les bases de données de fichiers. +> Voir aussi `pkgfile`. +> Plus d'informations : . + +- Mets à jour les bases de données des fichiers : + +`sudo pacman --files --refresh` + +- Trouve les paquets contenant un fichier spécifique : + +`pacman --files {{fichier}}` + +- Trouve les paquets contenant un fichier spécifique en utilisant une expression régulière : + +`pacman --files --regex '{{expression_reguliere}}'` + +- Liste uniquement les noms de paquets : + +`pacman --files --quiet {{fichier}}` + +- Liste les fichiers contenus dans un paquet : + +`pacman --files --list {{paquet}}` + +- Affiche l'aide : + +`pacman --files --help` diff --git a/pages.fr/linux/pacman-key.md b/pages.fr/linux/pacman-key.md new file mode 100644 index 00000000000000..04bc4c7d8abe48 --- /dev/null +++ b/pages.fr/linux/pacman-key.md @@ -0,0 +1,36 @@ +# pacman-key + +> Script enrobeur pour GnuPG utilisé pour gérer le trousseau de clés de pacman. +> Plus d'informations : . + +- Initialise le trousseau de clés de pacman : + +`sudo pacman-key --init` + +- Ajoute les clés par défaut pour Arch Linux : + +`sudo pacman-key --populate {{archlinux}}` + +- Liste les clés publiques du trousseau de clés : + +`pacman-key --list-keys` + +- Ajoute les clés contenues dans le fichier spécifié : + +`sudo pacman-key --add {{chemin/vers/fichier}}` + +- Reçois une clé depuis un serveur de clés : + +`sudo pacman-key --recv-keys "{{uid|nom|email}}"` + +- Affiche l'empreinte d'une clé du trousseau de clés : + +`pacman-key --finger "{{uid|nom|email}}"` + +- Signe, localement, une clé du trousseau de clés : + +`sudo pacman-key --lsign-key "{{uid|nom|email}}"` + +- Supprime une clé : + +`sudo pacman-key --delete "{{uid|nom|email}}"` diff --git a/pages.fr/linux/pacman-mirrors.md b/pages.fr/linux/pacman-mirrors.md new file mode 100644 index 00000000000000..4ba491e3fecc6c --- /dev/null +++ b/pages.fr/linux/pacman-mirrors.md @@ -0,0 +1,25 @@ +# pacman-mirrors + +> 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. +> Plus d'informations : . + +- Génère une liste de miroirs avec les réglages par défaut : + +`sudo pacman-mirrors --fasttrack` + +- Obtiens le statut des miroirs actuels : + +`pacman-mirrors --status` + +- Affiche la branche courante : + +`pacman-mirrors --get-branch` + +- Utilise une branche différente : + +`sudo pacman-mirrors --api --set-branch {{stable|unstable|testing}}` + +- Génère une liste de miroirs se trouvant dans le pays associé à l'adresse IP : + +`sudo pacman-mirrors --geoip` diff --git a/pages.fr/linux/pacman-query.md b/pages.fr/linux/pacman-query.md new file mode 100644 index 00000000000000..77f1a175c77f57 --- /dev/null +++ b/pages.fr/linux/pacman-query.md @@ -0,0 +1,36 @@ +# pacman --query + +> Fais des requêtes dans la base de données des paquets installés. +> Plus d'informations : . + +- Liste les paquets installés et leur version : + +`pacman --query` + +- Liste uniquement les paquets installés explicitement : + +`pacman --query --explicit` + +- Trouve le paquet propriétaire d'un fichier : + +`pacman --query --owns {{fichier}}` + +- Affiche des informations sur un paquet installé : + +`pacman --query --info {{paquet}}` + +- Liste les fichiers appartenant à un paquet : + +`pacman --query --list {{paquet}}` + +- Liste les paquets orphelins (installés en tant que dépendances mais requis par aucun paquet installé) : + +`pacman --query --unrequired --deps --quiet` + +- Liste les paquets installés ne se trouvant pas dans les dépôts : + +`pacman --query --foreign` + +- Liste les paquets périmés : + +`pacman --query --upgrades` diff --git a/pages.fr/linux/pacman-remove.md b/pages.fr/linux/pacman-remove.md new file mode 100644 index 00000000000000..34d5a5d5af8914 --- /dev/null +++ b/pages.fr/linux/pacman-remove.md @@ -0,0 +1,32 @@ +# pacman --remove + +> Supprimes des paquets. +> Plus d'informations : . + +- Supprime un paquet et ses dépendances : + +`sudo pacman --remove --recursive {{paquet}}` + +- Supprime un paquet, ses dépendances et ses fichiers de configuration : + +`sudo pacman --remove --recursive --nosave {{paquet}}` + +- Supprime un paquet silencieusement : + +`sudo pacman --remove --noconfirm {{paquet}}` + +- Supprime les paquets orphelins (installés en tant que dépendance mais requis par aucun paquet installé) : + +`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)` + +- Supprime un paquet et les paquets qui en dépendent : + +`sudo pacman --remove --cascade {{paquet}}` + +- Affiche les paquets qui seraient affectés par la commande sans agir : + +`pacman --remove --print {{paquet}}` + +- Affiche l'aide : + +`pacman --remove --help` diff --git a/pages.fr/linux/pacman-sync.md b/pages.fr/linux/pacman-sync.md new file mode 100644 index 00000000000000..f6897c25a1da66 --- /dev/null +++ b/pages.fr/linux/pacman-sync.md @@ -0,0 +1,36 @@ +# pacman --sync + +> Synchronise les paquets. +> Plus d'informations : . + +- Installe un nouveau paquet : + +`sudo pacman --sync {{paquet}}` + +- Synchronise et mettre à jour : + +`sudo pacman --sync --refresh --sysupgrade` + +- Synchronise, mets à jour et installe un paquet sans demander de confirmation : + +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{paquet}}` + +- Recherche un paquet en utilisant un nom ou une expression régulière : + +`pacman --sync --search "{{motif}}"` + +- Affiche des informations sur un paquet : + +`pacman --sync --info {{paquet}}` + +- Ecris par dessus des fichiers pendant une mise à jour : + +`sudo pacman --sync --refresh --sysupgrade --overwrite {{path/to/file}}` + +- Synchronise et mets à jour les paquets, en ignorant un paquet (peut être utilisé plusieurs fois) : + +`sudo pacman --sync --refresh --sysupgrade --ignore {{paquet}}` + +- Supprime les fichiers concernant des paquets non installés et les dépôts supprimés du cache de pacman : + +`sudo pacman --sync --clean` diff --git a/pages.fr/linux/pacman-upgrade.md b/pages.fr/linux/pacman-upgrade.md new file mode 100644 index 00000000000000..0ba0fb379a09d8 --- /dev/null +++ b/pages.fr/linux/pacman-upgrade.md @@ -0,0 +1,28 @@ +# pacman --upgrade + +> Mets à jour ou ajoute des paquets au système. +> Plus d'informations : . + +- Installe un ou des paquets depuis le système de fichiers : + +`sudo pacman --upgrade {{chemin/vers/paquet1.pkg.tar.zst}} {{chemin/vers/paquet2.pkg.tar.zst}}` + +- Installe un paquet silencieusement : + +`sudo pacman --upgrade --noconfirm {{chemin/vers/paquet.pkg.tar.zst}}` + +- Ecris par dessus les fichiers en conflit pendant l'installation du paquet : + +`sudo pacman --upgrade --overwrite {{chemin/vers/fichier}} {{chemin/vers/paquet.pkg.tar.zst}}` + +- Installe un paquet sans vérifier les dépendances : + +`sudo pacman --upgrade --nodeps {{chemin/vers/paquet.pkg.tar.zst}}` + +- Affiche ce qui se passerait si la commande était exécutée mais sans agir : + +`pacman --upgrade --print {{chemin/vers/paquet.pkg.tar.zst}}` + +- Affiche l'aide : + +`pacman --upgrade --help` diff --git a/pages.fr/linux/pacman.md b/pages.fr/linux/pacman.md index 36a8d829bbb9f3..c0660cad9519c0 100644 --- a/pages.fr/linux/pacman.md +++ b/pages.fr/linux/pacman.md @@ -1,36 +1,37 @@ # pacman > Outil de gestion de paquets sur Arch Linux. -> Plus d'informations : . +> Certaines commandes comme `pacman sync` ont leur propre documentation. +> Plus d'informations : . -- Synchronise et mets à jour tous les paquets : +- Synchronise et mets à jour tous les paquets : -`pacman -Syu` +`sudo pacman -Syu` -- Installe un nouveau paquet : +- Installe un nouveau paquet : -`pacman -S {{nom_paquet}}` +`sudo pacman -S {{nom_paquet}}` -- Efface un paquet et ses dépendances : +- Efface un paquet et ses dépendances : -`pacman -Rs {{nom_paquet}}` +`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 une expression régulière ou mot clé : `pacman -Ss "{{terme_recherche}}"` -- Liste les paquets installés et leurs versions : +- Liste les paquets installés et leurs versions : `pacman -Q` -- Liste seulement les paquets installés explicitement et leurs versions : +- Liste seulement les paquets installés explicitement et leurs versions : `pacman -Qe` -- Trouve à quel paquet un certain fichier appartient : +- Trouve à quel paquet un certain fichier appartient : `pacman -Qo {{fichier}}` -- Vide le cache des paquets pour libérer de l'espace : +- Vide le cache des paquets pour libérer de l'espace : -`pacman -Scc` +`sudo pacman -Scc` diff --git a/pages.fr/linux/reboot.md b/pages.fr/linux/reboot.md new file mode 100644 index 00000000000000..8b7f4e919c41c0 --- /dev/null +++ b/pages.fr/linux/reboot.md @@ -0,0 +1,20 @@ +# reboot + +> Réinitialisez le système. +> Plus d'informations : . + +- Réinitialisez le système normalement : + +`reboot` + +- Mettrez le système hors tension : + +`reboot --poweroff` + +- Arrêtez toutes les fonctions du CPU : + +`reboot --halt` + +- Réinitialisez le système maintenant mais propre : + +`reboot --force` diff --git a/pages.fr/linux/shutdown.md b/pages.fr/linux/shutdown.md new file mode 100644 index 00000000000000..ddebc315f04f54 --- /dev/null +++ b/pages.fr/linux/shutdown.md @@ -0,0 +1,24 @@ +# shutdown + +> Éteint et redémarre le système. +> Plus d'informations : . + +- Éteint (arrête) immédiatement : + +`shutdown -h now` + +- Redémarre immédiatement : + +`shutdown -r now` + +- Redémarre dans 5 minutes : + +`shutdown -r +{{5}} &` + +- Éteint à 1:00 pm (Utilise un format 24h) : + +`shutdown -h 13:00` + +- Annule une opération d'arrêt ou de redémarrage du système en attente : + +`shutdown -c` diff --git a/pages.fr/linux/sysctl.md b/pages.fr/linux/sysctl.md new file mode 100644 index 00000000000000..7cd3d5c13fefc8 --- /dev/null +++ b/pages.fr/linux/sysctl.md @@ -0,0 +1,24 @@ +# sysctl + +> Liste et modifie les variables d'exécution du noyau. +> Plus d'informations : . + +- Affiche toutes les variables disponibles et leurs valeurs : + +`sysctl -a` + +- Définis une variable d'état modifiable du noyau : + +`sysctl -w {{section.modifiable}}={{valeur}}` + +- Obtiens les gestionnaires de fichiers (handlers) actuellement ouverts : + +`sysctl fs.file-nr` + +- Obtiens la limite de nombre de fichiers ouverts simultanément : + +`sysctl fs.file-max` + +- Applique les changements de `/etc/sysctl.conf` : + +`sysctl -p` diff --git a/pages.fr/linux/systemctl.md b/pages.fr/linux/systemctl.md new file mode 100644 index 00000000000000..5a1ecaedb88311 --- /dev/null +++ b/pages.fr/linux/systemctl.md @@ -0,0 +1,36 @@ +# systemctl + +> Contrôle le système systemd et le gestionnaire de services. +> Plus d'informations : . + +- Liste des unités en échec : + +`systemctl --failed` + +- Démarre/arrête/redémarre/recharge un service : + +`systemctl {{start|stop|restart|reload}} {{unité}}` + +- Affiche le statut d'une unité : + +`systemctl status {{unité}}` + +- Active/désactive une unité à démarrer au démarrage : + +`systemctl {{enable|disable}} {{unité}}` + +- Masque/démasque une unité pour empêcher l'activation et l'activation manuelle : + +`systemctl {{mask|unmask}} {{unité}}` + +- Rechargement de systemd, recherche d'unités nouvelles ou modifiées : + +`systemctl daemon-reload` + +- Vérifie si une unité est en cours de fonctionnement : + +`systemctl is-active {{unité}}` + +- Vérifie si une unité est activée : + +`systemctl is-enabled {{unité}}` diff --git a/pages.fr/linux/ubuntu-bug.md b/pages.fr/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..ea41c4be19f56c --- /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 3654fec1f28a35..14be405b4e21fc 100644 --- a/pages.fr/linux/useradd.md +++ b/pages.fr/linux/useradd.md @@ -1,24 +1,33 @@ # useradd > Crée un nouvel utilisateur. -> Plus d'informations : . +> Voir aussi `users`, `userdel`, `usermod`. +> Plus d'informations : . -- Crée un nouvel utilisateur : +- 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é : +- 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) : +- 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 6194459d1eed0e..129302c941e199 100644 --- a/pages.fr/linux/userdel.md +++ b/pages.fr/linux/userdel.md @@ -1,8 +1,17 @@ # userdel -> Efface un utilisateur. -> Plus d'informations : . +> 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 6c1c1f2e402144..ee26e22ab9c2df 100644 --- a/pages.fr/linux/usermod.md +++ b/pages.fr/linux/usermod.md @@ -1,16 +1,25 @@ # usermod -> Modifie un compte utilisateur. -> Plus d'informations : . +> Modifie le compte d'un utilisateur. +> Voir aussi `users`, `useradd`, `userdel`. +> Plus d'informations : . -- Change le nom d'un utilisateur : +- Change le nom d'un utilisateur : -`usermod -l {{nouveau_nom}} {{utilisateur}}` +`sudo usermod --login {{nouveau_nom}} {{nom_utilisateur}}` -- Ajoute l'utilisateur à des groupes supplementaires (attention à l'omission d'espaces) : +- Modifie l'identifiant numérique d'un utilisateur : -`usermod -a -G {{groupe1,groupe2}} {{utilisateur}}` +`sudo usermod --uid {{identifiant}} {{nom_utilisateur}}` -- Crée un nouveau dossier home pour un utilisateur et déplace ses fichiers vers celui-ci : +- Change le shell d'un utilisateur : -`usermod -m -d {{/chemin/vers/home}} {{utilisateur}}` +`sudo usermod --shell {{chemin/vers/shell}} {{nom_utilisateur}}` + +- Ajoute l'utilisateur à des groupes supplémentaires (attention à l'omission d'espaces) : + +`sudo usermod --append --groups {{groupe1,groupe2,...}} {{nom_utilisateur}}` + +- Change le répertoire personnel d'un utilisateur et déplace ses fichiers vers celui-ci : + +`sudo usermod --move-home --home {{chemin/vers/nouveau_répertoire}} {{nom_utilisateur}}` diff --git a/pages.fr/linux/wg.md b/pages.fr/linux/wg.md new file mode 100644 index 00000000000000..bfd7b054cd7fae --- /dev/null +++ b/pages.fr/linux/wg.md @@ -0,0 +1,24 @@ +# wg + +> Gestion de la configuration des interfaces WireGuard. +> Plus d'informations : . + +- Vérifier l'état des interfaces actuellement actives : + +`wg` + +- Générer une clé privée : + +`wg genkey` + +- Générer une clé publique à partir d'une clé privée : + +`wg pubkey < {{chemin/vers/clé_privée}} > {{chemin/vers/clé_publique}}` + +- Générer une clé publique et privée : + +`wg genkey | tee {{chemin/vers/clé_privée}} | wg pubkey > {{chemin/vers/clé_publique}}` + +- Afficher la configuration actuelle d'une interface wireguard : + +`wg showconf {{wg0}}` diff --git a/pages.fr/linux/xbacklight.md b/pages.fr/linux/xbacklight.md index d947aaf296d190..3262bfe2219801 100644 --- a/pages.fr/linux/xbacklight.md +++ b/pages.fr/linux/xbacklight.md @@ -1,24 +1,24 @@ # xbacklight > Outil pour ajuster la luminosité du rétroéclairage en utilisant l'extension RandR. -> Plus d'informations : . +> Plus d'informations : . -- Obtient le niveau de luminosité de l'écran actuel comme un pourcentage : +- Obtient le niveau de luminosité de l'écran actuel comme un pourcentage : `xbacklight` -- Régle la luminosité de l'écran à 40% : +- Régle la luminosité de l'écran à 40% : `xbacklight -set {{40}}` -- Augmente la luminosité de l'écran actuel de 25% : +- Augmente la luminosité de l'écran actuel de 25% : `xbacklight -inc {{25}}` -- Diminue la luminosité de l'écran actuel de 75% : +- Diminue la luminosité de l'écran actuel de 75% : `xbacklight -dec {{75}}` -- Augment la luminosité de l'écran à 100%, étendu sur 60 secondes (valeur donnée en ms), en 60 pas : +- Augment la luminosité de l'écran à 100%, étendu sur 60 secondes (valeur donnée en ms), en 60 pas : `xbacklight -set {{100}} -time {{60000}} -steps {{60}}` diff --git a/pages.fr/linux/xclip.md b/pages.fr/linux/xclip.md index c2d40494d595c5..d7b259fb1f150e 100644 --- a/pages.fr/linux/xclip.md +++ b/pages.fr/linux/xclip.md @@ -1,36 +1,37 @@ # xclip > Outil de manipulation de presse-papiers X11, semblable à `xsel`. -> Gère les selections primaires et secondaires de X, en plus du presse-papier système (`Ctrl + C`/`Ctrl + V`). +> Gère les sélections primaires et secondaires de X, en plus du presse-papier système (`Ctrl + C`/`Ctrl + V`). +> Plus d'informations : . -- Copie la sortie d'une commande vers la zone de sélection primaire de X11 (presse-papiers) : +- Copie la sortie d'une commande vers la zone de sélection primaire de X11 (presse-papiers) : `echo 123 | xclip` -- Copie la sortie d'une commande vers une zone de sélection de X11 donnée : +- Copie la sortie d'une commande vers une zone de sélection de X11 donnée : `echo 123 | xclip -selection {{primary|secondary|clipboard}}` -- Copie le contenu d'un fichier vers le presse-papiers système, avec la notation courte : +- Copie le contenu d'un fichier vers le presse-papiers système, avec la notation courte : `echo 123 | xclip -sel clip` -- Copie le contenu d'un fichier vers le presse-papiers système : +- Copie le contenu d'un fichier vers le presse-papiers système : `xclip -sel clip {{fichier_entrée.txt}}` -- Copie le contenu d'une image PNG vers le presse-papiers système (peut être collé dans d'autres programmes correctement) : +- Copie le contenu d'une image PNG vers le presse-papiers système (peut être collé dans d'autres programmes correctement) : `xclip -sel clip -t image/png {{fichier_entrée.png}}` -- Colle le contenu de la zone de selection de X11 à la console : +- Colle le contenu de la zone de sélection de X11 à la console : `xclip -o` -- Colle le contenu du presse-papier système à la console : +- Colle le contenu du presse-papier système à la console : `xclip -o -sel clip` -- Colle le contenu du presse-papier système à un fichier : +- Colle le contenu du presse-papier système à un fichier : `xclip -o -sel clip > {{fichier_sortie.txt}}` diff --git a/pages.fr/linux/xsel.md b/pages.fr/linux/xsel.md new file mode 100644 index 00000000000000..213dabc1245db4 --- /dev/null +++ b/pages.fr/linux/xsel.md @@ -0,0 +1,28 @@ +# xsel + +> Outil de sélection et de manipulation du presse-papiers X11. +> Plus d'informations : . + +- Utilise la sortie d'une commande comme entrée du presse-papiers (équivalent de `Ctrl + C`) : + +`echo {{123}} | xsel -ib` + +- Utilise le contenu d'un fichier comme entrée du presse-papiers : + +`cat {{fichier}} | xsel -ib` + +- Affiche le contenu du presse-papiers dans le terminal (équivalent à `Ctrl + V`) : + +`xsel -ob` + +- Sortie du contenu du presse-papiers dans un fichier : + +`xsel -ob > {{fichier}}` + +- Efface le presse-papiers : + +`xsel -cb` + +- Affiche le contenu de la sélection primaire X11 dans le terminal (équivalent à un clic du milieu de la souris) : + +`xsel -op` diff --git a/pages.fr/linux/yay.md b/pages.fr/linux/yay.md index 055fe7197dbf78..89d5283a2876b1 100644 --- a/pages.fr/linux/yay.md +++ b/pages.fr/linux/yay.md @@ -1,29 +1,29 @@ # yay -> Yet Another Yogurt : Un outil pour Arch Linux pour construire et installer des paquets depuis le Arch User Repository. -> À regarder : `pacman`. -> Plus d'informations : . +> Yet Another Yogurt : Un outil pour Arch Linux pour construire et installer des paquets depuis le Arch User Repository. +> À regarder : `pacman`. +> Plus d'informations : . -- Recherche interactivement et installe des paquets depuis les dépôts et l'AUR : +- Recherche interactivement et installe des paquets depuis les dépôts et l'AUR : `yay {{nom_paquet|terme_recherche}}` -- Synchronise et mets à jour tous les paquets depuis les dépôts et l'AUR : +- Synchronise et met à jour tous les paquets depuis les dépôts et l'AUR : `yay` -- Synchronise et mets à jour seulement les paquets de l'AUR : +- Synchronise et met à jour seulement les paquets de l'AUR : `yay -Sua` -- Installe un nouveu paquet depuis les dépôts et l'AUR : +- Installe un nouveau paquet depuis les dépôts et l'AUR : `yay -S {{nom_paquet}}` -- Recherche dans la base de données de paquets un mot clé depuis les dépôts et l'AUR : +- Recherche dans la base de données de paquets un mot clé depuis les dépôts et l'AUR : `yay -Ss {{mot_clé}}` -- Montre des statistiques sur les paquets installés et la santé du système : +- Montre des statistiques sur les paquets installés et la santé du système : `yay -Ps` diff --git a/pages.fr/linux/zypper.md b/pages.fr/linux/zypper.md new file mode 100644 index 00000000000000..70afa7c9516c4a --- /dev/null +++ b/pages.fr/linux/zypper.md @@ -0,0 +1,28 @@ +# zypper + +> SUSE & openSUSE utilitaire de gestion de paquets. +> Plus d'informations : . + +- Synchroniser la liste des paquets et versions disponibles : + +`zypper refresh` + +- Installer un nouveau paquet : + +`zypper install {{paquet}}` + +- Supprimer un paquet : + +`zypper remove {{paquet}}` + +- Mettre à jour un paquet installé vers la version la plus récente disponible : + +`zypper update` + +- Chercher un paquet par mot clef : + +`zypper search {{mot_clef}}` + +- Afficher les informations concernant les dépôts de paquets configurés : + +`zypper repos --sort-by-priority` diff --git a/pages.fr/osx/aa.md b/pages.fr/osx/aa.md new file mode 100644 index 00000000000000..453074d3e432f8 --- /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 00000000000000..393873e94a918f --- /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 00000000000000..eec53fa3af0163 --- /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 00000000000000..43e3983b5991f5 --- /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 00000000000000..7cc04bbd9b31c2 --- /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 00000000000000..1daba3853e0c55 --- /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 00000000000000..d4f763df03765b --- /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 00000000000000..fded8af07fb8da --- /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 00000000000000..eba397c4bdbb74 --- /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 00000000000000..b58eabfbf034f6 --- /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 00000000000000..20f45400e43155 --- /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 00000000000000..86f3cd352e729b --- /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 00000000000000..2b2d8961d26a75 --- /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 00000000000000..187861bf074797 --- /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 00000000000000..ab287b64a1d8da --- /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 00000000000000..346797d1d6b3cf --- /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 00000000000000..bf56e45c2980cb --- /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 00000000000000..b11499ca048e55 --- /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 00000000000000..85e6b33ee44b66 --- /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 00000000000000..faef1bd2d4da51 --- /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 00000000000000..bb2132f115d2da --- /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 00000000000000..e5b62e63b132d9 --- /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 00000000000000..c1a50d3fd27e41 --- /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 00000000000000..a0fa56eaf8712b --- /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 00000000000000..630514eee2041f --- /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 00000000000000..874291bb94129c --- /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 00000000000000..faf83c0960d29a --- /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 00000000000000..4da7c7a719cf4c --- /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 00000000000000..761ff39a6864c3 --- /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 00000000000000..c5db241affc6d7 --- /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 00000000000000..a40591da40cd81 --- /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 00000000000000..b021c0ef21be2b --- /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 00000000000000..caf8257590a9af --- /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 00000000000000..6036dfe8a38e0a --- /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 00000000000000..4ced4aa03205d0 --- /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 00000000000000..beeb93b59e7a93 --- /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 00000000000000..f1ad3ed033f888 --- /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 00000000000000..34760868186f51 --- /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 00000000000000..0ece0687866644 --- /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 00000000000000..ad65a7a3d7169f --- /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 00000000000000..bd79e5ab19baa3 --- /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 00000000000000..6229f6243e9676 --- /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 00000000000000..95245503dc36f2 --- /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 00000000000000..bbfc6b8afcb54b --- /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 00000000000000..99afcce4a3ead6 --- /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 00000000000000..0d72b6805b91b0 --- /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 00000000000000..8358e81b4b0724 --- /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 00000000000000..909faa0796c01e --- /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 00000000000000..db0ec4264995a6 --- /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 00000000000000..63a4a29e066b78 --- /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 00000000000000..dc57fde0458f6f --- /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 00000000000000..714961f6029421 --- /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 00000000000000..f3866c3ea2a856 --- /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 00000000000000..0ea9f11879bab4 --- /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 00000000000000..fc9ef9fe64e379 --- /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 00000000000000..1ac433fb647220 --- /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 00000000000000..960a22f93b8a8d --- /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 00000000000000..535c5dbaa5424d --- /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 00000000000000..2610f04982ec0e --- /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 00000000000000..4654b480b1495b --- /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 00000000000000..1eb939a941ccc4 --- /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 00000000000000..12824a61239f0f --- /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 00000000000000..f2b25ef8d2e0ca --- /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 00000000000000..838cabb0f3866e --- /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 00000000000000..319e7d4327ae82 --- /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 00000000000000..1261873920fc47 --- /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 00000000000000..9183d82514d401 --- /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 00000000000000..4c01fd478ecbeb --- /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 00000000000000..57c9f4b44b1e9c --- /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 00000000000000..ef02b8a7e8950d --- /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 00000000000000..45b0dfea40d375 --- /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 00000000000000..3bca403900f089 --- /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 00000000000000..974b7a3d932787 --- /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 00000000000000..d3d955bd224af0 --- /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 00000000000000..17a95acd179c80 --- /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 00000000000000..d3931b6ff38632 --- /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 00000000000000..f189a2c38fb4eb --- /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 00000000000000..3ddf9957dc79ae --- /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 00000000000000..e2f78360f43cbb --- /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 00000000000000..67084035868666 --- /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 00000000000000..0ee92cdd500673 --- /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 00000000000000..d85e6ce7f32c22 --- /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 00000000000000..f4d29e1b2f6d93 --- /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 00000000000000..f379d446310f2b --- /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 00000000000000..df9cbc22c2f850 --- /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 00000000000000..30830f9421aa79 --- /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 00000000000000..7c7fa24de56a35 --- /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 00000000000000..1abe33a87d2569 --- /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 00000000000000..c4984b2fdb3739 --- /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 00000000000000..92268c3e408d3d --- /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 00000000000000..6d7b9ee1e70f4a --- /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 00000000000000..d49d8f8f637860 --- /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 00000000000000..1861378c24160c --- /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 00000000000000..aaf78cfa508abe --- /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 00000000000000..a43b68941e1f2b --- /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 00000000000000..45b0474ced8ff3 --- /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 00000000000000..f9997f1504cd05 --- /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 00000000000000..94d71b9cde4698 --- /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 00000000000000..dadf30c06f8e6d --- /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 00000000000000..cc9fec9d6913d6 --- /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 00000000000000..8d7dc59bff51d6 --- /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 00000000000000..039f60eefc89ed --- /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 00000000000000..09a8987bc112a3 --- /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 00000000000000..5a172f0a31db15 --- /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 00000000000000..15f7fa27c9b213 --- /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 00000000000000..a57a80b23c6f13 --- /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 00000000000000..2890a1f2ae6895 --- /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 00000000000000..56e0f268ad6c3b --- /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 00000000000000..f69b78b0d25f06 --- /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 00000000000000..0b8eed3af26153 --- /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 00000000000000..733e9254bfe75f --- /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 00000000000000..2c03b2a54bf88f --- /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 00000000000000..f23bc675bcf3b5 --- /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 00000000000000..6170f1278f769e --- /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 00000000000000..e8e6e90d8b1323 --- /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 00000000000000..cd8faee1b19b88 --- /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 00000000000000..5620337ee072ff --- /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 00000000000000..9d54b626e766b0 --- /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 00000000000000..dfa73921044f83 --- /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 00000000000000..7f356a0350d9cf --- /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 00000000000000..847d6b650e4c03 --- /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 00000000000000..ab3f309797e140 --- /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 00000000000000..8fbac8c788deb2 --- /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 00000000000000..b25c9fe1962816 --- /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 00000000000000..8b7f936f9ba74e --- /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 00000000000000..7675fe83d248e7 --- /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 00000000000000..c54011f94c1181 --- /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 00000000000000..6595f8306db385 --- /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 00000000000000..6288559a722c27 --- /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 00000000000000..14edb655d1d40c --- /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 00000000000000..fca9745497282e --- /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 00000000000000..341bf68b9886ac --- /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 00000000000000..582644d5da36d8 --- /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 00000000000000..3dec87a3e0109e --- /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 00000000000000..7b68ee833c4605 --- /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 00000000000000..cf80ffef2b70c3 --- /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 00000000000000..c113f2d8d106ee --- /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 00000000000000..4c04bd3f47b6ab --- /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 00000000000000..79ed41b54fb826 --- /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 00000000000000..7c03cc1aa7c495 --- /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 00000000000000..3f47d9fc2155e0 --- /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 new file mode 100644 index 00000000000000..9b36a481573679 --- /dev/null +++ b/pages.fr/sunos/devfsadm.md @@ -0,0 +1,16 @@ +# devfsadm + +> Commande d'administration pour `/dev`. Maintient le `/dev` espace de noms. +> Plus d'informations : . + +- Rechercher de nouveaux disques : + +`devfsadm -c disk` + +- Nettoyez tout pendaison `/dev` liens et rechercher un nouvel appareil : + +`devfsadm -C -v` + +- Marche à sec - sortir ce qui serait changé mais ne faire aucune modification : + +`devfsadm -C -v -n` diff --git a/pages.fr/sunos/dmesg.md b/pages.fr/sunos/dmesg.md new file mode 100644 index 00000000000000..63ae23ffb8095c --- /dev/null +++ b/pages.fr/sunos/dmesg.md @@ -0,0 +1,16 @@ +# dmesg + +> Écrire les messages du noyau sur la sortie standard. +> Plus d'informations : . + +- Afficher les messages du noyau : + +`dmesg` + +- Afficher la quantité de mémoire physique disponible sur ce système : + +`dmesg | grep -i memory` + +- Afficher les messages du noyau une page à la fois : + +`dmesg | less` diff --git a/pages.fr/sunos/prctl.md b/pages.fr/sunos/prctl.md new file mode 100644 index 00000000000000..0e90eb1c2c6c3c --- /dev/null +++ b/pages.fr/sunos/prctl.md @@ -0,0 +1,16 @@ +# prctl + +> Obtenir ou définir les contrôles de ressources des processus, tâches et projets en cours d'exécution. +> Plus d'informations : . + +- Examiner les limites et les autorisations des processus : + +`prctl {{pid}}` + +- Examiner les limites et les autorisations de processus dans un format analysable par machine : + +`prctl -P {{pid}}` + +- Obtenir une limite spécifique pour un processus en cours d'exécution : + +`prctl -n process.max-file-descriptor {{pid}}` diff --git a/pages.fr/sunos/prstat.md b/pages.fr/sunos/prstat.md new file mode 100644 index 00000000000000..6a4937668fb15f --- /dev/null +++ b/pages.fr/sunos/prstat.md @@ -0,0 +1,24 @@ +# prstat + +> Signaler les statistiques de processus actifs. +> Plus d'informations : . + +- Examinez tous les processus et rapportez les statistiques triées par utilisation du processeur : + +`prstat` + +- Examinez tous les processus et rapportez les statistiques triées par utilisation de la mémoire : + +`prstat -s rss` + +- Rapporter le résumé de l'utilisation totale pour chaque utilisateur : + +`prstat -t` + +- Rapporter les informations comptables du processus de micro-état : + +`prstat -m` + +- Imprimez une liste des 5 meilleurs processeurs utilisant des processus chaque seconde : + +`prstat -c -n 5 -s cpu 1` diff --git a/pages.fr/sunos/snoop.md b/pages.fr/sunos/snoop.md new file mode 100644 index 00000000000000..b7d7065f438cbe --- /dev/null +++ b/pages.fr/sunos/snoop.md @@ -0,0 +1,25 @@ +# snoop + +> Renifleur de paquets réseau. +> Équivalent SunOS de tcpdump. +> Plus d'informations : . + +- Capturer des paquets sur une interface réseau spécifique : + +`snoop -d {{e1000g0}}` + +- Enregistrer les paquets capturés dans un fichier au lieu de les afficher : + +`snoop -o {{nom_de_fichier}}` + +- Afficher le résumé détaillé de la couche de protocole des paquets d'un fichier : + +`snoop -V -i {{nom_de_fichier}}` + +- Capturez les paquets réseau provenant d'un nom d'hôte et accédez à un port donné : + +`snoop to port {{port}} from host {{nom_d'hôte}}` + +- Capturez et affichez un vidage hexadécimal des paquets réseau échangés entre deux adresses IP : + +`snoop -x0 -p4 {{adresse_ip_1}} {{adresse_ip_2}}` diff --git a/pages.fr/sunos/svcadm.md b/pages.fr/sunos/svcadm.md new file mode 100644 index 00000000000000..4262734b716b2f --- /dev/null +++ b/pages.fr/sunos/svcadm.md @@ -0,0 +1,24 @@ +# svcadm + +> Manipuler les instances de service. +> Plus d'informations : . + +- Activer un service dans la base de données de service: + +`svcadm enable {{nom_du_service}}` + +- Désactiver le service: + +`svcadm disable {{nom_du_service}}` + +- Redémarrer un service en cours d'exécution: + +`svcadm restart {{nom_du_service}}` + +- Service de commande pour relire les fichiers de configuration: + +`svcadm refresh {{nom_du_service}}` + +- Effacer un service de l'état de maintenance et lui ordonner de démarrer: + +`svcadm clear {{nom_du_service}}` diff --git a/pages.fr/sunos/svcs.md b/pages.fr/sunos/svcs.md new file mode 100644 index 00000000000000..81992a1216e20b --- /dev/null +++ b/pages.fr/sunos/svcs.md @@ -0,0 +1,24 @@ +# svcs + +> Répertorier les informations sur les services en cours d'exécution. +> Plus d'informations : . + +- Lister tous les services en cours d'exécution : + +`svcs` + +- Lister les services qui ne fonctionnent pas : + +`svcs -vx` + +- Répertorier les informations sur un service : + +`svcs apache` + +- Afficher l'emplacement du fichier journal de service : + +`svcs -L apache` + +- Afficher la fin d'un fichier journal de service : + +`tail $(svcs -L apache)` diff --git a/pages.fr/sunos/truss.md b/pages.fr/sunos/truss.md new file mode 100644 index 00000000000000..f6500576460e98 --- /dev/null +++ b/pages.fr/sunos/truss.md @@ -0,0 +1,25 @@ +# truss + +> Outil de dépannage pour tracer les appels système. +> Équivalent SunOS de strace. +> Plus d'informations : . + +- Commencez à tracer un programme en l'exécutant, en suivant tous les processus enfants : + +`truss -f {{programme}}` + +- Commencez à tracer un processus spécifique par son PID : + +`truss -p {{pid}}` + +- Commencez à tracer un programme en l'exécutant, en affichant les arguments et les variables d'environnement : + +`truss -a -e {{programme}}` + +- Comptez le temps, les appels et les erreurs pour chaque appel système et rapportez un résumé à la sortie du programme : + +`truss -c -p {{pid}}` + +- Tracez une sortie de filtrage de processus par appel système : + +`truss -p {{pid}} -t {{nom_d'appel_système}}` diff --git a/pages.fr/windows/chrome.md b/pages.fr/windows/chrome.md new file mode 100644 index 00000000000000..326df979cb4e3c --- /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/cinst.md b/pages.fr/windows/cinst.md new file mode 100644 index 00000000000000..d5b7493dc55970 --- /dev/null +++ b/pages.fr/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Cette commande est un alias de `choco install`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr choco install` diff --git a/pages.fr/windows/clist.md b/pages.fr/windows/clist.md new file mode 100644 index 00000000000000..8012262e69f8fb --- /dev/null +++ b/pages.fr/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Cette commande est un alias de `choco list`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr choco list` diff --git a/pages.fr/windows/cpush.md b/pages.fr/windows/cpush.md new file mode 100644 index 00000000000000..cd2fd155bacc14 --- /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/cuninst.md b/pages.fr/windows/cuninst.md new file mode 100644 index 00000000000000..160e3b1f198d4f --- /dev/null +++ b/pages.fr/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Cette commande est un alias de `choco uninstall`. +> Plus d'informations : . + +- Voir la documentation de la commande originale : + +`tldr choco uninstall` diff --git a/pages.fr/windows/curl.md b/pages.fr/windows/curl.md new file mode 100644 index 00000000000000..0765821c9feb6f --- /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 00000000000000..95b23120d65292 --- /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/powershell.md b/pages.fr/windows/powershell.md new file mode 100644 index 00000000000000..a79743ca21f6db --- /dev/null +++ b/pages.fr/windows/powershell.md @@ -0,0 +1,32 @@ +# powershell + +> Interface en ligne de commande et langage de script spécialement conçu pour l'administration système. +> Plus d'informations : . + +- Démarre une session Windows PowerShell dans une fenêtre d'invite de commande : + +`powershell` + +- Charge un fichier de console PowerShell spécifique : + +`powershell -PSConsoleFile {{chemin/vers/fichier}}` + +- Démarre une session avec une version spécifiée de PowerShell : + +`powershell -Version {{version}}` + +- Empêche l’interface système de se fermer après avoir exécuté les commandes de démarrage : + +`powershell -NoExit` + +- Décrive le format des données envoyées à PowerShell : + +`powershell -InputFormat {{Texte|XML}}` + +- Détermine comment la sortie de PowerShell est formatée : + +`powershell -OutputFormat {{Texte|XML}}` + +- Affiche l'aide : + +`powershell -Help` diff --git a/pages.fr/windows/pwsh-where.md b/pages.fr/windows/pwsh-where.md new file mode 100644 index 00000000000000..ba7727eb772e60 --- /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 00000000000000..c30a6c5a772a33 --- /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 00000000000000..3ac625e9121e30 --- /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 00000000000000..bf0b6cf249e852 --- /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.fr/windows/whoami.md b/pages.fr/windows/whoami.md index 1162ec7162844e..aedcd6582bf0b9 100644 --- a/pages.fr/windows/whoami.md +++ b/pages.fr/windows/whoami.md @@ -1,24 +1,24 @@ # whoami > Affiche des détails sur l'utilisateur courant. -> Plus d'informations : . +> Plus d'informations : . -- Affiche le nom de l'utilisatuer courant : +- Affiche le nom de l'utilisateur courant : `whoami` -- Affiche les groupes pour lesquels l'utilisateur courant est un membre : +- Affiche les groupes pour lesquels l'utilisateur courant est un membre : `whoami /groups` -- Affiche les droits de l'utilisateur courant : +- Affiche les droits de l'utilisateur courant : `whoami /priv` -- Affiche le nom principal d'utilisateur (UPN) de l'utilisateur courant : +- Affiche le nom principal d'utilisateur (UPN) de l'utilisateur courant : `whoami /upn` -- Affiche l'identifiant de connexion de l'utilisateur courant : +- Affiche l'identifiant de connexion de l'utilisateur courant : `whoami /logonid` diff --git a/pages.hi/common/alias.md b/pages.hi/common/alias.md new file mode 100644 index 00000000000000..646000c53a9406 --- /dev/null +++ b/pages.hi/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> उपनाम बनाता है -- ऐसे शब्द जिन्हें कमांड स्ट्रिंग द्वारा प्रतिस्थापित किया जाता है। +> उपनाम वर्तमान शेल सत्र के साथ समाप्त हो जाता है जब तक कि शेल की कॉन्फ़िगरेशन फ़ाइल में परिभाषित नहीं किया जाता है, उदा। `~/.bashrc`। +> अधिक जानकारी: । + +- सभी उपनामों की सूची बनाएं: + +`alias` + +- एक सामान्य उपनाम बनाएं: + +`alias {{शब्द}}="{{आदेश}}"` + +- किसी दिए गए उपनाम से जुड़ी कमांड देखें: + +`alias {{शब्द}}` + +- एक अलियास कमांड निकालें: + +`unalias {{शब्द}}` + +- `rm` को एक इंटरैक्टिव कमांड में बदलें: + +`alias {{rm}}="{{rm -i}}"` + +- `ls -a` के शॉर्टकट के रूप में `la` बनाएं: + +`alias {{la}}="{{ls -a}}"` diff --git a/pages.hi/common/arch.md b/pages.hi/common/arch.md new file mode 100644 index 00000000000000..47cdd9262dce48 --- /dev/null +++ b/pages.hi/common/arch.md @@ -0,0 +1,9 @@ +# arch + +> सिस्टम आर्किटेक्चर का नाम प्रदर्शित करें। +> `uname` भी देखें। +> अधिक जानकारी: । + +- सिस्टम आर्किटेक्चर प्रदर्शित करें: + +`arch` diff --git a/pages.hi/common/banner.md b/pages.hi/common/banner.md new file mode 100644 index 00000000000000..1cc4df1d7ef466 --- /dev/null +++ b/pages.hi/common/banner.md @@ -0,0 +1,16 @@ +# banner + +> दिए गए तर्क को एक बड़ी ASCII कला के रूप में प्रिंट करें। +> अधिक जानकारी: । + +- टेक्स्ट संदेश को बड़े बैनर के रूप में प्रिंट करें (उल्लेख वैकल्पिक हैं): + +`banner "{{नमस्ते दुनिया}}"` + +- टेक्स्ट संदेश को 50 वर्णों की चौड़ाई वाले बैनर के रूप में प्रिंट करें: + +`banner -w {{50}} "{{नमस्ते दुनिया}}"` + +- स्टडिन से पाठ पढ़ें: + +`banner` diff --git a/pages.hi/common/bg.md b/pages.hi/common/bg.md new file mode 100644 index 00000000000000..00b3357b6e020f --- /dev/null +++ b/pages.hi/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> निलंबित किए गए कार्यों को फिर से शुरू करें (जैसे `Ctrl + Z` का उपयोग करके), और उन्हें पीछे चालू रखता है। +> अधिक जानकारी: । + +- हाल ही में निलंबित किए गए कार्य को फिर से शुरू करें और इसे पीछे चलाएं: + +`bg` + +- एक विशिष्ट कार्य को फिर से शुरू करें (इसकी आईडी प्राप्त करने के लिए `jobs -l` का उपयोग करें) और इसे पीछे चलाएं: + +`bg %{{कार्य_आईडी}}` diff --git a/pages.hi/common/bundler.md b/pages.hi/common/bundler.md new file mode 100644 index 00000000000000..56a0e774b0f1f5 --- /dev/null +++ b/pages.hi/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> यह आदेश `bundle` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bundle` diff --git a/pages.hi/common/cat.md b/pages.hi/common/cat.md index 25236e4430e81c..8c00af454e6d08 100644 --- a/pages.hi/common/cat.md +++ b/pages.hi/common/cat.md @@ -1,7 +1,7 @@ # cat > फ़ाइलों को प्रिंट और संक्षिप्त करें। -> अधिक जानकारी: . +> अधिक जानकारी: । - मानक आउटपुट में फ़ाइल की सामग्री प्रिंट करें: diff --git a/pages.hi/common/cd.md b/pages.hi/common/cd.md index 699c584986653e..f16d3403d6f652 100644 --- a/pages.hi/common/cd.md +++ b/pages.hi/common/cd.md @@ -1,7 +1,7 @@ # cd > वर्तमान कार्य निर्देशिका को बदलें। -> अधिक जानकारी: . +> अधिक जानकारी: । - दी गई निर्देशिका पर जाएं: diff --git a/pages.hi/common/chsh.md b/pages.hi/common/chsh.md index f16768192e0ff7..b752ab604052db 100644 --- a/pages.hi/common/chsh.md +++ b/pages.hi/common/chsh.md @@ -1,7 +1,7 @@ # chsh > उपयोगकर्ता का लॉगिन शेल बदलें। -> अधिक जानकारी: . +> अधिक जानकारी: । - शेल बदलें: diff --git a/pages.hi/common/clamav.md b/pages.hi/common/clamav.md new file mode 100644 index 00000000000000..def162f46e11f6 --- /dev/null +++ b/pages.hi/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> यह आदेश `clamdscan` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clamdscan` diff --git a/pages.hi/common/clang-cpp.md b/pages.hi/common/clang-cpp.md new file mode 100644 index 00000000000000..dfa35e60add10b --- /dev/null +++ b/pages.hi/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> यह आदेश `clang++` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clang++` diff --git a/pages.hi/common/clear.md b/pages.hi/common/clear.md new file mode 100644 index 00000000000000..7ecbd4a67bc634 --- /dev/null +++ b/pages.hi/common/clear.md @@ -0,0 +1,20 @@ +# clear + +> टर्मिनल की स्क्रीन साफ़ करें। +> अधिक जानकारी: । + +- स्क्रीन साफ़ करें (बैश शेल में Control-L दबाने के बराबर): + +`clear` + +- स्क्रीन साफ़ करें लेकिन टर्मिनल का स्क्रॉलबैक बफ़र रखें: + +`clear -x` + +- साफ करने के लिए टर्मिनल के प्रकार को इंगित करें (डिफॉल्ट रूप से एनवायरमेंट वेरिएबल `TERM` का मूल्य): + +`clear -T {{टर्मिनल_का_प्रकार}}` + +- `ncurses` का संस्करण दिखाएं जिसका उपयोग `clear` द्वारा किया गया है: + +`clear -V` diff --git a/pages.hi/common/clojure.md b/pages.hi/common/clojure.md new file mode 100644 index 00000000000000..44ab08f9e5ddb9 --- /dev/null +++ b/pages.hi/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> यह आदेश `clj` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clj` diff --git a/pages.hi/common/cola.md b/pages.hi/common/cola.md new file mode 100644 index 00000000000000..909bf0918d0e06 --- /dev/null +++ b/pages.hi/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> यह आदेश `git-cola` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr git-cola` diff --git a/pages.hi/common/compare.md b/pages.hi/common/compare.md new file mode 100644 index 00000000000000..157da4b7896b8d --- /dev/null +++ b/pages.hi/common/compare.md @@ -0,0 +1,12 @@ +# compare + +> 2 छवियों के बीच अंतर देखें। +> अधिक जानकारी: । + +- 2 छवियों की तुलना करें: + +`compare {{छवि1.png}} {{छवि2.png}} {{अंतर.png}}` + +- कस्टम मीट्रिक का उपयोग करके 2 छवियों की तुलना करें: + +`compare -verbose -metric {{PSNR}} {{छवि1.png}} {{छवि2.png}} {{अंतर.png}}` diff --git a/pages.hi/common/cp.md b/pages.hi/common/cp.md new file mode 100644 index 00000000000000..0b46c1a6df9ea2 --- /dev/null +++ b/pages.hi/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> फाइलों और निर्देशिकाओं की प्रतिलिपि बनाएँ। +> अधिक जानकारी: । + +- किसी फ़ाइल को दूसरे स्थान पर कॉपी करें: + +`cp {{स्रोत_फ़ाइल/का/पथ}} {{लक्ष्य_फ़ाइल/का/पथ}}` + +- फ़ाइल नाम रखते हुए किसी फ़ाइल को दूसरी निर्देशिका में कॉपी करें: + +`cp {{स्रोत_फ़ाइल/का/पथ}} {{लक्ष्य_निर्देशिका/का/पथ}}` + +- किसी निर्देशिका की सामग्री को किसी अन्य स्थान पर दोबारा कॉपी करें (यदि गंतव्य मौजूद है, तो निर्देशिका इसके अंदर कॉपी की गई है): + +`cp -R {{स्रोत_निर्देशिका/का/पथ}} {{लक्ष्य_निर्देशिका/का/पथ}}` + +- एक निर्देशिका को पुनरावर्ती रूप से कॉपी करें, वर्बोज़ मोड में (फ़ाइलों को कॉपी किए जाने के रूप में दिखाता है): + +`cp -vR {{स्रोत_निर्देशिका/का/पथ}} {{लक्ष्य_निर्देशिका/का/पथ}}` + +- टेक्स्ट फ़ाइलों को किसी अन्य स्थान पर इंटरेक्टिव मोड में कॉपी करें (ओवरराइटिंग से पहले उपयोगकर्ता को संकेत देता है): + +`cp -i {{*.txt}} {{लक्ष्य_निर्देशिका/का/पथ}}` + +- कॉपी करने से पहले प्रतीकात्मक लिंक का पालन करें: + +`cp -L {{लिंक}} {{लक्ष्य_निर्देशिका/का/पथ}}` diff --git a/pages.hi/common/cron.md b/pages.hi/common/cron.md new file mode 100644 index 00000000000000..69ae98f6eb15a0 --- /dev/null +++ b/pages.hi/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> यह आदेश `crontab` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr crontab` diff --git a/pages.hi/common/exit.md b/pages.hi/common/exit.md new file mode 100644 index 00000000000000..3f3c3f981cd287 --- /dev/null +++ b/pages.hi/common/exit.md @@ -0,0 +1,12 @@ +# exit + +> शेल से बाहर निकलें। +> अधिक जानकारी: । + +- निष्पादित अंतिम कमांड के निकास कोड के साथ शेल से बाहर निकलें: + +`exit` + +- निर्दिष्ट निकास कोड के साथ शेल से बाहर निकलें: + +`exit {{निकास_कोड}}` diff --git a/pages.hi/common/false.md b/pages.hi/common/false.md index 9725864327a2d8..f278704a19b109 100644 --- a/pages.hi/common/false.md +++ b/pages.hi/common/false.md @@ -1,7 +1,7 @@ # false > 1 का एग्जिट कोड लौटाता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - 1 का निकास कोड लौटाएँ: diff --git a/pages.hi/common/fg.md b/pages.hi/common/fg.md new file mode 100644 index 00000000000000..549f152ac7d7fc --- /dev/null +++ b/pages.hi/common/fg.md @@ -0,0 +1,12 @@ +# fg + +> कार्य सामने चलाएँ। +> अधिक जानकारी: । + +- हाल ही में निलंबित किए गए पीछे के कार्य को सामने लाएं: + +`fg` + +- एक विशिष्ट कार्य को सामने लाएं: + +`fg %{{कार्य_आईडी}}` diff --git a/pages.hi/common/fossil-ci.md b/pages.hi/common/fossil-ci.md new file mode 100644 index 00000000000000..9e001fcbdcbdd0 --- /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 00000000000000..1e5a66af8d8592 --- /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 00000000000000..0bd17315c52123 --- /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 00000000000000..4c67b0d05dbaa3 --- /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/fuck.md b/pages.hi/common/fuck.md new file mode 100644 index 00000000000000..6903fd9c5cf717 --- /dev/null +++ b/pages.hi/common/fuck.md @@ -0,0 +1,16 @@ +# fuck + +> आपके पिछले कंसोल कमांड को ठीक करता है। +> अधिक जानकारी: । + +- `fuck` उपनाम को `thefuck` टूल पर सेट करें: + +`eval "$(thefuck --alias)"` + +- पिछले आदेश के लिए एक नियम से मिलान करने का प्रयास करें: + +`fuck` + +- पहली पसंद की तुरंत पुष्टि करें (सही तर्क झुंझलाहट के स्तर पर निर्भर करता है): + +`fuck --{{yes|yeah|hard}}` diff --git a/pages.hi/common/gh-cs.md b/pages.hi/common/gh-cs.md new file mode 100644 index 00000000000000..042953bad1416e --- /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/git-init.md b/pages.hi/common/git-init.md index cd97dd25c54e82..eb77a1d735754c 100644 --- a/pages.hi/common/git-init.md +++ b/pages.hi/common/git-init.md @@ -7,6 +7,14 @@ `git init` -- एक नंगे हड्डी के भंडार को शुरू करें, जो ssh के रिमोट के रूप में उपयोग के लिए उपयुक्त है: +- प्रारंभिक शाखा के लिए निर्दिष्ट नाम के साथ एक भंडार शुरू करें: + +`git init --initial-branch={{शाखा_का_नाम}}` + +- ऑब्जेक्ट हैश के लिए SHA256 का उपयोग करके भंडार शुरू करें (गिट संस्करण २.२९+ की आवश्यकता है): + +`git init --object-format={{sha256}}` + +- एक अपूरित भंडार को शुरू करें, जो ssh के रिमोट के रूप में उपयोग के लिए उपयुक्त है: `git init --bare` diff --git a/pages.hi/common/git-status.md b/pages.hi/common/git-status.md new file mode 100644 index 00000000000000..36ec36291fc9c9 --- /dev/null +++ b/pages.hi/common/git-status.md @@ -0,0 +1,21 @@ +# git status + +> गिट रिपॉजिटरी में फाइलों में बदलाव दिखाएं। +> उन पथों को प्रदर्शित करता है जिनमें अनुक्रमणिका फ़ाइल और वर्तमान हेड कमिट के बीच अंतर होता है। +> अधिक जानकारी: । + +- बदली हुई फ़ाइलें दिखाएं जो अभी तक कमिट के लिए नहीं जोड़ी गई हैं: + +`git status` + +- शॉर्ट-फॉर्मेट में आउटपुट दें: + +`git status -s` + +- आउटपुट में ट्रैक न की गई फ़ाइलें न दिखाएं: + +`git status --untracked-files=no` + +- [b]शाखा की जानकारी के साथ [s]लघु प्रारूप में आउटपुट दिखाएं: + +`git status -sb` diff --git a/pages.hi/common/gnmic-sub.md b/pages.hi/common/gnmic-sub.md new file mode 100644 index 00000000000000..8fc61a857cbbb2 --- /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 00000000000000..5e6fb7c17425bd --- /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 00000000000000..843312339c6107 --- /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 00000000000000..8581789a97120d --- /dev/null +++ b/pages.hi/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> यह आदेश `kcat` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr kcat` diff --git a/pages.hi/common/llvm-ar.md b/pages.hi/common/llvm-ar.md new file mode 100644 index 00000000000000..d7a88fea5845a8 --- /dev/null +++ b/pages.hi/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> यह आदेश `ar` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr ar` diff --git a/pages.hi/common/llvm-g++.md b/pages.hi/common/llvm-g++.md new file mode 100644 index 00000000000000..9bbd8b8d89a5ec --- /dev/null +++ b/pages.hi/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> यह आदेश `clang++` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clang++` diff --git a/pages.hi/common/llvm-gcc.md b/pages.hi/common/llvm-gcc.md new file mode 100644 index 00000000000000..869f21747ac173 --- /dev/null +++ b/pages.hi/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> यह आदेश `clang` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr clang` diff --git a/pages.hi/common/llvm-nm.md b/pages.hi/common/llvm-nm.md new file mode 100644 index 00000000000000..0307d5d182e11c --- /dev/null +++ b/pages.hi/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> यह आदेश `nm` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr nm` diff --git a/pages.hi/common/llvm-objdump.md b/pages.hi/common/llvm-objdump.md new file mode 100644 index 00000000000000..3f78180ada7620 --- /dev/null +++ b/pages.hi/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> यह आदेश `objdump` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr objdump` diff --git a/pages.hi/common/llvm-strings.md b/pages.hi/common/llvm-strings.md new file mode 100644 index 00000000000000..c1b76440e1832f --- /dev/null +++ b/pages.hi/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> यह आदेश `strings` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr strings` diff --git a/pages.hi/common/ln.md b/pages.hi/common/ln.md new file mode 100644 index 00000000000000..53650e5a3f9fe7 --- /dev/null +++ b/pages.hi/common/ln.md @@ -0,0 +1,16 @@ +# ln + +> फाइलों और निर्देशिकाओं के लिंक बनाता है। +> अधिक जानकारी: । + +- किसी फ़ाइल या निर्देशिका के लिए एक प्रतीकात्मक लिंक बनाएँ: + +`ln -s {{/फ़ाइल_या_निर्देशिका/का/पथ}} {{लिंक/का/पथ}}` + +- किसी भिन्न फ़ाइल को इंगित करने के लिए मौजूदा प्रतीकात्मक लिंक को अधिलेखित करें: + +`ln -sf {{/नई_फ़ाइल/का/पथ}} {{लिंक/का/पथ}}` + +- किसी फ़ाइल का हार्ड लिंक बनाएँ: + +`ln {{/फ़ाइल/का/पथ}} {{हार्डलिंक/का/पथ}}` diff --git a/pages.hi/common/ls.md b/pages.hi/common/ls.md index 18db58496009ff..841c0e8559c7ce 100644 --- a/pages.hi/common/ls.md +++ b/pages.hi/common/ls.md @@ -1,7 +1,7 @@ # ls > निर्देशिका सामग्री को सूचीबद्ध करें। -> अधिक जानकारी: . +> अधिक जानकारी: । - प्रति पंक्ति एक फ़ाइल की सूची बनाएं: diff --git a/pages.hi/common/lzcat.md b/pages.hi/common/lzcat.md new file mode 100644 index 00000000000000..68c5bf3344cb98 --- /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 00000000000000..fbc4feebca64d8 --- /dev/null +++ b/pages.hi/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/mkdir.md b/pages.hi/common/mkdir.md index a7039e2caf4f41..3d245987ed955b 100644 --- a/pages.hi/common/mkdir.md +++ b/pages.hi/common/mkdir.md @@ -1,7 +1,7 @@ # mkdir > एक निर्देशिका बनाता है। -> अधिक जानकारी: . +> अधिक जानकारी: । - वर्तमान निर्देशिका या दिए गए पथ में एक निर्देशिका बनाएँ: diff --git a/pages.hi/common/mscore.md b/pages.hi/common/mscore.md new file mode 100644 index 00000000000000..b8d6ccd0086380 --- /dev/null +++ b/pages.hi/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> यह आदेश `musescore` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr musescore` diff --git a/pages.hi/common/mv.md b/pages.hi/common/mv.md new file mode 100644 index 00000000000000..3c9b3116fb0926 --- /dev/null +++ b/pages.hi/common/mv.md @@ -0,0 +1,28 @@ +# mv + +> फ़ाइलों और निर्देशिकाओं को स्थानांतरित या नाम बदलें। +> अधिक जानकारी: । + +- किसी फ़ाइल को मनमाना स्थान पर ले जाएँ: + +`mv {{स्रोत}} {{लक्ष्य}}` + +- फ़ाइल नाम रखते हुए फ़ाइलों को दूसरी निर्देशिका में ले जाएँ: + +`mv {{स्रोत1}} {{स्रोत2}} {{स्रोत3}} {{लक्ष्य_निर्देशिका}}` + +- मौजूदा फाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत न दें: + +`mv -f {{स्रोत}} {{लक्ष्य}}` + +- फ़ाइल अनुमतियों की परवाह किए बिना, मौजूदा फ़ाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत दें: + +`mv -i {{स्रोत}} {{लक्ष्य}}` + +- लक्ष्य पर मौजूदा फाइलों को अधिलेखित न करें: + +`mv -n {{स्रोत}} {{लक्ष्य}}` + +- फ़ाइलों को वर्बोज़ मोड में ले जाएँ, फ़ाइलों को स्थानांतरित करने के बाद दिखाएँ: + +`mv -v {{स्रोत}} {{लक्ष्य}}` diff --git a/pages.hi/common/neofetch.md b/pages.hi/common/neofetch.md new file mode 100644 index 00000000000000..1744f772bd39f7 --- /dev/null +++ b/pages.hi/common/neofetch.md @@ -0,0 +1,20 @@ +# neofetch + +> आपके ऑपरेटिंग सिस्टम, सॉफ्टवेयर और हार्डवेयर के बारे में जानकारी प्रदर्शित करने के लिए CLI टूल। +> अधिक जानकारी: । + +- डिफ़ॉल्ट कॉन्फ़िगरेशन लौटाएं, और इसे बनाएं यदि यह पहली बार प्रोग्राम चलता है: + +`neofetch` + +- आउटपुट में दिखाई देने से एक जानकारी लाइन को ट्रिगर करें, जहां 'infoname' कॉन्फ़िगरेशन फ़ाइल में फ़ंक्शन नाम है, उदा। स्मृति: + +`neofetch --{{enable|disable}} {{infoname}}` + +- OS आर्किटेक्चर छुपाएं/दिखाएं: + +`neofetch --os_arch {{on|off}}` + +- आउटपुट में CPU ब्रांड को सक्षम/अक्षम करें: + +`neofetch --cpu_brand {{on|off}}` diff --git a/pages.hi/common/nm-classic.md b/pages.hi/common/nm-classic.md new file mode 100644 index 00000000000000..50cdaf86997ec2 --- /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 00000000000000..0e7c0b98f3783a --- /dev/null +++ b/pages.hi/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> यह आदेश `netlify` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr netlify` diff --git a/pages.hi/common/pio-init.md b/pages.hi/common/pio-init.md new file mode 100644 index 00000000000000..65f494b66781e7 --- /dev/null +++ b/pages.hi/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> यह आदेश `pio project` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr pio project` diff --git a/pages.hi/common/piodebuggdb.md b/pages.hi/common/piodebuggdb.md new file mode 100644 index 00000000000000..64eae15c592d98 --- /dev/null +++ b/pages.hi/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> यह आदेश `pio debug` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr pio debug` diff --git a/pages.hi/common/platformio.md b/pages.hi/common/platformio.md new file mode 100644 index 00000000000000..85a5f3f289b0a9 --- /dev/null +++ b/pages.hi/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> यह आदेश `pio` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr pio` diff --git a/pages.hi/common/ptpython3.md b/pages.hi/common/ptpython3.md new file mode 100644 index 00000000000000..a56c953f9fb877 --- /dev/null +++ b/pages.hi/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> यह आदेश `ptpython` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr ptpython` diff --git a/pages.hi/common/pwd.md b/pages.hi/common/pwd.md new file mode 100644 index 00000000000000..f8af6db5be5ee1 --- /dev/null +++ b/pages.hi/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> वर्तमान/कार्यशील निर्देशिका का नाम देखें। +> अधिक जानकारी: । + +- वर्तमान निर्देशिका का नाम देखें: + +`pwd` + +- वर्तमान निर्देशिका का नाम देखें और सभी सिम्लिंक को हल करें (यानी "भौतिक" पथ दिखाएं): + +`pwd -P` diff --git a/pages.hi/common/python3.md b/pages.hi/common/python3.md new file mode 100644 index 00000000000000..97ebc3873223d9 --- /dev/null +++ b/pages.hi/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> यह आदेश `python` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr python` diff --git a/pages.hi/common/r2.md b/pages.hi/common/r2.md new file mode 100644 index 00000000000000..fb72418f791582 --- /dev/null +++ b/pages.hi/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> यह आदेश `radare2` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr radare2` diff --git a/pages.hi/common/rcat.md b/pages.hi/common/rcat.md new file mode 100644 index 00000000000000..342cfbad1cd808 --- /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 00000000000000..b523ca569ba153 --- /dev/null +++ b/pages.hi/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> यह आदेश `rg` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr rg` diff --git a/pages.hi/common/rmdir.md b/pages.hi/common/rmdir.md new file mode 100644 index 00000000000000..9e3fdc431cb39c --- /dev/null +++ b/pages.hi/common/rmdir.md @@ -0,0 +1,12 @@ +# rmdir + +> निर्देशिका को हटाता है। +> अधिक जानकारी: । + +- निर्देशिका निकालें, बशर्ते वह खाली हो। गैर-रिक्त निर्देशिकाओं को हटाने के लिए `rm -r` का उपयोग करें: + +`rmdir {{निर्देशिका / का / पथ}}` + +- लक्ष्य और उसकी मूल निर्देशिका निकालें (नेस्टेड निर्देशिकाओं के लिए उपयोगी): + +`rmdir -p {{निर्देशिका / का / पथ}}` diff --git a/pages.hi/common/ruget.md b/pages.hi/common/ruget.md new file mode 100644 index 00000000000000..042c77313fa7ac --- /dev/null +++ b/pages.hi/common/ruget.md @@ -0,0 +1,12 @@ +# ruget + +> Rust में लिखे गए wget का विकल्प। +> अधिक जानकारी: । + +- किसी फ़ाइल में URL की सामग्री डाउनलोड करें: + +`ruget {{https://example.com/file}}` + +- किसी निर्दिष्ट आउटपुट फ़ाइल में URL की सामग्री डाउनलोड करें: + +`ruget --output {{file_name}} {{https://example.com/file}}` diff --git a/pages.hi/common/scp.md b/pages.hi/common/scp.md new file mode 100644 index 00000000000000..fd1a6be8d4675d --- /dev/null +++ b/pages.hi/common/scp.md @@ -0,0 +1,33 @@ +# scp + +> सुरक्षित प्रति। +> SSH पर सिक्योर कॉपी प्रोटोकॉल का उपयोग करके होस्ट के बीच फ़ाइलों की प्रतिलिपि बनाएँ। +> अधिक जानकारी: । + +- स्थानीय फ़ाइल को दूरस्थ होस्ट पर कॉपी करें: + +`scp {{लोकल_फ़ाइल/का/स्थान​}} {{रिमोट_होस्ट}}:{{रिमोट_फ़ाइल/का/स्थान​}}` + +- रिमोट होस्ट से कनेक्ट करते समय एक विशिष्ट पोर्ट का उपयोग करें: + +`scp -P {{पोर्ट​}} {{लोकल_फ़ाइल/का/स्थान​}} {{रिमोट_होस्ट}}:{{रिमोट_फ़ाइल/का/स्थान​}}` + +- किसी फ़ाइल को दूरस्थ होस्ट से स्थानीय निर्देशिका में कॉपी करें: + +`scp {{रिमोट_होस्ट}}:{{रिमोट_फ़ाइल/का/स्थान​}} {{लोकल_डाइरेक्टरी/का/स्थान​}}` + +- किसी निर्देशिका की सामग्री को दूरस्थ होस्ट से स्थानीय निर्देशिका में पुन: कॉपी करें: + +`scp -r {{रिमोट_होस्ट}}:{{रिमोट_डाइरेक्टरी/का/स्थान​}} {{लोकल_डाइरेक्टरी/का/स्थान​}}` + +- स्थानीय होस्ट के माध्यम से स्थानांतरित होने वाले दो दूरस्थ होस्ट के बीच फ़ाइल की प्रतिलिपि बनाएँ: + +`scp -3 {{पेहला_होस्ट}}:{{रिमोट_फ़ाइल/का/स्थान​}} {{दूस्रा_होस्ट}}:{{रिमोट_डाइरेक्टरी/का/स्थान​}}` + +- दूरस्थ होस्ट से कनेक्ट करते समय एक विशिष्ट उपयोगकर्ता नाम का उपयोग करें: + +`scp {{लोकल_फ़ाइल/का/स्थान​}} {{रिमोट_उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}:{{रिमोट_डाइरेक्टरी/का/स्थान​}}` + +- दूरस्थ होस्ट के साथ प्रमाणीकरण के लिए विशिष्ट ssh निजी कुंजी का उपयोग करें: + +`scp -i {{प्राइवेट_"की"/का/स्थान​}} {{लोकल_फ़ाइल/का/स्थान​}} {{रिमोट_होस्ट}}:{{/रिमोट_फ़ाइल/का/स्थान​}}` diff --git a/pages.hi/common/sleep.md b/pages.hi/common/sleep.md new file mode 100644 index 00000000000000..9f5e8d8b5b5bb1 --- /dev/null +++ b/pages.hi/common/sleep.md @@ -0,0 +1,16 @@ +# sleep + +> निर्दिष्ट समय के लिए विलंब जोड़ें। +> अधिक जानकारी: । + +- सेकंड में देरी: + +`sleep {{सेकंड}}` + +- मिनटों में देरी: + +`sleep {{मिनट}}m` + +- घंटों में देरी: + +`sleep {{घंटे}}h` diff --git a/pages.hi/common/ssh.md b/pages.hi/common/ssh.md new file mode 100644 index 00000000000000..c59dca504adab4 --- /dev/null +++ b/pages.hi/common/ssh.md @@ -0,0 +1,37 @@ +# ssh + +> सिक्योर शेल एक प्रोटोकॉल है जिसका उपयोग रिमोट सिस्टम पर सुरक्षित रूप से लॉग ऑन करने के लिए किया जाता है। +> इसका उपयोग रिमोट सर्वर पर लॉगिंग या कमांड निष्पादित करने के लिए किया जा सकता है। +> अधिक जानकारी: । + +- रिमोट सर्वर से कनेक्ट करें: + +`ssh {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` + +- एक विशिष्ट पहचान (निजी कुंजी) के साथ एक दूरस्थ सर्वर से कनेक्ट करें: + +`ssh -i {{फ़ाइल/का/स्थान}} {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` + +- किसी विशिष्ट पोर्ट का उपयोग करके किसी दूरस्थ सर्वर से कनेक्ट करें: + +`ssh {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}} -p {{2222}}` + +- रिमोट सर्वर पर [t] ty आवंटन के साथ एक कमांड चलाएँ जो रिमोट कमांड के साथ इंटरेक्शन की अनुमति देता है: + +`ssh {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}} -t {{कमांड}} {{कमांड_विकल्प}}` + +- SSH टनलिंग: डायनेमिक पोर्ट फ़ॉरवर्डिंग (`लोकलहोस्ट: 1080 पर SOCKS प्रॉक्सी): + +`ssh -D {{1080}} {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` + +- एसएसएच टनलिंग: एक विशिष्ट पोर्ट (`लोकलहोस्ट: 9999` से `example.org:80`) को अग्रेषित करें, साथ ही छद्म-[टी] ty आवंटन और रिमोट कमांड के निष्पादन [एन] को अक्षम करने के साथ: + +`ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` + +- SSH जंपिंग: एक जम्पहोस्ट के माध्यम से एक दूरस्थ सर्वर से कनेक्ट करें (कई जंप हॉप्स को अल्पविराम वर्णों से अलग करके निर्दिष्ट किया जा सकता है): + +`ssh -J {{उपयोगकर्ता_नाम}}@{{जंप_होस्ट}} {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` + +- एजेंट अग्रेषण: रिमोट मशीन को प्रमाणीकरण जानकारी अग्रेषित करें (उपलब्ध विकल्पों के लिए `man ssh_config` देखें): + +`ssh -A {{उपयोगकर्ता_नाम}}@{{रिमोट_होस्ट}}` diff --git a/pages.hi/common/time.md b/pages.hi/common/time.md index d379931ab959e7..9897281d0f4224 100644 --- a/pages.hi/common/time.md +++ b/pages.hi/common/time.md @@ -1,6 +1,7 @@ # time > देखें कि एक कमांड में कितना समय लगता है। +> अधिक जानकारी: । - समय "ls": diff --git a/pages.hi/common/tldr.md b/pages.hi/common/tldr.md index 061e474e3cadf5..7fd4cf756733c4 100644 --- a/pages.hi/common/tldr.md +++ b/pages.hi/common/tldr.md @@ -1,13 +1,13 @@ # tldr > tldr-pages प्रोजेक्ट से कमांड-लाइन टूल्स के लिए सरल हेल्प पेज प्रदर्शित करता है। -> अधिक जानकारी: https://tldr.sh +> अधिक जानकारी: । - एक कमांड के विशिष्ट उपयोग प्राप्त करें (संकेत: इसका उपयोग कर आप यहाँ आए!): `tldr {{कमांड}}` -- linux के लिए tar tldr पेज दिखाएं: +- Linux के लिए tar tldr पेज दिखाएं: `tldr -p {{linux}} {{tar}}` diff --git a/pages.hi/common/tldrl.md b/pages.hi/common/tldrl.md new file mode 100644 index 00000000000000..969adace2b356f --- /dev/null +++ b/pages.hi/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> यह आदेश `tldr-lint` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr tldr-lint` diff --git a/pages.hi/common/tlmgr-arch.md b/pages.hi/common/tlmgr-arch.md new file mode 100644 index 00000000000000..afd72e425ca178 --- /dev/null +++ b/pages.hi/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> यह आदेश `tlmgr platform` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr tlmgr platform` diff --git a/pages.hi/common/todoman.md b/pages.hi/common/todoman.md new file mode 100644 index 00000000000000..2d3aa66b66f0e4 --- /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 468eb242608cc2..db3dd9c5758d04 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 00000000000000..e103c5e412e965 --- /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 00000000000000..da1b89387f4c77 --- /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 00000000000000..0ce05ed70c8d34 --- /dev/null +++ b/pages.hi/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> यह आदेश `xz` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr xz` diff --git a/pages.hi/common/vi.md b/pages.hi/common/vi.md new file mode 100644 index 00000000000000..5772dbc4e62ead --- /dev/null +++ b/pages.hi/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> यह आदेश `vim` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr vim` diff --git a/pages.hi/common/view.md b/pages.hi/common/view.md index e9a87d5cb0430b..563aea8fe34608 100644 --- a/pages.hi/common/view.md +++ b/pages.hi/common/view.md @@ -1,7 +1,8 @@ # view > `Vim` का केवल-पढ़ने वाला संस्करण। -> यह `विम -R` के बराबर है। +> यह `vim -R` के बराबर है। +> अधिक जानकारी: । - एक फ़ाइल खोलो: diff --git a/pages.hi/common/wget.md b/pages.hi/common/wget.md new file mode 100644 index 00000000000000..097521a0b4440c --- /dev/null +++ b/pages.hi/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.hi/common/xzcat.md b/pages.hi/common/xzcat.md new file mode 100644 index 00000000000000..3ab5b71a17c424 --- /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 00000000000000..898126278dd8d7 --- /dev/null +++ b/pages.hi/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> यह आदेश `update-alternatives` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr update-alternatives` diff --git a/pages.hi/linux/batcat.md b/pages.hi/linux/batcat.md new file mode 100644 index 00000000000000..2c7bb6871a4d3c --- /dev/null +++ b/pages.hi/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> यह आदेश `bat` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bat` diff --git a/pages.hi/linux/br.md b/pages.hi/linux/br.md new file mode 100644 index 00000000000000..0dc9a9ac72590d --- /dev/null +++ b/pages.hi/linux/br.md @@ -0,0 +1,25 @@ +# br + +> निर्देशिकाओंको पथ-प्रदर्शित करने का एक बेहतर तरीका। +> `broot` भी देखें। +> अधिक जानकारी: । + +- वर्तमान निर्देशिकाको पथ-प्रदर्शित करें: + +`br` + +- फ़ाइलों और निर्देशिकाओंका आकार प्रदर्शित करें: + +`br --sizes` + +- प्रदर्शन अनुमतियाँ: + +`br --permissions` + +- केवल निर्देशिकाएं प्रदर्शित करें: + +`br --only-folders` + +- छिपी हुई फ़ाइलें और निर्देशिकाएं प्रदर्शित करें: + +`br --hidden` diff --git a/pages.hi/linux/broot.md b/pages.hi/linux/broot.md new file mode 100644 index 00000000000000..6d3f444b4281dd --- /dev/null +++ b/pages.hi/linux/broot.md @@ -0,0 +1,9 @@ +# broot + +> निर्देशिकाओंको पथ-प्रदर्शित करने का एक बेहतर तरीका। +> `br` भी देखें। +> अधिक जानकारी: । + +- `br` shell कार्य को स्थापित या पुनर्स्थापित करें: + +`broot --install` diff --git a/pages.hi/linux/bspwm.md b/pages.hi/linux/bspwm.md new file mode 100644 index 00000000000000..8373dbba35bad4 --- /dev/null +++ b/pages.hi/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> यह आदेश `bspc` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr bspc` diff --git a/pages.hi/linux/cc.md b/pages.hi/linux/cc.md new file mode 100644 index 00000000000000..266502f31ec848 --- /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 00000000000000..3fb679c74b6941 --- /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 new file mode 100644 index 00000000000000..ec3bb915478d37 --- /dev/null +++ b/pages.hi/linux/cpuid.md @@ -0,0 +1,16 @@ +# cpuid + +> सभी सीपीयू के बारे में विस्तृत जानकारी दिखाएं। +> अधिक जानकारी: । + +- सभी CPU के लिए जानकारी दिखाएं: + +`cpuid` + +- केवल वर्तमान CPU के लिए जानकारी दिखाएं: + +`cpuid -1` + +- डीकोडिंग के बिना कच्ची हेक्साडेसिमल जानकारी दिखाएं: + +`cpuid -r` diff --git a/pages.hi/linux/free.md b/pages.hi/linux/free.md new file mode 100644 index 00000000000000..cbf261c163bb22 --- /dev/null +++ b/pages.hi/linux/free.md @@ -0,0 +1,20 @@ +# free + +> सिस्टम में 'Free' और यूज्ड मेमोरी की मात्रा दिखाता है। +> अधिक जानकारी: । + +- सिस्टम मेमोरी दिखाएं: + +`free` + +- सिस्टम मेमोरी को बाइट्स/केबी/एमबी/जीबी में दिखाएं: + +`free -{{b|k|m|g}}` + +- मानव-पठनीय इकाइयों में सिस्टम मेमोरी प्रदर्शित करें: + +`free -h` + +- हर 2 सेकंड में आउटपुट अपडेट करें: + +`free -s {{2}}` diff --git a/pages.hi/linux/ip-route-list.md b/pages.hi/linux/ip-route-list.md new file mode 100644 index 00000000000000..0cb821a68949fa --- /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 new file mode 100644 index 00000000000000..202356f33d59df --- /dev/null +++ b/pages.hi/linux/lsblk.md @@ -0,0 +1,36 @@ +# lsblk + +> उपकरणों के बारे में जानकारी सूचीबद्ध करता है। +> अधिक जानकारी: । + +- सभी भंडारण उपकरणों को ट्री-समान प्रारूप में सूचीबद्ध करें: + +`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.hi/linux/lsusb.md b/pages.hi/linux/lsusb.md new file mode 100644 index 00000000000000..4587a702f4284d --- /dev/null +++ b/pages.hi/linux/lsusb.md @@ -0,0 +1,24 @@ +# lsusb + +> यूएसबी बसों और उनसे जुड़े उपकरणों के बारे में जानकारी प्रदर्शित करें। +> अधिक जानकारी: । + +- उपलब्ध सभी USB उपकरणों की सूची बनाएं: + +`lsusb` + +- USB पदानुक्रम को एक ट्री के रूप में सूचीबद्ध करें: + +`lsusb -t` + +- USB उपकरणों के बारे में विस्तारित जानकारी की सूची बनाएं: + +`lsusb --verbose` + +- USB डिवाइस के बारे में विस्तृत जानकारी की सूची बनाएं: + +`lsusb -D {{उपकरण}}` + +- केवल निर्दिष्ट विक्रेता और उत्पाद आईडी वाले उपकरणों की सूची बनाएं: + +`lsusb -d {{वेंडर}}:{{उत्पाद}}` diff --git a/pages.hi/linux/megadl.md b/pages.hi/linux/megadl.md new file mode 100644 index 00000000000000..85b08487fb65fb --- /dev/null +++ b/pages.hi/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> यह आदेश `megatools-dl` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr megatools-dl` diff --git a/pages.hi/linux/ncal.md b/pages.hi/linux/ncal.md new file mode 100644 index 00000000000000..c0984d381b6ec6 --- /dev/null +++ b/pages.hi/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> यह आदेश `cal` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr cal` diff --git a/pages.hi/linux/reboot.md b/pages.hi/linux/reboot.md new file mode 100644 index 00000000000000..abec5342872761 --- /dev/null +++ b/pages.hi/linux/reboot.md @@ -0,0 +1,24 @@ +# reboot + +> मशीन को `reboot` करें +> अधिक जानकारी: । + +- तुरंत पुनरारंभ करें: + +`reboot` + +- सिस्टम बंद करें ('पॉवरऑफ' के समान): + +`reboot --poweroff` + +- सिस्टम को रोकें (ठहराव के समान): + +`reboot --halt` + +- Sysadmin से संपर्क किए बिना तुरंत पुनरारंभ करें: + +`reboot --force` + +- सिस्टम को रिबूट किए बिना wtmp शटडाउन प्रविष्टि टाइप करें: + +`reboot --wtmp-only` diff --git a/pages.hi/linux/reset.md b/pages.hi/linux/reset.md new file mode 100644 index 00000000000000..dc820d2523bac7 --- /dev/null +++ b/pages.hi/linux/reset.md @@ -0,0 +1,12 @@ +# reset + +> वर्तमान टर्मिनल को `reset` करें। संपूर्ण टर्मिनल स्क्रीन को साफ़ करता है। +> अधिक जानकारी: । + +- वर्तमान टर्मिनल को `reset` करें: + +`reset` + +- टर्मिनल प्रकार दिखाएं: + +`reset -q` diff --git a/pages.hi/linux/ubuntu-bug.md b/pages.hi/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..b84812b8022935 --- /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 00000000000000..d9821f5ebbeac3 --- /dev/null +++ b/pages.hi/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> यह आदेश `yaa` का उपनाम है। + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr yaa` diff --git a/pages.hi/osx/g[.md b/pages.hi/osx/g[.md new file mode 100644 index 00000000000000..512e5a493d84b7 --- /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 00000000000000..84c38e067357aa --- /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 00000000000000..f52fb9e356321e --- /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 00000000000000..34e823e8353705 --- /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 00000000000000..74491beea95d92 --- /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 00000000000000..248f63351277ef --- /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 00000000000000..66ecec69e391d3 --- /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 00000000000000..eb64199ac30137 --- /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 00000000000000..1b368813dfb27b --- /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 00000000000000..69c8e03ec00ee6 --- /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 00000000000000..eb4b3d3362fe8a --- /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 00000000000000..ccd47bb01dbdc8 --- /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 00000000000000..ce0979f03bfeaf --- /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 00000000000000..b5e08ab89f4528 --- /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 00000000000000..3b08992984d3a8 --- /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 00000000000000..efa1eac3a3b3d2 --- /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 00000000000000..9bbf0e54850813 --- /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 00000000000000..e2ed7530aedb40 --- /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 00000000000000..6d80aff7390d93 --- /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 00000000000000..77650ea727149f --- /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 00000000000000..e9f72adfb342f8 --- /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 00000000000000..638f64a57b6ad3 --- /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 00000000000000..97723c292bd3c3 --- /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 00000000000000..890d4b71cf46c5 --- /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 00000000000000..dd0c5787c672dd --- /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 00000000000000..b65409ed2f6b40 --- /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 00000000000000..a095bb5e93314c --- /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 00000000000000..d798c12ee6a87b --- /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 00000000000000..8a77951d828692 --- /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 00000000000000..77e147d8df1e5e --- /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 00000000000000..24148abda5b699 --- /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 00000000000000..d54db813358892 --- /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 00000000000000..35f0351386c583 --- /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 00000000000000..46e3aa7d0c0bfe --- /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 00000000000000..f8440fe41decf0 --- /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 00000000000000..9010b86f41f8fb --- /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 00000000000000..c2feed0686db81 --- /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 00000000000000..f6bfde6fa5d384 --- /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 00000000000000..8f7525ead8ded2 --- /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 00000000000000..f82643168f6216 --- /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 00000000000000..13b042806e870e --- /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 00000000000000..86cd115cdc4595 --- /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 00000000000000..1b34b6bcf63415 --- /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 00000000000000..20ecb432ff4233 --- /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 00000000000000..5920248d722923 --- /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 00000000000000..d53c748d101397 --- /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 00000000000000..3c21c225e9843f --- /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 00000000000000..41686e3d2c48b5 --- /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 00000000000000..31f13752db3701 --- /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 00000000000000..5763c4bb29943f --- /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 00000000000000..b353629ef99620 --- /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 00000000000000..c9d1087a5c015d --- /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 00000000000000..c99a3a4d2e17b6 --- /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 00000000000000..5077bc77085812 --- /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 00000000000000..844e5a791a1ea0 --- /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 00000000000000..3ae695d742c4d1 --- /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 00000000000000..37eef65b4a12a7 --- /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 00000000000000..414ea50b6ad72e --- /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 00000000000000..d7ae6f80cbb19c --- /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 00000000000000..874c9e7f005f43 --- /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 00000000000000..1bfb13310e21a9 --- /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 00000000000000..55f70befc5ec5d --- /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 00000000000000..e366d9ae89da89 --- /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 00000000000000..7132235671c8c2 --- /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 00000000000000..96f52088182218 --- /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 00000000000000..728a81b678f4c5 --- /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 00000000000000..15b009b52a8cc4 --- /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 00000000000000..6a7b7f60c2a2c9 --- /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 00000000000000..d4cf0ca686549f --- /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 00000000000000..db52cd22aae1a6 --- /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 00000000000000..e4ab066fd20211 --- /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 00000000000000..4c8b49fe1e4eee --- /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 00000000000000..6ec0058e78cf01 --- /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 00000000000000..6ff45ba4b65f48 --- /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 00000000000000..96a794fef1dc84 --- /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 00000000000000..e60416c9f59e77 --- /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 00000000000000..e46981055b63a6 --- /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 00000000000000..f378b20e7548d7 --- /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 00000000000000..f4e6c777286265 --- /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 00000000000000..be5dac0be2254e --- /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 00000000000000..c765585e111751 --- /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 00000000000000..257c9af89f4eed --- /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 00000000000000..222cd9d1d3040e --- /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 00000000000000..1c8e753da4705f --- /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 00000000000000..e936ae7eeda1f1 --- /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 00000000000000..42b85776fa806a --- /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 00000000000000..633849fea05a00 --- /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 00000000000000..a5a1b651edde28 --- /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 00000000000000..264d1fd265d29e --- /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 00000000000000..6d258a670ea002 --- /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 00000000000000..e10dfdf1519c9b --- /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 00000000000000..d5b2c12b7ae40b --- /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 00000000000000..1a359d3e51244d --- /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 00000000000000..2e43049a3b569a --- /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 00000000000000..c47a4e45e5a4df --- /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 00000000000000..df59956e65f1fa --- /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 00000000000000..9112555cb86689 --- /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 00000000000000..efb34c3be74899 --- /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 00000000000000..799477652aed58 --- /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 00000000000000..2f8d4faff02b8a --- /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 00000000000000..97a91c9fdd6979 --- /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 00000000000000..f457a1597f5903 --- /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 00000000000000..c7280e4f6f0ba4 --- /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 00000000000000..afe562b9fcfeb8 --- /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 00000000000000..f6a60bfd407451 --- /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 00000000000000..db5cfed3a995f2 --- /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 00000000000000..1383f308471412 --- /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 00000000000000..129d27df437ca6 --- /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 00000000000000..526b790c450bb7 --- /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 00000000000000..aa59fa68b303ab --- /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 00000000000000..22dcc524790ef6 --- /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 00000000000000..b198f59de4a20e --- /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 00000000000000..fe96e591a677a3 --- /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 00000000000000..45b0de9ee74557 --- /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 00000000000000..a344dba4a34a34 --- /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 00000000000000..ff0f2782fb5248 --- /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 00000000000000..123c3bd1462107 --- /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 00000000000000..3e26a45568a4b2 --- /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 00000000000000..77502f6e78cce9 --- /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 00000000000000..6f942243151dca --- /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 00000000000000..9df1375de5c80b --- /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 00000000000000..ba94b133efb9c6 --- /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 00000000000000..68459426ea840b --- /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 00000000000000..10dd96947ac9c8 --- /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 00000000000000..df00e6c8004440 --- /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 00000000000000..a89a05fcfbb3cf --- /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 00000000000000..156635cdb6b5b2 --- /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 00000000000000..8087918632d603 --- /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 00000000000000..5c27541201858b --- /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 00000000000000..ad1f0eac2e02f1 --- /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 00000000000000..c12336ffbfeb6d --- /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 00000000000000..4673a81b53b8ab --- /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 00000000000000..d10e3bd661dfb0 --- /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 00000000000000..6882d8c01fbe61 --- /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 00000000000000..77f61dbff1765d --- /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 00000000000000..5d89293dcae9f3 --- /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 00000000000000..4a09338ee6fcfd --- /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 00000000000000..207228a0159869 --- /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 00000000000000..7c26f470d4a501 --- /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 00000000000000..ddbf81e85187fd --- /dev/null +++ b/pages.hi/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> यह आदेश `launchctl` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr launchctl` diff --git a/pages.hi/windows/chrome.md b/pages.hi/windows/chrome.md new file mode 100644 index 00000000000000..021ef740a6a0e6 --- /dev/null +++ b/pages.hi/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> यह आदेश `chromium` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr chromium` diff --git a/pages.hi/windows/cinst.md b/pages.hi/windows/cinst.md new file mode 100644 index 00000000000000..2b3eeb2b91199d --- /dev/null +++ b/pages.hi/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> यह आदेश `choco install` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr choco install` diff --git a/pages.hi/windows/clist.md b/pages.hi/windows/clist.md new file mode 100644 index 00000000000000..88fafcd1d0e067 --- /dev/null +++ b/pages.hi/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> यह आदेश `choco list` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr choco list` diff --git a/pages.hi/windows/cmd.md b/pages.hi/windows/cmd.md new file mode 100644 index 00000000000000..b27ccb1262ae71 --- /dev/null +++ b/pages.hi/windows/cmd.md @@ -0,0 +1,36 @@ +# cmd + +> विंडोज कमांड दुभाषिया। +> अधिक जानकारी: । + +- एक इंटरैक्टिव शेल सत्र प्रारंभ करें: + +`cmd` + +- एक आदेश निष्पादित करें: + +`cmd /c "{{आज्ञा}}"` + +- एक स्क्रिप्ट निष्पादित करें: + +`cmd {{फ़ाइल.bat/का/पथ}}` + +- एक कमांड निष्पादित करें और फिर एक इंटरेक्टिव शेल दर्ज करें: + +`cmd /k "{{आज्ञा}}"` + +- एक इंटरैक्टिव शेल सत्र प्रारंभ करें जहां कमांड आउटपुट में `echo` अक्षम है: + +`cmd /q` + +- विलंबित चर विस्तार सक्षम या अक्षम के साथ एक इंटरैक्टिव शेल सत्र प्रारंभ करें: + +`cmd /v:{{on|off}}` + +- सक्षम या अक्षम कमांड एक्सटेंशन के साथ एक इंटरैक्टिव शेल सत्र प्रारंभ करें: + +`cmd /e:{{on|off}}` + +- प्रयुक्त यूनिकोड एन्कोडिंग के साथ एक इंटरैक्टिव शेल सत्र प्रारंभ करें: + +`cmd /u` diff --git a/pages.hi/windows/cpush.md b/pages.hi/windows/cpush.md new file mode 100644 index 00000000000000..1da309a60c3b79 --- /dev/null +++ b/pages.hi/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> यह आदेश `choco-push` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr choco-push` diff --git a/pages.hi/windows/cuninst.md b/pages.hi/windows/cuninst.md new file mode 100644 index 00000000000000..3daf4e72e63e3f --- /dev/null +++ b/pages.hi/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> यह आदेश `choco uninstall` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr choco uninstall` diff --git a/pages.hi/windows/curl.md b/pages.hi/windows/curl.md new file mode 100644 index 00000000000000..93aa5441201484 --- /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/iwr.md b/pages.hi/windows/iwr.md new file mode 100644 index 00000000000000..1d0eedc2d9043d --- /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 00000000000000..2020eddb484fc6 --- /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 00000000000000..22209e2e4db8da --- /dev/null +++ b/pages.hi/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> यह आदेश `rmdir` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr rmdir` diff --git a/pages.hi/windows/sls.md b/pages.hi/windows/sls.md new file mode 100644 index 00000000000000..72b90b6bd73c3e --- /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 00000000000000..228cf8f87fe07b --- /dev/null +++ b/pages.hi/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> यह आदेश `wget -p common` का उपनाम है। +> अधिक जानकारी: । + +- मूल आदेश के लिए दस्तावेज़ देखें: + +`tldr wget -p common` diff --git a/pages.id/android/am.md b/pages.id/android/am.md new file mode 100644 index 00000000000000..f3f9ece4c7541a --- /dev/null +++ b/pages.id/android/am.md @@ -0,0 +1,20 @@ +# am + +> Manajer aktivitas untuk Android. +> Informasi lebih lanjut: . + +- Mulaikan aktivitas tertentu: + +`am start -n {{com.android.settings/.Settings}}` + +- Mulaikan aktivitas dengan data yang ditentukan: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Mulaikan aktivitas dengan aksi dan kategori tertentu: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Ubah sebuah Intent menjadi tautan URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.id/android/bugreport.md b/pages.id/android/bugreport.md new file mode 100644 index 00000000000000..37f4e83f673b4d --- /dev/null +++ b/pages.id/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Tunjukkan sebuah laporan masalah bagi Android. +> Perintah ini hanya dapat digunakan di dalam `adb shell`. +> Informasi lebih lanjut: . + +- Tunjukkan laporan masalah perangkat Android secara lengkap: + +`bugreport` diff --git a/pages.id/android/bugreportz.md b/pages.id/android/bugreportz.md new file mode 100644 index 00000000000000..4677e0ee2dc0de --- /dev/null +++ b/pages.id/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Buat sebuah laporan masalah Android dalam format file arsip (zip). +> Perintah ini hanya dapat digunakan di dalam `adb shell`. +> Informasi lebih lanjut: . + +- Buatkan sebuah arsip laporan masalah perangkat Android secara lengkap: + +`bugreportz` + +- Tunjukkan kemajuan terhadap proses `bugreportz` yang sedang berlangsung: + +`bugreportz -p` + +- Tunjukkan versi program `bugreportz`: + +`bugreportz -v` + +- Tampilkan teks bantuan: + +`bugreportz -h` diff --git a/pages.id/android/cmd.md b/pages.id/android/cmd.md new file mode 100644 index 00000000000000..d861bf032b000d --- /dev/null +++ b/pages.id/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Manajer layanan (daemon) untuk Android. +> Informasi lebih lanjut: . + +- Lihat daftar layanan yang sedang berjalan: + +`cmd -l` + +- Panggil suatu layanan tertentu: + +`cmd {{alarm}}` + +- Panggil layanan dengan argumen tertentu: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.id/android/dalvikvm.md b/pages.id/android/dalvikvm.md new file mode 100644 index 00000000000000..18664773e511ce --- /dev/null +++ b/pages.id/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Mesin virtual Java untuk Android. +> Informasi lebih lanjut: . + +- Jalankan sebuah program Java: + +`dalvikvm -classpath {{jalan/menuju/file.jar}} {{nama_kelas}}` diff --git a/pages.id/android/dumpsys.md b/pages.id/android/dumpsys.md new file mode 100644 index 00000000000000..47e2a88b96a0c3 --- /dev/null +++ b/pages.id/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Berikan informasi tentang layanan (daemon) sistem milik Android. +> Perintah ini hanya dapat dijalankan melalui `adb shell`. +> Informasi lebih lanjut: . + +- Tampilkan informasi diagnostik terhadap seluruh layanan sistem Android: + +`dumpsys` + +- Tampilkan informasi diagnostik untuk layanan sistem tertentu: + +`dumpsys {{layanan}}` + +- Tampilkan daftar layanan sistem yang diketahui oleh `dumpsys`: + +`dumpsys -l` + +- Tampilkan daftar argumen yang diterima oleh sebuah layanan sistem: + +`dumpsys {{layanan}} -h` + +- Kecualikan layanan sistem tertentu dari informasi diagnostik yang ditampilkan: + +`dumpsys --skip {{layanan}}` + +- Tetapkan periode waktu habis dalam hitungan detik (10 detik secara default): + +`dumpsys -t {{detik}}` diff --git a/pages.id/android/getprop.md b/pages.id/android/getprop.md new file mode 100644 index 00000000000000..e81d5590fd187f --- /dev/null +++ b/pages.id/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Tampilkan informasi terhadap properti sistem operasi Android. +> Informasi lebih lanjut: . + +- Tampilkan informasi daftar properti sistem operasi Android: + +`getprop` + +- Tampilkan informasi terhadap properti sistem tertentu: + +`getprop {{properti}}` + +- Tampilkan tingkat API SDK Android: + +`getprop {{ro.build.version.sdk}}` + +- Tampilkan versi sistem operasi Android: + +`getprop {{ro.build.version.release}}` + +- Tampilkan kode model perangkat Android: + +`getprop {{ro.vendor.product.model}}` + +- Tampilkan status pembukaan kunci pembuat perangkat (OEM): + +`getprop {{ro.oem_unlock_supported}}` + +- Tampilkan alamat MAC terhadap komponen Wi-Fi milik perangkat: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.id/android/input.md b/pages.id/android/input.md new file mode 100644 index 00000000000000..d574a7e769095e --- /dev/null +++ b/pages.id/android/input.md @@ -0,0 +1,25 @@ +# input + +> Kirim sinyal input terhadap sebuah perangkat Android. +> Perintah ini hanya dapat dijalankan melalui `adb shell`. +> Informasi lebih lanjut: . + +- Masukkan input karakter (layaknya pada papan kunci / keyboard) terhadap perangkat Android: + +`input keyevent {{kode_event}}` + +- Masukkan input teks ke dalam perangkat Android (spasi ditandai dengan `%s`): + +`input text "{{teks}}"` + +- Masukkan input sentuhan layar pada posisi tertentu: + +`input tap {{posisi_x}} {{posisi_y}}` + +- Simulasikan gerakan usap/swipe terhadap perangkat Android: + +`input swipe {{posisi_awal_x}} {{posisi_awal_y}} {{posisi_akhir_x}} {{posisi_akhir_y}} {{durasi_dalam_milidetik}}` + +- Simulasikan interaksi tekan-dan-tahan terhadap perangkat Android: + +`input swipe {{posisi_x}} {{posisi_y}} {{posisi_x}} {{posisi_y}} {{durasi_dalam_milidetik}}` diff --git a/pages.id/android/logcat.md b/pages.id/android/logcat.md new file mode 100644 index 00000000000000..d58295c08bdd8f --- /dev/null +++ b/pages.id/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Tampilkan dan simpan log sistem. +> Informasi lebih lanjut: . + +- Tampilkan log sistem: + +`logcat` + +- Simpan log sistem di dalam sebuah file: + +`logcat -f {{path/to/file}}` + +- Saring informasi log berdasarkan sintaks ekspresi reguler (regex) tertentu: + +`logcat --regex {{regular_expression}}` diff --git a/pages.id/android/pkg.md b/pages.id/android/pkg.md new file mode 100644 index 00000000000000..e97318b37ce0aa --- /dev/null +++ b/pages.id/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Manajer paket untuk Termux. +> Informasi lebih lanjut: . + +- Mutakhirkan seluruh paket yang terpasang: + +`pkg upgrade` + +- Pasang sebuah paket di dalam instalasi Termux: + +`pkg install {{paket}}` + +- Buang paket dari instalasi Termux: + +`pkg uninstall {{paket}}` + +- Pasang ulang paket di dalam instalasi Termux: + +`pkg reinstall {{paket}}` + +- Cari paket yang tersedia bagi Termux: + +`pkg search {{paket}}` diff --git a/pages.id/android/pm.md b/pages.id/android/pm.md new file mode 100644 index 00000000000000..b111996a173550 --- /dev/null +++ b/pages.id/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Tampilkan daftar pemasangan aplikasi di dalam sebuah perangkat Android. +> Informasi lebih lanjut: . + +- Tampilkan daftar seluruh aplikasi yang terpasang: + +`pm list packages` + +- Tampilkan daftar seluruh aplikasi sistem yang terpasang: + +`pm list packages -s` + +- Tampilkan daftar seluruh aplikasi pihak ketiga yang terpasang: + +`pm list packages -3` + +- Tampilkan daftar aplikasi dengan kata kunci tertentu: + +`pm list packages {{kata_kunci}}` + +- Tampilkan jalan menuju file APK untuk sebuah aplikasi: + +`pm path {{aplikasi}}` diff --git a/pages.id/android/settings.md b/pages.id/android/settings.md new file mode 100644 index 00000000000000..bddcf24371cad7 --- /dev/null +++ b/pages.id/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Tampilkan informasi terhadap pengaturan sistem operasi Android. +> Informasi lebih lanjut: . + +- Tampilkan daftar pengaturan di dalam namespace `global`: + +`settings list {{global}}` + +- Tampilkan nilai dari pengaturan tertentu: + +`settings get {{global}} {{airplane_mode_on}}` + +- Setel nilai pengaturan tertentu: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Hapus nilai pengaturan tertentu: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.id/android/wm.md b/pages.id/android/wm.md new file mode 100644 index 00000000000000..dfbcfc0dca9a86 --- /dev/null +++ b/pages.id/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Menunjukkan informasi layar sebuah perangkat Android. +> Perintah ini hanya dapat dijalankan melalui `adb shell`. +> Informasi lebih lanjut: . + +- Tampilkan ukuran fisik terhadap layar perangkat: + +`wm {{size}}` + +- Tampilkan tingkat kepadatan resolusi terhadap layar perangkat: + +`wm {{density}}` diff --git a/pages.id/common/2to3.md b/pages.id/common/2to3.md new file mode 100644 index 00000000000000..44343e20b34c19 --- /dev/null +++ b/pages.id/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> Mengkonversikan kode Python 2 menuju file Python 3 secara otomatis. +> Informasi lebih lanjut: . + +- Menampilkan apa saja yang akan diubah tanpa mengubahnya secara langsung (dry-run): + +`2to3 {{jalan/menuju/file.py}}` + +- Mengkonversikan sebuah file Python 2 menuju file Python 3: + +`2to3 --write {{jalan/menuju/file.py}}` + +- Mengkonversikan fitur bahasa pemrograman Python 2 tertentu menuju Python 3: + +`2to3 --write {{jalan/menuju/file.py}} --fix={{raw_input}} --fix={{print}}` + +- Mengkonversikan seluruh fitur Python 2 menjadi Python 3, kecuali fitur-fitur tertentu: + +`2to3 --write {{jalan/menuju/file.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- Menampilkan daftar fitur-fitur bahasa pemrograman yang dapat dikonversikan dari Python 2 menuju Python 3: + +`2to3 --list-fixes` + +- Mengkonversikan seluruh file Python 2 menuju Python 3 di dalam sebuah direktori: + +`2to3 --output-dir={{jalan/menuju/direktori_python3}} --write-unchanged-files --nobackups {{jalan/menuju/direktori_python2}}` + +- Menjalankan program ini dengan lebih dari satu thread: + +`2to3 --processes={{4}} --output-dir={{jalan/menuju/direktori_python3}} --write --nobackups --no-diff {{jalan/menuju/direktori_python2}}` diff --git a/pages.id/common/7z.md b/pages.id/common/7z.md new file mode 100644 index 00000000000000..27d07e3913bc5a --- /dev/null +++ b/pages.id/common/7z.md @@ -0,0 +1,36 @@ +# 7z + +> Pengarsip file dengan rasio kompresi yang tinggi. +> Informasi lebih lanjut: . + +- Meng[a]rsipkan sebuah file atau direktori: + +`7z a {{jalan/menuju/arsip.7z}} {{jalan/menuju/file_atau_direktori}}` + +- Mengenkripsi sebuah file arsip (termasuk nama-nama file yang terkandung di dalamnya): + +`7z a {{jalan/menuju/arsip_terenkripsi.7z}} -p{{kata sandi}} -mhe=on {{jalan/menuju/arsip.7z}}` + +- Mengekstrak sebuah file arsip dengan mempertahankan struktur direktori asli: + +`7z x {{jalan/menuju/arsip.7z}}` + +- Mengekstrak sebuah file arsip ke dalam direktori yang ditentukan: + +`7z x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` + +- Mengekstrak sebuah file arsip menuju stdout: + +`7z x {{jalan/menuju/arsip.7z}} -so` + +- Meng[a]rsipkan file atau direktori menggunakan format file arsip tertentu: + +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{jalan/menuju/arsip.7z}} {{jalan/menuju/file_atau_direktori}}` + +- Me[l]ihat daftar isi dari sebuah file arsip: + +`7z l {{jalan/menuju/arsip.7z}}` + +- Mengetahui daftar format file arsip yang didukung: + +`7z i` diff --git a/pages.id/common/7za.md b/pages.id/common/7za.md new file mode 100644 index 00000000000000..60b03e4658e26e --- /dev/null +++ b/pages.id/common/7za.md @@ -0,0 +1,37 @@ +# 7za + +> 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: . + +- Meng[a]rsipkan sebuah file atau direktori: + +`7za a {{jalan/menuju/arsip.7z}} {{jalan/menuju/file_atau_direktori}}` + +- Mengenkripsi sebuah file arsip (termasuk nama-nama file yang terkandung di dalamnya): + +`7za a {{jalan/menuju/arsip_terenkripsi.7z}} -p{{kata sandi}} -mhe=on {{jalan/menuju/arsip.7z}}` + +- Mengekstrak sebuah file arsip dengan mempertahankan struktur direktori asli: + +`7za x {{jalan/menuju/arsip.7z}}` + +- Mengekstrak sebuah file arsip ke dalam direktori yang ditentukan: + +`7za x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` + +- Mengekstrak sebuah file arsip menuju stdout: + +`7za x {{jalan/menuju/arsip.7z}} -so` + +- Meng[a]rsipkan file atau direktori menggunakan format file arsip tertentu: + +`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{jalan/menuju/arsip.7z}} {{jalan/menuju/file_atau_direktori}}` + +- Me[l]ihat daftar isi dari sebuah file arsip: + +`7za l {{jalan/menuju/arsip.7z}}` + +- Mengetahui daftar format file arsip yang didukung: + +`7za i` diff --git a/pages.id/common/7zr.md b/pages.id/common/7zr.md new file mode 100644 index 00000000000000..d0c7b036cc0266 --- /dev/null +++ b/pages.id/common/7zr.md @@ -0,0 +1,33 @@ +# 7zr + +> Pengarsip file dengan rasio kompresi yang tinggi. +> Serupa dengan `7z` namun mendukung format file arsip `.7z` saja. +> Informasi lebih lanjut: . + +- Meng[a]rsipkan sebuah file atau direktori: + +`7zr a {{jalan/menuju/arsip.7z}} {{jalan/menuju/file_atau_direktori}}` + +- 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}}` + +- Mengekstrak sebuah file arsip dengan mempertahankan struktur direktori asli: + +`7zr x {{jalan/menuju/arsip.7z}}` + +- Mengekstrak sebuah file arsip ke dalam direktori yang ditentukan: + +`7zr x {{jalan/menuju/arsip.7z}} -o{{jalan/menuju/direktori}}` + +- Mengekstrak sebuah file arsip menuju stdout: + +`7zr x {{jalan/menuju/arsip.7z}} -so` + +- Me[l]ihat daftar isi dari sebuah file arsip: + +`7zr l {{jalan/menuju/arsip.7z}}` + +- Mengetahui daftar format file arsip yang didukung: + +`7zr i` diff --git a/pages.id/common/[.md b/pages.id/common/[.md new file mode 100644 index 00000000000000..76832aaece87e5 --- /dev/null +++ b/pages.id/common/[.md @@ -0,0 +1,25 @@ +# [ + +> Mengevaluasi syarat dalam perintah syel komputer. +> 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: + +`[ "{{$VARIABEL}}" == "{{/bin/zsh}}" ]` + +- Menguji apakah sebuah variable tidak memiliki nilai sama sekali (null): + +`[ -z "{{$VARIABEL}}" ]` + +- Menguji apakah sebuah file dapat ditemukan: + +`[ -f "{{jalan/menuju/file}}" ]` + +- Menguji apakah sebuah direktori dapat ditemukan: + +`[ ! -d "{{jalan/menuju/direktori}}" ]` + +- Pernyataan if-else di dalam syel: + +`[ {{syarat}} ] && {{echo "benar"}} || {{echo "salah"}}` diff --git a/pages.id/common/aapt.md b/pages.id/common/aapt.md index cc232f7024b7db..f26c3be96b8605 100644 --- a/pages.id/common/aapt.md +++ b/pages.id/common/aapt.md @@ -2,6 +2,7 @@ > Alat Pemaketan Android Asset. > Menyusun dan memaketkan resource aplikasi Android. +> Informasi lebih lanjut: . - Daftar berkas-berkas yang termuat dalam arsip APK: diff --git a/pages.id/common/adb.md b/pages.id/common/adb.md index 19ff588e3ce868..a2eb9d6a8cbb13 100644 --- a/pages.id/common/adb.md +++ b/pages.id/common/adb.md @@ -1,6 +1,7 @@ # adb > Android Debug Bridge: berkomunikasi dengan emulator Android atau perangkat Android terhubung. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `adb shell`. > Informasi lebih lanjut: . - Cek apakah proses server adb telah dimulai dan memulainya: diff --git a/pages.id/common/alacritty.md b/pages.id/common/alacritty.md index 215091f2dd87f9..8e3c375f7a8612 100644 --- a/pages.id/common/alacritty.md +++ b/pages.id/common/alacritty.md @@ -1,17 +1,17 @@ # alacritty > Lintas platform, terakselerasi GPU terminal emulator. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . -- Membuka jendela alacritty baru: +- Membuka jendela Alacritty baru: `alacritty` -- Menjalankan alacritty pada direktori tertentu: +- Menjalankan Alacritty pada direktori tertentu: `alacritty --working-directory {{alamat/ke/direktori}}` -- Menjalankan perintah di jendela alacritty baru: +- Menjalankan perintah di jendela Alacritty baru: `alacritty -e {{perintah}}` @@ -19,6 +19,6 @@ `alacritty --config-file {{alamat/ke/konfigurasi.yml}}` -- Menjalankan dengan mengaktifkan pemuatan ulang konfigurasi secara langsung/otomatis(dapat juga diaktifkan secara default di `alacritty.yml`): +- Menjalankan dengan mengaktifkan pemuatan ulang konfigurasi secara langsung/otomatis (dapat juga diaktifkan secara default di `alacritty.yml`): `alacritty --live-config-reload --config-file {{alamat/ke/konfigurasi.yml}}` diff --git a/pages.id/common/aria2c.md b/pages.id/common/aria2c.md new file mode 100644 index 00000000000000..41d8b7fdf17956 --- /dev/null +++ b/pages.id/common/aria2c.md @@ -0,0 +1,37 @@ +# aria2c + +> Utilitas unduhan cepat. +> Mendukung HTTP(S), FTP, SFTP, BitTorrent, dan Metalink. +> Informasi lebih lanjut: . + +- Unduh URI ke sebuah file: + +`aria2c {{url}}` + +- Unduh file yang ditunjuk oleh URI yang ditentukan dengan nama keluaran yang ditentukan: + +`aria2c --out={{nama_file}} {{url}}` + +- Unduh beberapa file (berbeda) secara paralel: + +`aria2c --force-sequential {{false}} {{url_1}} {{url_2}}` + +- Unduh dari berbagai sumber dengan setiap URI menunjuk ke file yang sama: + +`aria2c {{url_1}} {{url_2}}` + +- Unduh URI yang tercantum dalam file dengan unduhan paralel terbatas: + +`aria2c --input-file={{nama_file}} --max-concurrent-downloads={{jumlah_unduhan}}` + +- Unduh dengan banyak koneksi: + +`aria2c --split={{jumlah_koneksi}} {{url}}` + +- Unduhan FTP dengan nama pengguna dan kata sandi: + +`aria2c --ftp-user={{nama_pengguna}} --ftp-passwd={{kata_sandi}} {{url}}` + +- Batasi kecepatan unduh dalam bytes/detik: + +`aria2c --max-download-limit={{kecepatan}} {{url}}` diff --git a/pages.id/common/autojump.md b/pages.id/common/autojump.md new file mode 100644 index 00000000000000..1f6f0fc0b0efb4 --- /dev/null +++ b/pages.id/common/autojump.md @@ -0,0 +1,25 @@ +# autojump + +> Melompat secara cepat ke direktori-direktori yang paling sering anda kunjungi. +> Alias seperti j atau jc sudah disediakan untuk mengurangi pengetikan. +> Informasi lebih lanjut: . + +- Melompat ke direktori yang mengandung pola yang diberikan: + +`j {{pola}}` + +- Melompat ke sub-direktori (anak) dari direktori saat ini yang mengandung pola yang diberikan: + +`jc {{pola}}` + +- Membuka direktori yang mengandung pola yang diberikan dalam file manager dari sistem operasi: + +`jo {{pola}}` + +- Membuang direktori-direktori yang tidak lagi ada dari database autojump: + +`j --purge` + +- Menampilkan entri yang ada di database autojump: + +`j -s` diff --git a/pages.id/common/bat.md b/pages.id/common/bat.md new file mode 100644 index 00000000000000..bcb3b226e77cd2 --- /dev/null +++ b/pages.id/common/bat.md @@ -0,0 +1,29 @@ +# bat + +> Mencetak dan menggabungkan berkas. +> Klon dari `cat` dengan sintaks berwarna dan integrasi Git. +> Informasi lebih lanjut: . + +- Mencetak konten berkas ke keluaran standar: + +`bat {{berkas}}` + +- Menggabungkan konten beberapa berkas ke berkas tujuan: + +`bat {{berkas1}} {{berkas2}} > {{berkas_tujuan}}` + +- Menambahkan konten beberapa berkas ke berkas tujuan: + +`bat {{berkas1}} {{berkas2}} >> {{berkas_tujuan}}` + +- Memberi nomor pada setiap baris keluaran: + +`bat -n {{berkas}}` + +- Mencetak konten JSON dengan sintaks berwarna: + +`bat --language json berkas.json` + +- Menampilkan semua bahasa yang didukung: + +`bat --list-languages` diff --git a/pages.id/common/bundler.md b/pages.id/common/bundler.md new file mode 100644 index 00000000000000..1575ca3d791f13 --- /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/calc.md b/pages.id/common/calc.md new file mode 100644 index 00000000000000..663758db4b6330 --- /dev/null +++ b/pages.id/common/calc.md @@ -0,0 +1,36 @@ +# calc + +> Kalkulator interaktif dengan tingkat ketepatan tinggi untuk terminal. +> Informasi lebih lanjut: . + +- Jalankan program `calc` secara interaktif: + +`calc` + +- Lakukan perhitungan secara non-interaktif (input berasal dari teks): + +`calc '{{85 * (36 / 4)}}'` + +- Lakukan perhitungan dengan mengeluarkan hasil plainteks (tanpa format output apapun, untuk dapat digunakan di dalam perintah lainnya): + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- Lakukan perhitungan dan kemudian buka mode [i]nteraktif: + +`calc -i '{{sqrt(2)}}'` + +- Jalankan `calc` dengan [m]ode level perijinan tertentu (0 ke 7, 7 secara default): + +`calc -m {{mode}}` + +- Lihat panduan pengantar perintah `calc`: + +`calc help intro` + +- Lihat panduan ikhtisar `calc`: + +`calc help overview` + +- Lihat panduan perintah `calc`: + +`calc help` diff --git a/pages.id/common/cd.md b/pages.id/common/cd.md index 20a1bdaac1a8f9..265f39e0dd9ef9 100644 --- a/pages.id/common/cd.md +++ b/pages.id/common/cd.md @@ -1,7 +1,7 @@ # cd > Mengganti direktori yang dikunjungi saat ini. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Menuju ke direktori yang telah ditentukan: diff --git a/pages.id/common/chmod.md b/pages.id/common/chmod.md new file mode 100644 index 00000000000000..bc4a86fdb309cb --- /dev/null +++ b/pages.id/common/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> Mengubah hak akses pengguna suatu file atau direktori. +> Informasi lebih lanjut: . + +- Berikan pengguna pembuat file hak untuk mengeksekusinya (misal: sebagai script): + +`chmod u+x {{file}}` + +- Berikan hak kepada pengguna untuk membaca ([r]ead) dan menulis ([w]rite) suatu file atau direktori: + +`chmod u+rw {{jalan/menuju/file_atau_direktori}}` + +- Hentikan hak akses terhadap [g]rup untuk mengeksekusi suatu file: + +`chmod g-x {{jalan/menuju/file}}` + +- Berikan semua pengguna hak untuk membaca dan mengeksekusi suatu file: + +`chmod a+rx {{jalan/menuju/file}}` + +- Berikan hak-hak akses suatu file yang sama dari [g]rup kepada pengguna di luar grup ([o]thers): + +`chmod o=g {{jalan/menuju/file}}` + +- Hentikan semua hak akses suatu file: + +`chmod o= {{jalan/menuju/file}}` + +- Berikan hak tulis suatu direktori bagi [g]rup dan lainnya secara [R]ekursif (termasuk seluruh file yang terkandung di dalamnya): + +`chmod -R g+w,o+w {{jalan/menuju/direktori}}` + +- Berikan hak semua pengguna untuk membaca seluruh file dan mengeksekusi para sub-direktori dalam suatu direktori: + +`chmod -R a+rX {{jalan/menuju/direktori}}` diff --git a/pages.id/common/clamav.md b/pages.id/common/clamav.md new file mode 100644 index 00000000000000..0019a0a0c8d00e --- /dev/null +++ b/pages.id/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Perintah ini merupakan alias dari `clamdscan`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr clamdscan` diff --git a/pages.id/common/clang-cpp.md b/pages.id/common/clang-cpp.md new file mode 100644 index 00000000000000..641fbd1dcb7ade --- /dev/null +++ b/pages.id/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Perintah ini merupakan alias dari `clang++`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr clang++` diff --git a/pages.id/common/clojure.md b/pages.id/common/clojure.md new file mode 100644 index 00000000000000..a6a17c7495d0b0 --- /dev/null +++ b/pages.id/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Perintah ini merupakan alias dari `clj`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr clj` diff --git a/pages.id/common/cola.md b/pages.id/common/cola.md new file mode 100644 index 00000000000000..0405f6b410c6b0 --- /dev/null +++ b/pages.id/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Perintah ini merupakan alias dari `git-cola`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr git-cola` diff --git a/pages.id/common/composer.md b/pages.id/common/composer.md new file mode 100644 index 00000000000000..0ba66a277310cd --- /dev/null +++ b/pages.id/common/composer.md @@ -0,0 +1,36 @@ +# composer + +> Manajer paket untuk proyek PHP. +> Informasi lebih lanjut: . + +- Membuat file `composer.json` secara interaktif: + +`composer init` + +- Menambahkan paket sebagai dependensi untuk proyek ini, menambahkan ke `composer.json`: + +`composer require {{user/nama_paket}}` + +- Menginstal semua dependensi dalam `composer.json` proyek ini dan membuat `composer.lock`: + +`composer install` + +- Menghapus sebuah paket dari proyek ini, menghapus paket tersebut sebagai ketergantungan dari `composer.json`: + +`composer remove {{user/nama_paket}}` + +- Memperbarui semua dependensi dalam `composer.json` proyek ini dan memperbarui versi di file `composer.lock`: + +`composer update` + +- Memperbarui `composer.lock` setelah mengubah `composer.json` secara manual: + +`composer update --lock` + +- Memcari tahu mengapa sebuah dependensi tidak dapat diinstal: + +`composer why-not {{user/nama_paket}}` + +- Memperbarui composer ke versi terbaru: + +`composer self-update` diff --git a/pages.id/common/cron.md b/pages.id/common/cron.md new file mode 100644 index 00000000000000..b87d1582164ff5 --- /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/curl.md b/pages.id/common/curl.md index 9cb3edefa1b589..91c93d8b43c9be 100644 --- a/pages.id/common/curl.md +++ b/pages.id/common/curl.md @@ -6,31 +6,31 @@ - Unduh konten URL ke file: -`curl {{http://contoh.com}} -o {{namafile}}` +`curl {{http://contoh.com}} --output {{namafile}}` - Unduh file, simpan hasilnya dengan nama file yang ditentukan oleh URL: -`curl -O {{http://contoh.com/namafile}}` +`curl --remote-name {{http://contoh.com/namafile}}` -- Unduh file, mengikuti pengalihan [L] okasi, dan secara otomatis [C] melanjutkan transfer file sebelumnya: +- Unduh file, mengikuti pengalihan lokasi, dan secara otomatis melanjutkan transfer file sebelumnya: -`curl -O -L -C - {{http://contoh.com/filename}}` +`curl --remote-name --location --continue-at - {{http://contoh.com/filename}}` -- Mengirim data form yang telah di encode (permintaan POST atau tipe data `application/x-www-form-urlencoded`). Gunakan `-d @file_name` atau `-d @'-'` untuk membaca dari STDIN: +- Mengirim data form yang telah di encode (permintaan POST atau tipe data `application/x-www-form-urlencoded`). Gunakan `--data @file_name` atau `--data @'-'` untuk membaca dari STDIN: -`curl -d {{'name=bob'}} {{http://contoh.com/form}}` +`curl --data {{'name=bob'}} {{http://contoh.com/form}}` - Mengirim sebuah permintaan dengan header tambahan, menggunakan metode HTTP kustom: -`curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://contoh.com}}` +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://contoh.com}}` - Mengirim data dalam format JSON, Menentukan jenis konten yang sesuai header: -`curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://contoh.com/users/1234}}` +`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://contoh.com/users/1234}}` - Memberikan nama pengguna dan kata sandi untuk otentikasi server: -`curl -u myusername:mypassword {{http://contoh.com}}` +`curl --user myusername:mypassword {{http://contoh.com}}` - Memberikan sertifikat klien dan kunci untuk sumber daya, melewati validasi sertifikat: diff --git a/pages.id/common/deno.md b/pages.id/common/deno.md index b95a146aba91ec..732ff289e423c3 100644 --- a/pages.id/common/deno.md +++ b/pages.id/common/deno.md @@ -1,7 +1,7 @@ # deno > Runtime aman untuk JavaScript dan TypeScript. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Menjalankan berkas JavaScript atau TypeScript: diff --git a/pages.id/common/docker.md b/pages.id/common/docker.md index cdd78d1946a6d1..18e39e61e7b517 100644 --- a/pages.id/common/docker.md +++ b/pages.id/common/docker.md @@ -1,6 +1,7 @@ # docker > Mengatur kontainer Docker dan image. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `docker run`. > Informasi lebih lanjut: . - Menampilkan semua daftar kontainer docker yang sedang berjalan: diff --git a/pages.id/common/fossil-ci.md b/pages.id/common/fossil-ci.md new file mode 100644 index 00000000000000..cc683309a8ae78 --- /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 00000000000000..c29b25bcc2c470 --- /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 00000000000000..a19b5f688e187c --- /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 00000000000000..1836bc710f52a6 --- /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/fuck.md b/pages.id/common/fuck.md new file mode 100644 index 00000000000000..8c142083976f9b --- /dev/null +++ b/pages.id/common/fuck.md @@ -0,0 +1,16 @@ +# fuck + +> Mengoreksi perintah konsol sebelumnya. +> Informasi lebih lanjut: . + +- Memasang `fuck` alias ke alat `thefuck`: + +`eval "$(thefuck --alias)"` + +- Mencoba mencocokkan aturan untuk perintah sebelumnya: + +`fuck` + +- Langsung memilih pilihan pertama (argumen yang benar tergantung dari tingkat kejengkelan): + +`fuck --{{yes|yeah|hard}}` diff --git a/pages.id/common/g++.md b/pages.id/common/g++.md new file mode 100644 index 00000000000000..066735bed3aaef --- /dev/null +++ b/pages.id/common/g++.md @@ -0,0 +1,21 @@ +# g++ + +> Kompilasi sumber kode C++. +> Bagian dari GCC (GNU Compiler Collection). +> Informasi lebih lanjut: . + +- Mengubah berkas sumber kode menjadi program: + +`g++ {{jalan/menuju/sumber.cpp}} -o {{jalan/menuju/program}}` + +- Menampilkan (hampir) semua kesalahan dan peringatan: + +`g++ {{jalan/menuju/sumber.cpp}} -Wall -o {{jalan/menuju/program}}` + +- Memilih standar bahasa untuk dikompilasi (C++98/C++11/C++14/C++17): + +`g++ {{jalan/menuju/sumber.cpp}} -std={{standar_bahasa}} -o {{jalan/menuju/program}}` + +- Menyertakan pustaka di direktori yang berbeda: + +`g++ {{jalan/menuju/sumber.cpp}} -o {{jalan/menuju/program}} -I{{jalur_header}} -L{{jalur_pustaka}} -l{{nama_pustaka}}` diff --git a/pages.id/common/gcc.md b/pages.id/common/gcc.md new file mode 100644 index 00000000000000..cc45a71ebb41ac --- /dev/null +++ b/pages.id/common/gcc.md @@ -0,0 +1,24 @@ +# gcc + +> Praproses dan kompilasi kode sumber C dan C++, lalu rakit dan gabungkan bersama-sama. +> Informasi lebih lanjut: . + +- Mengubah beberapa sumber kode menjadi program: + +`gcc {{sumber1.c}} {{sumber2.c}} --output {{program}}` + +- Mengizinkan peringatan dan simbol debug di output: + +`gcc {{sumber.c}} -Wall -Og --output {{program}}` + +- Menyertakan pustaka dari direktori yang berbeda: + +`gcc {{sumber.c}} --output {{program}} -I{{jalur_header}} -L{{jalur_pustaka}} -l{{nama_pustaka}}` + +- Mengkompilasi kode sumber ke dalam bahasa tingkat rendah (assembly): + +`gcc -S {{sumber.c}}` + +- Mengkompilasi kode sumber tanpa digabungkan: + +`gcc -c {{sumber.c}}` diff --git a/pages.id/common/gdb.md b/pages.id/common/gdb.md new file mode 100644 index 00000000000000..a9fe128e662574 --- /dev/null +++ b/pages.id/common/gdb.md @@ -0,0 +1,24 @@ +# gdb + +> GNU Debugger. +> Informasi lebih lanjut: . + +- Menjalankan debug pada sebuah berkas yang dapat dieksekusi: + +`gdb {{berkas_exe}}` + +- Menambahkan sebuah proses pada gdb: + +`gdb -p {{berkas_exe}}` + +- Menjalankan debug dengan berkas core: + +`gdb -c {{core}} {{berkas_exe}}` + +- Mengeksekusi perintah GDB pada saat dijanlakan: + +`gdb -ex "{{perintah}}" {{berkas_exe}}` + +- Menjalankan gdb dan melemparkan argumen pada berkas yang dieksekusi: + +`gdb --args {{berkas_exe}} {{argumen1}} {{argumen2}}` diff --git a/pages.id/common/gh-cs.md b/pages.id/common/gh-cs.md new file mode 100644 index 00000000000000..5be02cc7d64fcf --- /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/gh.md b/pages.id/common/gh.md new file mode 100644 index 00000000000000..9549f1fc989406 --- /dev/null +++ b/pages.id/common/gh.md @@ -0,0 +1,37 @@ +# gh + +> Memudahkan pengaksesan GitHub dari command-line. +> Beberapa subcommands seperti `gh config` memiliki dokumentasi sendiri. +> Informasi lebih lanjut: . + +- Mengklon sebuah GitHub repositori di lokal: + +`gh repo clone {{pemilik}}/{{repositori}}` + +- Membuat isu baru: + +`gh issue create` + +- Melihat dan filter issue yang sedang open pada repositori: + +`gh issue list` + +- Melihat isu di browser: + +`gh issue view --web {{nomor_isu}}` + +- Membuat sebuah pull request: + +`gh pr create` + +- Melihat pull request di browser: + +`gh pr view --web {{nomor_pr}}` + +- Mengecek pada local branch sebuah pull request, diikuti dengan nomor pull requestnya: + +`gh pr checkout {{nomor_pr}}` + +- Mengecek status pull request pada sebuah repository: + +`gh pr status` diff --git a/pages.id/common/git-branch.md b/pages.id/common/git-branch.md index 3b5758261e3865..21dccd43cf591f 100644 --- a/pages.id/common/git-branch.md +++ b/pages.id/common/git-branch.md @@ -1,17 +1,17 @@ # git branch -> Perintah Git utama untuk bekerja dengan cabang (*branch*). +> Perintah Git utama untuk bekerja dengan cabang (_branch_). > Informasi lebih lanjut: . -- Menampilkan daftar cabang lokal. Cabang saat ini ditandai oleh `*`: +- Tampilkan daftar semua cabang (lokal dan remote; cabang saat ini ditandai oleh `*`) : -`git branch` +`git branch --all` -- Menampilkan daftar semua cabang (lokal dan remote): +- Tampilkan daftar semua cabang yang memiliki komit Git tertentu di dalam riwayat: -`git branch -a` +`git branch --all --contains {{hash_komit}}` -- Tunjukkan nama cabang saat ini: +- Tampilkan nama cabang saat ini: `git branch --show-current` @@ -23,7 +23,7 @@ `git branch {{nama_cabang}} {{hash_komit}}` -- Ganti nama cabang (harus bukan cabang saat ini untuk melakukannya): +- Ubah nama cabang (harus bukan cabang saat ini untuk melakukannya): `git branch -m {{nama_cabang_lama}} {{nama_cabang_baru}}` diff --git a/pages.id/common/git-clone.md b/pages.id/common/git-clone.md index 69455b829dee7c..3ea71b1668fe8e 100644 --- a/pages.id/common/git-clone.md +++ b/pages.id/common/git-clone.md @@ -1,24 +1,36 @@ # git clone -> Mengkloning repositori yang ada. +> Klon repositori yang ada. > Informasi lebih lanjut: . -- Mengkloning repositori yang ada: +- Klon repositori yang ada: `git clone {{lokasi_repositori_remote}}` -- Mengkloning reposiori yang ada dan submodulenya: +- Klon repositori yang ada ke direktori tertentu: + +`git clone {{lokasi_repositori_remote}} {{jalan/menuju/direktori}}` + +- Klon repositori yang ada dan submodulnya: `git clone --recursive {{lokasi_repositori_remote}}` -- Mengkloning repositori lokal: +- Klon repositori lokal: -`git clone -l {{alamat/ke/repository/lokal}}` +`git clone -l {{jalan/menuju/repositori/lokal}}` -- Mengkloning dengan senyap: +- Klon dengan senyap: `git clone -q {{lokasi_repositori_remote}}` -- Mengkloning repositori yang sudah ada dengan hanya mengambil 10 komit paling baru pada branch default (berguna untuk menghemat waktu): +- Klon repositori yang sudah ada dengan hanya mengambil 10 komit paling baru pada branch bawaan (berguna untuk menghemat waktu): `git clone --depth {{10}} {{lokasi_repositori_remote}}` + +- Klon repositori yang sudah ada dengan hanya mengambil dari cabang tertentu: + +`git clone --branch {{name}} --single-branch {{lokasi_repositori_remote}}` + +- Klon repositori yang sudah ada menggunakan perintah SSH tertentu: + +`git clone --config core.sshCommand="{{ssh -i jalan/menuju/kunci_ssh_pribadi}}" {{lokasi_repositori_remote}}` diff --git a/pages.id/common/git-pull.md b/pages.id/common/git-pull.md new file mode 100644 index 00000000000000..0c4e9d2be39552 --- /dev/null +++ b/pages.id/common/git-pull.md @@ -0,0 +1,16 @@ +# git pull + +> Tarik cabang dari repositori remote and menggabungkan ke repositori lokal. +> Informasi lebih lanjut: . + +- Unduh perubahan dari bawaan repositori remote dan menggabungkannya: + +`git pull` + +- Unduh perubahan dari bawaan repositori remote dan menggunakan maju cepat: + +`git pull --rebase` + +- Unduh perubahan dari repositori remote dan cabang yang diberikan, kemudian menggabungkannya ke HEAD: + +`git pull {{nama_remote}} {{cabang}}` diff --git a/pages.id/common/git.md b/pages.id/common/git.md index 7fad0da548667d..c3aeb23f02449d 100644 --- a/pages.id/common/git.md +++ b/pages.id/common/git.md @@ -1,6 +1,7 @@ # git > Sistem kontrol versi terdistribusi. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `git commit`. > Informasi lebih lanjut: . - Memeriksa versi Git: diff --git a/pages.id/common/gnmic-sub.md b/pages.id/common/gnmic-sub.md new file mode 100644 index 00000000000000..4651626742c705 --- /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 00000000000000..57a3b46ff4095d --- /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/history.md b/pages.id/common/history.md new file mode 100644 index 00000000000000..799d9778aec5e3 --- /dev/null +++ b/pages.id/common/history.md @@ -0,0 +1,24 @@ +# history + +> Sejarah command-line. +> Informasi lebih lanjut: . + +- Menampilkan sejarah perintah-perintah dengan angka baris: + +`history` + +- Menampilkan 20 perintah-perintah terakhir (di `zsh` perintah ini menampilkan semua perintah-perintah sejak dari baris ke-20): + +`history {{20}}` + +- Menghapus sejarah perintah-perintah (hanya untuk sesi shell `bash` saat ini): + +`history -c` + +- Menulis ulang file sejarah dengan sejarah sesi shell `bash` saat ini (seringkali dikombinasikan dengan `history -c` untuk menghapus sejarah): + +`history -w` + +- Menghapus entri sejarah pada offset tertentu: + +`history -d {{offset}}` diff --git a/pages.id/common/htop.md b/pages.id/common/htop.md new file mode 100644 index 00000000000000..f4bb15235bd55d --- /dev/null +++ b/pages.id/common/htop.md @@ -0,0 +1,28 @@ +# htop + +> Menampilkan informasi waktu nyata dinamis tentang proses yang berjalan. Versi `top` yang disempurnakan. +> Informasi lebih lanjut: . + +- Mulai htop: + +`htop` + +- Mulai htop menampilkan proses yang dimiliki oleh pengguna tertentu: + +`htop --user {{nama_pengguna}}` + +- Urutkan proses berdasarkan `sort_item` yang ditentukan (gunakan `htop --sort help` untuk opsi yang tersedia ): + +`htop --sort {{sort_item}}` + +- Lihat perintah interaktif saat menjalankan htop: + +`?` + +- Beralih ke tab lain: + +`tab` + +- Tampilkan bantuan: + +`htop --help` diff --git a/pages.id/common/hx.md b/pages.id/common/hx.md new file mode 100644 index 00000000000000..874490a67d22b5 --- /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 cd4ba3f77ca139..b36bb71f053ffa 100644 --- a/pages.id/common/java.md +++ b/pages.id/common/java.md @@ -1,24 +1,28 @@ # java > Peluncur Aplikasi Java. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . -- Menjalankan berkas java `.class` yang mengandung method main dengan hanya menggunakan nama class: +- Jalankan berkas java `.class` yang mengandung method main dengan hanya menggunakan nama class: `java {{nama_class}}` -- Menjalankan program `.jar`: +- Jalankan sebuah program java menggunakan berkas-berkas `.class` eksternal dan tambahan: + +`java -classpath {{jalan/menuju/direktori_class1}}:{{jalan/menuju/direktori_class2}}:. {{nama_class}}` + +- Jalankan program `.jar`: `java -jar {{nama_berkas.jar}}` -- Menjalankan program `.jar` dengan menunggu debugger terhubung ke port 5005: +- Jalankan program `.jar` dengan menunggu debugger terhubung ke port 5005: `java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{nama_berkas.jar}}` -- Menampilkan versi JDK, JRE dan HotSpot: +- Tampilkan versi JDK, JRE dan HotSpot: `java -version` -- Menampilkan informasi penggunaan untuk perintah java: +- Tampilkan informasi penggunaan untuk perintah java: `java -help` diff --git a/pages.id/common/kafkacat.md b/pages.id/common/kafkacat.md new file mode 100644 index 00000000000000..8f6f93d6f76c28 --- /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/laravel-zero.md b/pages.id/common/laravel-zero.md index d3bbf08122a694..09ee61edd67d38 100644 --- a/pages.id/common/laravel-zero.md +++ b/pages.id/common/laravel-zero.md @@ -1,6 +1,6 @@ # laravel-zero -> Pemasang Laravel Zero framework berbasis command line. +> Pemasang Laravel Zero framework berbasis command-line. > Informasi lebih lanjut: . - Buat aplikasi Laravel Zero baru: diff --git a/pages.id/common/laravel.md b/pages.id/common/laravel.md index f60cd05692f625..0fb85370dca7fb 100644 --- a/pages.id/common/laravel.md +++ b/pages.id/common/laravel.md @@ -1,6 +1,6 @@ # laravel -> Pemasang Laravel framework berbasis command line. +> Pemasang Laravel framework berbasis command-line. > Informasi lebih lanjut: . - Buat aplikasi Laravel baru: diff --git a/pages.id/common/ld.md b/pages.id/common/ld.md new file mode 100644 index 00000000000000..2aa8b099707cde --- /dev/null +++ b/pages.id/common/ld.md @@ -0,0 +1,16 @@ +# ld + +> Menghubungkan file-file obyek berbarengan. +> Informasi lebih lanjut: . + +- Menghubungkan file obyek tertentu yang tidak memiliki kebergantungan ke suatu executable: + +`ld {{jalan/menuju/file.o}} --output {{jalan/menuju/output_executable}}` + +- Menghubungkan 2 file obyek berbarengan: + +`ld {{jalan/menuju/file1.o}} {{jalan/menuju/file2.o}} --output {{jalan/menuju/output_executable}}` + +- Menghubungkan secara dinamis sebuah program x86_64 ke glibc (jalan-jalan file berubah bergantung pada sistem): + +`ld --output {{jalan/menuju/output_executable}} --dynamic-linker /lib/ld-linux-x86-64.so.2 /lib/crt1.o /lib/crti.o -lc {{jalan/menuju/file.o}} /lib/crtn.o` diff --git a/pages.id/common/llvm-ar.md b/pages.id/common/llvm-ar.md new file mode 100644 index 00000000000000..c1adf3f1d38d4a --- /dev/null +++ b/pages.id/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Perintah ini merupakan alias dari `ar`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr ar` diff --git a/pages.id/common/llvm-g++.md b/pages.id/common/llvm-g++.md new file mode 100644 index 00000000000000..c453226ed01fce --- /dev/null +++ b/pages.id/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Perintah ini merupakan alias dari `clang++`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr clang++` diff --git a/pages.id/common/llvm-gcc.md b/pages.id/common/llvm-gcc.md new file mode 100644 index 00000000000000..601626ac227981 --- /dev/null +++ b/pages.id/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Perintah ini merupakan alias dari `clang`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr clang` diff --git a/pages.id/common/llvm-nm.md b/pages.id/common/llvm-nm.md new file mode 100644 index 00000000000000..77e94315cae0ba --- /dev/null +++ b/pages.id/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Perintah ini merupakan alias dari `nm`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr nm` diff --git a/pages.id/common/llvm-objdump.md b/pages.id/common/llvm-objdump.md new file mode 100644 index 00000000000000..830a14df2c90e3 --- /dev/null +++ b/pages.id/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Perintah ini merupakan alias dari `objdump`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr objdump` diff --git a/pages.id/common/llvm-strings.md b/pages.id/common/llvm-strings.md new file mode 100644 index 00000000000000..4f8530764e18ff --- /dev/null +++ b/pages.id/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Perintah ini merupakan alias dari `strings`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr strings` diff --git a/pages.id/common/lzcat.md b/pages.id/common/lzcat.md new file mode 100644 index 00000000000000..7ea29d1877a7bd --- /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 00000000000000..224112cbb3598f --- /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/mscore.md b/pages.id/common/mscore.md new file mode 100644 index 00000000000000..6190070de58292 --- /dev/null +++ b/pages.id/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Perintah ini merupakan alias dari `musescore`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr musescore` diff --git a/pages.id/common/nm-classic.md b/pages.id/common/nm-classic.md new file mode 100644 index 00000000000000..b3ea6eb4dc22c3 --- /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/npm.md b/pages.id/common/npm.md index 5077e23b0951b7..d7bf0d2844e62c 100644 --- a/pages.id/common/npm.md +++ b/pages.id/common/npm.md @@ -2,7 +2,7 @@ > Manajer paket JavaScript dan Node.js. > Mengelola proyek Node.js dan dependensi modulnya. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Membuat file `package.json` secara interaktif: @@ -22,7 +22,7 @@ - Unduh paket dan instal secara global: -`npm install -g {{nama_modul}}` +`npm install --global {{nama_modul}}` - Copot pemasangan paket dan hapus dari daftar dependensi di `package.json`: @@ -34,4 +34,4 @@ - Buat daftar modul tingkat atas yang diinstal secara global: -`npm list -g --depth={{0}}` +`npm list --global --depth={{0}}` diff --git a/pages.id/common/ntl.md b/pages.id/common/ntl.md new file mode 100644 index 00000000000000..b0d3c5f97a4ab2 --- /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/nvim.md b/pages.id/common/nvim.md index 76660e99eb3ee5..d2267f507fc23d 100644 --- a/pages.id/common/nvim.md +++ b/pages.id/common/nvim.md @@ -24,9 +24,9 @@ `/{{pattern_pencarian}}` -- Melakukan penggantian regex pada seluruh berkas: +- Melakukan penggantian ekspresi reguler pada seluruh berkas: -`:%s/{{pattern}}/{{pengganti}}/g` +`:%s/{{ekspresi_reguler}}/{{pengganti}}/g` - Menyimpan (write) berkas, dan keluar: diff --git a/pages.id/common/nvm.md b/pages.id/common/nvm.md new file mode 100644 index 00000000000000..587eee39f7dc21 --- /dev/null +++ b/pages.id/common/nvm.md @@ -0,0 +1,33 @@ +# nvm + +> Memasang, melepas, atau mengganti versi Node.js yang dipakai. +> Mendukung nomor versi seperti "12.8" or "v16.13.1", dan label versi seperti "stable", "system", dsb. +> Informasi lebih lanjut: . + +- Memasang versi Node.js yang ditentukan: + +`nvm install {{versi_node_js}}` + +- Menggunakan versi Node.js tertentu untuk sesi saat ini: + +`nvm use {{versi_node_js}}` + +- Menyetel versi Node.js secara default: + +`nvm alias default {{versi_node_js}}` + +- Menunjukkan daftar versi Node.js yang tersedia dan versi Node.js yang disetel sebagai default: + +`nvm list` + +- Menghapus sebuah versi Node.js yang terpasang melalui `nvm`: + +`nvm uninstall {{versi_node_js}}` + +- Menjalankan interpreter (REPL) Node.js dengan versi tertentu: + +`nvm run {{versi_node_js}} --version` + +- Menjalankan sebuah file atau aplikasi JavaScript di dalam Node.js versi tertentu: + +`nvm exec {{versi_node_js}} node {{app.js}}` diff --git a/pages.id/common/ping.md b/pages.id/common/ping.md new file mode 100644 index 00000000000000..7792aaf8697a79 --- /dev/null +++ b/pages.id/common/ping.md @@ -0,0 +1,28 @@ +# ping + +> Mengirim paket-paket ICMP ECHO_REQUEST ke host dalam jaringan. +> Informasi lebih lanjut: . + +- Ping host: + +`ping {{host}}` + +- Ping host dalam jumlah kali tertentu: + +`ping -c {{jumlah}} {{host}}` + +- Ping host, dengan menentukan interval dalam sekian detik di antara request (asalnya 1 detik): + +`ping -i {{jumlah-detik}} {{host}}` + +- Ping host tanpa mencoba untuk melihat alamat dari nama-nama simbolis: + +`ping -n {{host}}` + +- Ping host dan membunyikan bel saat paket diterima (jika terminal anda mendukungnya): + +`ping -a {{host}}` + +- Menampilkan juga pesan jika tidak ada respon yang diterima: + +`ping -O {{host}}` diff --git a/pages.id/common/pio-init.md b/pages.id/common/pio-init.md new file mode 100644 index 00000000000000..98f2462418243c --- /dev/null +++ b/pages.id/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Perintah ini merupakan alias dari `pio project`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr pio project` diff --git a/pages.id/common/piodebuggdb.md b/pages.id/common/piodebuggdb.md new file mode 100644 index 00000000000000..b8b202437381bc --- /dev/null +++ b/pages.id/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Perintah ini merupakan alias dari `pio debug`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr pio debug` diff --git a/pages.id/common/pip.md b/pages.id/common/pip.md index c16dcc7d268f85..6bfd00864c3d47 100644 --- a/pages.id/common/pip.md +++ b/pages.id/common/pip.md @@ -1,6 +1,7 @@ # pip > Pengelola paket Python. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `pip install`. > Informasi lebih lanjut: . - Memasang paket: @@ -11,9 +12,13 @@ `pip install {{nama_paket}}=={{versi_paket}}` +- Memasang paket untuk hanya digunakan oleh pengguna saat ini: + +`pip install --user {{nama_paket}}` + - Meningkatakan paket ke versi terbaru: -`pip install -U {{nama_paket}}` +`pip install --upgrade {{nama_paket}}` - Mencopot pemasangan paket: @@ -25,7 +30,7 @@ - Memasang paket dari berkas: -`pip install -r {{requirements.txt}}` +`pip install --requirement {{requirements.txt}}` - Menampilkan informasi paket terpasang: diff --git a/pages.id/common/pip3.md b/pages.id/common/pip3.md index bc7fc085815344..f5f9e67f15b8ce 100644 --- a/pages.id/common/pip3.md +++ b/pages.id/common/pip3.md @@ -29,7 +29,7 @@ - Memasang paket dari berkas: -`pip3 install --requirements {{requirements.txt}}` +`pip3 install --requirement {{requirements.txt}}` - Menampilkan informasi paket terinstal: diff --git a/pages.id/common/platformio.md b/pages.id/common/platformio.md new file mode 100644 index 00000000000000..7450b6a9ae9ff9 --- /dev/null +++ b/pages.id/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Perintah ini merupakan alias dari `pio`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr pio` diff --git a/pages.id/common/pm2.md b/pages.id/common/pm2.md new file mode 100644 index 00000000000000..62edd641782b2d --- /dev/null +++ b/pages.id/common/pm2.md @@ -0,0 +1,33 @@ +# pm2 + +> Manajer proses untuk Node.js +> Digunakan untuk manajemen log, pemantauan, dan pengaturan proses. +> Informasi lebih lanjut: . + +- Memulai prooses dengan nama yang dapat digunakan untuk operasi selanjutnya: + +`pm2 start {{app.js}} --name {{nama_aplikasi}}` + +- Tampilkan daftar proses: + +`pm2 list` + +- Pantau semua proses: + +`pm2 monit` + +- Menghentikan sebuah proses: + +`pm2 stop {{nama_aplikasi}}` + +- Memulai ulang sebuah proses: + +`pm2 restart {{nama_aplikasi}}` + +- Membuang semua proses dan menghidupkan mereka kembali nanti: + +`pm2 save` + +- Menghidupkan kembali proses yang sebelumnya dibuang: + +`pm2 resurrect` diff --git a/pages.id/common/pnpm.md b/pages.id/common/pnpm.md new file mode 100644 index 00000000000000..9ccd06bd374fc5 --- /dev/null +++ b/pages.id/common/pnpm.md @@ -0,0 +1,37 @@ +# pnpm + +> Manajer paket JavaScript dan Node.js yang cepat dan efisien. +> Mengelola proyek Node.js dan dependensi modulnya. +> Informasi lebih lanjut: . + +- Buat file `package.json` file: + +`pnpm init` + +- Unduh semua paket yang terdaftar sebagai dependensi di package.json: + +`pnpm install` + +- Unduh versi tertentu dari sebuah paket dan menambahkan ke daftar dependensi di package.json: + +`pnpm add {{nama_modul}}@{{versi}}` + +- Unduh paket dan menambahkan ke daftar dependensi [D]ev di package.json: + +`pnpm add -D {{module_name}}` + +- Unduh paket dan instal secara [g]lobal: + +`pnpm add -g {{module_name}}` + +- Copot pemasangan paket dan hapus dari daftar dependensi di package.json: + +`pnpm remove {{module_name}}` + +- Mencetak pohon dependensi yang diinstal secara lokal: + +`pnpm list` + +- Buat daftar modul tingkat atas yang diinstal secara [g]lobal: + +`pnpm list -g --depth={{0}}` diff --git a/pages.id/common/ps.md b/pages.id/common/ps.md new file mode 100644 index 00000000000000..028d0455a78686 --- /dev/null +++ b/pages.id/common/ps.md @@ -0,0 +1,32 @@ +# ps + +> Informasi tentang proses-proses yang berlangsung. +> Informasi lebih lanjut: . + +- Menampilkan daftar semua proses yang berlangsung: + +`ps aux` + +- Menampilkan daftar semua proses yang berlangsung termasuk _string_ perintah secara utuh: + +`ps auxww` + +- Mencari proses yang sesuai dengan _string_: + +`ps aux | grep {{string}}` + +- Menampilkan daftar semua proses pengguna yang berlangsung dengan format tambahan yang utuh: + +`ps --user $(id -u) -F` + +- Menampilkan daftar semua proses pengguna yang berlangsung sebagai pohon: + +`ps --user $(id -u) f` + +- Mengambil induk PID dari sebuah proses: + +`ps -o ppid= -p {{pid}}` + +- Sortir proses berdasarkan konsumsi memori: + +`ps --sort size` diff --git a/pages.id/common/ptpython3.md b/pages.id/common/ptpython3.md new file mode 100644 index 00000000000000..2b1898f96ce8f0 --- /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 00000000000000..a6152ee369cf79 --- /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/r2.md b/pages.id/common/r2.md new file mode 100644 index 00000000000000..d24af7709953d5 --- /dev/null +++ b/pages.id/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Perintah ini merupakan alias dari `radare2`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr radare2` diff --git a/pages.id/common/rails-db.md b/pages.id/common/rails-db.md new file mode 100644 index 00000000000000..b02d0cf5554bb9 --- /dev/null +++ b/pages.id/common/rails-db.md @@ -0,0 +1,36 @@ +# rails db + +> Beragam subperintah yang berkaitan dengan database untuk Rauby on Rails. +> Informasi lebih lanjut: . + +- Membuat database, memuat skema dan menginisiasinya dengan data awal: + +`rails db:setup` + +- Mengakses konsol database: + +`rails db` + +- Membuat database yang didefinisikan di environment saat ini: + +`rails db:create` + +- Menghapus database yang didefinisikan di environment saat ini: + +`rails db:drop` + +- Menjalankan migrasi yang belum: + +`rails db:migrate` + +- Menampilkan status dari masing-masing file migrasi: + +`rails db:migrate:status` + +- Rollback ke migrasi sebelumnya: + +`rails db:rollback` + +- Mengisi database dengan data yang didefinisikan di `db/seeds.rb`: + +`rails db:seed` diff --git a/pages.id/common/rails-destroy.md b/pages.id/common/rails-destroy.md new file mode 100644 index 00000000000000..d1bf037fc05833 --- /dev/null +++ b/pages.id/common/rails-destroy.md @@ -0,0 +1,24 @@ +# rails destroy + +> Menghapus Rails _resources_. +> Informasi lebih lanjut: . + +- Menampilkan daftar semua generator yang tersedia untuk menghapus: + +`rails destroy` + +- Menghapus model yang bernama Post: + +`rails destroy model {{Post}}` + +- Menghapus _controller_ yang bernama Post: + +`rails destroy controller {{Posts}}` + +- Menghapus migrasi yang membuat Posts: + +`rails destroy migration {{CreatePosts}}` + +- Menghapus _scaffold_ model yang bernama Post: + +`rails destroy scaffold {{Post}}` diff --git a/pages.id/common/rails-generate.md b/pages.id/common/rails-generate.md new file mode 100644 index 00000000000000..b451a514d59c9f --- /dev/null +++ b/pages.id/common/rails-generate.md @@ -0,0 +1,24 @@ +# rails generate + +> Membuat Rails templates yang baru ke suatu proyek. +> Informasi lebih lanjut: . + +- Menampilkan semua generator yang tersedia: + +`rails generate` + +- Membuat model baru bernama Post dengan atribut judul dan uraian: + +`rails generate model {{Post}} {{judul:string}} {{uraian:text}}` + +- Mmebuat _controller_ baru bernama Posts dengan actions index, show, new dan create: + +`rails generate controller {{Posts}} {{index}} {{show}} {{new}} {{create}}` + +- Membuat migrasi baru yang menambahkan atribut kategori ke model yang sudah ada bernama Post: + +`rails generate migration {{AddKategoriToPost}} {{kategori:string}}` + +- Membuat _scaffold_ untuk model bernama Post, dengan pendefinisian atribut judul dan uraian: + +`rails generate scaffold {{Post}} {{title:string}} {{body:text}}` diff --git a/pages.id/common/rails-routes.md b/pages.id/common/rails-routes.md new file mode 100644 index 00000000000000..562613fe07ab53 --- /dev/null +++ b/pages.id/common/rails-routes.md @@ -0,0 +1,20 @@ +# rails routes + +> Menampilkan daftar _routes_ di aplikasi Rails. +> Informasi lebih lanjut: . + +- Menampilkan semua _routes_: + +`rails routes` + +- Menampilkan semua _routes_ dengan format yang lebih panjang: + +`rails routes --expanded` + +- Menampilkan _routes_ yang sebagian cocok dengan nama helper method URL, HTTP verb, atau path URL: + +`rails routes -g {{posts_path|GET|/posts}}` + +- Menampilkan _routes_ yang memetakan ke controller tertentu: + +`rails routes -c {{posts|Posts|Blogs::PostsController}}` diff --git a/pages.id/common/rails.md b/pages.id/common/rails.md new file mode 100644 index 00000000000000..8a780987bef02c --- /dev/null +++ b/pages.id/common/rails.md @@ -0,0 +1,25 @@ +# rails + +> Sebuah _framework_ MVC yang ditulis dalam Ruby. +> Beberapa subperintah seperti `rails generate` mempunyai dokumentasi terpisah. +> Informasi lebih lanjut: . + +- Membuat proyek rails baru: + +`rails new "{{nama_proyek}}"` + +- Memulai server lokal untuk proyek pada port 3000: + +`rails server` + +- Memulai server lokal untuk proyek pada port tertentu: + +`rails server -p "{{port}}"` + +- Membuka konsol untuk berinteraksi dengan aplikasinya dari _command-line_: + +`rails console` + +- Menampilkan versi rails: + +`rails --version` diff --git a/pages.id/common/rbenv.md b/pages.id/common/rbenv.md new file mode 100644 index 00000000000000..bc121b2b7270da --- /dev/null +++ b/pages.id/common/rbenv.md @@ -0,0 +1,36 @@ +# rbenv + +> Alat untuk menginstal versi Ruby dan mengatur lingkungan aplikasi dengan mudah. +> Informasi lebih lanjut: . + +- Instal suatu versi Ruby: + +`rbenv install {{versi}}` + +- Tampilkan daftar versi-versi stabil terbaru dari Ruby: + +`rbenv install --list` + +- Tampilkan daftar versi-versi Ruby yang terinstal: + +`rbenv versions` + +- Gunakan spesifik versi Ruby di seluruh sistem: + +`rbenv global {{versi}}` + +- Gunakan spesifik versi Ruby untuk suatu direktori aplikasi/proyek: + +`rbenv local {{versi}}` + +- Tampilkan versi Ruby yang saat ini dipilih: + +`rbenv version` + +- Hapus sebuah versi Ruby: + +`rbenv uninstall {{versi}}` + +- Tampilkan semua versi Ruby yang mengandung file yang dapat dieksekusi sesuai dengan yang disebut: + +`rbenv whence {{executable}}` diff --git a/pages.id/common/rcat.md b/pages.id/common/rcat.md new file mode 100644 index 00000000000000..bf3e7517476826 --- /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 00000000000000..bf7c34f8af4e60 --- /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/rspec.md b/pages.id/common/rspec.md new file mode 100644 index 00000000000000..6f63176522bd4d --- /dev/null +++ b/pages.id/common/rspec.md @@ -0,0 +1,32 @@ +# rspec + +> Kerangka pengujian dalam Behavior-driven development yang ditulis dalam bahasa Ruby untuk menguji kode Ruby. +> Informasi lebih lanjut: . + +- Menginisiasi file konfigurasi `.rspec` dan spec helper: + +`rspec --init` + +- Menjalankan semua file tes: + +`rspec` + +- Menjalankan file tes dalam direktori khusus: + +`rspec {{jalan/menuju/directory}}` + +- Menjalankan file tes khusus: + +`rspec {{jalan/menuju/file}}` + +- Menjalankan beberapa file tes: + +`rspec {{jalan/menuju/file1}} {{jalan/menuju/file2}}` + +- Menjalankan kasus khusus dalam file tes (misalnya tes yang ada di baris 83): + +`rspec {{jalan/menuju/file}}:{{83}}` + +- Menjalankan tes dengan seed khusus: + +`rspec --seed {{angka_seed}}` diff --git a/pages.id/common/rsync.md b/pages.id/common/rsync.md new file mode 100644 index 00000000000000..510dcf753e96d6 --- /dev/null +++ b/pages.id/common/rsync.md @@ -0,0 +1,37 @@ +# rsync + +> 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: . + +- Transfer file dari lokal ke _remote host_: + +`rsync {{lokasi/ke/file_lokal}} {{remote_host}}:{{lokasi/ke/remote_directory}}` + +- Transfer file dari _remote host_ ke lokal: + +`rsync {{remote_host}}:{{lokasi/ke/remote_file}} {{lokasi/ke/direktori_lokal}}` + +- Transfer file dalam mode [a]rsip (untuk menyimpan atribut-atribut) dan terkompres (_[z]ipped_) secara _[v]erbose_ dan progresnya dapat dibaca orang (_[h]uman-readable [P]rogress_): + +`rsync -azvhP {{lokasi/ke/file_lokal}} {{remote_host}}:{{lokasi/ke/remote_directory}}` + +- Transfer direktori dan semua isiny dari remote ke lokal: + +`rsync -r {{remote_host}}:{{lokasi/ke/remote_directory}} {{lokasi/ke/direktori_lokal}}` + +- Transfer isi direktori (namun bukan direktori itu sendiri) dari remote ke lokal: + +`rsync -r {{remote_host}}:{{lokasi/ke/remote_directory}}/ {{lokasi/ke/direktori_lokal}}` + +- Transfer direktori secara [r]ecursif, dalam [a]rsip (untuk menyimpan atribut-atribut), menyelesaikan _soft[l]inks_ yang terkandung di sana, dan mengabaikan file-file yang sudah ditransfer kecuali jika file itu lebih baru (_[u]nless newer_): + +`rsync -rauL {{remote_host}}:{{lokasi/ke/remote_file}} {{lokasi/ke/direktori_lokal}}` + +- Transfer file melalui SSH dan hapus file-file lokal yang tidak ada di _remote host_: + +`rsync -e ssh --delete {{remote_host}}:{{lokasi/ke/remote_file}} {{lokasi/ke/file_lokal}}` + +- Transfer file melalui SSH dengan menggunakan port yang yang berbeda dari bawaan dan tampilkan progres global: + +`rsync -e 'ssh -p {{port}}' --info=progress2 {{remote_host}}:{{lokasi/ke/remote_file}} {{lokasi/ke/file_lokal}}` diff --git a/pages.id/common/rubocop.md b/pages.id/common/rubocop.md new file mode 100644 index 00000000000000..4bd335dddfbb26 --- /dev/null +++ b/pages.id/common/rubocop.md @@ -0,0 +1,32 @@ +# rubocop + +> Menganalisa file Ruby. +> Informasi lebih lanjut: . + +- Memeriksa semua file dalam direktori saat ini (termasuk direktori-direktori di dalamnya): + +`rubocop` + +- Memeriksa satu atau lebih file atau direktori secara khusus: + +`rubocop {{jalan/menuju/file}} {{jalan/menuju/direktori}}` + +- Menulis output ke file: + +`rubocop --out {{jalan/menuju/file}}` + +- Melihat daftar cop (aturan-aturan dalam menganalisa): + +`rubocop --show-cops` + +- Mengecualikan cop: + +`rubocop --except {{cop_1}} {{cop_2}}` + +- Menjalankan hanya beberapa cop: + +`rubocop --only {{cop_1}} {{cop_2}}` + +- Memperbaiki file secara otomatis (fitur percobaan): + +`rubocop --auto-correct` diff --git a/pages.id/common/ruby.md b/pages.id/common/ruby.md new file mode 100644 index 00000000000000..956d4b0d97ba39 --- /dev/null +++ b/pages.id/common/ruby.md @@ -0,0 +1,24 @@ +# ruby + +> Interpreter bahasa pemrograman Ruby. +> Informasi lebih lanjut: . + +- Memulai REPL (_shell_ interaktif): + +`irb` + +- Menjalankan skrip Ruby: + +`ruby {{lokasi/ke/script.rb}}` + +- Menjalankan sebuah perintah Ruby dalam _command-line_: + +`ruby -e {{command}}` + +- Memeriksa kesalahan sintaks dari skrip Ruby: + +`ruby -c {{lokasi/ke/script.rb}}` + +- Menampilkan versi Ruby yang anda gunakan: + +`ruby -v` diff --git a/pages.id/common/rvm.md b/pages.id/common/rvm.md new file mode 100644 index 00000000000000..153106f74fae9c --- /dev/null +++ b/pages.id/common/rvm.md @@ -0,0 +1,36 @@ +# rvm + +> Alat untuk menginstal, mengatur dan bekerja dengan berbagai lingkungan Ruby. +> Informasi lebih lanjut: . + +- Instal satu atau lebih versi Ruby (dipisah dengan spasi): + +`rvm install {{version(s)}}` + +- Menampilkan daftar versi-versi yang terinstal: + +`rvm list` + +- Menggunakan spesifik versi Ruby: + +`rvm use {{version}}` + +- Menyetel versi Ruby bawaan: + +`rvm --default use {{version}}` + +- Memperbarui versi Ruby: + +`rvm upgrade {{current_version}} {{new_version}}` + +- Menghapus versi Ruby dan menyimpan kode sumbernya: + +`rvm uninstall {{version}}` + +- Menghapus versi Ruby sekaligus kode sumbernya: + +`rvm remove {{version}}` + +- Menampilkan spesifik _dependencies_ untuk sistem operasi anda: + +`rvm requirements` diff --git a/pages.id/common/scrcpy.md b/pages.id/common/scrcpy.md new file mode 100644 index 00000000000000..3ee534bfabf9f8 --- /dev/null +++ b/pages.id/common/scrcpy.md @@ -0,0 +1,32 @@ +# scrcpy + +> Tampilkan layar and kontrol perangkat Android anda di dalam desktop. +> Informasi lebih lanjut: . + +- Tampilkan layar sebuah perangkat yang terhubung: + +`scrcpy` + +- Tampilkan layar perangkat tertentu berdasarkan ID atau alamat IP-nya (temukan menggunakan perintah `adb devices`): + +`scrcpy --serial {{0123456789abcdef|192.168.0.1:5555}}` + +- Tampilkan layar dalam mode layar penuh / fullscreen: + +`scrcpy --fullscreen` + +- Putarkan tampilan layar perangkat dalam kelipatan 90 derajat (berlawanan arah jarum jam): + +`scrcpy --rotation {{0|1|2|3}}` + +- Tunjukkan indikator sentuhan pada perangkat fisik: + +`scrcpy --show-touches` + +- Rekam tampilan layar perangkat ke dalam file video tertentu: + +`scrcpy --record {{jalan/menuju/file.mp4}}` + +- Tentukan direktori yang akan digunakan untuk memindahkan file (non-APK) ke dalam perangkat melalui drag-and-drop: + +`scrcpy --push-target {{jalan/menuju/direktori}}` diff --git a/pages.id/common/source.md b/pages.id/common/source.md new file mode 100644 index 00000000000000..c915c08c23dd62 --- /dev/null +++ b/pages.id/common/source.md @@ -0,0 +1,12 @@ +# source + +> Mengeksekusi perintah dalam file pada shell saat ini. +> Informasi lebih lanjut: . + +- Mengevaluasi konten pada file yang ditentukan: + +`source {{jalan/menuju/file}}` + +- Mengevaluasi konten pada file yang ditentukan (`.` adalah alias dari `source`): + +`. {{jalan/menuju/file}}` diff --git a/pages.id/common/split.md b/pages.id/common/split.md new file mode 100644 index 00000000000000..8cbc7572b3085f --- /dev/null +++ b/pages.id/common/split.md @@ -0,0 +1,20 @@ +# split + +> Memisahkan sebuah file menjadi beberapa bagian. +> Informasi lebih lanjut: . + +- Memisahkan sebuah file, tiap bagian memiliki 10 baris (kecuali di bagian terakhir): + +`split -l {{10}} {{nama_file}}` + +- Memisahkan sebuah file menjadi 5 file. Dibagi sehingga masing-masing bagian memiliki ukuran yang sama (kecuali di bagian terakhir): + +`split -n {{5}} {{nama_file}}` + +- Memisahkan sebuah file dengan ukuran 512 byte masing-masing bagiannya (kecuali di bagian terakhir; gunakan 512k untuk kilobyte dan 512m untuk megabytes): + +`split -b {{512}} {{nama_file}}` + +- Memisahkan sebuah file dengan ukuran paling banyak 512 byte masing-masing bagiannya tanpa memotong baris: + +`split -C {{512}} {{nama_file}}` diff --git a/pages.id/common/subl.md b/pages.id/common/subl.md new file mode 100644 index 00000000000000..a19b5450ff5fd4 --- /dev/null +++ b/pages.id/common/subl.md @@ -0,0 +1,24 @@ +# subl + +> Editor teks Sublime. +> Informasi lebih lanjut: . + +- Membuka direktori saat ini di Sublime Text: + +`subl {{.}}` + +- Membuka sebuah berkas atau direktori in Sublime Text: + +`subl {{jalur/ke/berkas_atau_direktori}}` + +- Membuka sebuah berkas dan lompat ke baris tertentu: + +`subl {{jalur/ke/berkas}}:{{nomor_baris}}` + +- Membuka sebuah berkas atau direktori di jendela yang sedang terbuka: + +`subl -a {{jalur/ke/berkas}}` + +- Membuka sebuah berkas atau direktori di jendela baru: + +`subl -n {{jalur/ke/berkas}}` diff --git a/pages.id/common/tldrl.md b/pages.id/common/tldrl.md new file mode 100644 index 00000000000000..8a86761f057e16 --- /dev/null +++ b/pages.id/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Perintah ini merupakan alias dari `tldr-lint`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr tldr-lint` diff --git a/pages.id/common/tlmgr-arch.md b/pages.id/common/tlmgr-arch.md new file mode 100644 index 00000000000000..4eb780df06825f --- /dev/null +++ b/pages.id/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Perintah ini merupakan alias dari `tlmgr platform`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr tlmgr platform` diff --git a/pages.id/common/todoman.md b/pages.id/common/todoman.md new file mode 100644 index 00000000000000..cf0bfaa83bb170 --- /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 3c6b8ee043eb5f..9f246f458edf60 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 00000000000000..e156ed2852f097 --- /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 00000000000000..479556dfb6da0f --- /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 00000000000000..6d309f3eb92082 --- /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/vi.md b/pages.id/common/vi.md new file mode 100644 index 00000000000000..3f3ec4f4454917 --- /dev/null +++ b/pages.id/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Perintah ini merupakan alias dari `vim`. + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr vim` diff --git a/pages.id/common/vue.md b/pages.id/common/vue.md index 414b84327b1c1a..a3b8d7146293b9 100644 --- a/pages.id/common/vue.md +++ b/pages.id/common/vue.md @@ -1,6 +1,7 @@ # vue > CLI serba guna untuk Vue.js. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `vue build`. > Informasi lebih lanjut: . - Buat proyek vue baru secara interaktif: diff --git a/pages.id/common/warp-cli.md b/pages.id/common/warp-cli.md new file mode 100644 index 00000000000000..79ce80f63c1144 --- /dev/null +++ b/pages.id/common/warp-cli.md @@ -0,0 +1,28 @@ +# warp-cli + +> Program command-line resmi untuk layanan Cloudflare WARP. +> Informasi lebih lanjut: . + +- Mendaftarkan perangkat ini ke dalam jaringan WARP (harus dijalankan pada pertama kali): + +`warp-cli register` + +- Menghubungkan perangkat ini ke dalam jaringan WARP: + +`warp-cli connect` + +- Memutuskan perangkat ini dari jaringan WARP: + +`warp-cli disconnect` + +- Menampilkan status koneksi WARP saat ini: + +`warp-cli status` + +- Menampilkan teks bantuan umum: + +`warp-cli help` + +- Menampilkan teks bantuan subperintah: + +`warp-cli help {{subperintah}}` diff --git a/pages.id/common/warp-diag.md b/pages.id/common/warp-diag.md new file mode 100644 index 00000000000000..c833f6baf900b5 --- /dev/null +++ b/pages.id/common/warp-diag.md @@ -0,0 +1,21 @@ +# warp-diag + +> Alat diagnostik dan umpan balik bagi layanan Cloudflare WARP. +> Lihat juga: `warp-cli`. +> Informasi lebih lanjut: . + +- Membuat sebuah file arsip (zip) berisi informasi konfigurasi sistem dan log debug terhadap koneksi WARP: + +`warp-diag` + +- Membuat sebuah file arsip diagnostik dengan membubuhkan stempel waktu ke dalam nama file: + +`warp-diag --add-ts` + +- Menyimpan file arsip diagnostik ke dalam direktori tertentu: + +`warp-diag --output {{jalan/menuju/direktori}}` + +- Memberikan saran kepada Cloudflare WARP secara interaktif: + +`warp-diag feedback` diff --git a/pages.id/common/xzcat.md b/pages.id/common/xzcat.md new file mode 100644 index 00000000000000..be3da622ccebfc --- /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/common/youtube-dl.md b/pages.id/common/youtube-dl.md new file mode 100644 index 00000000000000..243d25d6062038 --- /dev/null +++ b/pages.id/common/youtube-dl.md @@ -0,0 +1,36 @@ +# youtube-dl + +> Unduh video dari YouTube dan situs web lain. +> Informasi lebih lanjut: . + +- Mengunduh sebuah video atau daftar putar: + +`youtube-dl '{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}'` + +- Tampilkan daftar format yang tersedia untuk video atau daftar putar: + +`youtube-dl --list-formats '{{https://www.youtube.com/watch?v=Mwa0_nE9H7A}}'` + +- Mengunduh video atau daftar putar dengan kualitas tertentu: + +`youtube-dl --format "{{best[height<=480]}}" '{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}'` + +- Mengunduh audio dari video dan ubah menjadi MP3: + +`youtube-dl -x --audio-format {{mp3}} '{{url}}'` + +- Mengunduh video dan audio dengan kualitas terbaik lalu gabungkan: + +`youtube-dl -f bestvideo+bestaudio '{{url}}'` + +- Mengunduh satu atau beberapa video sebagai file MP4 dengan nama tertentu: + +`youtube-dl --format {{mp4}} -o "{{%(playlist_index)s-%(title)s oleh %(uploader)s pada %(upload_date)s di dalam %(playlist)s.%(ext)s}}" '{{url}}'` + +- Mengunduh video bersama dengan subtitle bahasa tertentu: + +`youtube-dl --sub-lang {{en}} --write-sub '{{https://www.youtube.com/watch?v=Mwa0_nE9H7A}}'` + +- Mengunduh daftar putar dan ekstrak MP3 darinya: + +`youtube-dl -f "bestaudio" --continue --no-overwrites --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" {{url_to_playlist}}` diff --git a/pages.id/linux/alternatives.md b/pages.id/linux/alternatives.md new file mode 100644 index 00000000000000..423d950c4e2f43 --- /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/apt.md b/pages.id/linux/apt.md new file mode 100644 index 00000000000000..ca57543baca027 --- /dev/null +++ b/pages.id/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> Manajer paket untuk distribusi Linux berbasis Debian. +> Pengganti `apt-get` yang direkomendasikan ketika digunakan secara interaktif di Ubuntu versi 16.04 atau yang lebih baru. +> Informasi lebih lanjut: . + +- Memperbarui daftar paket yang tersedia dan versinya (direkomendasikan untuk menggunakan perintah ini sebelum perintah `apt` lainnya.): + +`sudo apt update` + +- Mencari paket yang tersedia dengan nama atau deskripsi tertentu: + +`apt search {{nama_atau_deskripsi_paket}}` + +- Memperlihatkan informasi tentang suatu paket: + +`apt show {{nama_paket}}` + +- Menginstal sebuah paket, atau memperbarui paket ke versi terbaru: + +`sudo apt install {{nama_paket}}` + +- Menghapus sebuah paket (gunakan `sudo apt purge` untuk menghapus paket beserta file konfigurasinya): + +`sudo apt remove {{nama_paket}}` + +- Memperbarui seluruh paket yang terpasang ke versi terbaru: + +`sudo apt upgrade` + +- Memperlihatkan daftar semua paket yang tersedia di dalam repositori: + +`apt list` + +- Memperlihatkan daftar paket yang telah terpasang: + +`apt list --installed` diff --git a/pages.id/linux/batcat.md b/pages.id/linux/batcat.md new file mode 100644 index 00000000000000..2b2292accaaa79 --- /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 00000000000000..351ea2542e715b --- /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 00000000000000..18b69fe8519f09 --- /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 00000000000000..6e294fe5dc2b47 --- /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/debootstrap.md b/pages.id/linux/debootstrap.md new file mode 100644 index 00000000000000..e48c95ba67699c --- /dev/null +++ b/pages.id/linux/debootstrap.md @@ -0,0 +1,24 @@ +# debootstrap + +> Membuat sistem Debian dasar. +> Informasi lebih lanjut: . + +- Membuat sistem Debian stable didalam direktori `debian-root`: + +`sudo debootstrap stable {{jalan/ke/debian-root/}} http://deb.debian.org/debian` + +- Membuat sistem minimal termasuk hanya paket yang diperlukan: + +`sudo debootstrap --variant=minbase stable {{jalan/ke/debian-root/}}` + +- Membuat sistem Ubuntu 20.04 didalam direktori `focal-root` dengan mirror lokal: + +`sudo debootstrap focal {{jalan/ke/focal-root/}} {{file:///jalan/ke/mirror/}}` + +- Berpindah ke sistem yang telah di bootstrap: + +`sudo chroot {{jalan/ke/root}}` + +- Memperlihatkan rilis Debian atau Ubuntu yang tersedia: + +`ls /usr/share/debootstrap/scripts/` diff --git a/pages.id/linux/dnf.md b/pages.id/linux/dnf.md new file mode 100644 index 00000000000000..e2d6ba4ff533d4 --- /dev/null +++ b/pages.id/linux/dnf.md @@ -0,0 +1,36 @@ +# dnf + +> Manajer paket untuk distribusi Linux RHEL, Fedora, dan CentOS (pengganti yum). +> Informasi lebih lanjut: . + +- Memperbarui seluruh paket yang terpasang ke versi terbaru: + +`sudo dnf upgrade` + +- Mencari paket yang tersedia dengan kata kunci tertentu: + +`dnf search {{kata_kunci}}` + +- Memperlihatkan informasi tentang suatu paket: + +`dnf info {{nama_paket}}` + +- Menginstal sebuah paket: + +`sudo dnf install {{nama_paket}}` + +- Menginstal sebuah paket dan jawab ya untuk semua pertanyaan: + +`sudo dnf -y install {{nama_paket}}` + +- Menghapus sebuah paket: + +`sudo dnf remove {{nama_paket}}` + +- Memperlihatkan daftar semua paket yang telah terpasang: + +`dnf list --installed` + +- Temukan paket mana yang menyediakan file tertentu: + +`dnf provides {{file}}` diff --git a/pages.id/linux/dpkg.md b/pages.id/linux/dpkg.md new file mode 100644 index 00000000000000..7ea84d7b7ed889 --- /dev/null +++ b/pages.id/linux/dpkg.md @@ -0,0 +1,29 @@ +# dpkg + +> Manajer paket Debian. +> Beberapa subperintah seperti `dpkg deb` memiliki dokumentasi penggunaannya sendiri. +> Informasi lebih lanjut: . + +- Memasang paket dari sebuah file DEB: + +`dpkg -i {{jalan/menuju/file.deb}}` + +- Menghapus pemasangan sebuah paket: + +`dpkg -r {{nama_paket}}` + +- Memperlihatkan daftar paket terinstal: + +`dpkg -l {{pola}}` + +- Memperlihatkan isi sebuah paket: + +`dpkg -L {{nama_paket}}` + +- Memperlihatkan isi sebuah paket lokal: + +`dpkg -c {{jalan/menuju/file.deb}}` + +- Mencari tahu paket yang memiliki sebuah file: + +`dpkg -S {{nama_file}}` diff --git a/pages.id/linux/halt.md b/pages.id/linux/halt.md new file mode 100644 index 00000000000000..29897ccd0d858e --- /dev/null +++ b/pages.id/linux/halt.md @@ -0,0 +1,24 @@ +# halt + +> Hentikan sistem. +> Informasi lebih lanjut: . + +- Hentikan sistem: + +`halt` + +- Matikan sistem (sama seperti `poweroff`): + +`halt --poweroff` + +- Reboot sistem (sama seperti `reboot`): + +`halt --reboot` + +- Berhenti segera tanpa menghubungi manajer sistem: + +`halt --force --force` + +- Tulis entri wtmp shutdown tanpa menghentikan sistem: + +`halt --wtmp-only` diff --git a/pages.id/linux/ip-route-list.md b/pages.id/linux/ip-route-list.md new file mode 100644 index 00000000000000..fa580f6b44b748 --- /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/megadl.md b/pages.id/linux/megadl.md new file mode 100644 index 00000000000000..02bc6b4a9d6b2c --- /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/mkfs.btrfs.md b/pages.id/linux/mkfs.btrfs.md new file mode 100644 index 00000000000000..b90a5d64985b61 --- /dev/null +++ b/pages.id/linux/mkfs.btrfs.md @@ -0,0 +1,17 @@ +# mkfs.btrfs + +> Membuat sistem file btrfs. +> Default ke `raid1`, yang menyatakan 2 salinan sebuah blok data disebar ke 2 perangkat yang berbeda. +> Informasi lebih lanjut: . + +- Membuat sebuah sistem file btrfs di satu perangkat: + +`sudo mkfs.btrfs --metadata single --data single {{/dev/sda}}` + +- Membuat sebuah sistem file btrfs di beberapa perangkat dengan raid1: + +`sudo mkfs.btrfs --metadata raid1 --data raid1 {{/dev/sda}} {{/dev/sdb}} {{/dev/sdN}}` + +- Mengatur sebuah label untuk sistem file: + +`sudo mkfs.btrfs --label "{{label}}" {{/dev/sda}} [{{/dev/sdN}}]` diff --git a/pages.id/linux/mkfs.ext4.md b/pages.id/linux/mkfs.ext4.md new file mode 100644 index 00000000000000..2a4bda232f03d9 --- /dev/null +++ b/pages.id/linux/mkfs.ext4.md @@ -0,0 +1,12 @@ +# mkfs.ext4 + +> Membuat sistem file ext4 didalam sebuah partisi. +> Informasi lebih lanjut: . + +- Membuat sistem file ext4 di dalam partisi 1 di perangkat B (`sdb1`): + +`sudo mkfs.ext4 {{/dev/sdb1}}` + +- Membuat sistem file ext4 dengan label volume: + +`sudo mkfs.ext4 -L {{label_volume}} {{/dev/sdb1}}` diff --git a/pages.id/linux/ncal.md b/pages.id/linux/ncal.md new file mode 100644 index 00000000000000..36f232247f7b31 --- /dev/null +++ b/pages.id/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Perintah ini merupakan alias dari `cal`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr cal` diff --git a/pages.id/linux/pacman-query.md b/pages.id/linux/pacman-query.md new file mode 100644 index 00000000000000..ae56cf891dd91b --- /dev/null +++ b/pages.id/linux/pacman-query.md @@ -0,0 +1,36 @@ +# pacman --query + +> Kegunaan manajer paket Arch Linux. +> Informasi lebih lanjut: . + +- Tampilkan daftar paket yang diinstal beserta versinya: + +`pacman --query` + +- Tampilkan daftar paket yang diinstal beserta versinya secara eksplisit: + +`pacman --query --explicit` + +- Temukan paket mana yang memiliki file: + +`pacman --query --owns {{namafile}}` + +- Tampilkan informasi paket yang diinstal: + +`pacman --query --info {{nama_paket}}` + +- Tampilkan daftar file yang dimiliki oleh paket: + +`pacman --query --list {{nama_paket}}` + +- Tampilkan daftar paket yatim piatu (diinstal sebagai dependensi namun tidak dibutuhkan oleh paket apa pun): + +`pacman --query --unrequired --deps --quiet` + +- Tampilkan daftar paket yang diinstal tidak ditemukan di tempat penyimpanan: + +`pacman --query --foreign` + +- Tampilkan daftar paket usang: + +`pacman --query --upgrades` diff --git a/pages.id/linux/pacman-remove.md b/pages.id/linux/pacman-remove.md new file mode 100644 index 00000000000000..86ad5c265ad392 --- /dev/null +++ b/pages.id/linux/pacman-remove.md @@ -0,0 +1,32 @@ +# pacman --remove + +> Kegunaan manajer paket Arch Linux. +> Informasi lebih lanjut: . + +- Hapus paket beserta dependensinya: + +`sudo pacman --remove --recursive {{nama_paket}}` + +- Hapus paket beserta dependensi dan file konfigurasi-nya: + +`sudo pacman --remove --recursive --nosave {{nama_paket}}` + +- Hapus tanpa konfirmasi: + +`sudo pacman --remove --noconfirm {{nama_paket}}` + +- Hapus paket yatim piatu (diinstal sebagai dependensi namun tidak dibutuhkan oleh paket apa pun): + +`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)` + +- Hapus paket dan semua paket yang bergantung pada paket tersebut: + +`sudo pacman --remove --cascade {{nama_paket}}` + +- Tampilkan daftar paket yang akan terpengaruh (tidak menghapus paket apa pun): + +`pacman --remove --print {{nama_paket}}` + +- Tampilkan bantuan untuk subperintah ini: + +`pacman --remove --help` diff --git a/pages.id/linux/pacman-sync.md b/pages.id/linux/pacman-sync.md new file mode 100644 index 00000000000000..748b9ae565781d --- /dev/null +++ b/pages.id/linux/pacman-sync.md @@ -0,0 +1,36 @@ +# pacman --sync + +> Kegunaan manajer paket Arch Linux. +> Informasi lebih lanjut: . + +- Instal paket baru: + +`sudo pacman --sync {{nama_paket}}` + +- Sinkronkan dan perbarui semua paket (tambahkan `--downloadonly` untuk unduh paket dan tidak memperbarui-nya): + +`sudo pacman --sync --refresh --sysupgrade` + +- Perbarui semua paket dan instal paket baru tanpa konfirmasi: + +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{nama_paket}}` + +- Cari paket dalam database berdasarkan regular expression atau kata kunci: + +`pacman --sync --search "{{pola_pencarian}}"` + +- Tampilkan informasi sebuah paket: + +`pacman --sync --info {{nama_paket}}` + +- Timpa file yang bentrok selama pembaruan paket: + +`sudo pacman --sync --refresh --sysupgrade --overwrite {{jalan/menuju/file}}` + +- Sinkronkan dan perbarui semua paket, namun abaikan paket tertentu (dapat digunakan lebih dari sekali): + +`sudo pacman --sync --refresh --sysupgrade --ignore {{nama_paket}}` + +- Hapus paket yang tidak terpasang dan repositori yang tidak digunakan dari cache (gunakan dua tanda `--clean` untuk bersihkan semua paket): + +`sudo pacman --sync --clean` diff --git a/pages.id/linux/pacman-upgrade.md b/pages.id/linux/pacman-upgrade.md new file mode 100644 index 00000000000000..717bf18f66e481 --- /dev/null +++ b/pages.id/linux/pacman-upgrade.md @@ -0,0 +1,28 @@ +# pacman --upgrade + +> Kegunaan manajer paket Arch Linux. +> Informasi lebih lanjut: . + +- Instal satu paket atau lebih dari file: + +`sudo pacman --upgrade {{jalan/menuju/paket1.pkg.tar.zst}} {{jalan/menuju/paket2.pkg.tar.zst}}` + +- Instal paket tanpa konfirmasi: + +`sudo pacman --upgrade --noconfirm {{jalan/menuju/paket.pkg.tar.zst}}` + +- Timpa file yang bentrok selama pemasangan paket: + +`sudo pacman --upgrade --overwrite {{jalan/menuju/file}} {{jalan/menuju/paket.pkg.tar.zst}}` + +- Instal paket, melewati pemeriksaan versi dependensi: + +`sudo pacman --upgrade --nodeps {{jalan/menuju/paket.pkg.tar.zst}}` + +- Tampilkan daftar paket yang akan terpengaruh (tidak menginstal paket apa pun): + +`pacman --upgrade --print {{jalan/menuju/paket.pkg.tar.zst}}` + +- Tampilkan bantuan: + +`pacman --upgrade --help` diff --git a/pages.id/linux/pacman.md b/pages.id/linux/pacman.md new file mode 100644 index 00000000000000..69ddf8c57475be --- /dev/null +++ b/pages.id/linux/pacman.md @@ -0,0 +1,37 @@ +# pacman + +> Kegunaan manajer paket Arch Linux. +> Kami mempunyai dokumentasi terpisah untuk menggunakan subperintah seperti `pacman sync`. +> Informasi lebih lanjut: . + +- Sinkronkan dan perbarui semua paket: + +`sudo pacman -Syu` + +- Instal paket baru: + +`sudo pacman -S {{nama_paket}}` + +- Hapus paket beserta dependensinya: + +`sudo pacman -Rs {{nama_paket}}` + +- Cari paket dalam database berdasarkan regular expression atau kata kunci: + +`pacman -Ss "{{pola_pencarian}}"` + +- Tampilkan daftar paket dan versi yang diinstal: + +`pacman -Q` + +- Tampilkan daftar paket dan versi yang diinstal secara eksplisit: + +`pacman -Qe` + +- Tampilkan daftar paket yatim piatu (diinstal sebagai dependensi namun tidak dibutuhkan oleh paket apa pun): + +`pacman -Qtdq` + +- Kosongkan seluruh cache pacman: + +`sudo pacman -Scc` diff --git a/pages.id/linux/poweroff.md b/pages.id/linux/poweroff.md new file mode 100644 index 00000000000000..9e85347d55c146 --- /dev/null +++ b/pages.id/linux/poweroff.md @@ -0,0 +1,24 @@ +# poweroff + +> Matikan sistem. +> Informasi lebih lanjut: . + +- Matikan sistem: + +`poweroff` + +- Hentikan sistem (sama seperti `halt`): + +`poweroff --halt` + +- Reboot sistem (sama seperti `reboot`): + +`poweroff --reboot` + +- Matikan segera tanpa menghubungi manajer sistem: + +`poweroff --force --force` + +- Tulis entri wtmp shutdown tanpa mematikan sistem: + +`poweroff --wtmp-only` diff --git a/pages.id/linux/reboot.md b/pages.id/linux/reboot.md new file mode 100644 index 00000000000000..9183411f787bd6 --- /dev/null +++ b/pages.id/linux/reboot.md @@ -0,0 +1,24 @@ +# reboot + +> Reboot sistem. +> Informasi lebih lanjut: . + +- Reboot sistem: + +`reboot` + +- Matikan sistem (sama seperti `poweroff`): + +`reboot --poweroff` + +- Hentikan sistem (sama seperti `halt`): + +`reboot --halt` + +- Reboot segera tanpa menghubungi manajer sistem: + +`reboot --force --force` + +- Tulis entri wtmp shutdown tanpa me-reboot sistem: + +`reboot --wtmp-only` diff --git a/pages.id/linux/ruget.md b/pages.id/linux/ruget.md new file mode 100644 index 00000000000000..1d6ce022a26802 --- /dev/null +++ b/pages.id/linux/ruget.md @@ -0,0 +1,12 @@ +# ruget + +> Alternatif untuk wget yang ditulis dalam Rust. +> Informasi lebih lanjut: . + +- Unduh konten URL ke file: + +`ruget {{https://contoh.com/file}}` + +- Unduh konten URL ke file [o]utput tertentu: + +`ruget --output {{nama_file}} {{https://contoh.com/file}}` diff --git a/pages.id/linux/st.md b/pages.id/linux/st.md new file mode 100644 index 00000000000000..c7d3a41411d0f6 --- /dev/null +++ b/pages.id/linux/st.md @@ -0,0 +1,24 @@ +# st + +> Emulator terminal simpel untuk sistem window X. +> Informasi lebih lanjut: . + +- Membuka sebuah terminal: + +`st` + +- Membuka sebuah terminal dengan judul spesifik: + +`st -T {{judul}}` + +- Membuka sebuah terminal, menjalankan sebuah perintah, dan menuliskan output kedalam sebuah file: + +`st -o {{jalan/menuju/file}} -e {{perintah argumen1 argumen2}}` + +- Membesarkan/mengecilkan ukuran font: + +`Ctrl + Shift + {{Page Up|Page Down}}` + +- Copy/paste dari clipboard: + +`Ctrl + Shift + {{C|V}}` diff --git a/pages.id/linux/ubuntu-bug.md b/pages.id/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..2948cae12fbc70 --- /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/xfce4-terminal.md b/pages.id/linux/xfce4-terminal.md new file mode 100644 index 00000000000000..97646cb75da1e2 --- /dev/null +++ b/pages.id/linux/xfce4-terminal.md @@ -0,0 +1,28 @@ +# xfce4-terminal + +> Emulator terminal XFCE4. +> Informasi lebih lanjut: . + +- Membuka jendela terminal baru: + +`xfce4-terminal` + +- Mengatur judul awal: + +`xfce4-terminal --initial-title "{{judul_awal}}"` + +- Membuka tab baru di jendela terminal saat ini: + +`xfce4-terminal --tab` + +- Menjalankan sebuah perintah di jendela terminal baru: + +`xfce4-terminal --command "{{perintah_dengan_argumen}}"` + +- Tetap buka terminal setelah perintah yang dijalankan selesai: + +`xfce4-terminal --command "{{perintah_dengan_argumen}}" --hold` + +- Membuka beberapa tab baru dan menjalankan perintah di masing-masing tab: + +`xfce4-terminal --tab --command "{{perintah_a}}" --tab --command "{{perintah_b}}"` diff --git a/pages.id/linux/xterm.md b/pages.id/linux/xterm.md new file mode 100644 index 00000000000000..9893d329c729e9 --- /dev/null +++ b/pages.id/linux/xterm.md @@ -0,0 +1,24 @@ +# xterm + +> Emulator terminal untuk sistem window X. +> Informasi lebih lanjut: . + +- Membuka terminal dengan judul `Example`: + +`xterm -T {{Example}}` + +- Membuka terminal dalam mode fullscreen: + +`xterm -fullscreen` + +- Membuka terminal dengan warna background biru tua dan warna foreground (warna font) kuning: + +`xterm -bg {{darkblue}} -fg {{yellow}}` + +- Membuka terminal dengan 100 karakter per baris dan 35 baris, di posisi layar x=200px, y=20px: + +`xterm -geometry {{100}}x{{35}}+{{200}}+{{20}}` + +- Membuka terminal dengan font Serif dengan ukuran font sebesar 20: + +`xterm -fa {{'Serif'}} -fs {{20}}` diff --git a/pages.id/osx/aa.md b/pages.id/osx/aa.md new file mode 100644 index 00000000000000..9aba4a87237503 --- /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/brightness.md b/pages.id/osx/brightness.md new file mode 100644 index 00000000000000..a97b29ca23b037 --- /dev/null +++ b/pages.id/osx/brightness.md @@ -0,0 +1,16 @@ +# brightness + +> Menampilkan dan mengubah brightness (tingkat kecerahan) untuk internal dan external displays. +> Informasi lebih lanjut: . + +- Menampilkan brightness sekarang: + +`brightness -l` + +- Mengubah brightness menjadi 100%: + +`brightness {{1}}` + +- Mengubah brightness menjadi 50%: + +`brightness {{0.5}}` diff --git a/pages.id/osx/caffeinate.md b/pages.id/osx/caffeinate.md new file mode 100644 index 00000000000000..91d7d15cdd5427 --- /dev/null +++ b/pages.id/osx/caffeinate.md @@ -0,0 +1,16 @@ +# caffeinate + +> Menghindari macOS dari sleep (mode tidur). +> Informasi lebih lanjut: . + +- Menghindari mode sleep selama 1 jam (3600 detik): + +`caffeinate -u -t {{3600}}` + +- Menghindari mode sleep sampai sebuah command selesai: + +`caffeinate -s {{command}}` + +- Menghindari mode sleep sampai anda mengetik Ctrl-C: + +`caffeinate -i` diff --git a/pages.id/osx/cal.md b/pages.id/osx/cal.md new file mode 100644 index 00000000000000..4896874414c213 --- /dev/null +++ b/pages.id/osx/cal.md @@ -0,0 +1,32 @@ +# cal + +> Menampilkan informasi kalender. +> Informasi lebih lanjut: . + +- Menampilkan kalender pada bulan ini: + +`cal` + +- Menampilan kalender pada bulan lalu, sekarang dan berikutnya: + +`cal -3` + +- Menampilkan kalender pada bulan tertentu (angka 1-12 atau nama): + +`cal -m {{bulan}}` + +- Menampilkan kalender pada tahun yang sedang berjalan: + +`cal -y` + +- Menampilkan kalender pada tahun tertentu (4 digit): + +`cal {{tahun}}` + +- Menampilkan kalender pada bulan dan tahun tertentu: + +`cal {{bulan}} {{tahun}}` + +- Menampilkan tanggal Hari Raya Paskah (Gereja Kristen Barat) pada tahun tertentu: + +`ncal -e {{tahun}}` diff --git a/pages.id/osx/date.md b/pages.id/osx/date.md new file mode 100644 index 00000000000000..0427f191544388 --- /dev/null +++ b/pages.id/osx/date.md @@ -0,0 +1,20 @@ +# date + +> Mengatur atau menampilkan tanggal sistem. +> Informasi lebih lanjut: . + +- Menampilkan tanggal saat ini menggunakan format _locale_: + +`date +"%c"` + +- Menampilkan tanggal saat ini dalam format UTC and ISO 8601: + +`date -u +"%Y-%m-%dT%H:%M:%SZ"` + +- Menampilkan tanggal saat ini sebagai _Unix timestamp_ (detik sejak jaman Unix): + +`date +%s` + +- Menampilkan tanggal tertentu (diwakili sebagai _Unix timestamp_) menggunakan format bawaan: + +`date -r 1473305798` diff --git a/pages.id/osx/g[.md b/pages.id/osx/g[.md new file mode 100644 index 00000000000000..90c86fa8b88f62 --- /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 00000000000000..5c2324abce456a --- /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 00000000000000..7934dcca99214c --- /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 00000000000000..450a07412c98e3 --- /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 00000000000000..b9455605bb830d --- /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 00000000000000..9a240d779c574b --- /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 00000000000000..7832d0be6ea9f2 --- /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 00000000000000..18db6f00503504 --- /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 00000000000000..f6f54105840167 --- /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 00000000000000..abf271bb00d37a --- /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 00000000000000..bbead830eaec73 --- /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 00000000000000..d26405c46d2ec9 --- /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 00000000000000..9ff4ce3eccd20d --- /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 00000000000000..7b080a564faf88 --- /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 00000000000000..b43657e9be2014 --- /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 00000000000000..3dff6f9775e891 --- /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 00000000000000..c5fddf21bba1d3 --- /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 00000000000000..c8f394cd06820d --- /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 00000000000000..fcf42db30d4240 --- /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 00000000000000..6c2b363e4cdf0d --- /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 00000000000000..096e63e7c6bcec --- /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 00000000000000..221485ff2c448e --- /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 00000000000000..bb35e59792699e --- /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 00000000000000..6bbe20516b3b3f --- /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 00000000000000..4aaebe17280b2b --- /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 00000000000000..735aeb2ff949e4 --- /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 00000000000000..b478d6258fce55 --- /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 00000000000000..7e2a65f3723b17 --- /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 00000000000000..3b4f3d1314f842 --- /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 00000000000000..d2b7d893c295a2 --- /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 00000000000000..4e935151f727a0 --- /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 00000000000000..bf174472637519 --- /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 00000000000000..280e583d036960 --- /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 00000000000000..a32eb2f52f1d23 --- /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 00000000000000..34adcb1b7a8204 --- /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 00000000000000..5eaa2ba7980c86 --- /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 00000000000000..ff75075e0f625e --- /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 00000000000000..307d1b7c00ae41 --- /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 00000000000000..258cb73ad612b9 --- /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 00000000000000..23003798862302 --- /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 00000000000000..238cfcb9e0683d --- /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 00000000000000..06c690d9ef37ac --- /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 00000000000000..07a876277e4987 --- /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 00000000000000..d8d1c8c52636a0 --- /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 00000000000000..ff5eac8a016fd8 --- /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 00000000000000..663306f40192b4 --- /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 00000000000000..c928982f2e7b29 --- /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 00000000000000..2a87c319112cdb --- /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 00000000000000..15c56047e715af --- /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 00000000000000..bb9c74b8e5e19d --- /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 00000000000000..1cf44d3145ebe9 --- /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 00000000000000..a68e87dad991d5 --- /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 00000000000000..624446e7049e98 --- /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 00000000000000..16674afa1798b8 --- /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 00000000000000..a48d4b0524220f --- /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 00000000000000..ae65b894452365 --- /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 00000000000000..d5cc673b5174e8 --- /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 00000000000000..fadae18d3d55db --- /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 00000000000000..fd444cbe9f39b3 --- /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 00000000000000..0486a384a03f1b --- /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 00000000000000..3c8c3a092dd11e --- /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 00000000000000..3bcd11c1dc285a --- /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 00000000000000..c569ff1008643e --- /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 00000000000000..6f269e22c00d9c --- /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 00000000000000..72b6d9a5977911 --- /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 00000000000000..5b5f2d261e6162 --- /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 00000000000000..a6185d7cd35055 --- /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 00000000000000..c560ba4d270a70 --- /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 00000000000000..2cec3eedc71f8b --- /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 00000000000000..afc38ccb6aa4d4 --- /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 00000000000000..75c875abe31f3c --- /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 00000000000000..14144ce4b33f60 --- /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 00000000000000..6b50b71da28e24 --- /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 00000000000000..1e591e4c64427d --- /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 00000000000000..b539f8066870bc --- /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 00000000000000..55669181176ba8 --- /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 00000000000000..4c26f105a033f0 --- /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 00000000000000..5f9a2a178a9d33 --- /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 00000000000000..95252e1a0e6971 --- /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 00000000000000..5e4aa068aa7a55 --- /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 00000000000000..1b1bd5dc32301d --- /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 00000000000000..ec81325f9fd100 --- /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 00000000000000..495c4bd1a4cba6 --- /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 00000000000000..9ac048fd061170 --- /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 00000000000000..1eccb8e8f8c93f --- /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 00000000000000..45255865fd4e0b --- /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 00000000000000..048eac7e0229dd --- /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 00000000000000..0aa6f778bd09e1 --- /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 00000000000000..0f47187e69ca2c --- /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 00000000000000..44e9e580306dd4 --- /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 00000000000000..6c65f0be341360 --- /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 00000000000000..43b777b5897ba5 --- /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 00000000000000..0d646031f7613d --- /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 00000000000000..3b141cf5f01a6d --- /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 00000000000000..9ab6fadb93dacd --- /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 00000000000000..65ecc458d39025 --- /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 00000000000000..f7386bfac28ccd --- /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 00000000000000..c62eff77858bdb --- /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 00000000000000..8c8e20fb481bfd --- /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 00000000000000..4139b3c84dd24e --- /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 00000000000000..b7951376f57828 --- /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 00000000000000..e15e9f1d554ae7 --- /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 00000000000000..8ec906142fdbd0 --- /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 00000000000000..65bf67ce461719 --- /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 00000000000000..4a0a82bf23db6e --- /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 00000000000000..51e544e9cd20e7 --- /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 00000000000000..011faf32ed7712 --- /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 00000000000000..ed43bffc8fdc18 --- /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 00000000000000..155842de9dfbec --- /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 00000000000000..696be34abc0129 --- /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 00000000000000..8f6486c4d342b4 --- /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 00000000000000..e5e12af28b49ec --- /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 00000000000000..23666cd4c8e366 --- /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 00000000000000..01972e4ed8807f --- /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 00000000000000..d4608614787751 --- /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 00000000000000..7407b620afcdd6 --- /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 00000000000000..37d510f0c54a12 --- /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 00000000000000..e46fe13f6e15e4 --- /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 00000000000000..18ade2a83399cd --- /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 00000000000000..a83c25c7730032 --- /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 00000000000000..ce0f7e0211d10c --- /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 00000000000000..caeb55c524706b --- /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 00000000000000..4d32d4ee1accbb --- /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 00000000000000..f855a7a95fad81 --- /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 00000000000000..57667ac426b509 --- /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 00000000000000..243e75e7ea11a2 --- /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 00000000000000..407888a79734d2 --- /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 00000000000000..ab81f3d386ff8d --- /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 00000000000000..b36bd94d157339 --- /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 00000000000000..98af3483088fbb --- /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 00000000000000..4562aa8b0cabd4 --- /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 00000000000000..75486fd6eb9aa6 --- /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 00000000000000..3a980ba389f739 --- /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 00000000000000..d561a0b93b7c2d --- /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 00000000000000..edc1895605bbee --- /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 00000000000000..27381179d59ab8 --- /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 00000000000000..63271d884188fe --- /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 00000000000000..601f34dba43bcf --- /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 00000000000000..804b4b74bc7134 --- /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 00000000000000..0e1ead599fbf6b --- /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 new file mode 100644 index 00000000000000..aba105a7197b17 --- /dev/null +++ b/pages.id/osx/open.md @@ -0,0 +1,28 @@ +# open + +> Membuka file, direktori, dan aplikasi. +> Informasi lebih lanjut: . + +- Membuka sebuah file di dalam aplikasi default: + +`open {{file.ext}}` + +- Membuka 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): + +`open -b {{com.domain.aplikasi}}` + +- Buka direktori saat ini di dalam aplikasi Finder: + +`open .` + +- Lihat sebuah file di dalam aplikasi Finder: + +`open -R {{jalan/menuju/file}}` + +- Buka semua file dengan ekstensi tertentu di dalam aplikasi default pada direktori saat ini: + +`open {{*.ext}}` diff --git a/pages.id/osx/osascript.md b/pages.id/osx/osascript.md new file mode 100644 index 00000000000000..b0786aa53c2c42 --- /dev/null +++ b/pages.id/osx/osascript.md @@ -0,0 +1,28 @@ +# osascript + +> Jalankan AppleScript atau JavaScript for Automation (JXA) dari command-line. +> Informasi lebih lanjut: . + +- Menjalankan sebuah perintah AppleScript: + +`osascript -e "{{say 'Halo dunia'}}"` + +- Menjalankan beberapa perintah AppleScript: + +`osascript -e "{{say 'Halo'}}" -e "{{say 'dunia'}}"` + +- Mengeksekusi perintah dari file AppleScript yang telah terkompilasi (`*.scpt`), terbundel (`*.scptd`), atau secara plaintext (`*.applescript`): + +`osascript {{jalan/menuju/apple.scpt}}` + +- Mendapatkan ID pengenal (bundle identifier) dari sebuah aplikasi (dapat digunakan untuk perintah `open -b`): + +`osascript -e 'id of app "{{Aplikasi}}"'` + +- Menjalankan sebuah perintah JavaScript: + +`osascript -l JavaScript -e "{{console.log('Halo dunia');}}"` + +- Mengeksekusi perintah dari file JavaScript: + +`osascript -l JavaScript {{jalan/menuju/javascript.js}}` diff --git a/pages.id/osx/pbcopy.md b/pages.id/osx/pbcopy.md new file mode 100644 index 00000000000000..4d6ed93109f1df --- /dev/null +++ b/pages.id/osx/pbcopy.md @@ -0,0 +1,12 @@ +# pbcopy + +> Menempatkan output standar pada papan klip (clipboard). +> Informasi lebih lanjut: . + +- Menempatkan konten file pada papan klip: + +`pbcopy < {{file}}` + +- Menempatkan hasil perintah pada papan klip: + +`find . -type t -name "*.png" | pbcopy` diff --git a/pages.id/osx/pbpaste.md b/pages.id/osx/pbpaste.md new file mode 100644 index 00000000000000..cf36682638cb7c --- /dev/null +++ b/pages.id/osx/pbpaste.md @@ -0,0 +1,12 @@ +# pbpaste + +> Mengirim isi papan klip (clipboard) ke output standar. +> Informasi lebih lanjut: . + +- Menulis konten papan klip ke dalam sebuah file: + +`pbpaste > {{file}}` + +- Menggunakan konten papan klip sebagai input bagi sebuah perintah: + +`pbpaste | grep foo` diff --git a/pages.id/osx/shuf.md b/pages.id/osx/shuf.md new file mode 100644 index 00000000000000..58874b1c28ed00 --- /dev/null +++ b/pages.id/osx/shuf.md @@ -0,0 +1,20 @@ +# shuf + +> Generate permutasi acak. +> Informasi lebih lanjut: . + +- Acak urutan baris di sebuah file dan outputkan hasilnya: + +`shuf {{nama_file}}` + +- Hanya mengoutputkan 5 entri dari hasil: + +`shuf -n {{5}} {{nama_file}}` + +- Menuliskan output ke file lain: + +`shuf {{nama_file}} -o {{nama_file_output}}` + +- Men-generate angka acak dari 1-10: + +`shuf -i {{1-10}}` diff --git a/pages.id/windows/cd.md b/pages.id/windows/cd.md index 9b9065edc0c74b..f173ced2e0f1b6 100644 --- a/pages.id/windows/cd.md +++ b/pages.id/windows/cd.md @@ -1,7 +1,7 @@ # cd > Menampilkan nama atau ganti direktori saat ini. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Menuju suatu direktori pada drive yang sama: diff --git a/pages.id/windows/chkdsk.md b/pages.id/windows/chkdsk.md new file mode 100644 index 00000000000000..ff4039ca480c9c --- /dev/null +++ b/pages.id/windows/chkdsk.md @@ -0,0 +1,20 @@ +# chkdsk + +> Memeriksa dan mencari kesalahan dalam sebuah sistem file dan metadata volume penyimpanan. +> Informasi lebih lanjut: . + +- Memeriksa sebuah ruang penyimpanan berdasarkan huruf drive (diakhiri dengan titik dua), lokasi pemasangan, atau nama ruang: + +`chkdsk {{ruang_penyimpanan}}` + +- Memperbaiki kesalahan pada ruang penyimpanan yang ditentukan: + +`chkdsk {{ruang_penyimpanan}} /f` + +- Melepas ruang penyimpanan tertentu untuk pemeriksaan: + +`chkdsk {{ruang_penyimpanan}} /x` + +- Mengubah ukuran file log dalam sebuah ruang penyimpanan dengan sistem file NTFS: + +`chkdsk /l{{ukuran}}` diff --git a/pages.id/windows/choco-install.md b/pages.id/windows/choco-install.md new file mode 100644 index 00000000000000..1e670e428ffba0 --- /dev/null +++ b/pages.id/windows/choco-install.md @@ -0,0 +1,36 @@ +# choco install + +> Instal satu paket atau lebih dengan Chocolatey. +> Informasi lebih lanjut: . + +- Instal satu paket atau lebih paket yang dipisahkan oleh spasi: + +`choco install {{paket}}` + +- Instal paket dari file konfigurasi khusus: + +`choco install {{jalan/menuju/paket.config}}` + +- Instal file nuspec atau nupkg tertentu: + +`choco install {{jalan/menuju/file}}` + +- Instal versi paket tertentu: + +`choco install {{paket}} --version {{versi}}` + +- Izinkan menginstal beberapa versi paket: + +`choco install {{paket}} --allow-multiple` + +- Konfirmasikan semua prompt secara otomatis: + +`choco install {{paket}} --yes` + +- Tentukan sumber khusus untuk menerima paket: + +`choco install {{paket}} --source {{url_sumber|alias}}` + +- Berikan nama pengguna dan kata sandi untuk otentikasi: + +`choco install {{paket}} --user {{nama_pengguna}} --password {{kata_sandi}}` diff --git a/pages.id/windows/chrome.md b/pages.id/windows/chrome.md new file mode 100644 index 00000000000000..b9c5a327d546f5 --- /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/cinst.md b/pages.id/windows/cinst.md new file mode 100644 index 00000000000000..3620702e84020d --- /dev/null +++ b/pages.id/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Perintah ini merupakan alias dari `choco install`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr choco install` diff --git a/pages.id/windows/clist.md b/pages.id/windows/clist.md new file mode 100644 index 00000000000000..bf96c5d3bb1701 --- /dev/null +++ b/pages.id/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Perintah ini merupakan alias dari `choco list`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr choco list` diff --git a/pages.id/windows/cls.md b/pages.id/windows/cls.md index 394ed96659c04e..d2c56b1e1aa758 100644 --- a/pages.id/windows/cls.md +++ b/pages.id/windows/cls.md @@ -1,7 +1,7 @@ # cls > Membersihkan layar. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Bersihkan layar: diff --git a/pages.id/windows/cpush.md b/pages.id/windows/cpush.md new file mode 100644 index 00000000000000..3dfbde706291a3 --- /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/cuninst.md b/pages.id/windows/cuninst.md new file mode 100644 index 00000000000000..009e3d8d686ff4 --- /dev/null +++ b/pages.id/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Perintah ini merupakan alias dari `choco uninstall`. +> Informasi lebih lanjut: . + +- Menampilkan dokumentasi untuk perintah asli: + +`tldr choco uninstall` diff --git a/pages.id/windows/curl.md b/pages.id/windows/curl.md new file mode 100644 index 00000000000000..51278a4499f1a4 --- /dev/null +++ b/pages.id/windows/curl.md @@ -0,0 +1,19 @@ +# curl + +> Perintah ini dapat merupakan alias dari `Invoke-WebRequest` jika program `curl` () tidak terpasang secara benar di PowerShell. + +- Cari tahu apakah `curl` sudah terpasang dengan benar dengan menampilkan versi program tersebut. Jika perintah ini memunculkan pesan galat/error, maka PowerShell berkemungkinan sedang menggantinya dengan `Invoke-WebRequest`: + +`curl --version` + +- Tampilkan dokumentasi untuk perintah `curl` yang asli: + +`tldr curl -p common` + +- Tampilkan dokumentasi untuk perintah `curl` yang asli dalam program `tldr` versi lawas: + +`tldr curl -o common` + +- Tampilkan dokumentasi untuk perintah `Invoke-WebRequest`: + +`tldr invoke-webrequest` diff --git a/pages.id/windows/dir.md b/pages.id/windows/dir.md index 6b29b0f9473d82..2a2a7f684ec349 100644 --- a/pages.id/windows/dir.md +++ b/pages.id/windows/dir.md @@ -1,7 +1,7 @@ # dir > Lis isi direktori. -> Informasi lebih lanjut: . +> Informasi lebih lanjut: . - Tampilkan isi direktori saat ini: diff --git a/pages.id/windows/explorer.md b/pages.id/windows/explorer.md new file mode 100644 index 00000000000000..85346fce6e6c02 --- /dev/null +++ b/pages.id/windows/explorer.md @@ -0,0 +1,16 @@ +# explorer + +> Windows File Explorer: penjelajah file pada Windows. +> Informasi lebih lanjut: . + +- Membuka Windows Explorer: + +`explorer` + +- Membuka Windows Explorer di direktori saat ini: + +`explorer .` + +- Membuka Windows Explorer di direktori tertentu: + +`explorer {{alamat/ke/direktori}}` diff --git a/pages.id/windows/find.md b/pages.id/windows/find.md new file mode 100644 index 00000000000000..cdc099192e186c --- /dev/null +++ b/pages.id/windows/find.md @@ -0,0 +1,20 @@ +# find + +> Mencari teks tertentu di dalam suatu file atau direktori. +> Informasi lebih lanjut: . + +- Mencari baris-baris dalam file yang mengandung teks tertentu: + +`find {{teks}} {{jalan/menuju/file_atau_direktori}}` + +- Menunjukkan baris-baris dalam file yang tidak mengandung teks tertentu: + +`find {{teks}} {{jalan/menuju/file_atau_direktori}} /v` + +- Menghitung jumlah baris dalam file yang mengandung teks tertentu: + +`find {{teks}} {{jalan/menuju/file_atau_direktori}} /c` + +- Mencari baris-baris dalam file yang mengandung teks tertentu beserta nomor barisnya: + +`find {{teks}} {{jalan/menuju/file_atau_direktori}} /n` diff --git a/pages.id/windows/invoke-webrequest.md b/pages.id/windows/invoke-webrequest.md new file mode 100644 index 00000000000000..df071b680e18c6 --- /dev/null +++ b/pages.id/windows/invoke-webrequest.md @@ -0,0 +1,25 @@ +# Invoke-WebRequest + +> Membuat panggilan dan permintaan HTTP/HTTPS. +> Perintah ini hanya dapat digunakan dalam PowerShell. +> Informasi lebih lanjut: . + +- Unduh konten URL ke file: + +`Invoke-WebRequest {{http://example.com}} -OutFile {{jalan/menuju/file}}` + +- Kirim data form yang telah di encode (permintaan POST atau tipe data `application/x-www-form-urlencoded`): + +`Invoke-WebRequest -Method Post -Body @{ name='bob' } {{http://example.com/form}}` + +- Kirim sebuah permintaan dengan header tambahan, menggunakan metode HTTP kustom: + +`Invoke-WebRequest -Headers {{@{ X-My-Header = '123' }}} -Method {{PUT}} {{http://example.com}}` + +- Kirim data dalam format JSON, Menentukan jenis konten yang sesuai header: + +`Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}` + +- Berikan nama pengguna dan kata sandi untuk otentikasi server: + +`Invoke-WebRequest -Headers @{ Authorization = "Basic "+ [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("myusername:mypassword")) } {{http://example.com}}` diff --git a/pages.id/windows/ipconfig.md b/pages.id/windows/ipconfig.md new file mode 100644 index 00000000000000..7da6c01f8d40b3 --- /dev/null +++ b/pages.id/windows/ipconfig.md @@ -0,0 +1,24 @@ +# ipconfig + +> Menampilkan dan mengatur konfigurasi jaringan dalam sistem operasi Windows. +> Informasi lebih lanjut: . + +- Menunjukkan daftar adaptor jaringan: + +`ipconfig` + +- Menunjukkan daftar adaptor jaringan secara lengkap: + +`ipconfig /all` + +- Memperbarui alamat IP sebuah adaptor jaringan: + +`ipconfig /renew {{adaptor}}` + +- Mengosongkan alamat-alamat IP yang disetel dalam sebuah adaptor jaringan: + +`ipconfig /release {{adaptor}}` + +- Mengosongkan cache DNS: + +`ipconfig /flushdns` diff --git a/pages.id/windows/iwr.md b/pages.id/windows/iwr.md new file mode 100644 index 00000000000000..00c83f76906cef --- /dev/null +++ b/pages.id/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Perintah ini merupakan alias dari `Invoke-WebRequest` di PowerShell. + +- Tampilkan dokumentasi untuk perintah asli: + +`tldr invoke-webrequest` diff --git a/pages.id/windows/msiexec.md b/pages.id/windows/msiexec.md new file mode 100644 index 00000000000000..873add59d270c0 --- /dev/null +++ b/pages.id/windows/msiexec.md @@ -0,0 +1,20 @@ +# msiexec + +> Memasang, memperbarui, memperbaiki, atau menghapus program Windows melalui file MSI dan MSP yang tersedia. +> Informasi lebih lanjut: . + +- Memasang sebuah program melalui file MSI: + +`msiexec /package {{jalan/menuju/file.msi}}` + +- Memasang file MSI dari internet: + +`msiexec /package {{https://example.com/installer.msi}}` + +- Memasang pembaruan program melalui file MSP: + +`msiexec /update {{jalan/menuju/file.msp}}` + +- Menghapus pemasangan atau pembaruan program melalui file MSI atau MSP yang tersedia: + +`msiexec /uninstall {{jalan/menuju/file}}` diff --git a/pages.id/windows/print.md b/pages.id/windows/print.md new file mode 100644 index 00000000000000..f5504b4c9e267e --- /dev/null +++ b/pages.id/windows/print.md @@ -0,0 +1,12 @@ +# print + +> Mencetak sebuah file teks ke dalam mesin pencetak (printer). +> Informasi lebih lanjut: . + +- Mencetak file teks ke dalam mesin pencetak (printer) default: + +`print {{jalan/menuju/file}}` + +- Mencetak file teks ke dalam mesin pencetak (printer) tertentu: + +`print /d:{{mesin_pencetak}} {{jalan/menuju/file}}` diff --git a/pages.id/windows/pwsh-where.md b/pages.id/windows/pwsh-where.md new file mode 100644 index 00000000000000..352ee586eb259d --- /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 00000000000000..6a2da8b994c1b6 --- /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/scoop-bucket.md b/pages.id/windows/scoop-bucket.md new file mode 100644 index 00000000000000..8339499b892e02 --- /dev/null +++ b/pages.id/windows/scoop-bucket.md @@ -0,0 +1,25 @@ +# scoop bucket + +> Mengelola bucket: Repository Git yang berisi berkas yang menjelaskan bagaimana scoop menginstall aplikasi. +> Jika Scoop tidak tahu dimana sebuah bucket terletak, lokasi repository harus ditentukan. +> Informasi lebih lanjut: . + +- Menampilkan daftar semua bucket yang sedang digunakan: + +`scoop bucket list` + +- Menampilkan daftar semua bucket yang dikenal: + +`scoop bucket known` + +- Menambahkan bucket yang dikenal berdasarkan namanya: + +`scoop bucket add {{nama}}` + +- Menambahkan bucket yang tidak dikenal bersarkan nama dan URL repository Git: + +`scoop bucket add {{nama}} {{https://contoh.com/repository.git}}` + +- Menghapus bucket berdasarkan namanya: + +`scoop bucket rm {{nama}}` diff --git a/pages.id/windows/scoop.md b/pages.id/windows/scoop.md new file mode 100644 index 00000000000000..e2d3aba0d73383 --- /dev/null +++ b/pages.id/windows/scoop.md @@ -0,0 +1,32 @@ +# scoop + +> Penginstal paket berantarmuka baris perintah untuk Windows. +> Informasi lebih lanjut: . + +- Memasang sebuah paket: + +`scoop install {{paket}}` + +- Mencopot pemasangan sebuah paket: + +`scoop uninstall {{paket}}` + +- Memperbarui semua paket yang terpasang: + +`scoop update *` + +- Menampilkan daftar paket yang terpasang: + +`scoop list` + +- Menampilkan informasi tentang sebuah paket: + +`scoop info {{paket}}` + +- Mencari paket: + +`scoop search {{paket}}` + +- Menghapus versi lama dari semua paket dan membersihkan cache unduhan: + +`scoop cleanup -k *` diff --git a/pages.id/windows/sls.md b/pages.id/windows/sls.md new file mode 100644 index 00000000000000..717b9a7d3780ad --- /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/tree.md b/pages.id/windows/tree.md new file mode 100644 index 00000000000000..9efc587744ff4d --- /dev/null +++ b/pages.id/windows/tree.md @@ -0,0 +1,20 @@ +# tree + +> Menampilkan struktur direktori pada suatu lokasi dengan tampilan grafis pohon. +> Informasi lebih lanjut: . + +- Tampilkan pohon dari direktori saat ini: + +`tree` + +- Tampilkan pohon dari direktori yang ditentukan: + +`tree {{lokasi/ke/direktori}}` + +- Tampilkan pohon dari direktori termasuk file: + +`tree {{lokasi/ke/direktori}} /f` + +- Tampilkan pohon menggunakan karakter ASCII alih-alih karakter yang diperluas: + +`tree {{lokasi/ke/direktori}} /a` diff --git a/pages.id/windows/ver.md b/pages.id/windows/ver.md new file mode 100644 index 00000000000000..e3a3f929c691df --- /dev/null +++ b/pages.id/windows/ver.md @@ -0,0 +1,8 @@ +# ver + +> Menampilkan nomor versi Windows atau MS-DOS saat ini. +> Informasi lebih lanjut: . + +- Menampilkan nomor versi saat ini: + +`ver` diff --git a/pages.id/windows/wget.md b/pages.id/windows/wget.md new file mode 100644 index 00000000000000..ebfcb22e6c53cd --- /dev/null +++ b/pages.id/windows/wget.md @@ -0,0 +1,19 @@ +# wget + +> Perintah ini dapat merupakan alias dari `Invoke-WebRequest` jika program `wget` () tidak terpasang secara benar di PowerShell. + +- Cari tahu apakah `wget` sudah terpasang dengan benar dengan menampilkan versi program tersebut. Jika perintah ini memunculkan pesan galat/error, maka PowerShell berkemungkinan sedang menggantinya dengan `Invoke-WebRequest`: + +`curl --version` + +- Tampilkan dokumentasi untuk perintah `wget` yang asli: + +`tldr wget -p common` + +- Tampilkan dokumentasi untuk perintah `wget` yang asli dalam program `tldr` versi lawas: + +`tldr wget -o common` + +- Tampilkan dokumentasi untuk perintah `Invoke-WebRequest`: + +`tldr invoke-webrequest` diff --git a/pages.id/windows/whoami.md b/pages.id/windows/whoami.md new file mode 100644 index 00000000000000..0d49e9ab6b6077 --- /dev/null +++ b/pages.id/windows/whoami.md @@ -0,0 +1,24 @@ +# whoami + +> Menampilkan detail informasi pengguna saat ini. +> Informasi lebih lanjut: . + +- Menampilkan username pengguna saat ini: + +`whoami` + +- Menampilkan daftar grup dari pengguna saat ini: + +`whoami /groups` + +- Menampilkan hak (privileges) pengguna saat ini: + +`whoami /priv` + +- Menampilkan nama utama pengguna (UPN) saat ini: + +`whoami /upn` + +- Menampilkan id logon dari pengguna saat ini: + +`whoami /logonid` diff --git a/pages.id/windows/winget.md b/pages.id/windows/winget.md new file mode 100644 index 00000000000000..4467ef5cc923cd --- /dev/null +++ b/pages.id/windows/winget.md @@ -0,0 +1,32 @@ +# winget + +> Manajer Paket Antarmuka Baris Perintah Windows. +> Informasi lebih lanjut: . + +- Instal paket: + +`winget install {{nama_paket}}` + +- Tampilkan informasi tentang paket: + +`winget show {{nama_paket}}` + +- Cari paket: + +`winget search {{nama_paket}}` + +- Perbarui paket: + +`winget upgrade {{nama_paket}}` + +- Tampilkan paket: + +`winget list {{nama_paket}}` + +- Hapus paket: + +`winget uninstall {{nama_paket}}` + +- Bantuan daftar lengkap perintah: + +`winget --help` diff --git a/pages.id/windows/xcopy.md b/pages.id/windows/xcopy.md new file mode 100644 index 00000000000000..bd8b9696b42375 --- /dev/null +++ b/pages.id/windows/xcopy.md @@ -0,0 +1,36 @@ +# xcopy + +> Membuat salinan file dan direktori. +> Informasi lebih lanjut: . + +- Membuat salinan file atau direktori ke lokasi lain: + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}}` + +- Melihat daftar file yang akan disalin sebelum proses salinan dimulai: + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /p` + +- Membuat salinan struktur direktori saja (tanpa file di dalamnya): + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /t` + +- Membuat salinan direktori termasuk direktori-direktori kosong (tanpa file): + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /e` + +- Membuat salinan file atau direktori dengan daftar hak akses pengguna (ACL) yang sama: + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /o` + +- Mempersilakan proses penyalinan file atau direktori saat koneksi jaringan komputer terputus: + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /z` + +- Mempersilakan `xcopy` untuk tetap mengganti file yang sudah ada di lokasi tujuan dengan file yang berada di lokasi sumber: + +`xcopy {{jalan/menuju/file_atau_direktori_sumber}} {{jalan/menuju/file_atau_direktori_tujuan}} /y` + +- Menampilkan cara penggunaan secara lengkap: + +`xcopy /?` diff --git a/pages.it/android/am.md b/pages.it/android/am.md new file mode 100644 index 00000000000000..5dd45c62d1b06c --- /dev/null +++ b/pages.it/android/am.md @@ -0,0 +1,20 @@ +# am + +> Gestore delle Attività di Android. +> Maggiori informazioni: . + +- Inizia un'attività: + +`am start -n {{com.android.settings/.Settings}}` + +- Inizia un'attività e e invia dati: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Inizia un'attività corrispondente ad un'azione, e in una categoria delineato: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Converti un intent in un URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.it/android/bugreport.md b/pages.it/android/bugreport.md new file mode 100644 index 00000000000000..62f29ef06657e0 --- /dev/null +++ b/pages.it/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Mostra un report dei bug del dispositivo Android. +> Questo comando può essere usato solamente addraverso la `adb shell`. +> Maggiori informazioni: . + +- Mostra un report completo dei bug riscontrati nel dispositivo Android: + +`bugreport` diff --git a/pages.it/android/cmd.md b/pages.it/android/cmd.md new file mode 100644 index 00000000000000..359bde52344e32 --- /dev/null +++ b/pages.it/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Gestore del servizio Android. +> Maggiori informazioni: . + +- Elenca tutti i servizi in esecuzione: + +`cmd -l` + +- Chiama un servizio specifico: + +`cmd {{alarm}}` + +- Chiama un servizio con argomenti: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.it/android/dalvikvm.md b/pages.it/android/dalvikvm.md new file mode 100644 index 00000000000000..8c511c499a950f --- /dev/null +++ b/pages.it/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Macchina virtuale Java per Android. +> Maggiori informazioni: . + +- Lancia un programma Java: + +`dalvikvm -classpath {{percorso/del/file.jar}} {{nomeclasse}}` diff --git a/pages.it/android/getprop.md b/pages.it/android/getprop.md new file mode 100644 index 00000000000000..c879d22848c662 --- /dev/null +++ b/pages.it/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Visualizza informazioni sulle proprietà del sistema Android. +> Maggiori informazioni: . + +- Visualizza informazioni sulle proprietà del sistema Android: + +`getprop` + +- Visualizza informazioni su una specifica proprietà del sistema Android: + +`getprop {{prop}}` + +- Visualizza il livello della API SDK: + +`getprop {{ro.build.version.sdk}}` + +- Visualizza la versione Android: + +`getprop {{ro.build.version.release}}` + +- Visualizza il modello del dispositivo Android: + +`getprop {{ro.vendor.product.model}}` + +- Visualizza lo stato dello sblocco OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Visualizza l'indirizzo MAC della scheda Wi-Fi di Android: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.it/android/input.md b/pages.it/android/input.md new file mode 100644 index 00000000000000..7e35c4f5120055 --- /dev/null +++ b/pages.it/android/input.md @@ -0,0 +1,25 @@ +# input + +> Invia codici evento o gesture touchscreen a un dispositivo Android. +> Questo comando può essere usato solo attraverso `abd shell`. +> Maggiori informazioni: . + +- Invia un codice evento per un singolo carattere a un dispositivo Android: + +`input keyevent {{codice_evento}}` + +- Invia un testo a un dispositivo Android (`%s` rappresenta lo spazio): + +`input text "{{testo}}"` + +- Invia un singolo tap a un dispositivo Android: + +`input tap {{pos_x}} {{pos_y}}` + +- Invia una gesture di scorrimento a un dispositivo Android: + +`input swipe {{inizio_x}} {{inizio_y}} {{fine_x}} {{fine_y}} {{durata_in_ms}}` + +- Invia un tap lungo a un dispositivo Android usando una gesture di scorrimento: + +`input swipe {{pos_x}} {{pos_y}} {{pos_x}} {{pos_y}} {{durata_in_ms}}` diff --git a/pages.it/android/logcat.md b/pages.it/android/logcat.md new file mode 100644 index 00000000000000..d484f819552402 --- /dev/null +++ b/pages.it/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Scarica il registro dei messaggi di sistema, comprese le stack traces quando si verifica un errore, e i messaggi di log delle applicazioni. +> Maggiori informazioni: . + +- Mostra il log di sistema: + +`logcat` + +- Scrivi il log di sistema su file: + +`logcat -f {{percorso/del/file}}` + +- Mostra le righe corrispondenti ad una specifica espressione regolare: + +`logcat --regex {{espressione_regolare}}` diff --git a/pages.it/android/pkg.md b/pages.it/android/pkg.md new file mode 100644 index 00000000000000..97c2882f690d2b --- /dev/null +++ b/pages.it/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Strumento di gestione pacchetti per Termux. +> Maggiori informazioni: . + +- Aggiorna tutti i pacchetti installati: + +`pkg upgrade` + +- Installa un pacchetto: + +`pkg install {{pacchetto}}` + +- Disinstalla un pacchetto: + +`pkg uninstall {{pacchetto}}` + +- Reinstalla un pacchetto: + +`pkg reinstall {{pacchetto}}` + +- Cerca un pacchetto: + +`pkg search {{pacchetto}}` diff --git a/pages.it/android/settings.md b/pages.it/android/settings.md new file mode 100644 index 00000000000000..76383b12a7dccd --- /dev/null +++ b/pages.it/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Acquisici informazioni su Android OS. +> Maggiori informazioni: . + +- Visualizza una lista di impostazioni nel namespace `global`: + +`settings list {{global}}` + +- Ottieni il valore di un'impostazione specifica: + +`settings get {{global}} {{airplane_mode_on}}` + +- Imposta il valore di un'impostazione: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Elimina un'impostazione specifica: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.it/android/wm.md b/pages.it/android/wm.md new file mode 100644 index 00000000000000..0fcb5b35ff30f6 --- /dev/null +++ b/pages.it/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Visualizza informazioni dello schermo del dispositivo Android. +> Questo comando può essere usato solo attraverso `adb shell`. +> Maggiori informazioni: . + +- Visualizza le dimensioni fisiche dello schermo di un dispositivo Android: + +`wm {{size}}` + +- Visualizza la densità fisica dello schermo di un dispositivo Android: + +`wm {{density}}` diff --git a/pages.it/common/7z.md b/pages.it/common/7z.md index e923dbca521f1d..6e52d286411709 100644 --- a/pages.it/common/7z.md +++ b/pages.it/common/7z.md @@ -1,11 +1,11 @@ # 7z > Archiviatore di file con alto fattore di compressione. -> Maggiori informazioni: . +> Maggiori informazioni: . - Archivia un file o una directory: -`7z a {{archivio.7z}} {{percorso/a/file_o_directory}}` +`7z a {{archivio.7z}} {{percorso/del/file_o_directory}}` - Cripta un archivio esistente (inclusi gli header): @@ -17,7 +17,7 @@ - Estrai un archivio in una specifica directory: -`7z x {{archivio.7z}} -o{{percorso/alla/directory}}` +`7z x {{archivio.7z}} -o{{percorso/della/directory}}` - Estrai un archivio sullo standard output: @@ -25,7 +25,7 @@ - Archivia utilizzando uno specifico tipo di archivio: -`7z a -t {{zip|gzip|bzip2|tar}} {{archivio.7z}} {{percorso/a/file_o_directory}}` +`7z a -t {{7z|bzip2|gzip|lzip|tar|zip}} {{archivio.7z}} {{percorso/del/file_o_directory}}` - Elenca i tipi di archivio supportati: diff --git a/pages.it/common/7za.md b/pages.it/common/7za.md index 2b91c1a226834a..ee4db01cd60fc6 100644 --- a/pages.it/common/7za.md +++ b/pages.it/common/7za.md @@ -2,19 +2,19 @@ > 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: -`7za a {{archivio.7z}} {{percorso/a/file_o_directory}}` +`7za a {{archivio.7z}} {{percorso/del/file_o_directory}}` -- Estrai un archivio mantenendo la gerarchia delle cartelle: +- Estrai un archivio mantenendo la gerarchia delle directory: `7za x {{archivio.7z}}` - Archivia utilizzando uno specifico tipo di archivio: -`7za a -t {{zip|gzip|bzip2|tar}} {{archivio.7z}} {{percorso/a/file_o_directory}}` +`7za a -t {{zip|gzip|bzip2|tar}} {{archivio.7z}} {{percorso/del/file_o_directory}}` - Elenca i tipi di archivio supportati: diff --git a/pages.it/common/7zr.md b/pages.it/common/7zr.md index cc8d7ec411a834..876d4613b03c13 100644 --- a/pages.it/common/7zr.md +++ b/pages.it/common/7zr.md @@ -2,11 +2,11 @@ > 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: -`7zr a {{archivio.7z}} {{percorso/a/file_o_directory}}` +`7zr a {{archivio.7z}} {{percorso/del/file_o_directory}}` - Estrai un archivio mantenendo la gerarchia delle directory: diff --git a/pages.it/common/ab.md b/pages.it/common/ab.md index 7b46c10dd6aaac..937a7369f63d59 100644 --- a/pages.it/common/ab.md +++ b/pages.it/common/ab.md @@ -13,7 +13,7 @@ - Esegui 100 richieste HTTP POST a un dato URL, utilizzando un payload JSON tramite file: -`ab -n {{100}} -T {{application/json}} -p {{percorso/a/file.json}} {{url}}` +`ab -n {{100}} -T {{application/json}} -p {{percorso/del/file.json}} {{url}}` - Usa HTTP [K]eep Alive, ovvero esegui richieste multiple in una stessa sessione HTTP: diff --git a/pages.it/common/ack.md b/pages.it/common/ack.md index 1528dcde1d6a74..c3a9cfce5e2269 100644 --- a/pages.it/common/ack.md +++ b/pages.it/common/ack.md @@ -2,9 +2,9 @@ > Un tool di ricerca simile a `grep`, ottimizzato per programmatori. > Vedi anche: `rg`, che è molto più veloce. -> Maggiori informazioni: . +> Maggiori informazioni: . -- Cerca ricorsivamente file contenenti una stringa o un'espressione regolare nella cartella corrente: +- Cerca ricorsivamente file contenenti una stringa o un'espressione regolare nella directory corrente: `ack "{{pattern_di_ricerca}}"` diff --git a/pages.it/common/adb-install.md b/pages.it/common/adb-install.md index 5d30b251cb0a8e..c1094699484ff6 100644 --- a/pages.it/common/adb-install.md +++ b/pages.it/common/adb-install.md @@ -5,16 +5,16 @@ - Invia un'applicazione Android ad un emulatore emulatore/Android: -`adb install {{percorso/al/file.apk}}` +`adb install {{percorso/del/file.apk}}` - Reinstalla una applicazione esistente, preservandone i dati: -`adb install -r {{percorso/al/file.apk}}` +`adb install -r {{percorso/del/file.apk}}` - Fornisce tutti i permessi elencati nel manifest dell'applicazione: -`adb install -g {{percorso/al/file.apk}}` +`adb install -g {{percorso/del/file.apk}}` - Aggiorna rapidamente un pacchetto installato aggiornando solamente le parti dell'APK che sono cambiate: -`adb install --fastdeploy {{percorso/al/file.apk}}` +`adb install --fastdeploy {{percorso/del/file.apk}}` diff --git a/pages.it/common/adb.md b/pages.it/common/adb.md index 02d0471a00ace7..812b94bf1e06b9 100644 --- a/pages.it/common/adb.md +++ b/pages.it/common/adb.md @@ -1,6 +1,7 @@ # adb > Android Debug Bridge: comunica con un'instanza di un emulatore Android o con un dispositivo android connesso. +> Alcuni comandi aggiuntivi, come `adb shell`, hanno la propria documentazione. > Maggiori informazioni: . - Controlla se il processo server adb è attivo ed avvialo: @@ -17,15 +18,15 @@ - Installa un'applicazione Android nell'emulatore o dispositivo target: -`adb install -r {{percorso/al/file.apk}}` +`adb install -r {{percorso/del/file.apk}}` - Copia file o directory dal dispositivo target: -`adb pull {{percorso/a/file_o_directory_dispositivo}} {{percorso/a/file_o_directory_locale}}` +`adb pull {{percorso/del/file_o_directory_dispositivo}} {{percorso/del/file_o_directory_locale}}` - Copia file/directory sul dispositivo target: -`adb push {{percorso/a/file_o_directory_locale}} {{percorso/a/directory_destinazione_dispositivo}}` +`adb push {{percorso/del/file_o_directory_locale}} {{percorso/della/directory_destinazione_dispositivo}}` - Mostra una lista dei dispositivi connessi: diff --git a/pages.it/common/ag.md b/pages.it/common/ag.md index 1de88210006b79..b1535d03bf5c9f 100644 --- a/pages.it/common/ag.md +++ b/pages.it/common/ag.md @@ -9,7 +9,7 @@ - Trova file contenenti "foo" in una specifica directory: -`ag {{foo}} {{percorso/alla/directory}}` +`ag {{foo}} {{percorso/della/directory}}` - Trova file contenenti "foo" elencandone solamente i nomi: @@ -25,7 +25,7 @@ - Trova file il quale contenuto soddisfi una determinata espressione regolare: -`ag '{{regexp}}'` +`ag '{{espressione_regolare}}'` - Trova file il quale nome contiene "foo": diff --git a/pages.it/common/airpaste.md b/pages.it/common/airpaste.md index 6e18e36900a57e..0feaba5e983b4a 100644 --- a/pages.it/common/airpaste.md +++ b/pages.it/common/airpaste.md @@ -3,7 +3,7 @@ > Condividi messaggi e file nella stessa rete. > Maggiori informazioni: . -- Aspetta un messaggo e mostralo una volta ricevuto: +- Aspetta un messaggio e mostralo una volta ricevuto: `airpaste` @@ -13,11 +13,11 @@ - Invia un file: -`airpaste < {{percorso/al/file}}` +`airpaste < {{percorso/del/file}}` - Ricevi un file: -`airpaste > {{percorso/al/file}}` +`airpaste > {{percorso/del/file}}` - Crea o entra in un canale: diff --git a/pages.it/common/alacritty.md b/pages.it/common/alacritty.md new file mode 100644 index 00000000000000..9649e583bba71a --- /dev/null +++ b/pages.it/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Multipiattaforma, GPU-accelerato emulatore di terminale. +> Maggiori informazioni: . + +- Apri un nuovo finestra di Alacritty: + +`alacritty` + +- Esegui in una directory specifica: + +`alacritty --working-directory {{percorso/della/directory}}` + +- Esegui un comando in una nuova finestra di Alacritty: + +`alacritty -e {{comando}}` + +- Specifica un file di configurazione alternativo (predefinito a `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): + +`alacritty --config-file {{percorso/di/config.yml}}` + +- Esegui con ricaricamento configurazione live (può anche essere acceso in `alacritty.yml`): + +`alacritty --live-config-reload --config-file {{percorsi/al/config.yml}}` diff --git a/pages.it/common/ansible-galaxy.md b/pages.it/common/ansible-galaxy.md index 66dea27396cc17..ecf4eec145de3e 100644 --- a/pages.it/common/ansible-galaxy.md +++ b/pages.it/common/ansible-galaxy.md @@ -22,3 +22,11 @@ - Crea un nuovo ruolo: `ansible-galaxy init {{nome_nuovo_ruolo}}` + +- Acquisisci informazioni su un ruolo di un utente: + +`ansible-galaxy role info {{nome_utente}}.{{nome_ruolo}}` + +- Acquisisci informazioni su una collection: + +`ansible-galaxy collection info {{nome_utente}}.{{nome_raccolta}}` diff --git a/pages.it/common/ansible.md b/pages.it/common/ansible.md index 40cbdf5396eb04..39948aa293ce6a 100644 --- a/pages.it/common/ansible.md +++ b/pages.it/common/ansible.md @@ -1,10 +1,11 @@ # ansible -> Gestisci gruppi di computer da remoto via SSH. +> Gestisce gruppi di computer da remoto via SSH. > Usa il file `/etc/ansible/hosts` per aggiungere nuovi gruppi/host. +> Alcuni comandi aggiuntivi, come `ansible galaxy`, hanno la propria documentazione. > Maggiori informazioni: . -- Lista gli host appartenenti ad un gruppo: +- Elenca gli host appartenenti ad un gruppo: `ansible {{gruppo}} --list-hosts` @@ -12,7 +13,7 @@ `ansible {{gruppo}} -m ping` -- Mostra informazioni su di un gruppo di host invocando il modulo "setup": +- Mostra informazioni su un gruppo di host invocando il modulo "setup": `ansible {{gruppo}} -m setup` @@ -27,3 +28,7 @@ - Esegui un comando usando un file di inventory personalizzato: `ansible {{gruppo}} -i {{file_inventory}} -m command -a '{{comando}}'` + +- Elenca i gruppi in un inventory: + +`ansible localhost -m debug -a '{{var=groups.keys()}}'` diff --git a/pages.it/common/aria2.md b/pages.it/common/aria2.md index cd30c3b9563c1a..42a346e5fa31e4 100644 --- a/pages.it/common/aria2.md +++ b/pages.it/common/aria2.md @@ -1,33 +1,7 @@ # aria2 -> Strumento di download da linea di comando leggero, multi-protocollo e multi-sorgente. -> Supporta HTTP, HTTPS, FTP, SFTP, BitTorrent e Metalink. -> Maggiori informazioni: . +> Questo comando è un alias per `aria2c`. -- Scarica una risorsa web: +- Consulta la documentazione del comando originale: -`aria2c {{http://example.org/myLinux.iso}}` - -- Scarica una risorsa da sorgenti multiple: - -`aria2c {{http://mirror1.org/myLinux.iso}} {{http://mirror2.org/myLinux.iso}}` - -- Scarica utilizzando 2 connessioni per host: - -`aria2c -x{{2}} {{http://example.org/myLinux.iso}}` - -- Scarica un file da un URI Metalink: - -`aria2c {{http://example.org/myLinux.metalink}}` - -- Scarica da un URI BitTorrent: - -`aria2c {{http://example.org/myLinux.torrent}}` - -- Scarica da un Magnet URI BitTorrent: - -`aria2c {{'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'}}` - -- Scarica dagli URI listati in un file: - -`aria2c -i {{uris.txt}}` +`tldr aria2c` diff --git a/pages.it/common/aria2c.md b/pages.it/common/aria2c.md index 43dcf022c5dbe6..a5f09c345e527e 100644 --- a/pages.it/common/aria2c.md +++ b/pages.it/common/aria2c.md @@ -24,6 +24,6 @@ `aria2c --ftp-user={{username}} --ftp-passwd={{password}} {{url}}` -- Limita la valocità di download (in byte al secondo): +- Limita la velocità di download (in byte al secondo): `aria2c --max-download-limit={{velocità}} {{url}}` diff --git a/pages.it/common/arp.md b/pages.it/common/arp.md index fcbc9553f32f22..1469b989af9ff1 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/asar.md b/pages.it/common/asar.md index f5ac7adc3c5b2f..92f35dd98e6c01 100644 --- a/pages.it/common/asar.md +++ b/pages.it/common/asar.md @@ -3,9 +3,9 @@ > Gestore di archivi per la piattaforma Electron. > Maggiori informazioni: . -- Archivia un file o una cartella: +- Archivia un file o una directory: -`asar pack {{percorso/al/file}} {{archivio.asar}}` +`asar pack {{percorso/del/file}} {{archivio.asar}}` - Estrai un archivio: diff --git a/pages.it/common/asciinema.md b/pages.it/common/asciinema.md index 7a325740c517d6..1351ad3712e25e 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: @@ -17,7 +17,7 @@ - Riproduci una sessione da un file locale: -`asciinema play {{percorso/al/file}}.cast` +`asciinema play {{percorso/del/file}}.cast` - Riproducei una sessione da asciinema.org: @@ -29,8 +29,8 @@ - Stampa l'output completo di una sessione locale: -`asciinema cat {{percorso/al/file}}.cast` +`asciinema cat {{percorso/del/file}}.cast` - Carica una sessione locale su asciinama.org: -`asciinema upload {{percorso/al/file}}.cast` +`asciinema upload {{percorso/del/file}}.cast` diff --git a/pages.it/common/assimp.md b/pages.it/common/assimp.md index 068620965bdea5..52749214a83d0b 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: @@ -22,7 +22,7 @@ - Mostra un riepilogo del contenuto di un file: -`assimp info {{percordo/al/file}}` +`assimp info {{percorso/del/file}}` - Elenca tutti i sottocomandi disponibili (detti "verbs"): diff --git a/pages.it/common/astyle.md b/pages.it/common/astyle.md index 907a27f94f41c8..663fee26675c60 100644 --- a/pages.it/common/astyle.md +++ b/pages.it/common/astyle.md @@ -8,18 +8,18 @@ `astyle {{file_sorgente}}` -- Applica lo stile java con parentesi graffe aperte sulla stessa riga (attached braces): +- Applica lo stile Java con parentesi graffe aperte sulla stessa riga (attached braces): -`astyle --style=java {{percorso/al/file}}` +`astyle --style=java {{percorso/del/file}}` - Applica lo stile allman per parantesi graffe su linee separate (broken braces): -`astyle --style=allman {{percorso/al/file}}` +`astyle --style=allman {{percorso/del/file}}` - Applica un'indentazione personalizzata utilizzando spazi. Scegli tra 2 e 20 spazi: -`astyle --indent=spaces={{numero_spazi}} {{percorso/al/file}}` +`astyle --indent=spaces={{numero_spazi}} {{percorso/del/file}}` - Applica un'indentazione personalizzata utilizzando tab. Scegli tra 2 e 20 tab: -`astyle --indent=tab={{numero_tab}} {{percorso/al/file}}` +`astyle --indent=tab={{numero_tab}} {{percorso/del/file}}` diff --git a/pages.it/common/at.md b/pages.it/common/at.md index 6cf5c7a8148dff..98ae24beebc501 100644 --- a/pages.it/common/at.md +++ b/pages.it/common/at.md @@ -2,7 +2,7 @@ > Programma l'esecuzione di comandi nel futuro. > Il servizio atd (o atrun) deve essere attivo per eseguire i comandi. -> Maggiori informazioni: . +> Maggiori informazioni: . - Esegui i comandi inseriti standard input tra 5 minuti (premere `Ctrl + D` dopo aver inserito i comandi): @@ -14,4 +14,4 @@ - Esegui comandi contenuti in un dato file il prossimo martedì alle 9:30 di sera: -`at -f {{percorso/al/file}} 9:30 PM Tue` +`at -f {{percorso/del/file}} 9:30 PM Tue` diff --git a/pages.it/common/atom.md b/pages.it/common/atom.md index 1bc270d3416a08..7dcb3fc9cd9b91 100644 --- a/pages.it/common/atom.md +++ b/pages.it/common/atom.md @@ -4,17 +4,17 @@ > I plugin sono gestiti da `apm`. > Maggiori informazioni: . -- Apri un file o una cartella: +- Apri un file o una directory: -`atom {{percorso/a/file_o_cartella}}` +`atom {{percorso/del/file_o_directory}}` -- Apri un file o una cartella in una nuova finestra: +- Apri un file o una directory in una nuova finestra: -`atom -n {{percorso/a/file_o_cartella}}` +`atom -n {{percorso/del/file_o_directory}}` -- Apri un file o una cartella in una finestra esistente: +- Apri un file o una directory in una finestra esistente: -`atom --add {{percorso/a/file_o_cartella}}` +`atom --add {{percorso/del/file_o_directory}}` - Avvia Atom in safe mode (non carica nessun pacchetto): diff --git a/pages.it/common/atoum.md b/pages.it/common/atoum.md index 1f036309a1a9b4..eaa14d1a9cd316 100644 --- a/pages.it/common/atoum.md +++ b/pages.it/common/atoum.md @@ -13,24 +13,24 @@ - Esegui test utilizzando uno specifico file di configurazione: -`atoum -c {{percorso/al/file}}` +`atoum -c {{percorso/del/file}}` - Esegui uno specifico file di test: -`atoum -f {{percorso/al/file}}` +`atoum -f {{percorso/del/file}}` - Esegui una specifica directory di test: -`atoum -d {{path/to/directory}}` +`atoum -d {{percorso/della/directory}}` - Esegui tutti i test sotto uno specifico namespace: `atoum -ns {{namespace}}` -- Esegui tutti i test con uno speficico tag: +- Esegui tutti i test con uno specifico tag: `atoum -t {{tag}}` - Carica un file di bootstrap personalizzato prima di eseguire i test: -`atoum --bootstrap-file {{percorso/al/file}}` +`atoum --bootstrap-file {{percorso/del/file}}` diff --git a/pages.it/common/atq.md b/pages.it/common/atq.md index 5b4067b1956759..8c61304bb5d643 100644 --- a/pages.it/common/atq.md +++ b/pages.it/common/atq.md @@ -1,7 +1,7 @@ # atq > Mostra job programmati dai comandi `at` o `batch`. -> Maggiori informazioni: . +> Maggiori informazioni: . - Mostra i job programmati per l'utente corrente: diff --git a/pages.it/common/atrm.md b/pages.it/common/atrm.md index 4fe14b1edc05cf..73b9a337abd17a 100644 --- a/pages.it/common/atrm.md +++ b/pages.it/common/atrm.md @@ -2,7 +2,7 @@ > Rimuovi job programmati dai comandi `at` o `batch`. > Per trovare i numeri dei job utilizzare `atq`. -> Maggiori informazioni: . +> Maggiori informazioni: . - Rimuovi il job numero 10: diff --git a/pages.it/common/autoflake.md b/pages.it/common/autoflake.md index a5e5bad9af4cea..9513988a4755a1 100644 --- a/pages.it/common/autoflake.md +++ b/pages.it/common/autoflake.md @@ -5,16 +5,16 @@ - 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 cartella, ricorsivamente e sovrascrivendoli: +- Rimuovi le variabili inutilizzate da tutti i file in una directory, ricorsivamente e sovrascrivendoli: -`autoflake --remove-unused-variables --in-place --recursive {{percorso/a/cartella}}` +`autoflake --remove-unused-variables --in-place --recursive {{percorso/della/directory}}` diff --git a/pages.it/common/autossh.md b/pages.it/common/autossh.md index 9644892fc2276a..dbb4fc6076f761 100644 --- a/pages.it/common/autossh.md +++ b/pages.it/common/autossh.md @@ -2,7 +2,7 @@ > Esegue, monitora e riavvia connessioni SSH. > Si riconnette automaticamente per tenere attivi tunnel di port forwarding. Accetta tutte le flag di ssh. -> Maggiori informazioni: . +> Maggiori informazioni: . - Apri una sessione SSH, riavviandola quando una porta monitorata smette di rispondere: diff --git a/pages.it/common/aws-s3.md b/pages.it/common/aws-s3.md index dba2b77920d051..9c50947c3b9d7f 100644 --- a/pages.it/common/aws-s3.md +++ b/pages.it/common/aws-s3.md @@ -1,7 +1,7 @@ # aws s3 > CLI per AWS S3 - fornisce spazio di archiviazione tramite le interfacce di Amazon Web Services. -> Maggiori informazioni: . +> Maggiori informazioni: . - Mostra file in un bucket: @@ -9,19 +9,19 @@ - Sincronizza file e directory locali su un bucket: -`aws s3 sync {{percorso/ai/file}} s3://{{nome_bucket}}` +`aws s3 sync {{percorso/dei/file}} s3://{{nome_bucket}}` - Sincronizza file e directory da un bucket in locle: -`aws s3 sync s3://{{nome_bucket}} {{path/to/target}}` +`aws s3 sync s3://{{nome_bucket}} {{percorso/del/file_o_cartella}}` - Sincronizza file e directory escludendo alcuni file o directory: -`aws s3 sync {{percorso/ai/file}} s3://{{nome_bucket}} --exclude {{percorso/al/file}} --exclude {{directory}}/*` +`aws s3 sync {{percorso/dei/file}} s3://{{nome_bucket}} --exclude {{percorso/del/file}} --exclude {{directory}}/*` - Rimuovi un file dal bucket: -`aws s3 rm s3://{{bucket}}/{{percorso/al/file}}` +`aws s3 rm s3://{{bucket}}/{{percorso/del/file}}` - Mostra solo un'anteprima dei cambiamenti: diff --git a/pages.it/common/aws.md b/pages.it/common/aws.md index d34c956db6b146..c2469a80a38cca 100644 --- a/pages.it/common/aws.md +++ b/pages.it/common/aws.md @@ -1,6 +1,7 @@ # aws > Il tool da linea di comando ufficiale per Amazon Web Services. +> Alcuni comandi aggiuntivi, come `aws s3`, hanno la propria documentazione. > Maggiori informazioni: . - Lista tutti gli utenti IAM (Identity and Access Management): diff --git a/pages.it/common/az.md b/pages.it/common/az.md index dd60a767214319..b9bfdeddc8720f 100644 --- a/pages.it/common/az.md +++ b/pages.it/common/az.md @@ -1,7 +1,8 @@ # az > Strumento ufficiale da linea di comando per Microsoft Azure. -> Maggiori informazioni: . +> Alcuni comandi aggiuntivi, come `az login`, hanno la propria documentazione. +> Maggiori informazioni: . - Effettua il log in ad Azure: diff --git a/pages.it/common/babel.md b/pages.it/common/babel.md index 064319cae5c78a..f3a04bcffca63e 100644 --- a/pages.it/common/babel.md +++ b/pages.it/common/babel.md @@ -5,31 +5,31 @@ - Transpila uno specifico file e stampa il risultato su stdout: -`babel {{percorso/al/file}}` +`babel {{percorso/del/file}}` - Transpila un file e scrivi il risultato su uno specifico file di output: -`babel {{percorso/al/file_input}} --out-file {{percorso/al/file_output}}` +`babel {{percorso/del/file_input}} --out-file {{percorso/del/file_output}}` - Transpila un file ogni volta che viene modificato: -`babel {{percorso/al/file}} --watch` +`babel {{percorso/del/file}} --watch` - Transpila un'intera directory di file: -`babel {{percorso/a/directory_input}}` +`babel {{percorso/della/directory_input}}` - Transpila un'intera directory ignorando specifici file separati da virgola: -`babel {{percorso/a/directory_input}} --ignore {{file_ignorati}}` +`babel {{percorso/della/directory_input}} --ignore {{file_ignorati}}` - Transpila minimizzando il codice JavaScript in output: -`babel {{percorso/al/file_input}} --minified` +`babel {{percorso/del/file_input}} --minified` - Scegli un insieme di preset per formattare l'output: -`babel {{percorso/al/file_input}} --presets {{preset}}` +`babel {{percorso/del/file_input}} --presets {{preset}}` - Mostra tutte le opzioni disponibili: diff --git a/pages.it/common/banner.md b/pages.it/common/banner.md index 11c8d82c900d44..bad959033a2b2b 100644 --- a/pages.it/common/banner.md +++ b/pages.it/common/banner.md @@ -1,7 +1,7 @@ # banner > Stampa il testo fornito per argomento come un grande banner in ASCII art. -> Maggiori informazioni: . +> Maggiori informazioni: . - Stampa il testo come un grande banner (le virgolette sono opzionali): diff --git a/pages.it/common/basename.md b/pages.it/common/basename.md index 8014f562900fe1..f8980693bf7c1c 100644 --- a/pages.it/common/basename.md +++ b/pages.it/common/basename.md @@ -5,8 +5,8 @@ - Mostra solo il nome del file da un percorso: -`basename {{percorso/al/file}}` +`basename {{percorso/del/file}}` - Mostra solo il nome di un file da un percorso, rimuovendo un suffisso: -`basename {{percorso/al/file}} {{suffisso}}` +`basename {{percorso/del/file}} {{suffisso}}` diff --git a/pages.it/common/bash.md b/pages.it/common/bash.md index 83fef8dc22876b..b3337794ad30a4 100644 --- a/pages.it/common/bash.md +++ b/pages.it/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell. > Interprete da linea di comando compatibile con `sh`. -> Maggiori informazioni: . +> Maggiori informazioni: . - Avvia una shell interattiva: diff --git a/pages.it/common/bashmarks.md b/pages.it/common/bashmarks.md index 12ffbb03b0be9b..6ba2b726c2be8e 100644 --- a/pages.it/common/bashmarks.md +++ b/pages.it/common/bashmarks.md @@ -7,15 +7,15 @@ `l` -- Salva la cartella corrente come segnalibro: +- Salva la directory corrente come segnalibro: `s {{nome_segnalibro}}` -- Vai ad una cartella salvata: +- Vai ad una directory salvata: `g {{nome_segnalibro}}` -- Lista i contenuti di una cartella salvata: +- Lista i contenuti di una directory salvata: `p {{nome_segnalibro}}` diff --git a/pages.it/common/bastet.md b/pages.it/common/bastet.md new file mode 100644 index 00000000000000..c8706da20a8407 --- /dev/null +++ b/pages.it/common/bastet.md @@ -0,0 +1,32 @@ +# bastet + +> Clone di Tetris nel Terminale. +> Maggiori informazioni: . + +- Invia un gioco tetris: + +`bastet` + +- Sposta il pezzo a sinistra o a destra: + +`{{Sinistra|Destra}} freccia` + +- Ruota in senso orario o inverso: + +`{{Spazio|tasto freccia su}}` + +- Caduta lenta: + +`tasto freccia giù` + +- Caduta veloce: + +`Invio` + +- Pausa: + +`p` + +- Lasciare il gioco: + +`Ctrl + C` diff --git a/pages.it/common/bat.md b/pages.it/common/bat.md index 79a8b5b779c2df..77470caa7dadbe 100644 --- a/pages.it/common/bat.md +++ b/pages.it/common/bat.md @@ -2,6 +2,7 @@ > Stampa e concatena file. > Un clone di `cat` con syntax highlighting e integrazione Git. +> Maggiori informazioni: . - Stampa i contenuti di un file su standard output: diff --git a/pages.it/common/batch.md b/pages.it/common/batch.md index 00aa001f0a4907..f962a586efdf45 100644 --- a/pages.it/common/batch.md +++ b/pages.it/common/batch.md @@ -2,7 +2,7 @@ > Esegui comandi nel futuro quando il carico di lavoro del sistema lo permette. > Il servizio atd (o atrun) deve essere attivo per eseguire i comandi. -> Maggiori informazioni: . +> Maggiori informazioni: . - Esegui i comandi inseriti standard input (premere `Ctrl + D` dopo aver inserito i comandi): @@ -14,4 +14,4 @@ - Esegui comandi contenuti in un dato file: -`batch -f {{percorso/al/file}}` +`batch -f {{percorso/del/file}}` diff --git a/pages.it/common/bc.md b/pages.it/common/bc.md index 07d228bb9aef14..619cae61e6bf42 100644 --- a/pages.it/common/bc.md +++ b/pages.it/common/bc.md @@ -1,7 +1,7 @@ # bc > Calcolatore. -> Maggiori informazioni: . +> Maggiori informazioni: . - Esegui in modalità interattiva utilizzando la libreria math della standard library: diff --git a/pages.it/common/beanstalkd.md b/pages.it/common/beanstalkd.md index f21acc9b282af8..61df8966a5792a 100644 --- a/pages.it/common/beanstalkd.md +++ b/pages.it/common/beanstalkd.md @@ -13,8 +13,8 @@ - Rendi le code di lavoro persistenti salvandole su disco: -`beanstalkd -b {{percorso/a/directory_persistente}}` +`beanstalkd -b {{percorso/della/directory_persistente}}` -- Sincronizza con una cartella persistente ogni 500 millisecondi: +- Sincronizza con una directory persistente ogni 500 millisecondi: -`beanstalkd -b {{percorso/a/directory_persistente}} -f {{500}}` +`beanstalkd -b {{percorso/della/directory_persistente}} -f {{500}}` diff --git a/pages.it/common/bedtools.md b/pages.it/common/bedtools.md index 25f6e1c89b6669..840e752a14ed9a 100644 --- a/pages.it/common/bedtools.md +++ b/pages.it/common/bedtools.md @@ -2,28 +2,28 @@ > Un coltellino svizzero di strumenti per analisi genomica. > Usato per intersecare, raggruppare, convertire e contare dati in formato BAM, BED, GFF/GTF, VCF. -> Maggiori informazioni: . +> Maggiori informazioni: . - Interseca i fili genetici delle sequenze contenute in due file diversi e salva il risultato: -`bedtools intersect -a {{percorso/al/file_1}} -b {{percorso/al/file_2}} -s > {{percorso/al/file_output}}` +`bedtools intersect -a {{percorso/del/file_1}} -b {{percorso/del/file_2}} -s > {{percorso/del/file_output}}` - Interseca due file unendo il risultato a sinistra, ovvero riporta ogni feature da {{file_1}} e NULL dove non c'è sovrapposizione con {{file_2}}: -`bedtools intersect -a {{percorso/al/file_1}} -b {{percorso/al/file_2}} -lof > {{percorso/al/file_output}}` +`bedtools intersect -a {{percorso/del/file_1}} -b {{percorso/del/file_2}} -lof > {{percorso/del/file_output}}` - Usa un algoritmo più efficiente per intersecare due file precedentemente ordinati: -`bedtools intersect -a {{percorso/al/file_1}} -b {{percorso/al/file_2}} -sorted > {{percorso/al/file_output}}` +`bedtools intersect -a {{percorso/del/file_1}} -b {{percorso/del/file_2}} -sorted > {{percorso/del/file_output}}` - Raggruppa file in base alle prime tre e la quinta colonna e raggruppa la sesta colonna sommandola: -`bedtools groupby -i {{percorso/al/file}} -c 1-3,5 -g 6 -o sum` +`bedtools groupby -i {{percorso/del/file}} -c 1-3,5 -g 6 -o sum` - Converti da formato BAM a BED: -`bedtools bamtobed -i {{percorso/al/file}}.bam > {{percorso/al/file}}.bed` +`bedtools bamtobed -i {{percorso/del/file}}.bam > {{percorso/del/file}}.bed` - Trova per tutte le proprietà in {{file_1}} la più vicina in {{file_2}} e scrivi la loro distanza in una ulteriore colonna (i file in input devono essere ordinati): -`bedtools closest -a {{percorso/al/file_1}}.bed -b {{percorso/al/file_2}}.bed -d` +`bedtools closest -a {{percorso/del/file_1}}.bed -b {{percorso/del/file_2}}.bed -d` diff --git a/pages.it/common/behat.md b/pages.it/common/behat.md index c372b1786a9c58..666462235dfa9e 100644 --- a/pages.it/common/behat.md +++ b/pages.it/common/behat.md @@ -21,7 +21,7 @@ - Esegui i testi e scrivi i risultati in un file: -`behat --out {{percorso/a/file}}` +`behat --out {{percorso/del/file}}` - Mostra una lista delle definizioni nelle suite di test: diff --git a/pages.it/common/binwalk.md b/pages.it/common/binwalk.md new file mode 100644 index 00000000000000..5ffe17c3bf80a3 --- /dev/null +++ b/pages.it/common/binwalk.md @@ -0,0 +1,28 @@ +# binwalk + +> Strumento per l'analisi di file binari. +> Maggiori informazioni: . + +- Scansiona un file binario: + +`binwalk {{percorso/del/file}}` + +- Estrae file da un binario, specificando la directory di output: + +`binwalk --extract --directory {{directory_di_output}} {{percorso/del/file}}` + +- Estrae file in maniera ricorsiva a partire da un binario, limitando la profondità di ricorsione a 2 livelli: + +`binwalk --extract --matryoshka --depth {{2}} {{percorso/del/file}}` + +- Estrae file da un binario utilizzando una particolare firma (ad esempio il MIME Type): + +`binwalk --dd '{{png image:png}}' {{percorso/del/file}}` + +- Analizza l'entropia di un binario e salva il grafico con lo stesso filename del binario, con l'estensione `.png` in fondo: + +`binwalk --entropy --save {{percorso/del/file}}` + +- Combina analisi di entropia, firme e opcode in un unico comando: + +`binwalk --entropy --signature --opcodes {{percorso/del/file}}` diff --git a/pages.it/common/bitcoin-cli.md b/pages.it/common/bitcoin-cli.md index 0e4eb9b200212d..0520b71cea2ba7 100644 --- a/pages.it/common/bitcoin-cli.md +++ b/pages.it/common/bitcoin-cli.md @@ -22,4 +22,4 @@ - Esporta le informazioni sul portafogli in un file di testo: -`bitcoin-cli dumpwallet "{{percorso/al/file}}"` +`bitcoin-cli dumpwallet "{{percorso/del/file}}"` diff --git a/pages.it/common/black.md b/pages.it/common/black.md new file mode 100644 index 00000000000000..7870f316ce9090 --- /dev/null +++ b/pages.it/common/black.md @@ -0,0 +1,28 @@ +# black + +> Un formattatore automatico di codice Python. +> Maggiori informazioni: . + +- Auto-formatta un file o un'intera directory: + +`black {{percorso/del/file_o_directory}}` + +- Formatta il codice che gli viene passato come stringa: + +`black -c "{{codice}}"` + +- Mostra i cambiamenti che verrebbero applicati a ciascun file: + +`black --diff {{percorso/del/file_o_directory}}` + +- Verifica se i file necessitano di auto-formattazione senza modificare nulla: + +`black --check {{percorso/del/file_o_directory}}` + +- Auto-formatta un file o una directory senza produrre output: + +`black --quiet {{percorso/del/file_o_directory}}` + +- Auto-formatta un file o una directory senza sostituire gli apici con le doppie virgolette: + +`black --skip-string-normalization {{percorso/del/file_o_directory}}` diff --git a/pages.it/common/blackfire.md b/pages.it/common/blackfire.md index 4409394678568f..9d57714a21fa82 100644 --- a/pages.it/common/blackfire.md +++ b/pages.it/common/blackfire.md @@ -17,19 +17,19 @@ - Lancia il profiler su uno specifico programma: -`blackfire run {{php percorso/al/file.php}}` +`blackfire run {{php percorso/del/file.php}}` - Lancia il profiler e raccogli 10 campioni: -`blackfire --samples={{10}} run {{php percorso/al/file.php}}` +`blackfire --samples={{10}} run {{php percorso/del/file.php}}` - Lancia il profiler e mostra i risultati in output come JSON: -`blackfire --json run {{php percorso/al/file.php}}` +`blackfire --json run {{php percorso/del/file.php}}` - Carica un file del profiler sul servizio web di Blackfire: -`blackfire upload {{percorso/al/file}}` +`blackfire upload {{percorso/del/file}}` - Mostra lo stato dei profili sul servizio web di Blackfire: diff --git a/pages.it/common/blender.md b/pages.it/common/blender.md index e59a237e6528fc..9add0f3df98459 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`): @@ -12,11 +12,11 @@ `blender -b {{nome_file}}.blend -o //{{render/frame_###.png}} -a` -- Renderizza il decimo frame di un'animazione come singola immagine, salvandolo in una cartella esistente (percorso assoluto): +- Renderizza il decimo frame di un'animazione come singola immagine, salvandolo in una directory esistente (percorso assoluto): -`blender -b {{nome_file}}.blend -o {{/percorso/a/directory_output}} -f {{10}}` +`blender -b {{nome_file}}.blend -o {{/percorso/della/directory_output}} -f {{10}}` -- Renderizza il penultimo frame di un'animazione come immagine JPEG, salvandolo in una cartella esistente (path relativa al file): +- Renderizza il penultimo frame di un'animazione come immagine JPEG, salvandolo in una directory esistente (path relativa al file): `blender -b {{nome_file}}.blend -o //{{directory_output}} -F {{JPEG}} -f {{-2}}` diff --git a/pages.it/common/borg.md b/pages.it/common/borg.md index 7e0ddb886bfb73..bdc4108fb119ec 100644 --- a/pages.it/common/borg.md +++ b/pages.it/common/borg.md @@ -6,27 +6,27 @@ - Inizializza una repository (locale): -`borg init {{/percorso/a/repo_o_directory}}` +`borg init {{/percorso/del/repo_o_directory}}` - Esegui il backup di una directory nella repository, creando un archivio chiamato "Lunedi": -`borg create --progress {{/percorso/a/repo_o_directory}}::{{Lunedi}} {{/percorso/a/directory_sorgente}}` +`borg create --progress {{/percorso/del/repo_o_directory}}::{{Lunedi}} {{/percorso/della/directory_sorgente}}` - Lista tutti gli archivi in una repository: -`borg list {{/percorso/a/repo_o_directory}}` +`borg list {{/percorso/del/repo_o_directory}}` - Estrai una specifica directory dall'archivio "Lunedi" in una repository remota, escludendo tutti i file `.ext`: -`borg extract {{utente}}@{{host}}:{{/percorso/a/repo_o_directory}}::{{Lunedi}} {{percorso/a/cartella_destinazione}} --exclude '{{*.ext}}'` +`borg extract {{utente}}@{{host}}:{{/percorso/del/repo_o_directory}}::{{Lunedi}} {{percorso/della/directory_destinazione}} --exclude '{{*.ext}}'` - Riduci una repository eliminando tutti gli archivi più vecchi di 7 giorni, elencando i cambiamenti: -`borg prune --keep-within {{7d}} --list {{/percorso/a/repo_o_directory}}` +`borg prune --keep-within {{7d}} --list {{/percorso/del/repo_o_directory}}` - Monta una repository come filesystem FUSE: -`borg mount {{/percorso/a/repo_o_directory}}::{{Lunedi}} {{/percorso/a/mountpoint}}` +`borg mount {{/percorso/del/repo_o_directory}}::{{Lunedi}} {{/percorso/del/mountpoint}}` - Mostra aiuto sul come creare archivi: diff --git a/pages.it/common/box.md b/pages.it/common/box.md index edab0b26ead39c..e83f8d96974c84 100644 --- a/pages.it/common/box.md +++ b/pages.it/common/box.md @@ -1,7 +1,7 @@ # box > Una applicazione PHP per creare e gestire Phars. -> Maggiori informazioni: . +> Maggiori informazioni: . - Crea un nuovo file Phar: @@ -9,7 +9,7 @@ - Crea un nuovo file Phar usando uno specifico file di configurazione: -`box build -c {{percorso/a/configurazione}}` +`box build -c {{percorso/della/configurazione}}` - Mostra informazioni sulla estensione PHP PHAR: @@ -17,7 +17,7 @@ - Mostra informazioni su di uno specifico file Phar: -`box info {{percorso/a/file_phar}}` +`box info {{percorso/del/file_phar}}` - Valida il primo file di configurazione trovato nella directory corrente: @@ -25,7 +25,7 @@ - Verifica la firma di uno specifico file Phar: -`box verify {{percorso/a/file_phar}}` +`box verify {{percorso/del/file_phar}}` - Mostra tutti i comandi ed opzioni disponibili: diff --git a/pages.it/osx/brew-bundle.md b/pages.it/common/brew-bundle.md similarity index 100% rename from pages.it/osx/brew-bundle.md rename to pages.it/common/brew-bundle.md diff --git a/pages.it/osx/brew-cask.md b/pages.it/common/brew-cask.md similarity index 100% rename from pages.it/osx/brew-cask.md rename to pages.it/common/brew-cask.md diff --git a/pages.it/osx/brew.md b/pages.it/common/brew.md similarity index 100% rename from pages.it/osx/brew.md rename to pages.it/common/brew.md diff --git a/pages.it/common/browser-sync.md b/pages.it/common/browser-sync.md index c269cea5f7090c..03abba45b2a29c 100644 --- a/pages.it/common/browser-sync.md +++ b/pages.it/common/browser-sync.md @@ -5,11 +5,11 @@ - Avvia un server da una specifica directory: -`browser-sync start --server {{percorso/a/directory}} --files {{percorso/a/directory}}` +`browser-sync start --server {{percorso/della/directory}} --files {{percorso/della/directory}}` - Avvia un server da una directory locale, monitorando tutti i file CSS: -`browser-sync start --server --files '{{percorso/a/directory/*.css}}'` +`browser-sync start --server --files '{{percorso/della/directory/*.css}}'` - Crea un file di configurazione: diff --git a/pages.it/common/bundler.md b/pages.it/common/bundler.md new file mode 100644 index 00000000000000..506bac5401d209 --- /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/bup.md b/pages.it/common/bup.md index 2cbffc283a47f3..91086897dc613b 100644 --- a/pages.it/common/bup.md +++ b/pages.it/common/bup.md @@ -5,20 +5,20 @@ - Inizializza una repository di backup nella directory locale specificata: -`bup -d {{percorso/a/repository}} init` +`bup -d {{percorso/della/repository}} init` -- Prepara una certa cartella prima di fare un backup: +- Prepara una certa directory prima di fare un backup: -`bup -d {{percorso/a/repository}} index {{percorso/a/directory}}` +`bup -d {{percorso/della/repository}} index {{percorso/della/directory}}` -- Esegui il backup di una cartella in una repository locale: +- Esegui il backup di una directory in una repository locale: -`bup -d {{percorso/a/repository}} save -n {{nome_backup}} {{percorso/a/directory}}` +`bup -d {{percorso/della/repository}} save -n {{nome_backup}} {{percorso/della/directory}}` - Elenca i di backup attualmente nella repository: -`bup -d {{percorso/a/repository}} ls` +`bup -d {{percorso/della/repository}} ls` -- Ripristina uno specifico backup in una determinata cartella locale: +- Ripristina uno specifico backup in una determinata directory locale: -`bup -d {{percorso/a/repository}} restore -C {{percorso/a/destinazione}} {{nome_backup}}` +`bup -d {{percorso/della/repository}} restore -C {{percorso/della/destinazione}} {{nome_backup}}` diff --git a/pages.it/common/bw.md b/pages.it/common/bw.md index 86ebca00ec1369..f94ca578ebb7e8 100644 --- a/pages.it/common/bw.md +++ b/pages.it/common/bw.md @@ -19,6 +19,6 @@ `bw get item {{github}}` -- Crea una cartella in un vault bitwarden: +- Crea una directory in un vault bitwarden: -`{{echo -n '{"name":"Nome cartella"}' | base64}} | bw create folder` +`{{echo -n '{"name":"Nome directory"}' | base64}} | bw create folder` diff --git a/pages.it/common/bzip2.md b/pages.it/common/bzip2.md index 730746b4065f0b..c829b64b899907 100644 --- a/pages.it/common/bzip2.md +++ b/pages.it/common/bzip2.md @@ -1,16 +1,16 @@ # bzip2 > Compressore di file a blocchi ordinati. -> Maggiori informazioni: . +> Maggiori informazioni: . - Comprimi un file: -`bzip2 {{percorso/al/file}}` +`bzip2 {{percorso/del/file}}` - Decomprimi un file: -`bzip2 -d {{percorso/al/file_compresso.bz2}}` +`bzip2 -d {{percorso/del/file_compresso.bz2}}` - Decomprimi un file e mostrane il contenuto su standard output: -`bzip2 -dc {{percorso/al/file_compresso.bz2}}` +`bzip2 -dc {{percorso/del/file_compresso.bz2}}` diff --git a/pages.it/common/calibre-server.md b/pages.it/common/calibre-server.md index df0cb09c986cd5..8a8858c836b966 100644 --- a/pages.it/common/calibre-server.md +++ b/pages.it/common/calibre-server.md @@ -1,11 +1,11 @@ # calibre-server -> Un'applicazione server che può essere usata per distribuire ebook in una rete. -> Gli ebook devono prima essere importati nella libreria usando la GUI o calibredb. -> Parte del manager di ebook Calibre. +> Un'applicazione server che può essere usata per distribuire e-book in una rete. +> Gli e-book devono prima essere importati nella libreria usando la GUI o calibredb. +> Parte del manager di e-book Calibre. > Maggiori informazioni: . -- Avvia un server per distribuire ebook. Accesso a http://localhost:8080: +- Avvia un server per distribuire e-book. Accesso a http://localhost:8080: `calibre-server` diff --git a/pages.it/common/calibredb.md b/pages.it/common/calibredb.md index bd5ac6b0873e14..241b16751ecd82 100644 --- a/pages.it/common/calibredb.md +++ b/pages.it/common/calibredb.md @@ -1,25 +1,25 @@ # calibredb -> Strumentoi per gestire il tuo database di ebook. -> Parte del manager di ebook Calibre. +> Strumentoi per gestire il tuo database di e-book. +> Parte del manager di e-book Calibre. > Maggiori informazioni: . -- Elenca gli ebook nella libreria con informazioni aggiuntive: +- Elenca gli e-book nella libreria con informazioni aggiuntive: `calibredb list` -- Cerca tra gli ebook mostrando informazioni aggiuntive: +- Cerca tra gli e-book mostrando informazioni aggiuntive: `calibredb list --search {{termine_di_ricerca}}` -- Cerca mostrando solamente gli ID degli ebook: +- Cerca mostrando solamente gli ID degli e-book: `calibredb search {{termine_di_ricerca}}` -- Aggiungi uno o più ebook alla libreria: +- Aggiungi uno o più e-book alla libreria: `calibredb add {{file1 file2 …}}` -- Rimuovi uno o più ebook dalla libreria. Sono necessari gli ID (vedi sopra): +- Rimuovi uno o più e-book dalla libreria. Sono necessari gli ID (vedi sopra): `calibredb remove {{id1 id2 …}}` diff --git a/pages.it/common/cargo.md b/pages.it/common/cargo.md index d9ae80c427c066..13cb5edfc5cf92 100644 --- a/pages.it/common/cargo.md +++ b/pages.it/common/cargo.md @@ -2,7 +2,8 @@ > Gestore di pacchetti di Rust. > Gestisce progetti Rust ed i moduli dai quali sono dipendenti (detti crate). -> Maggiori informazioni: . +> Alcuni comandi aggiuntivi, come `cargo build`, hanno la propria documentazione. +> Maggiori informazioni: . - Cerca una crate: @@ -22,12 +23,12 @@ - Crea un nuovo progetto Rust binario o di libreria nella directory specificata: -`cargo new {{path/a/directory}} --{{bin|lib}}` +`cargo new {{percorso/della/directory}} --{{bin|lib}}` -- Builda il progetto Rust nella cartella corrente: +- Builda il progetto Rust nella directory corrente: `cargo build` - Builda utilizzando più job (thread) paralleli: -`cargo build -j {{numero_job}}` +`cargo build --jobs {{numero_job}}` diff --git a/pages.it/common/cd.md b/pages.it/common/cd.md index b84244b26f914f..9e5d87f111e33a 100644 --- a/pages.it/common/cd.md +++ b/pages.it/common/cd.md @@ -1,11 +1,11 @@ # cd > Cambia la directory corrente. -> Maggiori informazioni: . +> Maggiori informazioni: . - Vai alla directory specificata: -`cd {{percorso/a/directory}}` +`cd {{percorso/della/directory}}` - Vai alla directory home dell'utente corrente: diff --git a/pages.it/common/chcon.md b/pages.it/common/chcon.md deleted file mode 100644 index 14d1dd5ec78f88..00000000000000 --- a/pages.it/common/chcon.md +++ /dev/null @@ -1,32 +0,0 @@ -# chcon - -> Cambia contesto di sicurezza SELinux di file o directory. -> Maggiori informazioni: . - -- Mostra il contesto di sicurezza di un file: - -`ls -lZ {{percorso/al/file}}` - -- Cambia il contesto di sicurezza di un file usandone un'altro come riferimento: - -`chcon --reference={{file_di_riferimento}} {{file}}` - -- Cambia l'intero contesto di sicurezza SELinux di un file: - -`chcon {{utente}}:{{ruolo}}:{{tipo}}:{{range/livello}} {{file}}` - -- Cambia solo l'utente di un contesto di sicurezza SELinux: - -`chcon -u {{utente}} {{file}}` - -- Cambia solo il ruolo di un contesto di sicurezza SELinux: - -`chcon -r {{ruolo}} {{file}}` - -- Cambia solo il tipo di un contesto di sicurezza SELinux: - -`chcon -t {{tipo}} {{file}}` - -- Cambia solo il range/livello di un contesto di sicurezza SELinux: - -`chcon -l {{range/livello}} {{file}}` diff --git a/pages.it/common/chgrp.md b/pages.it/common/chgrp.md index 0cf090420c82da..c988bedc59c67b 100644 --- a/pages.it/common/chgrp.md +++ b/pages.it/common/chgrp.md @@ -5,16 +5,16 @@ - Cambia il gruppo proprietario di un file/directory: -`chgrp {{gruppo}} {{percorso/al/file}}` +`chgrp {{gruppo}} {{percorso/del/file}}` - Cambia ricorsivamente il gruppo proprietario di una directory e dei suoi contenuti: -`chgrp -R {{gruppo}} {{percorso/a/directory}}` +`chgrp -R {{gruppo}} {{percorso/della/directory}}` - Cambia il gruppo proprietario di un link simbolico: -`chgrp -h {{gruppo}} {{path/to/symlink}}` +`chgrp -h {{gruppo}} {{percorso/del/symlink}}` - Cambia il gruppo proprietario di un file/directory rendendolo uguale a quello di un altro file di riferimento: -`chgrp --reference={{percorso/al/file_riferimento}} {{percorso/al/file}}` +`chgrp --reference={{percorso/del/file_riferimento}} {{percorso/del/file}}` diff --git a/pages.it/common/chmod.md b/pages.it/common/chmod.md index f8dc49f0cbc5d5..f7abded314dacc 100644 --- a/pages.it/common/chmod.md +++ b/pages.it/common/chmod.md @@ -5,24 +5,24 @@ - Dai il permesso di eseguire (x) un file al suo proprietario (u): -`chmod u+x {{percorso/al/file}}` +`chmod u+x {{percorso/del/file}}` - Dai permessi di lettura (r) e scrittura (w) per un file/directory al suo proprietario: -`chmod u+rw {{percorso/a/file_o_directory}}` +`chmod u+rw {{percorso/del/file_o_directory}}` - Rimuovi i permessi di esecuzione al [g]ruppo proprietario del file: -`chmod g-x {{percorso/al/file}}` +`chmod g-x {{percorso/del/file}}` - Dai a tutti gli utenti (a) diritti di lettura ed esecuzione: -`chmod a+rx {{percorso/al/file}}` +`chmod a+rx {{percorso/del/file}}` - Dai ad altri utenti (non nel gruppo proprietario) gli stessi diritti del gruppo: -`chmod o=g {{percorso/al/file}}` +`chmod o=g {{percorso/del/file}}` - Cambia permessi ricorsivamente dando al [g]ruppo e agli altri utenti (o) diritto di scrittura: -`chmod -R g+w,o+w {{percorso/alla/directory}}` +`chmod -R g+w,o+w {{percorso/della/directory}}` diff --git a/pages.it/common/chown.md b/pages.it/common/chown.md index 3ba6df924c1ec9..0d3e7238561187 100644 --- a/pages.it/common/chown.md +++ b/pages.it/common/chown.md @@ -5,20 +5,20 @@ - Cambia l'utente proprietario di un file/directory: -`chown {{utente}} {{percorso/a/file_o_directory}}` +`chown {{utente}} {{percorso/del/file_o_directory}}` - Cambia utente e gruppo proprietari di un file/directory: -`chown {{utente}}:{{gruppo}} {{percorso/a/file_o_directory}}` +`chown {{utente}}:{{gruppo}} {{percorso/del/file_o_directory}}` -- Cambia ricorsivamente il proprietario di una cartella ed i suoi contenuti: +- Cambia ricorsivamente il proprietario di una directory ed i suoi contenuti: -`chown -R {{utente}} {{percorso/alla/directory}}` +`chown -R {{utente}} {{percorso/della/directory}}` - Cambia il proprietario di un link simbolico: -`chown -h {{utente}} {{percorso/al/link_simbolico}}` +`chown -h {{utente}} {{percorso/del/link_simbolico}}` - Cambia il proprietario di un file/directory rendendolo uguale a quello di un altro file di riferimento: -`chown --reference={{percorso/al/file_riferimento}} {{percorso/a/file_o_directory}}` +`chown --reference={{percorso/del/file_riferimento}} {{percorso/del/file_o_directory}}` diff --git a/pages.it/common/chromium.md b/pages.it/common/chromium.md index 267a8ee68c5669..89e772ea0ad758 100644 --- a/pages.it/common/chromium.md +++ b/pages.it/common/chromium.md @@ -1,11 +1,11 @@ # chromium > Browser web open-source di Google. -> Maggiori informazioni: . +> Maggiori informazioni: . - Apri un file: -`chromium {{percorso/al/file.html}}` +`chromium {{percorso/del/file.html}}` - Apri un URL: diff --git a/pages.it/common/chroot.md b/pages.it/common/chroot.md index 86a484885de463..f57b28daf3d24a 100644 --- a/pages.it/common/chroot.md +++ b/pages.it/common/chroot.md @@ -1,11 +1,11 @@ # chroot -> Esegui un comando o una shell interattiva con una speciale root directory. +> Esegui un comando o una shell interattiva con una speciale directory root. > Maggiori informazioni: . -- Esegui un comando con una diversa root directory: +- Esegui un comando con una diversa directory root: -`chroot {{/percorso/alla/nuova/root}} {{comando}}` +`chroot {{/percorso/della/nuova/root}} {{comando}}` - Specifica utente e gruppo (ID o nome) da usare: diff --git a/pages.it/common/chsh.md b/pages.it/common/chsh.md index ec0bd8a3df1014..7214f81f7630b3 100644 --- a/pages.it/common/chsh.md +++ b/pages.it/common/chsh.md @@ -5,4 +5,4 @@ - Cambia shell: -`chsh -s {{percorso/a/eseguibile_della_shell}} {{nome_utente}}` +`chsh -s {{percorso/dell/eseguibile_della_shell}} {{nome_utente}}` diff --git a/pages.it/common/cksum.md b/pages.it/common/cksum.md index 31f36b87ff038a..a8162b18af331d 100644 --- a/pages.it/common/cksum.md +++ b/pages.it/common/cksum.md @@ -6,4 +6,4 @@ - Calcola e mostra un checksum di 32 bit, dimensione in byte e nome del file: -`cksum {{percorso/al/file}}` +`cksum {{percorso/del/file}}` diff --git a/pages.it/common/clamav.md b/pages.it/common/clamav.md new file mode 100644 index 00000000000000..8b05ce25a92377 --- /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 13c11dbf91e5c2..07782dba85bd55 100644 --- a/pages.it/common/clamscan.md +++ b/pages.it/common/clamscan.md @@ -5,11 +5,11 @@ - Analizza un file cercando vulnerabilità: -`clamscan {{percorso/al/file}}` +`clamscan {{percorso/del/file}}` - Analizza ricorsivamente tutti i file in una specifica directory: -`clamscan -r {{percorso/alla/directory}}` +`clamscan -r {{percorso/della/directory}}` - Analizza dati da standard input: @@ -17,7 +17,7 @@ - Specifica un file o directory di file da usare come database virus: -`clamscan --database {{percorso/a/file_o_directory}}` +`clamscan --database {{percorso/del/file_o_directory}}` - Analizza la directory corrente e mostra in output solo i file infetti: @@ -25,11 +25,11 @@ - Scrivi il risultato di uno scan in un file di log: -`clamscan --log {{percorso/a/file_log}}` +`clamscan --log {{percorso/del/file_log}}` - Sposta i file infetti in una specifica directory: -`clamscan --move {{percorso/a/directory_quarantena}}` +`clamscan --move {{percorso/della/directory_quarantena}}` - Elimina i file infetti: diff --git a/pages.it/common/clang-cpp.md b/pages.it/common/clang-cpp.md new file mode 100644 index 00000000000000..1a812ddb166308 --- /dev/null +++ b/pages.it/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Questo comando è un alias per `clang++`. + +- Consulta la documentazione del comando originale: + +`tldr clang++` diff --git a/pages.it/common/clementine.md b/pages.it/common/clementine.md index a75c4fd5d98bc8..8eaebe331f2845 100644 --- a/pages.it/common/clementine.md +++ b/pages.it/common/clementine.md @@ -9,7 +9,7 @@ - Avvia la riproduzione di un file musicale: -`clementine {{URL|percorso/a/file}}` +`clementine {{URL|percorso/del/file}}` - Pausa o riprendi la riproduzione: @@ -29,7 +29,7 @@ - Carica un file playlist: -`clementine --load {{percorso/a/file_playlist}}` +`clementine --load {{percorso/del/file_playlist}}` - Riproduci la quinta traccia nella playlist attualmente caricata: diff --git a/pages.it/common/cloc.md b/pages.it/common/cloc.md index f0ab505a3cf006..d7ad734f14a2ae 100644 --- a/pages.it/common/cloc.md +++ b/pages.it/common/cloc.md @@ -5,12 +5,12 @@ - Conta tutte le linee di codice in una directory: -`cloc {{percorso/alla/directory}}` +`cloc {{percorso/della/directory}}` - Conta tutte le linee di codice in una directory, mostrando una barra di avanzamento durante l'operazione: -`cloc --progress=1 {{percorso/alla/directory}}` +`cloc --progress=1 {{percorso/della/directory}}` - Compara i file sorgente in 2 diverse directory e conta le differenze tra di essi: -`cloc --diff {{percorso/a/directory1}} {{percorso/a/directory2}}` +`cloc --diff {{percorso/della/directory1}} {{percorso/della/directory2}}` diff --git a/pages.it/common/clockwork-cli.md b/pages.it/common/clockwork-cli.md index a11ca1ada2f67e..428e6d590fca57 100644 --- a/pages.it/common/clockwork-cli.md +++ b/pages.it/common/clockwork-cli.md @@ -9,8 +9,8 @@ - Monitora i log di Clockwork per uno specifico progetto: -`clockwork-cli {{percorso/a/directory_progetto}}` +`clockwork-cli {{percorso/della/directory_progetto}}` - Monitora i log di Clockwork per più progetti: -`clockwork-cli {{percorso/a/directory1 percorso/a/directory2 …}}` +`clockwork-cli {{percorso/della/directory1 percorso/della/directory2 …}}` diff --git a/pages.it/common/clojure.md b/pages.it/common/clojure.md new file mode 100644 index 00000000000000..4bda9c1a75a627 --- /dev/null +++ b/pages.it/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Questo comando è un alias per `clj`. + +- Consulta la documentazione del comando originale: + +`tldr clj` diff --git a/pages.it/common/cmake.md b/pages.it/common/cmake.md index f6f97bf658d518..15920ce4970eba 100644 --- a/pages.it/common/cmake.md +++ b/pages.it/common/cmake.md @@ -2,7 +2,7 @@ > Generatore di ambienti di compilazione multipiattaforma. > Genera Makefile, progetti Visual Studio o altro, in base al sistema operativo. -> Maggiori informazioni: . +> Maggiori informazioni: . - Genera un Makefile ed usalo per compilare un progetto nella stessa directory dei sorgenti: diff --git a/pages.it/common/cmark.md b/pages.it/common/cmark.md index 95f955ad1be15a..08e9b376b5b83c 100644 --- a/pages.it/common/cmark.md +++ b/pages.it/common/cmark.md @@ -15,6 +15,6 @@ `cmark --smart --to html {{file.md}}` -- Converti validando i caratteri UTF8: +- Converti validando i caratteri UTF-8: `cmark --validate-utf8 {{file.md}}` diff --git a/pages.it/common/cmatrix.md b/pages.it/common/cmatrix.md new file mode 100644 index 00000000000000..3a8659bb10467c --- /dev/null +++ b/pages.it/common/cmatrix.md @@ -0,0 +1,20 @@ +# cmatrix + +> Genera lettere che cadono, come in Matrix. +> Maggiori informazioni: . + +- Attivare lo scorrimento asincrono: + +`cmatrix -a` + +- Rendi le lettere rosse: + +`cmatrix -C {{red}}` + +- Cambia colore a arcobaleno: + +`cmatrix -r` + +- Imposta il dilazione di aggiornamento a 2 centisecondi (20 millisecondi): + +`cmatrix -u {{2}}` diff --git a/pages.it/common/code.md b/pages.it/common/code.md index 10710a466c93d6..61868fe8cda556 100644 --- a/pages.it/common/code.md +++ b/pages.it/common/code.md @@ -13,11 +13,11 @@ - Apri un file o una directory in VS Code: -`code {{percorso/a/file_o_directory}}` +`code {{percorso/del/file_o_directory}}` - Apri un file o una directory nella finestra attualmente aperta di VS Code: -`code --reuse-window {{percorso/a/file_o_directory}}` +`code --reuse-window {{percorso/del/file_o_directory}}` - Confronta due file in VS Code: diff --git a/pages.it/common/coffee.md b/pages.it/common/coffee.md index 7e5fafbd965936..4f05029236f459 100644 --- a/pages.it/common/coffee.md +++ b/pages.it/common/coffee.md @@ -5,15 +5,15 @@ - Esegui uno script: -`coffee {{percorso/al/file.coffee}}` +`coffee {{percorso/del/file.coffee}}` - Compila in JavaScript e salva lo script con lo stesso nome: -`coffee --compile {{percorso/al/file.coffee}}` +`coffee --compile {{percorso/del/file.coffee}}` - Compila in JavaScript e salva lo script specificandone il nome: -`coffee --compile {{percorso/al/file.coffee}} --output {{percorso/al/file.js}}` +`coffee --compile {{percorso/del/file.coffee}} --output {{percorso/del/file.js}}` - Esegui una console REPL interattiva: @@ -21,4 +21,4 @@ - Monitora cambiamenti in uno script rieseguendolo ogni volta: -`coffee --watch {{percorso/al/file.coffee}}` +`coffee --watch {{percorso/del/file.coffee}}` diff --git a/pages.it/common/cola.md b/pages.it/common/cola.md new file mode 100644 index 00000000000000..c3e49cbffd90e2 --- /dev/null +++ b/pages.it/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Questo comando è un alias per `git-cola`. + +- Consulta la documentazione del comando originale: + +`tldr git-cola` diff --git a/pages.it/common/colordiff.md b/pages.it/common/colordiff.md new file mode 100644 index 00000000000000..ac61b78635e624 --- /dev/null +++ b/pages.it/common/colordiff.md @@ -0,0 +1,25 @@ +# colordiff + +> Un'utilità per aggiungere colore all'output diff. +> colordiff è un wrapper scritto in Perl per `diff` e produce lo stesso output, ma con una bella evidenziazione della sintassi. I colori possono essere personalizzati. +> Maggiori informazioni: . + +- Analisi di due file: + +`colordiff {{file1}} {{file2}}` + +- Output in due colonne: + +`colordiff -y {{file1}} {{file2}}` + +- Ignora differenze di maiuscole in file: + +`colordiff -i {{file1}} {{file2}}` + +- Notifica se file identici: + +`colordiff -s {{file1}} {{file2}}` + +- Ignora spazio vuoto (white space): + +`colordiff -w {{file1}} {{file2}}` diff --git a/pages.it/common/conda.md b/pages.it/common/conda.md index 498eacdfc28499..b85e4f6a983b0a 100644 --- a/pages.it/common/conda.md +++ b/pages.it/common/conda.md @@ -1,6 +1,7 @@ # conda > Gestione pacchetti, dipendenze ed ambiente per qualsiasi linguaggio di programmazione. +> Alcuni comandi aggiuntivi, come `conda create`, hanno la propria documentazione. > Maggiori informazioni: . - Crea un nuovo ambiente, installandovi alcuni pacchetti: diff --git a/pages.it/common/consul.md b/pages.it/common/consul.md index a503a72befb5cf..753d8785eb5a0f 100644 --- a/pages.it/common/consul.md +++ b/pages.it/common/consul.md @@ -1,6 +1,7 @@ # consul > Rete distribuita per gestire e configurare servizi tramite database chiave-valore. +> Alcuni comandi aggiuntivi, come `consul kv`, hanno la propria documentazione. > Maggiori informazioni: . - Controlla la versione di Consul: diff --git a/pages.it/common/convmv.md b/pages.it/common/convmv.md index 3778ab93ba14a8..02d25d0edd2b5c 100644 --- a/pages.it/common/convmv.md +++ b/pages.it/common/convmv.md @@ -1,6 +1,6 @@ # convmv -> Coversione dei nomi dei file (NON del contenuto) da un encoding ad un altro. +> Conversione dei nomi dei file (NON del contenuto) da un encoding ad un altro. > Maggiori informazioni: . - Controlla la conversione di encoding (non rinomina realmente il file): diff --git a/pages.it/common/cp.md b/pages.it/common/cp.md index a0f003aebdc6e7..fc64e734af3525 100644 --- a/pages.it/common/cp.md +++ b/pages.it/common/cp.md @@ -5,24 +5,24 @@ - Copia un file in un'altra posizione: -`cp {{percorso/al/file}} {{percorso/alla/copia}}` +`cp {{percorso/del/file}} {{percorso/della/copia}}` - Copia un file in una directory mantenendo il nome: -`cp {{percorso/al/file}} {{percorso/alla/directory}}` +`cp {{percorso/del/file}} {{percorso/della/directory}}` - Copia una directory ricorsivamente in un'altra posizione: -`cp -r {{percorso/alla/directory}} {{percorso/alla/copia}}` +`cp -r {{percorso/della/directory}} {{percorso/della/copia}}` - Copia una directory ricorsivamente in modo verboso (mostra a schermo ogni file copiato): -`cp -vr {{percorso/alla/directory}} {{percorso/alla/copia}}` +`cp -vr {{percorso/della/directory}} {{percorso/della/copia}}` - Copia i contenuti di una directory in una seconda directory: -`cp -r {{percorso/alla/directory/*}} {{percorso/alla/seconda/directory}}` +`cp -r {{percorso/della/directory/*}} {{percorso/della/seconda/directory}}` - Copia tutti i file di testo in una seconda directory in modo interattivo (chiede conferma prima di sovrascrivere): -`cp -i {{*.txt}} {{percorso/alla/directory}}` +`cp -i {{*.txt}} {{percorso/della/directory}}` diff --git a/pages.it/common/cpio.md b/pages.it/common/cpio.md index 39d1745e714ddd..b8cd69cf1928e3 100644 --- a/pages.it/common/cpio.md +++ b/pages.it/common/cpio.md @@ -10,7 +10,7 @@ - Copia tutti i file e le directory in una directory ed aggiungili ad un archivio, in modalità verbosa: -`find {{path/to/directory}} | cpio -ov > {{archivio.cpio}}` +`find {{percorso/della/directory}} | cpio -ov > {{archivio.cpio}}` - Estrai file da un archivio, generando le directory necessarie, in modalità verbosa: diff --git a/pages.it/common/cppcheck.md b/pages.it/common/cppcheck.md index 28265f9e8c3e98..27426bfa99ebc0 100644 --- a/pages.it/common/cppcheck.md +++ b/pages.it/common/cppcheck.md @@ -10,11 +10,11 @@ - Controlla una determinata directory ricorsivamente, senza stampare informazioni sul progresso: -`cppcheck --quiet {{path/to/directory}}` +`cppcheck --quiet {{percorso/della/directory}}` - Controlla un determinato file, specificando quali test eseguire (di default, solo gli errori sono mostrati): -`cppcheck --enable={{error|warning|style|performance|portability|information|all}} {{percorso/al/file.cpp}}` +`cppcheck --enable={{error|warning|style|performance|portability|information|all}} {{percorso/del/file.cpp}}` - Elenca i test disponibili: @@ -22,7 +22,7 @@ - Controlla un determinato file, ignorando specifici test: -`cppcheck --suppress={{id_test1}} --suppress={{it_test2}} {{percorso/al/file.cpp}}` +`cppcheck --suppress={{id_test1}} --suppress={{it_test2}} {{percorso/del/file.cpp}}` - Controlla la directory corrente, fornendo percorsi da includere per file esterni (e.g. librerie esterne): @@ -30,4 +30,4 @@ - Controlla un progetto Microsoft Visual Studio (`*.vcxproj`) o file solution (`*.sln`): -`cppcheck --project={{path/to/progetto.sln}}` +`cppcheck --project={{percorso/del/progetto.sln}}` diff --git a/pages.it/common/cppclean.md b/pages.it/common/cppclean.md index 4d4e84c8062b02..2d631536fd9df9 100644 --- a/pages.it/common/cppclean.md +++ b/pages.it/common/cppclean.md @@ -5,11 +5,11 @@ - Esegui nella directory di un progetto: -`cppclean {{percorso/a/directory_progetto}}` +`cppclean {{percorso/della/directory_progetto}}` - Esegui su di un progetto dove gli header sono nella directory "inc1" ed "inc2": -`cppclean {{percorso/a/directory_progetto}} --include-path={{inc1}} --include-path={{inc2}}` +`cppclean {{percorso/della/directory_progetto}} --include-path={{inc1}} --include-path={{inc2}}` - Esegui su di uno specifico file `main.cpp`: diff --git a/pages.it/common/cron.md b/pages.it/common/cron.md new file mode 100644 index 00000000000000..f42dfe94d68e20 --- /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/crontab.md b/pages.it/common/crontab.md index f23fa926950d56..296bf198b2c947 100644 --- a/pages.it/common/crontab.md +++ b/pages.it/common/crontab.md @@ -2,7 +2,7 @@ > Programma cron job per essere eseguiti a determinati intervalli di tempo per l'utente corrente. > Formato definizione di un job: "(minuto) (ora) (giorno_del_mese) (mese) (giorno_della_settimana) comando_da_eseguire". -> Maggiori informazioni: . +> Maggiori informazioni: . - Modifica il file crontab per l'utente corrente: @@ -26,4 +26,4 @@ - Esempio di un job che esegue un determinato script alle 02:30 ogni venerdì: -`30 2 * * Fri {{/percorso/assoluto/allo/script.sh}}` +`30 2 * * Fri {{/percorso/assoluto/dello/script.sh}}` diff --git a/pages.it/common/crystal.md b/pages.it/common/crystal.md index f41b9432bd0486..29f68a6bf08935 100644 --- a/pages.it/common/crystal.md +++ b/pages.it/common/crystal.md @@ -5,11 +5,11 @@ - Esegui un file Crystal: -`crystal {{percorso/al/file.cr}}` +`crystal {{percorso/del/file.cr}}` - Compila un file e tutte le sue dipendenze in un unico eseguibile: -`crystal build {{percorso/al/file.cr}}` +`crystal build {{percorso/del/file.cr}}` - Avvia un server locale interattivo per testare il linguaggio: diff --git a/pages.it/common/csc.md b/pages.it/common/csc.md index 84079e2fe56288..c2793242384ac6 100644 --- a/pages.it/common/csc.md +++ b/pages.it/common/csc.md @@ -1,36 +1,36 @@ # csc > Compilatore per Microsoft C#. -> Maggiori informazioni: . +> Maggiori informazioni: . -- Compila uno o più file C# in un eseguibile da command line: +- Compila uno o più file C# in un eseguibile da command-line: -`csc {{percorso/al/file_input_a.cs}} {{percorso/al/file_input_b.cs}}` +`csc {{percorso/del/file_input_a.cs}} {{percorso/del/file_input_b.cs}}` - Specifica il nome del file output: -`csc /out:{{percorso/al/nome_file_output}} {{percorso/al/file_input.cs}}` +`csc /out:{{percorso/del/nome_file_output}} {{percorso/del/file_input.cs}}` - Compila in una libreria `.dll` invece che in un eseguibile: -`csc /target:library {{percorso/al/file_input.cs}}` +`csc /target:library {{percorso/del/file_input.cs}}` - Referenzia un altro assembly: -`csc /reference:{{percorso/a/libreria.dll}} {{percorso/al/file_input.cs}}` +`csc /reference:{{percorso/della/libreria.dll}} {{percorso/del/file_input.cs}}` - Includi una risorsa: -`csc /resource:{{percorso/al/file_risorsa}} {{percorso/al/file_input.cs}}` +`csc /resource:{{percorso/del/file_risorsa}} {{percorso/del/file_input.cs}}` - Genera una documentazione XML automaticamente: -`csc /doc:{{percorso/alla/documentazione.xml}} {{percorso/al/file_input.cs}}` +`csc /doc:{{percorso/della/documentazione.xml}} {{percorso/del/file_input.cs}}` - Specifica un'icona: -`csc /win32icon:{{percorso/a/icona.ico}} {{percorso/al/file_input.cs}}` +`csc /win32icon:{{percorso/dell/icona.ico}} {{percorso/del/file_input.cs}}` - Firma un assembly con un nome sicuro utilizzando una chiave: -`csc /keyfile:{{percorso/a/chiave.snk}} {{percorso/al/file_input.cs}}` +`csc /keyfile:{{percorso/della/chiave.snk}} {{percorso/del/file_input.cs}}` diff --git a/pages.it/common/csvgrep.md b/pages.it/common/csvgrep.md index 9652d7ca9d937c..34b064cdd9dd95 100644 --- a/pages.it/common/csvgrep.md +++ b/pages.it/common/csvgrep.md @@ -8,9 +8,9 @@ `csvgrep -c {{1}} -m {{stringa}} {{data.csv}}` -- Trova righe per le quali le colonne 3 e 4 soddisfano una certa regex: +- Trova righe per le quali le colonne 3 e 4 soddisfano una certa espressione regolare: -`csvgrep -c {{3,4}} -r {{pattern_regex}} {{data.csv}}` +`csvgrep -c {{3,4}} -r {{espressione_regolare}} {{data.csv}}` - Trova righe dove la colonna "nome" NON include la stringa "Mario Rossi": diff --git a/pages.it/common/csvstat.md b/pages.it/common/csvstat.md index aa5ee2470a0a7b..414bcecb6efced 100644 --- a/pages.it/common/csvstat.md +++ b/pages.it/common/csvstat.md @@ -20,6 +20,6 @@ `csvstat -c {{3}} --len {{dati.csv}}` -- Mostra il numedo di valori unici nella colonna "nome": +- Mostra il numero di valori unici nella colonna "nome": `csvstat -c {{nome}} --unique {{dati.csv}}` diff --git a/pages.it/common/curl.md b/pages.it/common/curl.md index 1f22087282d440..be0554952edd5b 100644 --- a/pages.it/common/curl.md +++ b/pages.it/common/curl.md @@ -6,31 +6,31 @@ - Scarica il contenuto di un URL in un file: -`curl {{http://example.com}} -o {{nome_file}}` +`curl {{http://example.com}} --output {{nome_file}}` - Scarica un file, salvando l'output con lo stesso nome indicato nell'URL: -`curl -O {{http://example.com/nome_file}}` +`curl --remote-name {{http://example.com/nome_file}}` - Scarica un file, seguendo reindirizzamenti, e continuando automaticamente (riprendendo) un trasferimento precedente: -`curl -O -L -C - {{http://example.com/nome_file}}` +`curl --remote-name --location --continue-at - {{http://example.com/nome_file}}` - Invia dati form-encoded (richiesta POST di tipo `application/x-www-form-urlencoded`): -`curl -d {{'nome=mario'}} {{http://example.com/form}}` +`curl --data {{'nome=mario'}} {{http://example.com/form}}` - Invia una richiesta con un header aggiuntivo, utilizzando un metodo HTTP personalizzato: -`curl -H {{'X-Mio-Header: 123'}} -X {{PUT}} {{http://example.com}}` +`curl --header {{'X-Mio-Header: 123'}} --request {{PUT}} {{http://example.com}}` - Invia dati in formato JSON, specificando l'header content-type appropriato: -`curl -d {{'{"nome":"mario"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/utenti/1234}}` +`curl --data {{'{"nome":"mario"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/utenti/1234}}` - Utilizza un nome utente ed una password per l'autenticazione con il server: -`curl -u utente:password {{http://example.com}}` +`curl --user utente:password {{http://example.com}}` - Utilizza un certificato ed una chiave per una risorsa, ignorando la validazione dei certificati: diff --git a/pages.it/common/darkhttpd.md b/pages.it/common/darkhttpd.md index a4923354a32735..92a1a0060e0990 100644 --- a/pages.it/common/darkhttpd.md +++ b/pages.it/common/darkhttpd.md @@ -5,12 +5,12 @@ - Avvia il server utilizzando la directory specificata come document root: -`darkhttpd {{percorso/a/docroot}}` +`darkhttpd {{percorso/della/docroot}}` - Avvia il server su una specifica porta (8080 di default per utenti non root): -`darkhttpd {{percorso/a/docroot}} --port {{porta}}` +`darkhttpd {{percorso/della/docroot}} --port {{porta}}` - Ascolta solo su uno specifico indirizzo IP (di default, il server ascolta su tutte le interfacce): -`darkhttpd {{percorso/a/docroot}} --addr {{indirizzo_ip}}` +`darkhttpd {{percorso/della/docroot}} --addr {{indirizzo_ip}}` diff --git a/pages.it/common/dash.md b/pages.it/common/dash.md new file mode 100644 index 00000000000000..af0050eb36fe69 --- /dev/null +++ b/pages.it/common/dash.md @@ -0,0 +1,28 @@ +# dash + +> Debian Almquist Shell, una implementazione di `sh` moderna, che conforme a POSIX, (non compatibile con Bash). +> Maggiori informazioni: . + +- Avvia una sessione shell interattiva: + +`dash` + +- Esegui un comando, ed esci subito: + +`dash -c "{{comando}}"` + +- Esegui un script: + +`dash {{percorso/dello/script.sh}}` + +- Esegui comandi da un script, stampando ogni comando prima di eseguirlo: + +`dash -x {{percorso/dello/script.sh}}` + +- Esegui comandi da un script, fermandosi al primo errore: + +`dash -e {{percorso/dello/script.sh}}` + +- Leggi ed esegui commandi dal stdin: + +`dash -s` diff --git a/pages.it/common/decaffeinate.md b/pages.it/common/decaffeinate.md index b6521a1f28c803..1d414166054f08 100644 --- a/pages.it/common/decaffeinate.md +++ b/pages.it/common/decaffeinate.md @@ -5,16 +5,16 @@ - Converti un file CoffeeScript in JavaScript: -`decaffeinate {{percorso/al/file.coffee}}` +`decaffeinate {{percorso/del/file.coffee}}` - Converti un file CoffeeScript v2 in JavaScript: -`decaffeinate --use-cs2 {{percorso/al/file.coffee}}` +`decaffeinate --use-cs2 {{percorso/del/file.coffee}}` - Converti `require` e `module.exports` in `import` ed `export`: -`decaffeinate --use-js-modules {{percorso/al/file.coffee}}` +`decaffeinate --use-js-modules {{percorso/del/file.coffee}}` - Converti un file CoffeeScript, permettendo di esportare nomi: -`decaffeinate --loose-js-modules {{percorso/al/file.coffee}}` +`decaffeinate --loose-js-modules {{percorso/del/file.coffee}}` diff --git a/pages.it/common/deluge-console.md b/pages.it/common/deluge-console.md index 429972cac4cfae..acf39158ec6f65 100644 --- a/pages.it/common/deluge-console.md +++ b/pages.it/common/deluge-console.md @@ -13,7 +13,7 @@ - Aggiungi un torrent al demone: -`add {{url|magnet|percorso/a/file}}` +`add {{url|magnet|percorso/del/file}}` - Mostra informazioni su tutti i torrent: diff --git a/pages.it/common/deluge.md b/pages.it/common/deluge.md index 9b23d29e4a09e2..24afa9307b6a56 100644 --- a/pages.it/common/deluge.md +++ b/pages.it/common/deluge.md @@ -5,16 +5,16 @@ - Scarica un torrent: -`deluge {{url|magnet|percorso/a/file}}` +`deluge {{url|magnet|percorso/del/file}}` - Scarica un torrent utilizzando uno specifico file di configurazione: -`deluge -c {{percorso/a/file_configurazione}} {{url|magnet|percorso/a/file}}` +`deluge -c {{percorso/del/file_configurazione}} {{url|magnet|percorso/del/file}}` - Scarica un torrent ed avvia una specifica interfaccia utente: -`deluge -u {{gtk|web|console}} {{url|magnet|percorso/a/file}}` +`deluge -u {{gtk|web|console}} {{url|magnet|percorso/del/file}}` - Scarica un torrent e scrivi il log in un file: -`deluge -l {{percorso/a/file_log}} {{url|magnet|percorso/a/file}}` +`deluge -l {{percorso/del/file_log}} {{url|magnet|percorso/del/file}}` diff --git a/pages.it/common/deluged.md b/pages.it/common/deluged.md index cd860f73bf82ef..34fdcf1eefbe8a 100644 --- a/pages.it/common/deluged.md +++ b/pages.it/common/deluged.md @@ -13,8 +13,8 @@ - Avvia il demone di Deluge utilizzando uno specifico file di configurazione: -`deluged -c {{percorso/a/file_configurazione}}` +`deluged -c {{percorso/del/file_configurazione}}` - Avvia il demone di Deluge e scrivi il log in un file: -`deluged -l {{percorso/a/file_log}}` +`deluged -l {{percorso/del/file_log}}` diff --git a/pages.it/common/dep.md b/pages.it/common/dep.md index fc97cba3a1aad4..6784cda53e7ea7 100644 --- a/pages.it/common/dep.md +++ b/pages.it/common/dep.md @@ -1,7 +1,7 @@ # dep > Strumento di gestione delle dipendenze per progetti Go. -> Maggiori informazioni: . +> Maggiori informazioni: . - Inizializza la directory corrente come radice di un progetto Go: diff --git a/pages.it/common/dexter.md b/pages.it/common/dexter.md index baa8489bc8a6d2..f3e61091b4308d 100644 --- a/pages.it/common/dexter.md +++ b/pages.it/common/dexter.md @@ -9,4 +9,4 @@ - Sovrascrivi la posizione predefinita della configurazione di kube: -`dexter auth -i {{id-client}} -s {{segreto-client}} --kube-config {{percorso/a/config}}` +`dexter auth -i {{id-client}} -s {{segreto-client}} --kube-config {{percorso/della/configurazione}}` diff --git a/pages.it/common/df.md b/pages.it/common/df.md index 0fbd8e6ca1395a..95edc523066afe 100644 --- a/pages.it/common/df.md +++ b/pages.it/common/df.md @@ -13,4 +13,4 @@ - Mostra il file system ed contenente il file o directory dato ed il suo utilizzo del disco: -`df {{percorso/a/file_o_directory}}` +`df {{percorso/del/file_o_directory}}` diff --git a/pages.it/common/diff.md b/pages.it/common/diff.md index 017c800a2d86d5..79e5406f885cd4 100644 --- a/pages.it/common/diff.md +++ b/pages.it/common/diff.md @@ -1,6 +1,7 @@ # diff > Confronta file e directory. +> Maggiori informazioni: . - Confronta due file (elenca cambiamenti necessari per trasformare `vecchio_file` in `nuovo_file`): diff --git a/pages.it/common/dig.md b/pages.it/common/dig.md index dfc2fa670d88d0..650dbb290d3d78 100644 --- a/pages.it/common/dig.md +++ b/pages.it/common/dig.md @@ -1,7 +1,7 @@ # dig > Utilità di lookup DNS. -> Maggiori informazioni: . +> Maggiori informazioni: . - Mostra gli IP associati ad un hostname (record A): diff --git a/pages.it/common/direnv.md b/pages.it/common/direnv.md new file mode 100644 index 00000000000000..f6e63c5dd01277 --- /dev/null +++ b/pages.it/common/direnv.md @@ -0,0 +1,24 @@ +# direnv + +> Estensione della shell per aggiungere o rimuovere variabili d'ambiente in base alla directory corrente. +> Maggiori informazioni: . + +- Permette il caricamento del `.envrc` presente nella directory corrente: + +`direnv allow {{.}}` + +- Revoca il permesso del `.envrc` presente nella directory corrente: + +`direnv deny {{.}}` + +- Permette la modifica del `.envrc` nell'editor di testo predefinito, in seguito ricarica l'ambiente: + +`direnv edit {{.}}` + +- Ricarica l'ambiente corrente: + +`direnv reload` + +- Mostra delle informazioni di debug: + +`direnv status` diff --git a/pages.it/common/dirname.md b/pages.it/common/dirname.md index 4fa908ca8db516..ac49eb83dfaf7d 100644 --- a/pages.it/common/dirname.md +++ b/pages.it/common/dirname.md @@ -5,12 +5,12 @@ - Calcola la directory genitore di un dato percorso: -`dirname {{percorso/a/file_o_directory}}` +`dirname {{percorso/del/file_o_directory}}` - Calcola la directory genitore di più percorsi: -`dirname {{percorso/a/file_a}} {{percorso/a/directory_b}}` +`dirname {{percorso/del/file_a}} {{percorso/della/directory_b}}` - Delimita l'output con caratteri NUL invece di newline (utile in combinazione con `xargs`): -`dirname --zero {{percorso/a/directory_a}} {{percorso/a/file_b}}` +`dirname --zero {{percorso/della/directory_a}} {{percorso/del/file_b}}` diff --git a/pages.it/common/dive.md b/pages.it/common/dive.md index b28de54edd21a5..473b42ed85ef31 100644 --- a/pages.it/common/dive.md +++ b/pages.it/common/dive.md @@ -3,7 +3,7 @@ > Un tool per esplorare immagini Docker, contenuti dei livelli, e ridurne la dimensione. > Maggiori informazioni: . -- Analizza un'immaigine Docker: +- Analizza un'immagine Docker: `dive {{tag_immagine}}` diff --git a/pages.it/common/docker-compose.md b/pages.it/common/docker-compose.md index 8a3ff36dd8ab9e..b8392637271aab 100644 --- a/pages.it/common/docker-compose.md +++ b/pages.it/common/docker-compose.md @@ -1,36 +1,36 @@ -# docker-compose +# docker compose > Esegui e gestisci applicazioni Docker composte da più container. -> Maggiori informazioni: . +> Maggiori informazioni: . - Elenca i container in esecuzione: -`docker-compose ps` +`docker compose ps` - 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: -`docker-compose up --build` +`docker compose up --build` - Avvia tutti i container utilizzando un file compose alternativo: -`docker-compose --file {{percorso/a/file}} up` +`docker compose --file {{percorso/del/file}} up` - Ferma tutti i container in esecuzione: -`docker-compose stop` +`docker compose stop` - Ferma e rimuovi tutti i container, reti, immagini e volumi: -`docker-compose down` +`docker compose down` - Segui i log di tutti i container: -`docker-compose logs --follow` +`docker compose logs --follow` - Segui i log di un container specifico: -`docker-compose logs --follow {{nome_container}}` +`docker compose logs --follow {{nome_container}}` diff --git a/pages.it/common/docker-cp.md b/pages.it/common/docker-cp.md index d90e167d88c846..29f9e20362d4e4 100644 --- a/pages.it/common/docker-cp.md +++ b/pages.it/common/docker-cp.md @@ -5,12 +5,12 @@ - Copia un file o una directory dall'host a un container: -`docker cp {{percorso/al/file_o_directory_su_host}} {{nome_container}}:{{percorso/al/file_o_directory_su_container}}` +`docker cp {{percorso/del/file_o_directory_su_host}} {{nome_container}}:{{percorso/del/file_o_directory_su_container}}` - Copia un file o una directory da un container all'host: -`docker cp {{nome_container}}:{{percorso/al/file_o_directory_su_container}} {{percorso/al/file_o_directory_su_host}}` +`docker cp {{nome_container}}:{{percorso/del/file_o_directory_su_container}} {{percorso/del/file_o_directory_su_host}}` - Copia un file o una directory dall'host a un container, seguendo un link simbolico (non copiare il link simbolico, ma direttamente il file da lui referenziato): -`docker cp --follow-link {{percorso/al/link_simbolico_su_host}} {{nome_container}}:{{percorso/al/file_o_directory_su_container}}` +`docker cp --follow-link {{percorso/del/link_simbolico_su_host}} {{nome_container}}:{{percorso/del/file_o_directory_su_container}}` diff --git a/pages.it/common/docker-exec.md b/pages.it/common/docker-exec.md index cc6ba68ce99e24..fcc4dd8ba8c739 100644 --- a/pages.it/common/docker-exec.md +++ b/pages.it/common/docker-exec.md @@ -13,7 +13,7 @@ - Seleziona la directory di lavoro in cui eseguire un dato comando: -`docker exec --interactive -tty --workdir {{percorso/alla/directory}} {{nome_container}} {{comando}}` +`docker exec --interactive -tty --workdir {{percorso/della/directory}} {{nome_container}} {{comando}}` - Esegui un comando in background su un container esistente, mantenendo aperto stdin: diff --git a/pages.it/common/docker.md b/pages.it/common/docker.md index e075799fd680dc..7c166b17c93898 100644 --- a/pages.it/common/docker.md +++ b/pages.it/common/docker.md @@ -1,6 +1,7 @@ # docker > Gestisci container ed immagini Docker. +> Alcuni comandi aggiuntivi, come `docker run`, hanno la propria documentazione. > Maggiori informazioni: . - Elenca i container Docker attualmente in esecuzione: diff --git a/pages.it/common/dot.md b/pages.it/common/dot.md index 3c72815d378cdf..c2f12fdbef7cb7 100644 --- a/pages.it/common/dot.md +++ b/pages.it/common/dot.md @@ -1,12 +1,12 @@ # dot > Strumento da linea di comando per produrre disegni a livelli di grafi orientati. -> Maggiori informazioni: . +> Maggiori informazioni: . - Renderizza un'immagine determinando il nome del file di output dal nome del file di input ed il formato: -`dot -Tpng -O {{percorso/al/file.dot}}` +`dot -Tpng -O {{percorso/del/file.dot}}` - Crea una SVG da un file DOT: -`dot -Tsvg -o {{percorso/al/file_output.svg}} {{percorso/al/file.dot}}` +`dot -Tsvg -o {{percorso/del/file_output.svg}} {{percorso/del/file.dot}}` diff --git a/pages.it/common/dotnet.md b/pages.it/common/dotnet.md index a5a7396cd4d030..4ddb972096ea37 100644 --- a/pages.it/common/dotnet.md +++ b/pages.it/common/dotnet.md @@ -1,7 +1,8 @@ # dotnet > Strumenti .NET da linea di comando multipiattaforma per .NET Core. -> Maggiori informazioni: . +> Alcuni comandi aggiuntivi, come `dotnet build`, hanno la propria documentazione. +> Maggiori informazioni: . - Inizializza un nuovo progetto .NET: @@ -17,4 +18,4 @@ - Esegui una applicazione dotnet pacchettizzata (solo il runtime è necessario, il resto dei comandi richiedono .NET Core SDK): -`dotnet {{percorso/a/applicazione.dll}}` +`dotnet {{percorso/della/applicazione.dll}}` diff --git a/pages.it/common/doxygen.md b/pages.it/common/doxygen.md index 4a42c95c71c886..b71cc7c2d36023 100644 --- a/pages.it/common/doxygen.md +++ b/pages.it/common/doxygen.md @@ -9,8 +9,8 @@ - Genera un modello di file di configurazione: -`doxygen -g {{percorso/a/file_config}}` +`doxygen -g {{percorso/del/file_config}}` - Genera la documentazione utilizzando un file di configurazione esistente: -`doxygen {{percorso/a/file_config}}` +`doxygen {{percorso/del/file_config}}` diff --git a/pages.it/common/du.md b/pages.it/common/du.md index 48ead46bad23f1..6df255d498b395 100644 --- a/pages.it/common/du.md +++ b/pages.it/common/du.md @@ -3,26 +3,26 @@ > Utilizzo del disco: stima e riassumi lo spazio utilizzato da file e directory. > Maggiori informazioni: . -- Elenca le dimensioni di una directory ed ogni sotto-directory, nell'unità specificata (B/KB/MB): +- Elenca le dimensioni di una directory ed ogni sotto-directory, nell'unità specificata (B/KiB/MiB): -`du -{{b|k|m}} {{percorso/alla/directory}}` +`du -{{b|k|m}} {{percorso/della/directory}}` - Elenca le dimensioni di una directory ed ogni sotto-directory, in formato umanamente leggibile (seleziona automaticamente l'unità appropriata per ogni dimensione): -`du -h {{percorso/alla/directory}}` +`du -h {{percorso/della/directory}}` - Mostra la dimensione di una singola directory, in unità umanamente leggibili: -`du -sh {{percorso/alla/directory}}` +`du -sh {{percorso/della/directory}}` - Mostra in formato umanamente leggibile le dimensioni di una directory e tutti i file e directory in essa contenuti: -`du -ah {{percorso/alla/directory}}` +`du -ah {{percorso/della/directory}}` - Elenca le dimensioni umanamente leggibili di una directory e d ogni sotto-directory, fino ad N livelli di profondità: -`du -h --max-depth=N {{percorso/alla/directory}}` +`du -h --max-depth=N {{percorso/della/directory}}` -- Mostra le dimensioni umanamente leggibili di tutti i file `.jpg` nelle sottocartelle della cartella corrente, e mostra il totale cumulativo alla fine: +- Mostra le dimensioni umanamente leggibili di tutti i file `.jpg` nelle sottodirectory della directory corrente, e mostra il totale cumulativo alla fine: `du -ch */*.jpg` diff --git a/pages.it/common/duplicity.md b/pages.it/common/duplicity.md index 016de2fc0bf8f6..7e1dddd51b1abb 100644 --- a/pages.it/common/duplicity.md +++ b/pages.it/common/duplicity.md @@ -6,7 +6,7 @@ - Esegui il backup di una directory via FTPS su una macchina remota, cifrandolo con una password: -`FTP_PASSWORD={{password_login_ftp}} PASSPHRASE={{password_cifratura}} duplicity {{percorso/a/cartella_sorgente}} {{ftps://utente@hostname/percorso/a/cartella_target/}}` +`FTP_PASSWORD={{password_login_ftp}} PASSPHRASE={{password_cifratura}} duplicity {{percorso/della/directory_sorgente}} {{ftps://utente@hostname/percorso/della/directory_target/}}` - Esegui il backup di una directory in un server Amazon S3, facendo un backup completo ogni mese: @@ -18,12 +18,12 @@ - Elenca i backup disponibili: -`duplicity collection-status "file://{{percorso/assoluto/a/directory/di/backup}}"` +`duplicity collection-status "file://{{percorso/assoluto/della/directory/di/backup}}"` - Elenca i file in un backup salvato su una macchina remota, via SSH: -`duplicity list-current-files --time {{YYYY-MM-DD}} scp://{{utente@hostname}}/percorso/a/directory/backup` +`duplicity list-current-files --time {{YYYY-MM-DD}} scp://{{utente@hostname}}/percorso/della/directory/backup` - Ripristina una sotto-directory da un backup locale cifrato con GnuPG in una posizione precisa: -`PASSPHRASE={{password_chiave_gpg}} duplicity restore --encrypt-key {{id_chiave_gpg}} --file-to-restore {{percorso/relativo/sotto_directory}} file://{{percorso/assoluto/a/directory/di/backup}} {{percorso/a/directory/dove/ripristinare}}` +`PASSPHRASE={{password_chiave_gpg}} duplicity restore --encrypt-key {{id_chiave_gpg}} --file-to-restore {{percorso/relativo/sotto_directory}} file://{{percorso/assoluto/della/directory/di/backup}} {{percorso/della/directory/dove/ripristinare}}` diff --git a/pages.it/common/ebook-convert.md b/pages.it/common/ebook-convert.md index 614dcfeae44387..7a86b401541fbe 100644 --- a/pages.it/common/ebook-convert.md +++ b/pages.it/common/ebook-convert.md @@ -1,9 +1,9 @@ # ebook-convert -> Converti ebook in differenti formati, come PDF, EPUB, Mobi. -> Parte dello strumento Calibre per librerie ebook. +> Converti e-book in differenti formati, come PDF, EPUB, Mobi. +> Parte dello strumento Calibre per librerie e-book. > Maggiori informazioni: . -- Converti un ebook in un altro formato: +- Converti un e-book in un altro formato: -`ebook-convert {{originale}} {{convertito}}` +`ebook-convert {{percorso/del/file_input}} {{file_output}}` diff --git a/pages.it/common/ect.md b/pages.it/common/ect.md index 40129a0902f220..21ee28d8f46a30 100644 --- a/pages.it/common/ect.md +++ b/pages.it/common/ect.md @@ -7,10 +7,10 @@ `ect {{file.png}}` -- Comprimi un file con il massimo livello di compressione utilizzanto più thread: +- Comprimi un file con il massimo livello di compressione utilizzando più thread: `ect -9 --mt-deflate {{file.png}}` - Comprimi tutti i file in una directory ricorsivamente, mantenendo la data di modifica originale: -`ect -keep -recurse {{percorso/a/directory}}` +`ect -keep -recurse {{percorso/della/directory}}` diff --git a/pages.it/common/ed.md b/pages.it/common/ed.md index 9ca5559e22ddfb..0fa8ac3d6d8d2b 100644 --- a/pages.it/common/ed.md +++ b/pages.it/common/ed.md @@ -1,7 +1,7 @@ # ed > L'originale editor di testo Unix. -> Maggiori informazioni: . +> Maggiori informazioni: . - Avvia ed per editare un documento vuoto (che può essere salvato come nuovo file nella directory corrente): @@ -13,7 +13,7 @@ - Avvia ed per editare un file esistente (mostra il numero di byte del file caricato): -`ed -p : {{percorso/al/file}}` +`ed -p : {{percorso/del/file}}` - Attiva o disattiva la stampa di spiegazioni per gli errori (di default, le spiegazioni non sono stampate ed appare solo un `?`): diff --git a/pages.it/common/emacsclient.md b/pages.it/common/emacsclient.md index aea002f3b95ef9..def876554efec4 100644 --- a/pages.it/common/emacsclient.md +++ b/pages.it/common/emacsclient.md @@ -3,7 +3,7 @@ > Apri file in un server emacs esistente. > Maggiori informazioni: . -- Apri un file in un server Emacs esistene (utilizzando la GUI se disponibile): +- Apri un file in un server Emacs esistente (utilizzando la GUI se disponibile): `emacsclient {{nome_file}}` diff --git a/pages.it/common/enca.md b/pages.it/common/enca.md index 10ca63e854eb3b..bea0e86c93e216 100644 --- a/pages.it/common/enca.md +++ b/pages.it/common/enca.md @@ -15,6 +15,6 @@ `enca -L {{linguaggio}} -x {{encoding}} {{file1 file2 ...}}` -- Crea una copia di un file esistente utilizznado un encoding diverso: +- Crea una copia di un file esistente utilizzando un encoding diverso: `enca -L {{linguaggio}} -x {{encoding_finale}} < {{file_originale}} > {{nuovo_file}}` diff --git a/pages.it/common/enscript.md b/pages.it/common/enscript.md index 16254d716dcddd..6d5933e3640b1b 100644 --- a/pages.it/common/enscript.md +++ b/pages.it/common/enscript.md @@ -5,15 +5,15 @@ - Genera un file PostScript da un file di testo: -`enscript {{percorso/a/file_input}} --output={{percorso/a/file_output}}` +`enscript {{percorso/del/file_input}} --output={{percorso/del/file_output}}` - Genera un file in un linguaggio differente da PostScript: -`enscript {{percorso/a/file_input}} --language={{linguaggio}} --output={{percorso/a/file_output}}` +`enscript {{percorso/del/file_input}} --language={{linguaggio}} --output={{percorso/del/file_output}}` - Genera un file PostScript con layout orizzontale, dividendo la pagina in colonne (massimo 9): -`enscript {{percorso/a/file_input}} --columns={{numero_colonne}} --landscape --output={{percorso/a/file_output}}` +`enscript {{percorso/del/file_input}} --columns={{numero_colonne}} --landscape --output={{percorso/del/file_output}}` - Mostra linguaggi e formati file disponibili per evidenziare la sintassi: @@ -21,4 +21,4 @@ - Genera un file PostScript con evidenziazione della sintassi e colori per uno specifico linguaggio: -`enscript {{percorso/a/file_input}} --color=1 --highlight={{linguaggio}} --output={{percorso/a/file_output}}` +`enscript {{percorso/del/file_input}} --color=1 --highlight={{linguaggio}} --output={{percorso/del/file_output}}` diff --git a/pages.it/common/entr.md b/pages.it/common/entr.md index e10b794ef18d5a..dae39f92decda0 100644 --- a/pages.it/common/entr.md +++ b/pages.it/common/entr.md @@ -7,7 +7,7 @@ `{{ag -l}} | entr {{make}}` -- Ricompila e testa con `make` se qualsiasi file sorgente `.c` nella cartella corrente cambia: +- Ricompila e testa con `make` se qualsiasi file sorgente `.c` nella directory corrente cambia: `{{ls *.c}} | entr {{'make && make test'}}` diff --git a/pages.it/common/envsubst.md b/pages.it/common/envsubst.md index f266fa34f95826..05d595ac71bec9 100644 --- a/pages.it/common/envsubst.md +++ b/pages.it/common/envsubst.md @@ -10,12 +10,12 @@ - Sostituisci variabili di ambiente in un file input e stampa l'output su stdout: -`envsubst < {{percorso/a/file_input}}` +`envsubst < {{percorso/del/file_input}}` - Sostituisci variabili di ambiente in un file input e scrivi l'output su un file: -`envsubst < {{percorso/a/file_input}} > {{percorso/a/file_output}}` +`envsubst < {{percorso/del/file_input}} > {{percorso/del/file_output}}` - Sostituisci in un file input le variabili di ambiente specificate in una lista separata da spazi: -`envsubst {{$USER $HOME $SHELL}} < {{percorso/a/file_input}}` +`envsubst {{$USER $HOME $SHELL}} < {{percorso/del/file_input}}` diff --git a/pages.it/common/erl.md b/pages.it/common/erl.md index 855da2b7597cd0..d6ee5347cd782d 100644 --- a/pages.it/common/erl.md +++ b/pages.it/common/erl.md @@ -13,4 +13,4 @@ - Fai caricare alla shell Erlang dei moduli da una directory: -`erl -pa {{cartella_con_file_beam}}` +`erl -pa {{directory_con_file_beam}}` diff --git a/pages.it/common/eslint.md b/pages.it/common/eslint.md index 166fe6473e1823..23ef22c9a6e7b8 100644 --- a/pages.it/common/eslint.md +++ b/pages.it/common/eslint.md @@ -17,4 +17,4 @@ - Esegui il linting utilizzando un determinato file di configurazione: -`eslint -c {{percorso/a/file_config}} {{app/src}}` +`eslint -c {{percorso/del/file_config}} {{app/src}}` diff --git a/pages.it/common/exec.md b/pages.it/common/exec.md index 2500f28fdaae44..cccf0253d83a1d 100644 --- a/pages.it/common/exec.md +++ b/pages.it/common/exec.md @@ -1,6 +1,7 @@ # exec > Sostituisci il processo corrente con un altro. +> Maggiori informazioni: . - Sostituisci con il comando specificato utilizzando le variabili di ambiente correnti: diff --git a/pages.it/common/exiftool.md b/pages.it/common/exiftool.md index da2eb563a7b1d2..381faac750f4b9 100644 --- a/pages.it/common/exiftool.md +++ b/pages.it/common/exiftool.md @@ -1,7 +1,7 @@ # exiftool > Leggi e scrivi metadati nei file. -> Maggiori informazioni: . +> Maggiori informazioni: . - Rimuovi tutti i metadati EXIF dai file specificati: @@ -9,7 +9,7 @@ - Muovi avanti di 1 ora la data in cui sono state scattate tutte le foto contenute in una directory: -`exiftool "-AllDates+=0:0:0 1:0:0" {{percorso/a/directory}}` +`exiftool "-AllDates+=0:0:0 1:0:0" {{percorso/della/directory}}` - Muovi indietro di 1 giorno e 2 ore la data in cui sono state scattate tutte le immagini JPEG: @@ -21,4 +21,4 @@ - Rinomina ricorsivamente tutti i file JPEG in una directory in base al campo `DateTimeOriginal`: -`exiftool '-filename Comunica con il dispositivo Android connessione quando in modalità bootloader (la situazione in cui `adb` non funziona). -> Maggiori informazioni: . +> Maggiori informazioni: . - Sblocca il bootloader: @@ -17,7 +17,7 @@ - Esegue in Flash di una data immagine: -`fastboot flash {{file.zip}}` +`fastboot flash {{file.img}}` - Esegue il Flash di una recovery image personalizzata: diff --git a/pages.it/common/file.md b/pages.it/common/file.md new file mode 100644 index 00000000000000..133efdf6fbacb3 --- /dev/null +++ b/pages.it/common/file.md @@ -0,0 +1,24 @@ +# file + +> Determina il tipo di file. +> Maggiori informazioni: . + +- Fornisce una descrizione del tipo di file specificato. Funziona anche con file senza estensione: + +`file {{nome_file}}` + +- Controlla dentro un file zip e determina il tipo dei file in esso contenuti: + +`file -z {{foo.zip}}` + +- Permette a `file` di leggere file speciali o di dispositivo: + +`file -s {{nome_file}}` + +- Non si limita al primo tipo di file trovato; continua a leggere il file fino alla fine: + +`file -k {{nome_file}}` + +- Determina il tipo MIME di un file: + +`file -i {{nome_file}}` diff --git a/pages.it/common/flac.md b/pages.it/common/flac.md index ae64591f1c1a90..1a4b173357a683 100644 --- a/pages.it/common/flac.md +++ b/pages.it/common/flac.md @@ -5,16 +5,16 @@ - Converte un file wav in un file flac (questo creerà un file flac nella medesima posizione del file wav): -`flac {{percorso/al/file.wav}}` +`flac {{percorso/del/file.wav}}` - Codifica un file wav in flac, specificando il nome del risultato: -`flac -o {{percorso/al/file_compresso.flac}} {{percorso/al/file_originale.wav}}` +`flac -o {{percorso/del/file_compresso.flac}} {{percorso/del/file_originale.wav}}` - Decodifica un file wav in flac, specificando il nome del risultato: -`flac -d -o {{percorso/al/file_decompresso.wav}} {{percorso/al/file_originale.flac}}` +`flac -d -o {{percorso/del/file_decompresso.wav}} {{percorso/del/file_originale.flac}}` - Controlla che un file flac sia codificato correttamente: -`flac -t {{percorso/al/file.flac}}` +`flac -t {{percorso/del/file.flac}}` diff --git a/pages.it/common/flake8.md b/pages.it/common/flake8.md new file mode 100644 index 00000000000000..181b2fde763856 --- /dev/null +++ b/pages.it/common/flake8.md @@ -0,0 +1,20 @@ +# flake8 + +> Programma per verificare lo stile e la qualità di un codice Python. +> Maggiori informazioni: . + +- Analizza ricorsivamente un file o una directory: + +`flake8 {{percorso/del/file_o_directory}}` + +- Analizza ricorsivamente un file o una directory e mostra le righe contenenti errori: + +`flake8 --show-source {{percorso/del/file_o_directory}}` + +- Analizza ricorsivamente un file o una directory e ignora la lista delle regole specificate. (La lista con tutte le regole è consultabile su flake8rules.com): + +`flake8 --ignore {{regola1,regola2}} {{percorso/del/file_o_directory}}` + +- Analizza ricorsivamente un file o una directory ma esclude i file che corrispondono a una sottostringa o a un glob: + +`flake8 --exclude {{sottostringa1,glob2}} {{percorso/del/file_o_directory}}` diff --git a/pages.it/common/fmt.md b/pages.it/common/fmt.md index 692aa3771ec53a..08fd4e02c8fb6e 100644 --- a/pages.it/common/fmt.md +++ b/pages.it/common/fmt.md @@ -5,16 +5,16 @@ - Riformatta un file: -`fmt {{percorso/al/file}}` +`fmt {{percorso/del/file}}` - Riformatta un file producendo linee di (al massimo) `n` caratteri: -`fmt -w {{n}} {{percorso/al/file}}` +`fmt -w {{n}} {{percorso/del/file}}` - Riformatta un file senza unire assieme le linee più corte della data larghezza: -`fmt -s {{percorso/al/file}}` +`fmt -s {{percorso/del/file}}` - Riformatta un file usando una spaziatura uniforme (1 spazio tra due parole e 2 spazi tra due paragrafi): -`fmt -u {{percorso/al/file}}` +`fmt -u {{percorso/del/file}}` diff --git a/pages.it/common/fossil-ci.md b/pages.it/common/fossil-ci.md new file mode 100644 index 00000000000000..46b31e6aa3ccd4 --- /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 00000000000000..045c51088745be --- /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 00000000000000..4047c7b2a96040 --- /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 00000000000000..929b3c0345dedc --- /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 00000000000000..9a71c8c027ba22 --- /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-add.md b/pages.it/common/git-add.md index 62c3c25eedf3ef..9fe12b111e393a 100644 --- a/pages.it/common/git-add.md +++ b/pages.it/common/git-add.md @@ -5,7 +5,7 @@ - Aggiungi un file all'area di stage: -`git add {{percorso/al/file}}` +`git add {{percorso/del/file}}` - Aggiungi tutti i file (tracciati e non tracciati): @@ -21,4 +21,4 @@ - Aggiungi parti di un file in modo interattivo: -`git add -p {{percorso/al/file}}` +`git add -p {{percorso/del/file}}` diff --git a/pages.it/common/git-am.md b/pages.it/common/git-am.md index 38619d884ac7ea..3a4c85764a535f 100644 --- a/pages.it/common/git-am.md +++ b/pages.it/common/git-am.md @@ -6,7 +6,7 @@ - Applica un file di patch: -`git am {{percorso/al/file.patch}}` +`git am {{percorso/del/file.patch}}` - Interrompi l'applicazione di un file di patch: @@ -14,4 +14,4 @@ - Applica quanto possibile di un file di patch, salvando le parti non applicabili in file `.rej`: -`git am --reject {{percorso/al/file.patch}}` +`git am --reject {{percorso/del/file.patch}}` diff --git a/pages.it/common/git-archive.md b/pages.it/common/git-archive.md index d555bb78c61d7d..078bca3fc15049 100644 --- a/pages.it/common/git-archive.md +++ b/pages.it/common/git-archive.md @@ -13,16 +13,16 @@ - Come sopra, ma scrivi l'archivio zip su file: -`git archive --verbose --output={{percorso/al/file.zip}} HEAD` +`git archive --verbose --output={{percorso/del/file.zip}} HEAD` - Crea un archivio tar dell'ultimo commit sul ramo specificato: -`git archive --output={{percorso/al/file.tar}} {{nome_ramo}}` +`git archive --output={{percorso/del/file.tar}} {{nome_ramo}}` -- Crea un archivio tar del contenuto di una specifica cartella: +- Crea un archivio tar del contenuto di una specifica directory: -`git archive --output={{percorso/al/file.tar}} HEAD:{{percorso/alla/directory}}` +`git archive --output={{percorso/del/file.tar}} HEAD:{{percorso/della/directory}}` -- Anteponi un percorso ad ogni file cosí da archiviarlo in una cartella specifica: +- Anteponi un percorso ad ogni file cosí da archiviarlo in una directory specifica: -`git archive --output={{percorso/al/file.tar}} --prefix={{percorso/da/anteporre}}/ HEAD` +`git archive --output={{percorso/del/file.tar}} --prefix={{percorso/da/anteporre}}/ HEAD` diff --git a/pages.it/common/git-bundle.md b/pages.it/common/git-bundle.md index 24cd50f370a33b..e73dad6216eff2 100644 --- a/pages.it/common/git-bundle.md +++ b/pages.it/common/git-bundle.md @@ -5,28 +5,28 @@ - Crea un file bundle che contiene tutti gli oggetti e riferimenti di un dato ramo: -`git bundle create {{percorso/al/file.bundle}} {{nome_ramo}}` +`git bundle create {{percorso/del/file.bundle}} {{nome_ramo}}` - Crea un file bundle di tutti i rami: -`git bundle create {{percorso/al/file.bundle}} --all` +`git bundle create {{percorso/del/file.bundle}} --all` - Crea un file bundle degli ultimi 5 commit sul ramo corrente: -`git bundle create {{percorso/al/file.bundle}} -{{5}} {{HEAD}}` +`git bundle create {{percorso/del/file.bundle}} -{{5}} {{HEAD}}` - Crea un file bundle degli ultimi 7 giorni: -`git bundle create {{percorso/al/file.bundle}} --since={{7.days}} {{HEAD}}` +`git bundle create {{percorso/del/file.bundle}} --since={{7.days}} {{HEAD}}` - Verifica che un file bundle sia valido e possa essere applicato al repository in uso: -`git bundle verify {{percorso/al/file.bundle}}` +`git bundle verify {{percorso/del/file.bundle}}` - Stampa su standard output la lista di riferimenti contenuti in un bundle: -`git bundle unbundle {{percorso/al/file.bundle}}` +`git bundle unbundle {{percorso/del/file.bundle}}` - Dato un file bundle, estrai un ramo specifico nel repository in uso: -`git pull {{percorso/al/file.bundle}} {{nome_ramo}}` +`git pull {{percorso/del/file.bundle}} {{nome_ramo}}` diff --git a/pages.it/common/git-check-ignore.md b/pages.it/common/git-check-ignore.md index 499a908ec08a0d..98d5b600731ed3 100644 --- a/pages.it/common/git-check-ignore.md +++ b/pages.it/common/git-check-ignore.md @@ -3,22 +3,22 @@ > Analizza ed esegui il debug di ".gitignore" e dei file esclusi. > Maggiori informazioni: . -- Verifica se un file o una cartella sono ignorati: +- Verifica se un file o una directory sono ignorati: -`git check-ignore {{percorso/al/file_o_cartella}}` +`git check-ignore {{percorso/del/file_o_directory}}` -- Verifica se più file o cartelle sono ignorati: +- Verifica se più file o directory sono ignorati: -`git check-ignore {{percorso/al/file}} {{percorso/alla/cartella}}` +`git check-ignore {{percorso/del/file}} {{percorso/della/directory}}` -- Leggi i percorsi di file o cartelle 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/alla/lista_dei_file_o_cartelle}}` +`git check-ignore --stdin < {{percorso/della/lista_dei_file_o_directory}}` - Non controllare nell'indice (usato per determinare il motivo per cui alcuni percorsi non sono ignorati): -`git check-ignore --no-index {{percorsi/ai/file_o_cartelle}}` +`git check-ignore --no-index {{percorsi/dei/file_o_directory}}` - Includi dettagli sul pattern corrispondente per ogni percorso specificato: -`git check-ignore --verbose {{percorsi/ai/file_o_cartelle}}` +`git check-ignore --verbose {{percorsi/dei/file_o_directory}}` diff --git a/pages.it/common/git-checkout.md b/pages.it/common/git-checkout.md index 7264d452ddc320..01d947b8594198 100644 --- a/pages.it/common/git-checkout.md +++ b/pages.it/common/git-checkout.md @@ -19,7 +19,7 @@ `git checkout --track {{nome_repository_remoto}}/{{nome_ramo}}` -- Annulla tutte le modifiche nella cartella corrente che non sono state aggiunte all'area di stage (vedi `git reset` per più comandi simili): +- Annulla tutte le modifiche nella directory corrente che non sono state aggiunte all'area di stage (vedi `git reset` per più comandi simili): `git checkout .` diff --git a/pages.it/common/git-cherry-pick.md b/pages.it/common/git-cherry-pick.md index 077b8f003f6ae8..a1c51ceafb006a 100644 --- a/pages.it/common/git-cherry-pick.md +++ b/pages.it/common/git-cherry-pick.md @@ -16,6 +16,6 @@ `git cherry-pick {{commit_1}} {{commit_2}}` -- Aggiungi le modifiche introdotte da un commit alla cartella di lavoro, ma senza creare un nuovo commit: +- Aggiungi le modifiche introdotte da un commit alla directory di lavoro, ma senza creare un nuovo commit: `git cherry-pick -n {{commit}}` diff --git a/pages.it/common/git-clean.md b/pages.it/common/git-clean.md index 1e1ac025b831ee..0eb5b28cf395fe 100644 --- a/pages.it/common/git-clean.md +++ b/pages.it/common/git-clean.md @@ -19,7 +19,7 @@ `git clean -f` -- Forza l'eliminazione delle cartelle non tracciate da Git: +- Forza l'eliminazione delle directory non tracciate da Git: `git clean -fd` diff --git a/pages.it/common/git-clone.md b/pages.it/common/git-clone.md index ec9d207e1482fd..9cb2efb9244450 100644 --- a/pages.it/common/git-clone.md +++ b/pages.it/common/git-clone.md @@ -13,7 +13,7 @@ - Clona un repository locale: -`git clone -l {{percorso/a/repository/locale}}` +`git clone -l {{percorso/del/repository/locale}}` - Clona in modalità silenziosa: diff --git a/pages.it/common/git-commit.md b/pages.it/common/git-commit.md index a12e35dd4c2c70..6caec36f375aa7 100644 --- a/pages.it/common/git-commit.md +++ b/pages.it/common/git-commit.md @@ -17,4 +17,4 @@ - Committa solo i file specificati (tra quelli presenti nell'area di stage): -`git commit {{percorso/al/file1}} {{percorso/al/file2}}` +`git commit {{percorso/del/file1}} {{percorso/del/file2}}` diff --git a/pages.it/common/git-diff.md b/pages.it/common/git-diff.md index c0a743d32397e1..92523a9f5dde5b 100644 --- a/pages.it/common/git-diff.md +++ b/pages.it/common/git-diff.md @@ -29,8 +29,8 @@ - Confronta le versioni di un dato file tra due rami o commit: -`git diff {{ramo_1}}..{{ramo_2}} [--] {{percorso/al/file}}` +`git diff {{ramo_1}}..{{ramo_2}} [--] {{percorso/del/file}}` - Confronta le versioni di più file tra il ramo corrente e un altro ramo: -`git diff {{ramo}}:{{percorso/al/file2}} {{percorso/al/file}}` +`git diff {{ramo}}:{{percorso/del/file2}} {{percorso/del/file}}` diff --git a/pages.it/common/git-ignore-io.md b/pages.it/common/git-ignore-io.md new file mode 100644 index 00000000000000..d910dbba9cf4cc --- /dev/null +++ b/pages.it/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Genera file .gitignore usando template predefiniti. +> Maggiori informazioni: . + +- Elenca i template disponibili: + +`git ignore-io list` + +- Genera un template `.gitignore`: + +`git ignore-io {{elemento_a,elemento_b,elemento_n}}` diff --git a/pages.it/common/git-ignore.md b/pages.it/common/git-ignore.md deleted file mode 100644 index fe5657953e8408..00000000000000 --- a/pages.it/common/git-ignore.md +++ /dev/null @@ -1,12 +0,0 @@ -# git ignore - -> Genera file .gitignore usando template predefiniti. -> Maggiori informazioni: . - -- Elenca i template disponibili: - -`git ignore list` - -- Genera un template `.gitignore`: - -`git ignore {{elemento_a,elemento_b,elemento_n}}` diff --git a/pages.it/common/git-log.md b/pages.it/common/git-log.md index 1142a24f2ffead..30005d5f0c1a97 100644 --- a/pages.it/common/git-log.md +++ b/pages.it/common/git-log.md @@ -7,9 +7,9 @@ `git log` -- Mostra la cronologia di un dato file o cartella, mostrando anche le modifiche: +- Mostra la cronologia di un dato file o directory, mostrando anche le modifiche: -`git log -p {{percorso/al/file_o_directory}}` +`git log -p {{percorso/del/file_o_directory}}` - Offri una panoramica dei file che sono cambiati ad ogni commit: @@ -31,6 +31,6 @@ `git log -n {{numero}} --author={{autore}}` -- Mostra i commit effettuati tra due date: +- Mostra i commit effettuati tra due date (yyyy-mm-dd): -`git log --before={{data}} --after={{data}}` +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.it/common/git-merge.md b/pages.it/common/git-merge.md index cc931a3a490124..f2c4cf29b78972 100644 --- a/pages.it/common/git-merge.md +++ b/pages.it/common/git-merge.md @@ -1,7 +1,7 @@ # git merge > Esegui un'unione (merge) tra due rami Git. -> Maggiori informazioni: . +> Maggiori informazioni: . - Avvia un'unione con il tuo ramo corrente: diff --git a/pages.it/common/git-mv.md b/pages.it/common/git-mv.md index 000554c7ff5412..7189650e4c4c98 100644 --- a/pages.it/common/git-mv.md +++ b/pages.it/common/git-mv.md @@ -5,7 +5,7 @@ - Sposta i file nella repository e aggiungi l'operazione al commit successivo: -`git mv {{percorso/al/file}} {{nuovo/percorso/al/file}}` +`git mv {{percorso/del/file}} {{nuovo/percorso/del/file}}` - Rinomina i file e aggiungi l'operazione al commit successivo: @@ -13,4 +13,4 @@ - Sposta sovrascrivendo eventuali file esistenti nel percorso di destinazione: -`git mv --force {{percorso/al/file}} {{nuovo/percorso/al/file}}` +`git mv --force {{percorso/del/file}} {{nuovo/percorso/del/file}}` diff --git a/pages.it/common/git-repack.md b/pages.it/common/git-repack.md index 497f4c5b096c16..a867bf7babc169 100644 --- a/pages.it/common/git-repack.md +++ b/pages.it/common/git-repack.md @@ -3,7 +3,7 @@ > Comprimi gli oggetti decompressi in un repository Git. > Maggiori informazioni: . -- Comprimi gli oggetti decompressi nella cartella corrente: +- Comprimi gli oggetti decompressi nella directory corrente: `git repack` diff --git a/pages.it/common/git-reset.md b/pages.it/common/git-reset.md index 373725fbf450db..5070f782fa3dd2 100644 --- a/pages.it/common/git-reset.md +++ b/pages.it/common/git-reset.md @@ -10,11 +10,11 @@ - Rimuovi dall'area di stage uno o più file: -`git reset {{percorso/al/file1}} {{percorso/al/file2}}` +`git reset {{percorso/del/file1}} {{percorso/del/file2}}` -- Rimuovi dall'area di stage solo alcune porzioni di un file: +- Rimuovi dall'area di stage solo alcune porzioni di un file in modo interattivo: -`git reset -p {{percorso/al/file}}` +`git reset --patch {{percorso/del/file}}` - Annulla l'ultimo commit, preservando tutte le modifiche nel filesystem: diff --git a/pages.it/common/git-restore.md b/pages.it/common/git-restore.md index 15d6b4120f8e81..0983d3a0e2bd20 100644 --- a/pages.it/common/git-restore.md +++ b/pages.it/common/git-restore.md @@ -6,11 +6,11 @@ - Ripristina un file cancellato dal contenuto del commit corrente (HEAD): -`git restore {{percorso/al/file}}` +`git restore {{percorso/del/file}}` - Ripristina un file alla versione di un commit differente: -`git restore --source {{commit}} {{percorso/al/file}}` +`git restore --source {{commit}} {{percorso/del/file}}` - Annulla le modifiche ai file nell'area di stage, ripristinandoli all'HEAD: diff --git a/pages.it/common/git-rev-parse.md b/pages.it/common/git-rev-parse.md index 208f4fc4febc7c..47d56d71efacc3 100644 --- a/pages.it/common/git-rev-parse.md +++ b/pages.it/common/git-rev-parse.md @@ -11,6 +11,6 @@ `git rev-parse --abbrev-ref {{HEAD}}` -- Mostra il percorso assoluto della cartella di root: +- Mostra il percorso assoluto della directory di root: `git rev-parse --show-toplevel` diff --git a/pages.it/common/git-revert.md b/pages.it/common/git-revert.md index 21db4c830b70af..c72a114e0cbfe6 100644 --- a/pages.it/common/git-revert.md +++ b/pages.it/common/git-revert.md @@ -5,7 +5,7 @@ - Inverti il commit più recente: -`git revert {{@}}` +`git revert {{HEAD}}` - Inverti il quintùltimo commit: diff --git a/pages.it/common/git-rm.md b/pages.it/common/git-rm.md index f6fd0a0937675e..2d18687ceae45d 100644 --- a/pages.it/common/git-rm.md +++ b/pages.it/common/git-rm.md @@ -7,9 +7,9 @@ `git rm {{file}}` -- Cancella una cartella: +- Cancella una directory: -`git rm -r {{cartella}}` +`git rm -r {{directory}}` - Cancella un file dall'indice del repository ma non dal filesystem locale: diff --git a/pages.it/common/git-send-email.md b/pages.it/common/git-send-email.md index fe975222ea2489..5d216113a252cf 100644 --- a/pages.it/common/git-send-email.md +++ b/pages.it/common/git-send-email.md @@ -1,7 +1,7 @@ # git send-email > Invia una raccolta di patch via email. -> Le patch possono essere specificate come file, cartelle, o liste di revisione. +> Le patch possono essere specificate come file, directory, o liste di revisione. > Maggiori informazioni: . - Invia l'ultimo commit nel ramo corrente: diff --git a/pages.it/common/git-show-ref.md b/pages.it/common/git-show-ref.md index 302850b0238fa0..767484028e9f48 100644 --- a/pages.it/common/git-show-ref.md +++ b/pages.it/common/git-show-ref.md @@ -17,4 +17,4 @@ - Verifica che un certo riferimento esista: -`git show-ref --verify {{percorso/al/riferimento}}` +`git show-ref --verify {{percorso/del/riferimento}}` diff --git a/pages.it/common/git-show.md b/pages.it/common/git-show.md index 9dbb84d6d6eec0..42af8ef0ead42f 100644 --- a/pages.it/common/git-show.md +++ b/pages.it/common/git-show.md @@ -29,4 +29,4 @@ - Mostra il contenuto di un file ad una data revisione (ad esempio, in un ramo, tag o commit): -`git show {{revisione}}:{{percorso/al/file}}` +`git show {{revisione}}:{{percorso/del/file}}` diff --git a/pages.it/common/git-stage.md b/pages.it/common/git-stage.md index 67e9649e0495c8..716694d7e23fb0 100644 --- a/pages.it/common/git-stage.md +++ b/pages.it/common/git-stage.md @@ -6,7 +6,7 @@ - Aggiungi un file all'indice: -`git stage {{percorso/al/file}}` +`git stage {{percorso/del/file}}` - Aggiungi tutti i file (tracciati e non): @@ -26,7 +26,7 @@ - Aggiungi parti di un dato file all'area di stage in modo interattivo: -`git stage -p {{percorso/al/file}}` +`git stage -p {{percorso/del/file}}` - Aggiungi all'area di stage in modo interattivo: diff --git a/pages.it/common/git-submodule.md b/pages.it/common/git-submodule.md index 292e4514eb5109..77da993436653f 100644 --- a/pages.it/common/git-submodule.md +++ b/pages.it/common/git-submodule.md @@ -11,9 +11,9 @@ `git submodule add {{url_repository}}` -- Aggiungi un repository Git come modulo secondario alla cartella specificata: +- Aggiungi un repository Git come modulo secondario alla directory specificata: -`git submodule add {{url_repository}} {{percorso/alla/cartella}}` +`git submodule add {{url_repository}} {{percorso/della/directory}}` - Aggiorna tutti i moduli secondari al loro commit più recente: diff --git a/pages.it/common/git-subtree.md b/pages.it/common/git-subtree.md index bea58aeefd3a67..1cf7f10b37f3f5 100644 --- a/pages.it/common/git-subtree.md +++ b/pages.it/common/git-subtree.md @@ -5,20 +5,20 @@ - Aggiungi un repository Git come albero secondario: -`git subtree add --prefix={{percorso/alla/cartella/}} --squash {{url_repository}} {{master}}` +`git subtree add --prefix={{percorso/della/directory/}} --squash {{url_repository}} {{master}}` - Aggiorna l'albero secondario di un repository al suo commit più recente: -`git subtree pull --prefix={{percorso/alla/cartella/}} {{url_repository}} {{master}}` +`git subtree pull --prefix={{percorso/della/directory/}} {{url_repository}} {{master}}` - Unisci un albero secondario al ramo principale (master): -`git subtree merge --prefix={{percorso/alla/cartella/}} --squash {{url_repository}} {{master}}` +`git subtree merge --prefix={{percorso/della/directory/}} --squash {{url_repository}} {{master}}` - Invia commit all'albero secondario di un repository: -`git subtree push --prefix={{percorso/alla/cartella/}} {{url_repository}} {{master}}` +`git subtree push --prefix={{percorso/della/directory/}} {{url_repository}} {{master}}` - Estrai la cronologia di un nuovo progetto dalla cronologia di un albero secondario: -`git subtree split --prefix={{percorso/alla/cartella/}} {{url_repository}} -b {{nome_ramo}}` +`git subtree split --prefix={{percorso/della/directory/}} {{url_repository}} -b {{nome_ramo}}` diff --git a/pages.it/common/git-svn.md b/pages.it/common/git-svn.md index 1e5e6b8a72f30f..9e8c6acaf1688b 100644 --- a/pages.it/common/git-svn.md +++ b/pages.it/common/git-svn.md @@ -5,11 +5,11 @@ - Clona un repository SVN: -`git svn clone {{https://esempio.com/repo_subversion}} {{cartella_locale}}` +`git svn clone {{https://esempio.com/repo_subversion}} {{directory_locale}}` - Clona un repository SVN a partire da uno specifico numero di revisione: -`git svn clone -r{{1234}}:HEAD {{https://svn.esempio.net/subversion/repo}} {{cartella_locale}}` +`git svn clone -r{{1234}}:HEAD {{https://svn.esempio.net/subversion/repo}} {{directory_locale}}` - Aggiorna una copia locale da un repository SVN remoto: diff --git a/pages.it/common/git-worktree.md b/pages.it/common/git-worktree.md index 53ec22457c82b0..e07d7a33b30d70 100644 --- a/pages.it/common/git-worktree.md +++ b/pages.it/common/git-worktree.md @@ -3,18 +3,18 @@ > Gestisci gli alberi di lavoro collegati allo stesso repository. > Maggiori informazioni: . -- Crea una nuova cartella a partire da uno specifico ramo: +- Crea una nuova directory a partire da uno specifico ramo: -`git worktree add {{percorso/alla/cartella}} {{ramo}}` +`git worktree add {{percorso/della/directory}} {{ramo}}` -- Crea una nuova cartella a partire da un nuovo ramo: +- Crea una nuova directory a partire da un nuovo ramo: -`git worktree add {{percorso/alla/cartella}} -b {{nuovo_ramo}}` +`git worktree add {{percorso/della/directory}} -b {{nuovo_ramo}}` -- Mostra tutte le cartelle di lavoro collegate al repository corrente: +- Mostra tutte le directory di lavoro collegate al repository corrente: `git worktree list` -- Cancella un albero di lavoro (dopo averne cancellato la cartella): +- Cancella un albero di lavoro (dopo averne cancellato la directory): `git worktree prune` diff --git a/pages.it/common/git.md b/pages.it/common/git.md index ce5f69735b8751..5bb67987d23452 100644 --- a/pages.it/common/git.md +++ b/pages.it/common/git.md @@ -1,6 +1,7 @@ # git > Sistema di controllo versione distribuito. +> Alcuni comandi aggiuntivi, come `git commit`, hanno la propria documentazione. > Maggiori informazioni: . - Controlla la versione di Git: diff --git a/pages.it/common/gnmic-sub.md b/pages.it/common/gnmic-sub.md new file mode 100644 index 00000000000000..aafbcef88431ce --- /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/gocryptfs.md b/pages.it/common/gocryptfs.md new file mode 100644 index 00000000000000..ddcc837011beed --- /dev/null +++ b/pages.it/common/gocryptfs.md @@ -0,0 +1,24 @@ +# gocryptfs + +> Filesystem crittografato scritto in Go. +> Maggiori informazioni: . + +- Inizializzare un filesystem crittografato: + +`gocryptfs -init {{percorso/della/directory_cifrata}}` + +- Montare un filesystem crittografato: + +`gocryptfs {{percorso/della/directory_cifrata}} {{percorso/del/punto_di_mount}}` + +- Montare un filesystem usando la master key invece della password: + +`gocryptfs --masterkey {{percorso/della/directory_cifrata}} {{percorso/del/punto_di_mount}}` + +- Cambiare la password: + +`gocryptfs --passwd {{percorso/della/directory_cifrata}}` + +- Generare uno snapshot cifrato di una directory: + +`gocryptfs --reverse {{percorso/della/directory}} {{percorso/della/directory_cifrata}}` diff --git a/pages.it/common/google-chrome.md b/pages.it/common/google-chrome.md new file mode 100644 index 00000000000000..fc8eebf42503e3 --- /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/helm.md b/pages.it/common/helm.md new file mode 100644 index 00000000000000..487a8e1f0b18ef --- /dev/null +++ b/pages.it/common/helm.md @@ -0,0 +1,37 @@ +# helm + +> Helm è un gestore di pacchetti per Kubernetes. +> Alcuni comandi aggiuntivi, come `helm install`, hanno la propria documentazione. +> Maggiori informazioni: . + +- Crea una helm chart: + +`helm create {{nome_chart}}` + +- Aggiungi un nuovo repository helm: + +`helm repo add {{nome_repository}}` + +- Elenca i repositories helm: + +`helm repo list` + +- Aggiorna i repositories helm: + +`helm repo update` + +- Cancella un repository helm: + +`helm repo remove {{nome_repository}}` + +- Installa una helm chart: + +`helm install {{nome_chart}} {{nome_repository}}/{{nome_chart}}` + +- Scarica una helm chart sottoforma di archivio tar: + +`helm get {{nome_chart_rilasciata}}` + +- Aggiorna le dipendenze helm: + +`helm dependency update` diff --git a/pages.it/common/hx.md b/pages.it/common/hx.md new file mode 100644 index 00000000000000..56522955f7e9f7 --- /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/hyperfine.md b/pages.it/common/hyperfine.md new file mode 100644 index 00000000000000..b72a083248b190 --- /dev/null +++ b/pages.it/common/hyperfine.md @@ -0,0 +1,28 @@ +# hyperfine + +> Strumento di benchmarking con interfaccia CLI. +> Maggiori informazioni: . + +- Esegui un benchmark di base, eseguendo almeno 10 esecuzioni: + +`hyperfine '{{make}}'` + +- Esegui un benchmark comparativo: + +`hyperfine '{{make target1}}' '{{make target2}}'` + +- Modifica il numero minimo di esecuzioni di benchmark: + +`hyperfine --min-runs {{7}} '{{make}}'` + +- Esegui benchmark con periodo di riscaldamento: + +`hyperfine --warmup {{5}} '{{make}}'` + +- Esegui un comando prima di ogni esecuzione di benchmark (per cancellare le cache, etc.): + +`hyperfine --prepare '{{make clean}}' '{{make}}'` + +- Esegui un benchmark in cui un singolo parametro cambia per ogni esecuzione: + +`hyperfine --prepare '{{make clean}}' --parameter-scan {{num_threads}} {{1}} {{10}} '{{make -j {num_threads}}}'` diff --git a/pages.it/common/id3tag.md b/pages.it/common/id3tag.md index 07a918b98173a0..7b1853ddd1d5ed 100644 --- a/pages.it/common/id3tag.md +++ b/pages.it/common/id3tag.md @@ -1,12 +1,13 @@ # id3tag > Strumento per leggere, scrivere, e manipolare i tag (etichette) ID3v1 e ID3v2 di file MP3. +> Maggiori informazioni: . - Imposta l'etichetta dell'artista e del titolo in un file MP3: -`id3tag --artist={{artista}} --title={{titolo}} {{percorso/al/file.mp3}}` +`id3tag --artist={{artista}} --title={{titolo}} {{percorso/del/file.mp3}}` -- Imposta il titolo dell'album di tutti i file MP3 nella cartella corrente: +- Imposta il titolo dell'album di tutti i file MP3 nella directory corrente: `id3tag --album={{album}} {{*.mp3}}` diff --git a/pages.it/common/jrnl.md b/pages.it/common/jrnl.md new file mode 100644 index 00000000000000..d1f5385e99826f --- /dev/null +++ b/pages.it/common/jrnl.md @@ -0,0 +1,24 @@ +# jrnl + +> Una semplice applicazione da linea di comando per tenere un diario. +> Maggiori informazioni: . + +- Inserisci una nuova nota con il tuo editor: + +`jrnl` + +- Inserimento veloce di una nota: + +`jrnl {{today at 3am}}: {{titolo}}. {{contenuto}}` + +- Mostra le ultime dieci note inserite: + +`jrnl -n {{10}}` + +- Mostra tutto quello che è successo dall'inizio dello scorso anno fino all'inizio di marzo: + +`jrnl -from "{{last year}}" -until {{march}}` + +- Modifica tutte le note taggate con "texas" e "history": + +`jrnl {{@texas}} -and {{@history}} --edit` diff --git a/pages.it/common/kafkacat.md b/pages.it/common/kafkacat.md new file mode 100644 index 00000000000000..849065f6757bac --- /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 new file mode 100644 index 00000000000000..9719f60f1e7bb6 --- /dev/null +++ b/pages.it/common/kubectl.md @@ -0,0 +1,37 @@ +# kubectl + +> Interfaccia interattiva da linea di comando per eseguire comandi sui clusters Kubernetes. +> Alcuni comandi aggiuntivi, come `kubectl run`, hanno la propria documentazione.. +> Maggiori informazioni: . + +- Elenca le informazioni su una risorsa in maniera dettagliata: + +`kubectl get {{pod|service|deployment|ingress|...}} -o wide` + +- Aggiorna il pod specificato con l'etichetta 'unhealthy' e il valore 'true': + +`kubectl label pods {{nome}} unhealthy=true` + +- Elenca tutte le risorse: + +`kubectl get all` + +- Mostra l'utilizzo delle risorse (CPU/Memory/Storage) di nodi o pods: + +`kubectl top {{pod|nodo}}` + +- Mostra l'indirizzo del master e i servizi del cluster: + +`kubectl cluster-info` + +- Mostra la spiegazione di un campo specifico: + +`kubectl explain {{pods.spec.containers}}` + +- Mostra i logs di un container in un pod o in una risorsa specificata: + +`kubectl logs {{nome_pod}}` + +- Esegue un commando in un pod esistente: + +`kubectl exec {{nome_pod}} -- {{ls /}}` diff --git a/pages.it/common/less.md b/pages.it/common/less.md index 5a18e119d89e89..a18f3f762f503e 100644 --- a/pages.it/common/less.md +++ b/pages.it/common/less.md @@ -1,6 +1,7 @@ # less > Apri un file per lettura interattiva, permettendo di scorrere e cercare testo al suo interno. +> Maggiori informazioni: . - Apri un file: diff --git a/pages.it/common/llvm-ar.md b/pages.it/common/llvm-ar.md new file mode 100644 index 00000000000000..1a7c0474339c81 --- /dev/null +++ b/pages.it/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Questo comando è un alias per `ar`. + +- Consulta la documentazione del comando originale: + +`tldr ar` diff --git a/pages.it/common/llvm-g++.md b/pages.it/common/llvm-g++.md new file mode 100644 index 00000000000000..c1e2ff8eaf6da8 --- /dev/null +++ b/pages.it/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Questo comando è un alias per `clang++`. + +- Consulta la documentazione del comando originale: + +`tldr clang++` diff --git a/pages.it/common/llvm-gcc.md b/pages.it/common/llvm-gcc.md new file mode 100644 index 00000000000000..47efd58557338c --- /dev/null +++ b/pages.it/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Questo comando è un alias per `clang`. + +- Consulta la documentazione del comando originale: + +`tldr clang` diff --git a/pages.it/common/llvm-nm.md b/pages.it/common/llvm-nm.md new file mode 100644 index 00000000000000..d95cc843713d19 --- /dev/null +++ b/pages.it/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Questo comando è un alias per `nm`. + +- Consulta la documentazione del comando originale: + +`tldr nm` diff --git a/pages.it/common/llvm-objdump.md b/pages.it/common/llvm-objdump.md new file mode 100644 index 00000000000000..f22fd7da556709 --- /dev/null +++ b/pages.it/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Questo comando è un alias per `objdump`. + +- Consulta la documentazione del comando originale: + +`tldr objdump` diff --git a/pages.it/common/llvm-strings.md b/pages.it/common/llvm-strings.md new file mode 100644 index 00000000000000..81b0f9402eea1b --- /dev/null +++ b/pages.it/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Questo comando è un alias per `strings`. + +- Consulta la documentazione del comando originale: + +`tldr strings` diff --git a/pages.it/common/ln.md b/pages.it/common/ln.md index 30a193f853ce52..2619cbd3e086ef 100644 --- a/pages.it/common/ln.md +++ b/pages.it/common/ln.md @@ -5,12 +5,12 @@ - Crea un collegamento simbolico a un file (o directory): -`ln -s {{percorso/al/file}} {{percorso/al/collegamento}}` +`ln -s {{/percorso/del/file}} {{percorso/del/collegamento}}` - Sovrascrivi un collegamento esistente in modo che punti a un nuovo file: -`ln -sg {{percorso/al/nuovo/file}} {{percorso/al/collegamento}}` +`ln -sf {{/percorso/del/nuovo/file}} {{percorso/del/collegamento}}` - Crea un collegamento fisico a un file: -`ln {{percorso/al/file}} {{percorso/al/collegamento}}` +`ln {{/percorso/del/file}} {{percorso/del/collegamento}}` diff --git a/pages.it/common/lzcat.md b/pages.it/common/lzcat.md new file mode 100644 index 00000000000000..4a6f90b6f44410 --- /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 00000000000000..a936e330d8d8b4 --- /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/man.md b/pages.it/common/man.md index 11bf2706182e97..63675c0eb08d58 100644 --- a/pages.it/common/man.md +++ b/pages.it/common/man.md @@ -9,7 +9,7 @@ - Mostra la pagina di manuale per un comando dalla sezione 7: -`man {{comando}}.{{7}}` +`man {{7}} {{comando}}` - Mostra il percorso in cui vengono cercate le pagine: diff --git a/pages.it/common/md5sum.md b/pages.it/common/md5sum.md new file mode 100644 index 00000000000000..236d0d7ef00e72 --- /dev/null +++ b/pages.it/common/md5sum.md @@ -0,0 +1,20 @@ +# md5sum + +> Calcola i checksum crittografici di tipo MD5. +> Maggiori informazioni: . + +- Calcolare il checksum MD5 di un file: + +`md5sum {{percorso/del/file}}` + +- Calcola i checksum MD5 per più di un file: + +`md5sum {{percorso/del/file1}} {{percorso/del/file2}}` + +- Verifica che tutti i file abbiano checksum corrispondenti al file di MD5SUM: + +`md5sum -c {{percorso/del/file.md5}}` + +- Calcola il checksum MD5 dal standard input: + +`echo "{{testo}}" | md5sum` diff --git a/pages.it/common/mkdir.md b/pages.it/common/mkdir.md index 13c51bdb76dd3d..59413c8488cc0b 100644 --- a/pages.it/common/mkdir.md +++ b/pages.it/common/mkdir.md @@ -9,4 +9,4 @@ - Crea directory ricorsivamente (utile per creare directory annidate): -`mkdir -p {{percorso/alla/directory}}` +`mkdir -p {{percorso/della/directory}}` diff --git a/pages.it/common/more.md b/pages.it/common/more.md new file mode 100644 index 00000000000000..9c48ec7dc6d8c4 --- /dev/null +++ b/pages.it/common/more.md @@ -0,0 +1,32 @@ +# more + +> Aprire un file per la lettura interattiva, con scorrimento e ricerca. +> Maggiori informazioni: . + +- Apri un file: + +`more {{percorso/del/file}}` + +- Apri un file visualizzato da una riga specifica: + +`more +{{linea_numero}} {{percorso/del/file}}` + +- Mostra aiuto: + +`more --help` + +- Prossima pagina: + +`` + +- Cerca una stringa (tocca `n` per passare alla corrispondenza successiva): + +`/{{qualcose}}` + +- Smettere: + +`q` + +- Mostra aiuto per comando interattivo: + +`h` diff --git a/pages.it/common/mount.md b/pages.it/common/mount.md index a300b878deb8c3..4d10ed4b5f6260 100644 --- a/pages.it/common/mount.md +++ b/pages.it/common/mount.md @@ -1,14 +1,15 @@ # mount -> Fornisce accesso a un intero filesystem in una cartella specifica. +> Fornisce accesso a un intero filesystem in una directory specifica. +> Maggiori informazioni: . - Mostra tutti i filesystem montati: `mount` -- Monta un dispositivo in una cartella: +- Monta un dispositivo in una directory: -`mount -t {{tipo_di_filesystem}} {{percorso/al/dispositivo}} {{percorso/alla/cartella_desiderata}}` +`mount -t {{tipo_di_filesystem}} {{percorso/del/dispositivo}} {{percorso/della/directory_desiderata}}` - Monta un CD-ROM (con il filetypo ISO9660) a `/cdrom` (sola lettura): @@ -22,6 +23,6 @@ `mount {{/my_drive}}` -- Monta una cartella in un'altra cartella: +- Monta una directory in un'altra directory: -`mount --bind {{percorso/alla/vecchia_cartella}} {{percorso/alla/nuova_cartella}}` +`mount --bind {{percorso/della/vecchia_directory}} {{percorso/della/nuova_directory}}` diff --git a/pages.it/common/mscore.md b/pages.it/common/mscore.md new file mode 100644 index 00000000000000..2c7e146b6b299a --- /dev/null +++ b/pages.it/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Questo comando è un alias per `musescore`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr musescore` diff --git a/pages.it/common/mv.md b/pages.it/common/mv.md index a44f0c8ad1c5a8..de31603df915c4 100644 --- a/pages.it/common/mv.md +++ b/pages.it/common/mv.md @@ -19,6 +19,6 @@ `mv -n {{sorgente}} {{destinazione}}` -- Sposta file in modità verbosa, mostrando a schermo ogni file che viene spostato: +- Sposta file in modalità verbosa, mostrando a schermo ogni file che viene spostato: `mv -v {{sorgente}} {{destinazione}}` diff --git a/pages.it/common/neofetch.md b/pages.it/common/neofetch.md new file mode 100644 index 00000000000000..54d7873e7bfaf7 --- /dev/null +++ b/pages.it/common/neofetch.md @@ -0,0 +1,20 @@ +# neofetch + +> Strumento CLI per visualizzare informazioni al OS, software e hardware. +> Maggiori informazioni: . + +- Stampa secondo la configurazione predefinita e genera una configurazione, se è la prima volta: + +`neofetch` + +- Attiva o disattiva la visualizzazione di una riga di informazioni nell'output, dove 'infoname' è il nome della funzione nel config, e.g. 'memory': + +`neofetch --{{enable|disable}} {{infoname}}` + +- Nascondi/mostri l'architettura del OS: + +`neofetch --os_arch {{on|off}}` + +- Attiva/disattiva marca CPU nell' output: + +`neofetch --cpu_brand {{on|off}}` diff --git a/pages.it/common/nm-classic.md b/pages.it/common/nm-classic.md new file mode 100644 index 00000000000000..0d76ab596985fb --- /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 00000000000000..2a8d28c945cad7 --- /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 00000000000000..57d5d9d4cb626b --- /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 00000000000000..4baf77f2793dad --- /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/nvim.md b/pages.it/common/nvim.md new file mode 100644 index 00000000000000..870896567963de --- /dev/null +++ b/pages.it/common/nvim.md @@ -0,0 +1,37 @@ +# nvim + +> Neovim, un editor di testo basato su Vim che offre molti diversi modi di manipolare e navigare il testo. +> Premere `i` per entrare in modalità inserimento (insert mode), `` per uscire e tornare alla modalità normale (normal mode). +> Maggiori informazioni: . + +- Aprire un file: + +`nvim {{file}}` + +- Entrare nella modalità per scrivere testo (insert mode): + +`i` + +- Copiare ("yank") o cancellare ("delete") la linea corrente (può poi essere copiata con `p` o `P`): + +`{{yy|dd}}` + +- Annullare l'ultima operazione fatta: + +`u` + +- Cercare uno specifico pattern nel file (premere `n`/`N` per navigare tra le occorrenze successive/precedenti): + +`/{{patter_da_cercare}}` + +- Eseguire una sostituzione tramite espressione regolare nell'intero file: + +`:%s/{{espressione_regolare}}/{{sostituzione}}//g` + +- Salvare (scrivere) il file per poi uscire: + +`:wq` + +- Uscire senza salvare: + +`:q!` diff --git a/pages.it/common/opusenc.md b/pages.it/common/opusenc.md index 5fd31fdc61a4ba..f65e5f32491b9b 100644 --- a/pages.it/common/opusenc.md +++ b/pages.it/common/opusenc.md @@ -5,16 +5,16 @@ - Converte un file WAV in un file Opus usando le opzioni predefinite: -`opusenc {{percorso/al/file_originale.wav}} {{percorso/al/file_convertito}}.opus` +`opusenc {{percorso/del/file_originale.wav}} {{percorso/del/file_convertito}}.opus` - Converte un audio stereo alla massima qualità possibile: -`opusenc --bitrate {{512}} {{percorso/al/file_originale.wav}} {{percorso/al/file_convertito}}.opus` +`opusenc --bitrate {{512}} {{percorso/del/file_originale.wav}} {{percorso/del/file_convertito}}.opus` - Converte un audio con canali surround 5.1 alla massima qualità possibile: -`opusenc --bitrate {{1536}} {{percorso/al/file_originale.flac}} {{percorso/al/file_convertito}}.opus` +`opusenc --bitrate {{1536}} {{percorso/del/file_originale.flac}} {{percorso/del/file_convertito}}.opus` - Converte l'audio di una voce alla minima qualità possibile: -`opusenc {{percorso/al/file_originale.wav}} --downmix-mono --bitrate {{6}} {{percorso/al/file_convertito}}.opus` +`opusenc {{percorso/del/file_originale.wav}} --downmix-mono --bitrate {{6}} {{percorso/del/file_convertito}}.opus` diff --git a/pages.it/common/pio-init.md b/pages.it/common/pio-init.md new file mode 100644 index 00000000000000..28531cae09b76f --- /dev/null +++ b/pages.it/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Questo comando è un alias per `pio project`. + +- Consulta la documentazione del comando originale: + +`tldr pio project` diff --git a/pages.it/common/piodebuggdb.md b/pages.it/common/piodebuggdb.md new file mode 100644 index 00000000000000..c7a5b598797dce --- /dev/null +++ b/pages.it/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Questo comando è un alias per `pio debug`. + +- Consulta la documentazione del comando originale: + +`tldr pio debug` diff --git a/pages.it/common/platformio.md b/pages.it/common/platformio.md new file mode 100644 index 00000000000000..b30dbf181fb573 --- /dev/null +++ b/pages.it/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Questo comando è un alias per `pio`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr pio` diff --git a/pages.it/common/poetry.md b/pages.it/common/poetry.md new file mode 100644 index 00000000000000..ad90a03ff3d6fa --- /dev/null +++ b/pages.it/common/poetry.md @@ -0,0 +1,24 @@ +# poetry + +> Gestore di pacchetti e dipendenze per Python. +> Maggiori informazioni: . + +- Crea un nuovo progetto Poetry nella directory specificata: + +`poetry new {{nome_progetto}}` + +- Installa una dipendenza e le relative sottodipendenze: + +`poetry add {{dipendenza}}` + +- Inizializza interattivamente la nuova directory come un nuovo progetto Poetry: + +`poetry init` + +- Recupera l'ultima versione di ciascuna dipendenza e aggiorna il file `poetry.lock`: + +`poetry update` + +- Esegue un comando all'interno dell'ambiente virtuale del progetto: + +`poetry run {{comando}}` diff --git a/pages.it/common/powershell.md b/pages.it/common/powershell.md new file mode 100644 index 00000000000000..676bd462a1fb1e --- /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 00000000000000..98f6f62d94f5f7 --- /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/pyenv-virtualenv.md b/pages.it/common/pyenv-virtualenv.md new file mode 100644 index 00000000000000..eb3fb6ea43eafc --- /dev/null +++ b/pages.it/common/pyenv-virtualenv.md @@ -0,0 +1,20 @@ +# pyenv virtualenv + +> Crea ambienti virtuali basati sulle distribuzioni Python che si hanno installate. +> Maggiori informazioni: . + +- Crea un nuovo ambiente virtuale basato su Python 3.6.6: + +`pyenv virtualenv {{3.6.6}} {{virtualenv_name}}` + +- Elenca tutti gli ambienti virtuali esistenti: + +`pyenv virtualenvs` + +- Attiva un ambiente virtuale: + +`pyenv activate {{virtualenv_name}}` + +- Disattiva l'ambiente virtuale corrente: + +`pyenv deactivate` diff --git a/pages.it/common/pyenv.md b/pages.it/common/pyenv.md new file mode 100644 index 00000000000000..25695a0a55f0a0 --- /dev/null +++ b/pages.it/common/pyenv.md @@ -0,0 +1,32 @@ +# pyenv + +> Passa da una distribuzione all'altra di Python in modo semplice. +> Maggiori informazioni: . + +- Elenca i comandi disponibili: + +`pyenv commands` + +- Elenca tutte le distribuzioni di Python presenti nella directory `${PYENV_ROOT}/versions`: + +`pyenv versions` + +- Elenca tutte le versioni di Python che possono essere installate da upstream: + +`pyenv install --list` + +- Installa una distribuzione di Python nella directory `${PYENV_ROOT}/versions`: + +`pyenv install {{2.7.10}}` + +- Disinstalla una distribuzione di Python dalla directory `${PYENV_ROOT}/versions`: + +`pyenv uninstall {{2.7.10}}` + +- Imposta la distribuzione di Python da utilizzare globalmente sulla macchina: + +`pyenv global {{2.7.10}}` + +- Imposta la distribuzione di Python da utilizzare nella directory corrente e in tutte le relative sottodirectory: + +`pyenv local {{2.7.10}}` diff --git a/pages.it/common/python.md b/pages.it/common/python.md new file mode 100644 index 00000000000000..1ad99e8718a9f3 --- /dev/null +++ b/pages.it/common/python.md @@ -0,0 +1,32 @@ +# python + +> Interprete del linguaggio Python. +> Maggiori informazioni: . + +- Avvia una REPL (shell interattiva): + +`python` + +- Esegue lo script contenuto in un file Python: + +`python {{script.py}}` + +- Esegue uno script all'interno della shell interattiva: + +`python -i {{script.py}}` + +- Esegue un'espressione Python: + +`python -c "{{expression}}"` + +- Esegue lo script di un modulo presente nella libreria: + +`python -m {{modulo}} {{argomenti}}` + +- Installa un pacchetto usando `pip`: + +`python -m pip install {{nome_pacchetto}}` + +- Esegue il debug interattivo di uno script Python: + +`python -m pdb {{script.py}}` diff --git a/pages.it/common/python3.md b/pages.it/common/python3.md new file mode 100644 index 00000000000000..e1fc522358ccb2 --- /dev/null +++ b/pages.it/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Questo comando è un alias di `python`. + +- Consulta la documentazione del comando originale: + +`tldr python` diff --git a/pages.it/common/r2.md b/pages.it/common/r2.md new file mode 100644 index 00000000000000..1ea49d17e9f6ce --- /dev/null +++ b/pages.it/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Questo comando è un alias per `radare2`. + +- Consulta la documentazione del comando originale: + +`tldr radare2` diff --git a/pages.it/common/rcat.md b/pages.it/common/rcat.md new file mode 100644 index 00000000000000..e551deb253c0b3 --- /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/readlink.md b/pages.it/common/readlink.md new file mode 100644 index 00000000000000..be009970ddb53f --- /dev/null +++ b/pages.it/common/readlink.md @@ -0,0 +1,12 @@ +# readlink + +> Segue un collegamento simbolico e ne recupera le informazioni. +> Maggiori informazioni: . + +- Restituisce il percorso originale a cui il collegamento simbolico fa riferimento: + +`readlink {{nome_file}}` + +- Ottiene il percorso assoluto di un file: + +`readlink -f {{nome_file}}` diff --git a/pages.it/common/ripgrep.md b/pages.it/common/ripgrep.md new file mode 100644 index 00000000000000..ab090145053be4 --- /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 6f7cd1fa75692f..913073ae31e8e8 100644 --- a/pages.it/common/rm.md +++ b/pages.it/common/rm.md @@ -5,20 +5,20 @@ - Rimuovi file: -`rm {{percorso/a/file1 percorso/a/file2 ...}}` +`rm {{percorso/del/file1 percorso/del/file2 ...}}` - Rimuovi ricorsivamente una directory e tutti i suoi contenuti: -`rm -r {{percorso/alla/directory}}` +`rm -r {{percorso/della/directory}}` - Rimuovi ricorsivamente una directory, senza chiedere conferma o mostrare messaggi di errore: -`rm -rf {{percorso/alla/directory}}` +`rm -rf {{percorso/della/directory}}` - 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: -`rm -v {{percorso/a/un/file}}` +`rm -v {{percorso/del/file}}` diff --git a/pages.it/common/sudo.md b/pages.it/common/sudo.md index 6d9d2a389d20bd..c3a6002b930bc5 100644 --- a/pages.it/common/sudo.md +++ b/pages.it/common/sudo.md @@ -1,6 +1,7 @@ # sudo > Esegue un singolo comando come superuser o come un altro utente. +> Maggiori informazioni: . - Esegui un comando come superuser: diff --git a/pages.it/common/task.md b/pages.it/common/task.md new file mode 100644 index 00000000000000..aa68be807aa5cb --- /dev/null +++ b/pages.it/common/task.md @@ -0,0 +1,24 @@ +# task + +> Gestore della lista dei TODO. +> Maggiori informazioni: . + +- Aggiungere un nuovo task: + +`task add {{thing_to_do}}` + +- Lista dei task: + +`task list` + +- Contrassegnare un task come completato: + +`task {{task_id}} done` + +- Modificare un task: + +`task {{task_id}} modify {{new_thing_to_do}}` + +- Eliminare un task: + +`task {{task_id}} delete` diff --git a/pages.it/common/tldrl.md b/pages.it/common/tldrl.md new file mode 100644 index 00000000000000..e22ed9096ea0b4 --- /dev/null +++ b/pages.it/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Questo comando è un alias per `tldr-lint`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr tldr-lint` diff --git a/pages.it/common/tlmgr-arch.md b/pages.it/common/tlmgr-arch.md new file mode 100644 index 00000000000000..143faf2aa8b380 --- /dev/null +++ b/pages.it/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Questo comando è un alias per `tlmgr platform`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr tlmgr platform` diff --git a/pages.it/common/todo.md b/pages.it/common/todo.md new file mode 100644 index 00000000000000..ab17a9cae6edce --- /dev/null +++ b/pages.it/common/todo.md @@ -0,0 +1,32 @@ +# todo + +> Un semplice gestore per i todo da linea di comando. +> Maggiori informazioni: . + +- Elenco dei task che possono essere inizializzati: + +`todo list --startable` + +- Aggiungere un nuovo task alla lista delle cose da fare per lavoro: + +`todo new {{cose_da_fare}} --list {{lavoro}}` + +- Aggiungere una località ad un task con un dato ID: + +`todo edit --location {{nome_località}} {{task_id}}` + +- Mostrare i dettagli di un task: + +`todo show {{task_id}}` + +- Contrassegnare un task con un ID specifico come completato: + +`todo done {{task_id1 task_id2 ...}}` + +- Eliminare un task: + +`todo delete {{task_id}}` + +- Eliminare un task completato e ripristinare gli ID dei task rimanenti: + +`todo flush` diff --git a/pages.it/common/todoman.md b/pages.it/common/todoman.md new file mode 100644 index 00000000000000..582a39a0833fef --- /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 00000000000000..1591bb9766175b --- /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/tree.md b/pages.it/common/tree.md new file mode 100644 index 00000000000000..9e3b658864d8c4 --- /dev/null +++ b/pages.it/common/tree.md @@ -0,0 +1,36 @@ +# tree + +> Mostra i contenuti della directory corrente come un albero. +> Maggiori informazioni: . + +- Stampa file e directory fino al 'num'-esimo livello di profondità (dove 1 significa la directory corrente): + +`tree -L {{num}}` + +- Stampa solamente le directory: + +`tree -d` + +- Stampa anche i file nascosti con la colorazione attiva: + +`tree -a -C` + +- Stampa l'albero senza linee di indentazione, mostrando invece il percorso completo (usa `-N` per non convertire caratteri non stampabili in sequenze di escape): + +`tree -i -f` + +- Stampa la dimensione di ogni file e la dimensione totale di ogni directory, in formato leggibile dall'utente: + +`tree -s -h --du` + +- Stampa i file all'interno dell'albero gerarchico, utilizzando espressioni di metacaratteri (glob pattern) per escludere le directory che non contengono file corrispondenti alla ricerca: + +`tree -P '{{*.txt}}' --prune` + +- Stampa le directory all'interno dell'albero gerarchico, utilizzando espressioni di metacaratteri (glob pattern) per escludere le directory che non sono progenitori di quelle desiderate: + +`tree -P {{nomi_di_directory}} --matchdirs --prune` + +- Stampa l'albero ignorando le directory date: + +`tree -I '{{nome_directory1|nome_directory2}}'` diff --git a/pages.it/common/unlzma.md b/pages.it/common/unlzma.md new file mode 100644 index 00000000000000..316d24c7e23930 --- /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 00000000000000..87bf76f79ea7eb --- /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/vi.md b/pages.it/common/vi.md new file mode 100644 index 00000000000000..94a31b5d0e4173 --- /dev/null +++ b/pages.it/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Questo comando è un alias per `vim`. + +- Consulta la documentazione del comando originale: + +`tldr vim` diff --git a/pages.it/common/vim.md b/pages.it/common/vim.md index b49bbe4b23167e..0d8d64d1495a62 100644 --- a/pages.it/common/vim.md +++ b/pages.it/common/vim.md @@ -22,11 +22,11 @@ - Cerca un pattern nel file (usa `n`/`N` per spostarti al risultato successivo/precedente): -`/{{pattern}}` +`/{{espressione_regolare}}` -- Effettua una sostituzione tramite regex nell'intero file: +- Effettua una sostituzione tramite espressione regolare nell'intero file: -`:%s/{{pattern}}/{{sostituzione}}/g` +`:%s/{{espressione_regolare}}/{{sostituzione}}/g` - Salva modifiche al file ed esci: diff --git a/pages.it/common/vlc.md b/pages.it/common/vlc.md index 9a93957cb75ed4..b30779c450332c 100644 --- a/pages.it/common/vlc.md +++ b/pages.it/common/vlc.md @@ -1,23 +1,23 @@ # vlc > Lettore multimediale multi-piattaforma. -> Maggiori informazioni: . +> Maggiori informazioni: . - Riproduce un file: -`vlc {{percorso/al/file}}` +`vlc {{percorso/del/file}}` - Riproduce a schermo intero: -`vlc --fullscreen {{percorso/al/file}}` +`vlc --fullscreen {{percorso/del/file}}` - Riproduce con audio disattivato: -`vlc --no-audio {{percorso/al/file}}` +`vlc --no-audio {{percorso/del/file}}` - Riproduce in ciclo continuo: -`vlc --loop {{percorso/al/file}}` +`vlc --loop {{percorso/del/file}}` - Riproduce il video in un certo URL: diff --git a/pages.it/common/wget.md b/pages.it/common/wget.md index dca06e529e77ea..69cae89f3e8ac8 100644 --- a/pages.it/common/wget.md +++ b/pages.it/common/wget.md @@ -10,13 +10,13 @@ - Scarica il contenuto dell'URL in un file (dal nome "efgh" in questo caso): -`wget -O {{efgh}} {{https://esempio.com/abcd}}` +`wget --output-document {{efgh}} {{https://esempio.com/abcd}}` - Scarica una singola pagina web e tutte le sue risorse (script, immagini, stili, ecc..) aspettando 3 secondi dopo ogni richiesta: `wget --page-requisites --convert-links --wait=3 {{https://esempio.com/pagina_web.html}}` -- Scarica tutti i file elencati nella cartella e nelle sue sotto-cartelle (non scarica gli elementi incorporati nella pagina): +- Scarica tutti i file elencati nella directory e nelle sue sotto-directory (non scarica gli elementi incorporati nella pagina): `wget --mirror --no-parent {{https://esempio.com/unqualchepercorso/}}` @@ -30,8 +30,8 @@ - Riprende un download incompleto: -`wget -c {{https://esempio.com}}` +`wget --continue {{https://esempio.com}}` -- Scarica tutti gli URL contenuti in un file di testo in una cartella specificata: +- Scarica tutti gli URL contenuti in un file di testo in una directory specificata: -`wget -P {{percorso/alla/cartella}} -i {{lista_di_URL.txt}}` +`wget --directory-prefix {{percorso/della/directory}} --input-file {{lista_di_URL.txt}}` diff --git a/pages.it/common/xkill.md b/pages.it/common/xkill.md new file mode 100644 index 00000000000000..784ca35356cdc1 --- /dev/null +++ b/pages.it/common/xkill.md @@ -0,0 +1,9 @@ +# xkill + +> Termina una finestra interattivamente attraverso la sessione grafica. +> Vedi anche `kill` e `killall`. +> Maggiori informazioni: . + +- Mostra un cursore per terminate una finestra cliccandoci sopra con il tasto sinistro del mouse (premendo qualsiasi altro tasto si cancella l'azione): + +`xkill` diff --git a/pages.it/common/xxd.md b/pages.it/common/xxd.md new file mode 100644 index 00000000000000..c190dae78737ed --- /dev/null +++ b/pages.it/common/xxd.md @@ -0,0 +1,32 @@ +# xxd + +> Mostra la rappresentazione esadecimale (hexdump) di un file binario e viceversa. +> Maggiori informazioni: . + +- Creare l'hexdump di un file binario e mostrare l'output: + +`xxd {{file_di_input}}` + +- Creare l'hexdump di un file binario e salvare il risultato in un file: + +`xxd {{file_di_input}} {{file_di_output}}` + +- Mostrare un output in una versione un po' più compatta, dove gli zero consegutivi vengono sostituiti da un asterisco: + +`xxd -a {{file_di_input}}` + +- Mostrare l'output in 10 colonne di un ottetto (byte) ciascuna: + +`xxd -c {{10}} {{file_di_input}}` + +- Mostrare l'output solo fino ad una lunghezza massima di 32 bytes: + +`xxd -l {{32}} {{file_di_input}}` + +- Mostrare l'output in modalità normale, senza spazi tra le colonne: + +`xxd -p {{file_di_input}}` + +- Eseguire l'operazione inversa, ovvero da un hexdump creare il binario e salvarlo in un file: + +`xxd -r -p {{file_di_input}} {{file_di_output}}` diff --git a/pages.it/common/xzcat.md b/pages.it/common/xzcat.md new file mode 100644 index 00000000000000..eb8db8e308f727 --- /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/a2disconf.md b/pages.it/linux/a2disconf.md new file mode 100644 index 00000000000000..736c4d4856a57a --- /dev/null +++ b/pages.it/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Disattiva un file di configurazione Apache su Sistemi Operativi basati su Debian. +> Maggiori informazioni: . + +- Disattiva un file di configurazione: + +`sudo a2disconf {{file_di_configurazione}}` + +- Non mostrare messaggi informativi: + +`sudo a2disconf --quiet {{file_di_configurazione}}` diff --git a/pages.it/linux/a2dismod.md b/pages.it/linux/a2dismod.md new file mode 100644 index 00000000000000..f3affc593b75dd --- /dev/null +++ b/pages.it/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Disattiva un modulo Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Disattiva un modulo: + +`sudo a2dismod {{modulo}}` + +- Non mostrare messaggi informativi: + +`sudo a2dismod --quiet {{modulo}}` diff --git a/pages.it/linux/a2dissite.md b/pages.it/linux/a2dissite.md new file mode 100644 index 00000000000000..ed7f43f28de28a --- /dev/null +++ b/pages.it/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Disattiva un virtual host Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Disattiva un virtual host: + +`sudo a2dissite {{virtual_host}}` + +- Non mostrare messaggi informativi: + +`sudo a2dissite --quiet {{virtual_host}}` diff --git a/pages.it/linux/a2enconf.md b/pages.it/linux/a2enconf.md new file mode 100644 index 00000000000000..05730b172f311a --- /dev/null +++ b/pages.it/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Attiva un file di configurazione Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Attiva un file di configurazione: + +`sudo a2enconf {{file_di_configurazione}}` + +- Non mostrare messaggi informativi: + +`sudo a2enconf --quiet {{file_di_configurazione}}` diff --git a/pages.it/linux/a2enmod.md b/pages.it/linux/a2enmod.md new file mode 100644 index 00000000000000..93cf823dc652c8 --- /dev/null +++ b/pages.it/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Attiva un modulo Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Attiva un modulo: + +`sudo a2enmod {{modulo}}` + +- Non mostrare messaggi informativi: + +`sudo a2enmod --quiet {{modulo}}` diff --git a/pages.it/linux/a2ensite.md b/pages.it/linux/a2ensite.md new file mode 100644 index 00000000000000..4ef53970a75bbd --- /dev/null +++ b/pages.it/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Attiva un virtual host Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Attiva un virtual host: + +`sudo a2ensite {{virtual_host}}` + +- Non mostrare messaggi informativi: + +`sudo a2ensite --quiet {{virtual_host}}` diff --git a/pages.it/linux/a2query.md b/pages.it/linux/a2query.md new file mode 100644 index 00000000000000..8bf6a74a0123b2 --- /dev/null +++ b/pages.it/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Recupera la configurazione di runtime da Apache su sistemi operativi basati su Debian. +> Maggiori informazioni: . + +- Lista i moduli Apache attivi: + +`sudo a2query -m` + +- Controlla se un modulo specifico è installato: + +`sudo a2query -m {{nome_modulo}}` + +- Lista virtual host attivi: + +`sudo a2query -s` + +- Mostra il Modulo Multi-Processo correntemente attivo: + +`sudo a2query -M` + +- Mostra la versione di Apache: + +`sudo a2query -v` diff --git a/pages.it/linux/add-apt-repository.md b/pages.it/linux/add-apt-repository.md index 786d5b1dfba57a..f22d89fd33f487 100644 --- a/pages.it/linux/add-apt-repository.md +++ b/pages.it/linux/add-apt-repository.md @@ -1,6 +1,7 @@ # add-apt-repository > Gestisce le definizioni di repository apt. +> Maggiori informazioni: . - Aggiunge un nuovo repository apt: diff --git a/pages.it/linux/adduser.md b/pages.it/linux/adduser.md index c1df77656c7ed9..e9f32c556c3f9d 100644 --- a/pages.it/linux/adduser.md +++ b/pages.it/linux/adduser.md @@ -3,21 +3,21 @@ > Servizio per aggiungere utenti. > Maggiori informazioni: . -- Crea un nuovo utente con una home directory predefinita e richiede all'utente di impostare una password: +- Crea un nuovo utente con una directory home predefinita e richiede all'utente di impostare una password: `adduser {{nome_utente}}` -- Crea un utente senza una home directory: +- Crea un utente senza una directory home: `adduser --no-create-home {{nome_utente}}` -- Crea un utente con una home directory nel percorso specificato: +- Crea un utente con una directory home nel percorso specificato: -`adduser --home {{percorso/all/home}} {{nome_utente}}` +`adduser --home {{percorso/della/home}} {{nome_utente}}` - Crea un nuovo utente con l'interprete di comandi(shell) specificato come shell di accesso: -`adduser --shell {{percorso/alla/shell}} {{nome_utente}}` +`adduser --shell {{percorso/della/shell}} {{nome_utente}}` - Crea un nuovo utente appartenente al gruppo specificato: diff --git a/pages.it/linux/alternatives.md b/pages.it/linux/alternatives.md new file mode 100644 index 00000000000000..37ca18d6d37358 --- /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 00000000000000..ad46b62a36441e --- /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/apt.md b/pages.it/linux/apt.md index 48baae80d12deb..82e17758750bc8 100644 --- a/pages.it/linux/apt.md +++ b/pages.it/linux/apt.md @@ -1,7 +1,7 @@ # apt > Servizio di gestione dei pacchetti per distribuzioni basate su Debian. -> Rimpiazzo raccomandato di apt-get quando usato interattivamente su Ubuntu 16.04 e versioni successive. +> Rimpiazzo raccomandato di `apt-get` quando usato interattivamente su Ubuntu 16.04 e versioni successive. > Maggiori informazioni: . - Aggiorna la lista dei pacchetti e delle loro versioni disponibili (è consigliato eseguire questo comando prima di altri comandi `apt`): diff --git a/pages.it/linux/batcat.md b/pages.it/linux/batcat.md new file mode 100644 index 00000000000000..ac21b04e6eea66 --- /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 00000000000000..9b0b37227ea76c --- /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/binwalk.md b/pages.it/linux/binwalk.md deleted file mode 100644 index 8b5edbb16dd2c7..00000000000000 --- a/pages.it/linux/binwalk.md +++ /dev/null @@ -1,28 +0,0 @@ -# binwalk - -> Strumento per l'analisi di file binari. -> Maggiori informazioni: . - -- Scansiona un file binario: - -`binwalk {{percorso/a/file}}` - -- Estrae file da un binario, specificando la cartella di output: - -`binwalk --extract --directory {{cartella_di_output}} {{percorso/a/file}}` - -- Estrae file in maniera ricorsiva a partire da un binario, limitando la profondità di ricorsione a 2 livelli: - -`binwalk --extract --matryoshka --depth {{2}} {{percorso/a/file}}` - -- Estrae file da un binario utilizzando una particolare firma (ad esempio il MIME Type): - -`binwalk --dd '{{png image:png}}' {{percorso/a/file}}` - -- Analizza l'entropia di un binario e salva il grafico con lo stesso filename del binario, con l'estensione `.png` in fondo: - -`binwalk --entropy --save {{percorso/a/file}}` - -- Combina analisi di entropia, firme e opcode in un unico comando: - -`binwalk --entropy --signature --opcodes {{percorso/a/file}}` diff --git a/pages.it/linux/bspwm.md b/pages.it/linux/bspwm.md new file mode 100644 index 00000000000000..340d84829ebf40 --- /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 00000000000000..54b34cd75c63bc --- /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 00000000000000..fb53a53a48af0e --- /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/chcon.md b/pages.it/linux/chcon.md new file mode 100644 index 00000000000000..2c23095ce37456 --- /dev/null +++ b/pages.it/linux/chcon.md @@ -0,0 +1,32 @@ +# chcon + +> Cambia contesto di sicurezza SELinux di file o directory. +> Maggiori informazioni: . + +- Mostra il contesto di sicurezza di un file: + +`ls -lZ {{percorso/del/file}}` + +- Cambia il contesto di sicurezza di un file usandone un'altro come riferimento: + +`chcon --reference={{file_di_riferimento}} {{file}}` + +- Cambia l'intero contesto di sicurezza SELinux di un file: + +`chcon {{utente}}:{{ruolo}}:{{tipo}}:{{range/livello}} {{file}}` + +- Cambia solo l'utente di un contesto di sicurezza SELinux: + +`chcon -u {{utente}} {{file}}` + +- Cambia solo il ruolo di un contesto di sicurezza SELinux: + +`chcon -r {{ruolo}} {{file}}` + +- Cambia solo il tipo di un contesto di sicurezza SELinux: + +`chcon -t {{tipo}} {{file}}` + +- Cambia solo il range/livello di un contesto di sicurezza SELinux: + +`chcon -l {{range/livello}} {{file}}` diff --git a/pages.it/linux/cp.md b/pages.it/linux/cp.md index 3c9dcad9cd0e5e..5f9f5d7805ec47 100644 --- a/pages.it/linux/cp.md +++ b/pages.it/linux/cp.md @@ -1,22 +1,23 @@ # cp -> Copia file e cartelle. +> Copia file e directory. +> Maggiori informazioni: . - Copia un file in un'altra posizione: -`cp {{persorso/al/file_da_copiare.est}} {{percorso/al/file_di_destinazione.est}}` +`cp {{percorso/del/file_da_copiare.est}} {{percorso/del/file_di_destinazione.est}}` -- Copia un file all'interno di una cartella, mantenendone uguale il nome: +- Copia un file all'interno di una directory, mantenendone uguale il nome: -`cp {{percorso/al/file_da_copiare.est}} {{percorso/alla/cartella}}` +`cp {{percorso/del/file_da_copiare.est}} {{percorso/della/directory}}` -- Copia ricorsivamente i contenuti di una cartella in un'altra posizione (se la destinazione esiste, la cartella è copiata al suo interno): +- Copia ricorsivamente i contenuti di una directory in un'altra posizione (se la destinazione esiste, la directory è copiata al suo interno): -`cp -r {{percorso/alla/cartella_da_copiare}} {{percorso/di/destinazione}}` +`cp -r {{percorso/della/directory_da_copiare}} {{percorso/di/destinazione}}` -- Copia una cartella ricorsivamente in modalità prolissa (mostra i file mentre vengono copiati): +- Copia una directory ricorsivamente in modalità prolissa (mostra i file mentre vengono copiati): -`cp -vr {{percorso/alla/cartella_da_copiare}} {{percorso/di/destinazione}}` +`cp -vr {{percorso/della/directory_da_copiare}} {{percorso/di/destinazione}}` - Copia i file di testo in un'altra posizione, in modalità interattiva (richiede conferma all'utente prima di sovrascrivere): @@ -26,6 +27,6 @@ `cp -L {{collegamento}} {{percorso/di/destinazione}}` -- Utilizza il percorso completo dei file originali, creando ogni cartella intermedia mancante mentre durante la copia: +- Utilizza il percorso completo dei file originali, creando ogni directory intermedia mancante mentre durante la copia: -`cp --parents {{percorso/dei/file/da/copiare}} {{percorso/al/file/destinazione}}` +`cp --parents {{percorso/dei/file/da/copiare}} {{percorso/del/file/destinazione}}` diff --git a/pages.it/linux/dpkg-deb.md b/pages.it/linux/dpkg-deb.md index 7fc45669da48ea..c33264ac987202 100644 --- a/pages.it/linux/dpkg-deb.md +++ b/pages.it/linux/dpkg-deb.md @@ -1,24 +1,24 @@ # dpkg-deb > Impacchetta, spacchetta e fornisce informazioni su archivi Debian. -> Maggiori informazioni: . +> Maggiori informazioni: . - Mostra le informazioni riguardo ad un pacchetto: -`dpkg-deb --info {{percorso/al/file.deb}}` +`dpkg-deb --info {{percorso/del/file.deb}}` - Mostra il nome e la versione del pacchetto in una singola riga: -`dpkg-deb --show {{percorso/al/file.deb}}` +`dpkg-deb --show {{percorso/del/file.deb}}` - Elenca i contenuti del pacchetto: -`dpkg-deb --contents {{percorso/al/file.deb}}` +`dpkg-deb --contents {{percorso/del/file.deb}}` -- Estrae i contenuti del pacchetto in una cartella: +- Estrae i contenuti del pacchetto in una directory: -`dpkg-deb --extract {{percorso/al/file.deb}} {{percorso/alla/cartella}}` +`dpkg-deb --extract {{percorso/del/file.deb}} {{percorso/della/directory}}` -- Crea una pacchetto a partire da una cartella specificata: +- Crea una pacchetto a partire da una directory specificata: -`dpkg-deb --build {{percorso/alla/cartella}}` +`dpkg-deb --build {{percorso/della/directory}}` diff --git a/pages.it/linux/dpkg-query.md b/pages.it/linux/dpkg-query.md index 59f90fc1ebd567..342183c37a3ca6 100644 --- a/pages.it/linux/dpkg-query.md +++ b/pages.it/linux/dpkg-query.md @@ -1,6 +1,7 @@ # dpkg-query > Uno strumento che mostra informazioni sui pacchetti installati. +> Maggiori informazioni: . - Elenca tutti i pacchetti installati: diff --git a/pages.it/linux/dpkg.md b/pages.it/linux/dpkg.md index 2acdaadbe94e8d..c4a94a2b57eeba 100644 --- a/pages.it/linux/dpkg.md +++ b/pages.it/linux/dpkg.md @@ -1,11 +1,12 @@ # dpkg > Gestore di pacchetti Debian. -> Maggiori informazioni: . +> Alcuni comandi aggiuntivi, come `dpkg deb`, hanno la propria documentazione. +> Maggiori informazioni: . - Installa un pacchetto: -`dpkg -i {{percorso/al/file.deb}}` +`dpkg -i {{percorso/del/file.deb}}` - Rimuove un pacchetto: @@ -21,7 +22,7 @@ - Elenca i contenuti di un file pacchetto locale: -`dpkg -c {{percorso/al/file.deb}}` +`dpkg -c {{percorso/del/file.deb}}` - Trova a quale pacchetto appartiene un file: diff --git a/pages.it/linux/enum4linux.md b/pages.it/linux/enum4linux.md new file mode 100644 index 00000000000000..be08893148c0ec --- /dev/null +++ b/pages.it/linux/enum4linux.md @@ -0,0 +1,24 @@ +# enum4linux + +> Strumento per ottenere informazioni da Windows e Samba da un sistema remoto. +> Maggiori informazioni: . + +- Ottieni informazioni utilizzando tutti i metodi disponibili: + +`enum4linux -a {{host_remoto}}` + +- Ottieni informazioni utilizzando le credenziali fornite: + +`enum4linux -u {{nome_utente}} -p {{password}} {{host_remoto}}` + +- Ottieni la lista utenti: + +`enum4linux -U {{host_remoto}}` + +- Mostra le risorse condivise: + +`enum4linux -S {{host_remoto}}` + +- Ottieni informazioni riguardo al sistema operativo: + +`enum4linux -o {{host_remoto}}` diff --git a/pages.it/linux/fsck.md b/pages.it/linux/fsck.md index 394e8c1616187b..e5714a51c507ff 100644 --- a/pages.it/linux/fsck.md +++ b/pages.it/linux/fsck.md @@ -1,6 +1,7 @@ # fsck > Controlla l'integrità di un filesystem o lo ripara. Il filesystem non dev'essere montato al momento in cui il comando viene eseguito. +> Maggiori informazioni: . - Controlla il filesystem `/dev/sdX`, riportando eventuali blocchi danneggiati: diff --git a/pages.it/linux/halt.md b/pages.it/linux/halt.md index 09c89674170eed..6a57abedb89fcb 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/hello.md b/pages.it/linux/hello.md new file mode 100644 index 00000000000000..35cb032b528175 --- /dev/null +++ b/pages.it/linux/hello.md @@ -0,0 +1,16 @@ +# hello + +> Stampa a schermo "Hello, world!", "hello, world" oppure del testo personalizzabile. +> Maggiori informazioni: . + +- Stampa a schermo "Hello, world!": + +`hello` + +- Stampa a schermo "hello, world", nel modo tradizionale: + +`hello --traditional` + +- Stampa a schermo un messaggio: + +`hello --greeting="{{messaggio}}"` diff --git a/pages.it/linux/i3.md b/pages.it/linux/i3.md new file mode 100644 index 00000000000000..7cdd767f8feb08 --- /dev/null +++ b/pages.it/linux/i3.md @@ -0,0 +1,33 @@ +# i3 + +> Window Manager Dinamico. +> Tasto Windows=Super=Mod4, Alt=Mod1. +> Maggiori informazioni: . + +- Avvia i3 (non può essere eseguito contemporaneamente con un altro gestore di finestre): + +`i3` + +- Apri un terminale: + +`Super + Invio` + +- Crea un nuovo workspace: + +`Super + Shift + {{numero}}` + +- Salta a workspace {{numero}}: + +`Super + {{numero}}` + +- Per il prossimo nuovo, dividi orizzontalmente: + +`Super + h` + +- Per il prossimo nuovo, dividi verticalmente: + +`Super + v` + +- Avvia dmenu, lanciatore di programmi: + +`Super + D` diff --git a/pages.it/linux/ip-route-list.md b/pages.it/linux/ip-route-list.md new file mode 100644 index 00000000000000..9dce3a6efe07e3 --- /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/iptables.md b/pages.it/linux/iptables.md new file mode 100644 index 00000000000000..b19bd541b9abed --- /dev/null +++ b/pages.it/linux/iptables.md @@ -0,0 +1,32 @@ +# iptables + +> Programma che permette di configurare tabelle, catene e regole fornite dal firewall del kernel Linux. +> Maggiori informazioni: . + +- Visualizza catene, regole e contatori di pacchetti/byte per la tabella dei filtri: + +`sudo iptables -vnL` + +- Imposta regola ad una catena: + +`sudo iptables -P {{catena}} {{regola}}` + +- Appendi regola ad una catena di policy per IP: + +`sudo iptables -A {{catena}} -s {{ip}} -j {{regola}}` + +- Appendi regola ad una catena di policy per IP considerando protocollo e porta: + +`sudo iptables -A {{catena}} -s {{ip}} -p {{protocollo}} --dport {{porta}} -j {{regola}}` + +- Cancella regola da una catena: + +`sudo iptables -D {{catena}} {{numero_di_linea_della_regola}}` + +- Salva la configurazione di ip tables di una specifica tabella in un file: + +`sudo iptables-save -t {{nome tabella}} > {{percorso/del/file_iptables}}` + +- Ripristina la configurazione di iptables da un file: + +`sudo iptables-restore < {{percorso/del/file_iptables}}` diff --git a/pages.it/linux/lsmod.md b/pages.it/linux/lsmod.md index e1efa81d1a790d..d28a1de0f132ef 100644 --- a/pages.it/linux/lsmod.md +++ b/pages.it/linux/lsmod.md @@ -2,6 +2,7 @@ > Mostra lo stato dei moduli del kernel Linux. > Vedi anche `modprobe`, che carica i moduli del kernel. +> Maggiori informazioni: . - Elenca tutti i moduli del kernel attualmente caricati: diff --git a/pages.it/linux/lsusb.md b/pages.it/linux/lsusb.md index c73dd1a41bd2df..1395e24593573b 100644 --- a/pages.it/linux/lsusb.md +++ b/pages.it/linux/lsusb.md @@ -1,6 +1,7 @@ # lsusb > Visualizza le informazioni su i bus USB e i dispositivi a loro connessi. +> Maggiori informazioni: . - Elenca tutti i dispositivi USB disponibili: diff --git a/pages.it/linux/megadl.md b/pages.it/linux/megadl.md new file mode 100644 index 00000000000000..8f9542bce63561 --- /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/mkfs.md b/pages.it/linux/mkfs.md index 9f447d753ceb27..35017e4e05f861 100644 --- a/pages.it/linux/mkfs.md +++ b/pages.it/linux/mkfs.md @@ -1,16 +1,17 @@ # mkfs > Costruisce un filesystem Linux su una partizione del disco rigido. -> Questo comando è deprecato in favore degli strumenti specifici per filesystem: mkfs.. +> Questo comando è deprecato in favore degli strumenti specifici per filesystem: mkfs.tipo. +> Maggiori informazioni: . - Costruisce un filesystem Linux ext2 su una partizione: -`mkfs {{percorso/alla/partizione}}` +`mkfs {{percorso/della/partizione}}` - Costruisce un filesystem del tipo specificato: -`mkfs -t {{ext4}} {{percorso/alla/partizione}}` +`mkfs -t {{ext4}} {{percorso/della/partizione}}` - Costruisce un filesystem del specificato e controlla la presenza di settori danneggiati: -`mkfs -c -t {{ntfs}} {{percorso/alla/partizione}}` +`mkfs -c -t {{ntfs}} {{percorso/della/partizione}}` diff --git a/pages.it/linux/modinfo.md b/pages.it/linux/modinfo.md index 6cf3915b040779..a7581888acc5e1 100644 --- a/pages.it/linux/modinfo.md +++ b/pages.it/linux/modinfo.md @@ -1,6 +1,7 @@ # modinfo > Estrae le informazioni riguardarti un modulo del kernel Linux. +> Maggiori informazioni: . - Elenca tutti gli attributi di un modulo del kernel: diff --git a/pages.it/linux/modprobe.md b/pages.it/linux/modprobe.md index 0522be99db1f14..80c77f46d5db04 100644 --- a/pages.it/linux/modprobe.md +++ b/pages.it/linux/modprobe.md @@ -1,6 +1,7 @@ # modprobe > Aggiunge o rimuove moduli del kernel Linux. +> Maggiori informazioni: . - Fa finta di carica un modulo nel kernel, ma non lo fa veramente: diff --git a/pages.it/linux/mpicc.md b/pages.it/linux/mpicc.md new file mode 100644 index 00000000000000..3d33ca287bf2ee --- /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/ncal.md b/pages.it/linux/ncal.md new file mode 100644 index 00000000000000..ee8a88c190fd6f --- /dev/null +++ b/pages.it/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Questo comando è un alias per `cal`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr cal` diff --git a/pages.it/linux/nmtui.md b/pages.it/linux/nmtui.md new file mode 100644 index 00000000000000..df25db5c3399e7 --- /dev/null +++ b/pages.it/linux/nmtui.md @@ -0,0 +1,25 @@ +# nmtui + +> Interfaccia utente solo testo per NetworkManager. +> Usa le frecce e invio per navigare. +> Maggiori informazioni: . + +- Apri interfaccia utente: + +`nmtui` + +- Mostra le reti disponibili, con opzioni per attivare o disattivare: + +`nmtui connect` + +- Per la connessione a una rete: + +`nmtui connect {{nome|uuid|device|SSID}}` + +- Cambia/Agiunge/Elimina una rete: + +`nmtui edit {{nome|id}}` + +- Imposta un hostname nuovo: + +`nmtui hostname` diff --git a/pages.it/linux/pidof.md b/pages.it/linux/pidof.md index 04633ff84b913c..af871ab6f753dd 100644 --- a/pages.it/linux/pidof.md +++ b/pages.it/linux/pidof.md @@ -1,6 +1,7 @@ # pidof > Ottiene l'ID di un processo a partire dal suo nome. +> Maggiori informazioni: . - Elenca gli ID di tutti i processi con un dato nome: @@ -16,4 +17,4 @@ - Uccide tutti i processi con un dato nome: -`kill "$(pidof {{nome}})" ` +`kill $(pidof {{nome}})` diff --git a/pages.it/linux/poweroff.md b/pages.it/linux/poweroff.md index ccb8b782f4d4eb..096cd09c59dfd3 100644 --- a/pages.it/linux/poweroff.md +++ b/pages.it/linux/poweroff.md @@ -1,6 +1,7 @@ # poweroff > Chiude il sistema. +> Maggiori informazioni: . - Spegne il sistema: diff --git a/pages.it/linux/pulseaudio.md b/pages.it/linux/pulseaudio.md new file mode 100644 index 00000000000000..d1e090f483a718 --- /dev/null +++ b/pages.it/linux/pulseaudio.md @@ -0,0 +1,24 @@ +# pulseaudio + +> Programma che permette di gestire il daemon audio di sistema. +> Maggiori informazioni: . + +- Controlla se PulseAudio è in esecuzione. Se il programma non è attivo viene restituito un exit code diverso da 0: + +`pulseaudio --check` + +- Esegue il daemon di PulseAudio in background: + +`pulseaudio --start` + +- Interrompe l'esecuzione del daemon di PulseAudio: + +`pulseaudio --kill` + +- Mostra i moduli disponibili: + +`pulseaudio --dump-modules` + +- Carica un modulo all'interno del daemon in esecuzione con gli argomenti specificati: + +`pulseaudio --load="{{nome_modulo}} {{argomenti}}"` diff --git a/pages.it/linux/radeontop.md b/pages.it/linux/radeontop.md new file mode 100644 index 00000000000000..0eca2a4116a6aa --- /dev/null +++ b/pages.it/linux/radeontop.md @@ -0,0 +1,20 @@ +# radeontop + +> Mostra Utilizzo di AMD GPUs. +> Maggiori informazioni: . + +- Mostra utilizzo del AMD GPU principale: + +`sudo radeontop` + +- Inizia output con colore: + +`sudo radeontop --colour` + +- Scegli un GPU specifico (il numero del bus è il primo numero nell'output di `lspci`): + +`sudo radeontop --bus {{bus_numero}}` + +- Specifica la frequenza di aggiornamento del display (più alto aggiunge più sovraccarico al GPU): + +`sudo radeontop --ticks {{aggiornamenti_per_secondo}}` diff --git a/pages.it/linux/shutdown.md b/pages.it/linux/shutdown.md new file mode 100644 index 00000000000000..0a32c16ee502c3 --- /dev/null +++ b/pages.it/linux/shutdown.md @@ -0,0 +1,24 @@ +# shutdown + +> Spegni e riavvia il sistema. +> Maggiori informazioni: . + +- Spegni il sistema immediatamente: + +`shutdown -h now` + +- Riavvia il sistema immediatamente: + +`shutdown -r now` + +- Riavvia il sistema in 5 minuti: + +`shutdown -r +{{5}} &` + +- Spegni il sistema alle 13: + +`shutdown -h 13:00` + +- Annulla un'operazione programmata di riavvio o spegnimento: + +`shutdown -c` diff --git a/pages.it/linux/tree.md b/pages.it/linux/tree.md deleted file mode 100644 index e7de98484e56e0..00000000000000 --- a/pages.it/linux/tree.md +++ /dev/null @@ -1,36 +0,0 @@ -# tree - -> Mostra i contenuti della cartella corrente come un albero. -> Maggiori informazioni: . - -- Stampa file e cartella fino al 'num'-esimo livello di profondità (dove 1 significa la cartella corrente): - -`tree -L {{num}}` - -- Stampa solamente le cartelle: - -`tree -d` - -- Stampa anche i file nascosti con la colorazione attiva: - -`tree -a -C` - -- Stampa l'albero senza linee di indentazione, mostrando invece il percorso completo (usa `-N` per non convertire caratteri non stampabili in sequenze di escape): - -`tree -i -f` - -- Stampa la dimensione di ogni file e la dimensione totale di ogni cartella, in formato leggibile dall'utente: - -`tree -s -h --du` - -- Stampa i file all'interno dell'albero gerarchico, utilizzando espressioni di metacaratteri (glob pattern) per escludere le cartelle che non contengono file corrispondenti alla ricerca: - -`tree -P '{{*.txt}}' --prune` - -- Stampa le cartelle all'interno dell'albero gerarchico, utilizzando espressioni di metacaratteri (glob pattern) per escludere le cartelle che non sono progenitori di quelle desiderate: - -`tree -P {{nomi_di_cartelle}} --matchdirs --prune` - -- Stampa l'albero ignorando le cartelle date: - -`tree -I '{{nome_cartella1|nome_cartella2}}'` diff --git a/pages.it/linux/ubuntu-bug.md b/pages.it/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..c8bfcab09208aa --- /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 new file mode 100644 index 00000000000000..0e812b09f8ad5e --- /dev/null +++ b/pages.it/linux/ufw.md @@ -0,0 +1,37 @@ +# ufw + +> ufw (Uncomplicated Firewall) - Firewall Semplice. +> Frontend per iptables per semplificare la configurazione di un firewall. +> Maggiori informazioni: . + +- Accendi ufw: + +`ufw enable` + +- Spegni ufw: + +`ufw disable` + +- Mostra le regole di ufw, con i numeri corrispondenti: + +`ufw status numbered` + +- Aperto al traffico in entrata sulla porta 5432, con un commento che identifica il servizio: + +`ufw allow {{5432}} comment "{{servizio}}"` + +- Aperto solo al traffico TCP da 192.168.0.4 a qualsiasi indirizzo su questo host, sulla porta 22: + +`ufw allow proto {{tcp}} from {{192.168.0.4}} to {{any}} port {{22}}` + +- Blocchi traffico su porta 80 su questo host: + +`ufw deny {{80}}` + +- Nega tutto il traffico UDP alla porta 22: + +`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}` + +- Elimina una regola particolare. Il numero della regola può essere trovato con "ufw status numbered": + +`ufw delete {{numero_della_regola}}` diff --git a/pages.it/linux/zathura.md b/pages.it/linux/zathura.md new file mode 100644 index 00000000000000..85bd34912f2625 --- /dev/null +++ b/pages.it/linux/zathura.md @@ -0,0 +1,33 @@ +# zathura + +> Un visualizzatore di documenti ispirato a vim, con una linea di comando integrata. +> Assicurati che sia installata un backend (poppler, PostScript, o DjVu). +> Maggiori informazioni: . + +- Aprire un file: + +`zathura {{percorso/del/file}}` + +- Navigare sinistra/sopra/sotto/destra: + +` or arrow keys` + +- Ruotare: + +`r` + +- Invertire i colori: + +`Ctrl + R` + +- Ricercare all'interno del testo una stringa: + +`/{{string}}` + +- Creare/eliminare i segnalibri: + +`:{{bmark|bdelete}} {{bookmark_name}}` + +- Lista dei segnalibri: + +`:blist` diff --git a/pages.it/linux/zypper.md b/pages.it/linux/zypper.md new file mode 100644 index 00000000000000..5c18b98d9746c5 --- /dev/null +++ b/pages.it/linux/zypper.md @@ -0,0 +1,24 @@ +# zypper + +> Sistema di Gestione dei Pacchetti di SUSE e openSUSE. +> Maggiori informazioni: . + +- Sincronizza il database dei pacchetti e delle versioni disponibili: + +`zypper refresh` + +- Installa un nuovo pacchetto: + +`zypper install {{pacchetto}}` + +- Rimuovi un pacchetto: + +`zypper remove {{pacchetto}}` + +- Aggiorna i pacchetti installati alle ultime versioni disponibili: + +`zypper update` + +- Cerca usando nome o parola chiave: + +`zypper search {{nome|parole_chiave}}` diff --git a/pages.it/osx/aa.md b/pages.it/osx/aa.md new file mode 100644 index 00000000000000..2c3c91d19a6897 --- /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/afinfo.md b/pages.it/osx/afinfo.md index ff9e42d7c68592..e6fec6c04e0082 100644 --- a/pages.it/osx/afinfo.md +++ b/pages.it/osx/afinfo.md @@ -2,6 +2,7 @@ > Analizzatore dei metadata dei file audio per macOS. > Comando integrato di macOS. +> Maggiori informazioni: . - Mostra le informazioni relative ad un file audio specificato: diff --git a/pages.it/osx/afplay.md b/pages.it/osx/afplay.md index 41a57fce192410..15e450dab897de 100644 --- a/pages.it/osx/afplay.md +++ b/pages.it/osx/afplay.md @@ -1,6 +1,7 @@ # afplay > Riproduttore audio a riga di comando. +> Maggiori informazioni: . - Riproduci un file audio (fino a quando non finisce la riproduzione): diff --git a/pages.it/osx/airport.md b/pages.it/osx/airport.md index 379f729be4758c..90d8929cf646b1 100644 --- a/pages.it/osx/airport.md +++ b/pages.it/osx/airport.md @@ -1,6 +1,7 @@ # airport > Strumento di configurazione delle reti senza fili. +> Maggiori informazioni: . - Mostra le informazioni relative allo stato attuale delle connessioni senza fili: diff --git a/pages.it/osx/apachectl.md b/pages.it/osx/apachectl.md index 4c9db6dd6ddc41..bfbc7444d8ab2c 100644 --- a/pages.it/osx/apachectl.md +++ b/pages.it/osx/apachectl.md @@ -1,6 +1,7 @@ # apachectl > Interfaccia di controllo del server HTTP Apache per macOS. +> Maggiori informazioni: . - Avvia il demone `org.apache.httpd`: diff --git a/pages.it/osx/archey.md b/pages.it/osx/archey.md index 11ae2e63099aa3..4e7ba34176ee8c 100644 --- a/pages.it/osx/archey.md +++ b/pages.it/osx/archey.md @@ -1,6 +1,7 @@ # archey > Semplice strumento per mostrare con stile le informazioni di sistema. +> Maggiori informazioni: . - Mostra le informazioni di sistema: diff --git a/pages.it/osx/as.md b/pages.it/osx/as.md index fe5b3a66715214..f187cb057fe738 100644 --- a/pages.it/osx/as.md +++ b/pages.it/osx/as.md @@ -2,6 +2,7 @@ > Assembler GNU portabile. > Progettato principalmente per assemblare l'output di `gcc` ed utilizzarlo con `ld`. +> Maggiori informazioni: . - Assembla un file, scrivendo l'output su a.out: @@ -15,6 +16,6 @@ `as -f {{file.s}}` -- Includi un percorso dato alla lista delle cartelle in cui cercare i file specificati nelle direttive `.include`: +- Includi un percorso dato alla lista delle directory in cui cercare i file specificati nelle direttive `.include`: -`as -I {{path/to/directory}} {{file.s}}` +`as -I {{percorso/della/directory}} {{file.s}}` diff --git a/pages.it/osx/asr.md b/pages.it/osx/asr.md index ba88367e82554f..0ca2a93d7ddfc5 100644 --- a/pages.it/osx/asr.md +++ b/pages.it/osx/asr.md @@ -2,6 +2,7 @@ > Ripristina (copia) un'immagine disco dentro a un volume. > Il nome del comando sta per Apple Software Restore (software di ripristino Apple). +> Maggiori informazioni: . - Ripristina un'immagine disco su un volume specifico: diff --git a/pages.it/osx/base64.md b/pages.it/osx/base64.md index ad7827df7f84d1..968e34004f6bd1 100644 --- a/pages.it/osx/base64.md +++ b/pages.it/osx/base64.md @@ -1,6 +1,7 @@ # base64 > Codifica e decodifica utilizzando la rappresentazione in base64. +> Maggiori informazioni: . - Codifica un file: diff --git a/pages.it/osx/caffeinate.md b/pages.it/osx/caffeinate.md index b1a7a60b67405f..4eef3782c7bf06 100644 --- a/pages.it/osx/caffeinate.md +++ b/pages.it/osx/caffeinate.md @@ -1,6 +1,7 @@ # caffeinate > Impedisci al mac di sospendersi. +> Maggiori informazioni: . - Impedisci la sospensione per un'ora (3600 secondi): diff --git a/pages.it/osx/diskutil.md b/pages.it/osx/diskutil.md index 72dd9dcfd04cab..ba2cd8d443a477 100644 --- a/pages.it/osx/diskutil.md +++ b/pages.it/osx/diskutil.md @@ -1,6 +1,7 @@ # diskutil > Strumento per gestire i dischi locali e i volumi. +> Maggiori informazioni: . - Mostra tutti i dischi correnti, le partizioni e i volumi montati: diff --git a/pages.it/osx/g[.md b/pages.it/osx/g[.md new file mode 100644 index 00000000000000..2f8e076eb78f3c --- /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 00000000000000..ba5d5ed5da6a81 --- /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 00000000000000..f69372ec8d1336 --- /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 00000000000000..b092bc264d2250 --- /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 00000000000000..22d6b10003ea22 --- /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 00000000000000..9c7629080e77c0 --- /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 00000000000000..1b8f2211ad4e5b --- /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 00000000000000..904c36045824eb --- /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 00000000000000..026a38b55a2d89 --- /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 00000000000000..f8888b21197496 --- /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 00000000000000..9a5a52e05794bf --- /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 00000000000000..a3fccd20c165e5 --- /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 00000000000000..20adaf48f3e701 --- /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 00000000000000..92f603ed8b6f02 --- /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 00000000000000..0b9d4e5d0c81b1 --- /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 00000000000000..52802ad066491e --- /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 00000000000000..cd2078e1607e15 --- /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 00000000000000..a8d87ac699b293 --- /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 00000000000000..d2b89f180b5223 --- /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 00000000000000..49c7ac1ffb2365 --- /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 00000000000000..a4e24ffe586169 --- /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 00000000000000..11176b4df5a81a --- /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 00000000000000..a07c9fdc2c28e8 --- /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 00000000000000..30af222a341b44 --- /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 00000000000000..9b8eabad0f0c58 --- /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 00000000000000..4cddd7b78145bc --- /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 00000000000000..58ca412e40058d --- /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 00000000000000..3b14f73d53c706 --- /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 00000000000000..a3d35211acd8ff --- /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 00000000000000..94928c0ab24497 --- /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 00000000000000..884e75471e10c2 --- /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 00000000000000..bf3179c103ae1f --- /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 00000000000000..4c2da5a5934786 --- /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 00000000000000..32ae221d406b07 --- /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 00000000000000..9b11c7cd472470 --- /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 00000000000000..d8b679f569a655 --- /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 00000000000000..c6d2b9193729db --- /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 00000000000000..af31392870bb94 --- /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 00000000000000..b418b148660aaf --- /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 00000000000000..abb31b6f6abb54 --- /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 00000000000000..884d734dfea7dc --- /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 00000000000000..21a0e56dbd917b --- /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 00000000000000..cb400bbbf0959b --- /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 00000000000000..b48a93cd74373e --- /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 00000000000000..a309bf8f699324 --- /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 00000000000000..e405a4774cb895 --- /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 00000000000000..55bc65a61e5ea8 --- /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 00000000000000..68a1320fa5563c --- /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 00000000000000..01d39e6484bef6 --- /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 00000000000000..ff85223299b53b --- /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 00000000000000..ffefaeb3c0895c --- /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 00000000000000..e75d2217522063 --- /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 00000000000000..b95f472136d74d --- /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 00000000000000..f89dea0af15dd5 --- /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 00000000000000..bd92e5bcc6fa3b --- /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 00000000000000..ce668902adf8c0 --- /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 00000000000000..0dcec228b7950a --- /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 00000000000000..d87758707a182c --- /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 00000000000000..a2665125d5c443 --- /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 00000000000000..00a584acd0990f --- /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 00000000000000..aec87e46166070 --- /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 00000000000000..73e8cacf8cc10f --- /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 00000000000000..6c24a7979f0699 --- /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 00000000000000..23b7f486a1ebd9 --- /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 00000000000000..b5da53bb64f1fb --- /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 00000000000000..064688789561a8 --- /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 00000000000000..fdcce998ce0a01 --- /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 00000000000000..ccbd6b6a586fed --- /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 00000000000000..e0af244f8db268 --- /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 00000000000000..463c9e950e162a --- /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 00000000000000..de9ec97dddfd22 --- /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 00000000000000..5c9c923bc06ce5 --- /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 00000000000000..7ad0971a2f2327 --- /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 00000000000000..e62aacc7a31f8d --- /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 00000000000000..d855addab30506 --- /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 00000000000000..90d2f6df727eb3 --- /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 00000000000000..5f5d9db0597ddd --- /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 00000000000000..bb777f1af26320 --- /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 00000000000000..f3de13c0fa862f --- /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 00000000000000..fd2f2df3a0ac24 --- /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 00000000000000..912b3ba47dda72 --- /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 00000000000000..5ac40b057e6ad2 --- /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 00000000000000..813d057968290f --- /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 00000000000000..d691adb242465a --- /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 00000000000000..5d9923f601245c --- /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 00000000000000..3f75514d8e4596 --- /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 00000000000000..aedbd0d365d6cd --- /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 00000000000000..a0c271df48d549 --- /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 00000000000000..2ccbfeb85c3760 --- /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 00000000000000..9a6eff616338e5 --- /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 00000000000000..15837f60b47f6c --- /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 00000000000000..8dc4d519ab34f0 --- /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 00000000000000..dc0fdb7ad02f3d --- /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 00000000000000..a12fd57f106dc0 --- /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 00000000000000..62fdb668ba8e80 --- /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 00000000000000..f5579c6f46d215 --- /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 00000000000000..5ad91234c3eb1c --- /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 00000000000000..8df2dd8d170573 --- /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 00000000000000..c24eda9ad8f1bd --- /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 00000000000000..e2169592dd7705 --- /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 00000000000000..8a369ce83ebcc1 --- /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 00000000000000..f89d083415d8bd --- /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 00000000000000..491dc0a33857d0 --- /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 00000000000000..adbe87674f8f6f --- /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 00000000000000..b740f94397fdb2 --- /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 00000000000000..10d0702ac59b8b --- /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 00000000000000..82835288b64eee --- /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 00000000000000..049dce8d2d5e74 --- /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 00000000000000..c88d2ab41250e9 --- /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 00000000000000..14ed210b10d7ae --- /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 00000000000000..92110397ede006 --- /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 00000000000000..36cf79bb78b7c0 --- /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 00000000000000..963523f4ccf4f4 --- /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 00000000000000..b12727c22bbaf2 --- /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 00000000000000..776d2a2d8b5f87 --- /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 00000000000000..5945b0b8de49b4 --- /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 00000000000000..78beac038b876c --- /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 00000000000000..4f5a34214da350 --- /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 00000000000000..9fcc934e98c190 --- /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 00000000000000..e4a9c6d6b00db9 --- /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 00000000000000..5b9f7e0a71992c --- /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 00000000000000..1cbec8cfcbf14a --- /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 00000000000000..e4cb9e1e440ed6 --- /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 00000000000000..901974fe2a2282 --- /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 00000000000000..272a207c848ecc --- /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 00000000000000..35c8e50b8c83a9 --- /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 00000000000000..08db0af8342b4d --- /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 00000000000000..07cddcb806c208 --- /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 00000000000000..1622794283a825 --- /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 00000000000000..c0e71b0c7ffa86 --- /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 00000000000000..ae1153f480c648 --- /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 00000000000000..e1d7ab84545a8a --- /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 00000000000000..dcd3c1890e9ec6 --- /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 00000000000000..1b929e7d7297e2 --- /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 00000000000000..0d2c197f29f166 --- /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 00000000000000..dbfcbf0b559ded --- /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 00000000000000..488e168f9d45bf --- /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 00000000000000..62359bb54a5294 --- /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 00000000000000..8be7f132604bdb --- /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 00000000000000..fc2aa25f7d422d --- /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/windows/attrib.md b/pages.it/windows/attrib.md new file mode 100644 index 00000000000000..52a0ec464f5e63 --- /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 new file mode 100644 index 00000000000000..18f52ab6aeb585 --- /dev/null +++ b/pages.it/windows/cd.md @@ -0,0 +1,20 @@ +# cd + +> Mostra informazioni riguardo alla directory corrente e permette di muoversi in un altra directory. +> Maggiori informazioni: . + +- Mostra il percorso (path) della directory corrente: + +`cd` + +- Spostati nella directory superiore: + +`cd ..` + +- Spostati ad una specifica directory sullo stesso disco: + +`cd {{percorso\della\directory}}` + +- Spostati ad una specifica directory in un altro disco: + +`cd /d {{C}}:{{percorso\della\directory}}` diff --git a/pages.it/windows/chkdsk.md b/pages.it/windows/chkdsk.md new file mode 100644 index 00000000000000..12dd78541506f8 --- /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 00000000000000..97803caf9c5f3f --- /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.md b/pages.it/windows/choco.md new file mode 100644 index 00000000000000..27137f90ba9734 --- /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 00000000000000..329dd9cfcf8d99 --- /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/cinst.md b/pages.it/windows/cinst.md new file mode 100644 index 00000000000000..0e464e300f6f8b --- /dev/null +++ b/pages.it/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Questo comando è un alias per `choco install`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr choco install` diff --git a/pages.it/windows/clist.md b/pages.it/windows/clist.md new file mode 100644 index 00000000000000..9407a251c8f4c6 --- /dev/null +++ b/pages.it/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Questo comando è un alias per `choco list`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr choco list` diff --git a/pages.it/windows/cls.md b/pages.it/windows/cls.md new file mode 100644 index 00000000000000..77c2dc9c17931f --- /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/cmd.md b/pages.it/windows/cmd.md index 93d602491739ae..87f29065d1b9aa 100644 --- a/pages.it/windows/cmd.md +++ b/pages.it/windows/cmd.md @@ -1,7 +1,7 @@ # cmd > L'interprete dei comandi di Windows. -> Maggiori informazioni: . +> Maggiori informazioni: . - Lancia una nuova istanza dell'interprete dei comandi: @@ -23,7 +23,7 @@ `cmd /e:{{on|off}}` -- Abilita o disabilita l'autocompletamento dei nomi di file e cartelle: +- Abilita o disabilita l'autocompletamento dei nomi di file e directory: `cmd /f:{{on|off}}` @@ -31,6 +31,6 @@ `cmd /v:{{on|off}}` -- Forza l'encoding delle stringhe in unicode per l'output: +- Forza l'encoding delle stringhe in Unicode per l'output: `cmd /u` diff --git a/pages.it/windows/color.md b/pages.it/windows/color.md new file mode 100644 index 00000000000000..542a4141555f64 --- /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 00000000000000..bbef0d47bc979b --- /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/cuninst.md b/pages.it/windows/cuninst.md new file mode 100644 index 00000000000000..b202ca03931e0b --- /dev/null +++ b/pages.it/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Questo comando è un alias per `choco uninstall`. +> Maggiori informazioni: . + +- Consulta la documentazione del comando originale: + +`tldr choco uninstall` diff --git a/pages.it/windows/curl.md b/pages.it/windows/curl.md new file mode 100644 index 00000000000000..7dcd25a7d0e653 --- /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/del.md b/pages.it/windows/del.md new file mode 100644 index 00000000000000..168811ce910ecd --- /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 00000000000000..54c3777669693c --- /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 00000000000000..1d4ac5342a0a9f --- /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 00000000000000..1895323e4c87e6 --- /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 00000000000000..02f10b1a07eca1 --- /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 00000000000000..62ea4e53bc82c4 --- /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 00000000000000..5b51436e1e7cd9 --- /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 00000000000000..5a92b58ef1a8fc --- /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/pwsh-where.md b/pages.it/windows/pwsh-where.md new file mode 100644 index 00000000000000..edd3171a62ca61 --- /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 00000000000000..4e342c23d75b6e --- /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/sls.md b/pages.it/windows/sls.md new file mode 100644 index 00000000000000..b46530b7c94b4d --- /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/wget.md b/pages.it/windows/wget.md new file mode 100644 index 00000000000000..fc6c17ce068c57 --- /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/whoami.md b/pages.it/windows/whoami.md new file mode 100644 index 00000000000000..ef2a1ab43dfe9a --- /dev/null +++ b/pages.it/windows/whoami.md @@ -0,0 +1,28 @@ +# whoami + +> Mostra informazioni riguardo all'utente utilizzato. +> Maggiori informazioni: . + +- Mostra il nome dell'utente corrente: + +`whoami` + +- Mostra i gruppi di cui l'utente corrente fa parte: + +`whoami /groups` + +- Mostra i privilegi dell'utente corrente: + +`whoami /priv` + +- Mostra l'UPN (User Principal Name) dell'utente corrente: + +`whoami /upn` + +- Mostra l'ID di logon dell'utente corrente: + +`whoami /logonid` + +- Mostra tutte le informazioni riguardo all'utente corrente: + +`whoami /all` diff --git a/pages.it/windows/winget.md b/pages.it/windows/winget.md new file mode 100644 index 00000000000000..f067d2777a5ad2 --- /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 00000000000000..7a5c532f38f625 --- /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 ca156307e52547..edc4e107f30a38 100644 --- a/pages.ja/common/7z.md +++ b/pages.ja/common/7z.md @@ -1,36 +1,36 @@ # 7z -> 7-Zipは高圧縮率のファイルアーカイバ -> 詳しくはこちら: . +> 圧縮率の高いファイルアーカイバです。 +> 詳しくはこちら: -- ファイルまたはディレクトリをアーカイブする: +- ファイルまたはディレクトリを圧縮する: -`7z a {{アーカイブ.7z}} {{道/に/ファイルまたはディレクトリ}}` +`7z a {{アーカイブ.7z}} {{ファイルまたはディレクトリへのパス}}` -- 既存のアーカイブを暗号 (ヘッダーを含む): +- 既存のアーカイブを暗号化する (ファイル名も含め): -`7z a {{暗号する.7z}} -p{{パスワード}} -mhe=on {{アーカイブ.7z}}` +`7z a {{暗号化済み.7z}} -p{{パスワード}} -mhe=on {{アーカイブ.7z}}` -- 元のディレクトリ構造で既存の7zファイルを抽出します: +- 元のディレクトリ構造を保持したまま展開する: `7z x {{アーカイブ.7z}}` -- ユーザー定義の出力パスで既存の7zファイルを抽出します: +- 展開先のディレクトリを指定して展開する: -`7z x {{アーカイブ.7z}} -o{{道/に/出力}}` +`7z x {{アーカイブ.7z}} -o{{出力先のパス}}` -- stdoutの出力で既存のファイルを抽出します: +- stdoutに対してファイルを出力する: `7z x {{アーカイブ.7z}} -so` -- 特定のアーカイブタイプを使用したアーカイブする: +- 特定のアーカイブ形式を使用した圧縮を行う: -`7z a -t{{zip|gzip|bzip2|tar}} {{アーカイブ.7z}} {{道/に/ファイルまたはディレクトリ}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{アーカイブ.7z}} {{ファイルまたはディレクトリへのパス}}` -- 利用可能なアーカイブプをします: +- 利用可能なアーカイブ形式を出力する: `7z i` -- アーカイブの内容を一します: +- アーカイブの内容を表示する: `7z l {{アーカイブ.7z}}` diff --git a/pages.ja/common/7za.md b/pages.ja/common/7za.md index 67a90fd289ff92..338119657ac26d 100644 --- a/pages.ja/common/7za.md +++ b/pages.ja/common/7za.md @@ -1,25 +1,25 @@ # 7za -> 7-Zipは高圧縮率のファイルアーカイバ -> より少ないアーカイブタイプをサポートする `7z`. スタンドアロンバージョン. -> 詳しくはこちら: . +> 圧縮率の高いファイルアーカイバです。 +> `7z` よりも対応しているファイル形式は少ないですが、複数のプラットフォームに対応しています。 +> 詳しくはこちら: -- ファイルまたはディレクトリをアーカイブする: +- ファイルまたはディレクトリを圧縮する: -`7za a {{アーカイブ.7z}} {{道/に/ファイルまたはディレクトリ}}` +`7za a {{アーカイブ.7z}} {{ファイルまたはディレクトリへのパス}}` -- 元のディレクトリ構造で既存の7zファイルを抽出します: +- 元のディレクトリ構造を保持したまま展開する: -`7za x {{アーカイブ}}` +`7za x {{アーカイブ.7z}}` -- 特定のアーカイブタイプを使用したアーカイブする: +- 特定のアーカイブ形式を使用した圧縮を行う: -`7za a -t{{zip|gzip|bzip2|tar}} {{アーカイブ}} {{道/に/ファイルまたはディレクトリ}}` +`7za a -t{{zip|gzip|bzip2|tar}} {{アーカイブ.7z}} {{ファイルまたはディレクトリへのパス}}` -- 利用可能なアーカイブプをします: +- 利用可能なアーカイブ形式を出力する: `7za i` -- アーカイブの内容を一します: +- アーカイブの内容を表示する: -`7za l {{アーカイブ}}` +`7za l {{アーカイブ.7z}}` diff --git a/pages.ja/common/7zr.md b/pages.ja/common/7zr.md index 6a6b3d3f29b68d..32e76bebb24b89 100644 --- a/pages.ja/common/7zr.md +++ b/pages.ja/common/7zr.md @@ -1,17 +1,17 @@ # 7zr -> 7-Zipは高圧縮率のファイルアーカイバ -> .7zファイルをアーカイブタイプをサポートする -> 詳しくはこちら: . +> 圧縮率の高いファイルアーカイバです。 +> `7z` と似ていますが、 `7zr` は `.7z` 形式のみをサポートしています。 +> 詳しくはこちら: -- ファイルまたはディレクトリをアーカイブする: +- ファイルまたはディレクトリを圧縮する: -`7zr a {{アーカイブ.7z}} {{道/に/ファイルまたはディレクトリ}}` +`7zr a {{アーカイブ.7z}} {{ファイルまたはディレクトリへのパス}}` -- 元のディレクトリ構造で既存の7zファイルを抽出します: +- 元のディレクトリ構造を保持したまま展開する: `7zr x {{アーカイブ.7z}}` -- アーカイブの内容を一します: +- アーカイブの内容を表示する: `7zr l {{アーカイブ.7z}}` diff --git a/pages.ja/common/[.md b/pages.ja/common/[.md new file mode 100644 index 00000000000000..e02e71c91b89f1 --- /dev/null +++ b/pages.ja/common/[.md @@ -0,0 +1,25 @@ +# [ + +> 条件を評価します。 +> 条件が真と評価された場合は 0 を、偽と評価された場合は 1 を返します。 +> 詳しくはこちら: + +- 与えられた変数が与えられた文字列と等しいかどうかをテスト: + +`[ "{{$変数名}}" == "{{/bin/zsh}}" ]` + +- 与えられた変数が空であるかどうかをテスト: + +`[ -z "{{$変数名}}" ]` + +- ファイルが存在するかどうかをテスト: + +`[ -f "{{ファイルへのパス}}" ]` + +- ディレクトリが存在しないかどうかをテスト: + +`[ ! -d "{{ディレクトリへのパス}}" ]` + +- if-else 文: + +`[ {{条件}} ] && {{echo "真"}} || {{echo "偽"}}` diff --git a/pages.ja/common/ag.md b/pages.ja/common/ag.md new file mode 100644 index 00000000000000..854153e220225f --- /dev/null +++ b/pages.ja/common/ag.md @@ -0,0 +1,32 @@ +# ag + +> Silver Searcher と呼ばれます。ack コマンドに似ていますが、より高速化を目指したコマンドです。 +> 詳しくはこちら: + +- "foo"という文字列が含まれるファイルを検索し、コンテキスト内でマッチした行を出力する: + +`ag {{foo}}` + +- 特定のディレクトリ内で、"foo"という文字列が含まれるファイルを検索する: + +`ag {{foo}} {{ディレクトリパス}}` + +- "foo"という文字列が含まれるファイルの一覧をリストアップする: + +`ag -l {{foo}}` + +- 大文字と小文字を区別せずに、"FOO"という文字列が含まれるファイルを検索し、マッチした行のみ出力する: + +`ag -i -o {{FOO}}` + +- "bar"という名前にマッチするファイルから、"foo"という文字列を検索する: + +`ag {{foo}} -G {{bar}}` + +- 正規表現にマッチするコンテンツが含まれるファイルを検索する: + +`ag '{{^ba(r|z)$}}'` + +- ファイル名が "foo" に一致するファイルを検索する: + +`ag -g {{foo}}` diff --git a/pages.ja/common/alias.md b/pages.ja/common/alias.md new file mode 100644 index 00000000000000..3e958d755e058a --- /dev/null +++ b/pages.ja/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> alias (コマンド文字列を置き換える別名)を作成します。 +> alias は `~/.bashrc` などの shell の設定ファイルで定義されない限り、現在のセッションで失効します。 +> 詳しくはこちら: + +- alias の一覧表示: + +`alias` + +- alias を作成する: + +`alias {{別名}}="{{コマンド}}"` + +- 指定した alias に紐付くコマンドの表示: + +`alias {{別名}}` + +- 作成された alias の削除: + +`unalias {{別名}}` + +- `rm` を対話型にする: + +`alias {{rm}}="{{rm -i}}"` + +- `ls -a` のショートカットして `la` を作成する: + +`alias {{la}}="{{ls -a}}"` diff --git a/pages.ja/common/apktool.md b/pages.ja/common/apktool.md new file mode 100644 index 00000000000000..aebbf8f1f31c38 --- /dev/null +++ b/pages.ja/common/apktool.md @@ -0,0 +1,16 @@ +# apktool + +> APK ファイルの解析ツールです。 +> 詳しくはこちら: + +- APK ファイルのデコード: + +`apktool d {{APK ファイルのパス}}` + +- 指定したディレクトリから APK ファイルを生成: + +`apktool b {{ディレクトリへのパス}}` + +- フレームワークをインストールし、保存する: + +`apktool if {{フレームワークファイルへのパス}}` diff --git a/pages.ja/common/arch.md b/pages.ja/common/arch.md index 98c2249b8d126e..a509f6d55464c5 100644 --- a/pages.ja/common/arch.md +++ b/pages.ja/common/arch.md @@ -1,8 +1,8 @@ # arch -> システムアーキテクチャ名前を示する. -> 'uname' も参照してください. -> 詳しくはこちら: . +> システムアーキテクチャ名前を示する。 +> 'uname' も参照してください。 +> 詳しくはこちら: - システムアーキテクチャを示する: diff --git a/pages.ja/common/asdf.md b/pages.ja/common/asdf.md new file mode 100644 index 00000000000000..8165cffa93bc90 --- /dev/null +++ b/pages.ja/common/asdf.md @@ -0,0 +1,28 @@ +# asdf + +> さまざまなパッケージのバージョンを管理するためのコマンドラインインターフェイスです。 +> 詳しくはこちら: + +- 利用可能なプラグインの一覧を表示: + +`asdf plugin-list-all` + +- プラグインのインストール: + +`asdf plugin-add {{プラグイン名}}` + +- パッケージで利用可能なすべてのバージョンの一覧を表示: + +`asdf list-all {{パッケージ名}}` + +- パッケージの特定バージョンのインストール: + +`asdf install {{パッケージ名}} {{バージョン}}` + +- パッケージのグローバルバージョンの設定: + +`asdf global {{パッケージ名}} {{バージョン}}` + +- パッケージのローカルバージョンの設定: + +`asdf local {{パッケージ名}} {{バージョン}}` diff --git a/pages.ja/common/aws-configure.md b/pages.ja/common/aws-configure.md new file mode 100644 index 00000000000000..e22ec68772dd69 --- /dev/null +++ b/pages.ja/common/aws-configure.md @@ -0,0 +1,36 @@ +# aws configure + +> AWS CLI の設定を管理します。 +> 詳しくはこちら: + +- 対話形式で AWS CLI を設定する(新しい設定の作成、または既定の更新): + +`aws configure` + +- 対話形式で AWS CLI の名前付きプロファイルを設定する(新規プロファイルの作成、または既存プロファイルの更新): + +`aws configure --profile {{プロファイル名}}` + +- 特定の設定変数の値を表示する: + +`aws configure get {{名前}}` + +- 特定プロファイルの設定変数の値を表示する: + +`aws configure get {{名前}} --profile {{プロファイル名}}` + +- 特定の設定変数の値をセットする: + +`aws configure set {{名前}} {{値}}` + +- 特定プロファイルの設定変数の値をセットする: + +`aws configure set {{名前}} {{値}} --profile {{プロファイル名}}` + +- 設定エントリを一覧表示する: + +`aws configure list` + +- 特定プロファイル内の設定エントリを一覧表示する: + +`aws configure list --profile {{プロファイル名}}` diff --git a/pages.ja/common/aws.md b/pages.ja/common/aws.md new file mode 100644 index 00000000000000..a3bdc823c5b03a --- /dev/null +++ b/pages.ja/common/aws.md @@ -0,0 +1,37 @@ +# aws + +> アマゾンウェブサービスの公式 CLI ツールです。 +> `aws S3` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。 +> 詳しくはこちら: + +- AWS コマンドラインを設定する: + +`aws configure wizard` + +- SSO を利用して AWS コマンドラインを設定する: + +`aws configure sso` + +- AWS コマンドのヘルプを参照する: + +`aws {{コマンド}} help` + +- 操作呼び出しに使用した認証情報の取得(パーミッションのトラブルシューティングに使用します): + +`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 {{新しいテーブル}}` + +- JSON CLI スケルトンを生成する(Infrastructure as Code に役立ちます): + +`aws dynamodb update-table --generate-cli-skeleton` diff --git a/pages.ja/common/bat.md b/pages.ja/common/bat.md new file mode 100644 index 00000000000000..5837601a781419 --- /dev/null +++ b/pages.ja/common/bat.md @@ -0,0 +1,29 @@ +# bat + +> ファイルの内容を表示したり、連結したりします。 +> シンタックスハイライトと Git 統合を備えた `cat`クローンです。 +> 詳しくはこちら: + +- ファイルの内容を、標準出力に出力する: + +`bat {{ファイル}}` + +- 複数のファイルの内容を連結して、目的のファイルに書き込む: + +`bat {{ファイル1}} {{ファイル2}} > {{ターゲットファイル}}}` + +- 複数のファイルの内容を連結して、目的のファイルに追記する: + +`bat {{ファイル1}} {{ファイル2}} >> {{ターゲットファイル}}` + +- すべての出力行に番号をつける: + +`bat -n {{ファイル}}` + +- JSON ファイルをハイライトする構文: + +`bat --language json {{JSONファイル}}` + +- すべての対応言語を表示する: + +`bat --list-languages` diff --git a/pages.ja/common/bg.md b/pages.ja/common/bg.md new file mode 100644 index 00000000000000..abcd829353704c --- /dev/null +++ b/pages.ja/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> 一時停止していたジョブ(例. `Ctrl + Z` 使用時)を再開し、バックグラウンドで実行します。 +> 詳しくはこちら: + +- 最も最近に一時停止されたジョブを再開し、バックグラウンドで実行する: + +`bg` + +- 指定されたジョブ(`jobs -l` でジョブIDを取得)を再開し、バックグラウンドで実行する: + +`bg %{{ジョブID}}` diff --git a/pages.ja/common/bundler.md b/pages.ja/common/bundler.md new file mode 100644 index 00000000000000..b73a82f614fb3d --- /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 00000000000000..8597dd0cff4000 --- /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 new file mode 100644 index 00000000000000..3522c82b463b2d --- /dev/null +++ b/pages.ja/common/cd.md @@ -0,0 +1,28 @@ +# cd + +> 現在の作業ディレクトリを変更します。 +> 詳しくはこちら: + +- 指定したディレクトリへ移動する: + +`cd {{ディレクトリパス}}` + +- カレントディレクトリの親ディレクトリへ移動する: + +`cd ..` + +- カレントユーザーのホームディレクトリへ移動する: + +`cd` + +- 指定したユーザーのホームディレクトリへ移動する: + +`cd ~{{ユーザー名}}` + +- 以前に選択されたディレクトリへ移動する: + +`cd -` + +- ルートディレクトリへ移動する: + +`cd /` diff --git a/pages.ja/common/chsh.md b/pages.ja/common/chsh.md new file mode 100644 index 00000000000000..a4f41fc2b4daf2 --- /dev/null +++ b/pages.ja/common/chsh.md @@ -0,0 +1,20 @@ +# chsh + +> ユーザーのログインシェルを変更します。 +> 詳しくはこちら: + +- カレントユーザーのログインシェルを対話的に変更する: + +`chsh` + +- カレントユーザーのログインシェルを変更する: + +`chsh -s {{シェルへのパス}}` + +- 指定したユーザーのログインシェルを変更する: + +`chsh -s {{シェルへのパス}} {{ユーザー名}}` + +- 使用可能なシェルの一覧を表示する: + +`chsh --list-shells` diff --git a/pages.ja/common/clamav.md b/pages.ja/common/clamav.md new file mode 100644 index 00000000000000..ffd9c41ca7866c --- /dev/null +++ b/pages.ja/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> このコマンドは `clamdscan` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clamdscan` diff --git a/pages.ja/common/clang-cpp.md b/pages.ja/common/clang-cpp.md new file mode 100644 index 00000000000000..558087b4d3932d --- /dev/null +++ b/pages.ja/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> このコマンドは `clang++` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clang++` diff --git a/pages.ja/common/clojure.md b/pages.ja/common/clojure.md new file mode 100644 index 00000000000000..a2ea0e4ecb4a9b --- /dev/null +++ b/pages.ja/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> このコマンドは `clj` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clj` diff --git a/pages.ja/common/cola.md b/pages.ja/common/cola.md new file mode 100644 index 00000000000000..efdc8f2dc79294 --- /dev/null +++ b/pages.ja/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> このコマンドは `git-cola` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr git-cola` diff --git a/pages.ja/common/cp.md b/pages.ja/common/cp.md new file mode 100644 index 00000000000000..12762e5b81cfad --- /dev/null +++ b/pages.ja/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> ファイルやディレクトリをコピーします。 +> 詳しくはこちら: + +- ファイルを別の場所にコピー: + +`cp {{コピー元ファイルへのパス}} {{コピー先ファイルへのパス}}` + +- ファイル名を維持したまま、ファイルを別のディレクトリにコピーする: + +`cp {{コピー元ファイルへのパス}} {{コピー先ディレクトリへのパス}}` + +- ディレクトリの内容を別の場所に再帰的にコピーする(コピー先が存在する場合は、その中にディレクトリがコピーされる): + +`cp -R {{コピー元ディレクトリへのパス}} {{コピー先ディレクトリへのパス}}` + +- 詳細モードでディレクトリを再帰的にコピーする(コピーされたファイルが表示される): + +`cp -vR {{コピー元ディレクトリへのパス}} {{コピー先ディレクトリへのパス}}` + +- 対話形式でテキストファイルを別の場所にコピーする(上書きする前にユーザーに確認する): + +`cp -i {{*.txt}} {{コピー先ディレクトリへのパス}}` + +- コピーする前にシンボリックリンクをたどる: + +`cp -L {{link}} {{コピー先ディレクトリへのパス}}` diff --git a/pages.ja/common/cron.md b/pages.ja/common/cron.md new file mode 100644 index 00000000000000..7aa4e4f7fb8e5b --- /dev/null +++ b/pages.ja/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> このコマンドは `crontab` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr crontab` diff --git a/pages.ja/common/dig.md b/pages.ja/common/dig.md new file mode 100644 index 00000000000000..7f3dce61186411 --- /dev/null +++ b/pages.ja/common/dig.md @@ -0,0 +1,36 @@ +# dig + +> DNS 情報を調べるユーティリティーです。 +> 詳しくはこちら: + +- ホスト名に関連する IP を検索(A レコード): + +`dig +short {{example.com}}` + +- 指定したドメインの詳細な回答を得る(A レコード): + +`dig +noall +answer {{example.com}}` + +- 指定されたドメイン名に関連する特定の DNS レコードタイプを取得する: + +`dig +short {{example.com}} {{A|MX|TXT|CNAME|NS}}` + +- 指定したドメイン名のすべてのタイプのレコードを取得する: + +`dig {{example.com}} ANY` + +- 問い合わせる別の DNS サーバーを指定する: + +`dig @{{8.8.8.8}} {{example.com}}` + +- IP アドレスの DNS 逆引きの実行(PTR レコード): + +`dig -x {{8.8.8.8}}` + +- ゾーンの権威ネームサーバーの検索と SOA レコードの表示: + +`dig +nssearch {{example.com}}` + +- ドメイン名を解決するための反復的なクエリの実行と、そのトレースパス全体を表示する: + +`dig +trace {{example.com}}` diff --git a/pages.ja/common/docker-build.md b/pages.ja/common/docker-build.md new file mode 100644 index 00000000000000..5497cad0af1867 --- /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 00000000000000..6629a671d1c8d6 --- /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 00000000000000..158f40c0b599cd --- /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 00000000000000..178cb1dc126bc6 --- /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 00000000000000..b4893a9ad984d0 --- /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 00000000000000..694e3ae57474f8 --- /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 00000000000000..caf95054267660 --- /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 00000000000000..b1bb06c242457f --- /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/du.md b/pages.ja/common/du.md index 347481ec19802d..db585c1278d9f1 100644 --- a/pages.ja/common/du.md +++ b/pages.ja/common/du.md @@ -1,28 +1,28 @@ # du > ディスク使用状況: ファイルとディレクトリの使用量の概算を表示します。 -> 詳しくはこちら: . +> 詳しくはこちら: -- 指定した単位(B/KB/MB)でディレクトリおよびサブディレクトリのサイズを表示します。 +- 指定した単位 (B/KiB/MiB) でディレクトリおよびサブディレクトリのサイズを表示します: `du -{{b|k|m}} {{path/to/directory}}` -- 人間にとって解釈しやすい形式(サイズに応じた単位の選択など)で、ディレクトリおよびサブディレクトリのサイズを表示します。 +- 人間にとって解釈しやすい形式(サイズに応じた単位の選択など)で、ディレクトリおよびサブディレクトリのサイズを表示します: `du -h {{path/to/directory}}` -- 人間にとって解釈しやすい形式で、単一ディレクトリのサイズを表示します。 +- 人間にとって解釈しやすい形式で、単一ディレクトリのサイズを表示します: `du -sh {{path/to/directory}}` -- 人間にとって解釈しやすい形式で、指定ディレクトリ、そのサブディレクトリ、それらに含まれる全てのファイルのサイズを表示します。 +- 人間にとって解釈しやすい形式で、指定ディレクトリ、そのサブディレクトリ、それらに含まれる全てのファイルのサイズを表示します: `du -ah {{path/to/directory}}` -- 人間にとって解釈しやすい形式で、指定ディレクトリおよび N 階層先までのディレクトリのサイズを表示します。 +- 人間にとって解釈しやすい形式で、指定ディレクトリおよび N 階層先までのディレクトリのサイズを表示します: `du -h --max-depth=N {{path/to/directory}}` -- 人間にとって解釈しやすい形式で、現在のディレクトリおよびその下のディレクトリに含まれる全ての `.jpg` ファイルサイズを表示し、最後に合計を表示します。 +- 人間にとって解釈しやすい形式で、現在のディレクトリおよびその下のディレクトリに含まれる全ての `.jpg` ファイルサイズを表示し、最後に合計を表示します: `du -ch */*.jpg` diff --git a/pages.ja/common/echo.md b/pages.ja/common/echo.md new file mode 100644 index 00000000000000..15854de4b03745 --- /dev/null +++ b/pages.ja/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> 与えられた引数を表示します。 +> 詳しくはこちら: + +- テキストメッセージを印刷する。備考: 引用符は任意: + +`echo "{{Hello World}}"` + +- 環境変数のメッセージを表示する: + +`echo "{{パスは $PATH です。}}"` + +- メッセージを最後の改行なしで表示する: + +`echo -n "{{Hello World}}"` + +- ファイルにメッセージを追加する: + +`echo "{{Hello World}}" >> {{ファイル.txt}}` + +- バックスラッシュエスケープ(特殊文字)の解釈を可能にする: + +`echo -e "{{カラム 1\tカラム 2}}"` diff --git a/pages.ja/common/fg.md b/pages.ja/common/fg.md new file mode 100644 index 00000000000000..338306e4a44710 --- /dev/null +++ b/pages.ja/common/fg.md @@ -0,0 +1,12 @@ +# fg + +> フォアグラウンドでジョブを実行する。 +> 詳しくはこちら: + +- 最も最近に停止されたジョブまたはバックグラウンドジョブをフォアグラウンドで実行する: + +`fg` + +- 指定されたジョブをフォアグラウンドで実行する: + +`fg %{{job_id}}` diff --git a/pages.ja/common/fossil-ci.md b/pages.ja/common/fossil-ci.md new file mode 100644 index 00000000000000..a1b084fe2e61a9 --- /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 00000000000000..ed6672d3a1dea4 --- /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 00000000000000..9deb7780a6f659 --- /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 00000000000000..fd67ee0ebc27f2 --- /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 00000000000000..0ad5d472921be2 --- /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 00000000000000..5c73a763b8f8ff --- /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 00000000000000..7985f5abbc798e --- /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 00000000000000..d6a7703f6e8231 --- /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 00000000000000..e67830cf373ac9 --- /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 00000000000000..fdda139889384d --- /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 00000000000000..290f1d6781bf53 --- /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 00000000000000..f010c50da5ce92 --- /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 00000000000000..ae9940356f9515 --- /dev/null +++ b/pages.ja/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> このコマンドは `kcat` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr kcat` diff --git a/pages.ja/common/less.md b/pages.ja/common/less.md new file mode 100644 index 00000000000000..69cb436860f130 --- /dev/null +++ b/pages.ja/common/less.md @@ -0,0 +1,36 @@ +# less + +> ファイルを開いて、スクロールや検索などのインタラクティブな読み方ができます。 +> 詳しくはこちら: + +- ファイルを開く: + +`less {{ソースファイル}}` + +- ページダウン/アップ: + +`<スペース> (ダウン), b (アップ)` + +- ファイルの最後/最初に移動: + +`G (最後), g (最初)` + +- 文字列の前方検索(`n`/`N` を押すと、次の/前のマッチに移動する): + +`/{{検索文字列}}` + +- 文字列の後方検索(`n`/`N` を押すと次/前のマッチに進む): + +`?{{検索文字列}}` + +- 現在開いているファイルの出力を追跡する: + +`F` + +- 現在のファイルをエディターで開く: + +`v` + +- 閉じる: + +`q` diff --git a/pages.ja/common/llvm-ar.md b/pages.ja/common/llvm-ar.md new file mode 100644 index 00000000000000..74aafb58340181 --- /dev/null +++ b/pages.ja/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> このコマンドは `ar` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr ar` diff --git a/pages.ja/common/llvm-g++.md b/pages.ja/common/llvm-g++.md new file mode 100644 index 00000000000000..ab72280b8648ad --- /dev/null +++ b/pages.ja/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> このコマンドは `clang++` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clang++` diff --git a/pages.ja/common/llvm-gcc.md b/pages.ja/common/llvm-gcc.md new file mode 100644 index 00000000000000..e6e94e82a1a3af --- /dev/null +++ b/pages.ja/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> このコマンドは `clang` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr clang` diff --git a/pages.ja/common/llvm-nm.md b/pages.ja/common/llvm-nm.md new file mode 100644 index 00000000000000..27839b11045ff1 --- /dev/null +++ b/pages.ja/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> このコマンドは `nm` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr nm` diff --git a/pages.ja/common/llvm-objdump.md b/pages.ja/common/llvm-objdump.md new file mode 100644 index 00000000000000..0808ebb88ab36d --- /dev/null +++ b/pages.ja/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> このコマンドは `objdump` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr objdump` diff --git a/pages.ja/common/llvm-strings.md b/pages.ja/common/llvm-strings.md new file mode 100644 index 00000000000000..be2fddfe026de0 --- /dev/null +++ b/pages.ja/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> このコマンドは `strings` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr strings` diff --git a/pages.ja/common/ls.md b/pages.ja/common/ls.md new file mode 100644 index 00000000000000..15d7de4f398d51 --- /dev/null +++ b/pages.ja/common/ls.md @@ -0,0 +1,32 @@ +# ls + +> ディレクトリの内容を一覧表示します。 +> 詳しくはこちら: + +- ファイルを1行ごとに一覧表示: + +`ls -1` + +- 隠しファイルを含むすべてのファイルを一覧表示: + +`ls -a` + +- すべてのファイルを一覧表示し、ディレクトリ名の最後に `/` を付加する: + +`ls -F` + +- 全ファイルを長い形式(パーミッション、所有者、サイズ、修正日)で一覧表示します: + +`ls -la` + +- サイズを人間が読みやすい単位(KiB、MiB、GiB)で表示した長い形式での一覧表示: + +`ls -lh` + +- サイズ順(降順)に並べた長い形式での一覧表示: + +`ls -lS` + +- すべてのファイルの長い形式でのリストで、更新日が古いものから順に表示されます: + +`ls -ltr` diff --git a/pages.ja/common/lzcat.md b/pages.ja/common/lzcat.md new file mode 100644 index 00000000000000..b3cfe39a3b0d35 --- /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 00000000000000..5090cd3ec225c5 --- /dev/null +++ b/pages.ja/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/mscore.md b/pages.ja/common/mscore.md new file mode 100644 index 00000000000000..e70a19cfd848ee --- /dev/null +++ b/pages.ja/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> このコマンドは `musescore` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr musescore` diff --git a/pages.ja/common/mysql.md b/pages.ja/common/mysql.md new file mode 100644 index 00000000000000..4b0ab9b0879a74 --- /dev/null +++ b/pages.ja/common/mysql.md @@ -0,0 +1,32 @@ +# mysql + +> MySQL のコマンドラインツールです。 +> 詳しくはこちら: + +- データベースへの接続: + +`mysql {{データベース名}}` + +- データベースへの接続、ユーザーにはパスワードの入力が求められる: + +`mysql -u {{ユーザー}} --password {{データベース名}}` + +- 別のホスト上のデータベースに接続する: + +`mysql -h {{データベースホスト}} {{データベース名}}` + +- Unix ソケット経由でのデータベースへの接続: + +`mysql --socket {{ソケットファイルへのパス}}` + +- スクリプトファイル(バッチファイル)での SQL 文の実行: + +`mysql -e "source {{sqlファイル}}" {{データベース名}}` + +- `mysqldump` で作成したバックアップからデータベースをリストアする(ユーザーはパスワードの入力を求められます): + +`mysql --user {{ユーザー}} --password {{データベース名}} < {{バックアップsqlファイルへのパス}}` + +- バックアップからすべてのデータベースを復元する(ユーザーはパスワードの入力を求められます): + +`mysql --user {{ユーザー}} --password < {{バックアップsqlファイルへのパス}}` diff --git a/pages.ja/common/nm-classic.md b/pages.ja/common/nm-classic.md new file mode 100644 index 00000000000000..050c6fd908e6e0 --- /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 00000000000000..3f83c4cb01aa2a --- /dev/null +++ b/pages.ja/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> このコマンドは `netlify` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr netlify` diff --git a/pages.ja/common/pio-init.md b/pages.ja/common/pio-init.md new file mode 100644 index 00000000000000..ca32b0875f917e --- /dev/null +++ b/pages.ja/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> このコマンドは `pio project` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr pio project` diff --git a/pages.ja/common/piodebuggdb.md b/pages.ja/common/piodebuggdb.md new file mode 100644 index 00000000000000..a26615cd695712 --- /dev/null +++ b/pages.ja/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> このコマンドは `pio debug` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr pio debug` diff --git a/pages.ja/common/platformio.md b/pages.ja/common/platformio.md new file mode 100644 index 00000000000000..9d38c15fc4a269 --- /dev/null +++ b/pages.ja/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> このコマンドは `pio` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr pio` diff --git a/pages.ja/common/ps.md b/pages.ja/common/ps.md new file mode 100644 index 00000000000000..defc28234a21d7 --- /dev/null +++ b/pages.ja/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.ja/common/ptpython3.md b/pages.ja/common/ptpython3.md new file mode 100644 index 00000000000000..fe51467e356a68 --- /dev/null +++ b/pages.ja/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> このコマンドは `ptpython` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr ptpython` diff --git a/pages.ja/common/pwd.md b/pages.ja/common/pwd.md new file mode 100644 index 00000000000000..40e49d7408076f --- /dev/null +++ b/pages.ja/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> 現在の作業ディレクトリを表示します。 +> 詳しくはこちら: + +- 現在のディレクトリを表示する: + +`pwd` + +- 現在のディレクトリを表示し、すべてのシンボリックリンクを解決する(つまり、「物理的な」パスを表示する): + +`pwd -P` diff --git a/pages.ja/common/pyenv.md b/pages.ja/common/pyenv.md new file mode 100644 index 00000000000000..a1d1c9760ea4e0 --- /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 00000000000000..22ab637a9e5594 --- /dev/null +++ b/pages.ja/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> このコマンドは `python` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr python` diff --git a/pages.ja/common/r2.md b/pages.ja/common/r2.md new file mode 100644 index 00000000000000..b0acd7f6345cb2 --- /dev/null +++ b/pages.ja/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> このコマンドは `radare2` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr radare2` diff --git a/pages.ja/common/ranger.md b/pages.ja/common/ranger.md index 1e3afe24fc4b92..2c56f918e87767 100644 --- a/pages.ja/common/ranger.md +++ b/pages.ja/common/ranger.md @@ -1,24 +1,24 @@ # ranger -> VI キーバインドのコンソールファイルマネージャー -> 詳しくはこちら: . +> VI キーバインドのコンソールファイルマネージャー。 +> 詳しくはこちら: -- ranger を起動する。 +- ranger を起動する: `ranger` -- ディレクトリのみ表示する。 +- ディレクトリのみ表示する: `ranger --show-only-dirs` -- 設定ディレクトリを変更する。 +- 設定ディレクトリを変更する: `ranger --confdir={{path/to/directory}}` -- データディレクトリを変更する。 +- データディレクトリを変更する: `ranger --datadir={{path/to/directory}}` -- 終了時に CPU 使用統計を表示する。 +- 終了時に CPU 使用統計を表示する: `ranger --profile` diff --git a/pages.ja/common/rcat.md b/pages.ja/common/rcat.md new file mode 100644 index 00000000000000..981c48b711688f --- /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 00000000000000..c2c40b6baf62ea --- /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 00000000000000..63251698d9ff94 --- /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/sed.md b/pages.ja/common/sed.md new file mode 100644 index 00000000000000..965724225be986 --- /dev/null +++ b/pages.ja/common/sed.md @@ -0,0 +1,36 @@ +# sed + +> スクリプトによるテキスト編集。 +> 詳しくはこちら: + +- ファイルの各行で正規表現の最初の出現箇所を置換し、その結果を表示する: + +`sed 's/{{正規表現}}/{{置き換え後}}/' {{ファイル名}}` + +- ファイル内の拡張正規表現のすべての出現箇所を置換し、その結果を表示する: + +`sed -r 's/{{正規表現}}/{{置き換え後}}/g' {{ファイル名}}` + +- ファイル内のすべての文字列を置き換え、ファイルを上書きする(すなわち インプレイス): + +`sed -i 's/{{置き換え前}}/{{置き換え後}}/g' {{ファイル名}}}` + +- ラインパターンに一致する行のみを置換: + +`sed '/{{ラインパターン}}/s/{{置き換え前}}/{{置き換え後}}/' {{ファイル名}}` + +- ラインパターンに一致する行を削除する: + +`sed '/{{ラインパターン}}/d' {{ファイル名}}}` + +- ファイルの最初の 11 行を表示する: + +`sed 11q {{ファイル名}}` + +- 複数の検索・置換式をファイルに適用: + +`sed -e 's/{{置き換え名}}/{{置き換え後}}/' -e 's/{{置き換え前}}/{{置き換え後}}/' {{ファイル名}}` + +- 区切り文字 `/` を、検索や置換のパターンで使われていない他の文字(例:`#`)で置き換える: + +`sed 's#{{置き換え前}}#{{置き換え後}}#' {{ファイル名}}` diff --git a/pages.ja/common/tar.md b/pages.ja/common/tar.md new file mode 100644 index 00000000000000..fa1f91d6f286d2 --- /dev/null +++ b/pages.ja/common/tar.md @@ -0,0 +1,37 @@ +# tar + +> アーカイブ(複数のファイルやフォルダを 1 つのファイルに纏める)の為のユーティリティー。 +> gzip や bzip2 などの圧縮方法と組み合わせることが多いです。 +> 詳しくはこちら: + +- アーカイブを作成し、それをファイルに書き込む: + +`tar cf {{出力ファイル名.tar}} {{ファイル1}} {{ファイル2}} {{ファイル3}}` + +- gzip 形式で圧縮されたアーカイブを作成し、それをファイルに書き込む: + +`tar czf {{出力ファイル名.tar.gz}} {{ファイル1}} {{ファイル2}} {{ファイル3}}` + +- 相対パスを用いてディレクトリから gzip 形式のアーカイブを作成する: + +`tar czf {{出力ファイル名.tar.gz}} --directory={{ディレクトリへの相対パス}} .` + +- (圧縮された)アーカイブファイルを、カレントディレクトリに過程を詳細表示しながら展開する: + +`tar xvf {{入力ファイル名.tar[.gz|.bz2|.xz]}}` + +- (圧縮された)アーカイブファイルを、指定のディレクトリに展開する: + +`tar xf {{入力ファイル名.tar[.gz|.bz2|.xz]}} --directory={{ディレクトリ}}` + +- 圧縮されたアーカイブを作成し、それにファイルを書き込む。なお、接尾辞で圧縮プログラムを指定する: + +`tar caf {{出力ファイル名.tar.xz}} {{ファイル1}} {{ファイル2}} {{ファイル3}}` + +- tar ファイルの内容を詳細に表示する: + +`tar tvf {{入力ファイル名.tar}}` + +- アーカイブファイルからパターンに合致するファイルを抽出する: + +`tar xf {{入力ファイル名.tar}} --wildcards "{{*.html}}"` diff --git a/pages.ja/common/test.md b/pages.ja/common/test.md new file mode 100644 index 00000000000000..8d9187deaafd68 --- /dev/null +++ b/pages.ja/common/test.md @@ -0,0 +1,25 @@ +# test + +> 条件を評価します。 +> 条件が真と評価された場合は 0 を、偽と評価された場合は 1 を返します。 +> 詳しくはこちら: + +- 与えられた変数が与えられた文字列と等しいかどうかをテスト: + +`test "{{$変数名}}" == "{{/bin/zsh}}"` + +- 与えられた変数が空であるかどうかをテスト: + +`test -z "{{$変数名}}"` + +- ファイルが存在するかどうかをテスト: + +`test -f "{{ファイルへのパス}}"` + +- ディレクトリが存在しないかどうかをテスト: + +`test ! -d "{{ディレクトリへのパス}}"` + +- if-else 文: + +`test {{条件}} && {{echo "真"}} || {{echo "偽"}}` diff --git a/pages.ja/common/tldr.md b/pages.ja/common/tldr.md index 7abe06fcb6d131..2d77b2a34c0d23 100644 --- a/pages.ja/common/tldr.md +++ b/pages.ja/common/tldr.md @@ -1,7 +1,7 @@ # tldr -> コマンドの簡単なマニュアル -> 詳しくはこちら: . +> コマンドの簡単なマニュアル。 +> 詳しくはこちら: - コマンドのよくある使用例を見られます (ヒント: このページにたどり着いた方法です!): diff --git a/pages.ja/common/tldrl.md b/pages.ja/common/tldrl.md new file mode 100644 index 00000000000000..1d47d37df3bbb8 --- /dev/null +++ b/pages.ja/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> このコマンドは `tldr-lint` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr tldr-lint` diff --git a/pages.ja/common/tlmgr-arch.md b/pages.ja/common/tlmgr-arch.md new file mode 100644 index 00000000000000..c33318078de067 --- /dev/null +++ b/pages.ja/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> このコマンドは `tlmgr platform` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr tlmgr platform` diff --git a/pages.ja/common/tmux.md b/pages.ja/common/tmux.md new file mode 100644 index 00000000000000..781209c1d72740 --- /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 00000000000000..98d7f94debeb99 --- /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 00000000000000..cdb2e3117d7c8c --- /dev/null +++ b/pages.ja/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> このコマンドは `transmission-daemon` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr transmission-daemon` diff --git a/pages.ja/common/unalias.md b/pages.ja/common/unalias.md new file mode 100644 index 00000000000000..e0d5a9293b4bd6 --- /dev/null +++ b/pages.ja/common/unalias.md @@ -0,0 +1,12 @@ +# unalias + +> alias を削除します。 +> 詳しくはこちら: + +- alias を削除する: + +`unalias {{別名}}` + +- 全ての alias を削除する: + +`unalias -a` diff --git a/pages.ja/common/unlzma.md b/pages.ja/common/unlzma.md new file mode 100644 index 00000000000000..a5f65c026385e8 --- /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 00000000000000..e34d23d585df5f --- /dev/null +++ b/pages.ja/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/vi.md b/pages.ja/common/vi.md new file mode 100644 index 00000000000000..98bbc0be7caff1 --- /dev/null +++ b/pages.ja/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> このコマンドは `vim` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr vim` diff --git a/pages.ja/common/vim.md b/pages.ja/common/vim.md new file mode 100644 index 00000000000000..3b30f1c11dff32 --- /dev/null +++ b/pages.ja/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> コマンドラインのテキストエディタである Vim(Vi IMproved)には、さまざまな種類のテキスト操作のためのモードが用意されています。 +> `i` を押すと編集モードになります。`` を押すと通常モードに戻り、通常のテキスト挿入はできません。 +> 詳しくはこちら: + +- ファイルを開く: + +`vim {{ファイルへのパス}}` + +- 指定した行番号でファイルを開く: + +`vim +{{ライン番号}} {{ファイルへのパス}}` + +- Vim のヘルプマニュアルを見る: + +`:help` + +- 保存と終了: + +`:wq` + +- 最後の操作を元に戻す: + +`u` + +- ファイル内のパターンを検索する(`n`/`N` を押すと次/前のマッチに進む): + +`/{{検索パターン}}` + +- ファイル全体での正規表現による置換の実行: + +`:%s/{{パターン}}/{{置き換え後}}/g` + +- ライン番号の表示: + +`:set nu` diff --git a/pages.ja/common/xzcat.md b/pages.ja/common/xzcat.md new file mode 100644 index 00000000000000..07199f5859de07 --- /dev/null +++ b/pages.ja/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> このコマンドは `xz` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr xz` diff --git a/pages.ja/common/z.md b/pages.ja/common/z.md index 162070766d9873..47fd12bbcfa0f8 100644 --- a/pages.ja/common/z.md +++ b/pages.ja/common/z.md @@ -1,28 +1,28 @@ # z > 高頻度で利用されるディレクトリを把握し、文字列や正規表現をつかうことでスムーズに移動できるようにします。 -> 詳しくはこちら: . +> 詳しくはこちら: -- "foo"が名前に含まれるディレクトリに移動する。 +- "foo"が名前に含まれるディレクトリに移動する: `z {{foo}}` -- "foo"と"bar"が名前に含まれるディレクトリに移動する。 +- "foo"と"bar"が名前に含まれるディレクトリに移動する: `z {{foo}} {{bar}}` -- "foo"と最もマッチングするディレクトリに移動する。 +- "foo"と最もマッチングするディレクトリに移動する: `z -r {{foo}}` -- "foo"とマッチングするディレクトリの中で、最も最近アクセスしたディレクトリに移動する。 +- "foo"とマッチングするディレクトリの中で、最も最近アクセスしたディレクトリに移動する: `z -t {{foo}}` -- `z`コマンドのデータベースの中で、`foo` にマッチングするディレクトリの一覧を表示する。 +- `z`コマンドのデータベースの中で、`foo` にマッチングするディレクトリの一覧を表示する: `z -l {{foo}}` -- 現在のディレクトリを`z`コマンドのデータベース除去する。 +- 現在のディレクトリを`z`コマンドのデータベース除去する: `z -x .` diff --git a/pages.ja/linux/alternatives.md b/pages.ja/linux/alternatives.md new file mode 100644 index 00000000000000..986c2fb8114175 --- /dev/null +++ b/pages.ja/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> このコマンドは `update-alternatives` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr update-alternatives` diff --git a/pages.ja/linux/apt.md b/pages.ja/linux/apt.md new file mode 100644 index 00000000000000..97094b9447a11d --- /dev/null +++ b/pages.ja/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> Debian系ディストリビューションで使われるパッケージ管理システムです。 +> Ubuntuのバージョンが16.04か、それ以降で対話モードを使う場合`apt-get`の代わりとして使用します。 +> 詳しくはこちら: + +- 利用可能なパーケージとバージョンのリストの更新(他の`apt`コマンドの前での実行を推奨): + +`sudo apt update` + +- 指定されたパッケージの検索: + +`apt search {{パッケージ}}` + +- パッケージの情報を出力: + +`apt show {{パッケージ}}` + +- パッケージのインストール、または利用可能な最新バージョンに更新: + +`sudo apt install {{パッケージ}}` + +- パッケージの削除(`sudo apt remove --purge`の場合設定ファイルも削除): + +`sudo apt remove {{パッケージ}}` + +- インストールされている全てのパッケージを最新のバージョンにアップグレード: + +`sudo apt upgrade` + +- インストールできるすべてのパッケージを表示: + +`apt list` + +- インストールされた全てのパッケージを表示(依存関係も表示): + +`apt list --installed` diff --git a/pages.ja/linux/batcat.md b/pages.ja/linux/batcat.md new file mode 100644 index 00000000000000..1ed8ec77a8cfa0 --- /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 00000000000000..916ecfb676307d --- /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 00000000000000..c25c4d9cb2ca1d --- /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 00000000000000..76a2fb433d29f7 --- /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 00000000000000..c41c498082426e --- /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 00000000000000..2f99c622fb3e3f --- /dev/null +++ b/pages.ja/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> このコマンドは `megatools-dl` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr megatools-dl` diff --git a/pages.ja/linux/ncal.md b/pages.ja/linux/ncal.md new file mode 100644 index 00000000000000..aed2989f1386b6 --- /dev/null +++ b/pages.ja/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> このコマンドは `cal` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr cal` diff --git a/pages.ja/linux/ubuntu-bug.md b/pages.ja/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..dab067461a123c --- /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 00000000000000..f8cc08df645b5b --- /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 00000000000000..340aabd48370ad --- /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 00000000000000..f46433a6e6f14b --- /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 00000000000000..b894c0592aac58 --- /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 00000000000000..d9c87061da615c --- /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 00000000000000..88ee28f785c7de --- /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 00000000000000..b4a582a5c586d0 --- /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 00000000000000..6141a688ab281b --- /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 00000000000000..624d1501b93961 --- /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 00000000000000..11d3be9b9a642b --- /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 00000000000000..5fbb7d48d1239b --- /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 00000000000000..72bd2af5c25649 --- /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 00000000000000..1ebe106c5bb6db --- /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 00000000000000..b13b8c2260caad --- /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 00000000000000..c971228a03ee5c --- /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 00000000000000..3bef43abe8c48e --- /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 00000000000000..1658b03fce3f7b --- /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 00000000000000..32588ea9d612e6 --- /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 00000000000000..d26b7654f66b95 --- /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 00000000000000..3bb7be04396f72 --- /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 00000000000000..829738a6e3cbfe --- /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 00000000000000..186be4ff944141 --- /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 00000000000000..cb605023183988 --- /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 00000000000000..99e8a45a3ee90e --- /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 00000000000000..9df1008ee2bbf7 --- /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 00000000000000..6445cd791110e0 --- /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 00000000000000..2bb991fedb9358 --- /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 00000000000000..0ddc6d43dcb994 --- /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 00000000000000..5d3a8d03afd323 --- /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 00000000000000..8392bb9ba0d313 --- /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 00000000000000..75296ea407a372 --- /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 00000000000000..ea9a681e48255c --- /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 00000000000000..56d21b3ed8b197 --- /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 00000000000000..c5e9f105cd2477 --- /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 00000000000000..b2275f3ed154ca --- /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 00000000000000..1fdfe58ab8c588 --- /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 00000000000000..09250f3c627998 --- /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 00000000000000..6728ff10acfd05 --- /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 00000000000000..548c78449307ea --- /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 00000000000000..b35b71308aad83 --- /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 00000000000000..df39d34ab65011 --- /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 00000000000000..856114f5211101 --- /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 00000000000000..a804edb9275aca --- /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 00000000000000..3c6dce72d57863 --- /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 00000000000000..72efe91bf187de --- /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 00000000000000..c107320f2fdd39 --- /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 00000000000000..d52fb892011475 --- /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 00000000000000..94b064921d867e --- /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 00000000000000..a6b00388112671 --- /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 00000000000000..b49163d8349ae8 --- /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 00000000000000..62d14c038d97d8 --- /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 00000000000000..800b784a2cc13b --- /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 00000000000000..c4b0a09402d595 --- /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 00000000000000..b5ff2cd1ab65c6 --- /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 00000000000000..fd602509d91080 --- /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 00000000000000..4b789551ee427e --- /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 00000000000000..45947aaff84277 --- /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 00000000000000..24ede51d989eb5 --- /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 00000000000000..ffc59ab9d4868c --- /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 00000000000000..c711d6b24e54ba --- /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 00000000000000..4151970fc1f0e9 --- /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 00000000000000..5866faa7640cd2 --- /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 00000000000000..f29628f82b66c6 --- /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 00000000000000..b6c28c243901f3 --- /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 00000000000000..15dea873847437 --- /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 00000000000000..0d1571248087f0 --- /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 00000000000000..c6eadad463d9f5 --- /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 00000000000000..5bfb692ede3f89 --- /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 00000000000000..b6e38149497a5c --- /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 00000000000000..e0b5da9cd90707 --- /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 00000000000000..5d68f773d84cd0 --- /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 00000000000000..925b7adfdf164b --- /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 00000000000000..993ae86f2f7526 --- /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 00000000000000..2bf5df82fc913a --- /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 00000000000000..f607a2f8ec1115 --- /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 00000000000000..57430423ae486d --- /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 00000000000000..4ab4a428e6ebfe --- /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 00000000000000..a2c2770b03ce00 --- /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 00000000000000..5afeb61cfec44f --- /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 00000000000000..dc792d3c137692 --- /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 00000000000000..d4f4a87981bfce --- /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 00000000000000..0b4d6c08112064 --- /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 00000000000000..f770c0eba6297c --- /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 00000000000000..3f8faf69bb55bc --- /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 00000000000000..5a751eb7e0079b --- /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 00000000000000..009b50d2a2e168 --- /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 00000000000000..fd14458d09d5b9 --- /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 00000000000000..cbd3c49f1c9714 --- /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 00000000000000..1fe41a0abd4703 --- /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 00000000000000..658aab73483745 --- /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 00000000000000..4b71e7f0349099 --- /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 00000000000000..4877d877d9a97e --- /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 00000000000000..3e2dbf9f548237 --- /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 00000000000000..5c89910824b581 --- /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 00000000000000..5442f2d0bd1b95 --- /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 00000000000000..6e42c3d8001ba3 --- /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 00000000000000..de3382c931ad08 --- /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 00000000000000..ee7b1d20c97f8a --- /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 00000000000000..56e05fa0d98828 --- /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 00000000000000..1bc1f50825a9b0 --- /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 00000000000000..8cc95a7388ef73 --- /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 00000000000000..30d125e8b343b9 --- /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 00000000000000..16d1920945678b --- /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 00000000000000..efbcde38403b42 --- /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 00000000000000..781369dc2dccde --- /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 00000000000000..7e31ccac9ee08f --- /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 00000000000000..095ba7085af044 --- /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 00000000000000..98c367838ab0cc --- /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 00000000000000..b5c24cb5fd50f1 --- /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 00000000000000..bb9bc620e156f9 --- /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 00000000000000..b69585fc3b62d3 --- /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 00000000000000..6a110b27fa82ec --- /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 00000000000000..60f2c597acc7a1 --- /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 00000000000000..dac7b031ca0812 --- /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 00000000000000..0f3de581039edf --- /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 00000000000000..8ca65b4e81b0c9 --- /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 00000000000000..765fc98437259d --- /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 00000000000000..ad5c32c708cc3a --- /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 00000000000000..25643f63148900 --- /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 00000000000000..1cf45133b05f75 --- /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 00000000000000..e277ad3ebf302a --- /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 00000000000000..20878ab6794fad --- /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 00000000000000..20e2b3b39a4d99 --- /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 00000000000000..704f1056b7d1ac --- /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 00000000000000..b643e81a0f9379 --- /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 00000000000000..c219832027c060 --- /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 00000000000000..35cae3278e5244 --- /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 00000000000000..2925a2a528447a --- /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 00000000000000..61562bc09a7a3b --- /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 00000000000000..95bf47a1674b18 --- /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 00000000000000..fcadfc6be564d7 --- /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 00000000000000..ee878ae1828a5b --- /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 00000000000000..75dc27cafe7c10 --- /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 00000000000000..54f8820cd4c643 --- /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 00000000000000..7d783a80ef3e7d --- /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 00000000000000..f8ceef01a2b33e --- /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 00000000000000..12db023ec3fa4a --- /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 00000000000000..dbc78a17e34ef9 --- /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 00000000000000..0e9cd6759ba983 --- /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 00000000000000..af381eb4951aa7 --- /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 00000000000000..41c6a5dc9b4571 --- /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 00000000000000..9f6c9671c0eb86 --- /dev/null +++ b/pages.ja/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> このコマンドは `launchctl` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr launchctl` diff --git a/pages.ja/windows/assoc.md b/pages.ja/windows/assoc.md index e08516c2700814..44ec28f6fbd5e1 100644 --- a/pages.ja/windows/assoc.md +++ b/pages.ja/windows/assoc.md @@ -1,7 +1,7 @@ # assoc -> ファイル拡張子の関連付けを表示または変更します -> 詳しくはこちら: . +> ファイル拡張子の関連付けを表示または変更します。 +> 詳しくはこちら: - 関連するすべてのファイルタイプをします: diff --git a/pages.ja/windows/attrib.md b/pages.ja/windows/attrib.md index 6daecf3aa6b3b7..c110549c2ba865 100644 --- a/pages.ja/windows/attrib.md +++ b/pages.ja/windows/attrib.md @@ -1,7 +1,7 @@ # attrib -> ファイルまたはディレクトリの属性を表示または変更します -> 詳しくはこちら: . +> ファイルまたはディレクトリの属性を表示または変更します。 +> 詳しくはこちら: - 現在のディレクトリ内のファイルの属性を表示します: diff --git a/pages.ja/windows/cd.md b/pages.ja/windows/cd.md index 50a79400d800b0..965a72ff3af1ed 100644 --- a/pages.ja/windows/cd.md +++ b/pages.ja/windows/cd.md @@ -1,7 +1,7 @@ # cd -> 現在の作業ディレクトリの名前を表示するか、現在の作業ディレクトリを変更します -> 詳しくはこちら: . +> 現在の作業ディレクトリの名前を表示するか、現在の作業ディレクトリを変更します。 +> 詳しくはこちら: - 同じドライブ内のディレクトリに移動します: diff --git a/pages.ja/windows/choco-apikey.md b/pages.ja/windows/choco-apikey.md index 93cc4951377b38..6058de53f82fba 100644 --- a/pages.ja/windows/choco-apikey.md +++ b/pages.ja/windows/choco-apikey.md @@ -1,7 +1,7 @@ -# choco-apikey +# choco apikey -> ChocolateyソースのAPIキーを管理します -> 詳しくはこちら: . +> ChocolateyソースのAPIキーを管理します。 +> 詳しくはこちら: - ソースとそのAPIキーのリストを表示します: diff --git a/pages.ja/windows/choco-feature.md b/pages.ja/windows/choco-feature.md index 4449eb7bcd291d..b328722a9cc711 100644 --- a/pages.ja/windows/choco-feature.md +++ b/pages.ja/windows/choco-feature.md @@ -1,7 +1,7 @@ # choco feature -> Chocolateyで機能を操作します. -> 詳しくはこちら: . +> Chocolateyで機能を操作します。 +> 詳しくはこちら: - 利用可能な機能のリストを表示します: diff --git a/pages.ja/windows/choco-info.md b/pages.ja/windows/choco-info.md index faa43df89d95b2..8efb31d1f4489a 100644 --- a/pages.ja/windows/choco-info.md +++ b/pages.ja/windows/choco-info.md @@ -1,7 +1,7 @@ # choco info -> Chocolateyのパッケージに関する詳細情報を表示します -> 詳しくはこちら: . +> Chocolateyのパッケージに関する詳細情報を表示します。 +> 詳しくはこちら: - 特定のパッケージに関する情報を表示します: diff --git a/pages.ja/windows/choco.md b/pages.ja/windows/choco.md index dde497a5a44750..a00ad7e4a3cc94 100644 --- a/pages.ja/windows/choco.md +++ b/pages.ja/windows/choco.md @@ -1,8 +1,8 @@ # choco -> Chocolateyパッケージマネージャーのコマンドラインインターフェイスです -> 詳細については、「choco install」、「choco upgrade」などのページを参照してください -> 詳しくはこちら: . +> Chocolateyパッケージマネージャーのコマンドラインインターフェイスです。 +> `choco install` のようないくつかのサブコマンドには、使用方法についての独自のドキュメントがあります。 +> 詳しくはこちら: - Chocolateyコマンドを実行します: diff --git a/pages.ja/windows/chrome.md b/pages.ja/windows/chrome.md new file mode 100644 index 00000000000000..5dbe1470e7c86f --- /dev/null +++ b/pages.ja/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> このコマンドは `chromium` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr chromium` diff --git a/pages.ja/windows/cinst.md b/pages.ja/windows/cinst.md new file mode 100644 index 00000000000000..64b796da46e4c0 --- /dev/null +++ b/pages.ja/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> このコマンドは `choco install` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr choco install` diff --git a/pages.ja/windows/clip.md b/pages.ja/windows/clip.md index e23e7235571d60..f45e297a645db9 100644 --- a/pages.ja/windows/clip.md +++ b/pages.ja/windows/clip.md @@ -1,7 +1,7 @@ # clip -> 入力コンテンツをWindowsクリップボードにコピーします -> 詳しくはこちら: . +> 入力コンテンツをWindowsクリップボードにコピーします。 +> 詳しくはこちら: - コマンドライン出力をWindowsクリップボードにパイプします: diff --git a/pages.ja/windows/clist.md b/pages.ja/windows/clist.md new file mode 100644 index 00000000000000..df1f23a37b822f --- /dev/null +++ b/pages.ja/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> このコマンドは `choco list` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr choco list` diff --git a/pages.ja/windows/cls.md b/pages.ja/windows/cls.md index 50025bf70f8d97..574cba64a1c6e8 100644 --- a/pages.ja/windows/cls.md +++ b/pages.ja/windows/cls.md @@ -1,7 +1,7 @@ # cls -> 画面をクリアします -> 詳しくはこちら: . +> 画面をクリアします。 +> 詳しくはこちら: - 画面をクリアします: diff --git a/pages.ja/windows/cmd.md b/pages.ja/windows/cmd.md index bd60973c78b98c..9eb9be6e8afc83 100644 --- a/pages.ja/windows/cmd.md +++ b/pages.ja/windows/cmd.md @@ -1,7 +1,7 @@ # cmd -> Windowsコマンドインタープリター -> 詳しくはこちら: . +> Windowsコマンドインタープリター。 +> 詳しくはこちら: - コマンドインタープリターの新しいインスタンスを開始します: diff --git a/pages.ja/windows/cpush.md b/pages.ja/windows/cpush.md new file mode 100644 index 00000000000000..2c6b2e13ddfdcb --- /dev/null +++ b/pages.ja/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> このコマンドは `choco-push` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr choco-push` diff --git a/pages.ja/windows/cuninst.md b/pages.ja/windows/cuninst.md new file mode 100644 index 00000000000000..fb24f9d7732b60 --- /dev/null +++ b/pages.ja/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> このコマンドは `choco uninstall` のエイリアスです。 +> 詳しくはこちら: + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr choco uninstall` diff --git a/pages.ja/windows/curl.md b/pages.ja/windows/curl.md new file mode 100644 index 00000000000000..69ff1956c8d898 --- /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/dir.md b/pages.ja/windows/dir.md index 9a0ac8724382ce..96ee534d85f79a 100644 --- a/pages.ja/windows/dir.md +++ b/pages.ja/windows/dir.md @@ -1,7 +1,7 @@ # dir -> ディレクトリの内容を一覧表示します -> 詳しくはこちら: . +> ディレクトリの内容を一覧表示します。 +> 詳しくはこちら: - 現在のディレクトリの内容を表示します: diff --git a/pages.ja/windows/find.md b/pages.ja/windows/find.md index 7c596fd8160c9b..882564b7abb11a 100644 --- a/pages.ja/windows/find.md +++ b/pages.ja/windows/find.md @@ -1,7 +1,7 @@ # find -> 1つ以上のファイルで指定された文字列を検索します -> 詳しくはこちら: . +> 1つ以上のファイルで指定された文字列を検索します。 +> 詳しくはこちら: - 指定された文字列を含む行を検索します: diff --git a/pages.ja/windows/ipconfig.md b/pages.ja/windows/ipconfig.md index 9f293c567c915f..a6ef3b5f1c5767 100644 --- a/pages.ja/windows/ipconfig.md +++ b/pages.ja/windows/ipconfig.md @@ -1,7 +1,7 @@ # ipconfig > Windowsのネットワーク構成を表示および管理します。 -> 詳しくはこちら: . +> 詳しくはこちら: - ネットワークアダプタのリストを表示します: diff --git a/pages.ja/windows/iwr.md b/pages.ja/windows/iwr.md new file mode 100644 index 00000000000000..3c397636cc52e2 --- /dev/null +++ b/pages.ja/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> このコマンドは `invoke-webrequest` のエイリアスです。 + +- オリジナルのコマンドのドキュメントを表示する: + +`tldr invoke-webrequest` diff --git a/pages.ja/windows/mkdir.md b/pages.ja/windows/mkdir.md index 42e8afe4e1348a..1bfb5c59b2fc2a 100644 --- a/pages.ja/windows/mkdir.md +++ b/pages.ja/windows/mkdir.md @@ -1,7 +1,7 @@ # mkdir -> ディレクトリを作成します -> 詳しくはこちら: . +> ディレクトリを作成します。 +> 詳しくはこちら: - ディレクトリを作成します: diff --git a/pages.ja/windows/mklink.md b/pages.ja/windows/mklink.md index e66fe3a6deacda..3597cce934250d 100644 --- a/pages.ja/windows/mklink.md +++ b/pages.ja/windows/mklink.md @@ -1,7 +1,7 @@ # mklink -> シンボリックリンクを作成します -> 詳しくはこちら: . +> シンボリックリンクを作成します。 +> 詳しくはこちら: - ファイルへのシンボリックリンクを作成します: diff --git a/pages.ja/windows/pwsh-where.md b/pages.ja/windows/pwsh-where.md new file mode 100644 index 00000000000000..fb17800a54ec94 --- /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 00000000000000..1c9c1108fe7e14 --- /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 00000000000000..10953de4e1d5ad --- /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 00000000000000..185089d6aa539d --- /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/common/2to3.md b/pages.ko/common/2to3.md new file mode 100644 index 00000000000000..4dac1b68228731 --- /dev/null +++ b/pages.ko/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> 파이썬 2 코드를 3으로 자동 변환. +> 더 많은 정보: . + +- 파일을 변경하지않고, 변경될 내용을 출력 (모의 테스트): + +`2to3 {{경로/파일.py}}` + +- 파이썬 2 파일을 3 파일로 변경: + +`2to3 --write {{경로/파일.py}}` + +- 특정 파이썬 2 기능을 파이썬 3로 변경 (아래는 raw_input과 print를 수정하는 예): + +`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/디렉토리/경로}}` + +- 2to3을 멀티쓰레드로 실행: + +`2to3 --processes={{4}} --output-dir={{파이썬3/디렉토리/경로}} --write --nobackups --no-diff {{파이썬2/디렉토리/경로}}` diff --git a/pages.ko/common/7z.md b/pages.ko/common/7z.md index 555cc0745fcce3..6ad65c0685f071 100644 --- a/pages.ko/common/7z.md +++ b/pages.ko/common/7z.md @@ -1,7 +1,7 @@ # 7z > 높은 압축률을 보여주는 파일 압축 프로그램. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 또는 디렉토리 압축하기: @@ -15,7 +15,7 @@ `7z x {{archived.7z}}` -- 사용자정의 출력 경로로 압축 출력 : +- 사용자정의 출력 경로로 압축 출력: `7z x {{archived.7z}} -o{{경로/출력}}` @@ -25,7 +25,7 @@ - 특정 압축 타입으로 추출: -`7z a -t{{zip|gzip|bzip2|tar}} {{archived.7z}} {{경로/파일명_또는_디렉토리명}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{archived.7z}} {{경로/파일명_또는_디렉토리명}}` - 사용가능한 압축 타입 리스트: diff --git a/pages.ko/common/7za.md b/pages.ko/common/7za.md index 4e47c963f60d58..1b9aa1a70e9bea 100644 --- a/pages.ko/common/7za.md +++ b/pages.ko/common/7za.md @@ -1,25 +1,37 @@ # 7za > 높은 파일 압축률을 보여주는 파일 압축 프로그램. -> 더 적은 압축 타입을 지원하는 `7z`의 독립형 버전. -> 더 많은 정보: . +> 더 적은 압축 타입을 지원하지만, 크로스플랫폼인 점을 제외하면 `7z`과 유사합니다. +> 더 많은 정보: . - 파일이나 디렉토리 압축하기: -`7za a {{archived.7z}} {{path/to/file_or_directory}}` +`7za a {{경로/archived.7z}} {{파일_혹은_디렉토리/의/경로}}` + +- 압축파일 암호화 (including file names): + +`7za a {{경로/encrypted.7z}} -p{{비밀번호}} -mhe=on {{경로/archive.7z}}` - 기존 디렉토리 경로에 존재하는 7z 파일 추출: -`7za x {{archived}}` +`7za x {{archive.7z}}` + +- 특정 디렉토리에 압축파일 추출: + +`7za x {{경로/archive.7z}} -o{{아웃풋/의/경로}}` + +- stdout에 압축파일 추출: + +`7za x {{경로/archive.7z}} -so` - 특정 압축 타입을 이용하여 추출하기: `7za a -t{{zip|gzip|bzip2|tar}} {{archived}} {{path/to/file_or_directory}}` -- 사용가능한 압축 타입 리스트: +- 압축 파일의 내용 리스트: -`7za i` +`7za l {{경로/archive.7z}}` -- 압축 파일의 내용 리스트: +- 사용가능한 압축 타입 리스트: -`7za l {{archived}}` +`7za i` diff --git a/pages.ko/common/7zr.md b/pages.ko/common/7zr.md index b535d06f0e60ae..381fd06fb24570 100644 --- a/pages.ko/common/7zr.md +++ b/pages.ko/common/7zr.md @@ -2,16 +2,32 @@ > 높은 파일압축률을 보여주는 압축 프로그램. > .7z파일들만을 지원하는 `7z`의 독립형 버전. -> 더 많은 정보: . +> 더 많은 정보: . - 파일이나 디렉토리 압축하기: -`7zr a {{archived.7z}} {{경로/파일명_또는_디렉토리명}}` +`7zr a {{경로/archived.7z}} {{경로/파일명_또는_디렉토리명}}` + +- 압축파일 암호화 (including file names): + +`7zr a {{경로/encrypted.7z}} -p{{비밀번호}} -mhe=on {{경로/archive.7z}}` - 기존 디렉토리 경로에 존재하는 7z파일 추출하기: `7zr x {{archived.7z}}` +- 특정 디렉토리에 압축파일 추출: + +`7zr x {{경로/archive.7z}} -o{{아웃풋/의/경로}}` + +- stdout에 압축파일 추출: + +`7zr x {{경로/archive.7z}} -so` + - 압축 파일의 내용 리스트: -`7zr l {{archived.7z}}` +`7zr l {{경로/archived.7z}}` + +- 사용가능한 압축 타입 리스트: + +`7zr i` diff --git a/pages.ko/common/[.md b/pages.ko/common/[.md new file mode 100644 index 00000000000000..104a168196bf6a --- /dev/null +++ b/pages.ko/common/[.md @@ -0,0 +1,33 @@ +# [ + +> 파일 형식 확인 및 값 비교. +> 조건이 참이면 0을 반환하고, 거짓이면 1을 반환합니다. +> 더 많은 정보: . + +- 주어진 변수가 문자열과 같은지/다른지 비교: + +`[ "${{변수}}" {{==|!=}} "{{문자열}}" ]` + +- 주어진 변수가 주어진 숫자와 같은지[eq]/다른지[ne]/보다 큰지[gt]/보다 작은지[lt]/크거나 같은지[ge]/작거나 같은지[le] 비교: + +`[ "${{변수}}" -{{eq|ne|gt|lt|ge|le}} {{숫자}} ]` + +- 지정된 변수에 비어 있지 않은 값이 있는지 확인: + +`[ -n "${{변수}}" ]` + +- 지정된 변수가 비어있는지 확인: + +`[ -z "${{변수}}" ]` + +- 지정된 파일이 있는지 확인: + +`[ -f {{파일/의/경로}} ]` + +- 지정된 디렉토리가 있는지 확인: + +`[ -d {{디렉토리/의/경로}} ]` + +- 지정된 파일 혹은 디렉토리가 있는지 확인: + +`[ -e {{디렉토리_혹은_파일/의/경로}} ]` diff --git a/pages.ko/common/[[.md b/pages.ko/common/[[.md new file mode 100644 index 00000000000000..91cdbe748d948d --- /dev/null +++ b/pages.ko/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> 파일 형식 확인 및 값 비교. +> 조건이 참이면 0을 반환하고, 거짓이면 1을 반환합니다. +> 더 많은 정보: . + +- 주어진 변수가 특정 문자열과 같은지/다른지 테스트: + +`[[ ${{변수}} {{==|!=}} "{{문자열}}" ]]` + +- 주어진 문자열이 특정 glob/regex 와 매칭되는지 테스트: + +`[[ ${{변수}} {{==|=~}} {{패턴}} ]]` + +- 주어진 변수가 주어진 숫자와 같은지[eq]/다른지[ne]/보다 큰지[gt]/보다 작은지[lt]/크거나 같은지[ge]/작거나 같은지[le] 비교: + +`[[ ${{변수}} -{{eq|ne|gt|lt|ge|le}} {{숫자}} ]]` + +- 지정된 변수에 비어 있지 않은 값이 있는지 확인: + +`[[ -n ${{변수}} ]]` + +- 지정된 변수가 비어있는지 확인: + +`[[ -z ${{변수}} ]]` + +- 지정된 파일이 있는지 확인: + +`[[ -f {{파일/의/경로}} ]]` + +- 지정된 디렉토리가 있는지 확인: + +`[[ -d {{디렉토리/의/경로}} ]]` + +- 지정된 파일 혹은 디렉토리가 있는지 확인: + +`[[ -e {{디렉토리_혹은_파일/의/경로}} ]]` diff --git a/pages.ko/common/aapt.md b/pages.ko/common/aapt.md new file mode 100644 index 00000000000000..b7cf07e9024f03 --- /dev/null +++ b/pages.ko/common/aapt.md @@ -0,0 +1,17 @@ +# aapt + +> Android Asset Packaging Tool. +> 안드로이드 앱의 소스를 컴파일하고 패키징합니다. +> 더 많은 정보: . + +- APK 아카이브에 포함된 파일 나열: + +`aapt list {{경로/app.apk}}` + +- 앱의 메타데이타 출력 (버전, 권한, 등등...): + +`aapt dump badging {{경로/app.apk}}` + +- 지정된 디렉토리에 새 APK 아카이브 생성: + +`aapt package -F {{경로/app.apk}} {{디렉토리/의/경로}}` diff --git a/pages.ko/common/ack.md b/pages.ko/common/ack.md index d0008ded61ef1d..bb2afbfe6bd0d3 100644 --- a/pages.ko/common/ack.md +++ b/pages.ko/common/ack.md @@ -1,7 +1,7 @@ # ack > 프로그래머에게 최적화된 grep과 같은 검색툴. -> 더 많은 정보: . +> 더 많은 정보: . - "foo"를 포함하고 있는 파일 검색: diff --git a/pages.ko/common/alacritty.md b/pages.ko/common/alacritty.md index f43feaaa26e256..5a4d79d76590ed 100644 --- a/pages.ko/common/alacritty.md +++ b/pages.ko/common/alacritty.md @@ -1,9 +1,9 @@ # alacritty > 교차 플랫폼으로, GPU-가속 터미널 에뮬레이터. -> 더 많은 정보: . +> 더 많은 정보: . -- 새 alacritty 창 열기: +- 새 Alacritty 창 열기: `alacritty` @@ -11,14 +11,14 @@ `alacritty --working-directory {{경로/디렉토리명}}` -- 새로운 alacritty 창에서 명령어 실행: +- 새로운 Alacritty 창에서 명령어 실행: `alacritty -e {{명령어}}` -- 대체 구성파일 지정 (기본값 : $XDG_CONFIG_HOME/alacritty/alacritty.yml): +- 대체 구성파일 지정 (기본값 : `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): `alacritty --config-file {{경로/config.yml}}` -- 재배치가 가능한 라이브 구성 설정으로 실행 (기본적으로 alacritty.yml에서도 활성화 가능): +- 재배치가 가능한 라이브 구성 설정으로 실행 (기본적으로 `alacritty.yml` 에서도 활성화 가능): `alacritty --live-config-reload --config-file {{경로/config.yml}}` diff --git a/pages.ko/common/aria2.md b/pages.ko/common/aria2.md index 3cc1dcf6e6c437..4fc18b6bec067d 100644 --- a/pages.ko/common/aria2.md +++ b/pages.ko/common/aria2.md @@ -1,33 +1,7 @@ # aria2 -> 경량 멀티 프로토콜 및 멀티 소스 명령줄 다운로드 유틸리티입니다. -> HTTP, HTTPS, FTP, SFTP, BitTorrent와 Metalink를 지원합니다. -> 더 많은 정보: . +> 이 명령은 `aria2c` 의 에일리어스 (별칭) 입니다. -- 웹 리소스 다운로드: +- 원본 명령의 도큐멘테이션 (설명서) 보기: -`aria2c {{http://example.org/myLinux.iso}}` - -- 멀티 소스 리소스 다운로드: - -`aria2c {{http://mirror1.org/myLinux.iso}} {{http://mirror2.org/myLinux.iso}}` - -- 호스트당 2개의 연결을 사용하여 다운로드 : - -`aria2c -x{{2}} {{http://example.org/myLinux.iso}}` - -- Metalink URL로 다운로드: - -`aria2c {{http://example.org/myLinux.metalink}}` - -- BitTorrent URI로 다운로드: - -`aria2c {{http://example.org/myLinux.torrent}}` - -- BitTorrent Magnet URI로 다운로드: - -`aria2c {{'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'}}` - -- 파일로 URls 다운로드: - -`aria2c -i {{uris.txt}}` +`tldr aria2c` diff --git a/pages.ko/common/aria2c.md b/pages.ko/common/aria2c.md index 294bb7954ffd19..a503f325261d4e 100644 --- a/pages.ko/common/aria2c.md +++ b/pages.ko/common/aria2c.md @@ -12,18 +12,18 @@ `aria2c {{url_1}} {{url_2}}` -- 파일에 나열된 URI 다운로드 : +- 파일에 나열된 URI 다운로드: `aria2c -i {{filename}}` -- 여러 연결로 다운로드 : +- 여러 연결로 다운로드: `aria2c -s {{connections_num}} {{url}}` -- 사용자 이름과 암호가 있는 FTP 다운로드 : +- 사용자 이름과 암호가 있는 FTP 다운로드: `aria2c --ftp-user={{username}} --ftp-passwd={{password}} {{url}}` -- 다운로드 속도를 바이트/s로 제한 : +- 다운로드 속도를 바이트/s로 제한: `aria2c --max-download-limit={{speed}} {{url}}` diff --git a/pages.ko/common/arp.md b/pages.ko/common/arp.md index 7d583adf05a805..f7911c31a9711d 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/arping.md b/pages.ko/common/arping.md index c58410c102a938..4a23cb9c992e8e 100644 --- a/pages.ko/common/arping.md +++ b/pages.ko/common/arping.md @@ -20,7 +20,7 @@ `arping -c {{count}} {{host_ip}}` -- 브로드캐스트 ARP 요청 패킷을 통해 이웃 ARP 캐시 업데이트 : +- 브로드캐스트 ARP 요청 패킷을 통해 이웃 ARP 캐시 업데이트: `arping -U {{ip_to_broadcast}}` diff --git a/pages.ko/common/asar.md b/pages.ko/common/asar.md index 8699baa07357df..b65b061327026b 100644 --- a/pages.ko/common/asar.md +++ b/pages.ko/common/asar.md @@ -15,6 +15,6 @@ `asar extract-file {{archived.asar}} {{file}}` -- 보관소 파일의 내용을 나열 : +- 보관소 파일의 내용을 나열: `asar list {{archived.asar}}` diff --git a/pages.ko/common/asciinema.md b/pages.ko/common/asciinema.md index a52d3db5ead770..e5106c93994a62 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/asdf.md b/pages.ko/common/asdf.md index b09686456ba389..44be4b593ce042 100644 --- a/pages.ko/common/asdf.md +++ b/pages.ko/common/asdf.md @@ -1,6 +1,6 @@ # asdf -> 여러 패키지 버전을 관리하기 위한 CLI(Command Line Interface) 입니다. +> 여러 패키지 버전을 관리하기 위한 CLI(Command-line Interface) 입니다. > 더 많은 정보: . - 사용 가능한 모든 플러그인을 나열: diff --git a/pages.ko/common/assimp.md b/pages.ko/common/assimp.md index cadf782ce12df1..be33643b4cc0f5 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포맷으로 내보낼 수 있습니다. -> 더 많은 정보: . +> 더 많은 정보: . - 지원되는 모든 가져오기 형식을 나열: @@ -28,6 +28,6 @@ `assimp help` -- 특정 하위 명령에 대한 도움말 얻기 (예 : 특정 하위 명령에 특정 매개 변수) : +- 특정 하위 명령에 대한 도움말 얻기 (예 : 특정 하위 명령에 특정 매개 변수): `assimp {{하위명령어}} --help` diff --git a/pages.ko/common/astyle.md b/pages.ko/common/astyle.md index d82591eff62708..1f59da9817ea6a 100644 --- a/pages.ko/common/astyle.md +++ b/pages.ko/common/astyle.md @@ -8,7 +8,7 @@ `astyle {{소스파일명}}` -- java 스타일 코드로 적용: +- Java 스타일 코드로 적용: `astyle --style=java {{경로/파일명}}` diff --git a/pages.ko/common/at.md b/pages.ko/common/at.md index f2bec901da7828..a6a8a97269eef8 100644 --- a/pages.ko/common/at.md +++ b/pages.ko/common/at.md @@ -2,7 +2,7 @@ > 명령 실행 후 한 번 실행합니다. > 서비스 AD(또는 ATRUN)는 실제 실행을 위해 실행되어야 합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 표준 입력에서 명령을 5분 내에 실행(작업이 끝나면 `Ctrl + D` 를 누르세요): diff --git a/pages.ko/common/autossh.md b/pages.ko/common/autossh.md index a6eb678d993d61..925138acd831df 100644 --- a/pages.ko/common/autossh.md +++ b/pages.ko/common/autossh.md @@ -1,7 +1,7 @@ # autossh > SSH 연결을 실행, 모니터링 및 재시작. port 재전송 tunnel을 유지하기 위해 자동 재연결. 모든 ssh 플래그 허용. -> 더 많은 정보: . +> 더 많은 정보: . - SSH session을 열고, 모니터링 포트가 데이터를 리턴하지 못하면 다시 시작: diff --git a/pages.ko/common/aws-s3.md b/pages.ko/common/aws-s3.md index 94f151437dd0a4..044f084bac8f33 100644 --- a/pages.ko/common/aws-s3.md +++ b/pages.ko/common/aws-s3.md @@ -1,7 +1,7 @@ # aws s3 > AWS S3용 CLI - 웹 서비스 인터페이스를 통해 스토리지를 제공합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 버킷 안의 파일 보기: diff --git a/pages.ko/common/az.md b/pages.ko/common/az.md index 8437b86f5d1cf9..c22c843d503ea2 100644 --- a/pages.ko/common/az.md +++ b/pages.ko/common/az.md @@ -1,7 +1,7 @@ # az > Microsoft Azure의 공식 CLI tool입니다. -> 더 많은 정보: . +> 더 많은 정보: . - Azure에 로그인: diff --git a/pages.ko/common/babel.md b/pages.ko/common/babel.md index f5521331d1c9c7..507800fed50029 100644 --- a/pages.ko/common/babel.md +++ b/pages.ko/common/babel.md @@ -1,6 +1,6 @@ # babel -> 코드를 JavaScript ES6/ES7문법에서 ES5문법으로 변환하는 변환기입니다. +> 코드를 JavaScript ES6/ES7 문법에서 ES5 문법으로 변환하는 변환기입니다. > 더 많은 정보: . - 지정된 입력 파일을 변환하고 `stdout'으로 출력: @@ -11,7 +11,7 @@ `babel {{path/to/input_file}} --out-file {{path/to/output_file}}` -- 입력 파일이 변경 될 때마다 변환: +- 입력 파일이 변경될 때마다 변환: `babel {{path/to/input_file}} --watch` @@ -19,11 +19,11 @@ `babel {{path/to/input_directory}}` -- 디렉토리에서 지정된 쉼표로 구분 된 파일 무시: +- 디렉토리에서 지정된 쉼표로 구분된 파일 무시: `babel {{path/to/input_directory}} --ignore {{ignored_files}}` -- 축소 된 JavaScript로 변환 및 출력: +- 축소된 JavaScript로 변환 및 출력: `babel {{path/to/input_file}} --minified` diff --git a/pages.ko/common/banner.md b/pages.ko/common/banner.md index a5f1ef118762aa..9fbd7410a008b6 100644 --- a/pages.ko/common/banner.md +++ b/pages.ko/common/banner.md @@ -1,7 +1,7 @@ # banner > 주어진 인자를 큰 ASCII art로 출력. -> 더 많은 정보: . +> 더 많은 정보: . - 텍스트 메시지를 큰 배너로 출력(따옴표는 선택 사항): diff --git a/pages.ko/common/bash.md b/pages.ko/common/bash.md index e7ad8cab0bb868..0558f66736a552 100644 --- a/pages.ko/common/bash.md +++ b/pages.ko/common/bash.md @@ -1,32 +1,33 @@ # bash -> Bourne-Again SHell. `sh`-호환 명령 행 인터프리터. -> 더 많은 정보: . +> Bourne-Again SHell, an `sh`- 호환 명령 행 인터프리터. +> 참조 : `zsh`, `histexpand` (history expansion). +> 더 많은 정보: . -- 대화식 쉘 시작: +- 대화형 쉘 시작하기: `bash` -- 명령 실행: +- 설정 파일 로딩 없이 대화형 쉘 시작하기: -`bash -c "{{command}}"` +`bash --norc` -- 파일에서 명령 실행: +- 특정 명령어([c]ommands) 실행하기: -`bash {{file.sh}}` +`bash -c "{{echo 'bash가 실행되었습니다'}}"` -- 파일에서 명령 실행하고, 터미널에서 실행 된 모든 명령 기록: +- 특정 스크립트 실행하기: -`bash -x {{file.sh}}` +`bash {{경로/대상/script.sh}}` -- 파일에서 명령 실행하고, 첫 번째 에러에서 중지: +- 각 명령어 실행 전 명령어 인쇄하며 특정 스크립트 실행하기: -`bash -e {{file.sh}}` +`bash -x {{경로/대상/script.sh}}` -- stdin에서 명령 실행: +- 첫 번째 에러([e]rror)가 발생하면 중지되도록 하며 특정 스크립트 실행하기: -`bash -s` +`bash -e {{경로/대상/script.sh}}` -- bash의 버전 정보 출력 (`echo $BASH_VERSION`을 사용하여 버전 문자열만 표시): +- stdin에서 bash 실행하기: -`bash --version` +`{{echo "echo 'bash가 실행되었습니다'"}} | bash` diff --git a/pages.ko/common/bat.md b/pages.ko/common/bat.md index 2db1ae1dc9a87b..5adf6dc6cf3b17 100644 --- a/pages.ko/common/bat.md +++ b/pages.ko/common/bat.md @@ -1,6 +1,7 @@ # bat > 파일들을 출력하고 연결. 구문 강조와 Git 통합을 가진`cat`클론. +> 더 많은 정보: . - 파일 내용을 표준 출력으로 출력: diff --git a/pages.ko/common/batch.md b/pages.ko/common/batch.md index 86ce217c062307..d20ba483932774 100644 --- a/pages.ko/common/batch.md +++ b/pages.ko/common/batch.md @@ -1,7 +1,7 @@ # batch > 시스템 로드 레벨이 허가된 후, 명령을 실행하십시오. 실제로 실행하기 위해서는 atd (혹은 atrun) 를 실행해야합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 표준 입력에서 명령 실행하기 (완료 시 `Ctrl + D` 를 누릅니다): diff --git a/pages.ko/common/bc.md b/pages.ko/common/bc.md index a9f8a1ed656037..435299b5dc7a7e 100644 --- a/pages.ko/common/bc.md +++ b/pages.ko/common/bc.md @@ -1,7 +1,7 @@ # bc > 계산기의 기능을 수행합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 표준 Math 라이브러리를 사용한 대화형 모드에서 계산기 실행하기: diff --git a/pages.ko/common/beanstalkd.md b/pages.ko/common/beanstalkd.md index 617b7190b87c36..88b1a16d7e3f60 100644 --- a/pages.ko/common/beanstalkd.md +++ b/pages.ko/common/beanstalkd.md @@ -1,7 +1,7 @@ # beanstalkd > 단순하고 일반적인 work-queue 서버. -> 더 많은 정보:. +> 더 많은 정보: . - beanstalkd를 시작하고, 11300 포트로 듣기: diff --git a/pages.ko/common/bedtools.md b/pages.ko/common/bedtools.md index 549ad3fe7f22ff..c9495577e5486e 100644 --- a/pages.ko/common/bedtools.md +++ b/pages.ko/common/bedtools.md @@ -1,7 +1,7 @@ # bedtools > 유전자 분석 작업을 위한 도구의 swiss-army knife. BAM, BED, GFF/GTF, VCF 형식으로 데이터를 교차, 그룹화, 변환 및 카운트하는 데 사용. -> 더 많은 정보: . +> 더 많은 정보: . - sequence의 strand를 기준으로 두개의 파일을 교차하고 결과를 `path/to/output_file`의 경로에 저장: diff --git a/pages.ko/common/behat.md b/pages.ko/common/behat.md index c3bd2b249d795a..462bd5a2991221 100644 --- a/pages.ko/common/behat.md +++ b/pages.ko/common/behat.md @@ -1,7 +1,7 @@ # behat > Behaviour-Driven 개발을 위한 PHP 프레임워크. -> 더 많은 정보: . +> 더 많은 정보: . - 새로운 Behat 프로젝트 초기화: diff --git a/pages.ko/common/bitcoin-cli.md b/pages.ko/common/bitcoin-cli.md index 8be5971a240037..f6e84ceffd6aa4 100644 --- a/pages.ko/common/bitcoin-cli.md +++ b/pages.ko/common/bitcoin-cli.md @@ -1,7 +1,7 @@ # bitcoin-cli > RPC 호출을 통해 비트코인 데몬과 상호 작용하는 커맨드라인 클라이언트.`bitcoin.conf`에 정의된 구성 사용. -> 더 많은 정보:. +> 더 많은 정보: . - 지정된 주소로 트랜잭션 전송: diff --git a/pages.ko/common/black.md b/pages.ko/common/black.md index 4718492138de40..1891aa49c4666c 100644 --- a/pages.ko/common/black.md +++ b/pages.ko/common/black.md @@ -1,7 +1,7 @@ # black > Python 자동 코드 formatter. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 또는 전체 디렉토리의 자동 포맷: @@ -22,3 +22,7 @@ - 파일 또는 디렉토리가 stderr에 배타적 오류 메시지를 발생시키는 자동 포맷: `black --quiet {{파일_또는_디렉토리/의/경로}}` + +- 작은 따옴표를 큰 따옴표로 바꾸지 않고 파일 또는 디렉토리 자동 서식 지정(채택 도우미, 새 프로젝트에 사용하지 마세요): + +`black --skip-string-normalization {{파일_또는_디렉토리/의/경로}}` diff --git a/pages.ko/common/blackfire.md b/pages.ko/common/blackfire.md index 0493ea199b37ea..2b013336daef15 100644 --- a/pages.ko/common/blackfire.md +++ b/pages.ko/common/blackfire.md @@ -1,7 +1,7 @@ # blackfire > PHP용 커맨드라인 프로파일링 도구. -> 더 많은 정보: . +> 더 많은 정보: . - Blackfire 클라이언트 초기화 및 구성: diff --git a/pages.ko/common/blender.md b/pages.ko/common/blender.md index ac43cda7229b60..4f950b3872764e 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/bower.md b/pages.ko/common/bower.md index f4161db25d612a..09139f6845d7d4 100644 --- a/pages.ko/common/bower.md +++ b/pages.ko/common/bower.md @@ -23,7 +23,7 @@ `bower help {{명령}}` -- 패키지에 대한 bower.json 파일 생성 : +- 패키지에 대한 bower.json 파일 생성: `bower init` diff --git a/pages.ko/common/box.md b/pages.ko/common/box.md index 469377250d3d2a..cbce50fcd6a7c2 100644 --- a/pages.ko/common/box.md +++ b/pages.ko/common/box.md @@ -1,7 +1,7 @@ # box > Phar의 빌드 및 관리를 위한 PHP 어플리케이션. -> 더 많은 정보: . +> 더 많은 정보: . - 새 Phar 파일 작성: diff --git a/pages.ko/common/brew.md b/pages.ko/common/brew.md new file mode 100644 index 00000000000000..fb9b229b40a944 --- /dev/null +++ b/pages.ko/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> macOS와 Linux를 위한 패키지 관리자. +> 더 많은 정보: . + +- 공식(formula) 혹은 캐스크(cask)의 최신 안정 버전을 설치 (개발 버전을 원한다면 `--devel` 사용): + +`brew install {{formula}}` + +- 설치된 모든 공식(formulae)과 캐스크(casks) 나열: + +`brew list` + +- 설치된 특정 공식(formula) 혹은 캐스크(cask) 업그레이드 (옵션이 주어지지 않으면 모든 공식과 캐스크 업그레이드): + +`brew upgrade {{formula}}` + +- Homebrew 저장소에서 Homebrew와 함께 모든 공식(formulae)과 캐스크(casks)의 최신 버전 가져오기: + +`brew update` + +- 최신 버전이 아닌 공식(formulae)과 캐스크(casks) 나열: + +`brew outdated` + +- 사용 가능한 공식(formulae)과 캐스크(casks) 검색: + +`brew search {{text}}` + +- 공식(formula) 혹은 캐스크(cask)에 대한 정보 표시 (버전, 설치 경로, 의존성 등): + +`brew info {{formula}}` + +- 설치된 Homebrew에 문제가 있는 확인: + +`brew doctor` diff --git a/pages.ko/common/bundler.md b/pages.ko/common/bundler.md new file mode 100644 index 00000000000000..c39608d3579597 --- /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 96c84a79f91f7f..9f3c13edf5db31 100644 --- a/pages.ko/common/bzip2.md +++ b/pages.ko/common/bzip2.md @@ -1,7 +1,7 @@ # bzip2 > 블록 정렬 파일 압축기. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 압축하기: diff --git a/pages.ko/common/cargo.md b/pages.ko/common/cargo.md index f24c1d9138ca5f..079495d4474bf3 100644 --- a/pages.ko/common/cargo.md +++ b/pages.ko/common/cargo.md @@ -2,7 +2,7 @@ > Rust 패키지 관리프로그램. > Rust 프로젝트 및 해당 모듈 종속성(크레이트) 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 크레이트 검색: @@ -30,4 +30,4 @@ - 특정 쓰레드 수를 사용하여 구축(기본값은 CPU 코어 수): -`cargo build -j {{작업}}` +`cargo build --jobs {{작업}}` diff --git a/pages.ko/common/cd.md b/pages.ko/common/cd.md index 43514667d3ebba..8f15cc00276ed5 100644 --- a/pages.ko/common/cd.md +++ b/pages.ko/common/cd.md @@ -1,7 +1,7 @@ # cd > 현재 작업중인 디렉토리 변경. -> 더 많은 정보: . +> 더 많은 정보: . - 주어진 디렉토리로 이동: diff --git a/pages.ko/common/chromium.md b/pages.ko/common/chromium.md index 672c4e8d1da316..8a0d8b4a1a522f 100644 --- a/pages.ko/common/chromium.md +++ b/pages.ko/common/chromium.md @@ -1,7 +1,7 @@ # chromium > 구글에서 제공하는 오픈소스 웹 브라우저. -> 더 많은 정보: . +> 더 많은 정보: . - 파일 열기: diff --git a/pages.ko/common/clamav.md b/pages.ko/common/clamav.md new file mode 100644 index 00000000000000..013a7cb5d67e9a --- /dev/null +++ b/pages.ko/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 이 명령은 `clamdscan` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clamdscan` diff --git a/pages.ko/common/clang++.md b/pages.ko/common/clang++.md new file mode 100644 index 00000000000000..b12923a450b2b0 --- /dev/null +++ b/pages.ko/common/clang++.md @@ -0,0 +1,25 @@ +# clang++ + +> C++ 소스 파일을 컴파일합니다. +> LLVM의 일부. +> 더 많은 정보: . + +- 소스 코드를 실행 가능한 바이너리 파일로 컴파일합니다: + +`clang++ {{입력/파일/경로.cpp}} -o {{출력/파일/경로}}` + +- (거의) 모든 에러와 경고 메시지를 표시합니다: + +`clang++ {{입력/파일/경로.cpp}} -Wall -o {{출력/파일/경로}}` + +- 컴파일할 때 사용할 언어 표준을 지정합니다: + +`clang++ {{입력/파일/경로.cpp}} -std={{c++20}} -o {{출력/파일/경로}}` + +- 소스 파일과 다른 경로에 있는 라이브러리를 포함합니다: + +`clang++ {{입력/파일/경로.cpp}} -o {{출력/파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리/이름}}` + +- 소스 코드를 LLVM Intermediate Representation(IR)로 컴파일 합니다: + +`clang++ -S -emit-llvm {{입력/파일/경로.cpp}} -o {{출력/파일/경로.ll}}` diff --git a/pages.ko/common/clang-cpp.md b/pages.ko/common/clang-cpp.md new file mode 100644 index 00000000000000..5d7d104b7f57f9 --- /dev/null +++ b/pages.ko/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> 이 명령어는 `clang++`의 별칭입니다. + +- 원본 명령어의 문서 확인: + +`tldr clang++` diff --git a/pages.ko/common/clang.md b/pages.ko/common/clang.md index 4572028215d3b5..74928ef6a09c72 100644 --- a/pages.ko/common/clang.md +++ b/pages.ko/common/clang.md @@ -1,9 +1,9 @@ # clang -> C, C++ 그리고 Objective-C 소스 파일을 컴파일합니다. GCC의 드롭인 대체로 사용할 수 있습니다. +> C, C++ 그리고 Objective-C 소스 파일을 위한 컴파일러입니다. GCC의 드롭인 대체로 사용할 수 있습니다. > 더 많은 정보: . -- 실행 가능한 바이너리 파일로 소스 코드를 컴파일합니다: +- 소스 코드를 실행 가능한 바이너리 파일로 컴파일합니다: `clang {{입력_소스.c}} -o {{출력_실행가능파일}}` @@ -18,3 +18,7 @@ - 소스 코드를 LLVM Intermediate Representation(IR)로 컴파일 합니다: `clang -S -emit-llvm {{파일.c}} -o {{파일.ll}}` + +- 소스 코드를 링킹 없이 컴파일합니다: + +`clang -c {{입력_소스.c}}` diff --git a/pages.ko/common/clojure.md b/pages.ko/common/clojure.md new file mode 100644 index 00000000000000..114047c8e68d85 --- /dev/null +++ b/pages.ko/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> 이 명령은 `clj` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr clj` diff --git a/pages.ko/common/cmake.md b/pages.ko/common/cmake.md index a5d4f58f1550be..da893ee630a1f9 100644 --- a/pages.ko/common/cmake.md +++ b/pages.ko/common/cmake.md @@ -1,7 +1,7 @@ # cmake > 빌드 시스템을 생성하는 크로스 플랫폼으로 선택한 시스템에 따라 Makefiles, Visual Studio 프로젝트 또는 기타를 생성합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 작성 파일을 생성하고 이를 사용하여 원본과 동일한 디렉토리에서 프로젝트를 컴파일합니다: diff --git a/pages.ko/common/cmark.md b/pages.ko/common/cmark.md index ca63bdfd769cbc..4f7882335f3af9 100644 --- a/pages.ko/common/cmark.md +++ b/pages.ko/common/cmark.md @@ -1,9 +1,9 @@ # cmark -> Commonmark Markdown 텍스트를 다른 텍스트 형식으로 변환합니다. +> CommonMark Markdown 텍스트를 다른 텍스트 형식으로 변환합니다. > 더 많은 정보: . -- Commonmark Markdown 파일을 HTML 파일로 렌더링합니다: +- CommonMark Markdown 파일을 HTML 파일로 렌더링합니다: `cmark --to html {{파일명.md}}` @@ -15,6 +15,6 @@ `cmark --smart --to html {{파일명.md}}` -- utf8 문자들을 검증: +- UTF-8 문자들을 검증: `cmark --validate-utf8 {{파일명.md}}` diff --git a/pages.ko/common/code.md b/pages.ko/common/code.md index a772e66ede5aac..0ae6afdc321126 100644 --- a/pages.ko/common/code.md +++ b/pages.ko/common/code.md @@ -1,24 +1,36 @@ # code -> 비주얼 스튜디오 코드. +> 확장 가능한 크로스 플랫폼 코드 에디터. > 더 많은 정보: . -- VS Code 열기: +- Visual Studio Code 실행: `code` -- 현재 디렉토리에서 VS Code 열기: +- 특정 파일 혹은 디렉토리 열기: -`code .` +`code {{파일/혹은/디렉토리의/경로1 파일/혹은/디렉토리의/경로2 ...}}` -- 파일이나 디렉토리에서 VS Code 열기: +- 두 파일 비교: -`code {{경로/파일_혹은_디렉토리}}` +`code --diff {{파일의/경로1}} {{파일의/경로2}}` -- 현재 열려 있는 VS 코드 창에서 파일 또는 디렉토리를 열기: +- 특정 파일 혹은 디렉토리를 새로운 창에서 열기: -`code --reuse-window {{경로/파일_혹은_디렉토리}}` +`code --new-window {{파일/혹은/디렉토리의/경로1 파일/혹은/디렉토리의/경로2 ...}}` -- 두 개의 VS Code 파일 비교: +- 특정 확장 프로그램 설치/삭제: -`code -d {{파일1}} {{파일2}}` +`code --{{install|uninstall}}-extension {{publisher.extension}}` + +- 설치된 확장 프로그램 나열: + +`code --list-extensions` + +- 설치된 확장 프로그램을 버전과 함께 나열: + +`code --list-extensions --show-versions` + +- 사용자 정보를 특정 디렉토리에 저장하면서 관리자 (루트) 권한으로 에디터 실행: + +`sudo code --user-data-dir {{디렉토리/경로}}` diff --git a/pages.ko/common/cola.md b/pages.ko/common/cola.md new file mode 100644 index 00000000000000..0452adfc4f8973 --- /dev/null +++ b/pages.ko/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> 이 명령은 `git-cola` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr git-cola` diff --git a/pages.ko/common/composer.md b/pages.ko/common/composer.md index e0926a8c94a2dd..a5dbf859f50ada 100644 --- a/pages.ko/common/composer.md +++ b/pages.ko/common/composer.md @@ -7,7 +7,7 @@ `composer require {{사용자/패키지명}}` -- 프로젝트의 `composer.json` 안에 모든 의존성(dependency)를 설치합니다 : +- 프로젝트의 `composer.json` 안에 모든 의존성(dependency)를 설치합니다: `composer install` diff --git a/pages.ko/common/convert.md b/pages.ko/common/convert.md index a5d7a41ec62f7c..f48cb3afe3fad1 100644 --- a/pages.ko/common/convert.md +++ b/pages.ko/common/convert.md @@ -1,6 +1,6 @@ # convert -> Imagemagick 이미지 변환 도구. +> ImageMagick 이미지 변환 도구. > 더 많은 정보: . - JPG이미지를 PNG이미지로 변환: diff --git a/pages.ko/common/copyq.md b/pages.ko/common/copyq.md index 9a5fdf9445f6d2..bcfd58560c2830 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/cotton.md b/pages.ko/common/cotton.md index a4236064d2e5b9..1ad3bb352d512d 100644 --- a/pages.ko/common/cotton.md +++ b/pages.ko/common/cotton.md @@ -3,7 +3,7 @@ > 마크다운 테스트 사양 러너. > 더 많은 정보: . -- 특정 기본 url 사용하기: +- 특정 기본 URL 사용하기: `cotton -u {{기본_url}} {{파일}}.md` diff --git a/pages.ko/common/cron.md b/pages.ko/common/cron.md new file mode 100644 index 00000000000000..1e0bd179f269a2 --- /dev/null +++ b/pages.ko/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> 이 명령은 `crontab` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr crontab` diff --git a/pages.ko/common/crontab.md b/pages.ko/common/crontab.md index 95350a15c03f8d..924dfeed9b44b7 100644 --- a/pages.ko/common/crontab.md +++ b/pages.ko/common/crontab.md @@ -2,7 +2,7 @@ > 현재 사용자의 시간 간격으로 cron작업이 실행되도록 스케줄. > 작업 정의 형식: "(분) (시) (날짜) (달) (요일) 실행 할 명령". -> 더 많은 정보: . +> 더 많은 정보: . - 현재 사용자의 crontab파일 편집: @@ -28,6 +28,6 @@ `* * 3 Apr * {{실행_할_명령}}` -- 매주 금요일 02:30에 특정 스크립트를 실행하는 샘플 작업 : +- 매주 금요일 02:30에 특정 스크립트를 실행하는 샘플 작업: `30 2 * * Fri {{/script.sh/의/절대/경로}}` diff --git a/pages.ko/common/csc.md b/pages.ko/common/csc.md index 862a7dfb104943..e9ac7a4abb53d9 100644 --- a/pages.ko/common/csc.md +++ b/pages.ko/common/csc.md @@ -1,7 +1,7 @@ # csc > 마이크로 소프트 사의 C# 컴파일러. -> 더 많은 정보: . +> 더 많은 정보: . - 하나 이상의 C# 파일을 CIL 실행파일로 컴파일: diff --git a/pages.ko/common/curl.md b/pages.ko/common/curl.md index 5adf2a0a6a9553..e9fe67112f8cd1 100644 --- a/pages.ko/common/curl.md +++ b/pages.ko/common/curl.md @@ -6,31 +6,31 @@ - URL의 내용을 파일로 다운로드: -`curl {{http://example.com}} -o {{파일명}}` +`curl {{http://example.com}} --output {{파일명}}` - URL에 표시된 파일 명으로 출력을 저장하고 파일을 다운로드: -`curl -O {{http://example.com/filename}}` +`curl --remote-name {{http://example.com/filename}}` - [L]위치 리다이렉션 후 파일을 다운로드 하고, 자동으로 이전 파일 [C]전송(재시작): -`curl -O -L -C - {{http://example.com/filename}}` +`curl --remote-name --location --continue-at - {{http://example.com/filename}}` - 양식 인코딩 데이터 전송(`application/x-www-form-urlencoded`유형의 POST 요청): -`curl -d {{'name=bob'}} {{http://example.com/form}}` +`curl --data {{'name=bob'}} {{http://example.com/form}}` - 사용자 지정 HTTP 메서드를 사용하여 추가 헤더로 요청 전송: -`curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://example.com}}` +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}` - 적절한 컨텐츠 유형 헤더를 지정하여 JSON 포멧으로 데이터 전송: -`curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/users/123}}` +`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/123}}` - 서버 인증을 위한 사용자 이름 및 비밀번호 전달: -`curl -u myusername:mypassword {{http://example.com}}` +`curl --user myusername:mypassword {{http://example.com}}` - 리소스에 대한 클라이언트 인증서 및 키 전달, 인증서 유효성 검사 스킵: diff --git a/pages.ko/common/deluge-console.md b/pages.ko/common/deluge-console.md index ac40b7276ceda9..ecba3180bbb190 100644 --- a/pages.ko/common/deluge-console.md +++ b/pages.ko/common/deluge-console.md @@ -1,7 +1,7 @@ # deluge-console > Deluge BitTorrent 클라이언트를 위한 대화형 인터페이스. -> 더 많은 정보: . +> 더 많은 정보: . - 대화형 콘솔 인터페이스 시작: diff --git a/pages.ko/common/deluge.md b/pages.ko/common/deluge.md index 48f8f8714a181d..98b72aefe39d5e 100644 --- a/pages.ko/common/deluge.md +++ b/pages.ko/common/deluge.md @@ -1,7 +1,7 @@ # deluge > BitTorrent 클라이언트 명령어. -> 더 많은 정보: . +> 더 많은 정보: . - 토렌트 다운로드: diff --git a/pages.ko/common/deluged.md b/pages.ko/common/deluged.md index ba47d2d623c2e0..821f8d956325fb 100644 --- a/pages.ko/common/deluged.md +++ b/pages.ko/common/deluged.md @@ -1,7 +1,7 @@ # deluged > Deluge BitTorrent 클라이언트를 위한 데몬 프로세스. -> 더 많은 정보: . +> 더 많은 정보: . - Deluge 데몬 시작하기: diff --git a/pages.ko/common/dep.md b/pages.ko/common/dep.md index b25ce221d3f26b..311120b2bccd6a 100644 --- a/pages.ko/common/dep.md +++ b/pages.ko/common/dep.md @@ -1,7 +1,7 @@ # dep > Go 프로젝트에서 종속성 관리를 위한 툴. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 디렉토리를 Go 프로젝트의 루트 디렉토리로 초기화: diff --git a/pages.ko/common/dexdump.md b/pages.ko/common/dexdump.md index b6d4c47a1bbe2d..0d189327418e6f 100644 --- a/pages.ko/common/dexdump.md +++ b/pages.ko/common/dexdump.md @@ -1,7 +1,7 @@ # dexdump > 안드로이드 DEX 파일들에 대한 정보 출력. -> 더 많은 정보: . +> 더 많은 정보: . - APK 파일으로부터 클래스들과 메서드들 추출: diff --git a/pages.ko/common/diff.md b/pages.ko/common/diff.md index ca035006269efa..1b9afed5a811e1 100644 --- a/pages.ko/common/diff.md +++ b/pages.ko/common/diff.md @@ -1,6 +1,7 @@ # diff > 파일들과 디렉토리들을 비교한다. +> 더 많은 정보: . - 파일들 비교하기 (`이전_파일명`을 `새_파일명`으로 바꾸는 변경점들 목록): diff --git a/pages.ko/common/dig.md b/pages.ko/common/dig.md index 548d8c076b3f45..2910924d2a9740 100644 --- a/pages.ko/common/dig.md +++ b/pages.ko/common/dig.md @@ -1,7 +1,7 @@ # dig > DNS 조회 유틸리티. -> 더 많은 정보: . +> 더 많은 정보: . - 호스트이름과 관련된 IP 조회하기 (A records): diff --git a/pages.ko/common/docker-build.md b/pages.ko/common/docker-build.md new file mode 100644 index 00000000000000..66824ab0d5ecbc --- /dev/null +++ b/pages.ko/common/docker-build.md @@ -0,0 +1,32 @@ +# docker build + +> 도커파일로부터 이미지 빌드. +> 더 많은 정보: . + +- 현재 디렉토리 안의 도커파일을 이용해 도커 이미지 빌드: + +`docker build .` + +- 명시된 URL의 도커파일로부터 도커 이미지 빌드: + +`docker build {{github.com/creack/docker-firefox}}` + +- 도커 이미지 빌드 및 태그 추가: + +`docker build --tag {{이름:태그}} .` + +- 빌드 컨텍스트 없이 도커 이미지 빌드: + +`docker build --tag {{이름:태그}} - < {{도커파일}}` + +- 캐시를 사용하지 않고 도커 이미지 빌드: + +`docker build --no-cache --tag {{이름:태그}} .` + +- 특정 도커파일을 이용하여 도커 이미지 빌드: + +`docker build --file {{도커파일}} .` + +- 빌드 시 커스텀 변수 추가: + +`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.ko/common/docker-compose.md b/pages.ko/common/docker-compose.md index 3b670a0d9143ce..2b46ff3e0bb4b3 100644 --- a/pages.ko/common/docker-compose.md +++ b/pages.ko/common/docker-compose.md @@ -1,32 +1,36 @@ -# docker-compose +# docker compose -> 다중 도커 응용 프로그램 실행 및 관리합니다. -> 더 많은 정보: . +> 다중 컨테이너 도커 어플리케이션 실행 및 관리. +> 더 많은 정보: . -- 실행 중인 모든 컨테이너들 목록: +- 실행 중인 모든 컨테이너 목록 보기: -`docker-compose ps` +`docker compose ps` -- 현재 디렉토리로로부터 `docker-compose.yml` 파일을 사용하여 백그라운드에서 모든 컨테이너들을 생성하고 실행하기: +- 현재 디렉토리의 `docker-compose.yml` 파일을 사용해 모든 컨테이너를 백그라운드에서 생성하고 실행하기: -`docker-compose up -d` +`docker compose up --detach` -- 모든 컨테이너들을 실행하고, 필요 시 재조립: +- 모든 컨테이너 실행, 필요 시 재빌드: -`docker-compose up --build` +`docker compose up --build` -- 대체 구성 파일을 사용하여 모든 컨테이너들 실행하기: +- 특정 구성 파일을 사용해 모든 컨테이너 실행: -`docker-compose --file {{경로/파일명}} up` +`docker compose --file {{경로/파일명}} up` -- 실행중인 모든 컨테이너들 중지하기: +- 실행 중인 모든 컨테이너 중지: -`docker-compose stop` +`docker compose stop` -- 모든 컨테이너들, 네트워크, 이미지, 그리고 볼륨을 중지하고 제거하기: +- 모든 컨테이너, 네트워크, 이미지, 볼륨 중지 및 삭제: -`docker-compose down --rmi all --volumes` +`docker compose down --rmi all --volumes` -- 모든 컨테이너들에 대한 로그들 팔로우: +- 모든 컨테이너에 대한 로그 팔로우: -`docker-compose logs --follow` +`docker compose logs --follow` + +- 특정 컨테이너에 대한 로그 팔로우: + +`docker compose logs --follow {{컨테이너_이름}}` diff --git a/pages.ko/common/docker-image.md b/pages.ko/common/docker-image.md new file mode 100644 index 00000000000000..47242f3477fdbf --- /dev/null +++ b/pages.ko/common/docker-image.md @@ -0,0 +1,21 @@ +# docker image + +> 도커 이미지 관리. +> `docker build`, `docker import`, `docker pull` 도 확인하세요. +> 더 많은 정보: . + +- 로컬 도커 이미지 목록 보기: + +`docker image ls` + +- 사용되지 않는 로컬 도커 이미지 제거: + +`docker image prune` + +- (태그가 없는 이미지뿐만 아니라) 모든 사용되지 않는 이미지 제거: + +`docker image prune --all` + +- 특정 로컬 도커 이미지 히스토리 보기: + +`docker image history {{이미지}}` diff --git a/pages.ko/common/docker-images.md b/pages.ko/common/docker-images.md index a04a05cb23517a..7b507ea8b6fef8 100644 --- a/pages.ko/common/docker-images.md +++ b/pages.ko/common/docker-images.md @@ -1,20 +1,24 @@ # docker images -> 도커 이미지를 관리한다. +> 도커 이미지 관리. > 더 많은 정보: . -- 모든 도커 이미지 목록보기: +- 모든 도커 이미지 목록 보기: `docker images` -- 중간자를 포함한 모든 도커 이미지 목록보기: +- 중간 레이어를 포함한 도커 이미지 목록 보기: -`docker images -a` +`docker images --all` -- 잔잔한 모드로 결과 목록보기(수로 표현된 ID들만): +- 조용한 모드로 결과 목록 보기 (이미지 ID만 출력): -`docker images -q` +`docker images --quiet` -- 어떠한 컨테이너에서도 사용되지 않은 모든 도커 이미지 목록보기: +- 어떤 컨테이너에도 사용되지 않은 도커 이미지 목록 보기: `docker images --filter dangling=true` + +- 이름에 부분 문자열을 포함한 이미지 목록 보기: + +`docker images "{{*이름*}}"` diff --git a/pages.ko/common/dot.md b/pages.ko/common/dot.md index c85865d59c474a..9b2c0924ab1d52 100644 --- a/pages.ko/common/dot.md +++ b/pages.ko/common/dot.md @@ -1,7 +1,7 @@ # dot > 방향 그래프의 레이어 도면을 생성하는 명령 도구입니다. -> 더 많은 정보: . +> 더 많은 정보: . - 입력 파일 이름과 선택한 포맷을 기반으로 이미지 파일을 랜더링하고 출력파일 이름 결정하기: diff --git a/pages.ko/common/dotnet.md b/pages.ko/common/dotnet.md index 340545bad68e53..371ceeddca6da6 100644 --- a/pages.ko/common/dotnet.md +++ b/pages.ko/common/dotnet.md @@ -1,7 +1,7 @@ # dotnet > .NET Core를 위한 크로스 플랫폼 .NET 명령어 도구. -> 더 많은 정보: . +> 더 많은 정보: . - 새 .NET 프로젝트 초기화하기: diff --git a/pages.ko/common/echo.md b/pages.ko/common/echo.md new file mode 100644 index 00000000000000..7f162d7dc1e757 --- /dev/null +++ b/pages.ko/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> 주어진 인자들을 출력한다. +> 더 많은 정보: . + +- 텍스트 메시지를 출력한다. 참고: 따옴표는 선택 사항: + +`echo "{{Hello World}}"` + +- 환경 변수가 있는 메시지 출력하기: + +`echo "{{My path is $PATH}}"` + +- 끝에 줄바꿈 없이 메시지 출력하기: + +`echo -n "{{Hello World}}"` + +- 파일에 메시지 추가하기: + +`echo "{{Hello World}}" >> {{file.txt}}` + +- 백슬래시 이스케이프 (특수문자)의 해석을 가능하게 하기: + +`echo -e "{{Column 1\tColumn 2}}"` diff --git a/pages.ko/common/false.md b/pages.ko/common/false.md new file mode 100644 index 00000000000000..46300fa88f970c --- /dev/null +++ b/pages.ko/common/false.md @@ -0,0 +1,8 @@ +# false + +> 종료 코드 1을 반환한다. +> 더 많은 정보: . + +- 종료 코드 1 반환: + +`false` diff --git a/pages.ko/common/fossil-ci.md b/pages.ko/common/fossil-ci.md new file mode 100644 index 00000000000000..2f8a097f3ae7b9 --- /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 00000000000000..11e44da2e44354 --- /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 00000000000000..059749d9310086 --- /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 00000000000000..1abd963af375e8 --- /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/g++.md b/pages.ko/common/g++.md new file mode 100644 index 00000000000000..6b99bea58a717d --- /dev/null +++ b/pages.ko/common/g++.md @@ -0,0 +1,29 @@ +# g++ + +> C++ 소스 파일을 컴파일합니다. +> GCC (GNU 컴파일로 모음)의 일부입니다. +> 더 많은 정보: . + +- 소스 코드 파일을 실행 가능한 바이너리로 컴파일합니다: + +`g++ {{소스/파일/경로.cpp}} -o {{출력/실행파일/경로}}` + +- 일반적인 경고를 표시합니다: + +`g++ {{소스/파일/경로.cpp}} -Wall -o {{출력/실행파일/경로}}` + +- 컴파일할 때 사용할 언어 표준을 선택합니다 (C++98/C++11/C++14/C++17): + +`g++ {{소스/파일/경로.cpp}} -std={{c++98|c++11|c++14|c++17}} -o {{출력/실행파일/경로}}` + +- 소스 파일과 다른 경로에 위치한 라이브러리들을 포함합니다: + +`g++ {{소스/파일/경로.cpp}} -o {{출력/실행파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}` + +- 다수의 소스 코드 파일을 실행 가능한 바이너리로 컴파일하고 링킹합니다: + +`g++ -c {{소스/파일/경로1.cpp 소스/파일/경로2.cpp ...}} && g++ -o {{출력/실행파일/경로}} {{소스/파일/경로1.o 소스/파일/경로2.o ...}}` + +- 버전을 표시합니다: + +`g++ --version` diff --git a/pages.ko/common/gcc.md b/pages.ko/common/gcc.md new file mode 100644 index 00000000000000..bd9331b7853e6d --- /dev/null +++ b/pages.ko/common/gcc.md @@ -0,0 +1,24 @@ +# gcc + +> C와 C++ 소스 파일들을 전처리, 컴파일하여 모으고 이어줍니다. +> 더 많은 정보: . + +- 다수의 소스 파일을 실행 파일로 컴파일합니다: + +`gcc {{소스/파일1/경로.c 소스/파일2/경로.c ...}} -o {{출력/실행파일/경로}}` + +- 일반적인 경고와 디버그 심볼을 출력합니다: + +`gcc {{소스/파일/경로.c}} -Wall -Og -o {{출력/실행파일/경로}}` + +- 다른 경로에 위치한 라이브러리들을 포함합니다: + +`gcc {{소스/파일/경로.c}} -o {{출력/실행파일/경로}}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}` + +- 소스 코드를 어셈블리어로 컴파일합니다: + +`gcc -S {{소스/파일/경로.c}}` + +- 소스 코드를 링킹 없이 오브젝트 파일로 컴파일합니다: + +`gcc -c {{소스/파일/경로.c}}` diff --git a/pages.ko/common/gdb.md b/pages.ko/common/gdb.md new file mode 100644 index 00000000000000..7a50d1d0159432 --- /dev/null +++ b/pages.ko/common/gdb.md @@ -0,0 +1,24 @@ +# gdb + +> GNU 디버거. +> 더 많은 정보: . + +- 실행파일을 디버깅합니다: + +`gdb {{실행파일}}` + +- 프로세스를 gdb에 연결합니다: + +`gdb -p {{프로세스ID}}` + +- 코어 파일과 함께 디버깅합니다: + +`gdb -c {{코어}} {{실행파일}}` + +- 디버깅을 시작하면서 주어진 GDB 명령들을 수행합니다: + +`gdb -ex "{{명령들}}" {{실행파일}}` + +- 디버깅을 시작하면서 실행파일에 인자들을 넘겨줍니다: + +`gdb --args {{실행파일}} {{인자1}} {{인자2}}` diff --git a/pages.ko/common/gh-cs.md b/pages.ko/common/gh-cs.md new file mode 100644 index 00000000000000..360393b3786bf9 --- /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/git-abort.md b/pages.ko/common/git-abort.md new file mode 100644 index 00000000000000..037307c8a5a0d8 --- /dev/null +++ b/pages.ko/common/git-abort.md @@ -0,0 +1,9 @@ +# git abort + +> 진행중인 rebase, merge 혹은 cherry-pick을 중단합니다. +> `git-extras`의 일부입니다. +> 더 많은 정보: . + +- Git rebase, merge, 혹은 cherry-pick 중단: + +`git abort` diff --git a/pages.ko/common/git-add.md b/pages.ko/common/git-add.md new file mode 100644 index 00000000000000..f56632a204854e --- /dev/null +++ b/pages.ko/common/git-add.md @@ -0,0 +1,32 @@ +# git add + +> 변경된 파일들을 인덱스에 추가합니다. +> 더 많은 정보: . + +- 인덱스에 파일 추가: + +`git add {{파일/의/경로}}` + +- 모든 파일 추가 (추적된 파일과 추적되지 않은 파일 모두): + +`git add -A` + +- 이미 추적된 파일만 추가: + +`git add -u` + +- 무시되는 파일 추가: + +`git add -f` + +- 파일의 일부분을 대화식으로 추가: + +`git add -p` + +- 주어진 파일의 일부분을 대화식으로 추가: + +`git add -p {{파일/의/경로}}` + +- 대화식으로 파일을 추가: + +`git add -i` diff --git a/pages.ko/common/git-alias.md b/pages.ko/common/git-alias.md new file mode 100644 index 00000000000000..91aa61baa36478 --- /dev/null +++ b/pages.ko/common/git-alias.md @@ -0,0 +1,17 @@ +# git alias + +> Git 명령어 단축어 생성. +> `git-extras`의 일부. +> 더 많은 정보: . + +- 모든 단축어 리스트: + +`git alias` + +- 새로운 단축어 생성: + +`git alias "{{단축어_이름}}" "{{명령어}}"` + +- 이미 존재하는 단축어 검색: + +`git alias ^{{단축어_이름}}` diff --git a/pages.ko/common/git-am.md b/pages.ko/common/git-am.md new file mode 100644 index 00000000000000..72311e3bf39d24 --- /dev/null +++ b/pages.ko/common/git-am.md @@ -0,0 +1,17 @@ +# git am + +> 패치 파일을 적용한다. 이메일로 커밋을 받을 때 유용함. +> 패치 파일을 생성 할 수 있는 `git format-patch` 또한 참고. +> 더 많은 정보: . + +- 패치 파일 적용: + +`git am {{경로/대상/파일.patch}}` + +- 패치 파일 적용 프로세스 중단: + +`git am --abort` + +- 가능한 많은 수의 패치 파일 적용, 실패한 파일은 거절 파일에 저장: + +`git am --reject {{경로/대상/파일.patch}}` diff --git a/pages.ko/common/git-annotate.md b/pages.ko/common/git-annotate.md new file mode 100644 index 00000000000000..ecdf21753332a9 --- /dev/null +++ b/pages.ko/common/git-annotate.md @@ -0,0 +1,14 @@ +# git annotate + +> 각각의 파일란에 커밋한 해쉬와 마지막 작성자를 보여 줍니다. +> 깃 어노테이트 보다 많이 사용되는 깃 블레임을 살펴 보세요. +> 깃 어노테이트는 다른 버전 관리 시스템에 친숙한 분들께 제공됩니다. +> 더 많은 정보: . + +- 각각의 라인에 작성자의 이름과 커밋 해쉬를 앞쪽에 더하여 파일 출력: + +`git annotate {{경로/대상/파일}}` + +- 각각의 라인에 작성자의 이메일과 커밋 해쉬를 앞쪽에 더하여 파일 출력: + +`git annotate -e {{경로/대상/파일}}` diff --git a/pages.ko/common/git-blame.md b/pages.ko/common/git-blame.md new file mode 100644 index 00000000000000..d87dd046f02854 --- /dev/null +++ b/pages.ko/common/git-blame.md @@ -0,0 +1,12 @@ +# git blame + +> 각각의 파일 라인에 커밋 해쉬와 마지막 작성자를 보여줍니다. +> 더 많은 정보: . + +- 각각의 라인에 작성자의 이름과 커밋 해쉬가 포함된 파일 출력: + +`git blame {{파일이름}}` + +- 각각의 라인에 작성자의 이메일과 커밋 해쉬가 포함된 파일 출력: + +`git blame -e {{파일이름}}` diff --git a/pages.ko/common/git-cherry-pick.md b/pages.ko/common/git-cherry-pick.md new file mode 100644 index 00000000000000..2324d736773553 --- /dev/null +++ b/pages.ko/common/git-cherry-pick.md @@ -0,0 +1,21 @@ +# git cherry-pick + +> 기존의 커밋에서 가져온 변경내용을 현재 브랜치에 적용합니다. +> 변경내용을 다른 브랜치에 적용하고싶으면, 우선 `git checkout`을 사용해 원하는 브랜치로 변경하세요. +> 더 많은 정보: . + +- 커밋을 현재 브랜치에 적용: + +`git cherry-pick {{커밋}}` + +- 특정 범위의 커밋들을 현재 브랜치에 적용 (`git rebase --onto`도 보세요): + +`git cherry-pick {{시작_커밋}}~..{{끝_커밋}}` + +- 연속되지 않은 여러 커밋들을 현재 브랜치에 적용: + +`git cherry-pick {{커밋_1}} {{커밋_2}}` + +- 커밋의 변경내역을 커밋 없이 디렉토리에 추가: + +`git cherry-pick -n {{커밋}}` diff --git a/pages.ko/common/git-clean.md b/pages.ko/common/git-clean.md new file mode 100644 index 00000000000000..b588aff203bef1 --- /dev/null +++ b/pages.ko/common/git-clean.md @@ -0,0 +1,28 @@ +# git clean + +> 워킹 트리에서 추적되지 않는 파일을 제거합니다. +> 더 많은 정보: . + +- 깃에 의해 추적되지 않는 파일들 지우기: + +`git clean` + +- 깃에 의해 추적되지 않는 파일들 인터액티브 하게 지우기: + +`git clean -i` + +- 어떤 파일들이 제거될 것인지 실제로 지우지 않고 보여주기: + +`git clean --dry-run` + +- 깃에 의해 추적되지 않는 파일들 강제적으로 지우기: + +`git clean -f` + +- 깃에 의해 추적되지 않는 디렉토리를 강제적으로 지우기: + +`git clean -fd` + +- 추적되지 않는 파일들, `.gitignore` 와 `.git/info/exclude` 안에 있는 무시된 파일들을 포함하여 지우기: + +`git clean -x` diff --git a/pages.ko/common/git-clone.md b/pages.ko/common/git-clone.md new file mode 100644 index 00000000000000..c8ea90fe6db8ad --- /dev/null +++ b/pages.ko/common/git-clone.md @@ -0,0 +1,36 @@ +# git clone + +> 이미 존재하는 레파지토리를 복제. +> 더 많은 정보: . + +- 이미 존재하는 레파지토리를 복제: + +`git clone {{원격_레파지토리_경로}}` + +- 이미 존재하는 레파지토리를 특정 디렉토리에 복제: + +`git clone {{원격_레파지토리_경로}} {{디렉토리/의/경로}}` + +- 이미 존재하는 레파지토리와 그 서브모듈을 복제: + +`git clone --recursive {{원격_레파지토리_경로}}` + +- 로컬 레파지토리를 복제: + +`git clone -l {{로컬/레파지토리/의/경로}}` + +- 출력 없이 복제: + +`git clone -q {{원격_레파지토리_경로}}` + +- 이미 존재하는 레파지토리의 최근 커밋 10개만 복제 (시간 절약에 좋음): + +`git clone --depth {{10}} {{원격_레파지토리_경로}}` + +- 이미 존재하는 레파지토의 특정 브랜치만 복제: + +`git clone --branch {{브랜치_이름}} --single-branch {{원격_레파지토리_경로}}` + +- 특정 SSH 명령어를 사용하여 이미 존재하는 레파지토리 복제: + +`git clone --config core.sshCommand="{{ssh -i private_ssh_key/의/경로}}" {{원격_레파지토리_경로}}` diff --git a/pages.ko/common/git.md b/pages.ko/common/git.md new file mode 100644 index 00000000000000..0efce84013cb47 --- /dev/null +++ b/pages.ko/common/git.md @@ -0,0 +1,29 @@ +# git + +> 분산 버전 관리 시스템. +> `commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다. `tldr git subcommand`를 통해 확인할 수 있습니다. +> 더 많은 정보: . + +- Git 버전 확인: + +`git --version` + +- 일반 도움말 출력: + +`git --help` + +- 하위 명령어 도움말 출력 (`clone`, `add`, `push`, `log`, 등등): + +`git help {{하위_명렁어}}` + +- 하위 명령어 실행: + +`git {{하위_명령어}}` + +- 특정 레파지토리 위치에서 Git 하위 명령어 실행: + +`git -C {{특정/레파지토리/경로}} {{하위_명령어}}` + +- 주어진 설정으로 Git 하위 명령어 실행: + +`git -c '{{설정.키}}={{설정.값}}' {{하위_명령어}}` diff --git a/pages.ko/common/gnmic-sub.md b/pages.ko/common/gnmic-sub.md new file mode 100644 index 00000000000000..5ef6a777d4bdde --- /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 00000000000000..5b631b72fc0c1a --- /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 new file mode 100644 index 00000000000000..d4f5b85342b783 --- /dev/null +++ b/pages.ko/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 "{{검색_패턴}}" {{파일/의/경로}}` + +- 패턴과 일치하는 줄을 검색하고, 일치하는 문자만 출력: + +`grep --only-matching "{{검색_패턴}}" {{파일/의/경로}}` + +- 패턴과 일치하지 않는 라인에 대한 stdin 검색: + +`cat {{파일/의/경로}} | grep --invert-match "{{검색_패턴}}"` diff --git a/pages.ko/common/hx.md b/pages.ko/common/hx.md new file mode 100644 index 00000000000000..de1360cb6e7bd9 --- /dev/null +++ b/pages.ko/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> 이 명령은 `helix` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr helix` diff --git a/pages.ko/common/kafkacat.md b/pages.ko/common/kafkacat.md new file mode 100644 index 00000000000000..78acef0ca2ceea --- /dev/null +++ b/pages.ko/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 이 명령은 `kcat` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr kcat` diff --git a/pages.ko/common/kill.md b/pages.ko/common/kill.md new file mode 100644 index 00000000000000..8131450b68a0d7 --- /dev/null +++ b/pages.ko/common/kill.md @@ -0,0 +1,37 @@ +# kill + +> 보통 프로세스를 정지시키는 것과 관련된 시그널을 전송합니다. +> SIGKILL과 SIGSTOP을 제외한 모든 시그널들은 깔끔한 종료를 위해 프로세스에게 뺏길 수 있습니다. +> 더 많은 정보: . + +- 기본 SIGTERM ("terminate") 시그널을 보내 프로그램을 종료: + +`kill {{프로세스_아이디}}` + +- 사용 가능한 시그널 이름을 출력 (`SIG` 접두사는 없이 출력): + +`kill -l` + +- 백그라운드 job 종료: + +`kill %{{job_아이디}}` + +- SIGHUP ("hang up") 시그널을 사용해서 프로그램을 종료. 대다수의 데몬(백그라운드 프로세스)은 종료하는 대신 리로드 함: + +`kill -{{1|HUP}} {{프로세스_아이디}}` + +- SIGINT ("interrupt") 시그널을 사용해서 프로그램을 종료. 이건 일반적으로 사용자가 `Ctrl + c`를 누를 때 일어나는 일과 같음: + +`kill -{{2|INT}} {{프로세스_아이디}}` + +- 운영체제에게 즉시 프로그램을 종료하라는 시그널을 전송 (프로세스가 신호를 받지 못하고 종료됨): + +`kill -{{9|KILL}} {{프로세스_아이디}}` + +- 운영체제에게 SIGCONT ("continue") 시그널을 받기 전까지 프로그램을 일시정지하라는 시그널을 전송: + +`kill -{{17|STOP}} {{프로세스_아이디}}` + +- 주어진 GID (그룹 아이디)를 가진 모든 프로세스에게 `SIGUSR1` 시그널을 전송: + +`kill -{{SIGUSR1}} -{{그룹_아이디}}` diff --git a/pages.ko/common/llvm-ar.md b/pages.ko/common/llvm-ar.md new file mode 100644 index 00000000000000..8968e22fe94174 --- /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 00000000000000..6eed07f4b37e5d --- /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 00000000000000..f82ede769ee500 --- /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 00000000000000..23640e1b5f8d71 --- /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 00000000000000..605a97747e9788 --- /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 00000000000000..5bdf4519bea1c4 --- /dev/null +++ b/pages.ko/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> 이 명령은 `strings` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr strings` diff --git a/pages.ko/common/ls.md b/pages.ko/common/ls.md new file mode 100644 index 00000000000000..8ee8948797a70a --- /dev/null +++ b/pages.ko/common/ls.md @@ -0,0 +1,36 @@ +# ls + +> 폴더의 내용물을 리스팅합니다. +> 더 많은 정보: . + +- 한줄에 하나의 파일씩 나열: + +`ls -1` + +- 숨겨진 파일을 포함해 모든 파일 나열: + +`ls -a` + +- 모든 파일 나열, 폴더명에는 뒤에 '/'를 붙음: + +`ls -F` + +- 파일의 모든 정보(권한, 소유자, 크기, 그리고 수정날짜)를 나열: + +`ls -la` + +- 파일의 모든정보를 나열, 다만 크기는 읽기쉽게 (KiB, MiB, GiB)를 사용: + +`ls -lh` + +- 파일의 모든 정보를 크기의 내림차순으로 정렬: + +`ls -lS` + +- 파일의 모든 정보를 수정날짜(오래된 순서)로 정렬: + +`ls -ltr` + +- 폴더만 나열: + +`ls -d {{*/}}` diff --git a/pages.ko/common/lsof.md b/pages.ko/common/lsof.md new file mode 100644 index 00000000000000..fed883c3d78890 --- /dev/null +++ b/pages.ko/common/lsof.md @@ -0,0 +1,37 @@ +# lsof + +> 열린 파일과 상응하는 프로세스들을 나열합니다. +> 참고: 다른 사람으로부터 열린 파일 리스트는 루트 권한 ( 혹은 sudo ) 이 요구됩니다. +> 더 많은 정보: . + +- 주어진 파일을 열고있는 프로세스 찾기: + +`lsof {{파일/의/경로}}` + +- 로컬 인터넷 포트를 열고있는 프로세스 찾기: + +`lsof -i :{{포트}}` + +- 프로세스 아이디 (PID)만 출력: + +`lsof -t {{파일/의/경로}}` + +- 주어진 유저에 의해 열린 파일 나열: + +`lsof -u {{유저이름}}` + +- 주어진 명령어 혹은 프로세스에 의해 열린 파일 나열: + +`lsof -c {{프로세스_혹은_명령어_이름}}` + +- 주어진 PID와 일치하는 프로세스에 의해 열린 파일 나열: + +`lsof -p {{PID}}` + +- 디렉토리 안의 열린 파일 나열: + +`lsof +D {{디렉토리/의/경로}}` + +- 로컬 IPv6 TCP 포트에서 수신 중이고 네트워크 또는 포트 번호를 변환하지 않는 프로세스 찾기: + +`lsof -i6TCP:{{포트}} -sTCP:LISTEN -n -P` diff --git a/pages.ko/common/lzcat.md b/pages.ko/common/lzcat.md new file mode 100644 index 00000000000000..38a5bd4f1d91f7 --- /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 00000000000000..433721c2fbd7aa --- /dev/null +++ b/pages.ko/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/mscore.md b/pages.ko/common/mscore.md new file mode 100644 index 00000000000000..5585944be74d28 --- /dev/null +++ b/pages.ko/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> 이 명령은 `musescore` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr musescore` diff --git a/pages.ko/common/nc.md b/pages.ko/common/nc.md new file mode 100644 index 00000000000000..b8248cddb4cb42 --- /dev/null +++ b/pages.ko/common/nc.md @@ -0,0 +1,32 @@ +# nc + +> Netcat은 TCP 또는 UDP 데이터 작업을 위한 다목적 유틸리티입니다. +> 더 많은 정보: . + +- 특정 포트에서 수신대기 및 수신한 데이터 출력: + +`nc -l {{포트}}` + +- 특정 포트에 연결: + +`nc {{ip_주소}} {{포트}}` + +- 타임아웃 설정: + +`nc -w {{타임아웃_될_시간}} {{ip_주소}} {{포트}}` + +- 클라이언트가 연결 해제 된 상황에도 서버를 가동 상태로 유지: + +`nc -k -l {{포트}}` + +- EOF가 들어와도 클라이언트와 연결 유지: + +`nc -q {{타임아웃_될_시간}} {{ip_주소}}` + +- 특정 호스트의 포트가 열렸는지 확인: + +`nc -v -z {{ip_주소}} {{포트}}` + +- 프록시처럼 로컬 TCP 포트로부터 받은 데이터를 주어진 원격 호스트에게 전달합니다: + +`nc -l {{로컬_포트}} | nc {{호스트_이름}} {{원격_포트}}` diff --git a/pages.ko/common/nm-classic.md b/pages.ko/common/nm-classic.md new file mode 100644 index 00000000000000..10e580e40d6089 --- /dev/null +++ b/pages.ko/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> 이 명령은 `nm` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr nm` diff --git a/pages.ko/common/ntl.md b/pages.ko/common/ntl.md new file mode 100644 index 00000000000000..fc4b06e2f62d2d --- /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 00000000000000..7f6a71a1fc8609 --- /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 00000000000000..bcd6b793f906f9 --- /dev/null +++ b/pages.ko/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> 이 명령은 `pio debug` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr pio debug` diff --git a/pages.ko/common/pkill.md b/pages.ko/common/pkill.md new file mode 100644 index 00000000000000..41c78f5b68657f --- /dev/null +++ b/pages.ko/common/pkill.md @@ -0,0 +1,25 @@ +# pkill + +> 프로세스 이름에 따라 시그널을 전송합니다. +> 주로 프로세스를 종료하는데 사용합니다. +> 더 많은 정보: . + +- 일치하는 모든 프로세스 종료: + +`pkill "{{프로세스_이름}}"` + +- 프로세스 이름 대신 전체 명령어와 일치하는 모든 프로세스 종료: + +`pkill -f "{{명령어_이름}}"` + +- 강제로 일치하는 프로세스 종료 (차단 불가능): + +`pkill -9 "{{프로세스_이름}}"` + +- 일치하는 프로세스에게 SIGUSR1 시그널 전송: + +`pkill -USR1 "{{프로세스_이름}}"` + +- 브라우저를 닫기 위해 주요 `firefox` 프로세스를 종료: + +`pkill --oldest "{{firefox}}"` diff --git a/pages.ko/common/platformio.md b/pages.ko/common/platformio.md new file mode 100644 index 00000000000000..8a15ebd0d355e5 --- /dev/null +++ b/pages.ko/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> 이 명령은 `pio` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr pio` diff --git a/pages.ko/common/ptpython3.md b/pages.ko/common/ptpython3.md new file mode 100644 index 00000000000000..19eb2c4672c22d --- /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 00000000000000..e941a66d43f7c6 --- /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 00000000000000..31696db36e51bf --- /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 00000000000000..fb0ada58eac017 --- /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 00000000000000..2369a18e5c6398 --- /dev/null +++ b/pages.ko/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 이 명령은 `rg` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr rg` diff --git a/pages.ko/common/rm.md b/pages.ko/common/rm.md new file mode 100644 index 00000000000000..0a6a223b20f4dc --- /dev/null +++ b/pages.ko/common/rm.md @@ -0,0 +1,24 @@ +# rm + +> 파일 혹은 폴더를 삭제. +> 더 많은 정보: . + +- 임의의 경로에서 파일을 제거: + +`rm {{파일의/경로}} {{다른/파일의/경로}}` + +- 재귀적으로 폴더와 그 폴더내의 하위폴더들을 모두 제거: + +`rm -r {{폴더의/경로}}` + +- 강제로 폴더를 제거, 확인절차와 에러메시지를 띄우지 않음: + +`rm -rf {{폴더의/경로}}` + +- 여라개의 파일을 하나씩 확인받으면서 제거: + +`rm -i {{파일들}}` + +- 상세화면과 함께 파일을 제거, 삭제된 파일에 대해 메시지를 출력함: + +`rm -v {{폴더의/경로/*}}` diff --git a/pages.ko/common/telnet.md b/pages.ko/common/telnet.md new file mode 100644 index 00000000000000..45f6afddf033f2 --- /dev/null +++ b/pages.ko/common/telnet.md @@ -0,0 +1,28 @@ +# telnet + +> telnet 프로토콜을 사용해 호스트의 특정 포트에 연결합니다. +> 더 많은 정보: . + +- 호스트의 기본 포트에 Telnet 연결: + +`telnet {{호스트}}` + +- 호스트의 특정 포트에 Telnet 연결: + +`telnet {{ip_주소}} {{포트}}` + +- Telnet 세션 종료: + +`quit` + +- 세션 종료를 위한 기본 이스케이프 문자 조합을 전송: + +`Ctrl + ]` + +- "x"를 세션 종료 문자로 사용하여 세션 시작: + +`telnet -e {{x}} {{ip_주소}} {{포트}}` + +- Telnet 으로 스타워즈 보기: + +`telnet {{towel.blinkenlights.nl}}` diff --git a/pages.ko/common/tldr.md b/pages.ko/common/tldr.md index a03d9a3041005b..fe6b0dcbbc1d1d 100644 --- a/pages.ko/common/tldr.md +++ b/pages.ko/common/tldr.md @@ -7,7 +7,7 @@ `tldr {{명령어}}` -- linux에서 tar에 대한 tldr 문서 표시하기: +- Linux에서 tar에 대한 tldr 문서 표시하기: `tldr -p {{linux}} {{tar}}` diff --git a/pages.ko/common/tldrl.md b/pages.ko/common/tldrl.md new file mode 100644 index 00000000000000..aaeb8d4b28fe99 --- /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 00000000000000..fac7928e8524f4 --- /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/tmux.md b/pages.ko/common/tmux.md new file mode 100644 index 00000000000000..6884cd9fce1cb3 --- /dev/null +++ b/pages.ko/common/tmux.md @@ -0,0 +1,37 @@ +# tmux + +> 터미널 멀티플렉서. 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.ko/common/todoman.md b/pages.ko/common/todoman.md new file mode 100644 index 00000000000000..662d9e53b37daf --- /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 00000000000000..34e24249855e94 --- /dev/null +++ b/pages.ko/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> 이 명령은 `transmission-daemon` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr transmission-daemon` diff --git a/pages.ko/common/unlzma.md b/pages.ko/common/unlzma.md new file mode 100644 index 00000000000000..d6407cb07d11ca --- /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 00000000000000..520834a10a8ba0 --- /dev/null +++ b/pages.ko/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/common/vi.md b/pages.ko/common/vi.md new file mode 100644 index 00000000000000..88251c1667af97 --- /dev/null +++ b/pages.ko/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> 이 명령은 `vim` 의 에일리어스 (별칭) 입니다. + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr vim` diff --git a/pages.ko/common/vim.md b/pages.ko/common/vim.md new file mode 100644 index 00000000000000..cbbadcfa80b1af --- /dev/null +++ b/pages.ko/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved)는 커맨드 라인 텍스트 에디터로 다양한 종류의 텍스트 조작을 위해 여러 모드를 지원합니다. +> `i` 를 눌러 입력 모드로 들어가고, `` 를 눌러 Vim 명령어를 입력할 수 있는 일반 모드로 들어갑니다. +> 더 많은 정보: . + +- 파일 열기: + +`vim {{파일/의/경로}}` + +- 지정된 줄 번호에서 파일 열기: + +`vim +{{줄 번호}} {{파일/의/경로}}` + +- Vim 메뉴얼 보기: + +`:help` + +- 저장하고 종료: + +`:wq` + +- 실행취소: + +`u` + +- 파일에서 패턴 검색 (`n`/`N` 을 눌러 다음/이전 항목으로 이동): + +`/{{검색할_패턴}}` + +- 전체 파일에서 정규식 대체 수행: + +`:%s/{{정규식_표현}}/{{바꿀_문자열}}/g` + +- 줄 번호 표시: + +`:set nu` diff --git a/pages.ko/common/xzcat.md b/pages.ko/common/xzcat.md new file mode 100644 index 00000000000000..5183ebfbdd147e --- /dev/null +++ b/pages.ko/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> 이 명령은 `xz` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr xz` diff --git a/pages.ko/linux/alternatives.md b/pages.ko/linux/alternatives.md new file mode 100644 index 00000000000000..a4c5782c8423c0 --- /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 00000000000000..898f7c4f1e49d7 --- /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 00000000000000..5e4dee1efa43c7 --- /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 00000000000000..9a0bc802710499 --- /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 00000000000000..57985f6c22291c --- /dev/null +++ b/pages.ko/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> 이 명령은 `cgclassify` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr cgclassify` diff --git a/pages.ko/common/chcon.md b/pages.ko/linux/chcon.md similarity index 100% rename from pages.ko/common/chcon.md rename to pages.ko/linux/chcon.md diff --git a/pages.ko/linux/cp.md b/pages.ko/linux/cp.md new file mode 100644 index 00000000000000..a29e004ccc6c7c --- /dev/null +++ b/pages.ko/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> 파일 및 디렉토리 복사. +> 더 많은 정보: . + +- 파일을 다른 위치로 복사: + +`cp {{경로/원본_파일.ext}} {{경로/목적_파일.ext}}` + +- 파일의 이름을 유지하면서 다른 디렉토리로 복사: + +`cp {{경로/원본_파일.ext}} {{경로/목적_디렉토리}}` + +- 디렉토리의 내용을 다른 위치에 재귀적으로 복사 (만일 목적 경로가 존재한다면 디렉토리는 해당 목적 경로 안에 복사됨): + +`cp -r {{경로/원본_디렉토리}} {{경로/목적_디렉토리}}` + +- 추가 정보를 제공하는 (verbose) 모드로 디렉토리를 재귀적으로 복사: + +`cp -vr {{경로/원본_디렉토리}} {{경로/목적_디렉토리}}` + +- 상호작용 (덮어쓰기 전 사용자에게 질문) 모드로 txt 파일을 다른 위치로 복사: + +`cp -i {{*.txt}} {{경로/목적_디렉토리}}` + +- 복사를 수행하기 전에 심볼릭 링크를 따라감: + +`cp -L {{링크}} {{경로/목적_디렉토리}}` + +- 원본 파일의 전체 경로를 사용해 존재하지 않는 중간 디렉토리를 생성하며 복사: + +`cp --parents {{경로/원본_파일}} {{경로/목적_파일}}` diff --git a/pages.ko/linux/ip-route-list.md b/pages.ko/linux/ip-route-list.md new file mode 100644 index 00000000000000..82aee362ca40a1 --- /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 00000000000000..62512c187bd15d --- /dev/null +++ b/pages.ko/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> 이 명령은 `megatools-dl` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr megatools-dl` diff --git a/pages.ko/linux/ncal.md b/pages.ko/linux/ncal.md new file mode 100644 index 00000000000000..fd08bd83ee6458 --- /dev/null +++ b/pages.ko/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> 이 명령은 `cal` 의 에일리어스 (별칭) 입니다. +> 더 많은 정보: . + +- 원본 명령의 도큐멘테이션 (설명서) 보기: + +`tldr cal` diff --git a/pages.ko/linux/ubuntu-bug.md b/pages.ko/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..16dda0c80dce10 --- /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 00000000000000..59f13f32f0df81 --- /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 00000000000000..30eca89f93bae9 --- /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 00000000000000..dd7ce87ac8d863 --- /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 00000000000000..7f4a4a0a1a9434 --- /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 00000000000000..5bf0610edff880 --- /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 00000000000000..b0c3c61f4dea24 --- /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 00000000000000..f35a976e1886be --- /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 00000000000000..873017a03da8ba --- /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 00000000000000..524756aa1978be --- /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 00000000000000..8df47e93d80d52 --- /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 00000000000000..5c9573281dcbbb --- /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 00000000000000..86322dd75635d4 --- /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 00000000000000..c077a1b1caa3a1 --- /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 00000000000000..c74bb0a5eb86c1 --- /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 00000000000000..338eb72a14cdf0 --- /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 00000000000000..01cd6dcf4c9c6f --- /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 00000000000000..06a769db69edd4 --- /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 00000000000000..f12b1afd0e871b --- /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 00000000000000..9f469457c5bc94 --- /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 00000000000000..e1c202d75d8429 --- /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 00000000000000..1d2383e4f2e9d1 --- /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 00000000000000..4897a82d8544c5 --- /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 00000000000000..1c6a68c2277965 --- /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 00000000000000..4e1523771866de --- /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 00000000000000..08547eee21f9c1 --- /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 00000000000000..db2ac6610b0dc0 --- /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 00000000000000..51f255e069a24a --- /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 00000000000000..682f0604f4aad8 --- /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 00000000000000..4390b057610eec --- /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 00000000000000..9193648062c296 --- /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 00000000000000..168e37be5247e0 --- /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 00000000000000..b76c7a3a7c5027 --- /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 00000000000000..0cfdd0700243ea --- /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 00000000000000..8b6728a8b4028f --- /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 00000000000000..623c663441192a --- /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 00000000000000..60a8210a0971cd --- /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 00000000000000..de8d5301d19dfa --- /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 00000000000000..a4a1fc79f99c26 --- /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 00000000000000..e6292844368000 --- /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 00000000000000..b5ad7b33562312 --- /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 00000000000000..df02d8ee2a1844 --- /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 00000000000000..df0da7f2cdb300 --- /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 00000000000000..520e9e4a870fde --- /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 00000000000000..a1d6e234f8c24a --- /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 00000000000000..a225904ba60a54 --- /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 00000000000000..c947b4cd14ca85 --- /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 00000000000000..3a3f16241a26e3 --- /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 00000000000000..bef83cfb40e24a --- /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 00000000000000..75add678f88858 --- /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 00000000000000..d7c85680e17d1d --- /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 00000000000000..d5459e15ef4cec --- /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 00000000000000..5493722eaa53b5 --- /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 00000000000000..7f57d6078ab05f --- /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 00000000000000..605d5054a4c4f5 --- /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 00000000000000..49ff9db99c1e8e --- /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 00000000000000..6fc9a91c17741b --- /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 00000000000000..d654eb70c66f5c --- /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 00000000000000..e497d241e9c7f1 --- /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 00000000000000..9f419c00584bb6 --- /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 00000000000000..4ffe205f2b1c6d --- /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 00000000000000..130ec4cd2bb1c6 --- /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 00000000000000..09eeae95da2182 --- /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 00000000000000..ab119b8c6bf7d3 --- /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 00000000000000..0d22b01be064dd --- /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 00000000000000..71644137d83fe6 --- /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 00000000000000..26b5735f2ad3df --- /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 00000000000000..814891b1647d7c --- /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 00000000000000..fae9a73aeb8308 --- /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 00000000000000..8f952e54065071 --- /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 00000000000000..708f78c4984a73 --- /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 00000000000000..a53b68bef58bfd --- /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 00000000000000..4550ba608b430c --- /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 00000000000000..d87de7872a344a --- /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 00000000000000..439b9e0c7a906d --- /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 00000000000000..94b0505f8deed2 --- /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 00000000000000..ce4bff162bcde1 --- /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 00000000000000..cc9ec006d0ff94 --- /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 00000000000000..2428de075f909e --- /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 00000000000000..cd5b5c17be1be9 --- /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 00000000000000..bc3baa82c9de01 --- /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 00000000000000..ade2c2e9b26fb3 --- /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 00000000000000..13907278bb75d3 --- /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 00000000000000..72da4970a23fff --- /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 00000000000000..3a322775e328f4 --- /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 00000000000000..71dab8c3d5f73c --- /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 00000000000000..23db15ab2e93ac --- /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 00000000000000..38cc3468622e9b --- /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 00000000000000..8788fb71366449 --- /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 00000000000000..91e313738dfe35 --- /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 00000000000000..b16d85b59d7992 --- /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 00000000000000..7f6fc8e7bc33c2 --- /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 00000000000000..d725cff4b6f978 --- /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 00000000000000..1f949c6261275c --- /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 00000000000000..9255a451a5a31d --- /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 00000000000000..a3df18619413cd --- /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 00000000000000..0e4d328f0d2c70 --- /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 00000000000000..0bc9bec0002358 --- /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 00000000000000..1dd9037be07f47 --- /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 00000000000000..8a5b271f9c2056 --- /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 00000000000000..fb41879b4a6d42 --- /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 00000000000000..ffcda6facc2f2f --- /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 00000000000000..4d0a47872bc253 --- /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 00000000000000..7f0d907986f5ae --- /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 00000000000000..7c07c0325cb10b --- /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 00000000000000..e21bcf8c190c12 --- /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 00000000000000..b451ca6d3f1239 --- /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 00000000000000..8857afbe14d593 --- /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 00000000000000..631426ef94d5b8 --- /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 00000000000000..47dac195322fbb --- /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 00000000000000..fea890bcba1aa6 --- /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 00000000000000..cf2300c7a62b91 --- /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 00000000000000..32d2641ba11b0f --- /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 00000000000000..10206c8c3f1a67 --- /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 00000000000000..bc46762656b9a9 --- /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 00000000000000..aa0b4777798f7c --- /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 00000000000000..89459d0a8c73c9 --- /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 00000000000000..a459b97c72a323 --- /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 00000000000000..fd24bf7f2c04f4 --- /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 00000000000000..9396ad704ecf73 --- /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 00000000000000..6fec390db24698 --- /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 00000000000000..6b928f8fd142c0 --- /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 00000000000000..7469c91c82725b --- /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 00000000000000..19c5eceb992e0a --- /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 00000000000000..f9857c4f61005a --- /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 00000000000000..4677fc88c522ab --- /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 00000000000000..323b2082e4426c --- /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 00000000000000..023bcc1b500fd5 --- /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 00000000000000..938aae93f1d53f --- /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 00000000000000..0866edba0fc1b3 --- /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 00000000000000..584c8467729249 --- /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 00000000000000..27fcbf192305fa --- /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 00000000000000..07e28141c5cbff --- /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 00000000000000..2c13904391b25e --- /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 00000000000000..f0b3aa6d654630 --- /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 00000000000000..c23e7d0a82d99d --- /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 00000000000000..b1f474fca53dd7 --- /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 00000000000000..0afb4a9b6ab42f --- /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 00000000000000..a44f5c831d9fc4 --- /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 00000000000000..ed164d73728103 --- /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 00000000000000..af4ad5369141f2 --- /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 00000000000000..7b91447314ffcc --- /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 00000000000000..591b620492b131 --- /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 00000000000000..6872a087d0eb80 --- /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 00000000000000..5f1342aa286760 --- /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 00000000000000..353a42d3f62c4c --- /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 00000000000000..94bb308c07deef --- /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 00000000000000..04523d6d1b81aa --- /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 00000000000000..35f16d6b62a828 --- /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 00000000000000..8047e23437ccf4 --- /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 00000000000000..200d29fb2e22d6 --- /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 00000000000000..636560e11de7c6 --- /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 00000000000000..ac0712052bfadb --- /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/aws-cur.md b/pages.lo/common/aws-cur.md new file mode 100644 index 00000000000000..c1146cf0e6fc68 --- /dev/null +++ b/pages.lo/common/aws-cur.md @@ -0,0 +1,16 @@ +# aws cur + +> Create, query, ແລະ delete AWS ທີ່ສະແດງເຖິງຄຳຈຳກັດຄວາມ. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ສ້າງຕົ້ນທຶນ AWS ແລະ ລາຍງານການໃຊ້ງານຈາກໄຟລ໌ JSON: + +`aws cur put-report-definition --report-definition file://{{path/to/report_definition.json}}` + +- ລາຍງານກາຍເຄື່ອນໄຫວຂອງບັນຊີ: + +`aws cur describe-report-definitions` + +- ລຶບລາຍງານການເຄື່ອນໄຫວ: + +`aws cur --region {{aws_region}} delete-report-definition --report-name {{report}}` diff --git a/pages.lo/common/bundler.md b/pages.lo/common/bundler.md new file mode 100644 index 00000000000000..d9b53f836713a2 --- /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 00000000000000..c0fe7ef88d115d --- /dev/null +++ b/pages.lo/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clamdscan`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr clamdscan` diff --git a/pages.lo/common/clang-cpp.md b/pages.lo/common/clang-cpp.md new file mode 100644 index 00000000000000..dea522bf60237c --- /dev/null +++ b/pages.lo/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clang++`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr clang++` diff --git a/pages.lo/common/clojure.md b/pages.lo/common/clojure.md new file mode 100644 index 00000000000000..c3a6aac658c075 --- /dev/null +++ b/pages.lo/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clj`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr clj` diff --git a/pages.lo/common/cola.md b/pages.lo/common/cola.md new file mode 100644 index 00000000000000..46b3e43169bd28 --- /dev/null +++ b/pages.lo/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `git-cola`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr git-cola` diff --git a/pages.lo/common/cron.md b/pages.lo/common/cron.md new file mode 100644 index 00000000000000..825fb61590815d --- /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 00000000000000..267ba072828fb6 --- /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 00000000000000..3f97df4215deb2 --- /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 00000000000000..dd9d7e779e3a59 --- /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 00000000000000..7f261bf6ef392e --- /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 00000000000000..812206519be85c --- /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 00000000000000..2acd695c3cdfe3 --- /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 00000000000000..bde3acc9ea15f7 --- /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 00000000000000..6e3cfc52a19486 --- /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 00000000000000..3ec124418ba185 --- /dev/null +++ b/pages.lo/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `kcat`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr kcat` diff --git a/pages.lo/common/llvm-ar.md b/pages.lo/common/llvm-ar.md new file mode 100644 index 00000000000000..82d06fe2a51dc9 --- /dev/null +++ b/pages.lo/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `ar`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr ar` diff --git a/pages.lo/common/llvm-g++.md b/pages.lo/common/llvm-g++.md new file mode 100644 index 00000000000000..294b144c268ddb --- /dev/null +++ b/pages.lo/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clang++`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr clang++` diff --git a/pages.lo/common/llvm-gcc.md b/pages.lo/common/llvm-gcc.md new file mode 100644 index 00000000000000..e2f253b2854617 --- /dev/null +++ b/pages.lo/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `clang`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr clang` diff --git a/pages.lo/common/llvm-nm.md b/pages.lo/common/llvm-nm.md new file mode 100644 index 00000000000000..eab1138fa4369b --- /dev/null +++ b/pages.lo/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `nm`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr nm` diff --git a/pages.lo/common/llvm-objdump.md b/pages.lo/common/llvm-objdump.md new file mode 100644 index 00000000000000..dcedb003af253d --- /dev/null +++ b/pages.lo/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `objdump`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr objdump` diff --git a/pages.lo/common/llvm-strings.md b/pages.lo/common/llvm-strings.md new file mode 100644 index 00000000000000..f76e9b26d29d16 --- /dev/null +++ b/pages.lo/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `strings`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr strings` diff --git a/pages.lo/common/lzcat.md b/pages.lo/common/lzcat.md new file mode 100644 index 00000000000000..b80f469ce5d7f9 --- /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 00000000000000..5571bcbd8ddcaa --- /dev/null +++ b/pages.lo/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/mscore.md b/pages.lo/common/mscore.md new file mode 100644 index 00000000000000..ce57ab2b70aa87 --- /dev/null +++ b/pages.lo/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `musescore`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr musescore` diff --git a/pages.lo/common/nm-classic.md b/pages.lo/common/nm-classic.md new file mode 100644 index 00000000000000..c7a360ea96a367 --- /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 00000000000000..ddc938258b0b60 --- /dev/null +++ b/pages.lo/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `netlify`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr netlify` diff --git a/pages.lo/common/pio-init.md b/pages.lo/common/pio-init.md new file mode 100644 index 00000000000000..0399c75744c956 --- /dev/null +++ b/pages.lo/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `pio project`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr pio project` diff --git a/pages.lo/common/piodebuggdb.md b/pages.lo/common/piodebuggdb.md new file mode 100644 index 00000000000000..5f9d5bbe7135e1 --- /dev/null +++ b/pages.lo/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `pio debug --interface=gdb`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr pio debug` diff --git a/pages.lo/common/platformio.md b/pages.lo/common/platformio.md new file mode 100644 index 00000000000000..ee9b0cb7517684 --- /dev/null +++ b/pages.lo/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `pio`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr pio` diff --git a/pages.lo/common/ptpython3.md b/pages.lo/common/ptpython3.md new file mode 100644 index 00000000000000..8dd56d9fbe62a1 --- /dev/null +++ b/pages.lo/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `ptpython`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr ptpython` diff --git a/pages.lo/common/pwd.md b/pages.lo/common/pwd.md new file mode 100644 index 00000000000000..97a59cac62107b --- /dev/null +++ b/pages.lo/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> ສະແດງຊື່ directory ທີ່ເຮັດວຽກຢູ່ +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ສະແດງຊື່ directory ທີ່ເຮັດວຽກຢູ່: + +`pwd` + +- ສະແດງຊື່ directory ທີ່ເຮັດວຽກຢູ່ໂດຍບໍ່ລວມ symlinks: + +`pwd -P` diff --git a/pages.lo/common/python3.md b/pages.lo/common/python3.md new file mode 100644 index 00000000000000..65bf088a7f184e --- /dev/null +++ b/pages.lo/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `python`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr python` diff --git a/pages.lo/common/r2.md b/pages.lo/common/r2.md new file mode 100644 index 00000000000000..14e1a01cbd9fed --- /dev/null +++ b/pages.lo/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `radare2`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr radare2` diff --git a/pages.lo/common/rcat.md b/pages.lo/common/rcat.md new file mode 100644 index 00000000000000..f8e07e651d9b31 --- /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 00000000000000..9a74b76a79b9a1 --- /dev/null +++ b/pages.lo/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `rg`. + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr rg` diff --git a/pages.lo/common/tldr.md b/pages.lo/common/tldr.md new file mode 100644 index 00000000000000..4486815165a866 --- /dev/null +++ b/pages.lo/common/tldr.md @@ -0,0 +1,20 @@ +# tldr + +> ສະແດງໜ້າຊ່ວຍເຫຼືອແບບງ່າຍໆສຳລັບເຄື່ອງມືແຖວຄຳສັ່ງຈາກໂຄງການ tldr-pages. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ສະແດງຫນ້າ tldr ສໍາລັບຄໍາສັ່ງສະເພາະ(ຄໍາແນະນໍາ: ນີ້ແມ່ນວິທີທີ່ທ່ານມາຮອດນີ້!): + +`tldr {{ຄໍາສັ່ງ}}` + +- ສະແດງໜ້າ tldr ສໍາລັບຄໍາສັ່ງຍ່ອຍສະເພາະ: + +`tldr {{ຄໍາສັ່ງ}}-{{ຄໍາສັ່ງຍ່ອຍ}}` + +- ສະແດງຫນ້າ tldr ສໍາລັບຄໍາສັ່ງສໍາລັບເວທີ [p] ສະເພາະ: + +`tldr -p {{android|linux|osx|sunos|windows}} {{ຄໍາສັ່ງ}}` + +- ປັບ​ປຸງ​ຖານ​ຄວາມ​ຈໍາ​ທ້ອງ​ຖິ່ນ​ຂອງ tldr ຫນ້າ​: + +`tldr -u` diff --git a/pages.lo/common/tldrl.md b/pages.lo/common/tldrl.md new file mode 100644 index 00000000000000..60ca958e509254 --- /dev/null +++ b/pages.lo/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `tldr-lint`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr tldr-lint` diff --git a/pages.lo/common/tlmgr-arch.md b/pages.lo/common/tlmgr-arch.md new file mode 100644 index 00000000000000..541519c01964b8 --- /dev/null +++ b/pages.lo/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `tlmgr platform`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr tlmgr platform` diff --git a/pages.lo/common/todoman.md b/pages.lo/common/todoman.md new file mode 100644 index 00000000000000..68ac3ca71d1420 --- /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 00000000000000..4485d61bbe8f24 --- /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 00000000000000..66907105df2405 --- /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 00000000000000..0e75b939f962fc --- /dev/null +++ b/pages.lo/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `xz`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr xz` diff --git a/pages.lo/common/vi.md b/pages.lo/common/vi.md new file mode 100644 index 00000000000000..eeceed4d619421 --- /dev/null +++ b/pages.lo/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `vim`. + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr vim` diff --git a/pages.lo/common/xzcat.md b/pages.lo/common/xzcat.md new file mode 100644 index 00000000000000..72a9a2817f9d18 --- /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 00000000000000..8ac9f9a5c325e8 --- /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 00000000000000..d4886b291a3cb2 --- /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 00000000000000..e4494a6ae02797 --- /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 00000000000000..60ee1dcc670254 --- /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 00000000000000..8fa4e834b88e9b --- /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 00000000000000..9d2b67301cad8c --- /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 00000000000000..9d9f925044e44d --- /dev/null +++ b/pages.lo/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `megatools-dl`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr megatools-dl` diff --git a/pages.lo/linux/ncal.md b/pages.lo/linux/ncal.md new file mode 100644 index 00000000000000..251253bad04671 --- /dev/null +++ b/pages.lo/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `cal`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr cal` diff --git a/pages.lo/linux/pwd.md b/pages.lo/linux/pwd.md new file mode 100644 index 00000000000000..df0ca57a417641 --- /dev/null +++ b/pages.lo/linux/pwd.md @@ -0,0 +1,16 @@ +# pwd + +> ສະແດງຊື່ directory ທີ່ໃຊ້ຢູ່ +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ສະແດງຊື່ directory ທີ່ໃຊ້ຢູ່: + +`pwd` + +- ສະແດງຊື່ directory ທີ່ໃຊ້ຢູ່ໂດຍບໍ່ລວມ symlinks: + +`pwd --physical` + +- ສະແດງຊື່ directory ທີ່ໃຊ້ຢູ່ໂດຍໃຊ້ PWD ຈາກ environment ເຖິງຈະລວມ symlinks: + +`pwd --logical` diff --git a/pages.lo/linux/ubuntu-bug.md b/pages.lo/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..207bf159224c0b --- /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 00000000000000..9941d0ce4905c6 --- /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 00000000000000..b8d7464116d8fd --- /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 00000000000000..2d182a6a28cf01 --- /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 00000000000000..6e94ed34ae4b1a --- /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 00000000000000..3ff2c823693b86 --- /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 00000000000000..8a3fe2eecd2791 --- /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 00000000000000..700332ac4b6fe3 --- /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 00000000000000..691a93ca7abeba --- /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 00000000000000..57b1c1c81d38a9 --- /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 00000000000000..cf57a47b9eb7e3 --- /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 00000000000000..69b6493b9e54c5 --- /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 00000000000000..82099897d5c4f8 --- /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 00000000000000..a5fc4c1ce30caf --- /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 00000000000000..20f8a6e9fd12e8 --- /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 00000000000000..ff2449605e2713 --- /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 00000000000000..11a2a51f73ae04 --- /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 00000000000000..2aab86a6677e5f --- /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 00000000000000..0dfb23c0f4972b --- /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 00000000000000..ef03e21d29a7f3 --- /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 00000000000000..e7a69bec857618 --- /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 00000000000000..0d980a393be868 --- /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 00000000000000..0e4d95ffc098d5 --- /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 00000000000000..801bd39a105802 --- /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 00000000000000..fe2cc57d3e1e7d --- /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 00000000000000..2618b1612ab8a7 --- /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 00000000000000..82c498419e1a46 --- /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 00000000000000..10d028e6fa8286 --- /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 00000000000000..0bf057b5467ad2 --- /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 00000000000000..9014787d6dff8e --- /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 00000000000000..ef1a3610a3c959 --- /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 00000000000000..cf54903dce6443 --- /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 00000000000000..aed7542dd570f2 --- /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 00000000000000..8c2c1b94049bdf --- /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 00000000000000..a9770935152333 --- /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 00000000000000..1582ce745b7b5e --- /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 00000000000000..62b93aca64f998 --- /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 00000000000000..f7c8f20b223b4e --- /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 00000000000000..d3736e87581f12 --- /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 00000000000000..8ff51d3b1a67c3 --- /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 00000000000000..ab781a30607ed8 --- /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 00000000000000..50a18270941d85 --- /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 00000000000000..de9e976e6e185f --- /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 00000000000000..b368de72bad63f --- /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 00000000000000..5a91f93b7f7e1e --- /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 00000000000000..7940bbbd461a52 --- /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 00000000000000..062b95af3975cc --- /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 00000000000000..c46e66dedb97ac --- /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 00000000000000..4f3890961f002c --- /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 00000000000000..9b3854f32d7eb5 --- /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 00000000000000..8ec8fef87b2eea --- /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 00000000000000..9e439a3a7a1402 --- /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 00000000000000..61a1d23e34f3e0 --- /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 00000000000000..35f36225e25eb8 --- /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 00000000000000..eb27f08b2138a4 --- /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 00000000000000..f4a94627a7de06 --- /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 00000000000000..bb22b805650e35 --- /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 00000000000000..f0eb704c2c6a54 --- /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 00000000000000..978de4b0823b33 --- /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 00000000000000..7ecfd5762b2720 --- /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 00000000000000..67c64cb46fc4bf --- /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 00000000000000..b99e0747547b3a --- /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 00000000000000..6d68ccbc17ff93 --- /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 00000000000000..646a49ee13045e --- /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 00000000000000..8b656309998e56 --- /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 00000000000000..1a0b33b36b994c --- /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 00000000000000..d7ff31c56acd2e --- /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 00000000000000..50c5b69213b66b --- /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 00000000000000..571c1b20e3f2c1 --- /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 00000000000000..386020f350b02d --- /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 00000000000000..833ce9a2673026 --- /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 00000000000000..73405755186a8d --- /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 00000000000000..e31d8fd7f04591 --- /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 00000000000000..37ad6102182f11 --- /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 00000000000000..020675d0d8614d --- /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 00000000000000..df78d4664b94c7 --- /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 00000000000000..deae5cbd48271f --- /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 00000000000000..91673c789eeb78 --- /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 00000000000000..0499d7e54e33ba --- /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 00000000000000..f7b7c929a5f3b6 --- /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 00000000000000..ff03148dce53bf --- /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 00000000000000..ea20aaddf28882 --- /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 00000000000000..9c95e3c5c40cee --- /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 00000000000000..ac18d0664d789c --- /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 00000000000000..866511463130d1 --- /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 00000000000000..fa49b1efa0d6eb --- /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 00000000000000..f5e10e69074df7 --- /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 00000000000000..8d067069dc3c9c --- /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 00000000000000..ecd54dce428a6e --- /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 00000000000000..3b490e89a13ab7 --- /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 00000000000000..5d1a9bf8863775 --- /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 00000000000000..5885ca82dcae37 --- /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 00000000000000..855f2d7b879210 --- /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 00000000000000..0782d258ebeb4f --- /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 00000000000000..bf7c69313b3220 --- /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 00000000000000..40ad7d4ebcb9b0 --- /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 00000000000000..52a4d46a792a44 --- /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 00000000000000..939f7a2f08c9c2 --- /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 00000000000000..ba4f676131eeb5 --- /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 00000000000000..55ddf32cf9a6af --- /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 00000000000000..441092ce447f76 --- /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 00000000000000..14bc837a695747 --- /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 00000000000000..f593b688191a3a --- /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 00000000000000..1d555dce146510 --- /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 00000000000000..323e28d1fa8100 --- /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 00000000000000..7583aabda528ed --- /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 00000000000000..823934f5a85529 --- /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 00000000000000..264f4c5a87b75d --- /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 00000000000000..83749b5ebda6ce --- /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 00000000000000..e91c1f7e911e72 --- /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 00000000000000..f61d9ba7859472 --- /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 00000000000000..b749a7b5506547 --- /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 00000000000000..c456528e99dc57 --- /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 00000000000000..de8c8bb60770a7 --- /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 00000000000000..faa1a54b053fc3 --- /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 00000000000000..1e9fde5e8abc71 --- /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 00000000000000..aca3fee53c97ee --- /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 00000000000000..11e390851cf182 --- /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 00000000000000..245d7288cb9666 --- /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 00000000000000..7e28219e3b45f5 --- /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 00000000000000..f1cb9ebff619a2 --- /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 00000000000000..d43d35fb690855 --- /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 00000000000000..3fd5198f86cd13 --- /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 00000000000000..5d4be39b0eb527 --- /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 00000000000000..b0df711a01b513 --- /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 00000000000000..ab8964a045792a --- /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 00000000000000..0662b2d500a4c1 --- /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 00000000000000..9527a22aa7031d --- /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 00000000000000..fbe752f174cf56 --- /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 00000000000000..f75e5f0c8f9519 --- /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 00000000000000..8f69433f9d5b05 --- /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 00000000000000..f196a138e1f845 --- /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 00000000000000..ad6e2c83327e5d --- /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 00000000000000..6952d55ea5654f --- /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 00000000000000..d96434711d57e4 --- /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 00000000000000..6f5fc022dc4d07 --- /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 00000000000000..4e84a0e9999d3b --- /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 00000000000000..fdabe10b767b99 --- /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 00000000000000..84091251ead7fb --- /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 00000000000000..4f136285810705 --- /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 00000000000000..4398f01da003b9 --- /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 00000000000000..38b429565823e2 --- /dev/null +++ b/pages.lo/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `launchctl`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr launchctl` diff --git a/pages.lo/windows/chrome.md b/pages.lo/windows/chrome.md new file mode 100644 index 00000000000000..1b5978a400702f --- /dev/null +++ b/pages.lo/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `chromium`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr chromium` diff --git a/pages.lo/windows/cinst.md b/pages.lo/windows/cinst.md new file mode 100644 index 00000000000000..10f9167395ceee --- /dev/null +++ b/pages.lo/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `choco install`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr choco install` diff --git a/pages.lo/windows/clist.md b/pages.lo/windows/clist.md new file mode 100644 index 00000000000000..b1725a91f6f856 --- /dev/null +++ b/pages.lo/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `choco list`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr choco list` diff --git a/pages.lo/windows/cls.md b/pages.lo/windows/cls.md new file mode 100644 index 00000000000000..928caa62a5360c --- /dev/null +++ b/pages.lo/windows/cls.md @@ -0,0 +1,8 @@ +# cls + +> ລ້າງຕົວອັກສອນທັງໝົດເທິງໜ້າຈໍ +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ລ້າງຕົວອັກສອນທັງໝົດເທິງໜ້າຈໍ + +`cls` diff --git a/pages.lo/windows/cpush.md b/pages.lo/windows/cpush.md new file mode 100644 index 00000000000000..bacb0f39e6bf00 --- /dev/null +++ b/pages.lo/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `choco-push`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຂອງຄຳສັ່ງແບບເຕັມ: + +`tldr choco-push` diff --git a/pages.lo/windows/cuninst.md b/pages.lo/windows/cuninst.md new file mode 100644 index 00000000000000..356d108754546d --- /dev/null +++ b/pages.lo/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> ຄຳສັ່ງນີ້ເປັນອີກຊື່ໜຶ່ງຂອງຄຳສັ່ງ `choco uninstall`. +> ຂໍ້ມູນເພີ່ມເຕີມ: . + +- ເປີດເບິ່ງລາຍລະອຽດຄຳສັ່ງແບບເຕັມ: + +`tldr choco uninstall` diff --git a/pages.lo/windows/curl.md b/pages.lo/windows/curl.md new file mode 100644 index 00000000000000..f58860b9df09d3 --- /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 00000000000000..ad4e725cd68301 --- /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 00000000000000..79180399972b47 --- /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 00000000000000..2d42208f57d2cf --- /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 00000000000000..bca5ffda8be5b7 --- /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 00000000000000..87245fa0b02d79 --- /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/ani-cli.md b/pages.ml/common/ani-cli.md new file mode 100644 index 00000000000000..eea5462001682b --- /dev/null +++ b/pages.ml/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> അനിമേ തിരയുവാനും കാണുവാനുമുള്ള കമാൻഡ് ലൈൻ യൂട്ടിലിറ്റി. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു അനിമേയുടെ പേര് സെർച്ച് ചെയ്യുവാൻ: + +`ani-cli "{{അനിമേയുടെ_പേര്}}"` + +- ഒരു എപ്പിസോഡ് ഡൗൺലോഡ് ചെയ്യുവാൻ: + +`ani-cli -d "{{അനിമേയുടെ_പേര്}}"` + +- വി.എൽ.സി മീഡിയ പ്ലേയറിൽ കാണുവാൻ: + +`ani-cli -v "{{അനിമേയുടെ_പേര്}}"` + +- നിശ്ചിത എപ്പിസോഡ് കാണുവാൻ: + +`ani-cli -a {{എപ്പിസോഡ്_നമ്പർ}} "{{അനിമേയുടെ_പേര്}}"` + +- മുൻപ് കണ്ടുകൊണ്ടിരുന്ന അനിമേ തുടർന്ന് കാണുവാൻ: + +`ani-cli -c` + +- ഈ യൂട്ടിലിറ്റി അപ്ഡേറ്റ് ചെയ്യുവാൻ: + +`ani-cli -U` diff --git a/pages.ml/common/bundler.md b/pages.ml/common/bundler.md new file mode 100644 index 00000000000000..cd272eb6c451e5 --- /dev/null +++ b/pages.ml/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> ഈ കമാൻഡ് `bundle` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bundle` diff --git a/pages.ml/common/calc.md b/pages.ml/common/calc.md new file mode 100644 index 00000000000000..8cc934cf96ad43 --- /dev/null +++ b/pages.ml/common/calc.md @@ -0,0 +1,12 @@ +# calc + +> ടെർമിനലിൽ പ്രവർത്തിക്കുന്ന ഒരു ഇന്ററാക്ടിവ് ആർബിറ്റററി-പ്രിസിഷൻ കാൽക്കുലേറ്റർ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഇന്ററാക്ടിവ് മോഡിൽ കാൽക്കുലേറ്റർ പ്രവർത്തിപ്പിക്കാൻ: + +`calc` + +- നോൺ-ഇന്ററാക്ടിവ് മോഡിൽ ഒരു ഗണിതക്രിയ ചെയ്യുവാൻ: + +`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.ml/common/clamav.md b/pages.ml/common/clamav.md new file mode 100644 index 00000000000000..ef46d6a78c57c8 --- /dev/null +++ b/pages.ml/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> ഈ കമാൻഡ് `clamdscan` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clamdscan` diff --git a/pages.ml/common/clang-cpp.md b/pages.ml/common/clang-cpp.md new file mode 100644 index 00000000000000..65f5a08ef6e20e --- /dev/null +++ b/pages.ml/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> ഈ കമാൻഡ് `clang++` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clang++` diff --git a/pages.ml/common/clojure.md b/pages.ml/common/clojure.md new file mode 100644 index 00000000000000..f15c506a1cc2b4 --- /dev/null +++ b/pages.ml/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> ഈ കമാൻഡ് `clj` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clj` diff --git a/pages.ml/common/cola.md b/pages.ml/common/cola.md new file mode 100644 index 00000000000000..17288fb88de492 --- /dev/null +++ b/pages.ml/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> ഈ കമാൻഡ് `git-cola` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr git-cola` diff --git a/pages.ml/common/cron.md b/pages.ml/common/cron.md new file mode 100644 index 00000000000000..f757c14585bc06 --- /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 00000000000000..fc441861bb229f --- /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 00000000000000..5c58004121c541 --- /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 00000000000000..a3036c91cd5f75 --- /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 00000000000000..5abed24ebadbf0 --- /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 00000000000000..ae1c13e10f45a5 --- /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/git.md b/pages.ml/common/git.md new file mode 100644 index 00000000000000..98db01f38207b1 --- /dev/null +++ b/pages.ml/common/git.md @@ -0,0 +1,29 @@ +# git + +> പ്രോഗ്രാമുകളുടെ പല പതിപ്പുകൾ പലയിടങ്ങളിലായി സൂക്ഷിക്കുവാനും നിയന്ത്രിക്കുവാനും ഉള്ള വികേന്ദ്രീകൃത പതിപ്പ് നിയന്ത്രണ സംവിധാനം. +> `commit`, `add`, `branch`, `checkout`, `push` മുതലായ ചില ഉപകമാൻഡുകൾക്ക് അവരുടേതായ ഡോക്യുമെന്റേഷൻ ഉണ്ട്, `tldr git {{ഉപകമാൻഡ്}}` വഴി അവ കാണാൻ കഴിയും. +> കൂടുതൽ വിവരങ്ങൾ: . + +- നിങ്ങൾ ഉപയോഗിക്കുന്ന ഗിറ്റിന്റെ പതിപ്പ് പരിശോധിക്കാൻ: + +`git --version` + +- സഹായ നിർദേശങ്ങൾ കാണുവാൻ: + +`git --help` + +- `clone`, `add`, `push`, `log` പോലുള്ള ഉപകമാൻഡുകളുടെ സഹായ നിർദേശങ്ങൾ കാണുവാൻ: + +`git help {{ഉപകമാൻഡ്}}` + +- ഗിറ്റ് ഉപകമാന്റുകൾ എക്സിക്യൂട്ട് ചെയ്യുവാൻ: + +`git {{ഉപകമാൻഡ്}}` + +- ഒരു ഇഷ്‌ടാനുസൃത ശേഖരണത്തിന്റെ/റിപ്പോസിറ്ററിയുടെ റൂട്ട് പാതയിൽ ഒരു Git സബ്‌കമാൻഡ് എക്‌സിക്യൂട്ട് ചെയ്യാൻ: + +`git -C {{ശേഖരണത്തിലേക്കുള്ള/പാത}} {{ഉപകമാൻഡ്}}` + +- ഒരു കോൺഫിഗറേഷൻ സെറ്റ് ഉപയോഗിച്ച് Git ഉപകമാൻഡ് എക്സിക്യൂട്ട് ചെയ്യാൻ: + +`git -c '{{കോൺഫിഗ്.പേര്}}={{മൂല്യം}}' {{ഉപകമാൻഡ്}}` diff --git a/pages.ml/common/gnmic-sub.md b/pages.ml/common/gnmic-sub.md new file mode 100644 index 00000000000000..94caa40159bb86 --- /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 00000000000000..f33afa92b3b296 --- /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 00000000000000..1705b4b8a0d545 --- /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 00000000000000..fcb0a0252d471c --- /dev/null +++ b/pages.ml/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> ഈ കമാൻഡ് `kcat` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr kcat` diff --git a/pages.ml/common/llvm-ar.md b/pages.ml/common/llvm-ar.md new file mode 100644 index 00000000000000..ed0a87009b581e --- /dev/null +++ b/pages.ml/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> ഈ കമാൻഡ് `ar` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr ar` diff --git a/pages.ml/common/llvm-g++.md b/pages.ml/common/llvm-g++.md new file mode 100644 index 00000000000000..9cb9d476086f77 --- /dev/null +++ b/pages.ml/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> ഈ കമാൻഡ് `clang++` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clang++` diff --git a/pages.ml/common/llvm-gcc.md b/pages.ml/common/llvm-gcc.md new file mode 100644 index 00000000000000..db7449f6372ea9 --- /dev/null +++ b/pages.ml/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> ഈ കമാൻഡ് `clang` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr clang` diff --git a/pages.ml/common/llvm-nm.md b/pages.ml/common/llvm-nm.md new file mode 100644 index 00000000000000..8002d962727657 --- /dev/null +++ b/pages.ml/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> ഈ കമാൻഡ് `nm` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr nm` diff --git a/pages.ml/common/llvm-objdump.md b/pages.ml/common/llvm-objdump.md new file mode 100644 index 00000000000000..d7688f4daaa57d --- /dev/null +++ b/pages.ml/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> ഈ കമാൻഡ് `objdump` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr objdump` diff --git a/pages.ml/common/llvm-strings.md b/pages.ml/common/llvm-strings.md new file mode 100644 index 00000000000000..5eccf027b7a029 --- /dev/null +++ b/pages.ml/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> ഈ കമാൻഡ് `strings` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr strings` diff --git a/pages.ml/common/lzcat.md b/pages.ml/common/lzcat.md new file mode 100644 index 00000000000000..9624a9b7045e22 --- /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 00000000000000..27a2efed22a49a --- /dev/null +++ b/pages.ml/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/mscore.md b/pages.ml/common/mscore.md new file mode 100644 index 00000000000000..a515ad94d184dd --- /dev/null +++ b/pages.ml/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> ഈ കമാൻഡ് `musescore` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr musescore` diff --git a/pages.ml/common/nm-classic.md b/pages.ml/common/nm-classic.md new file mode 100644 index 00000000000000..95504d14136f1f --- /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 00000000000000..f2582842caa77c --- /dev/null +++ b/pages.ml/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> ഈ കമാൻഡ് `netlify` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr netlify` diff --git a/pages.ml/common/pio-init.md b/pages.ml/common/pio-init.md new file mode 100644 index 00000000000000..fdcf17f7e398eb --- /dev/null +++ b/pages.ml/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> ഈ കമാൻഡ് `pio project` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr pio project` diff --git a/pages.ml/common/piodebuggdb.md b/pages.ml/common/piodebuggdb.md new file mode 100644 index 00000000000000..fc16aee7b0e6e4 --- /dev/null +++ b/pages.ml/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> ഈ കമാൻഡ് `pio debug` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr pio debug` diff --git a/pages.ml/common/platformio.md b/pages.ml/common/platformio.md new file mode 100644 index 00000000000000..881e1ddb228843 --- /dev/null +++ b/pages.ml/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> ഈ കമാൻഡ് `pio` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr pio` diff --git a/pages.ml/common/ptpython3.md b/pages.ml/common/ptpython3.md new file mode 100644 index 00000000000000..b81bb74a2cf71f --- /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 00000000000000..785c67fb289628 --- /dev/null +++ b/pages.ml/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> ഈ കമാൻഡ് `python` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr python` diff --git a/pages.ml/common/r2.md b/pages.ml/common/r2.md new file mode 100644 index 00000000000000..d25276767b76d1 --- /dev/null +++ b/pages.ml/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> ഈ കമാൻഡ് `radare2` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr radare2` diff --git a/pages.ml/common/rcat.md b/pages.ml/common/rcat.md new file mode 100644 index 00000000000000..ff9e71879aab23 --- /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 00000000000000..a5eb86bf4f82bd --- /dev/null +++ b/pages.ml/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> ഈ കമാൻഡ് `rg` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr rg` diff --git a/pages.ml/common/sleep.md b/pages.ml/common/sleep.md new file mode 100644 index 00000000000000..ce6c5403d8424f --- /dev/null +++ b/pages.ml/common/sleep.md @@ -0,0 +1,16 @@ +# sleep + +> കാലതാമസം വരുത്തുവാനുള്ള പ്രോഗ്രാം. +> കൂടുതൽ വിവരങ്ങൾ: . + +- നിമിഷങ്ങൾ വൈകിക്കാൻ: + +`sleep {{നിമിഷങ്ങൾ}}` + +- മിനിറ്റുകൾ വൈകിക്കാൻ: + +`sleep {{മിനിറ്റുകൾ}}m` + +- മണിക്കൂറുകൾ വൈകിക്കാൻ: + +`sleep {{മണിക്കൂറുകൾ}}h` diff --git a/pages.ml/common/tldrl.md b/pages.ml/common/tldrl.md new file mode 100644 index 00000000000000..a4962a250467e7 --- /dev/null +++ b/pages.ml/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> ഈ കമാൻഡ് `tldr-lint` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr tldr-lint` diff --git a/pages.ml/common/tlmgr-arch.md b/pages.ml/common/tlmgr-arch.md new file mode 100644 index 00000000000000..8895bf9c94f511 --- /dev/null +++ b/pages.ml/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> ഈ കമാൻഡ് `tlmgr platform` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr tlmgr platform` diff --git a/pages.ml/common/todoman.md b/pages.ml/common/todoman.md new file mode 100644 index 00000000000000..f46df3bffb603f --- /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 00000000000000..e179b401ed7530 --- /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 00000000000000..39891efa89d5b4 --- /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 00000000000000..84a90eebb022d5 --- /dev/null +++ b/pages.ml/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> ഈ കമാൻഡ് `xz` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr xz` diff --git a/pages.ml/common/vi.md b/pages.ml/common/vi.md new file mode 100644 index 00000000000000..f095d56accafc2 --- /dev/null +++ b/pages.ml/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> ഈ കമാൻഡ് `vim` എന്നത്തിന്റെ അപരനാമമാണ്. + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr vim` diff --git a/pages.ml/common/xzcat.md b/pages.ml/common/xzcat.md new file mode 100644 index 00000000000000..679ae76b05fa6b --- /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 00000000000000..cad2aefa25da23 --- /dev/null +++ b/pages.ml/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> ഈ കമാൻഡ് `update-alternatives` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr update-alternatives` diff --git a/pages.ml/linux/apt.md b/pages.ml/linux/apt.md index 6f4a10bdf9f0cf..282944868afae4 100644 --- a/pages.ml/linux/apt.md +++ b/pages.ml/linux/apt.md @@ -1,7 +1,7 @@ # apt > ഡെബിയൻ അടിസ്ഥാനമാക്കിയുള്ള വിതരണങ്ങൾക്കായുള്ള പാക്കേജ് മാനേജുമെന്റ് യൂട്ടിലിറ്റി. -> ഉബുണ്ടു പതിപ്പുകളിൽ 16.04ലും അതിനുശേഷമുള്ളതിലും സംവേദനാത്മകമായി ഉപയോഗിക്കുമ്പോൾ apt-get പകരം വയ്ക്കാൻ ശുപാർശ ചെയ്യുന്നതു. +> ഉബുണ്ടു പതിപ്പുകളിൽ 16.04ലും അതിനുശേഷമുള്ളതിലും സംവേദനാത്മകമായി ഉപയോഗിക്കുമ്പോൾ `apt-get` പകരം വയ്ക്കാൻ ശുപാർശ ചെയ്യുന്നതു. > കൂടുതൽ വിവരങ്ങൾ: . - ലഭ്യമായ പാക്കേജുകളുടെയും പതിപ്പുകളുടെയും പട്ടിക അപ്‌ഡേറ്റുചെയ്യുക (മറ്റ് `apt` കമാൻഡുകൾക്ക് മുമ്പ് ഇത് പ്രവർത്തിപ്പിക്കാൻ ശുപാർശ ചെയ്യുന്നു): diff --git a/pages.ml/linux/aspell.md b/pages.ml/linux/aspell.md new file mode 100644 index 00000000000000..b26c2ae6a49697 --- /dev/null +++ b/pages.ml/linux/aspell.md @@ -0,0 +1,24 @@ +# aspell + +> ഒരു ഇന്ററാക്ടിവ് സ്പെൽ ചെക്കർ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു ഫയലിലെ തെറ്റായ പദങ്ങൾ കണ്ടെത്തുവാൻ: + +`aspell check {{ഫയലിലേക്കുള്ള/പാത}}` + +- സ്റ്റാൻഡേഡ് ഇൻപുറ്റിൽ നിന്ന് തെറ്റായ പദങ്ങൾ കണ്ടെത്തുവാൻ: + +`cat {{ഫയൽ}} | aspell list` + +- പദശുദ്ധി കണ്ടെത്താൻ ഉപയോഗിക്കാവുന്ന ഭാഷാ-നിഘണ്ടുകൾ കാണുവാൻ: + +`aspell dicts` + +- മറ്റൊരു ഭാഷയുടെ പദശുദ്ധി കാണുവാൻ (ISO 639 ഭാഷാ-കോഡ് അനുസൃതം): + +`aspell --lang={{cs}}` + +- പേഴ്സണൽ ലിസ്റ്റിൽ ഇല്ലാത്തതും സ്റ്റാൻഡേഡ് ഇൻപുറ്റിൽ ഉള്ളതുമായ തെറ്റുകൾ കാണുവാൻ: + +`cat {{ഫയൽ}} | aspell --personal={{പേഴ്സണൽ-വേർഡ്-ലിസ്റ്റ്.pws}} list` diff --git a/pages.ml/linux/batcat.md b/pages.ml/linux/batcat.md new file mode 100644 index 00000000000000..9fd3e24f4ebd8d --- /dev/null +++ b/pages.ml/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> ഈ കമാൻഡ് `bat` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bat` diff --git a/pages.ml/linux/bluetoothctl.md b/pages.ml/linux/bluetoothctl.md new file mode 100644 index 00000000000000..37a598cd5ab349 --- /dev/null +++ b/pages.ml/linux/bluetoothctl.md @@ -0,0 +1,28 @@ +# bluetoothctl + +> കമാൻഡ് ലൈനിൽ നിന്ന് ബ്ലൂടൂത്ത് ഉപകരണങ്ങൾ മാനേജുചെയ്യുക. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ബ്ലൂടൂത്ത്സിറ്റിഎൽ ഷെല്ലിൽ കേറാൻ: + +`bluetoothctl` + +- ഉപകരണങ്ങളുടെ പട്ടിക കാണാൻ: + +`bluetoothctl --devices` + +- ഒരു ഉപകരണം ജോടിയാക്കുക: + +`bluetoothctl --pair {{മാക്_വിലാസം}}` + +- ഒരു ഉപകരണം നീക്കംചെയ്യുക: + +`bluetoothctl --remove {{മാക്_വിലാസം}}` + +- ജോഡിയായ ഉപകരണവുമായി ബന്ധിപ്പിക്കുക: + +`bluetoothctl --connect {{മാക്_വിലാസം}}` + +- ഒരു ജോഡിയായ ഉപകരണവുമായുള്ള ബന്ധം വിച്ഛേദിക്കുക: + +`bluetoothctl --disconnect {{മാക്_വിലാസം}}` diff --git a/pages.ml/linux/brightnessctl.md b/pages.ml/linux/brightnessctl.md new file mode 100644 index 00000000000000..8942f1d1a04fb0 --- /dev/null +++ b/pages.ml/linux/brightnessctl.md @@ -0,0 +1,24 @@ +# brightnessctl + +> മോണിറ്ററിന്റെ പ്രകാശതീവ്രത ലഭിക്കുവാനും നിയന്ത്രിക്കുവാനുമുള്ള ഗ്നു/ലിനക്സ് അധിഷ്ഠിത യൂട്ടിലിറ്റി. +> കൂടുതൽ വിവരങ്ങൾ: . + +- പ്രകാശം നിയന്ത്രിക്കാനാവുന്ന ഡിവൈസുകൾ കാണുവാൻ: + +`brightnessctl --list` + +- നിലവിലുള്ള പ്രകാശതീവ്രത അറിയുവാൻ: + +`brightnessctl get` + +- നിശ്ചിത ശതമാനത്തിലേക്ക് പ്രകാശതീവ്രത മാറ്റുവാൻ: + +`brightnessctl set {{50%}}` + +- നിലവിലെ പ്രകാശതീവ്രതയിലേക്കു നിശ്ചിത ശതമാനം കൂട്ടുവാൻ: + +`brightnessctl set {{+10%}}` + +- നിലവിലെ പ്രകാശതീവ്രതയിലേക്കു നിശ്ചിത ശതമാനം കുറയ്ക്കുവാൻ: + +`brightnessctl set {{10%-}}` diff --git a/pages.ml/linux/bspwm.md b/pages.ml/linux/bspwm.md new file mode 100644 index 00000000000000..5a0f1457946d21 --- /dev/null +++ b/pages.ml/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> ഈ കമാൻഡ് `bspc` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr bspc` diff --git a/pages.ml/linux/cal.md b/pages.ml/linux/cal.md index 158aaa4fea0d65..cedf5a2448b55e 100644 --- a/pages.ml/linux/cal.md +++ b/pages.ml/linux/cal.md @@ -1,23 +1,24 @@ # cal > ഇന്നത്തെ ദിവസം അടയാളപ്പെടുത്തിയുള്ള കലണ്ടർ വിവരം കാണിക്കുക . +> കൂടുതൽ വിവരങ്ങൾ: . -- ഇപ്പോഴത്തെ മാസത്തിന്റെ കലണ്ടർ കാണാൻ : +- ഇപ്പോഴത്തെ മാസത്തിന്റെ കലണ്ടർ കാണാൻ: `cal` -- കഴിഞ്ഞ മാസവും, ഇപ്പോഴത്തെ മാസവും അടുത്ത മാസവും കാണാൻ : +- കഴിഞ്ഞ മാസവും, ഇപ്പോഴത്തെ മാസവും അടുത്ത മാസവും കാണാൻ: `cal -3` -- ആഴ്ചയുടെ ഒന്നാമത്തെ ദിവസം തിങ്കളാഴ്ച ആയി കാണാൻ : +- ആഴ്ചയുടെ ഒന്നാമത്തെ ദിവസം തിങ്കളാഴ്ച ആയി കാണാൻ: `cal --monday` -- ഒരു പ്രത്യേക കൊല്ലത്തിന്റെ കലണ്ടർ കാണാൻ ( 4 അക്കങ്ങൾ ) : +- ഒരു പ്രത്യേക കൊല്ലത്തിന്റെ കലണ്ടർ കാണാൻ ( 4 അക്കങ്ങൾ ): `cal {{കൊല്ലം}}` -- ഒരു പ്രതേക മാസത്തിന്റെയും കൊല്ലത്തിന്റെയും കലണ്ടർ കാണാൻ : +- ഒരു പ്രതേക മാസത്തിന്റെയും കൊല്ലത്തിന്റെയും കലണ്ടർ കാണാൻ: `cal {{മാസം}} {{കൊല്ലം}}` diff --git a/pages.ml/linux/cc.md b/pages.ml/linux/cc.md new file mode 100644 index 00000000000000..854f14548f68b4 --- /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 00000000000000..86d95cfe5c6095 --- /dev/null +++ b/pages.ml/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> ഈ കമാൻഡ് `cgclassify` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr cgclassify` diff --git a/pages.ml/linux/cmus.md b/pages.ml/linux/cmus.md new file mode 100644 index 00000000000000..fd93eb8dfe76eb --- /dev/null +++ b/pages.ml/linux/cmus.md @@ -0,0 +1,25 @@ +# cmus + +> കമാൻഡ് ലൈനിൽ പ്രവർത്തിക്കുന്ന മ്യൂസിക് പ്ലെയർ. +> നാവിഗേറ്റ് ചെയ്യാൻ 'ആരോ കീകൾ' ഉപയോഗിക്കുക. സെലക്ട് ചെയ്യാൻ `` ഉം, പല വ്യത്യസ്ത വ്യൂസ് ലഭിക്കാനായി 1-8 അക്കങ്ങളും പ്രയോജനപ്പെടുത്തുക. +> കൂടുതൽ വിവരങ്ങൾ: . + +- നിങ്ങൾക്ക് ആവശ്യമുള്ള ഡയറക്ടറിയിൽ അപ്ലിക്കേഷൻ പ്രവർത്തിപ്പിക്കുക (ഇത് പുതിയ വർക്കിംഗ് ഡയറക്ടറി ആയി മാറുന്നു): + +`cmus {{ഡയറക്ടറിയിലേക്കുള്ള/പാത}}` + +- ലൈബ്രറിയിലേക്ക് പുതിയ ഫയൽ/ഡയറക്ടറി ചേർക്കുക: + +`:add {{ഫയലിലേക്കോ_ഡയറക്ടറിയിലേക്കോ/ഉള്ള/പാത}}` + +- പ്ലേ ചെയ്യപ്പെടുന്ന പാട്ട് പോസ് ചെയ്യുക/തുടരുക: + +`c` + +- ഷഫിൾ മോഡ് ഓൺ/ഓഫ് ചെയ്യുക: + +`s` + +- ആപ്ലിക്കേഷനിൽ നിന്നും പുറത്തുകടക്കുക: + +`q` diff --git a/pages.ml/linux/gedit.md b/pages.ml/linux/gedit.md new file mode 100644 index 00000000000000..cf49a805577a2d --- /dev/null +++ b/pages.ml/linux/gedit.md @@ -0,0 +1,20 @@ +# gedit + +> ഗ്നോം ഡെസ്ക്ടോപ് പ്രോജക്ടിന്റെ ടെക്സ്റ്റ് എഡിറ്റർ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു ടെക്സ്റ്റ് ഫയൽ ഓപ്പൺ ചെയ്യുവാൻ: + +`gedit {{ഫയലിലേക്കുള്ള/പാത}}` + +- ഒന്നിൽ കൂടുതൽ ടെക്സ്റ്റ് ഫയലുകൾ ഓപ്പൺ ചെയ്യുവാൻ: + +`gedit {{ഫയൽ1 ഫയൽ2 ...}}` + +- ഒരു പ്രത്യേക എൻകോഡിങ്ങിൽ ഫയൽ ഓപ്പൺ ചെയ്യുവാൻ: + +`gedit --encoding={{UTF-8}} {{ഫയലിലേക്കുള്ള/പാത}}` + +- സപ്പോർട്ട് ചെയ്യപ്പെട്ട എല്ലാവിധ എൻകോഡിങ്ങും കാണുവാൻ: + +`gedit --list-encodings` diff --git a/pages.ml/linux/gnome-terminal.md b/pages.ml/linux/gnome-terminal.md new file mode 100644 index 00000000000000..14543fccb163fa --- /dev/null +++ b/pages.ml/linux/gnome-terminal.md @@ -0,0 +1,20 @@ +# gnome-terminal + +> ഗ്നോം ടെർമിനൽ എമുലേറ്റർ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു പുതിയ ഗ്നോം ടെർമിനൽ വിൻഡോ തുറക്കാൻ: + +`gnome-terminal` + +- പുതിയ വിൻഡോയിൽ ഒരു കമാൻഡ് പ്രവർത്തിപ്പിക്കാൻ: + +`gnome-terminal -- {{കമാൻഡ്}}` + +- അവസാനമായി തുറക്കപെട്ട വിൻഡോയിൽ ഒരു പുതിയ ടാബ് സൃഷ്ടിക്കാൻ: + +`gnome-terminal --tab` + +- പുതിയ ടാബിന്റെ ടൈറ്റിൽ മാറ്റുവാൻ: + +`gnome-terminal --tab --title "{{ടൈറ്റിൽ}}"` diff --git a/pages.ml/linux/ip-route-list.md b/pages.ml/linux/ip-route-list.md new file mode 100644 index 00000000000000..36d744fa13a0c1 --- /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/kwrite.md b/pages.ml/linux/kwrite.md new file mode 100644 index 00000000000000..3739c6f2fbf820 --- /dev/null +++ b/pages.ml/linux/kwrite.md @@ -0,0 +1,21 @@ +# kwrite + +> KDE ഡെസ്ക്ടോപ് പ്രോജക്ടിന്റെ ടെക്സ്റ്റ് എഡിറ്റർ. +> കാണുക `kate`. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു ടെക്സ്റ്റ് ഫയൽ ഓപ്പൺ ചെയ്യുവാൻ: + +`kwrite {{ഫയലിലേക്കുള്ള/പാത}}` + +- ഒന്നിൽ കൂടുതൽ ഫയലുകൾ ഓപ്പൺ ചെയ്യുവാൻ: + +`kwrite {{ഫയൽ1 ഫയൽ2 ...}}` + +- ഒരു പ്രത്യേക എൻകോഡിങ്ങിൽ ഫയൽ ഓപ്പൺ ചെയ്യുവാൻ: + +`kwrite --encoding={{UTF-8}} {{ഫയലിലേക്കുള്ള/പാത}}` + +- ഒരു ടെക്സ്റ്റ് ഫയലിന്റെ ആവശ്യമുള്ള ലൈനിലേക്കും കോളത്തിലേക്കും നാവിഗേറ്റ് ചെയ്യുവാൻ: + +`kwrite --line {{ലൈൻ_നമ്പർ}} --column {{കോളം_നമ്പർ}} {{ഫയലിലേക്കുള്ള/പാത}}` diff --git a/pages.ml/linux/lsmod.md b/pages.ml/linux/lsmod.md index 5745c0bfe82921..1c538615801600 100644 --- a/pages.ml/linux/lsmod.md +++ b/pages.ml/linux/lsmod.md @@ -2,6 +2,7 @@ > ലിനക്സ് കെർണൽ മൊഡ്യൂളുകളുടെ അവസ്ഥ കാണാൻ. > ലിനക്സ് കെർണൽ മൊഡ്യൂൾ ലോഡ് ചെയ്യാൻ `modprobe` കാണുക. +> കൂടുതൽ വിവരങ്ങൾ: . - ഇപ്പോൾ ലോഡ് ചെയ്ത മൊഡ്യൂളുകൾ കാണിക്കുക: diff --git a/pages.ml/linux/megadl.md b/pages.ml/linux/megadl.md new file mode 100644 index 00000000000000..7010abfcc13662 --- /dev/null +++ b/pages.ml/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> ഈ കമാൻഡ് `megatools-dl` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr megatools-dl` diff --git a/pages.ml/linux/ncal.md b/pages.ml/linux/ncal.md new file mode 100644 index 00000000000000..47aca304967d56 --- /dev/null +++ b/pages.ml/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> ഈ കമാൻഡ് `cal` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr cal` diff --git a/pages.ml/linux/nemo.md b/pages.ml/linux/nemo.md new file mode 100644 index 00000000000000..db47d2da97ab34 --- /dev/null +++ b/pages.ml/linux/nemo.md @@ -0,0 +1,16 @@ +# nemo + +> സിന്നമോണിനു വേണ്ടിയുള്ള ഫയൽ മാനേജർ-ഗ്രാഫിക്കൽ ഷെൽ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യൂസറിന്റെ ഹോം ഡയറക്ടറിയിൽ ഒരു പുതിയ വിൻഡോ ഓപ്പൺ ചെയ്യുവാൻ: + +`nemo` + +- കറന്റ് ഡയറക്ടറിയിൽ ഒരു പുതിയ വിൻഡോ ഓപ്പൺ ചെയ്യുവാൻ: + +`nemo .` + +- ഓപ്പൺ ആയിട്ടുള്ള എല്ലാ നെമോ വിൻഡോകളും ക്ലോസ് ചെയ്യുവാൻ: + +`nemo --quit` diff --git a/pages.ml/linux/nmcli.md b/pages.ml/linux/nmcli.md index 8e2049b7878acc..f4f5271ebe1701 100644 --- a/pages.ml/linux/nmcli.md +++ b/pages.ml/linux/nmcli.md @@ -1,20 +1,20 @@ # nmcli > നെറ്റ്‌വർക്ക് മാനേജർ നിയന്ത്രിക്കാൻ വേണ്ടിയുള്ള കമാൻഡ് ലൈൻ ഉപകരണം. -> കൂടുതൽ വിവരങ്ങൾ: . +> കൂടുതൽ വിവരങ്ങൾ: . -- nmcli പതിപ്പ് ഏതാണെന്ന് അറിയാൻ : +- nmcli പതിപ്പ് ഏതാണെന്ന് അറിയാൻ: `nmcli --version` -- പൊതുവെയുള്ള സഹായ വിവരം കാണാൻ : +- പൊതുവെയുള്ള സഹായ വിവരം കാണാൻ: `nmcli --help` -- ഒരു പ്രതേക നിർദേശത്തിന്റെ സഹായ വിവരം കാണാൻ : +- ഒരു പ്രതേക നിർദേശത്തിന്റെ സഹായ വിവരം കാണാൻ: `nmcli {{നിർദേശം}} --help` -- ഒരു `nmcli` നിർദേശം നിർവഹിക്കാൻ : +- ഒരു `nmcli` നിർദേശം നിർവഹിക്കാൻ: `nmcli {{നിർദേശം}}` diff --git a/pages.ml/linux/pacman.md b/pages.ml/linux/pacman.md index c6280e55f8a54c..e869903208d2a4 100644 --- a/pages.ml/linux/pacman.md +++ b/pages.ml/linux/pacman.md @@ -5,17 +5,17 @@ - ഇൻസ്റ്റാൾ ചെയ്‌ത എല്ലാ പാക്കേജും അപ്‌ഡേറ്റു ചെയ്യുക: -`pacman -Syu` +`sudo pacman -Syu` - പുതിയ പാക്കേജ് ഇൻസ്റ്റാൾ ചെയ്യുക: -`pacman -S {{പാക്കേജ്}}` +`sudo pacman -S {{പാക്കേജ്}}` -- ഒരു പാക്കേജും അത് ആശ്രയിക്കുന്ന മറ്റ് പാക്കേജുകളെയും കളയുക : +- ഒരു പാക്കേജും അത് ആശ്രയിക്കുന്ന മറ്റ് പാക്കേജുകളെയും കളയുക: -`pacman -Rs {{പാക്കേജ്}}` +`sudo pacman -Rs {{പാക്കേജ്}}` -- പാക്കേജ് ഡാറ്റാബേസിൽ ഒരു സൂചകപദം അല്ലെങ്കിൽ റെഗുലർ എക്സ്പ്രെഷൻ വെച്ച് തിരയുക : +- പാക്കേജ് ഡാറ്റാബേസിൽ ഒരു സൂചകപദം അല്ലെങ്കിൽ റെഗുലർ എക്സ്പ്രെഷൻ വെച്ച് തിരയുക: `pacman -Ss "{{സെർച്ച് പാറ്റേൺ}}"` @@ -33,4 +33,4 @@ - പാക്കേജ് ക്യാഷ് കാലിയാക്കി സ്റ്റോറേജ്‌ മുക്തമാക്കുക: -`pacman -Scc` +`sudo pacman -Scc` diff --git a/pages.ml/linux/snap.md b/pages.ml/linux/snap.md new file mode 100644 index 00000000000000..4caffdb6de2a83 --- /dev/null +++ b/pages.ml/linux/snap.md @@ -0,0 +1,37 @@ +# snap + +> സ്നാപ്പ് സെൽഫ് കൺറ്റൈൻഡ് പാക്കേജുകൾ നിയന്ത്രിക്കുവാനുള്ള യൂട്ടിലിറ്റി. +> `apt` നോട് സാദൃശ്യമുള്ളത്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- ഒരു പാക്കേജ് സെർച്ച് ചെയ്യുവാൻ: + +`snap find {{പാക്കേജിന്റെ_പേര്}}` + +- ഒരു പാക്കേജ് ഇൻസ്റ്റാൾ ചെയ്യുവാൻ: + +`snap install {{പാക്കേജിന്റെ_പേര്}}` + +- ഒരു പാക്കേജ് അപ്ഡേറ്റ് ചെയ്യുവാൻ: + +`snap refresh {{പാക്കേജിന്റെ_പേര്}}` + +- ഒരു പാക്കേജ് മറ്റൊരു ചാനലിലേക്ക് അപ്ഡേറ്റ് ചെയ്യുവാൻ (ട്രാക്ക്, റിസ്ക്, ബ്രാഞ്ച്): + +`snap refresh {{പാക്കേജിന്റെ_പേര്}} --channel={{ചാനൽ}}` + +- എല്ലാ പാക്കേജുകളും അപ്ഡേറ്റ് ചെയ്യുവാൻ: + +`snap refresh` + +- ഇൻസ്റ്റാൾ ചെയ്യപ്പെട്ട സോഫ്ട്‍വെയറുകൾ കാണുവാൻ: + +`snap list` + +- ഒരു പാക്കേജ് അൺഇൻസ്റ്റാൾ ചെയ്യുവാൻ: + +`snap remove {{പാക്കേജിന്റെ_പേര്}}` + +- സിസ്റ്റത്തിലെ സ്നാപ്പ് ചേഞ്ചുകൾ അറിയുവാൻ: + +`snap changes` diff --git a/pages.ml/linux/thunar.md b/pages.ml/linux/thunar.md new file mode 100644 index 00000000000000..d7995b2cab4581 --- /dev/null +++ b/pages.ml/linux/thunar.md @@ -0,0 +1,16 @@ +# thunar + +> എക്സ്എഫ്‌സിഇക്കു വേണ്ടിയുള്ള ഗ്രാഫിക്കൽ ഫയൽ മാനേജർ. +> കൂടുതൽ വിവരങ്ങൾ: . + +- നിലവിലുള്ള ഡയറക്ടറിയിൽ പുതിയ തുണാർ ജാലകം തുറക്കുവാൻ: + +`thunar` + +- തൂണാർ ഏതു പതിപ്പാണെന്നറിയുവാൻ: + +`thunar --version` + +- തുറന്നിട്ടുള്ള എല്ലാ തുണാർ ജാലകങ്ങളും അവസാനിപ്പിക്കുവാൻ: + +`thunar --quit` diff --git a/pages.ml/linux/ubuntu-bug.md b/pages.ml/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..9725bb825cfaa6 --- /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/linux/uname.md b/pages.ml/linux/uname.md new file mode 100644 index 00000000000000..302d0058cb4e0d --- /dev/null +++ b/pages.ml/linux/uname.md @@ -0,0 +1,36 @@ +# 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.ml/osx/aa.md b/pages.ml/osx/aa.md new file mode 100644 index 00000000000000..e0386b673ff82b --- /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 00000000000000..3e1a9a033bb13f --- /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 00000000000000..b8558133533fdc --- /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 00000000000000..a7f8f42c4dc4e3 --- /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 00000000000000..28b36ae601283c --- /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 00000000000000..3a125bd1f981c3 --- /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 00000000000000..d84e9fc3492d5c --- /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 00000000000000..8785111962f8c9 --- /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 00000000000000..e1502c17c96671 --- /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 00000000000000..1bb3829c4f64cb --- /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 00000000000000..3df54f8fb6b1fb --- /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 00000000000000..9e9a70cc392384 --- /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 00000000000000..81e7ac6574eb93 --- /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 00000000000000..5b7fafd53de394 --- /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 00000000000000..26ab1f4174c815 --- /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 00000000000000..a08c11cd82a41d --- /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 00000000000000..2047a443b4b0c0 --- /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 00000000000000..e306cd1f780d9b --- /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 00000000000000..bb6481f81135ec --- /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 00000000000000..20eb305bcb48ca --- /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 00000000000000..36b4745bd7ed7d --- /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 00000000000000..b7ae532f02fc3b --- /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 00000000000000..a2a3bd561a1cf8 --- /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 00000000000000..45f109a3558778 --- /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 00000000000000..cf38ec86ca1730 --- /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 00000000000000..355982aabb7f05 --- /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 00000000000000..61dd491dc70a05 --- /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 00000000000000..f447a40b65f3a1 --- /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 00000000000000..e2db57e014f12f --- /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 00000000000000..62900a30e6ef54 --- /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 00000000000000..754c8417d7ad09 --- /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 00000000000000..d356808cef6b9f --- /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 00000000000000..d62653a73747f7 --- /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 00000000000000..0a73abc9f76f60 --- /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 00000000000000..665f9e145bc2e9 --- /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 00000000000000..660b630917198c --- /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 00000000000000..b65094a3943c30 --- /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 00000000000000..7815ab84459d4c --- /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 00000000000000..55e4f8a6213a53 --- /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 00000000000000..971df7f2fd269e --- /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 00000000000000..4453136adb3ff4 --- /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 00000000000000..f876429a65c0a7 --- /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 00000000000000..441d4e07dbd255 --- /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 00000000000000..4b4f91cd852100 --- /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 00000000000000..f63df0947c6342 --- /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 00000000000000..df24c98baf0272 --- /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 00000000000000..c55e8c6cb33aa3 --- /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 00000000000000..99634298ee5add --- /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 00000000000000..4ba2674ab5b11e --- /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 00000000000000..d931bac59b31ed --- /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 00000000000000..0d08495eabdbee --- /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 00000000000000..0d8ae5ccbc78b2 --- /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 00000000000000..72ef1014dc3b3a --- /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 00000000000000..e7f456890560f2 --- /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 00000000000000..c9a7119618c359 --- /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 00000000000000..87523fd67f03a5 --- /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 00000000000000..9823031d13ea4c --- /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 00000000000000..e4091e64545ab3 --- /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 00000000000000..de9669002d4262 --- /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 00000000000000..14ad7cfc05976a --- /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 00000000000000..7269d06c6b4b91 --- /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 00000000000000..60187ea041f392 --- /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 00000000000000..920d80d94f9128 --- /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 00000000000000..813369989d49d1 --- /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 00000000000000..c59d181957414c --- /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 00000000000000..ff99df9aabf0ed --- /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 00000000000000..1f900573f852d3 --- /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 00000000000000..c95d2d38453160 --- /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 00000000000000..2824fed46bdb0d --- /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 00000000000000..b10e6dfdc6bfdc --- /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 00000000000000..476eaec6979bdf --- /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 00000000000000..339bb593688b32 --- /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 00000000000000..a411dbddf659c0 --- /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 00000000000000..63f6e706a6ef55 --- /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 00000000000000..5dbdb649f5617b --- /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 00000000000000..bbf83e994cca9b --- /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 00000000000000..94b3e444705e6b --- /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 00000000000000..042826f7281a59 --- /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 00000000000000..5e01a5d09c4910 --- /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 00000000000000..35fb7ea2a14a3a --- /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 00000000000000..3492bdbefe59f2 --- /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 00000000000000..6a2b659d95412b --- /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 00000000000000..526ce93c7fc82e --- /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 00000000000000..df7134ed65f913 --- /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 00000000000000..79d04147dd4510 --- /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 00000000000000..242219cd42a9d4 --- /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 00000000000000..2c4bcd90283db2 --- /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 00000000000000..9c91bda4a0a011 --- /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 00000000000000..19061a803f7276 --- /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 00000000000000..a345e05bc5b074 --- /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 00000000000000..8977f876969043 --- /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 00000000000000..a307b54de3d5ff --- /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 00000000000000..48dd03a30e9ef2 --- /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 00000000000000..a91b0991ee292c --- /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 00000000000000..9fc2e987687591 --- /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 00000000000000..5c41e262d751b1 --- /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 00000000000000..7926609db6d8c2 --- /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 00000000000000..00b09d02ad86e2 --- /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 00000000000000..05fa24c3d19794 --- /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 00000000000000..8f342ae543304b --- /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 00000000000000..74bd93603213e6 --- /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 00000000000000..0dbdf050bd787b --- /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 00000000000000..a544b10c8584ff --- /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 00000000000000..7d0f86a738ef20 --- /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 00000000000000..997db6a65fa654 --- /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 00000000000000..d69a75f35c9a4b --- /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 00000000000000..c2b377632993e7 --- /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 00000000000000..e03b84adeb9c97 --- /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 00000000000000..867538bc13bb3c --- /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 00000000000000..1ff3362e8edbe8 --- /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 00000000000000..8aaebe79434f28 --- /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 00000000000000..77e13e224a40ab --- /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 00000000000000..9d65dbe39348e8 --- /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 00000000000000..09ff05419734dc --- /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 00000000000000..64774ec493bbf6 --- /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 00000000000000..67b8a20602ce3f --- /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 00000000000000..e08b30cd1993c7 --- /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 00000000000000..ec43c9e2e93da2 --- /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 00000000000000..6e1ff153214514 --- /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 00000000000000..110b7a177a1ebe --- /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 00000000000000..4c36864178efde --- /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 00000000000000..9e0039a644dc21 --- /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 00000000000000..8d5525b990f962 --- /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 00000000000000..3644c0ccad9e5a --- /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 00000000000000..cd0298579930a5 --- /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 00000000000000..40a7b18fd1db77 --- /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 00000000000000..4bb13d25057ce6 --- /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 00000000000000..c22ff94d12c5e6 --- /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 00000000000000..858b412180dc8b --- /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 00000000000000..86a1dae0983701 --- /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 00000000000000..9ad956c83eb3fb --- /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 00000000000000..cdfd0891a79c30 --- /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 00000000000000..aeac00f9b41f9b --- /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 00000000000000..ec038762cbf1bc --- /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 00000000000000..e6b76c93b3d011 --- /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 00000000000000..24b59b28712a76 --- /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 00000000000000..3efa117493c857 --- /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 00000000000000..cd0fda85a4e33c --- /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 00000000000000..f43971082e9061 --- /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 00000000000000..0f8773197e50be --- /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 00000000000000..de1e2d320fe64d --- /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 00000000000000..6d1c7f5bdf8811 --- /dev/null +++ b/pages.ml/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> ഈ കമാൻഡ് `chromium` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr chromium` diff --git a/pages.ml/windows/cinst.md b/pages.ml/windows/cinst.md new file mode 100644 index 00000000000000..146fa21e7aa704 --- /dev/null +++ b/pages.ml/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> ഈ കമാൻഡ് `choco install` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr choco install` diff --git a/pages.ml/windows/clist.md b/pages.ml/windows/clist.md new file mode 100644 index 00000000000000..8d502c209189e4 --- /dev/null +++ b/pages.ml/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> ഈ കമാൻഡ് `choco list` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr choco list` diff --git a/pages.ml/windows/cpush.md b/pages.ml/windows/cpush.md new file mode 100644 index 00000000000000..be5cea1c49f60a --- /dev/null +++ b/pages.ml/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> ഈ കമാൻഡ് `choco-push` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr choco-push` diff --git a/pages.ml/windows/cuninst.md b/pages.ml/windows/cuninst.md new file mode 100644 index 00000000000000..aae5660dfe29af --- /dev/null +++ b/pages.ml/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> ഈ കമാൻഡ് `choco uninstall` എന്നത്തിന്റെ അപരനാമമാണ്. +> കൂടുതൽ വിവരങ്ങൾ: . + +- യഥാർത്ഥ കമാൻഡിനായി ഡോക്യുമെന്റേഷൻ കാണുക: + +`tldr choco uninstall` diff --git a/pages.ml/windows/curl.md b/pages.ml/windows/curl.md new file mode 100644 index 00000000000000..63bf64e011db6a --- /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 00000000000000..a89a1296fef235 --- /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 00000000000000..77fd367d375e79 --- /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 00000000000000..b988eb2fa98b60 --- /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 00000000000000..940544245fbaf5 --- /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 00000000000000..457b1f227b4d0e --- /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/common/alias.md b/pages.ne/common/alias.md new file mode 100644 index 00000000000000..befef398afbf97 --- /dev/null +++ b/pages.ne/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> उपनामहरु बनाउछ -- शब्दहरू जुन आदेश स्ट्रिङद्वारा प्रतिस्थापन गरिन्छ। +> शेलको कन्फिगरेसन फाइलमा (जस्तै `~/.bashrc`) परिभाषित नगरेको खन्डमा उपनामहरुको आयु चलिरहेको शेल् सेसन् सङै सकिन्छ। +> थप जानकारी: . + +- सबै उपनामहरुको सुची बनाउनुहोस्: + +`alias` + +- एउटा सामान्य उपनाम बनाउनुहोस्: + +`alias {{शब्द}}="{{आदेश}}"` + +- एउटा आदेशसङ्ग सम्बन्धित उपनाम हेर्नुहोस्: + +`alias {{शब्द}}` + +- उपनाम बनाइएको आदेशलाई हटाउनुहोस्: + +`unalias {{शब्द}}` + +- `rm` लाई एउटा अन्तरक्रियात्मक आदेशमा बदल्नुहोस्: + +`alias {{rm}}="{{rm -i}}"` + +- `la` लाई `ls -a` को सर्ट्कट् बनाउनुहोस्: + +`alias {{la}}="{{ls -a}}"` diff --git a/pages.ne/common/at.md b/pages.ne/common/at.md new file mode 100644 index 00000000000000..fd401996a01d42 --- /dev/null +++ b/pages.ne/common/at.md @@ -0,0 +1,17 @@ +# at + +> पछि एक पटक आदेशहरू कार्यान्वयन गर्छ। +> वास्तविक कार्यान्वयनको लागि service atd(अथवा atrun) चलिरहेको हुनुपर्छ। +> थप जानकारी: . + +- मानक इनपुट बाट आदेशहरू ५ मिनटमा कार्यान्वयन गर्नुहोस् (सकिएपछि `Ctrl +D` थिच्नुहोस्): + +`at now + 5 minutes` + +- मानक इनपुट बाट आदेश आज के बिहान को १० बजे कार्यान्वयन गर्नुहोस्: + +`echo "{{./make_db_backup.sh}}" | at 1000` + +- एउटा दिइएको फाइलबाट अर्को मङ्गलबार आदेशहरु कार्यान्वयन गर्नुहोस्: + +`at -f {{फाइल/को/पथ}} 9:30 PM Tue` diff --git a/pages.ne/common/bg.md b/pages.ne/common/bg.md new file mode 100644 index 00000000000000..d844c9de1ac4db --- /dev/null +++ b/pages.ne/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> निलम्बित गरिएका कामहरुलाई (जस्तै `Ctrl + Z` प्रयोग गरेर) पुन: सुरु गर्छ, अनि तिनीहरुलाई पृष्ठभूमिमा चलाइरहन्छ। +> थप जानकारी: . + +- सबैभन्दा भर्खर् निलम्बित गरिएको कामलाई पुन: सुरु गर्नुहोस् अनि पृष्ठभूमिमा चलाउनुहोस्: + +`bg` + +- कुनै विशिष्ट कामलाई पुन: सुरु गर्नुहोस् (ID पाउनको लागि `jobs -l` प्रयोग गर्नुहोस्) अनि पृष्ठभूमिमा चलाउनुहोस्: + +`bg %{{काम_आईडी}}` diff --git a/pages.ne/common/bundler.md b/pages.ne/common/bundler.md new file mode 100644 index 00000000000000..c1ebc704187dcd --- /dev/null +++ b/pages.ne/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> यो आदेश `bundle` को उपनाम हो | +> थप जानकारी: . + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr bundle` diff --git a/pages.ne/common/cat.md b/pages.ne/common/cat.md new file mode 100644 index 00000000000000..21763d592f5431 --- /dev/null +++ b/pages.ne/common/cat.md @@ -0,0 +1,24 @@ +# cat + +> फाइलहरू देखाउनुहोस् र जोड्नुहोस्। +> थप जानकारी: . + +- फाइल भित्रका कुराहरुलाई मानक आउटपुटमा देखाउनुहोस्: + +`cat {{फाइल/को/पथ}}` + +- धेरै फाइलहरू जोडेर एउटा सिंगो आउटपुट फाइल बनाउनुहोस्: + +`cat {{फाइल_पहिलो/को/पथ}} {{फाइल_दोस्रो/को/पथ}} > {{आउटपुट/फाइल/को/पथ}}` + +- धेरै फाइलहरू जोडेर एउटा सिंगो आउटपुट फाइलमा संलग्न गर्नुहोस्: + +`cat {{फाइल_पहिलो/को/पथ}} {{फाइल_दोस्रो/को/पथ}} >> {{आउटपुट/फाइल/को/पथ}}` + +- सबै आउटपुट लाइनहरूलाइ संख्यामा देखाउनुहोस: + +`cat -n {{फाइल/को/पथ}}` + +- छाप्न नमिल्ने र सेतो खाली ठाँउका वर्णहरू देखाउनुहोस् (यदि ASCII हैनन् भने `M-` उपसर्ग लागेर देखिन्छ): + +`cat -v -t -e {{फाइल/को/पथ}}` diff --git a/pages.ne/common/clamav.md b/pages.ne/common/clamav.md new file mode 100644 index 00000000000000..dba51d3a009a16 --- /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 00000000000000..f2615a6eb24d35 --- /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 00000000000000..628bb50709e011 --- /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 00000000000000..dd4a06b265aaa0 --- /dev/null +++ b/pages.ne/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> यो आदेश `git-cola` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr git-cola` diff --git a/pages.ne/common/cp.md b/pages.ne/common/cp.md new file mode 100644 index 00000000000000..5b98ac8f48c442 --- /dev/null +++ b/pages.ne/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> फाइलहरू र डिरेक्टोरीहरू सार्नुहोस। +> थप जानकारी: . + +- एउटा स्थान बाट अर्को स्थानमा फाइलहरु सार्नुहोस: + +`cp {{स्रोत_फाइल.ext/को/पथ}} {{लक्ष्य_फाइल.ext/को/पथ}}` + +- फाइलको नाम उही राखेर अर्को डिरेक्टोरीमा फाइलहरु सार्नुहोस: + +`cp {{स्रोत_फाइल.ext/को/पथ}} {{लक्षित_अभिभावक_निर्देशिका/को/पथ}}` + +- पुनरावर्ती रूपमा डिरेक्टोरीमा भएका सबै चीजहरुलाइ अर्को स्थानमा सार्नुहोस(यदि स्थान पहिले देखि नै छ भने,डिरेक्टोरी भित्र सार्नुहोस): + +`cp -R {{स्रोत_निर्देशिका/को/पथ}} {{लक्ष्य_निर्देशिका/को/पथ}}` + +- पुनरावर्ती रूपमा एउटा डाइरेक्टरी सार्नुहोस, शब्दमय रुपमा (फाइलहरु सार्दा सार्दै सरिरहेको पनि देखिन्छ): + +`cp -vR {{स्रोत_निर्देशिका/को/पथ}} {{लक्ष्य_निर्देशिका/को/पथ}}` + +- अन्तरक्रियात्मक रुपमा अर्को स्थानमा पाठ्य फाइलहरू सार्नुहोस (अधिलेखन गर्नु अघि प्रयोगकर्तालाई सोध्छ): + +`cp -i {{*.txt}} {{लक्ष्य_निर्देशिका/को/पथ}}` + +- सार्नु अघि प्रतीकात्मक लिङ्कहरू पछ्याउनुहोस्: + +`cp -L {{लिङ्क}} {{लक्ष्य_निर्देशिका/को/पथ}}` diff --git a/pages.ne/common/cron.md b/pages.ne/common/cron.md new file mode 100644 index 00000000000000..ef4e361d914d4d --- /dev/null +++ b/pages.ne/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> यो आदेश `crontab` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr crontab` diff --git a/pages.ne/common/ffmpeg.md b/pages.ne/common/ffmpeg.md new file mode 100644 index 00000000000000..eba7bca3d10218 --- /dev/null +++ b/pages.ne/common/ffmpeg.md @@ -0,0 +1,36 @@ +# ffmpeg + +> भिडियो रूपान्तरण उपकरण। +> थप जानकारी: . + +- भिडियोबाट ध्वनि निकाल्नुहोस् र MP3 को रूपमा सेभ गर्नुहोस: + +`ffmpeg -i {{भिडियो.mp4}} -vn {{ध्वनि}}.mp3` + +- भिडियोको उचाइ 1000px मा स्केल गर्दै र फ्रेमरेटलाई 15 राखेर GIF को रूपमा सेभ गर्नुहोस: + +`ffmpeg -i {{भिडियो.mp4}} -vf 'scale=-1:{{1000}}' -r {{15}} {{आउटपुट.gif}}` + +- अंकित छविहरूलाइ(`फ्रेम_1.jpg`, `फ्रेम_2.jpg`, आदि) भिडियो वा GIF मा जोड्नुहोस: + +`ffmpeg -i {{फ्रेम_%d.jpg}} -f image2 {{भिडियो.mpg|भिडियो.gif}}` + +- भिडियोको mm:ss बाट एकल फ्रेम निकाल्नुहोस् र यसलाई 128x128 रिजोल्युसनको छविको रूपमा सेभ गर्नुहोस्: + +`ffmpeg -ss {{mm:ss}} -i {{भिडियो.mp4}} -frames 1 -s {{128x128}} -f image2 {{छवि.png}}` + +- दिइएको सुरु समय mm:ss देखि अन्त्यसमय mm2:ss2 सम्म भिडियोलाइ काट्नुहोस (अन्त्य सम्म नै काट्नलाई -to फ्ल्याग हटाउनुहोस्): + +`ffmpeg -ss {{mm:ss}} -to {{mm2:ss2}} -i {{भिडियो.mp4}} -codec copy {{आउटपुट.mp4}}` + +- AVI भिडियोलाई MP4 मा रूपान्तरण गर्नुहोस्। अडियोको 128kbit बिटरेट राखेर AAC मा, भिडियोको CRF 23 राखेर h264 मा: + +`ffmpeg -i {{इनपुट_भिडियो}}.avi -codec:audio aac -b:audio 128k -codec:video libx264 -crf 23 {{आउटपुट_भिडियो}}.mp4` + +- MKV भिडियोको अडियो वा भिडियो स्ट्रिमहरू पुन: एन्कोडिङ नगरी हानिरहित ढाँचामा MP4 मा बदल्नुहोस: + +`ffmpeg -i {{इनपुट_भिडियो}}.mkv -codec copy {{आउटपुट_भिडियो}}.mp4` + +- MP4 भिडियोलाई VP9 कोडेकमा रूपान्तरण गर्नुहोस्। उत्कृष्ट गुणस्तरको लागि, CRF फ्ल्यागको प्रयोग गर्नुहोस् (सिफारिस गरिएको दायरा 15-35) र `-b:video 0` पनि प्रयोग गर्नुहोस्: + +`ffmpeg -i {{इनपुट_भिडियो}}.mp4 -codec:video libvpx-vp9 -crf {{30}} -b:video 0 -codec:audio libopus -vbr on -threads {{थ्रेड_संख्या}} {{आउटपुट_भिडियो}}.webm` diff --git a/pages.ne/common/fossil-ci.md b/pages.ne/common/fossil-ci.md new file mode 100644 index 00000000000000..ea27f21bab8943 --- /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 00000000000000..448b011dea87ea --- /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 00000000000000..d2e2d71413ca17 --- /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 00000000000000..c684c9c09f8677 --- /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 00000000000000..423d08f9a5c00f --- /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 00000000000000..afb5375d133bf7 --- /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 00000000000000..7250f598780d61 --- /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 00000000000000..7a50df7a788652 --- /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 00000000000000..79b12371f47c41 --- /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 00000000000000..38f5b0abc88208 --- /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 00000000000000..47f7f924cb40e5 --- /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 00000000000000..df8e4940df117f --- /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 00000000000000..b966856fc8dca1 --- /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 00000000000000..7f127c6e8d32c9 --- /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 00000000000000..43ee58032f3368 --- /dev/null +++ b/pages.ne/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> यो आदेश `strings` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr strings` diff --git a/pages.ne/common/ls.md b/pages.ne/common/ls.md new file mode 100644 index 00000000000000..e8c3919ba3034c --- /dev/null +++ b/pages.ne/common/ls.md @@ -0,0 +1,36 @@ +# ls + +> एउटा डिरेक्टोरीमा भएका सबै वस्तुहरुको सुची देखाउँछ। +> थप जानकारी: . + +- एक लाइनमा एउटा वस्तु देखाएर फाइलहरू देखाउनुहोस्: + +`ls -1` + +- लुकेका फाइलहरू सहित सबै फाइलहरू देखाउनुहोस्: + +`ls -a` + +- डाइरेक्टरी नामहरूको अन्त्यमा '/' थपेर फाइलहरू देखाउनुहोस्: + +`ls -F` + +- सबै फाइलहरूको लामो ढाँचाको सूची देखाउनुहोस् (अनुमतिहरू, स्वामित्व, साइज, र परिमार्जन मिति): + +`ls -la` + +- लामो ढाँचामा सूची देखाउनुहोस् जहाँ साइज मानिसले पढ्न सक्ने एकाइहरूको ढाँचामा प्रदर्शित हुन्छ (KiB, MiB, GiB): + +`ls -lh` + +- लामो ढाँचामा फाइलहरू देखाउनुहोस् जुन साइज अनुसार क्रमबद्ध छन् (घट्दो क्रममा): + +`ls -lS` + +- सबै फाइलहरूलाई लामो ढाँचामा देखाउनुहोस् जुन परिमार्जन मितिद्वारा क्रमबद्ध गरिएको छ (सबैभन्दा पुरानो पहिलो): + +`ls -ltr` + +- केवल डाइरेक्टरीहरू मात्र देखाउनुहोस्: + +`ls -d */` diff --git a/pages.ne/common/lzcat.md b/pages.ne/common/lzcat.md new file mode 100644 index 00000000000000..7ad8f077aec705 --- /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 00000000000000..943a2ba525544a --- /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 00000000000000..a237935b4ab7a2 --- /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 00000000000000..991a881d4ba57a --- /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 00000000000000..7ff6b92763da62 --- /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 00000000000000..d2c9da4e9b9f24 --- /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 00000000000000..bc34584c5546f0 --- /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 00000000000000..69713d7866f305 --- /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 00000000000000..dce91b767b2d6d --- /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 00000000000000..e7f33ec87f2c67 --- /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 00000000000000..5b3d19ee7681e3 --- /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 00000000000000..db55ae56780659 --- /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 00000000000000..7a014a8787568e --- /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 00000000000000..85fdb94237b4dc --- /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 00000000000000..ec1bf01f35fb02 --- /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 00000000000000..76ad492c82788e --- /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 00000000000000..6b488d987dc04b --- /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 00000000000000..92326c53307b3c --- /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 00000000000000..a8faedf2539927 --- /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 00000000000000..10bb55baf28f2e --- /dev/null +++ b/pages.ne/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> यो आदेश `vim` को उपनाम हो | + +- मौलिक आदेशको लागि कागजात हेर्नुहोस्: + +`tldr vim` diff --git a/pages.ne/common/vlc.md b/pages.ne/common/vlc.md new file mode 100644 index 00000000000000..631b501954d538 --- /dev/null +++ b/pages.ne/common/vlc.md @@ -0,0 +1,24 @@ +# vlc + +> क्रस प्लेटफर्म मल्टिमिडिया प्लेयर। +> थप जानकारी: . + +- एउटा फाइल प्ले गर्नुहोस्: + +`vlc {{फाइल/को/पथ}}` + +- पूर्ण स्क्रिनमा प्ले गर्नुहोस्: + +`vlc --fullscreen {{फाइल/को/पथ}}` + +- मौन रूपमा प्ले गर्नुहोस्: + +`vlc --no-audio {{फाइल/को/पथ}}` + +- बारम्बार प्ले गर्नुहोस्: + +`vlc --loop {{फाइल/को/पथ}}` + +- URL बाट भिडियो प्ले गर्नुहोस्: + +`vlc {{https://www.youtube.com/watch?v=oHg5SJYRHA0}}` diff --git a/pages.ne/common/xzcat.md b/pages.ne/common/xzcat.md new file mode 100644 index 00000000000000..2a79b874c1f8c9 --- /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 00000000000000..0fb3a70342ffb0 --- /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 00000000000000..a50c8de3cdb8cd --- /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 00000000000000..12e3d1d7afec5a --- /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 00000000000000..daaa38962126ed --- /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 00000000000000..fb053f8e59617f --- /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 00000000000000..a26dc2c497c4a4 --- /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 00000000000000..cef7cd12908d04 --- /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 00000000000000..17466a279cbe69 --- /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 00000000000000..3450f8c825976d --- /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 00000000000000..d79214e85cb9c8 --- /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 00000000000000..4fd16472aa3af8 --- /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 00000000000000..56da6e37284580 --- /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 00000000000000..980853ca56da8d --- /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 00000000000000..84c177bc1ec070 --- /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 00000000000000..ff4725bd4b427f --- /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 00000000000000..c37fea2662d198 --- /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 00000000000000..4f8c104d1085c2 --- /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 00000000000000..55fb4791db2c3c --- /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 00000000000000..e123646afd1868 --- /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 00000000000000..01d35268967e18 --- /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 00000000000000..98dc4bf1022cf5 --- /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 00000000000000..6a1e4e938370a1 --- /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 00000000000000..221841dc70b066 --- /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 00000000000000..781ca5396027b4 --- /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 00000000000000..5034d85490d1ed --- /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 00000000000000..2f7fe04ed38cdc --- /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 00000000000000..25178473c60fca --- /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 00000000000000..829f6dccc859d3 --- /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 00000000000000..b91035f26e6613 --- /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 00000000000000..a6e70b48813f00 --- /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 00000000000000..0bb6f5a8cfdfcc --- /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 00000000000000..ed19a61e37d7c8 --- /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 00000000000000..0f13fea4fd6d74 --- /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 00000000000000..2efd1e9f2443f7 --- /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 00000000000000..053f4296db11b1 --- /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 00000000000000..fe52871cb95fd8 --- /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 00000000000000..e7b4f266b024e3 --- /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 00000000000000..2f6b69dcbcbdb7 --- /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 00000000000000..19818055016e97 --- /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 00000000000000..d4c2a52cab92c4 --- /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 00000000000000..9612c009469bd7 --- /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 00000000000000..0d686e71c336db --- /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 00000000000000..c7b33e3f0e3163 --- /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 00000000000000..3d47a311c33614 --- /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 00000000000000..c1e994e4d3a753 --- /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 00000000000000..d96c64898ff472 --- /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 00000000000000..d253e0d394fe12 --- /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 00000000000000..6129d0848d65b2 --- /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 00000000000000..382e38363a8573 --- /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 00000000000000..2eaa1c1453474a --- /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 00000000000000..2593766dd11391 --- /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 00000000000000..0dc03414d50ab3 --- /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 00000000000000..89738f6bbf4429 --- /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 00000000000000..d2dbca59e98617 --- /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 00000000000000..8e0de6b590ea1e --- /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 00000000000000..1a25bd9c0c321b --- /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 00000000000000..bd931693bded08 --- /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 00000000000000..ccec022ea62a5b --- /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 00000000000000..9c58462f54cae5 --- /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 00000000000000..71aa8efd069aa1 --- /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 00000000000000..aaa93cf5dcdc61 --- /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 00000000000000..37a2d19ff4c018 --- /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 00000000000000..4c937f399c52c1 --- /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 00000000000000..dce51778f7a093 --- /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 00000000000000..279441a7a3c4d5 --- /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 00000000000000..c9513aaa88c692 --- /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 00000000000000..c86d11ef80a4c2 --- /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 00000000000000..4b2c0f4d11dc0a --- /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 00000000000000..0968935eaf508c --- /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 00000000000000..f0235e2b5ca756 --- /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 00000000000000..a991c4ad450a28 --- /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 00000000000000..839031015b6270 --- /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 00000000000000..71b73bf2c442f2 --- /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 00000000000000..8e89d7c36e9864 --- /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 00000000000000..4f3aaa910d0621 --- /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 00000000000000..e81f2cbfd55cc9 --- /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 00000000000000..4768557a866dfc --- /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 00000000000000..0131299642cf48 --- /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 00000000000000..bd348ef3564388 --- /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 00000000000000..b83c11c8c05054 --- /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 00000000000000..385b4959a27a89 --- /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 00000000000000..c753f4442eb055 --- /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 00000000000000..4abd6d36b8f9ba --- /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 00000000000000..9e1bb051103ca8 --- /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 00000000000000..71ac6867f3132e --- /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 00000000000000..e275c99da506d1 --- /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 00000000000000..0b1b8a9e336756 --- /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 00000000000000..6ee8788b38d487 --- /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 00000000000000..902d6e8722fd0d --- /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 00000000000000..ed7357af37c52d --- /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 00000000000000..1aa87940b21d19 --- /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 00000000000000..01e60f0219f45d --- /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 00000000000000..c195ccb6ee917c --- /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 00000000000000..76746be0f683d0 --- /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 00000000000000..d9ca64e059a919 --- /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 00000000000000..cd941b7f61920b --- /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 00000000000000..e7cdcadf42cb4a --- /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 00000000000000..802ce1699c8323 --- /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 00000000000000..f4d915fc5f3e3a --- /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 00000000000000..da8f1c2dd7da9e --- /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 00000000000000..2c66380714a593 --- /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 00000000000000..90f41d7d547833 --- /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 00000000000000..34b52c37ff7ad2 --- /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 00000000000000..c21e67aa51ddc0 --- /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 00000000000000..0602da5d3782da --- /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 00000000000000..7da14f3d6ed9c0 --- /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 00000000000000..0cf9533df1f697 --- /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 00000000000000..5187673560f463 --- /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 00000000000000..0148c56cc84175 --- /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 00000000000000..56a3f409bd244f --- /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 00000000000000..45d4c86e04d7d8 --- /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 00000000000000..03ad10d4d70566 --- /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 00000000000000..cf2426e5164418 --- /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 00000000000000..66c1bb4aa10a4f --- /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 00000000000000..6a4df89794954e --- /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 00000000000000..e76b16f077920a --- /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 00000000000000..f93869a0002baa --- /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 00000000000000..07c7bffe2faa8e --- /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 00000000000000..bc4a58958f9e2e --- /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 00000000000000..ff071545611c73 --- /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 00000000000000..9fc50320ecb06b --- /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 00000000000000..7d8b254268aec0 --- /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 00000000000000..c6e4518c56be8e --- /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 00000000000000..292434793a21b7 --- /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 00000000000000..1a00b86ce95d70 --- /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 00000000000000..89a66f2e3fa3e4 --- /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 00000000000000..40e23a473b97ae --- /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 00000000000000..182b3f244750de --- /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 00000000000000..f64af0d99542b2 --- /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 00000000000000..262fa5845bd382 --- /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 00000000000000..341c49e9d1d6f6 --- /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 00000000000000..957ee9a1ed9ee6 --- /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 00000000000000..b2765b92d23599 --- /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 00000000000000..ce71be5f04b755 --- /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 00000000000000..dedf9d2a80b30d --- /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 00000000000000..9d02f793c05974 --- /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 00000000000000..a890a44ccec4b4 --- /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 00000000000000..7c4997fc0705fb --- /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 00000000000000..7318dba972d9b4 --- /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 00000000000000..de919d2ebf3b7d --- /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 00000000000000..c51833c23ead70 --- /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 00000000000000..f0bb5731f1e06d --- /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 00000000000000..77bf2653708987 --- /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 00000000000000..af123d0b62f6f0 --- /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 00000000000000..6c5355b8f31393 --- /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 00000000000000..ae1c0d2bf592f6 --- /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 00000000000000..d5b453dc3224aa --- /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 00000000000000..610460b1dbcd2a --- /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 00000000000000..6495ffe41745a2 --- /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 00000000000000..d1628db171c88a --- /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 00000000000000..8301c69b4083cb --- /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 00000000000000..c4b10223d3bcf6 --- /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 00000000000000..cdb568eeae9290 --- /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 00000000000000..fe940818bf4bb7 --- /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 00000000000000..0fd64734a4185f --- /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 00000000000000..6a8e0bf6313631 --- /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 00000000000000..e88e91eea390a5 --- /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 00000000000000..d04a64f36f84e8 --- /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 00000000000000..ddae16eaff1ce9 --- /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 00000000000000..b03d2e8ea3aa17 --- /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 00000000000000..667338c3062365 --- /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/common/7z.md b/pages.nl/common/7z.md index fd31813ef40473..0e4a10fbc1b0a1 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: @@ -25,7 +25,7 @@ - Archiveer met een specifiek archieftype: -`7z a -t{{zip|gzip|bzip2|tar}} {{archief.7z}} {{pad/naar/bestand_of_map}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{archief.7z}} {{pad/naar/bestand_of_map}}` - Geef een lijst van beschikbare archieftypen: diff --git a/pages.nl/common/[.md b/pages.nl/common/[.md new file mode 100644 index 00000000000000..15248b55229a66 --- /dev/null +++ b/pages.nl/common/[.md @@ -0,0 +1,25 @@ +# [ + +> Evalueren voorwaarde. +> 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}}" ]` + +- Test of een gegeven variabele leeg is: + +`[ -z "{{$GIT_TAK}}" ]` + +- Test of een bestand bestaat: + +`[ -f "{{pad/naar/bestand}}" ]` + +- Test of een directory niet bestaat: + +`[ ! -d "{{pad/naar/directory}}" ]` + +- If-else instructie: + +`[ {{conditie}} ] && {{echo "waar"}} || {{echo "niet waar"}}` diff --git a/pages.nl/common/alias.md b/pages.nl/common/alias.md new file mode 100644 index 00000000000000..b69bb50c28f635 --- /dev/null +++ b/pages.nl/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> Maakt een alias aan -- Woorden die vervangen woorden 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: . + +- Overzicht alle aliases: + +`alias` + +- Maak een generieke alias aan: + +`alias {{woord}}="{{commando}}"` + +- Laat het gekoppelde commando zien van een gegeven alias: + +`alias {{woord}}` + +- Verwijdert een alias: + +`unalias {{woord}}` + +- Maak van `rm` een interactief commando: + +`alias {{rm}}="{{rm -i}}"` + +- Maak een alias `la` aan als korte schrijfwijze van `ls -a`: + +`alias {{la}}="{{ls -a}}"` diff --git a/pages.nl/common/asciinema.md b/pages.nl/common/asciinema.md new file mode 100644 index 00000000000000..22ff025435dd50 --- /dev/null +++ b/pages.nl/common/asciinema.md @@ -0,0 +1,36 @@ +# asciinema + +> Neemt en speelt terminal sessies af, en deelt hem optioneel op asciinema.org. +> Meer informatie: . + +- Associeer de lokale installatie van `asciinema` met het asciinema.org account: + +`asciinema auth` + +- Maak een nieuwe opname (gebruiker krijgt een vraag om het lokaal op te slaan of te uploaden als de opname klaar is): + +`asciinema rec` + +- Maak een nieuwe opname en sla het op in een lokaal bestand: + +`asciinema rec {{pad/naar/bestand}}.cast` + +- Speelt een terminal opname of vanaf een lokaal bestand: + +`asciinema play {{pad/naar/bestand}}.cast` + +- Speelt een terminal opname of vanaf asciinema.org: + +`asciinema play https://asciinema.org/a/{{cast_id}}` + +- Maakt een nieuwe opname met een inactieve tijd van maximaal 2,5 seconden: + +`asciinema rec -i {{2.5}}` + +- Laat de volledige inhoud zien van een lokaal opgeslagen opname: + +`asciinema cat {{pad/naar/bestand}}.cast` + +- Slaat een lokaal opgeslagen terminal sessie op bij asciinema.org: + +`asciinema upload {{pad/naar/bestand}}.cast` diff --git a/pages.nl/common/atom.md b/pages.nl/common/atom.md new file mode 100644 index 00000000000000..8733ad3f468a5f --- /dev/null +++ b/pages.nl/common/atom.md @@ -0,0 +1,29 @@ +# atom + +> Een platformonafhankelijke inplugbare tekstbewerker. +> Plugins zijn beheerd door `apm`. +> Meer informatie: . + +- Open een bestand of map: + +`atom {{pad/naar/bestand_of_map}}` + +- Open een bestand of map in een nieuw venster: + +`atom -n {{pad/naar/bestand_of_map}}` + +- Open een bestand of map in een bestaand venster: + +`atom --add {{pad/naar/bestand_of_map}}` + +- Open Atom in veilige modus (laadt geen geïnstalleerde pakketten): + +`atom --safe` + +- Voorkom dat Atom zich vertakt in de achtergrond, en houdt Atom in de terminal: + +`atom --foreground` + +- Wacht op het Atom venster om zich te sluiten voor door te gaan (handig voor Git commit bewerker): + +`atom --wait` diff --git a/pages.nl/common/bash.md b/pages.nl/common/bash.md index b13f3ac742ec62..48a535c2a68a70 100644 --- a/pages.nl/common/bash.md +++ b/pages.nl/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell. > `sh`-ondersteunende commandoregel-interpreteerder. -> Meer informatie: . +> Meer informatie: . - Start interactieve shell: diff --git a/pages.nl/common/bundler.md b/pages.nl/common/bundler.md new file mode 100644 index 00000000000000..9d3cc024793bab --- /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 f77be83e00f75b..37b7c0d323b423 100644 --- a/pages.nl/common/cargo.md +++ b/pages.nl/common/cargo.md @@ -2,7 +2,7 @@ > Rust pakketbeheerder. > Beheer Rust projecten en hun afhankelijkheden (crates). -> Meer informatie: . +> Meer informatie: . - Zoek naar crates: @@ -30,4 +30,4 @@ - Bouw met een gegeven aantal taken. (Standaard is het aantal CPU-kernen): -`cargo build -j {{taken}}` +`cargo build --jobs {{aantal_taken}}` diff --git a/pages.nl/common/cd.md b/pages.nl/common/cd.md index add6a537c13b1d..b21ba2aef0bac6 100644 --- a/pages.nl/common/cd.md +++ b/pages.nl/common/cd.md @@ -1,7 +1,7 @@ # cd > Verander de huidige map. -> Meer informatie: . +> Meer informatie: . - Ga naar de gegeven map: diff --git a/pages.nl/common/clamav.md b/pages.nl/common/clamav.md new file mode 100644 index 00000000000000..55734495e5418b --- /dev/null +++ b/pages.nl/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Dit commando is een alias van `clamdscan`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr clamdscan` diff --git a/pages.nl/common/clang-cpp.md b/pages.nl/common/clang-cpp.md new file mode 100644 index 00000000000000..3557267c318e68 --- /dev/null +++ b/pages.nl/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Dit commando is een alias van `clang++`. + +- Bekijk de documentatie van het originele commando: + +`tldr clang++` diff --git a/pages.nl/common/clojure.md b/pages.nl/common/clojure.md new file mode 100644 index 00000000000000..adb78203364e08 --- /dev/null +++ b/pages.nl/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Dit commando is een alias van `clj`. + +- Bekijk de documentatie van het originele commando: + +`tldr clj` diff --git a/pages.nl/common/cola.md b/pages.nl/common/cola.md new file mode 100644 index 00000000000000..8da623064c7f12 --- /dev/null +++ b/pages.nl/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Dit commando is een alias van `git-cola`. + +- Bekijk de documentatie van het originele commando: + +`tldr git-cola` diff --git a/pages.nl/common/cron.md b/pages.nl/common/cron.md new file mode 100644 index 00000000000000..5c1541ff3a5ace --- /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 new file mode 100644 index 00000000000000..1c1a8cfb990467 --- /dev/null +++ b/pages.nl/common/du.md @@ -0,0 +1,28 @@ +# du + +> Disk gebruik: schat en groepeer bestand en directory ruimte gebruik. +> Meer informatie: . + +- Toont de grootte van een directory en mogelijke sub-directories, met een gegeven eenheid (B/KiB/MiB): + +`du -{{b|k|m}} {{pad/naar/directory}}` + +- 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)): + +`du -h {{pad/naar/directory}}` + +- Toont de grootte van een enkele directory met een leesbaar eenheid formaat: + +`du -sh {{pad/naar/directory}}` + +- Toont de grootte in leesbare vorm van een directory met alle bestanden en directories: + +`du -ah {{pad/naar/directory}}` + +- Toont de grootte in leesbare vorm van een directory en alle sub-directories tot N niveaus diep: + +`du -h --max-depth=N {{pad/naar/directory}}` + +- 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: + +`du -ch {{*/*.jpg}}` diff --git a/pages.nl/common/echo.md b/pages.nl/common/echo.md new file mode 100644 index 00000000000000..ec5d9bf755c02f --- /dev/null +++ b/pages.nl/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> Drukt gegeven argumenten af. +> Meer informatie: . + +- Druk een tekstbericht af. Let op: aanhalingstekens zijn optimaal: + +`echo "{{Hallo Wereld}}"` + +- Druk een bericht af met omgevingsvariabelen: + +`echo "{{Mijn pad is $PATH}}"` + +- Drukt een bericht af zonder te volgen met een nieuwe regel: + +`echo -n "{{Hallo Wereld}}"` + +- Voeg een bericht aan een bestand toe: + +`echo "{{Hallo Wereld}}" >> {{bestand.txt}}` + +- Schakel interpretatie van backslash ontkoming in (speciale karakters): + +`echo -e "{{kolom 1\kolom 2}}"` diff --git a/pages.nl/common/fossil-ci.md b/pages.nl/common/fossil-ci.md new file mode 100644 index 00000000000000..5a2a6dc7197ba0 --- /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 00000000000000..c6324d599bb03e --- /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 00000000000000..1f50db65ae562b --- /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 00000000000000..d257d8ef6a249d --- /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 00000000000000..cb1ed361e2eb6c --- /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 00000000000000..cfb551b285a708 --- /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 00000000000000..2c28ca73432dd4 --- /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 00000000000000..4c23eb37ce5225 --- /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 00000000000000..86cdeffef9be3e --- /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/llvm-ar.md b/pages.nl/common/llvm-ar.md new file mode 100644 index 00000000000000..4a72fe683eb221 --- /dev/null +++ b/pages.nl/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Dit commando is een alias van `ar`. + +- Bekijk de documentatie van het originele commando: + +`tldr ar` diff --git a/pages.nl/common/llvm-g++.md b/pages.nl/common/llvm-g++.md new file mode 100644 index 00000000000000..88e12a620da549 --- /dev/null +++ b/pages.nl/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Dit commando is een alias van `clang++`. + +- Bekijk de documentatie van het originele commando: + +`tldr clang++` diff --git a/pages.nl/common/llvm-gcc.md b/pages.nl/common/llvm-gcc.md new file mode 100644 index 00000000000000..741ff2cc4d120d --- /dev/null +++ b/pages.nl/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Dit commando is een alias van `clang`. + +- Bekijk de documentatie van het originele commando: + +`tldr clang` diff --git a/pages.nl/common/llvm-nm.md b/pages.nl/common/llvm-nm.md new file mode 100644 index 00000000000000..860cd2fa450993 --- /dev/null +++ b/pages.nl/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Dit commando is een alias van `nm`. + +- Bekijk de documentatie van het originele commando: + +`tldr nm` diff --git a/pages.nl/common/llvm-objdump.md b/pages.nl/common/llvm-objdump.md new file mode 100644 index 00000000000000..b499839da82ef4 --- /dev/null +++ b/pages.nl/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Dit commando is een alias van `objdump`. + +- Bekijk de documentatie van het originele commando: + +`tldr objdump` diff --git a/pages.nl/common/llvm-strings.md b/pages.nl/common/llvm-strings.md new file mode 100644 index 00000000000000..5fb6be34ca095d --- /dev/null +++ b/pages.nl/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Dit commando is een alias van `strings`. + +- Bekijk de documentatie van het originele commando: + +`tldr strings` diff --git a/pages.nl/common/ln.md b/pages.nl/common/ln.md new file mode 100644 index 00000000000000..40995ff90fb8ac --- /dev/null +++ b/pages.nl/common/ln.md @@ -0,0 +1,16 @@ +# ln + +> Maakt een verwijzing naar bestanden en mappen. +> Meer informatie: . + +- Maak een symbolische verwijzing naar een bestand of map: + +`ln -s {{/pad/naar/bestand_of_map}} {{pad/naar/symbolische_verwijzing}}` + +- Overschrijf een bestaande symbolische verwijzing om die naar een ander bestand te verwijzen: + +`ln -sf {{/pad/naar/nieuw_bestand}} {{pad/naar/symbolische_verwijzing}}` + +- Maak een harde verwijzing naar een bestand: + +`ln {{/pad/naar/bestand}} {{pad/naar/harde_verwijzing}}` diff --git a/pages.nl/common/lzcat.md b/pages.nl/common/lzcat.md new file mode 100644 index 00000000000000..37e0beb23bfc3c --- /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 00000000000000..4717c4e68c37ab --- /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/mscore.md b/pages.nl/common/mscore.md new file mode 100644 index 00000000000000..18489889f62c02 --- /dev/null +++ b/pages.nl/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Dit commando is een alias van `musescore`. +> Meer informatie: . + +- Bekijk documentatie voor het originele commando: + +`tldr musescore` diff --git a/pages.nl/common/musescore.md b/pages.nl/common/musescore.md new file mode 100644 index 00000000000000..0bbcf14abc5d19 --- /dev/null +++ b/pages.nl/common/musescore.md @@ -0,0 +1,32 @@ +# musescore + +> MuseScore 3 bladmuziek bewerker. +> Meer informatie: . + +- Gebruik een specifiek audio stuurprogramma: + +`musescore --audio-driver {{jack|alsa|portaudio|pulse}}` + +- Stel de MP3 uitvoer bitsnelheid in in kbit/s: + +`musescore --bitrate {{bitsnelheid}}` + +- Open MuseScore in debug modus: + +`musescore --debug` + +- Schakel experimentele funcies in, bijvoorbeeld lagen: + +`musescore --experimental` + +- Exporteer het gegeven bestand naar het gegeven uitvoer bestand. Het bestandstype hangt af van de gegeven extentie: + +`musescore --export-to {{uitvoer_bestand}} {{invoer_bestand}}` + +- Geef het verschil tussen de gegeven partituren: + +`musescore --diff {{pad/naar/bestand1}} {{pad/naar/bestand2}}` + +- Specificeer een MIDI invoer operaties bestand: + +`musescore --midi-operations {{pad/naar/bestand}}` diff --git a/pages.nl/common/nano.md b/pages.nl/common/nano.md new file mode 100644 index 00000000000000..9cb979c74b3ae0 --- /dev/null +++ b/pages.nl/common/nano.md @@ -0,0 +1,28 @@ +# nano + +> Simpele, makkelijk te gebruiken command-line tekst bewerker. Een verbeterde, gratis Pico kloon. +> Meer informatie: . + +- Open een nieuw bestand in nano: + +`nano` + +- Open een specifiek bestand: + +`nano {{pad/naar/bestand}}` + +- Open een bepaald bestand, met de cursor gezet in een gegeven regel en kolom: + +`nano +{{regel}},{{kolom}} {{pad/naar/bestand}}` + +- Open een bepaald 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: + +`nano --autoindent {{pad/naar/bestand}}` + +- Open nano en maak een reservekopie (`bestand~`) bij het opslaan van veranderingen: + +`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 00000000000000..414271c36187b7 --- /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 00000000000000..a73db66ebfa0fe --- /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/pio-init.md b/pages.nl/common/pio-init.md new file mode 100644 index 00000000000000..9f17782cf78056 --- /dev/null +++ b/pages.nl/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Dit commando is een alias van `pio project`. + +- Bekijk de documentatie van het originele commando: + +`tldr pio project` diff --git a/pages.nl/common/piodebuggdb.md b/pages.nl/common/piodebuggdb.md new file mode 100644 index 00000000000000..196114eb500df4 --- /dev/null +++ b/pages.nl/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Dit commando is een alias van `pio debug`. + +- Bekijk de documentatie van het originele commando: + +`tldr pio debug` diff --git a/pages.nl/common/platformio.md b/pages.nl/common/platformio.md new file mode 100644 index 00000000000000..5d197f34038c63 --- /dev/null +++ b/pages.nl/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Dit commando is een alias van `pio`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr pio` diff --git a/pages.nl/common/ptpython3.md b/pages.nl/common/ptpython3.md new file mode 100644 index 00000000000000..1db6deeef2fda4 --- /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 00000000000000..a9347eaeae69d3 --- /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/r2.md b/pages.nl/common/r2.md new file mode 100644 index 00000000000000..1c483b588303aa --- /dev/null +++ b/pages.nl/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Dit commando is een alias van `radare2`. + +- Bekijk de documentatie van het originele commando: + +`tldr radare2` diff --git a/pages.nl/common/rcat.md b/pages.nl/common/rcat.md new file mode 100644 index 00000000000000..138762d9545f27 --- /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 00000000000000..23f9b31c0aa3a7 --- /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 38beddcd1134d8..57b81a31587bec 100644 --- a/pages.nl/common/source.md +++ b/pages.nl/common/source.md @@ -1,6 +1,7 @@ # source > Voer opdrachten uit vanuit een bestand in de huidige shell. +> Meer informatie: . - Evalueer de inhoud van een bepaald bestand: diff --git a/pages.nl/common/time.md b/pages.nl/common/time.md index 4db68a87a0c62a..6593b68171d37b 100644 --- a/pages.nl/common/time.md +++ b/pages.nl/common/time.md @@ -1,6 +1,7 @@ # time > Kijk hoe lang een opdracht duurt. +> Meer informatie: . - Tijd "ls": diff --git a/pages.nl/common/tldrl.md b/pages.nl/common/tldrl.md new file mode 100644 index 00000000000000..0bceec9fe4e85c --- /dev/null +++ b/pages.nl/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Dit commando is een alias van `tldr-lint`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr tldr-lint` diff --git a/pages.nl/common/tlmgr-arch.md b/pages.nl/common/tlmgr-arch.md new file mode 100644 index 00000000000000..1f26ef8648cbee --- /dev/null +++ b/pages.nl/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Dit commando is een alias van `tlmgr platform`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr tlmgr platform` diff --git a/pages.nl/common/todoman.md b/pages.nl/common/todoman.md new file mode 100644 index 00000000000000..5cbfe1e7c845eb --- /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 00000000000000..c2f944a4209dd5 --- /dev/null +++ b/pages.nl/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> Dit commando is een alias van `transmission-daemon`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr transmission-daemon` diff --git a/pages.nl/common/ugrep.md b/pages.nl/common/ugrep.md new file mode 100644 index 00000000000000..364d31b2fc1663 --- /dev/null +++ b/pages.nl/common/ugrep.md @@ -0,0 +1,36 @@ +# ugrep + +> Ultrasnelle bestandszoeker met interactive UI. +> Meer informatie: . + +- Open een interactieve TUI om recursief bestanden te zoeken (CTRL-Z voor hulp): + +`ugrep --query` + +- Zoek recursief met een regex zoekpatroon in de huidige directory naar passende bestanden: + +`ugrep "{{zoekpatroon}}"` + +- Zoek een gegeven bestand of bestanden in een gegeven directory en laat de passende regelnummers zien: + +`ugrep --line-number "{{zoekpatroon}}" {{pad/naar/bestand_of_directory}}` + +- Zoek recursief in de huidige directory en geef een lijst met passende bestanden: + +`ugrep --files-with-matches "{{zoekpatroon}}"` + +- Zoek "fuzzy" met maximaal 3 extra, missende of verwisselende karakters in het patroon: + +`ugrep --fuzzy=3 "{{zoekpatroon}}"` + +- Zoek passende gecomprimeerde bestanden, zip en tar archieven recursief in de huidige directory: + +`ugrep --decompress "{{zoekpatroon}}"` + +- Zoek alleen naar bestanden met namen die overeenkomen met een passende `foo*.???` glob patroon: + +`ugrep --glob="{{foo*.???}}" "{{zoekpatroon}}"` + +- Zoek alleen passende bestanden van het type C++ (gebruik `--type=list` voor een lijst van typenamen): + +`ugrep --type=cpp "{{zoekpatroon}}"` diff --git a/pages.nl/common/unalias.md b/pages.nl/common/unalias.md index f39cf22362547e..159cb59ce3d443 100644 --- a/pages.nl/common/unalias.md +++ b/pages.nl/common/unalias.md @@ -1,6 +1,7 @@ # unalias > Verwijder aliassen. +> Meer informatie: . - Verwijder een alias: diff --git a/pages.nl/common/unclutter.md b/pages.nl/common/unclutter.md index 4b584b62a34f9c..dea8d76a9b448b 100644 --- a/pages.nl/common/unclutter.md +++ b/pages.nl/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > Verbergt de muiscursor. +> Meer informatie: . - Verbergt de muiscursor na 3 seconden: diff --git a/pages.nl/common/unlzma.md b/pages.nl/common/unlzma.md new file mode 100644 index 00000000000000..1b1e5e8684b5ab --- /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 00000000000000..2bd5d07ebefce4 --- /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/vi.md b/pages.nl/common/vi.md new file mode 100644 index 00000000000000..0eecfad8bee1d4 --- /dev/null +++ b/pages.nl/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Dit commando is een alias van `vim`. + +- Bekijk de documentatie voor het originele commando: + +`tldr vim` diff --git a/pages.nl/common/view.md b/pages.nl/common/view.md index d392f1cd06f018..bf61213a3e051f 100644 --- a/pages.nl/common/view.md +++ b/pages.nl/common/view.md @@ -2,6 +2,7 @@ > Een alleen-lezen versie van `vim`. > Dit is gelijk aan `vim -R`. +> Meer informatie: . - Open een bestand: diff --git a/pages.nl/common/vim.md b/pages.nl/common/vim.md new file mode 100644 index 00000000000000..e34040e02f583c --- /dev/null +++ b/pages.nl/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), een command-line tekst bewerker, geeft toegang tot verschillende manieren van tekst manipulatie. +> Drukken op `i` begint invoegmodus. `` begint normale modus, wat toegang geeft tot de Vim commando's. +> Meer informatie: . + +- Open een bestand: + +`vim {{pad/naar/bestand}}` + +- Open een bestand bij een bepaald regelnummer: + +`vim +{{regel_nummer}} {{pad/naar/bestand}}` + +- Bekijk de handleiding van Vim: + +`:help` + +- Opslaan en Afsluiten: + +`:wq` + +- Maak de laatste verandering ongedaan: + +`u` + +- Zoek een patroon in het bestand (druk op `n`/`N` om naar de volgende/vorige overeenkomst te gaan): + +`/{{zoek_patroon}}` + +- Voer een reguliere expressie substitutie uit in het hele bestand: + +`:%s/{{reguliere_expressie}}/{{vervanging}}/g` + +- Geef de regelnummers weer: + +`:set nu` diff --git a/pages.nl/common/visudo.md b/pages.nl/common/visudo.md index b01b63dacb93d9..4b5b24daa87560 100644 --- a/pages.nl/common/visudo.md +++ b/pages.nl/common/visudo.md @@ -1,6 +1,7 @@ # visudo > Bewerk veilig het sudoers-bestand. +> Meer informatie: . - Bewerk sudoers-bestand: diff --git a/pages.nl/common/xzcat.md b/pages.nl/common/xzcat.md new file mode 100644 index 00000000000000..7651bab54031fe --- /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 c3a0fd34d079d0..09f9b8acefdadc 100644 --- a/pages.nl/common/yes.md +++ b/pages.nl/common/yes.md @@ -1,12 +1,12 @@ # yes -> Voer herhaaldelijk iets uit. +> Print herhaaldelijk iets op het scherm. > Meer informatie: . -- Voer herhaaldelijk "bericht" uit: +- Print herhaaldelijk "bericht": `yes {{bericht}}` -- Voor herhaaldelijk "y" uit: +- Print herhaaldelijk "y": `yes` diff --git a/pages.nl/common/zless.md b/pages.nl/common/zless.md index 2ddb89ec2ba8ba..4a948926d9ae4e 100644 --- a/pages.nl/common/zless.md +++ b/pages.nl/common/zless.md @@ -1,6 +1,7 @@ # zless > Bekijk gecomprimeerde bestanden. +> Meer informatie: . - Blader door een gecomprimeerd archief met `minder`: diff --git a/pages.nl/linux/alternatives.md b/pages.nl/linux/alternatives.md new file mode 100644 index 00000000000000..afa32baceb43b8 --- /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 00000000000000..025b320896996d --- /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 00000000000000..46fa735b46a2d9 --- /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/archinstall.md b/pages.nl/linux/archinstall.md new file mode 100644 index 00000000000000..5e7df63fc96c0d --- /dev/null +++ b/pages.nl/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> Begeleidende Arch Linux installatie met een twist +> Meer informatie: . + +- Start de interactieve installatie: + +`archinstall` + +- Start de template installatie: + +`archinstall {{minimal|unattended}}` diff --git a/pages.nl/linux/batcat.md b/pages.nl/linux/batcat.md new file mode 100644 index 00000000000000..c6dcffe39fec82 --- /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/bspwm.md b/pages.nl/linux/bspwm.md new file mode 100644 index 00000000000000..03885ec948767e --- /dev/null +++ b/pages.nl/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> Dit commando is een alias van `bspc`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr bspc` diff --git a/pages.nl/linux/cc.md b/pages.nl/linux/cc.md new file mode 100644 index 00000000000000..bce7adec347d50 --- /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/certbot.md b/pages.nl/linux/certbot.md new file mode 100644 index 00000000000000..04c3f0cb04278f --- /dev/null +++ b/pages.nl/linux/certbot.md @@ -0,0 +1,29 @@ +# certbot + +> De Let's Encrypt Agent om automatisch TLS certificaten te verkrijgen en te vernieuwen. +> Opvolger van `letsencrypt`. +> Meer informatie: . + +- Verkrijg een nieuw certificaat via webroot authorisatie, maar installeer het certificaat niet automatisch: + +`sudo certbot certonly --webroot --webroot-path {{pad/naar/webroot}} --domain {{subdomein.voorbeeld.com}}` + +- Verkrijg een nieuw certificaat via nginx authorisatie, installeer het nieuwe certificaat automatisch: + +`sudo certbot --nginx --domain {{subdomein.voorbeeld.com}}` + +- Verkrijg een nieuw certificaat via apache authorisatie, installeer het nieuwe certificaat automatisch: + +`sudo certbot --apache --domain {{subdomein.voorbeeld.com}}` + +- Vernieuw alle Let's Encrypt certificaten die binnen 30 dagen verlopen (vergeet achteraf niet alle servers te herstarten die dit certificaat gebruiken): + +`sudo certbot renew` + +- Simuleer het verkrijgen van een nieuw certificaat, maar sla deze niet op, op een harde schijf: + +`sudo certbot --webroot --webroot-path {{pad/naar/webroot}} --domain {{subdomein.voorbeeld.com}} --dry-run` + +- Verkrijg een onvertrouwd test certificaat: + +`sudo certbot --webroot --webroot-path {{pad/naar/webroot}} --domain {{subdomein.voorbeeld.com}} --test-cert` diff --git a/pages.nl/linux/cfdisk.md b/pages.nl/linux/cfdisk.md new file mode 100644 index 00000000000000..1999ceb10dd1da --- /dev/null +++ b/pages.nl/linux/cfdisk.md @@ -0,0 +1,12 @@ +# cfdisk + +> Een programma voor het beheren van partitie tabellen en partities op een harde schijf met het gebruik van een UI. +> Meer informatie: . + +- Start de partitie manipulator met een specifiek apparaat: + +`cfdisk {{/dev/sdX}}` + +- Creëer een nieuwe partitie tabel voor een specifiek apparaat en beheer het: + +`cfdisk --zero {{/dev/sdX}}` diff --git a/pages.nl/linux/cgroups.md b/pages.nl/linux/cgroups.md new file mode 100644 index 00000000000000..80f86f38662127 --- /dev/null +++ b/pages.nl/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Dit commando is een alias van `cgclassify`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr cgclassify` diff --git a/pages.nl/linux/cp.md b/pages.nl/linux/cp.md new file mode 100644 index 00000000000000..9b80b1e1d75e68 --- /dev/null +++ b/pages.nl/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Kopieer bestanden en mappen. +> Meer informatie: . + +- Kopieer een bestand naar een andere locatie: + +`cp {{pad/naar/bron_bestand.ext}} {{pad/naar/doel_bestand.ext}}` + +- Kopieer een bestand naar een andere map, maar behoud de bestandsnaam: + +`cp {{pad/naar/bron_bestand.ext}} {{pad/naar/doel_map}}` + +- Kopieer de inhoud van een map recursief naar een andere locatie (als de doelmap bestaat, dan wordt de map hierin gekopieerd) + +`cp -r {{pad/naar/bron_map}} {{pad/naar/doel_map}}` + +- Kopieer een map recursief, in uitgebreide modus (laat de bestandsvoortgang zien): + +`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): + +`cp -i {{*.txt}} {{pad/naar/doel_map}}` + +- Volg symbolische links voordat deze gekopieerd worden: + +`cp -L {{link}} {{pad/naar/doel_map}}` + +- 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}}` diff --git a/pages.nl/linux/do-release-upgrade.md b/pages.nl/linux/do-release-upgrade.md new file mode 100644 index 00000000000000..656a5f680d25a4 --- /dev/null +++ b/pages.nl/linux/do-release-upgrade.md @@ -0,0 +1,16 @@ +# do-release-upgrade + +> De Ubuntu release upgrader. +> Meer informatie: . + +- Upgrade naar de laatste release: + +`sudo do-release-upgrade` + +- Upgrade naar de laatste development release: + +`sudo do-release-upgrade --devel-release` + +- Upgrade naar de laatste voorgestelde release: + +`sudo do-release-upgrade --proposed` diff --git a/pages.nl/linux/ip-route-list.md b/pages.nl/linux/ip-route-list.md new file mode 100644 index 00000000000000..b7fb6dc2203564 --- /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 00000000000000..a8a2ca9d9e29f8 --- /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/ncal.md b/pages.nl/linux/ncal.md new file mode 100644 index 00000000000000..399ff864aa0a76 --- /dev/null +++ b/pages.nl/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Dit commando is een alias van `cal`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr cal` diff --git a/pages.nl/linux/ubuntu-bug.md b/pages.nl/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..957153390c4aed --- /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 00000000000000..07bd3d2b574ff3 --- /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 new file mode 100644 index 00000000000000..2045c4a063f4fd --- /dev/null +++ b/pages.nl/osx/du.md @@ -0,0 +1,28 @@ +# du + +> Disk gebruik: schat en groepeer bestand en directory ruimte gebruik. +> Meer informatie: . + +- Toont de grootte van een directory en mogelijke sub-directories, met een gegeven eenheid (KiB/MiB/GiB): + +`du -{{k|m|g}} {{pad/naar/directory}}` + +- 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)): + +`du -h {{pad/naar/directory}}` + +- Toont de grootte van een enkele directory met een leesbaar eenheid formaat: + +`du -sh {{pad/naar/directory}}` + +- Toont de grootte in leesbare vorm van een directory met alle bestanden en directories: + +`du -ah {{pad/naar/directory}}` + +- Toont de grootte in leesbare vorm van een directory en alle sub-directories tot N niveaus diep: + +`du -h -d {{N}} {{pad/naar/directory}}` + +- 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: + +`du -ch {{*/*.jpg}}` diff --git a/pages.nl/osx/g[.md b/pages.nl/osx/g[.md new file mode 100644 index 00000000000000..27e72af7a09e00 --- /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 00000000000000..9b7f0bc6ac5519 --- /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 00000000000000..2ecd0492726f88 --- /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 00000000000000..91abd5796f0f16 --- /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 00000000000000..506c5b2872a499 --- /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 00000000000000..634edb59e4f6f3 --- /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 00000000000000..8f13f314749a9c --- /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 00000000000000..e39961a9aa5858 --- /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 00000000000000..6855459a4562e5 --- /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 00000000000000..92abef9ff9abcb --- /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 00000000000000..ea08651870a185 --- /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 00000000000000..50ae518afb64a8 --- /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 00000000000000..3ad3eab163b162 --- /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 00000000000000..e282698bb4c605 --- /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 00000000000000..94b57e3253dae7 --- /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 00000000000000..c5b6d30b8dfd87 --- /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 00000000000000..b9ce4bc23321e6 --- /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 00000000000000..7f7ec768a65b66 --- /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 00000000000000..ee3cf05b3fcaf1 --- /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 00000000000000..6ab8d129fd91e2 --- /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 00000000000000..b1c423aab8d3ec --- /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 00000000000000..80c0fd8a67fa87 --- /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 00000000000000..1fc8b7d058a0a2 --- /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 00000000000000..54df92dd0ad0e7 --- /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 00000000000000..8ace7f0c68a5c7 --- /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 00000000000000..2fd76c6c444c29 --- /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 00000000000000..a6e7b22991781c --- /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 00000000000000..e16edf36fa4c72 --- /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 00000000000000..cff272795ca912 --- /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 00000000000000..b1d6ed621b722b --- /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 00000000000000..dbf91e0369ff81 --- /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 00000000000000..5c0599636f0976 --- /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 00000000000000..175a64a6778c97 --- /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 00000000000000..3d37950ae58deb --- /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 00000000000000..937aa70c194644 --- /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 00000000000000..3368d5ae745d68 --- /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 00000000000000..491806c0ca1021 --- /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 00000000000000..f43ed028b0f4b2 --- /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 00000000000000..bf995ff1ee023e --- /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 00000000000000..0f4c995cb80d75 --- /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 00000000000000..2a2dff5a517349 --- /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 00000000000000..3f2bfc08f9cc13 --- /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 00000000000000..acecef030a4865 --- /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 00000000000000..0a973ccd5b923e --- /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 00000000000000..6915efdcc0cb5f --- /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 00000000000000..dfc6842c9b778d --- /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 00000000000000..27a817a0a22f97 --- /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 00000000000000..b4218cbdc3f6cb --- /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 00000000000000..dd315537560f8a --- /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 00000000000000..bc1315554758d0 --- /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 00000000000000..cd975741a4a339 --- /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 00000000000000..54bd260b51978e --- /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 00000000000000..82d92fdfa80805 --- /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 00000000000000..dd0349527cd8c2 --- /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 00000000000000..f328f5f8c4af3a --- /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 00000000000000..ea1f2f88684008 --- /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 00000000000000..0868d401e96866 --- /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 00000000000000..65e8b35fd9e58b --- /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 00000000000000..3f4272d8497ac2 --- /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 00000000000000..d73177bcb2b72c --- /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 00000000000000..297d07a78429a8 --- /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 00000000000000..9c428e4f79b4a8 --- /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 00000000000000..784ad1ff7debca --- /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 00000000000000..68ab883c1605ee --- /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 00000000000000..1abbf0d1fbb8d6 --- /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 00000000000000..36519bb6bfa4b2 --- /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 00000000000000..5682d82ad77000 --- /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 00000000000000..00b01dd18ee4da --- /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 00000000000000..4fbffd62f6c94d --- /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 00000000000000..2b5ac5aef1345e --- /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 00000000000000..0241c4b3255ef3 --- /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 00000000000000..688dc7a6633afb --- /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 00000000000000..dbf6ee0408ca6a --- /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 00000000000000..c381978ec24a05 --- /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 00000000000000..d7f184bf0306fa --- /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 00000000000000..b4d46adad6ee25 --- /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 00000000000000..db026266ce4223 --- /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 00000000000000..cdc3e3d6d5aee4 --- /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 00000000000000..8c5b62e89bc28f --- /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 00000000000000..5ce42d612e07fd --- /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 00000000000000..e11f0a48ca766f --- /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 00000000000000..7fd34eefed4705 --- /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 00000000000000..c6c7e5a9a6c1dd --- /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 00000000000000..c49910b199a748 --- /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 00000000000000..a5f4cf61ed1734 --- /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 00000000000000..7f8572de1c0b64 --- /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 00000000000000..e6b2c7dcde68a7 --- /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 00000000000000..8c8f0d91b2fd13 --- /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 00000000000000..ba5865f870e156 --- /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 00000000000000..090a2fe26a39cc --- /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 00000000000000..a95522bbc66863 --- /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 00000000000000..a4a2cd7fa8ff9a --- /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 00000000000000..4f4a1f34d85994 --- /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 00000000000000..10c70d2ceb4afd --- /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 00000000000000..4fe4f30c138e62 --- /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 00000000000000..2e77c0cb5f5c83 --- /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 00000000000000..16ca605471020b --- /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 00000000000000..a724f027246a4a --- /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 00000000000000..009f650f6b21f8 --- /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 00000000000000..f0f77dfedc755f --- /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 00000000000000..00e6cf018d635f --- /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 00000000000000..019469e0a2bb83 --- /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 00000000000000..972b5420ae2223 --- /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 00000000000000..c7f74559a0ac2c --- /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 00000000000000..77ff703356cb71 --- /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 00000000000000..9df5cd3c085ac1 --- /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 00000000000000..d2ca76044894ba --- /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 00000000000000..43bc5abd2f8c8b --- /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 00000000000000..83f8a7b6589a11 --- /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 00000000000000..780f927cf28477 --- /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 00000000000000..01c2c948428510 --- /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 00000000000000..8fd92ea0165f05 --- /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 00000000000000..aa4c307e181b9d --- /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 00000000000000..d44fbb4a55b5fe --- /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 00000000000000..3c7ea0d13a7c2f --- /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 00000000000000..69d895db9efce8 --- /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 00000000000000..b0f09b4c1b9746 --- /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 00000000000000..b1c808460b48f3 --- /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 00000000000000..5443bddcd0be47 --- /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 00000000000000..59ad2a93ca84a5 --- /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 00000000000000..8e09f2d3e2fff4 --- /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 00000000000000..24a72e89b9ad73 --- /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 00000000000000..ef217049bfa8aa --- /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 00000000000000..ff29c64c83af13 --- /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 00000000000000..1c2511e9312736 --- /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 00000000000000..83d823b09eb381 --- /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 00000000000000..daa41f290f3a87 --- /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 00000000000000..5a90c4dda53f05 --- /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 00000000000000..6695f61ac0bcb8 --- /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 00000000000000..7f3d34a4e9260c --- /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 00000000000000..95ee20cd711082 --- /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 00000000000000..5e71180a5123c5 --- /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 00000000000000..47611f53085b85 --- /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 00000000000000..0352258e3c5cb1 --- /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 00000000000000..c2f0b752c5ddc3 --- /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 00000000000000..fb432ef52cd36a --- /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 00000000000000..31de405f7c8ce1 --- /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 00000000000000..ea80e50bb08667 --- /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 00000000000000..4a135c35584196 --- /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/launchd.md b/pages.nl/osx/launchd.md new file mode 100644 index 00000000000000..261a5180e7aac5 --- /dev/null +++ b/pages.nl/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> Dit commando is een alias van `launchctl`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr launchctl` diff --git a/pages.nl/sunos/devfsadm.md b/pages.nl/sunos/devfsadm.md new file mode 100644 index 00000000000000..6911a790b64dd4 --- /dev/null +++ b/pages.nl/sunos/devfsadm.md @@ -0,0 +1,16 @@ +# devfsadm + +> Administratie commando voor `/dev`. Beheert de `/dev` namespace. +> Meer informatie: . + +- Scannen voor nieuwe schijven: + +`devfsadm -c disk` + +- Opkuisen van overblijvende /dev links, en detectie van nieuwe toestellen: + +`devfsadm -C -v` + +- Dry-run - output van wat er zou veranderen, zonder deze door te voeren: + +`devfsadm -C -v -n` diff --git a/pages.nl/sunos/dmesg.md b/pages.nl/sunos/dmesg.md new file mode 100644 index 00000000000000..fca3d60f20f112 --- /dev/null +++ b/pages.nl/sunos/dmesg.md @@ -0,0 +1,16 @@ +# dmesg + +> Schrijft de kernel berichten naar de standaard output. +> Meer informatie: . + +- Toont kernel berichten: + +`dmesg` + +- Toont hoeveel fysiek geheugen beschikbaar is op het systeem: + +`dmesg | grep -i memory` + +- Toont kernel berichten per pagina: + +`dmesg | less` diff --git a/pages.nl/sunos/prctl.md b/pages.nl/sunos/prctl.md new file mode 100644 index 00000000000000..202c5ee2fec5c9 --- /dev/null +++ b/pages.nl/sunos/prctl.md @@ -0,0 +1,16 @@ +# prctl + +> Lees of configureer de Get or set the resource controls of running processes, tasks, and projects. +> Meer informatie: . + +- Uitlezen van de process limits en rechten: + +`prctl {{PID}}` + +- Uitlezen van de process limits en rechten in een geformatteerde layout: + +`prctl -P {{PID}}` + +- Uitlezen van het max file descripter van een lopend proces: + +`prctl -n process.max-file-descriptor {{PID}}` diff --git a/pages.nl/sunos/prstat.md b/pages.nl/sunos/prstat.md new file mode 100644 index 00000000000000..8fe1bdbca61d75 --- /dev/null +++ b/pages.nl/sunos/prstat.md @@ -0,0 +1,24 @@ +# prstat + +> Rapportering van de statistieken van actieve processen. +> Meer informatie: . + +- Bekijken alle processen en rapporteer de statieken gestoord op basis van CPU gebruik: + +`prstat` + +- Bekijken alle processen en rapporteer de statieken gestoord op basis van geheugen gebruik: + +`prstat -s rss` + +- Bekijk het totaal gebruik voor elke gebruiker: + +`prstat -t` + +- Bekijk de microstate process accounting informatie: + +`prstat -m` + +- Print de 5 meest CPU intensieve processen elke seconde: + +`prstat -c -n 5 -s cpu 1` diff --git a/pages.nl/sunos/snoop.md b/pages.nl/sunos/snoop.md new file mode 100644 index 00000000000000..ba9d6c796cdc38 --- /dev/null +++ b/pages.nl/sunos/snoop.md @@ -0,0 +1,25 @@ +# snoop + +> Network packet sniffer. +> SunOS equivalent van tcpdump. +> Meer informatie: . + +- Capteer de pakketten van een specifieke netwerk interface: + +`snoop -d {{e1000g0}}` + +- Slaag de pakketten op in een bestand, in plaats van ze weer te geven: + +`snoop -o {{bestandsnaam}}` + +- Toon de verboze protocal layer samenvatting van de pakketten in een bestand: + +`snoop -V -i {{bestandsnaam}}` + +- Capteren van netwerk pakketten die van een bepaalde host komen en naar een gegeven poort gaan: + +`snoop to port {{poort}} from host {{hostnaam}}` + +- Capteren en weergave van een hex-dump van network pakketten die uitgewisseld zijn tussen twee IP addressen: + +`snoop -x0 -p4 {{ip_adres_1}} {{ip_adres_2}}` diff --git a/pages.nl/sunos/svcadm.md b/pages.nl/sunos/svcadm.md new file mode 100644 index 00000000000000..2d5d899a686e76 --- /dev/null +++ b/pages.nl/sunos/svcadm.md @@ -0,0 +1,24 @@ +# svcadm + +> Manipuleer service instanties. +> Meer informatie: . + +- Inschakelen van een service in de service database: + +`svcadm enable {{service_name}}` + +- Uitschakelen van een service in de service database: + +`svcadm disable {{service_name}}` + +- Herstarten van een draaiende service: + +`svcadm restart {{service_name}}` + +- Refresh de configuratie van een service: + +`svcadm refresh {{service_name}}` + +- Haal een service uit maintenance state, en schakel deze in: + +`svcadm clear {{service_name}}` diff --git a/pages.nl/sunos/svccfg.md b/pages.nl/sunos/svccfg.md new file mode 100644 index 00000000000000..dfff66c0a72bd3 --- /dev/null +++ b/pages.nl/sunos/svccfg.md @@ -0,0 +1,16 @@ +# svccfg + +> Importeer, exporteer, en wijzig service configurations. +> Meer informatie: . + +- Validatie van een configuratie bestand: + +`svccfg validate {{smf.xml}}` + +- Exporteer de configuratie van een service naar een bestand: + +`svccfg export {{servicename}} > {{smf.xml}}` + +- Update de service configuratie aan de hand van een bestand: + +`svccfg import {{smf.xml}}` diff --git a/pages.nl/sunos/svcs.md b/pages.nl/sunos/svcs.md new file mode 100644 index 00000000000000..9fbee2ad16ae33 --- /dev/null +++ b/pages.nl/sunos/svcs.md @@ -0,0 +1,24 @@ +# svcs + +> Geef informatie over actieve services. +> Meer informatie: . + +- Oplijsting van alle actieve services: + +`svcs` + +- Oplijsting van alle inactieve services: + +`svcs -vx` + +- Geef informatie over een specifieke service: + +`svcs apache` + +- Toon de locatie van de log file van een service: + +`svcs -L apache` + +- Toon de laatste lijnen van een service log file: + +`tail $(svcs -L apache)` diff --git a/pages.nl/sunos/truss.md b/pages.nl/sunos/truss.md new file mode 100644 index 00000000000000..c84f2fa5eb271b --- /dev/null +++ b/pages.nl/sunos/truss.md @@ -0,0 +1,25 @@ +# truss + +> Troubleshooting tool voor het traceren van system calls. +> SunOS equivalent van strace. +> Meer informatie: . + +- Start het traceren van een programma door het uit te voeren, en de tracering van alle child processes: + +`truss -f {{program}}` + +- Start het traceren van een specifiek proces aan de hand van het PID: + +`truss -p {{pid}}` + +- Start het traceren van een programma door het uit te voeren, en toont alle argumenent en omgevingsinstellingen: + +`truss -a -e {{program}}` + +- Telt tijd, oproepen, en fouten voor elke systeem call en geeft een oplijsting bij de beindiging van de applicatie: + +`truss -c -p {{pid}}` + +- Traceert een process filter output via system call: + +`truss -p {{pid}} -t {{system_call_name}}` diff --git a/pages.nl/windows/cd.md b/pages.nl/windows/cd.md index 4e5e5eabb171f2..378eabcf18d5b0 100644 --- a/pages.nl/windows/cd.md +++ b/pages.nl/windows/cd.md @@ -1,7 +1,7 @@ # cd > Geeft de naam van de huidige werkmap weer of wijzigt deze. -> Meer informatie: . +> Meer informatie: . - Ga naar een directory in dezelfde drive: diff --git a/pages.nl/windows/chrome.md b/pages.nl/windows/chrome.md new file mode 100644 index 00000000000000..8cbebd82b3773a --- /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/cinst.md b/pages.nl/windows/cinst.md new file mode 100644 index 00000000000000..00521de3ac7b8e --- /dev/null +++ b/pages.nl/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Dit commando is een alias van `choco install`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr choco install` diff --git a/pages.nl/windows/clist.md b/pages.nl/windows/clist.md new file mode 100644 index 00000000000000..0fea46eb491295 --- /dev/null +++ b/pages.nl/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Dit commando is een alias van `choco list`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr choco list` diff --git a/pages.nl/windows/cpush.md b/pages.nl/windows/cpush.md new file mode 100644 index 00000000000000..7fb5822f451820 --- /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/cuninst.md b/pages.nl/windows/cuninst.md new file mode 100644 index 00000000000000..fc4d5f5e8965d3 --- /dev/null +++ b/pages.nl/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Dit commando is een alias van `choco uninstall`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr choco uninstall` diff --git a/pages.nl/windows/curl.md b/pages.nl/windows/curl.md new file mode 100644 index 00000000000000..f2091206100d8c --- /dev/null +++ b/pages.nl/windows/curl.md @@ -0,0 +1,8 @@ +# curl + +> Dit commando is een alias van `curl -p common`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr curl -p common` diff --git a/pages.nl/windows/dir.md b/pages.nl/windows/dir.md index bcfe0a637e504c..9ca4416c50dbee 100644 --- a/pages.nl/windows/dir.md +++ b/pages.nl/windows/dir.md @@ -1,7 +1,7 @@ # dir > Geeft de inhoud weer van een directory. -> Meer informatie: . +> Meer informatie: . - Geef de inhoud weer van de huidige map: diff --git a/pages.nl/windows/find.md b/pages.nl/windows/find.md index 6ec695a410c9d7..578c36a7107e80 100644 --- a/pages.nl/windows/find.md +++ b/pages.nl/windows/find.md @@ -1,7 +1,7 @@ # find > Vind een gespecificieerde string in een bestand. -> Meer informatie: . +> Meer informatie: . - Vind de lijnen dat een specifieke string bevatten: diff --git a/pages.nl/windows/iwr.md b/pages.nl/windows/iwr.md new file mode 100644 index 00000000000000..4a21189619b9bf --- /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 00000000000000..66d0c8ac577c56 --- /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 00000000000000..ec9c074330e5e0 --- /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 4d3d46da87c056..1b3844ecfcf5ab 100644 --- a/pages.nl/windows/rmdir.md +++ b/pages.nl/windows/rmdir.md @@ -1,16 +1,16 @@ # rmdir > Verwijdert een directory en zijn inhoud. -> Meer informatie: . +> Meer informatie: . - Verwijder een lege directory: `rmdir {{pad/naar/directory}}` -- verwijder een directory en zen inhoud recursief: +- Verwijder een directory en zen inhoud recursief: `rmdir {{pad/naar/directory}} /s` -- verwijder een directory en zen inhoud recursief zonder te vragen: +- Verwijder een directory en zen inhoud recursief zonder te vragen: `rmdir {{pad/naar/directory}} /s /q` diff --git a/pages.nl/windows/shutdown.md b/pages.nl/windows/shutdown.md index 864e3211b8839a..0798cb3064130f 100644 --- a/pages.nl/windows/shutdown.md +++ b/pages.nl/windows/shutdown.md @@ -1,7 +1,7 @@ # shutdown > Een tool om een machine af te sluiten, her op te starten of af te melden. -> Meer informatie: . +> Meer informatie: . - Sluit de huidige machine af: diff --git a/pages.nl/windows/sls.md b/pages.nl/windows/sls.md new file mode 100644 index 00000000000000..6e3d8955b528de --- /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 00000000000000..76c8661542cc99 --- /dev/null +++ b/pages.nl/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Dit commando is een alias van `wget -p common`. +> Meer informatie: . + +- Bekijk de documentatie van het originele commando: + +`tldr wget -p common` diff --git a/pages.no/common/ab.md b/pages.no/common/ab.md new file mode 100644 index 00000000000000..d22051929589ab --- /dev/null +++ b/pages.no/common/ab.md @@ -0,0 +1,24 @@ +# ab + +> Apache HTTP server referansemåling verktøy. +> Mer informasjon: . + +- Utfør 100 HTTP GET-forespørsler til en gitt URL: + +`ab -n {{100}} {{url}}` + +- Utfør 100 HTTP GET-forespørsler, i samtidige grupper på 10, til en URL: + +`ab -n {{100}} -c {{10}} {{url}}` + +- Utfør 100 HTTP POST-forespørsler til en URL, med å bruke en JSON-nyttelast fra en fil: + +`ab -n {{100}} -T {{application/json}} -p {{vei/til/fil.json}} {{url}}` + +- Bruk HTTP [K]eep Alive, dvs. utfør flere forespørsler i én HTTP-økt: + +`ab -k {{url}}` + +- Angi maksimalt antall sekunder å bruke på referansemåling: + +`ab -t {{60}} {{url}}` diff --git a/pages.no/common/abduco.md b/pages.no/common/abduco.md new file mode 100644 index 00000000000000..a96edd73296d06 --- /dev/null +++ b/pages.no/common/abduco.md @@ -0,0 +1,24 @@ +# abduco + +> Terminal økt behandler. +> Mer informasjon: . + +- List opp økter: + +`abduco` + +- Legg ved en økt, opprett den hvis den ikke eksisterer: + +`abduco -A {{navn}} {{bash}}` + +- Legg ved en økt med `dvtm`, opprett den hvis den ikke eksisterer: + +`abduco -A {{navn}}` + +- Koble fra en økt: + +`Ctrl + \` + +- Legg ved en økt i skrivebeskyttet modus: + +`abduco -Ar {{navn}}` diff --git a/pages.no/common/ack.md b/pages.no/common/ack.md new file mode 100644 index 00000000000000..a62573dea717d5 --- /dev/null +++ b/pages.no/common/ack.md @@ -0,0 +1,37 @@ +# ack + +> Et søkeverktøy som grep, optimalisert for utviklere. +> Se også: `rg`, som er mye raskere. +> Mer informasjon: . + +- Søk etter filer som inneholder en streng eller regulært uttrykk i gjeldende katalog rekursivt: + +`ack "{{søkemønster}}"` + +- Søk etter et mønster som ikke skiller mellom store og små bokstaver: + +`ack --ignore-case "{{søkemønster}}"` + +- Søk etter linjer som samsvarer med et mønster, skriv ut bare den samsvarende teksten og ikke resten av linjen: + +`ack -o "{{søkemønster}}"` + +- Begrens søket til filer av en bestemt type: + +`ack --type={{ruby}} "{{søkemønster}}"` + +- Ikke søk i filer av en bestemt type: + +`ack --type=no{{ruby}} "{{søkemønster}}"` + +- Tell totalt antall treff funnet: + +`ack --count --no-filename "{{søkemønster}}"` + +- Skriv ut filnavnene og antall treff kun for hver fil: + +`ack --count --files-with-matches "{{søkemønster}}"` + +- List opp alle verdiene som kan brukes med `--type`: + +`ack --help-types` diff --git a/pages.no/common/bg.md b/pages.no/common/bg.md new file mode 100644 index 00000000000000..00a1bcb04ca150 --- /dev/null +++ b/pages.no/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> Gjenopptar jobber som er suspendert (f.eks. ved hjelp av `Ctrl + Z`), og holder dem i gang i bakgrunnen. +> Mer informasjon: . + +- Gjenoppta den sist suspenderte jobben og kjør den i bakgrunnen: + +`bg` + +- Gjenoppta en spesifikk jobb (bruk `jobs -l` for å finne riktig ID) og kjør den i bakgrunnen: + +`bg %{{jobb_id}}` diff --git a/pages.no/common/bundler.md b/pages.no/common/bundler.md new file mode 100644 index 00000000000000..b4cf57883834f7 --- /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/cat.md b/pages.no/common/cat.md new file mode 100644 index 00000000000000..8c3568cea5d764 --- /dev/null +++ b/pages.no/common/cat.md @@ -0,0 +1,24 @@ +# cat + +> Skriv ut og sammenføy filer. +> Mer informasjon: . + +- Skriv ut innholdet i en fil til standard utgang: + +`cat {{fil}}` + +- Sammenføy flere filer til en målfil: + +`cat {{fil1}} {{fil2}} > {{målfil}}` + +- Legg til flere filer til målfilen: + +`cat {{fil1}} {{fil2}} >> {{målfil}}` + +- Nummerer alle utgangslinjer: + +`cat -n {{fil}}` + +- Vis tegn som ikke kan skrives ut og mellomrom (med `M-` prefiks hvis det ikke er ASCII-tegn): + +`cat -v -t -e {{fil}}` diff --git a/pages.no/common/clamav.md b/pages.no/common/clamav.md new file mode 100644 index 00000000000000..e3723947bd5dad --- /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/clang-cpp.md b/pages.no/common/clang-cpp.md new file mode 100644 index 00000000000000..0d14e6e6ecc127 --- /dev/null +++ b/pages.no/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Denne kommandoen er et alias for `clang++`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr clang++` diff --git a/pages.no/common/clojure.md b/pages.no/common/clojure.md new file mode 100644 index 00000000000000..3e9238b68a582d --- /dev/null +++ b/pages.no/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Denne kommandoen er et alias for `clj`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr clj` diff --git a/pages.no/common/cola.md b/pages.no/common/cola.md new file mode 100644 index 00000000000000..1a68e27f31288d --- /dev/null +++ b/pages.no/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Denne kommandoen er et alias for `git-cola`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr git-cola` diff --git a/pages.no/common/cron.md b/pages.no/common/cron.md new file mode 100644 index 00000000000000..70f568c436c315 --- /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/env.md b/pages.no/common/env.md new file mode 100644 index 00000000000000..f706272e6bcf06 --- /dev/null +++ b/pages.no/common/env.md @@ -0,0 +1,28 @@ +# env + +> Vis miljøet eller kjør et program i et modifisert miljø. +> Mer informasjon: . + +- Vis miljøet: + +`env` + +- Kjør et program. Ofte brukt i skript etter shebang (#!) for å slå opp stien til programmet: + +`env {{program}}` + +- Slett miljøet og kjør et program: + +`env -i {{program}}` + +- Fjern variabel fra miljøet og kjør et program: + +`env -u {{variabel}} {{program}}` + +- Angi en variabel og kjør et program: + +`env {{variabel}}={{verdi}} {{program}}` + +- Angi flere variabler og kjør et program: + +`env {{variabel1}}={{verdi}} {{variabel2}}={{verdi}} {{variabel3}}={{verdi}} {{program}}` diff --git a/pages.no/common/fossil-ci.md b/pages.no/common/fossil-ci.md new file mode 100644 index 00000000000000..ab5de66cd71d36 --- /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 00000000000000..6a4da1245401f8 --- /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 00000000000000..4f94bd836c81ea --- /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 00000000000000..495e437f96d6eb --- /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 00000000000000..e5fd2a6202bb09 --- /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 00000000000000..6794a414de6f1d --- /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 00000000000000..91c177110c0b76 --- /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 00000000000000..f02b1c7c806e70 --- /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 00000000000000..a840460af9901d --- /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/lb.md b/pages.no/common/lb.md new file mode 100644 index 00000000000000..7e6b85d9fe2360 --- /dev/null +++ b/pages.no/common/lb.md @@ -0,0 +1,29 @@ +# lb + +> Et verktøy for å administrere en blogg i den gjeldende katalogen. +> Utkast og innlegg velges interaktivt når man kjører kommandoene. +> Mer informasjon: . + +- Lag et nytt utkast: + +`lb new` + +- Rediger et utkast: + +`lb edit` + +- Slett et utkast: + +`lb trash` + +- Publiser et utkast: + +`lb publish` + +- Slett et publisert innlegg: + +`lb delete` + +- Avpubliser et publisert innlegg for å redigere det som et utkast igjen: + +`lb revise` diff --git a/pages.no/common/llvm-ar.md b/pages.no/common/llvm-ar.md new file mode 100644 index 00000000000000..78a27d04c0ba03 --- /dev/null +++ b/pages.no/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Denne kommandoen er et alias for `ar`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr ar` diff --git a/pages.no/common/llvm-g++.md b/pages.no/common/llvm-g++.md new file mode 100644 index 00000000000000..f37fbe64249699 --- /dev/null +++ b/pages.no/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Denne kommandoen er et alias for `clang++`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr clang++` diff --git a/pages.no/common/llvm-gcc.md b/pages.no/common/llvm-gcc.md new file mode 100644 index 00000000000000..d588af50c89049 --- /dev/null +++ b/pages.no/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Denne kommandoen er et alias for `clang`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr clang` diff --git a/pages.no/common/llvm-nm.md b/pages.no/common/llvm-nm.md new file mode 100644 index 00000000000000..f1fa713125b521 --- /dev/null +++ b/pages.no/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Denne kommandoen er et alias for `nm`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr nm` diff --git a/pages.no/common/llvm-objdump.md b/pages.no/common/llvm-objdump.md new file mode 100644 index 00000000000000..09c487f1187c2f --- /dev/null +++ b/pages.no/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Denne kommandoen er et alias for `objdump`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr objdump` diff --git a/pages.no/common/llvm-strings.md b/pages.no/common/llvm-strings.md new file mode 100644 index 00000000000000..b76c96b3878f45 --- /dev/null +++ b/pages.no/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Denne kommandoen er et alias for `strings`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr strings` diff --git a/pages.no/common/lzcat.md b/pages.no/common/lzcat.md new file mode 100644 index 00000000000000..7056f5dc3b7532 --- /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 00000000000000..3357295c8f8cf8 --- /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/mscore.md b/pages.no/common/mscore.md new file mode 100644 index 00000000000000..625bb616ac5465 --- /dev/null +++ b/pages.no/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Denne kommandoen er et alias for `musescore`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr musescore` diff --git a/pages.no/common/nm-classic.md b/pages.no/common/nm-classic.md new file mode 100644 index 00000000000000..54933c65b0399c --- /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 00000000000000..b5f57accdc7c22 --- /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/pio-init.md b/pages.no/common/pio-init.md new file mode 100644 index 00000000000000..843222fc7d09b1 --- /dev/null +++ b/pages.no/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Denne kommandoen er et alias for `pio project`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr pio project` diff --git a/pages.no/common/piodebuggdb.md b/pages.no/common/piodebuggdb.md new file mode 100644 index 00000000000000..f99d67f3e81e71 --- /dev/null +++ b/pages.no/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Denne kommandoen er et alias for `pio debug`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr pio debug` diff --git a/pages.no/common/platformio.md b/pages.no/common/platformio.md new file mode 100644 index 00000000000000..feec0b76ba9834 --- /dev/null +++ b/pages.no/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Denne kommandoen er et alias for `pio`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr pio` diff --git a/pages.no/common/ptpython3.md b/pages.no/common/ptpython3.md new file mode 100644 index 00000000000000..7f266c2a319be5 --- /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 00000000000000..abc9963c16b42e --- /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/r2.md b/pages.no/common/r2.md new file mode 100644 index 00000000000000..b9a39d72acb8dd --- /dev/null +++ b/pages.no/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Denne kommandoen er et alias for `radare2`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr radare2` diff --git a/pages.no/common/rcat.md b/pages.no/common/rcat.md new file mode 100644 index 00000000000000..1ba1a54386a267 --- /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 00000000000000..520aef0143ab15 --- /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/time.md b/pages.no/common/time.md index ee60cff87a2957..344e1b56928335 100644 --- a/pages.no/common/time.md +++ b/pages.no/common/time.md @@ -1,6 +1,7 @@ # time > See hvor lang en kommand tar. +> Mer informasjon: . - Tid "ls": diff --git a/pages.no/common/tldrl.md b/pages.no/common/tldrl.md new file mode 100644 index 00000000000000..a475eb9e1ba298 --- /dev/null +++ b/pages.no/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Denne kommandoen er et alias for `tldr-lint`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr tldr-lint` diff --git a/pages.no/common/tlmgr-arch.md b/pages.no/common/tlmgr-arch.md new file mode 100644 index 00000000000000..57309d96d7a8d7 --- /dev/null +++ b/pages.no/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Denne kommandoen er et alias for `tlmgr platform`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr tlmgr platform` diff --git a/pages.no/common/todoman.md b/pages.no/common/todoman.md new file mode 100644 index 00000000000000..112d96b06b37bd --- /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 00000000000000..5419a53428241c --- /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/unalias.md b/pages.no/common/unalias.md index 2a7e896245ece6..a7e804b40f9d46 100644 --- a/pages.no/common/unalias.md +++ b/pages.no/common/unalias.md @@ -1,6 +1,7 @@ # unalias > Fjern aliaser. +> Mer informasjon: . - Fjern et alias: diff --git a/pages.no/common/unclutter.md b/pages.no/common/unclutter.md index 29e53af3c3182c..969cc30e95940e 100644 --- a/pages.no/common/unclutter.md +++ b/pages.no/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > Gjemmer musepekeren. +> Mer informasjon: . - Gjem musepekeren etter 3 sekunder: diff --git a/pages.no/common/unlzma.md b/pages.no/common/unlzma.md new file mode 100644 index 00000000000000..0ec6cd473fdbfb --- /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 00000000000000..5e02c0194e3d31 --- /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/vi.md b/pages.no/common/vi.md new file mode 100644 index 00000000000000..069e8d8290fa0a --- /dev/null +++ b/pages.no/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Denne kommandoen er et alias for `vim`. + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr vim` diff --git a/pages.no/common/view.md b/pages.no/common/view.md index d5c1946addc02a..324e7af0c1f0b6 100644 --- a/pages.no/common/view.md +++ b/pages.no/common/view.md @@ -2,6 +2,7 @@ > En skrivebeskytter vesjon av `vim`. > Dette tilsvarer `vim -R`. +> Mer informasjon: . - Åpne en fil: diff --git a/pages.no/common/xzcat.md b/pages.no/common/xzcat.md new file mode 100644 index 00000000000000..e1b06d9de00b84 --- /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/common/zless.md b/pages.no/common/zless.md index df9338577e1729..d4e01f07f6db66 100644 --- a/pages.no/common/zless.md +++ b/pages.no/common/zless.md @@ -1,6 +1,7 @@ # zless > Vis komprimerte filer. +> Mer informasjon: . - Bla gjennom et komprimert arkiv med `less`: diff --git a/pages.no/linux/alternatives.md b/pages.no/linux/alternatives.md new file mode 100644 index 00000000000000..6c63ff2216ad49 --- /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/anbox.md b/pages.no/linux/anbox.md new file mode 100644 index 00000000000000..b8416514b156ef --- /dev/null +++ b/pages.no/linux/anbox.md @@ -0,0 +1,8 @@ +# anbox + +> Kjør Android-applikasjoner på et hvilket som helst GNU/Linux-operativsystem. +> Mer informasjon: . + +- Start Anbox i appbehandleren: + +`anbox launch --package={{org.anbox.appmgr}} --component={{org.anbox.appmgr.AppViewActivity}}` diff --git a/pages.no/linux/batcat.md b/pages.no/linux/batcat.md new file mode 100644 index 00000000000000..054f96e17f71f7 --- /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 00000000000000..cae496ccef6df6 --- /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 00000000000000..d0f72872319950 --- /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 00000000000000..916471c84fdc5e --- /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 00000000000000..3a7b5ccd54b52c --- /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 00000000000000..e851aa01599154 --- /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/ncal.md b/pages.no/linux/ncal.md new file mode 100644 index 00000000000000..7adb10a67d12fd --- /dev/null +++ b/pages.no/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Denne kommandoen er et alias for `cal`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr cal` diff --git a/pages.no/linux/ubuntu-bug.md b/pages.no/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..9e0ff006accfff --- /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 00000000000000..444ec5017f2b65 --- /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 00000000000000..e7abd90aff72af --- /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 00000000000000..03ded8847c871c --- /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 00000000000000..492a84a6c69b98 --- /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 00000000000000..f784f2005b789b --- /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 00000000000000..d53385f4ef8777 --- /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 00000000000000..b2ea9c11ca629d --- /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 00000000000000..29d8ed24cd41b6 --- /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 00000000000000..01552792e0315c --- /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 00000000000000..5430bd7b18ff87 --- /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 00000000000000..6b6685f18270e1 --- /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 00000000000000..b3924a2448078c --- /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 00000000000000..038a51c048f406 --- /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 00000000000000..a9750cc8cad5c7 --- /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 00000000000000..460c9cc331bc1c --- /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 00000000000000..bfe7f823baccde --- /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 00000000000000..f5bfb2f140b770 --- /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 00000000000000..b84ab237bc921c --- /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 00000000000000..c1ce15dbf2955c --- /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 00000000000000..59d5f41a3fa724 --- /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 00000000000000..29cbc79709723a --- /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 00000000000000..7ac24dc37747ef --- /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 00000000000000..a19afff9863bb3 --- /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 00000000000000..e85029f814669e --- /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 00000000000000..0fbc3db7692906 --- /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 00000000000000..01e555f49e818d --- /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 00000000000000..14019aee122dcf --- /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 00000000000000..e93b517467bb74 --- /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 00000000000000..0901b697048dc6 --- /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 00000000000000..9792fa6491e362 --- /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 00000000000000..e366a470e18259 --- /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 00000000000000..3b257c3f8447e1 --- /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 00000000000000..441a6ea5c493ee --- /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 00000000000000..aba04fdf142d34 --- /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 00000000000000..c8a690dcd45d5d --- /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 00000000000000..1483a376979d37 --- /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 00000000000000..ac4d808bf6299d --- /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 00000000000000..aad6aa7939cd3b --- /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 00000000000000..1695438176ee21 --- /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 00000000000000..496b50fc0f22ae --- /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 00000000000000..cc6a5fec492352 --- /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 00000000000000..c58d6ca7728cd8 --- /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 00000000000000..e9ce132d3a2514 --- /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 00000000000000..da5c9d4271d3f0 --- /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 00000000000000..7e2e505c557c8c --- /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 00000000000000..37c74bbd28098e --- /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 00000000000000..f212d3d81581ac --- /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 00000000000000..cc0d6f40db28df --- /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 00000000000000..dbfed7d85bd300 --- /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 00000000000000..b21ef20faf118a --- /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 00000000000000..912beebdc23cda --- /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 00000000000000..42d3eb08025214 --- /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 00000000000000..89bc3195fb3480 --- /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 00000000000000..a5039466a68431 --- /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 00000000000000..321eac073c21ec --- /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 00000000000000..de3245fd707392 --- /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 00000000000000..c25e90a4da7737 --- /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 00000000000000..4353049d196202 --- /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 00000000000000..7244f8b7daea99 --- /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 00000000000000..a06efbba1fc065 --- /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 00000000000000..3fdcfa779223c9 --- /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 00000000000000..3f825c394eea1e --- /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 00000000000000..c3622ba4cfdc06 --- /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 00000000000000..d917d4fd4d1708 --- /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 00000000000000..741724ec85fb21 --- /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 00000000000000..a893263ce9ed9e --- /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 00000000000000..a664b28b903e2c --- /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 00000000000000..05796be526653f --- /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 00000000000000..9c77445585827a --- /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 00000000000000..7149940b80ee5d --- /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 00000000000000..5f9d53dc9e8868 --- /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 00000000000000..7897c2b35cf05a --- /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 00000000000000..f2f5e12f339d1f --- /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 00000000000000..41a8b98bf77a9e --- /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 00000000000000..2ee1e3b382f6cd --- /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 00000000000000..562a7471b2e310 --- /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 00000000000000..8400d8f98bdf30 --- /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 00000000000000..ae5bb3903a4b0b --- /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 00000000000000..09211e0d3e5fc9 --- /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 00000000000000..1eb64d90ce6a7b --- /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 00000000000000..e4c4aa15171100 --- /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 00000000000000..a24de55aeec58a --- /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 00000000000000..6cf5e22112f13e --- /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 00000000000000..582464541963b6 --- /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 00000000000000..7b5334be118756 --- /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 00000000000000..004a663a0f7fec --- /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 00000000000000..80975d6cb485d9 --- /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 00000000000000..bac1da267fbf37 --- /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 00000000000000..d7b19417d4e4bc --- /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 00000000000000..a247481102b066 --- /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 00000000000000..270fdbfab24584 --- /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 00000000000000..48d412aee25855 --- /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 00000000000000..ab54db9821440f --- /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 00000000000000..c0f3fe938da66b --- /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 00000000000000..5058ecf0d9324e --- /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 00000000000000..770d0d7e10b7a8 --- /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 00000000000000..50e7b48f51e1c6 --- /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 00000000000000..46440c73ed7566 --- /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 00000000000000..e9694a00a16dda --- /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 00000000000000..d9e6d387e38ec4 --- /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 00000000000000..68104e4b73a36e --- /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 00000000000000..238958a771be87 --- /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 00000000000000..b09181dd777c2d --- /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 00000000000000..0e703469d4e04c --- /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 00000000000000..39bdb035760b45 --- /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 00000000000000..83a0802f4dae3b --- /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 00000000000000..c8712a4cef54d4 --- /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 00000000000000..04f094de021dfd --- /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 00000000000000..be3fc23f0ed281 --- /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 00000000000000..f7bce16cb91f1c --- /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 00000000000000..536cc22c3de570 --- /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 00000000000000..e2972196527764 --- /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 00000000000000..2294d06c89d170 --- /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 00000000000000..13dd2b4715e065 --- /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 00000000000000..a822f7d2540f70 --- /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 00000000000000..96b54b19f40db2 --- /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 00000000000000..2f9f5e83cf2b79 --- /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 00000000000000..20084d8a53d162 --- /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 00000000000000..d0d47ab5233bdc --- /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 00000000000000..11f4986610c79a --- /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 00000000000000..446e1a7440a0ea --- /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 00000000000000..3574b1b8947e9b --- /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 00000000000000..6d3f3f026980d2 --- /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 00000000000000..2173277a56fbb8 --- /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 00000000000000..965a0b8d8f10de --- /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 00000000000000..e06b4633433057 --- /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 00000000000000..5a0fc41dbbd939 --- /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 00000000000000..2b63e20c294f00 --- /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 00000000000000..a7513b73a92b07 --- /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 00000000000000..222cfbc2b0d454 --- /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 00000000000000..88a451c577fc39 --- /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 00000000000000..09d52aaf902c14 --- /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 00000000000000..48860a28072d13 --- /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 00000000000000..c23172446e8344 --- /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 00000000000000..fa4ebc59ca9dc7 --- /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 00000000000000..27fd5bcd97fd70 --- /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 00000000000000..34498bff1f55ed --- /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 00000000000000..95f34c279b35d0 --- /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 00000000000000..d9c19d30d38f26 --- /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 00000000000000..3926dc8e1313ae --- /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 00000000000000..534b308cf69fb5 --- /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 00000000000000..8d35c25f40926c --- /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/cinst.md b/pages.no/windows/cinst.md new file mode 100644 index 00000000000000..ba1dc3d621da16 --- /dev/null +++ b/pages.no/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Denne kommandoen er et alias for `choco install`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr choco install` diff --git a/pages.no/windows/clist.md b/pages.no/windows/clist.md new file mode 100644 index 00000000000000..d0d1eaede701cf --- /dev/null +++ b/pages.no/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Denne kommandoen er et alias for `choco list`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr choco list` diff --git a/pages.no/windows/cpush.md b/pages.no/windows/cpush.md new file mode 100644 index 00000000000000..c29129c3b01582 --- /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/cuninst.md b/pages.no/windows/cuninst.md new file mode 100644 index 00000000000000..78196ccbaeb900 --- /dev/null +++ b/pages.no/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Denne kommandoen er et alias for `choco uninstall`. +> Mer informasjon: . + +- Vis dokumentasjonen for den opprinnelige kommandoen: + +`tldr choco uninstall` diff --git a/pages.no/windows/curl.md b/pages.no/windows/curl.md new file mode 100644 index 00000000000000..525dca8245bdd1 --- /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 00000000000000..c183a13d6b53ed --- /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 00000000000000..d91738ee79077d --- /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 00000000000000..3d6b4216d039ad --- /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 00000000000000..42e12aac622daf --- /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 00000000000000..0e5c0098b37ec1 --- /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 00000000000000..1092e9a1717a56 --- /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/am.md b/pages.pl/android/am.md new file mode 100644 index 00000000000000..6169c0a5458eea --- /dev/null +++ b/pages.pl/android/am.md @@ -0,0 +1,20 @@ +# am + +> Menedżer aktywności Android. +> Więcej informacji: . + +- Rozpocznij konkretną aktywność: + +`am start -n {{com.android.settings/.Settings}}` + +- Rozpocznij aktywność i przekaż do niej dane: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Rozpocznij aktywność dopasowaną do konkretnej akcji i kategorii: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Konwertuj zamiar w URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.pl/android/bugreport.md b/pages.pl/android/bugreport.md new file mode 100644 index 00000000000000..89e9d1ca574a46 --- /dev/null +++ b/pages.pl/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Wyświetl raport o błędach Android. +> Ta komenda może być używana tylko poprzez `adb shell`. +> Więcej informacji: . + +- Wyświetl pełny raport błędów dla urządzenia Android: + +`bugreport` diff --git a/pages.pl/android/bugreportz.md b/pages.pl/android/bugreportz.md new file mode 100644 index 00000000000000..007390d824f5a2 --- /dev/null +++ b/pages.pl/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Wygeneruj skompresowany raport błędów Android. +> Ta komenda może być używana tylko poprzez `adb shell`. +> Więcej informacji: . + +- Wygeneruj pełny i skompresowany raport błędów dla urządzenia Android: + +`bugreportz` + +- Wyświetl postęp w wykonywaniu operacji `bugreportz`: + +`bugreportz -p` + +- Wyświetl wersję `bugreportz`: + +`bugreportz -v` + +- Wyświetl pomoc: + +`bugreportz -h` diff --git a/pages.pl/android/cmd.md b/pages.pl/android/cmd.md new file mode 100644 index 00000000000000..1c565e6fa41377 --- /dev/null +++ b/pages.pl/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Menedżer usług Android. +> Więcej informacji: . + +- Pokaż wszystkie działające usługi: + +`cmd -l` + +- Uruchom konkretną usługę: + +`cmd {{alarm}}` + +- Uruchom usługę z argumentami: + +`cmd {{wibrator}} {{wibruj 300}}` diff --git a/pages.pl/android/dalvikvm.md b/pages.pl/android/dalvikvm.md new file mode 100644 index 00000000000000..3d95fecedbf106 --- /dev/null +++ b/pages.pl/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Wirtualna maszyna Android Java. +> Więcej informacji: . + +- Uruchom program Java: + +`dalvikvm -classpath {{ścieżka/do/pliku.jar}} {{nazwaklasy}}` diff --git a/pages.pl/android/dumpsys.md b/pages.pl/android/dumpsys.md new file mode 100644 index 00000000000000..c7c1c5b1ebe61b --- /dev/null +++ b/pages.pl/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Dostarczanie informacji o usługach systemu Android. +> Ta komenda może być używana tylko poprzez `adb shell`. +> Więcej informacji: . + +- Uzyskaj dane diagnostyczne dla wszystkich usług systemowych: + +`dumpsys` + +- Uzyskaj dane diagnostyczne dla określonej usługi systemowej: + +`dumpsys {{usługa}}` + +- Lista wszystkich usług, o których `dumpsys` może dać informacje: + +`dumpsys -l` + +- Lista argumentów specyficznych dla usługi: + +`dumpsys {{usługa}} -h` + +- Wykluczenie określonej usługi z wyjścia diagnostycznego: + +`dumpsys --skip {{usługa}}` + +- Określenie czasu oczekiwania w sekundach (domyślnie 10s): + +`dumpsys -t {{sekundy}}` diff --git a/pages.pl/android/getprop.md b/pages.pl/android/getprop.md new file mode 100644 index 00000000000000..77f675237aad6e --- /dev/null +++ b/pages.pl/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Pokaż informacje o właściwościach systemu Android. +> Więcej informacji: . + +- Wyświetl informacje o właściwościach systemu Android: + +`getprop` + +- Wyświetl informację o konkretnej właściwości: + +`getprop {{prop}}` + +- Wyświetl wersję SDK API: + +`getprop {{ro.build.version.sdk}}` + +- Wyświetl wersję Android: + +`getprop {{ro.build.version.release}}` + +- Wyświetl model urządzenia Android: + +`getprop {{ro.vendor.product.model}}` + +- Wyświetl status odblokowania OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Wyświetl adres MAC karty Wi-Fi systemu Android: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.pl/android/input.md b/pages.pl/android/input.md new file mode 100644 index 00000000000000..0f7417148ab417 --- /dev/null +++ b/pages.pl/android/input.md @@ -0,0 +1,25 @@ +# input + +> Wysyłanie kodów zdarzeń lub gestów na ekranie dotykowym do urządzenia Android. +> Ta komenda może być używana tylko poprzez `adb shell`. +> Więcej informacji: . + +- Wyślij kod zdarzenia dla pojedynczego znaku do urządzenia Android: + +`input keyevent {{kod_eventu}}` + +- Wyślij tekst do urządzenia z systemem Android (`%s` reprezentuje spacje): + +`input text "{{tekst}}"` + +- Wyślij pojedyncze stuknięcie do urządzenia Android: + +`input tap {{x_pos}} {{y_pos}}` + +- Wyślij gest machnięcia do urządzenia Android: + +`input swipe {{x_start}} {{y_start}} {{x_koniec}} {{y_koniec}} {{czas_trwania_w_ms}}` + +- Wyślij długie naciśnięcie do urządzenia Android za pomocą gestu machnięcia: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{czas_trwania_w_ms}}` diff --git a/pages.pl/android/logcat.md b/pages.pl/android/logcat.md new file mode 100644 index 00000000000000..a69a78f55e7b10 --- /dev/null +++ b/pages.pl/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Zrzut dziennika komunikatów systemowych. +> Więcej informacji: . + +- Wyświetl logi systemowe: + +`logcat` + +- Zapisz logi systemowe do pliku: + +`logcat -f {{ścieżka/do/pliku}}` + +- Wyświetl linie pasujące do wyrażenia regularnego: + +`logcat --regex {{wyrażenie_regularne}}` diff --git a/pages.pl/android/pkg.md b/pages.pl/android/pkg.md new file mode 100644 index 00000000000000..d51b50053b18cd --- /dev/null +++ b/pages.pl/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Narzędzie do zarządzania pakietami dla Termuxa. +> Więcej informacji: . + +- Zaktualizuj wszystkie zainstalowane pakiety: + +`pkg upgrade` + +- Zainstaluj pakiet: + +`pkg install {{pakiet}}` + +- Odinstaluj pakiet: + +`pkg uninstall {{pakiet}}` + +- Zainstaluj ponownie pakiet: + +`pkg reinstall {{pakiet}}` + +- Wyszukaj pakiet: + +`pkg search {{pakiet}}` diff --git a/pages.pl/android/pm.md b/pages.pl/android/pm.md new file mode 100644 index 00000000000000..676a0ef4ee5a4d --- /dev/null +++ b/pages.pl/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Pokaż informacje o aplikacjach na urządzeniu z systemem Android. +> Więcej informacji: . + +- Listuj wszystkie zainstalowane aplikacje: + +`pm list packages` + +- Listuj wszystkie zainstalowane aplikacje systemowych: + +`pm list packages -s` + +- Listuj wszystkie zainstalowane aplikacje firm trzecich: + +`pm list packages -3` + +- Listuj aplikacje pasujące do określonych słów kluczowych: + +`pm list packages {{słowo_kluczowe}}` + +- Pokaż ścieżkę APK konkretnej aplikacji: + +`pm path {{aplikacja}}` diff --git a/pages.pl/android/settings.md b/pages.pl/android/settings.md new file mode 100644 index 00000000000000..9a248891ec88a7 --- /dev/null +++ b/pages.pl/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Uzyskaj informacje o systemie operacyjnym Android. +> Więcej informacji: . + +- Listuj ustawienia w przestrzeni `global`: + +`settings list {{global}}` + +- Wyświetl wartość określonego ustawienia: + +`settings get {{global}} {{airplane_mode_on}}` + +- Ustaw wartość dla określonego ustawienia: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Delete a specific setting: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.pl/android/wm.md b/pages.pl/android/wm.md new file mode 100644 index 00000000000000..077bd4f4aae31c --- /dev/null +++ b/pages.pl/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Wyświetl informacje o ekranie urządzenia Android. +> Ta komenda może być używana tylko poprzez `adb shell`. +> Więcej informacji: . + +- Wyświetl fizyczny rozmiaru ekranu urządzenia Android: + +`wm {{rozmiar}}` + +- Wyświetl fizyczną gęstość ekranu urządzenia Android: + +`wm {{gęstość}}` diff --git a/pages.pl/common/7z.md b/pages.pl/common/7z.md index d6addad3bb2345..5842b0e4549718 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: @@ -25,7 +25,7 @@ - Archiwizuj przy użyciu określonego typu archiwum: -`7z a -t{{zip|gzip|bzip2|tar}} {{zarchiwizowane.7z}} {{sciezka/do/pliku_lub_katalogu}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{zarchiwizowane.7z}} {{sciezka/do/pliku_lub_katalogu}}` - Wyświetl dostępne typy archiwów: diff --git a/pages.pl/common/7za.md b/pages.pl/common/7za.md index 18b5be85b44f63..55af201e02bcce 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 74c0940916872d..439cb5bbb7e786 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/[.md b/pages.pl/common/[.md new file mode 100644 index 00000000000000..cf63d5efb5501a --- /dev/null +++ b/pages.pl/common/[.md @@ -0,0 +1,25 @@ +# [ + +> Sprawdza typy plików i porównuje wartości. +> Zwraca 0 gdy porównanie zwróciło wartość poprawną, 1 gdy fałszywą. +> Więcej informacji: . + +- Sprawdź czy podana zmienna jest równa łańcuchowi znaków: + +`[ "{{$ZMIENNA}}" == "{{/bin/zsh}}" ]` + +- Sprawdź czy zmienna jest pusta: + +`[ -z "{{$GIT_BRANCH}}" ]` + +- Sprawdź czy plik istnieje: + +`[ -f "{{ścieżka/do/pliku}}" ]` + +- Sprawdź czy katalog nie istnieje: + +`[ ! -d "{{ścieżka/do/katalogu}}" ]` + +- Zapis jeśli porawne-jeśli fałszywe: + +`[ {{warunek}} ] && {{echo "gdy poprawne"}} || {{echo "gdy fałszywe"}}` diff --git a/pages.pl/common/ack.md b/pages.pl/common/ack.md index a37da1da6f5338..4b56ce993fa166 100644 --- a/pages.pl/common/ack.md +++ b/pages.pl/common/ack.md @@ -1,32 +1,37 @@ # ack > Narzędzie wyszukiwania, takie jak grep, zoptymalizowane dla programistów. -> Więcej informacji: . +> Zobacz też: `rg`, który jest znacznie szybszy. +> Więcej informacji: . -- Znajdź pliki zawierające „foo”: +- Znajdź pliki zawierające ciąg znaków lub wyrażenie regularne rekurencyjnie w bieżącym katalogu: -`ack {{foo}}` +`ack "{{wzorzec}}"` -- Znajdź pliki określonego typu: +- Szukaj na podstawie wzorca bez uwzględniania wielkości liter: -`ack --ruby {{foo}}` +`ack --ignore-case "{{wzorzec}}"` -- Policz całkowitą liczbę dopasowań dla terminu „foo”: +- Szukaj linii zawierających wzorzec, wyświetl wyłącznie pasujący tekst bez pozostałej zawartości linii: -`ack -ch {{foo}}` +`ack -o "{{wzorzec}}"` -- Pokaż nazwy plików zawierające „foo” i liczbę dopasowań w każdym pliku: +- Ogranicz wyszukiwanie do plików wyłącznie określonego typu: -`ack -cl {{foo}}` +`ack --type={{ruby}} "{{wzorzec}}"` -- Przeszukaj plik pod kątem określonego ciągu znaków: +- Wyszukaj z pominięciem plików określonego typu: -`ack bar "{{foo bar}}" {{scieżka/do/pliku_lub_katalogu}}` +`ack --type=no{{ruby}} "{{wzorzec}}"` -- Przeszukaj plik pod kątem określonego wzorca regex: +- Policz całkowitą liczbę dopasowań: -`ack bar "{{[bB]ar \d+}}" {{scieżka/do/pliku_lub_katalogu}}` +`ack --count --no-filename "{{wzorzec}}"` -- Wypisz wszystkie prawidłowe typy: +- Pokaż nazwy plików i liczbę dopasowań w każdym z nich: + +`ack --count --files-with-matches "{{wzorzec}}"` + +- Wypisz wszystkie możliwe wartości które mogą być użyte dla `--type`: `ack --help-types` diff --git a/pages.pl/common/arp.md b/pages.pl/common/arp.md index 81e3208950d8c4..52d18220261a3d 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/at.md b/pages.pl/common/at.md index 43f22b7d2e1cd5..6642f00578a569 100644 --- a/pages.pl/common/at.md +++ b/pages.pl/common/at.md @@ -2,7 +2,7 @@ > Wykonuje polecenia o zadanym czasie. > Aby działać poprawnie wymaga działającego serwisu atd (lub atrun). -> Więcej informacji: . +> Więcej informacji: . - Wykonaj za 5 minut polecenie wprowadzone przy użyciu wejścia standardowego (aby zakończyć naciśnij `Ctrl + D`): diff --git a/pages.pl/common/atq.md b/pages.pl/common/atq.md index 9f809bdb35e644..fdfe82406f3004 100644 --- a/pages.pl/common/atq.md +++ b/pages.pl/common/atq.md @@ -1,7 +1,7 @@ # atq > Pokaż oczekujące zadania użytkownika wprowadzone wcześniej przez polecenia `at` lub `batch`. -> Więcej informacji: . +> Więcej informacji: . - Pokaż zaplanowane zadania: diff --git a/pages.pl/common/atrm.md b/pages.pl/common/atrm.md index cd93e23c849136..873870f798685e 100644 --- a/pages.pl/common/atrm.md +++ b/pages.pl/common/atrm.md @@ -1,8 +1,8 @@ # atrm -> Usuwa zadania o zadanych identyfikatorach (numerach) wcześniej zakolejkowane przez `at` lub `batch` +> Usuwa zadania o zadanych identyfikatorach (numerach) wcześniej zakolejkowane przez `at` lub `batch`. > Aby znaleźć numery zadań, użyj `atq`. -> Więcej informacji: . +> Więcej informacji: . - Usuń zadanie numer 10: diff --git a/pages.pl/common/autoflake.md b/pages.pl/common/autoflake.md index d5ed507f08edc3..ac2971b0a0763a 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/aws.md b/pages.pl/common/aws.md index 7832897661356e..2d22c85faaf340 100644 --- a/pages.pl/common/aws.md +++ b/pages.pl/common/aws.md @@ -4,11 +4,11 @@ > Wizard, SSO, Resource Autocompletion, i opcje YAML są tylko v2. > Więcej informacji: . -- Konfiguruj AWS Command Line: +- Konfiguruj AWS Command-line: `aws configure wizard` -- Konfiguruj AWS Command Line używając SSO: +- Konfiguruj AWS Command-line używając SSO: `aws configure sso` diff --git a/pages.pl/common/basename.md b/pages.pl/common/basename.md new file mode 100644 index 00000000000000..be0cd88b5281b9 --- /dev/null +++ b/pages.pl/common/basename.md @@ -0,0 +1,16 @@ +# basename + +> Usuwa wiodące nazwy katalogów ze ścieżki. +> Więcej informacji: . + +- Wyświetl wyłącznie nazwę pliku ze ścieżki: + +`basename {{ścieżka/do/pliku}}` + +- Wyświetl wyłącznie nazwę skrajnie prawego katalogu ze ścieżki: + +`basename {{ścieżka/do/katalogu/}}` + +- Wyświetl wyłącznie nazwę pliku ze ścieżki, z usuniętym przyrostkiem: + +`basename {{ścieżka/do/pliku}} {{przyrostek}}` diff --git a/pages.pl/common/batch.md b/pages.pl/common/batch.md index d82307dd5a0594..aeb36dfc76f36c 100644 --- a/pages.pl/common/batch.md +++ b/pages.pl/common/batch.md @@ -2,7 +2,7 @@ > Wykonaj polecenia, gdy pozwoli na to poziom obciążenia systmu. > Aby działać poprawnie wymaga działającego serwisu atd (lub atrun). -> Więcej informacji: . +> Więcej informacji: . - Wykonaj polecenie wprowadzone przy użyciu wejścia standardowego (aby zakończyć naciśnij `Ctrl + D`): diff --git a/pages.pl/common/bundler.md b/pages.pl/common/bundler.md new file mode 100644 index 00000000000000..2223f1fe933857 --- /dev/null +++ b/pages.pl/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> To polecenie jest aliasem `bundle`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr bundle` diff --git a/pages.pl/common/chown.md b/pages.pl/common/chown.md new file mode 100644 index 00000000000000..80d15176ddfb46 --- /dev/null +++ b/pages.pl/common/chown.md @@ -0,0 +1,24 @@ +# chown + +> Zmienia właściciela i grupę właścicieli dla plików i katalogów. +> Więcej informacji: . + +- Zmień właściciela pliku/katalogu: + +`chown {{użytkownik}} {{ścieżka/do/pliku_lub_katalogu}}` + +- Zmień właściciela i grupę właścicieli pliku/katalogu: + +`chown {{użytkownik}}:{{grupa}} {{ścieżka/do/pliku_lub_katalogu}}` + +- Rekursywnie zmień właściciela katalogu i jego zawartości: + +`chown -R {{użytkownik}} {{ścieżka/do/katalogu}}` + +- Zmień właściciela dowiązania symbolicznego: + +`chown -h {{użytkownik}} {{ścieżka/do/dowiązania_symbolicznego}}` + +- Zmień właściciela pliku/katalogu by był taki sam jak w pliku referencyjnym: + +`chown --reference={{ścieżka/do/pliku_referencyjnego}} {{ścieżka/do/pliku_lub_katalogu}}` diff --git a/pages.pl/common/clamav.md b/pages.pl/common/clamav.md new file mode 100644 index 00000000000000..4b4b079a145638 --- /dev/null +++ b/pages.pl/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> To polecenie jest aliasem `clamdscan`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr clamdscan` diff --git a/pages.pl/common/clang-cpp.md b/pages.pl/common/clang-cpp.md new file mode 100644 index 00000000000000..f2a97b11e3dbf5 --- /dev/null +++ b/pages.pl/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> To polecenie jest aliasem `clang++`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr clang++` diff --git a/pages.pl/common/clojure.md b/pages.pl/common/clojure.md new file mode 100644 index 00000000000000..3803c2caf6fdef --- /dev/null +++ b/pages.pl/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> To polecenie jest aliasem `clj`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr clj` diff --git a/pages.pl/common/cola.md b/pages.pl/common/cola.md new file mode 100644 index 00000000000000..c34fe7b2ec9db7 --- /dev/null +++ b/pages.pl/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> To polecenie jest aliasem `git-cola`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr git-cola` diff --git a/pages.pl/common/cp.md b/pages.pl/common/cp.md new file mode 100644 index 00000000000000..aa2603f09ffa5e --- /dev/null +++ b/pages.pl/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> Kopiuje pliki i katalogi. +> Więcej informacji: . + +- Kopiuj plik do innej lokalizacji: + +`cp {{ścieżka/do/pliku_źródłowego.ext}} {{ścieżka/do/pliku_docelowego.ext}}` + +- Kopiuj plik do innego katalogu, zachowując nazwę pliku: + +`cp {{ścieżka/do/pliku_źródłowego}} {{ścieżka/do/katalogu}}` + +- Kopiuj rekursywnie katalog z zawartością do innej lokalizacji (jeśli docelowa lokalizacja istnieje, katalog jest kopiowany do jej środka): + +`cp -R {{ścieżka/do/katalogu_źródłowego}} {{ścieżka/do/katalogu_docelowego}}` + +- Kopiuj katalog rekursywnie, w trybie opisowym (pokazuje pliki które zostały skopiowane): + +`cp -vR {{ścieżka/do/katalogu_źródłowego}} {{ścieżka/do/katalogu_docelowego}}` + +- Kopiuj pliki tekstowe do innej lokalizacji, w trybie interaktywnym (wyświetla pytanie o potwierdzenie przed nadpisywaniem): + +`cp -i {{*.txt}} {{ścieżka/do/katalogu_docelowego}}` + +- Podążaj za dowiązaniami symbolicznymi przed kopiowaniem: + +`cp -L {{dowiązanie}} {{ścieżka/do/katalogu_docelowego}}` diff --git a/pages.pl/common/cron.md b/pages.pl/common/cron.md new file mode 100644 index 00000000000000..4cd1c2bed258a5 --- /dev/null +++ b/pages.pl/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> To polecenie jest aliasem `crontab`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr crontab` diff --git a/pages.pl/common/diff.md b/pages.pl/common/diff.md index 09e6b31259fb2f..cbdd9d97ad6ed7 100644 --- a/pages.pl/common/diff.md +++ b/pages.pl/common/diff.md @@ -1,6 +1,7 @@ # diff > Porównaj pliki i foldery. +> Więcej informacji: . - Porównaj pliki (lista zmian między `stary_plik` a `nowy_plik`): diff --git a/pages.pl/common/dotnet-build.md b/pages.pl/common/dotnet-build.md new file mode 100644 index 00000000000000..98c690f823c2f3 --- /dev/null +++ b/pages.pl/common/dotnet-build.md @@ -0,0 +1,32 @@ +# dotnet build + +> Buduj aplikacje .NET i ich zależności. +> Więcej informacji: . + +- Kompiluj projekt lub solucje w bieżącym katalogu: + +`dotnet build` + +- Kompiluj w konfiguracji debugowania: + +`dotnet build {{ściezka/do/projektu_lub_solucji}}` + +- Kompiluj w konfiguracji wydania: + +`dotnet build --configuration {{Release}}` + +- Kompiluj bez przywracania zależności: + +`dotnet build --no-restore` + +- Kompiluj z wybranym poziomem szczegółowości logu: + +`dotnet build --verbosity {{quiet|minimal|normal|detailed|diagnostic}}` + +- Kompiluj dla wybranego środowiska uruchomieniowego: + +`dotnet build --runtime {{identyfikator_runtime}}` + +- Kompiluj do wybranego katalogu: + +`dotnet build --output {{ścieżka/do/katalogu}}` diff --git a/pages.pl/common/dotnet-ef.md b/pages.pl/common/dotnet-ef.md new file mode 100644 index 00000000000000..1ebbea1955b309 --- /dev/null +++ b/pages.pl/common/dotnet-ef.md @@ -0,0 +1,36 @@ +# dotnet ef + +> Narzędzia projektowania dla Entity Framework Core. +> Więcej informacji: . + +- Zaaktualizuj bazę danych do wybranej migracji: + +`dotnet ef database update {{migracja}}` + +- Wyczyść bazę danych: + +`dotnet ef database drop` + +- Wyświetl dostępne `DbContext`: + +`dotnet ef dbcontext list` + +- Wygeneruj kod dla `DbContext` oraz typów encji bazy danych: + +`dotnet ef dbcontext scaffold {{connection_string}} {{dostawca}}` + +- Dodaj nową migrację: + +`dotnet ef migrations add {{nazwa}}` + +- Usuń poprzednią migrację, cofa zmiany w kodzie stworzone dla poprzedniej migracji: + +`dotnet ef migrations remove` + +- Wyświetl dostępne migracje: + +`dotnet ef migrations list` + +- Wygeneruj skrypt SQL dla zakresu migracji: + +`dotnet ef migrations script {{początkowa_migracja}} {{końcowa_migracja}}` diff --git a/pages.pl/common/dotnet-publish.md b/pages.pl/common/dotnet-publish.md new file mode 100644 index 00000000000000..a20f10a1612c6b --- /dev/null +++ b/pages.pl/common/dotnet-publish.md @@ -0,0 +1,28 @@ +# dotnet publish + +> Opublikuj aplikację .NET i jej zależności w celu wdrożenia na docelowym systemie. +> Więcej informacji: . + +- Opublikuj projekt w konfiguracji wydania: + +`dotnet publish --configuration Release {{ścieżka/do/projektu_lub_solucji}}` + +- Opublikuj projekt z dołączonym wybranym środowiskiem uruchomieniowym: + +`dotnet publish --self-contained true --runtime {{identyfikator_runtime}} {{ścieżka/do/projektu_lub_solucji}}` + +- Zapakuj aplikację do pojedyńczego pliku uruchomieniowego dla konkretnej platformy: + +`dotnet publish --runtime {{identyfikator_runtime}} -p:PublishSingleFile=true {{ścieżka/do/projektu_lub_solucji}}` + +- Pomiń nieużywane biblioteki aby obniżyć rozmiar wdrażanej aplikacji: + +`dotnet publish --self-contained true --runtime {{identyfikator_runtime}} -p:PublishTrimmed=true {{ścieżka/do/projektu_lub_solucji}}` + +- Kompiluj projekt bez przywracania zależności: + +`dotnet publish --no-restore {{ścieżka/do/projektu_lub_solucji}}` + +- Wybierz katalog docelowy: + +`dotnet publish --output {{ściezka/do/katalogu}} {{ścieżka/do/projektu_lub_solucji}}` diff --git a/pages.pl/common/dotnet-restore.md b/pages.pl/common/dotnet-restore.md new file mode 100644 index 00000000000000..fcebbdcb48ca12 --- /dev/null +++ b/pages.pl/common/dotnet-restore.md @@ -0,0 +1,28 @@ +# dotnet restore + +> Przywracanie zależności i narzędzi dla projektu .NET. +> Więcej informacji: . + +- Przywróć zależności dla projektu lub solucji w bieżącym katalogu: + +`dotnet restore` + +- Przywróć zależności dla projektu lub solucji w wybranym katalogu: + +`dotnet restore {{ścieżka/do/projektu_lub_solucji}}` + +- Przywróć zależnośći pomijając cache zapytań HTTP: + +`dotnet restore --no-cache` + +- Wymuś rozwiązanie wszystkich zależności nawet jeśli poprzednie przywracanie zakończyło się sukcesem: + +`dotnet restore --force` + +- Ignoruj błędy w trakcie przywracania zależności ze źródeł: + +`dotnet restore --ignore-failed-sources` + +- Przywróć zależności z wybranym poziomem szczegółowości logów: + +`dotnet restore --verbosity {{quiet|minimal|normal|detailed|diagnostic}}` diff --git a/pages.pl/common/dotnet-tool.md b/pages.pl/common/dotnet-tool.md new file mode 100644 index 00000000000000..1be477ca0c81f4 --- /dev/null +++ b/pages.pl/common/dotnet-tool.md @@ -0,0 +1,32 @@ +# dotnet tool + +> Zarządzaj narzędziami .NET i szukaj narzędzi opublikowanych w repozytorium NuGet. +> Więcej informacji: . + +- Zainstaluj narzędzie globalne (nie używaj flagi `--global`, by użyć polecenia dla narzędzi lokalnych): + +`dotnet tool install --global {{dotnetsay}}` + +- Zainstaluj narzędzia zdefiniowane w lokalnym manifeście narzędzi: + +`dotnet tool restore` + +- Zaktualizuj wyspecyfikowane narzędzie globalne (nie używaj flagi `--global`, by użyć polecenia dla narzędzi lokalnych): + +`dotnet tool update --global {{nazwa_narzędzia}}` + +- Odinstaluj narzędzie globalne (nie używaj flagi `--global`, by użyć polecenia dla narzędzi lokalnych): + +`dotnet tool uninstall --global {{nazwa_narzędzia}}` + +- Wyświetl zainstalowane narzędzia globalne (nie używaj flagi `--global`, by użyć polecenia dla narzędzi lokalnych): + +`dotnet tool list --global` + +- Szukaj narzędzi w repozytorium NuGet: + +`dotnet tool search {{szukana_fraza}}` + +- Wyświetl pomoc: + +`dotnet tool --help` diff --git a/pages.pl/common/dotnet.md b/pages.pl/common/dotnet.md index d18ac6febbdc16..0a23108a8458cb 100644 --- a/pages.pl/common/dotnet.md +++ b/pages.pl/common/dotnet.md @@ -1,7 +1,7 @@ # dotnet > Wieloplatformowe narzędzia wiersza polecenia .NET dla platformy .NET Core. -> Więcej informacji: . +> Więcej informacji: . - Zainicjuj nowy projekt .NET: diff --git a/pages.pl/common/entr.md b/pages.pl/common/entr.md new file mode 100644 index 00000000000000..2e3d9ad916390e --- /dev/null +++ b/pages.pl/common/entr.md @@ -0,0 +1,20 @@ +# entr + +> Uruchom dowolną komendę, gdy zmieni się plik. +> Więcej informacji: . + +- Przebuduj projekt używając `make`, jeżeli zmiemi się którykolwiek z plików w podkatalogu: + +`{{ag -l}} | entr {{make}}` + +- Jeżeli zmieni się którykowliek z plików źródłowych `.c` w obecnym katalogu, przebuduj i uruchom testy używając `make`: + +`{{ls *.c}} | entr {{'make && make test'}}` + +- Wyślij `SIGTERM` do wszystkich uruchomionych poprzednio podprocesów ruby przed wykonaniem `ruby main.rb`: + +`{{ls *.rb}} | entr -r {{ruby main.rb}}` + +- Uruchom komendę przekazując zmieniony plik (`/_`) jako jej argument: + +`{{ls *.sql}} | entr {{psql -f}} /_` diff --git a/pages.pl/common/fossil-ci.md b/pages.pl/common/fossil-ci.md new file mode 100644 index 00000000000000..5311f065cd58c0 --- /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ę orginalnego 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 00000000000000..84ef509e8c814c --- /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ę orginalnego 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 00000000000000..2bcb782e846399 --- /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ę orginalnego 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 00000000000000..b378d94bcbbc91 --- /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ę orginalnego 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 00000000000000..838849e2637ffe --- /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ę orginalnego 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 00000000000000..1ad18698e1fd23 --- /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ę orginalnego 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 00000000000000..9154d9f27ec862 --- /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ę orginalnego polecenia: + +`tldr chromium` diff --git a/pages.pl/common/http.md b/pages.pl/common/http.md index 55648956cca6e5..057a7bb7f872b6 100644 --- a/pages.pl/common/http.md +++ b/pages.pl/common/http.md @@ -5,11 +5,11 @@ - Pobierz adres URL do pliku: -`http -d {{przyklad.org}}` +`http --download {{przyklad.org}}` - Wyślij dane zakodowane w formularzu: -`http -f {{przyklad.org}} {{nazwa='bob'}} {{zdjecie_profilowe@'bob.png'}}` +`http --form {{przyklad.org}} {{nazwa='bob'}} {{zdjecie_profilowe@'bob.png'}}` - Wyślij obiekt JSON: @@ -25,7 +25,7 @@ - Podaj nazwę użytkownika i hasło do uwierzytelnienia serwera: -`http -a {{nazwauzytkownika:haslo}} {{przyklad.org}}` +`http --auth {{nazwauzytkownika:haslo}} {{przyklad.org}}` - Określ surowe ciało żądania za pośrednictwem stdin: diff --git a/pages.pl/common/hx.md b/pages.pl/common/hx.md new file mode 100644 index 00000000000000..b49ef1966f996f --- /dev/null +++ b/pages.pl/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> To polecenie jest aliasem `helix`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr helix` diff --git a/pages.pl/common/java.md b/pages.pl/common/java.md index a5d78bd227ee21..c0019c6b778b19 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 00000000000000..8c255bcbe7f218 --- /dev/null +++ b/pages.pl/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> To polecenie jest aliasem `kcat`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr kcat` diff --git a/pages.pl/common/llvm-ar.md b/pages.pl/common/llvm-ar.md new file mode 100644 index 00000000000000..c11b398d638f97 --- /dev/null +++ b/pages.pl/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> To polecenie jest aliasem `ar`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr ar` diff --git a/pages.pl/common/llvm-g++.md b/pages.pl/common/llvm-g++.md new file mode 100644 index 00000000000000..62e49350e7bbdb --- /dev/null +++ b/pages.pl/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> To polecenie jest aliasem `clang++`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr clang++` diff --git a/pages.pl/common/llvm-gcc.md b/pages.pl/common/llvm-gcc.md new file mode 100644 index 00000000000000..041d138e61c7de --- /dev/null +++ b/pages.pl/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> To polecenie jest aliasem `clang`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr clang` diff --git a/pages.pl/common/llvm-nm.md b/pages.pl/common/llvm-nm.md new file mode 100644 index 00000000000000..cdb4f797a8100d --- /dev/null +++ b/pages.pl/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> To polecenie jest aliasem `nm`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr nm` diff --git a/pages.pl/common/llvm-objdump.md b/pages.pl/common/llvm-objdump.md new file mode 100644 index 00000000000000..264f3824108962 --- /dev/null +++ b/pages.pl/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> To polecenie jest aliasem `objdump`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr objdump` diff --git a/pages.pl/common/llvm-strings.md b/pages.pl/common/llvm-strings.md new file mode 100644 index 00000000000000..62e0c976ffa2fd --- /dev/null +++ b/pages.pl/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> To polecenie jest aliasem `strings`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr strings` diff --git a/pages.pl/common/lzcat.md b/pages.pl/common/lzcat.md new file mode 100644 index 00000000000000..db767b65cb35c4 --- /dev/null +++ b/pages.pl/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/lzma.md b/pages.pl/common/lzma.md new file mode 100644 index 00000000000000..a21b6c7ee1861a --- /dev/null +++ b/pages.pl/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/masscan.md b/pages.pl/common/masscan.md new file mode 100644 index 00000000000000..1a9222744d3f49 --- /dev/null +++ b/pages.pl/common/masscan.md @@ -0,0 +1,25 @@ +# masscan + +> Bardzo efektywny skaner sieci. +> Najlepiej używać z podwyższonymi uprawnieniami. Żeby sprawdzić kompatybilność z Nmap'em, użyj komendy `masscan --nmap`. +> Więcej informacji: . + +- Skanuj adres IP lub podsieć w poszukowaniu portu 80: + +`masscan {{adres_ip|maska_podsieci}} --ports {{80}}` + +- Skanuj podsieć klasy B w dla 100 najwyższych portów z prędkością 100,000 pakietów na sekundę: + +`masscan {{10.0.0.0/16}} --top-ports {{100}} --rate {{100000}}` + +- Skanuj podsieć klasy B unikając zakresów adresów zadanych z pliku: + +`masscan {{10.0.0.0/16}} --top-ports {{100}} --excludefile {{ścieżka/do/pliku}}` + +- Skanuj Internet w poszukowaniu portu 443: + +`masscan {{0.0.0.0/0}} --ports {{443}} --rate {{10000000}}` + +- Skanuj Internet dla zadanego zakresu portów i eksportuj wynik do pliku: + +`masscan {{0.0.0.0/0}} --ports {{0-65535}} -output-format {{binary|grepable|json|list|xml}} --output-filename {{ścieżka/do/pliku}}` diff --git a/pages.pl/common/mscore.md b/pages.pl/common/mscore.md new file mode 100644 index 00000000000000..4f66f76478dc94 --- /dev/null +++ b/pages.pl/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> To polecenie jest aliasem `musescore`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr musescore` diff --git a/pages.pl/common/nm-classic.md b/pages.pl/common/nm-classic.md new file mode 100644 index 00000000000000..8eaf9153a48f3c --- /dev/null +++ b/pages.pl/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> To polecenie jest aliasem `nm`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr nm` diff --git a/pages.pl/common/nmap.md b/pages.pl/common/nmap.md new file mode 100644 index 00000000000000..3296ef2bd10cd5 --- /dev/null +++ b/pages.pl/common/nmap.md @@ -0,0 +1,37 @@ +# nmap + +> Narzędzie do enumeracji sieci oraz skanowania portów. +> Niektóre funkcję są tylko aktywne gdy Nmap uruchamiany jest z przywilejami root'a. +> Więcej informacji: . + +- Sprawdź czy host odpowiada na skanowanie oraz zgadnij system operacyjny: + +`nmap -O {{ip_lub_nazwa_hosta}}` + +- Sprawdź czy podane hosty odpowiadają na skanowanie i zgadnij ich nazwy: + +`nmap -sn {{ip_lub_nazwa_hosta}} {{opcjonalny_kolejny_adres_ip}}` + +- Poza tym, uruchom domyśle skrypty, wykrywanie działających serwisów, OS fingerprinting oraz komendę traceroute: + +`nmap -A {{adres_lub_adresy_ip}}` + +- Skanuj podaną listę portów (użyj '-p-' dla wszystkich portów od 1 do 65535): + +`nmap -p {{port1,port2,...,portN}} {{adres_lub_adresy_ip}}` + +- Przeprowadź wykrywanie serwisów i ich wersji dla 1000 najczęstrzych portów używając domyślich skryptów NSE; Zapisz rezultat ('-oN') do pliku wyjściowego: + +`nmap -sC -sV -oN {{top-1000-ports.txt}} {{adres_lub_adresy_ip}}` + +- Skanuj cel lub cele używając skryptów NSE 'default and safe': + +`nmap --script "default and safe" {{adres_lub_adresy_ip}}` + +- Skanuj serwer webowy uruchomiony na standardowych portach 80 i 443 używając wszystkich dostępnych skryptów NSE 'http-*': + +`nmap --script "http-*" {{adres_lub_adresy_ip}} -p 80,443` + +- Wykonaj skryty i bardzo wolny skan ('-T0') próbując uniknąć wykrycia przez IDS/IPS i użyj adresu IP wabika ('-D'): + +`nmap -T0 -D {{adres_ip_wabika1,adres_ip_wabika2,...,adres_ip_wabikaN}} {{adres_lub_adresy_ip}}` diff --git a/pages.pl/common/ntl.md b/pages.pl/common/ntl.md new file mode 100644 index 00000000000000..26d67181d015a1 --- /dev/null +++ b/pages.pl/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> To polecenie jest aliasem `netlify`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr netlify` diff --git a/pages.pl/common/pdfimages.md b/pages.pl/common/pdfimages.md index 56dd527a562f38..8c0b775c3d9576 100644 --- a/pages.pl/common/pdfimages.md +++ b/pages.pl/common/pdfimages.md @@ -1,6 +1,7 @@ # pdfimages > Narzędzie do wyodrębniania obrazów z plików PDF. +> Więcej informacji: . - Wyodrębnij wszystkie obrazy z pliku PDF i zapisz je jako pliki PNG: diff --git a/pages.pl/common/php.md b/pages.pl/common/php.md index eb03691c45e9f1..6418cf6f0d4116 100644 --- a/pages.pl/common/php.md +++ b/pages.pl/common/php.md @@ -19,7 +19,7 @@ `php -r "{{kod}}"` -- uruchom wbudowany serwer PHP w bieżącym katalogu: +- Uruchom wbudowany serwer PHP w bieżącym katalogu: `php -S {{host:port}}` diff --git a/pages.pl/common/pio-init.md b/pages.pl/common/pio-init.md new file mode 100644 index 00000000000000..b874e0fff6f886 --- /dev/null +++ b/pages.pl/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> To polecenie jest aliasem `pio project`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr pio project` diff --git a/pages.pl/common/piodebuggdb.md b/pages.pl/common/piodebuggdb.md new file mode 100644 index 00000000000000..48033e68949b6b --- /dev/null +++ b/pages.pl/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> To polecenie jest aliasem `pio debug`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr pio debug` diff --git a/pages.pl/common/platformio.md b/pages.pl/common/platformio.md new file mode 100644 index 00000000000000..576dbc49a386e2 --- /dev/null +++ b/pages.pl/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> To polecenie jest aliasem `pio`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr pio` diff --git a/pages.pl/common/ptpython3.md b/pages.pl/common/ptpython3.md new file mode 100644 index 00000000000000..57f5b6a737d3ca --- /dev/null +++ b/pages.pl/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> To polecenie jest aliasem `ptpython`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr ptpython` diff --git a/pages.pl/common/python3.md b/pages.pl/common/python3.md new file mode 100644 index 00000000000000..098a2e1be4c52a --- /dev/null +++ b/pages.pl/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> To polecenie jest aliasem `python`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr python` diff --git a/pages.pl/common/r2.md b/pages.pl/common/r2.md new file mode 100644 index 00000000000000..b92fb6c6fefda0 --- /dev/null +++ b/pages.pl/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> To polecenie jest aliasem `radare2`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr radare2` diff --git a/pages.pl/common/rar.md b/pages.pl/common/rar.md index 901a58907c2b7f..b4de13b327c4a7 100644 --- a/pages.pl/common/rar.md +++ b/pages.pl/common/rar.md @@ -1,6 +1,7 @@ # rar > Archiwizator RAR. Obsługuje wielotomowe archiwa, które mogą być opcjonalnie samorozpakowujące się. +> Więcej informacji: . - Zarchiwizuj 1 lub więcej plików: diff --git a/pages.pl/common/rcat.md b/pages.pl/common/rcat.md new file mode 100644 index 00000000000000..ac54fc84bc603b --- /dev/null +++ b/pages.pl/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> To polecenie jest aliasem `rc`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr rc` diff --git a/pages.pl/common/ripgrep.md b/pages.pl/common/ripgrep.md new file mode 100644 index 00000000000000..1a797813fd9d55 --- /dev/null +++ b/pages.pl/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> To polecenie jest aliasem `rg`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr rg` diff --git a/pages.pl/common/rsync.md b/pages.pl/common/rsync.md new file mode 100644 index 00000000000000..07cd34f0b1ea6d --- /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). +> Może przesyłać pojedyncze pliki lub wiele plików pasujących do wzorca. +> Więcej informacji: . + +- Prześlij plik z lokalnego do zdalnego hosta: + +`rsync {{ścieżka/do/lokalnego_pliku}} {{zdalny_host}}:{{ścieżka/do/zdalnego_katalogu}}` + +- Prześlij plik ze zdalnego do lokalnego hosta: + +`rsync {{zdalny_host}}:{{ścieżka/do/zdalnego_pliku}} {{ścieżka/do/lokalnego_katalogu}}` + +- Prześlij plik w trybie [a]rchiwum (aby zachować atrybuty) i skompresowanym ([z]ip) wyświetlając szczegółowy ([v]erbose) i czytelny dla człowieka ([h]uman-readable) [P]ostęp: + +`rsync -azvhP {{ścieżka/do/lokalnego_pliku}} {{zdalny_host}}:{{ścieżka/do/zdalnego_katalogu}}` + +- Prześlij katalog i jego zawartość ze zdalnego do lokalnego hosta: + +`rsync -r {{zdalny_host}}:{{ścieżka/do/zdalnego_katalogu}} {{ścieżka/do/lokalnego_katalogu}}` + +- Prześlij zawartość katalogu (ale nie sam katalog) ze zdalnego do lokalnego hosta: + +`rsync -r {{zdalny_host}}:{{ścieżka/do/zdalnego_katalogu}}/ {{ścieżka/do/lokalnego_katalogu}}` + +- Prześlij katalog [r]ekursywnie, w trybie [a]rchiwum (aby zachować atrybuty), rozwiązując zawarte dowiązania symbo[L]iczne, i ignorując już przesłane pliki o ile nie są nowsze ([u]nless): + +`rsync -rauL {{zdalny_host}}:{{ścieżka/do/zdalnego_katalogu}} {{ścieżka/do/lokalnego_katalogu}}` + +- Prześlij plik poprzez SSH i usuń pliki na zdalnym hoście, które nie istnieją na lokalnym: + +`rsync -e ssh --delete {{zdalny_host}}:{{ścieżka/do/zdalnego_pliku}} {{ścieżka/do/lokalnego_pliku}}` + +- Prześlij pliki poprzez SSH używając innego portu niż domyślny i wyświetlaj globalny postęp: + +`rsync -e 'ssh -p {{port}}' --info=progress2 {{zdalny_host}}:{{ścieżka/do/zdalnego_pliku}} {{ścieżka/do/lokalnego_pliku}}` diff --git a/pages.pl/common/snowsql.md b/pages.pl/common/snowsql.md new file mode 100644 index 00000000000000..aca00ba81de2b2 --- /dev/null +++ b/pages.pl/common/snowsql.md @@ -0,0 +1,24 @@ +# snowsql + +> Narzędzie wiersza SnowSQL serwisu bazodanowego Snowflake. +> Więcej informacji: . + +- Połącz z konkretną instancją pod adresem (hasło może być wprowadzone w wierszu polecenia lub pliku konfiguracyjnym): + +`snowsql --accountname {{konto}} --username {{użytkownik}} --dbname {{baza_danych}} --schemaname {{nazwa_schematu}}` + +- Połącz się z instancją zdefiniowaną w pliku konfiguracyjnym (domyślnie w `~/.snowsql/config`): + +`snowsql --config {{ścieżka/do/pliku_konfiguracyjnego}}` + +- Połącz się z domyślnie zdefiniowaną instancją, podając kod autentykacji drugiego poziomu: + +`snowsql --mfa-passcode {{kod_podwójnej_weryfikacji}}` + +- Wykonaj pojedyncze zapytanie lub komendę SnowSQL na domyślnym połączeniu (użyteczne w skryptach powłoki): + +`snowsql --query '{{zapytanie}}'` + +- Wykonaj zapytania lub komendy z konkretnego pliku: + +`snowsql --filename {{ścieżka/do/pliku.sql}}` diff --git a/pages.pl/common/sudo.md b/pages.pl/common/sudo.md index e7d28b64d7a3a2..277a01b1a71297 100644 --- a/pages.pl/common/sudo.md +++ b/pages.pl/common/sudo.md @@ -1,6 +1,7 @@ # sudo > Wykonuje pojedyncze polecenie jako superuser lub inny użytkownik. +> Więcej informacji: . - Uruchom polecenie jako superuser: diff --git a/pages.pl/common/test.md b/pages.pl/common/test.md new file mode 100644 index 00000000000000..7f62ec1ce1124d --- /dev/null +++ b/pages.pl/common/test.md @@ -0,0 +1,25 @@ +# test + +> Sprawdza typy plików i porównuje wartości. +> Zwraca 0 gdy porównanie zwróciło wartość poprawną, 1 gdy fałszywą. +> Więcej informacji: . + +- Sprawdź czy podana zmienna jest równa łańcuchowi znaków: + +`test "{{$ZMIENNA}}" == "{{/bin/zsh}}"` + +- Sprawdź czy zmienna jest pusta: + +`test -z "{{$GIT_BRANCH}}"` + +- Sprawdź czy plik istnieje: + +`test -f "{{ścieżka/do/pliku}}"` + +- Sprawdź czy katalog nie istnieje: + +`test ! -d "{{ścieżka/do/katalogu}}"` + +- Zapis jeśli porawne-jeśli fałszywe: + +`test {{warunek}} && {{echo "gdy poprawne"}} || {{echo "gdy fałszywe"}}` diff --git a/pages.pl/common/tig.md b/pages.pl/common/tig.md new file mode 100644 index 00000000000000..ab0d8f23dcb092 --- /dev/null +++ b/pages.pl/common/tig.md @@ -0,0 +1,28 @@ +# tig + +> Interfejs tekstowy dla Gita. +> Więcej informacji: . + +- Pokaż listę commitów w odwrotnej kolejności chronologicznej, zaczynając od najnowszego: + +`tig` + +- Pokaż historię wybranej gałęzi: + +`tig {{gałąź}}` + +- Pokaż historię wybranych plików lub katalogów: + +`tig {{ścieżka1 ścieżka2 ...}}` + +- Pokaż różnice pomiędzy dwiema referencjami (np. gałęziami lub tagami): + +`tig {{bazowa_ref}}..{{porównywana_ref}}` + +- Wyświetl comity ze wszystkich gałęzi i stash: + +`tig --all` + +- Rozpocznij w widoku stash, wyświetlając wszystkie zmiany w stash: + +`tig stash` diff --git a/pages.pl/common/tldr-lint.md b/pages.pl/common/tldr-lint.md new file mode 100644 index 00000000000000..8562299b2e752a --- /dev/null +++ b/pages.pl/common/tldr-lint.md @@ -0,0 +1,16 @@ +# tldr-lint + +> Waliduj i formatuj strony dokumentacji `tldr`. +> Więcej informacji: . + +- Waliduj wszystkie strony: + +`tldr-lint {{katalog_ze_stronami}}` + +- Formatuj stronę na standardowe wyjście: + +`tldr-lint --format {{strona.md}}` + +- Formatuj wszystkie strony w miejscu: + +`tldr-lint --format --in-place {{katalog_ze_stronami}}` diff --git a/pages.pl/common/tldrl.md b/pages.pl/common/tldrl.md new file mode 100644 index 00000000000000..f616bfe8c9c478 --- /dev/null +++ b/pages.pl/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> To polecenie jest aliasem `tldr-lint`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr tldr-lint` diff --git a/pages.pl/common/tlmgr-arch.md b/pages.pl/common/tlmgr-arch.md new file mode 100644 index 00000000000000..ce25f1b32e87ad --- /dev/null +++ b/pages.pl/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> To polecenie jest aliasem `tlmgr platform`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr tlmgr platform` diff --git a/pages.pl/common/todoman.md b/pages.pl/common/todoman.md new file mode 100644 index 00000000000000..3a5ab8ccd1bf32 --- /dev/null +++ b/pages.pl/common/todoman.md @@ -0,0 +1,8 @@ +# todoman + +> To polecenie jest aliasem `todo`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr todo` diff --git a/pages.pl/common/transmission.md b/pages.pl/common/transmission.md new file mode 100644 index 00000000000000..0f123c23aac8d3 --- /dev/null +++ b/pages.pl/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> To polecenie jest aliasem `transmission-daemon`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr transmission-daemon` diff --git a/pages.pl/common/unlzma.md b/pages.pl/common/unlzma.md new file mode 100644 index 00000000000000..4a0bd20cf11bf2 --- /dev/null +++ b/pages.pl/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/unxz.md b/pages.pl/common/unxz.md new file mode 100644 index 00000000000000..010069e324ca41 --- /dev/null +++ b/pages.pl/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/vi.md b/pages.pl/common/vi.md new file mode 100644 index 00000000000000..216f6b59f565bb --- /dev/null +++ b/pages.pl/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> To polecenie jest aliasem `vim`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr vim` diff --git a/pages.pl/common/vim.md b/pages.pl/common/vim.md index 38c894f0273951..bd52bc5dbd3467 100644 --- a/pages.pl/common/vim.md +++ b/pages.pl/common/vim.md @@ -8,6 +8,10 @@ `vim {{sciezka/do/plik}}` +- Otwórz plik pod określonym numerem wiersza: + +`vim +{{numer_linii}} {{sciezka/do/plik}}` + - Zobacz instrukcję pomocy Vim: `:help` @@ -20,10 +24,6 @@ `:quit!` -- Otwórz plik pod określonym numerem wiersza: - -`vim +{{numer_linii}} {{sciezka/do/plik}}` - - Cofnij ostatnią operację: `u` diff --git a/pages.pl/common/w.md b/pages.pl/common/w.md new file mode 100644 index 00000000000000..0291bff61a1002 --- /dev/null +++ b/pages.pl/common/w.md @@ -0,0 +1,13 @@ +# w + +> Pokazuje kto jest zalogowany i co aktualnie robi. +> Wyświetla login, TTY, zdalny host, czas zalogowania, czas bezczynności i aktualny proces. +> Więcej informacji: . + +- Pokazuje informacje o aktualnie zalogowanych użytkownikach: + +`w` + +- Pokazuje aktualnie zalogowanych użytkowników bez nagłówka: + +`w -h` diff --git a/pages.pl/common/wc.md b/pages.pl/common/wc.md new file mode 100644 index 00000000000000..5d53fe411c828a --- /dev/null +++ b/pages.pl/common/wc.md @@ -0,0 +1,28 @@ +# wc + +> Zlicza linie, słowa, i bajty. +> Więcej informacji: . + +- Policz linie w pliku: + +`wc -l {{plik}}` + +- Policz słowa w pliku: + +`wc -w {{plik}}` + +- Policz znaki (bajty) w pliku: + +`wc -c {{plik}}` + +- Policz znaki w pliku (uwzględniając znaki zapisane więcej niż jednym bajtem): + +`wc -m {{plik}}` + +- Użyj standardowego wejścia aby policzyć po kolei linie, słowa, i znaki (bajty): + +`{{find .}} | wc` + +- Policz długość najdłuższej linii w pliku: + +`wc --max-line-length {{plik}}` diff --git a/pages.pl/common/xkill.md b/pages.pl/common/xkill.md index 3fdd8215626a10..3770b87cf5d27b 100644 --- a/pages.pl/common/xkill.md +++ b/pages.pl/common/xkill.md @@ -2,6 +2,7 @@ > Zabija okno z sesji graficznej. > Zobacz też `kill` i `killall`. +> Więcej informacji: . - Wyświetla kursor pozwalający na wybranie okna do zabicia przy pomocy lewego przycisku myszy (pozostałe przyciski anulują): diff --git a/pages.pl/common/xzcat.md b/pages.pl/common/xzcat.md new file mode 100644 index 00000000000000..f824e0357da419 --- /dev/null +++ b/pages.pl/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> To polecenie jest aliasem `xz`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr xz` diff --git a/pages.pl/common/yes.md b/pages.pl/common/yes.md new file mode 100644 index 00000000000000..23a8ce8fafd271 --- /dev/null +++ b/pages.pl/common/yes.md @@ -0,0 +1,17 @@ +# yes + +> Wypisuje coś wielokrotnie. +> Komenda używana często aby potwierdzić pytania zadawane przez komendy instalujące takie jak apt-get. +> Więcej informacji: . + +- Wypisuje bez końca "wiadomość": + +`yes {{wiadomość}}` + +- Wypisuje bez końca "y": + +`yes` + +- Wysyłaj potwierdzenie dla każdego pytania zadanego przez `apt-get`: + +`yes | sudo apt-get install {{program}}` diff --git a/pages.pl/common/youtube-dl.md b/pages.pl/common/youtube-dl.md index 7e19e0bcd5ff7f..d61c3f86451822 100644 --- a/pages.pl/common/youtube-dl.md +++ b/pages.pl/common/youtube-dl.md @@ -1,6 +1,6 @@ # youtube-dl -> Pobieraj wideo i audio z YouTube i podobnych portali +> Pobieraj wideo i audio z YouTube i podobnych portali. > Więcej informacji: . - Pobierz plik wideo lub wszystkie pliki z playlisty: diff --git a/pages.pl/linux/alternatives.md b/pages.pl/linux/alternatives.md new file mode 100644 index 00000000000000..83cb03503e152d --- /dev/null +++ b/pages.pl/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> To polecenie jest aliasem dla `update-alternatives`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr update-alternatives` diff --git a/pages.pl/linux/amixer.md b/pages.pl/linux/amixer.md new file mode 100644 index 00000000000000..17d83fef38c441 --- /dev/null +++ b/pages.pl/linux/amixer.md @@ -0,0 +1,12 @@ +# amixer + +> Mikser dla sterownika ALSA kart dźwiękowych. +> Więcej informacji: . + +- Zwiększenie głównego poziomu głośności o 10%: + +`amixer -D pulse sset Master {{10%+}}` + +- Zmniejszenie głównego poziomu głośności o 10%: + +`amixer -D pulse sset Master {{10%-}}` diff --git a/pages.pl/linux/apt-cache.md b/pages.pl/linux/apt-cache.md new file mode 100644 index 00000000000000..6af6991af8eb3c --- /dev/null +++ b/pages.pl/linux/apt-cache.md @@ -0,0 +1,24 @@ +# apt-cache + +> Narzędzie do zapytań o pakiety w Debianie i Ubuntu. +> Więcej informacji: . + +- Wyszukanie pakietu w aktualnych źródłach: + +`apt-cache search {{zapytanie}}` + +- Pokazanie informacji o pakiecie: + +`apt-cache show {{pakiet}}` + +- Pokazanie, czy pakiet jest zainstalowany i aktualnej wersji: + +`apt-cache policy {{pakiet}}` + +- Pokazanie zależności pakietu: + +`apt-cache depends {{pakiet}}` + +- Pokazanie pakietów mających zależność od konkretnego pakietu: + +`apt-cache rdepends {{pakiet}}` diff --git a/pages.pl/linux/apt-file.md b/pages.pl/linux/apt-file.md new file mode 100644 index 00000000000000..35f464ee1ae2c6 --- /dev/null +++ b/pages.pl/linux/apt-file.md @@ -0,0 +1,20 @@ +# apt-file + +> Wyszukiwanie plików w pakietach apt, łącznie z tymi jeszcze nie zainstalowanymi. +> Więcej informacji: . + +- Aktualizacja bazy metadanych: + +`sudo apt update` + +- Wyszukanie pakietu, 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: + +`apt-file {{show|list}} {{pakiet}}` + +- Wyszukanie pakietów, 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 new file mode 100644 index 00000000000000..1254e66869a351 --- /dev/null +++ b/pages.pl/linux/apt-key.md @@ -0,0 +1,25 @@ +# apt-key + +> Narzędzie do zarządzania kluczami APT Package Manager 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: . + +- Wyświetl zaufane klucze: + +`apt-key list` + +- Dodanie klucza do magazynu zaufanych kluczy: + +`apt-key add {{plik_z_kluczem_publicznym.asc}}` + +- Usunięcie klucza z magazynu zaufanych kluczy: + +`apt-key del {{id_klucza}}` + +- Dodanie zdalnego klucza do magazynu zaufanych kluczy: + +`wget -qO - {{https://host.tld/nazwa_pliku.key}} | apt-key add -` + +- Dodanie klucza 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 new file mode 100644 index 00000000000000..13a994ed006102 --- /dev/null +++ b/pages.pl/linux/apt.md @@ -0,0 +1,37 @@ +# 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. +> Więcej informacji: . + +- Aktualizacja listy dostępnych pakietów i ich wersji (zalecane uruchomienie przed innymi poleceniami `apt`): + +`sudo apt update` + +- Wyszukanie podanego pakietu: + +`apt search {{pakiet}}` + +- Wyświetlenie informacji o pakiecie: + +`apt show {{pakiet}}` + +- Instalacja pakietu lub aktualizacja do najnowszej dostępnej wersji: + +`sudo apt install {{pakiet}}` + +- Usunięcie pakietu (użyj `purge` aby usunąć także pliki konfiguracyjne): + +`sudo apt remove {{pakiet}}` + +- Aktualizacja wszystkich zainstalowanych pakietów do ich najnowszych wersji: + +`sudo apt upgrade` + +- Wyświetlenie wszystkich pakietów: + +`apt list` + +- Wyświetlenie zainstalowanych pakietów: + +`apt list --installed` diff --git a/pages.pl/linux/archey.md b/pages.pl/linux/archey.md new file mode 100644 index 00000000000000..bf07dcb74eb2a2 --- /dev/null +++ b/pages.pl/linux/archey.md @@ -0,0 +1,8 @@ +# archey + +> Proste narzędzie do stylowego wyświetlania informacji o systemie. +> Więcej informacji: . + +- Wyświetl informacje o systemie: + +`archey` diff --git a/pages.pl/linux/batcat.md b/pages.pl/linux/batcat.md new file mode 100644 index 00000000000000..1273372e5454f9 --- /dev/null +++ b/pages.pl/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> To polecenie jest aliasem dla `bat`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr bat` diff --git a/pages.pl/linux/blkid.md b/pages.pl/linux/blkid.md new file mode 100644 index 00000000000000..5010fdee0b7808 --- /dev/null +++ b/pages.pl/linux/blkid.md @@ -0,0 +1,12 @@ +# blkid + +> Wyświetla wszystkie rozpoznane partycje oraz ich Universally Unique Identifier (UUID). +> Więcej informacji: . + +- Wyświetlenie wszystkich partycji: + +`sudo blkid` + +- Wyświetlenie wszystkich partycji w tabeli, wraz z bieżącymi punktami montowania: + +`sudo blkid -o list` diff --git a/pages.pl/linux/bspwm.md b/pages.pl/linux/bspwm.md new file mode 100644 index 00000000000000..2bd436f4183883 --- /dev/null +++ b/pages.pl/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> To polecenie jest aliasem `bspc`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr bspc` diff --git a/pages.pl/linux/cc.md b/pages.pl/linux/cc.md new file mode 100644 index 00000000000000..5e493daed4366f --- /dev/null +++ b/pages.pl/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> To polecenie jest aliasem dla `gcc`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr gcc` diff --git a/pages.pl/linux/cgroups.md b/pages.pl/linux/cgroups.md new file mode 100644 index 00000000000000..8236370105612c --- /dev/null +++ b/pages.pl/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> To polecenie jest aliasem `cgclassify`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr cgclassify` diff --git a/pages.pl/linux/chcpu.md b/pages.pl/linux/chcpu.md new file mode 100644 index 00000000000000..062dc19bef74a4 --- /dev/null +++ b/pages.pl/linux/chcpu.md @@ -0,0 +1,12 @@ +# chcpu + +> Włącza/wyłącza CPU w systemie. +> Więcej informacji: . + +- Wyłączenie CPU przez podanie listy numerów ID CPU: + +`chcpu -d {{1,3}}` + +- Włączenie zbioru CPU przez podanie zakresu numerów ID CPU: + +`chcpu -e {{1-10}}` diff --git a/pages.pl/linux/expect.md b/pages.pl/linux/expect.md new file mode 100644 index 00000000000000..7982061e6c1e2c --- /dev/null +++ b/pages.pl/linux/expect.md @@ -0,0 +1,16 @@ +# expect + +> Wykonuje skrypty, które dokonują interakcji z programami przyjmującymi dane od użytkownika. +> Więcej informacji: . + +- Wykonaj skrypt expect z pliku: + +`expect {{ścieżka/do/pliku}}` + +- Wykonaj podany skrypt expect: + +`expect -c "{{polecenia}}"` + +- Wejdź do interaktywnego REPL (użyj `exit` lub Ctrl + D, aby wyjść): + +`expect -i` diff --git a/pages.pl/linux/fatlabel.md b/pages.pl/linux/fatlabel.md new file mode 100644 index 00000000000000..d6bd5949afa4fd --- /dev/null +++ b/pages.pl/linux/fatlabel.md @@ -0,0 +1,12 @@ +# fatlabel + +> Ustawia lub pobiera informację o nazwie partycji FAT32. +> Więcej informacji: . + +- Pobranie informacji o nazwie partycji FAT32: + +`fatlabel {{/dev/sda1}}` + +- Ustawienie nazwy partycji FAT32: + +`fatlabel {{/dev/sdc3}} "{{nowa_etykieta}}"` diff --git a/pages.pl/linux/groupadd.md b/pages.pl/linux/groupadd.md new file mode 100644 index 00000000000000..fc44965450e0fd --- /dev/null +++ b/pages.pl/linux/groupadd.md @@ -0,0 +1,17 @@ +# groupadd + +> Dodaje grupę użytkowników do systemu. +> Zobacz też `groups`, `groupdel`, `groupmod`. +> Więcej informacji: . + +- Utwórz nową grupę: + +`sudo groupadd {{nazwa_grupy}}` + +- Utwórz nową grupę systemową: + +`sudo groupadd --system {{nazwa_grupy}}` + +- Utwórz nową grupę z określonym `id_grupy`: + +`sudo groupadd --gid {{id_grupy}} {{nazwa_grupy}}` diff --git a/pages.pl/linux/groupdel.md b/pages.pl/linux/groupdel.md new file mode 100644 index 00000000000000..6cc9d127861e2d --- /dev/null +++ b/pages.pl/linux/groupdel.md @@ -0,0 +1,9 @@ +# groupdel + +> Usuwa istniejącą grupę użytkowników z systemu. +> Zobacz też: `groups`, `groupadd`, `groupmod`. +> Więcej informacji: . + +- Usuń istniejącą grupę użytkowników: + +`sudo groupdel {{nazwa_grupy}}` diff --git a/pages.pl/linux/i7z.md b/pages.pl/linux/i7z.md new file mode 100644 index 00000000000000..3a2358431de53b --- /dev/null +++ b/pages.pl/linux/i7z.md @@ -0,0 +1,8 @@ +# i7z + +> Narzędzie raportujące w czasie rzeczywistym dla CPU Intel (tylko i3, i5 oraz i7). +> Więcej informacji: . + +- Uruchomienie i7z (wymaga uruchomienia jako superuser): + +`sudo i7z` diff --git a/pages.pl/linux/ifdown.md b/pages.pl/linux/ifdown.md new file mode 100644 index 00000000000000..a77bbc6a1aed52 --- /dev/null +++ b/pages.pl/linux/ifdown.md @@ -0,0 +1,12 @@ +# ifdown + +> Wyłącza interfejsy sieciowe. +> Więcej informacji: . + +- Wyłączenie interfejsu eth0: + +`ifdown {{eth0}}` + +- Wyłączenie wszystkich interfejsów, które są włączone: + +`ifdown -a` diff --git a/pages.pl/linux/ifup.md b/pages.pl/linux/ifup.md new file mode 100644 index 00000000000000..3e223ef09cecec --- /dev/null +++ b/pages.pl/linux/ifup.md @@ -0,0 +1,12 @@ +# ifup + +> Narzędzie używane do włączania interfejsów sieciowych. +> Więcej informacji: . + +- Włączenie interfejsu eth0: + +`ifup {{eth0}}` + +- Włączenie wszystkich interfejsów zdefiniowanych jako "auto" w `/etc/network/interfaces`: + +`ifup -a` diff --git a/pages.pl/linux/ip-route-list.md b/pages.pl/linux/ip-route-list.md new file mode 100644 index 00000000000000..e78635d5e2cc34 --- /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ę orginalnego polecenia: + +`tldr ip-route-show` diff --git a/pages.pl/linux/line.md b/pages.pl/linux/line.md new file mode 100644 index 00000000000000..37f8d12507ab3d --- /dev/null +++ b/pages.pl/linux/line.md @@ -0,0 +1,8 @@ +# line + +> Wczytuje pojedynczą linię wejścia: +> Więcej informacji: . + +- Wczytanie wejścia: + +`line` diff --git a/pages.pl/linux/lsmod.md b/pages.pl/linux/lsmod.md new file mode 100644 index 00000000000000..32589f1f75bfeb --- /dev/null +++ b/pages.pl/linux/lsmod.md @@ -0,0 +1,9 @@ +# lsmod + +> Pokazuje status modułów kernela Linuksa. +> Zobacz także `modprobe`, który ładuje moduły kernela. +> Więcej informacji: . + +- Wyświetlenie aktualnie załadowanych modułów kernela: + +`lsmod` diff --git a/pages.pl/linux/makepkg.md b/pages.pl/linux/makepkg.md new file mode 100644 index 00000000000000..ba5d400de883e9 --- /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/megadl.md b/pages.pl/linux/megadl.md new file mode 100644 index 00000000000000..b445477de800f7 --- /dev/null +++ b/pages.pl/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> To polecenie jest aliasem dla `megatools-dl`. +> Więcej informacji: . + +- Zobacz dokumentację oryginalnego polecenia: + +`tldr megatools-dl` diff --git a/pages.pl/linux/mklost+found.md b/pages.pl/linux/mklost+found.md new file mode 100644 index 00000000000000..c6cb1b8b00c946 --- /dev/null +++ b/pages.pl/linux/mklost+found.md @@ -0,0 +1,8 @@ +# mklost+found + +> Tworzy katalog lost+found. +> Więcej informacji: . + +- Utwórz katalog `lost+found` w bieżącym katalogu: + +`mklost+found` diff --git a/pages.pl/linux/mono.md b/pages.pl/linux/mono.md new file mode 100644 index 00000000000000..e8bcd9efc74341 --- /dev/null +++ b/pages.pl/linux/mono.md @@ -0,0 +1,12 @@ +# mono + +> Środowisko uruchomieniowe dla .NET Framework. +> Więcej informacji: . + +- Uruchom program .NET assembly w trybie debugowania: + +`mono --debug {{ścieżka/do/program.exe}}` + +- Uruchom program .NET: + +`mono {{ścieżka/do/program.exe}}` diff --git a/pages.pl/linux/ncal.md b/pages.pl/linux/ncal.md new file mode 100644 index 00000000000000..ace4b6b41d177e --- /dev/null +++ b/pages.pl/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> To polecenie jest aliasem `cal`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr cal` diff --git a/pages.pl/linux/networkctl.md b/pages.pl/linux/networkctl.md new file mode 100644 index 00000000000000..10662018bd8f7e --- /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/newgrp.md b/pages.pl/linux/newgrp.md new file mode 100644 index 00000000000000..c46039ade9d610 --- /dev/null +++ b/pages.pl/linux/newgrp.md @@ -0,0 +1,12 @@ +# newgrp + +> Przełącza członkostwo podstawowej grupy. +> Więcej informacji: . + +- Zmień podstawową grupę użytkownika: + +`newgrp {{nazwa_grupy}}` + +- Przywróć podstawową grupę użytkownika na domyślną grupę w `/etc/passwd`: + +`newgrp` diff --git a/pages.pl/linux/oomctl.md b/pages.pl/linux/oomctl.md new file mode 100644 index 00000000000000..eb721aa7d6bb37 --- /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/powertop.md b/pages.pl/linux/powertop.md new file mode 100644 index 00000000000000..809584cc232b37 --- /dev/null +++ b/pages.pl/linux/powertop.md @@ -0,0 +1,16 @@ +# powertop + +> Optymalizuje zużycie energii akumulatora. +> Więcej informacji: . + +- Kalibracja pomiarów zużycia energii + +`sudo powertop --calibrate` + +- Generowanie raportu zużycia enrgii w HTML w bieżącym katalogu: + +`sudo powertop --html={{raport_zużycia_energii.html}}` + +- Dostrojenie do optymalnych ustawień: + +`sudo powertop --auto-tune` diff --git a/pages.pl/linux/pwdx.md b/pages.pl/linux/pwdx.md new file mode 100644 index 00000000000000..1f7eaf2ea77c86 --- /dev/null +++ b/pages.pl/linux/pwdx.md @@ -0,0 +1,8 @@ +# pwdx + +> Wyświetla katalog roboczy procesu. +> Więcej informacji: . + +- Wyświetlenie aktualnego katalogu roboczego procesu: + +`pwdx {{id_procesu}}` diff --git a/pages.pl/linux/raspi-config.md b/pages.pl/linux/raspi-config.md new file mode 100644 index 00000000000000..c482ee66b881ac --- /dev/null +++ b/pages.pl/linux/raspi-config.md @@ -0,0 +1,8 @@ +# raspi-config + +> GUI działające w terminalu `ncurses` do konfiguracji Raspberry Pi. +> Więcej informacji: . + +- Uruchom `raspi-config`: + +`sudo raspi-config` diff --git a/pages.pl/linux/raspinfo.md b/pages.pl/linux/raspinfo.md new file mode 100644 index 00000000000000..b05a597b29d8ac --- /dev/null +++ b/pages.pl/linux/raspinfo.md @@ -0,0 +1,8 @@ +# raspinfo + +> Wyświetla informacje o systemie Raspberry Pi. +> Więcej informacji: . + +- Wyświetlenie informacji o systemie: + +`raspinfo` diff --git a/pages.pl/linux/reset.md b/pages.pl/linux/reset.md new file mode 100644 index 00000000000000..7b03507777a08b --- /dev/null +++ b/pages.pl/linux/reset.md @@ -0,0 +1,12 @@ +# reset + +> Reinicjalizuje bieżacy terminal. Czyści cały ekran terminala. +> Więcej informacji: . + +- Reinicjalizacja bieżącego terminala: + +`reset` + +- Wyświetlenie typu terminala: + +`reset -q` diff --git a/pages.pl/linux/sensors.md b/pages.pl/linux/sensors.md new file mode 100644 index 00000000000000..ac3afad12ecaaa --- /dev/null +++ b/pages.pl/linux/sensors.md @@ -0,0 +1,12 @@ +# sensors + +> Zwraca informacje z sensorów. +> Więcej informacji: . + +- Pokazanie bieżących odczytów z wszystkich chipów sensorów: + +`sensors` + +- Pokazanie temperatur w stopniach Fahrenheita: + +`sensors --fahrenheit` diff --git a/pages.pl/linux/tcpflow.md b/pages.pl/linux/tcpflow.md new file mode 100644 index 00000000000000..a4d18a8612a6d2 --- /dev/null +++ b/pages.pl/linux/tcpflow.md @@ -0,0 +1,8 @@ +# tcpflow + +> Przechwytuje ruch TCP do debugowania i analizy. +> Więcej informacji: . + +- Pokaż wszystkie dane z interfejsu `eth0` i portu `80`: + +`tcpflow -c -i {{eth0}} port {{80}}` diff --git a/pages.pl/linux/ubuntu-bug.md b/pages.pl/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..163cccfce51003 --- /dev/null +++ b/pages.pl/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> To polecenie jest aliasem `apport-bug`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr apport-bug` diff --git a/pages.pl/linux/uuid.md b/pages.pl/linux/uuid.md new file mode 100644 index 00000000000000..142a2a37ba74dd --- /dev/null +++ b/pages.pl/linux/uuid.md @@ -0,0 +1,33 @@ +# uuid + +> Twórz i dekoduj uniwersalne identyfikatory (UUID). +> Zobacz też `uuidgen`. +> Więcej informacji: . + +- Stwórz UUIDv1 (oparte o zegar systemowy i - jeśli dostępne - adres sprzętowy): + +`uuid` + +- Stwórz UUIDv4 (losowy): + +`uuid -v {{4}}` + +- Stwórz wiele UUIDv4 na raz: + +`uuid -v {{4}} -n {{ilość_uuid}}` + +- Stwórz UUIDv4 w konkretnym formacie: + +`uuid -v {{4}} -F {{BIN|STR|SIV}}` + +- Stwórz UUIDv4 i zapisz do pliku: + +`uuid -v {{4}} -o {{ścieżka/do/pliku}}` + +- Stwórz UUIDv5 (oparty o podaną nazwę obiektu) w przestrzeni nazw: + +`uuid -v {{5}} ns:{{DNS|URL|OID|X500}} {{nazwa_obiektu}}` + +- Dekoduj podany UUID: + +`uuid -d {{uuid}}` diff --git a/pages.pl/linux/uuidd.md b/pages.pl/linux/uuidd.md new file mode 100644 index 00000000000000..ae62f512693de8 --- /dev/null +++ b/pages.pl/linux/uuidd.md @@ -0,0 +1,16 @@ +# uuidd + +> Daemon generujący UUID. +> Więcej informacji: . + +- Stwórz losowy UUID: + +`uuidd --random` + +- Stwórz większą ilość losowych UUID: + +`uuidd --random --uuids {{ilość_uuid}}` + +- Stwórz UUID oparty o aktualny czas i adres MAC: + +`uuidd --time` diff --git a/pages.pl/linux/uuidgen.md b/pages.pl/linux/uuidgen.md new file mode 100644 index 00000000000000..46fe5e4e8bf5a5 --- /dev/null +++ b/pages.pl/linux/uuidgen.md @@ -0,0 +1,17 @@ +# uuidgen + +> Stwórz unikalny identyfikator (UUIDs). +> Zobacz też `uuid`. +> Więcej informacji: . + +- Stwórz losowy UUIDv4: + +`uuidgen --random` + +- Stwórz UUIDv1 oparty o aktualny czas: + +`uuidgen --time` + +- Stwórz UUIDv5 z nazwy i prefiksu przestrzeni nazw: + +`uuidgen --sha1 --namespace {{@dns|@url|@oid|@x500}} --name {{nazwa_obiektu}}` diff --git a/pages.pl/linux/vigr.md b/pages.pl/linux/vigr.md new file mode 100644 index 00000000000000..596dd772064134 --- /dev/null +++ b/pages.pl/linux/vigr.md @@ -0,0 +1,12 @@ +# vigr + +> Edytuje plik `group`. +> Więcej informacji: . + +- Edycja pliku `group`: + +`vigr` + +- Wyświetlenie wersji: + +`vigr --version` diff --git a/pages.pl/linux/vipw.md b/pages.pl/linux/vipw.md new file mode 100644 index 00000000000000..693d45e8d0ba1c --- /dev/null +++ b/pages.pl/linux/vipw.md @@ -0,0 +1,12 @@ +# vipw + +> Edytuje plik password. +> Więcej informacji: . + +- Edycja pliku password: + +`vipw` + +- Wyświetlenie bieżącej wersji `vipw`: + +`vipw --version` diff --git a/pages.pl/linux/vpnc.md b/pages.pl/linux/vpnc.md new file mode 100644 index 00000000000000..f50229b61cf4aa --- /dev/null +++ b/pages.pl/linux/vpnc.md @@ -0,0 +1,12 @@ +# vpnc + +> Klient VPN dla Cisco 3000 VPN Concentrator. +> Więcej informacji: . + +- Połącznie przy pomocy zdefiniowanego pliku konfiguracyjnego: + +`sudo vpnc {{plik_konfiguracyjny}}` + +- Zakończenie wcześniej utworzonego połączenia: + +`sudo vpnc-disconnect` diff --git a/pages.pl/linux/wajig.md b/pages.pl/linux/wajig.md new file mode 100644 index 00000000000000..a881d90ed4f2a4 --- /dev/null +++ b/pages.pl/linux/wajig.md @@ -0,0 +1,36 @@ +# wajig + +> Uproszczone narzędzie do zarządzania pakietami dla systemów oparych na Debianie. +> Więcej informacji: . + +- Aktualizacja listy dostępnych pakietów i ich wersji: + +`wajig update` + +- Instalacja pakietu lub aktualizacja do najnowszej wersji: + +`wajig install {{pakiet}}` + +- Usunięcie pakietu i jego plików konfiguracyjnych: + +`wajig purge {{pakiet}}` + +- Wykonanie update, a następnie dist-upgrade: + +`wajig daily-upgrade` + +- Wyświetlenie rozmiaru zainstalowanych pakietów: + +`wajig sizes` + +- Lista wersji i dystrybucji dla wszystkich zainstalowanych pakietów: + +`wajig versions` + +- Lista wersji pakietów możliwych do aktualizacji: + +`wajig toupgrade` + +- Wyświetlenie pakietów, które posiadają zaleność od podanego pakietu: + +`wajig dependents {{pakiet}}` diff --git a/pages.pl/linux/wall.md b/pages.pl/linux/wall.md new file mode 100644 index 00000000000000..6fb34aebe58a03 --- /dev/null +++ b/pages.pl/linux/wall.md @@ -0,0 +1,16 @@ +# wall + +> Pisze wiadomość na terminalach aktualnie zalogowanych użytkowników. +> Więcej informacji: . + +- Wysłanie wiadomości: + +`echo "{{wiadomość}}" | wall` + +- Wysłanie wiadomoci z pliku: + +`wall {{plik}}` + +- Wysłanie wiadomość z pliku z podanym timeoutem (sekundy, domyślnie 300): + +`wall -t {{sekundy}} {{plik}}` diff --git a/pages.pl/linux/wtf.md b/pages.pl/linux/wtf.md new file mode 100644 index 00000000000000..c8d664d4d190eb --- /dev/null +++ b/pages.pl/linux/wtf.md @@ -0,0 +1,12 @@ +# wtf + +> Pokazuje rozwinięcia akronimów. +> Więcej informacji: . + +- Rozwinięcie podanego akronimu: + +`wtf {{IMO}}` + +- Określenie typu wyszukania jako związanego z komputerem: + +`wtf -t {{comp}} {{WWW}}` diff --git a/pages.pl/linux/zramctl.md b/pages.pl/linux/zramctl.md new file mode 100644 index 00000000000000..1ccdfdcaa1caff --- /dev/null +++ b/pages.pl/linux/zramctl.md @@ -0,0 +1,25 @@ +# zramctl + +> Tworzenie i kontrola urządzeń zram. +> Użyj `mkfs` lub `mkswap` aby sformatować urządzenia zram na partycje. +> Więcej informacji: . + +- Sprawdzenie, czy zram jest włączony: + +`lsmod | grep -i zram` + +- Włączenie zram z dynamiczną liczbą urządzeń (użyj `zramctl` aby skonfigurować urządzenia dalej): + +`sudo modprobe zram` + +- Włączenie zram z dokładnie 2 urządzeniami: + +`sudo modprobe zram num_devices={{2}}` + +- Znalezienie i inicjalizacja następnego wolnego urządzenia zram jako 2 GB napęd wirtualny z użyciem kompresji LZ4: + +`sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}` + +- Wyświetlenie aktualnie zainicjalizowanych urządzeń: + +`zramctl` diff --git a/pages.pl/osx/aa.md b/pages.pl/osx/aa.md new file mode 100644 index 00000000000000..4f62a37b617c96 --- /dev/null +++ b/pages.pl/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> To polecenie jest aliasem `yaa`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr yaa` diff --git a/pages.pl/osx/caffeinate.md b/pages.pl/osx/caffeinate.md new file mode 100644 index 00000000000000..19aaf5606eed2c --- /dev/null +++ b/pages.pl/osx/caffeinate.md @@ -0,0 +1,20 @@ +# caffeinate + +> Nie pozwól aby macOS się uśpił. +> Więcej informacji: . + +- Nie usypiaj przez 1 godzinę (3600 sekund): + +`caffeinate -u -t {{3600}}` + +- Nie usypiaj dopóki komenda nie zostanie zakończona: + +`caffeinate -s "{{command}}"` + +- Nie usypiaj dopóki nie przerwiesz naciskając `Ctrl - C`: + +`caffeinate -i` + +- Nie usypiaj dysku twardego dopóki nie przerwiesz naciskając `Ctrl + C`: + +`caffeinate -m` diff --git a/pages.pl/osx/date.md b/pages.pl/osx/date.md new file mode 100644 index 00000000000000..70ee6615b1a0d5 --- /dev/null +++ b/pages.pl/osx/date.md @@ -0,0 +1,20 @@ +# date + +> Ustaw bądź wyświetl datę systemową. +> Więcej informacji: . + +- Wyświetl aktualną datę w domyślnym formacie: + +`date +%c` + +- Wyświetl aktualną datę w formacie UTC i ISO 8601: + +`date -u +%Y-%m-%dT%H:%M:%SZ` + +- Wyświetl aktualną datę jako znacznik czasu Unix (sekundy od epoki systemu Unix): + +`date +%s` + +- Wyświetl określoną datę jako znacznik czasu Unix w domyślnym formacie: + +`date -r 1473305798` diff --git a/pages.pl/osx/g[.md b/pages.pl/osx/g[.md new file mode 100644 index 00000000000000..08642383b142e6 --- /dev/null +++ b/pages.pl/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> To polecenie jest aliasem `-p linux [`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux [` diff --git a/pages.pl/osx/gawk.md b/pages.pl/osx/gawk.md new file mode 100644 index 00000000000000..515c40f79c4925 --- /dev/null +++ b/pages.pl/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> To polecenie jest aliasem `-p linux awk`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux awk` diff --git a/pages.pl/osx/gb2sum.md b/pages.pl/osx/gb2sum.md new file mode 100644 index 00000000000000..be727819cd19fc --- /dev/null +++ b/pages.pl/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> To polecenie jest aliasem `-p linux b2sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux b2sum` diff --git a/pages.pl/osx/gbase32.md b/pages.pl/osx/gbase32.md new file mode 100644 index 00000000000000..42c9622d72b866 --- /dev/null +++ b/pages.pl/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> To polecenie jest aliasem `-p linux base32`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux base32` diff --git a/pages.pl/osx/gbase64.md b/pages.pl/osx/gbase64.md new file mode 100644 index 00000000000000..badaddbc8c0399 --- /dev/null +++ b/pages.pl/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> To polecenie jest aliasem `-p linux base64`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux base64` diff --git a/pages.pl/osx/gbasename.md b/pages.pl/osx/gbasename.md new file mode 100644 index 00000000000000..95d617df312cd5 --- /dev/null +++ b/pages.pl/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> To polecenie jest aliasem `-p linux basename`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux basename` diff --git a/pages.pl/osx/gbasenc.md b/pages.pl/osx/gbasenc.md new file mode 100644 index 00000000000000..784806a1f5e875 --- /dev/null +++ b/pages.pl/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> To polecenie jest aliasem `-p linux basenc`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux basenc` diff --git a/pages.pl/osx/gcat.md b/pages.pl/osx/gcat.md new file mode 100644 index 00000000000000..ec80570fb05308 --- /dev/null +++ b/pages.pl/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> To polecenie jest aliasem `-p linux cat`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux cat` diff --git a/pages.pl/osx/gchcon.md b/pages.pl/osx/gchcon.md new file mode 100644 index 00000000000000..646fd0f64bb9c8 --- /dev/null +++ b/pages.pl/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> To polecenie jest aliasem `-p linux chcon`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux chcon` diff --git a/pages.pl/osx/gchgrp.md b/pages.pl/osx/gchgrp.md new file mode 100644 index 00000000000000..95096b792b0e1e --- /dev/null +++ b/pages.pl/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> To polecenie jest aliasem `-p linux chgrp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux chgrp` diff --git a/pages.pl/osx/gchmod.md b/pages.pl/osx/gchmod.md new file mode 100644 index 00000000000000..11b4842984acbf --- /dev/null +++ b/pages.pl/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> To polecenie jest aliasem `-p linux chmod`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux chmod` diff --git a/pages.pl/osx/gchown.md b/pages.pl/osx/gchown.md new file mode 100644 index 00000000000000..1bd3f26021f8d6 --- /dev/null +++ b/pages.pl/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> To polecenie jest aliasem `-p linux chown`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux chown` diff --git a/pages.pl/osx/gchroot.md b/pages.pl/osx/gchroot.md new file mode 100644 index 00000000000000..7f228d2934615a --- /dev/null +++ b/pages.pl/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> To polecenie jest aliasem `-p linux chroot`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux chroot` diff --git a/pages.pl/osx/gcksum.md b/pages.pl/osx/gcksum.md new file mode 100644 index 00000000000000..b00b68ba46b19d --- /dev/null +++ b/pages.pl/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> To polecenie jest aliasem `-p linux cksum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux cksum` diff --git a/pages.pl/osx/gcomm.md b/pages.pl/osx/gcomm.md new file mode 100644 index 00000000000000..23bffdf0462ad8 --- /dev/null +++ b/pages.pl/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> To polecenie jest aliasem `-p linux comm`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux comm` diff --git a/pages.pl/osx/gcp.md b/pages.pl/osx/gcp.md new file mode 100644 index 00000000000000..53bd13edca2bb2 --- /dev/null +++ b/pages.pl/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> To polecenie jest aliasem `-p linux cp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux cp` diff --git a/pages.pl/osx/gcsplit.md b/pages.pl/osx/gcsplit.md new file mode 100644 index 00000000000000..0f783c1727b176 --- /dev/null +++ b/pages.pl/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> To polecenie jest aliasem `-p linux csplit`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux csplit` diff --git a/pages.pl/osx/gcut.md b/pages.pl/osx/gcut.md new file mode 100644 index 00000000000000..6c6c878ab75f40 --- /dev/null +++ b/pages.pl/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> To polecenie jest aliasem `-p linux cut`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux cut` diff --git a/pages.pl/osx/gdate.md b/pages.pl/osx/gdate.md new file mode 100644 index 00000000000000..91e67ee09deb9d --- /dev/null +++ b/pages.pl/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> To polecenie jest aliasem `-p linux date`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux date` diff --git a/pages.pl/osx/gdd.md b/pages.pl/osx/gdd.md new file mode 100644 index 00000000000000..fa529afc3e3be0 --- /dev/null +++ b/pages.pl/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> To polecenie jest aliasem `-p linux dd`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux dd` diff --git a/pages.pl/osx/gdf.md b/pages.pl/osx/gdf.md new file mode 100644 index 00000000000000..c9b17b0d7b4cec --- /dev/null +++ b/pages.pl/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> To polecenie jest aliasem `-p linux df`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux df` diff --git a/pages.pl/osx/gdir.md b/pages.pl/osx/gdir.md new file mode 100644 index 00000000000000..5fca75756d645d --- /dev/null +++ b/pages.pl/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> To polecenie jest aliasem `-p linux dir`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux dir` diff --git a/pages.pl/osx/gdircolors.md b/pages.pl/osx/gdircolors.md new file mode 100644 index 00000000000000..f337223516eb8e --- /dev/null +++ b/pages.pl/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> To polecenie jest aliasem `-p linux dircolors`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux dircolors` diff --git a/pages.pl/osx/gdirname.md b/pages.pl/osx/gdirname.md new file mode 100644 index 00000000000000..deb098671b7f7a --- /dev/null +++ b/pages.pl/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> To polecenie jest aliasem `-p linux dirname`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux dirname` diff --git a/pages.pl/osx/gdnsdomainname.md b/pages.pl/osx/gdnsdomainname.md new file mode 100644 index 00000000000000..7b46174330a9ec --- /dev/null +++ b/pages.pl/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> To polecenie jest aliasem `-p linux dnsdomainname`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux dnsdomainname` diff --git a/pages.pl/osx/gecho.md b/pages.pl/osx/gecho.md new file mode 100644 index 00000000000000..4d6fe4392109dc --- /dev/null +++ b/pages.pl/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> To polecenie jest aliasem `-p linux echo`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux echo` diff --git a/pages.pl/osx/ged.md b/pages.pl/osx/ged.md new file mode 100644 index 00000000000000..303846c0913203 --- /dev/null +++ b/pages.pl/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> To polecenie jest aliasem `-p linux ed`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ed` diff --git a/pages.pl/osx/gegrep.md b/pages.pl/osx/gegrep.md new file mode 100644 index 00000000000000..5f1323daf443cb --- /dev/null +++ b/pages.pl/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> To polecenie jest aliasem `-p linux egrep`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux egrep` diff --git a/pages.pl/osx/genv.md b/pages.pl/osx/genv.md new file mode 100644 index 00000000000000..a3a7c8a9f4892e --- /dev/null +++ b/pages.pl/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> To polecenie jest aliasem `-p linux env`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux env` diff --git a/pages.pl/osx/gexpand.md b/pages.pl/osx/gexpand.md new file mode 100644 index 00000000000000..cd95fa6daae505 --- /dev/null +++ b/pages.pl/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> To polecenie jest aliasem `-p linux expand`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux expand` diff --git a/pages.pl/osx/gexpr.md b/pages.pl/osx/gexpr.md new file mode 100644 index 00000000000000..11fb15ddfd8902 --- /dev/null +++ b/pages.pl/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> To polecenie jest aliasem `-p linux expr`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux expr` diff --git a/pages.pl/osx/gfactor.md b/pages.pl/osx/gfactor.md new file mode 100644 index 00000000000000..bef76c02b4462b --- /dev/null +++ b/pages.pl/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> To polecenie jest aliasem `-p linux factor`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux factor` diff --git a/pages.pl/osx/gfalse.md b/pages.pl/osx/gfalse.md new file mode 100644 index 00000000000000..fc546fe09a87a4 --- /dev/null +++ b/pages.pl/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> To polecenie jest aliasem `-p linux false`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux false` diff --git a/pages.pl/osx/gfgrep.md b/pages.pl/osx/gfgrep.md new file mode 100644 index 00000000000000..462d4a8150c74b --- /dev/null +++ b/pages.pl/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> To polecenie jest aliasem `-p linux fgrep`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux fgrep` diff --git a/pages.pl/osx/gfind.md b/pages.pl/osx/gfind.md new file mode 100644 index 00000000000000..1cc4492c8a6bce --- /dev/null +++ b/pages.pl/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> To polecenie jest aliasem `-p linux find`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux find` diff --git a/pages.pl/osx/gfmt.md b/pages.pl/osx/gfmt.md new file mode 100644 index 00000000000000..753da279cfe01c --- /dev/null +++ b/pages.pl/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> To polecenie jest aliasem `-p linux fmt`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux fmt` diff --git a/pages.pl/osx/gfold.md b/pages.pl/osx/gfold.md new file mode 100644 index 00000000000000..d5ad807a7c9768 --- /dev/null +++ b/pages.pl/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> To polecenie jest aliasem `-p linux fold`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux fold` diff --git a/pages.pl/osx/gftp.md b/pages.pl/osx/gftp.md new file mode 100644 index 00000000000000..6a047c3a3970bf --- /dev/null +++ b/pages.pl/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> To polecenie jest aliasem `-p linux ftp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ftp` diff --git a/pages.pl/osx/ggrep.md b/pages.pl/osx/ggrep.md new file mode 100644 index 00000000000000..ce51d827636508 --- /dev/null +++ b/pages.pl/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> To polecenie jest aliasem `-p linux grep`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux grep` diff --git a/pages.pl/osx/ggroups.md b/pages.pl/osx/ggroups.md new file mode 100644 index 00000000000000..9557dacad482ed --- /dev/null +++ b/pages.pl/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> To polecenie jest aliasem `-p linux groups`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux groups` diff --git a/pages.pl/osx/ghead.md b/pages.pl/osx/ghead.md new file mode 100644 index 00000000000000..1d61eef0ad75fb --- /dev/null +++ b/pages.pl/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> To polecenie jest aliasem `-p linux head`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux head` diff --git a/pages.pl/osx/ghostid.md b/pages.pl/osx/ghostid.md new file mode 100644 index 00000000000000..70996f177cec8d --- /dev/null +++ b/pages.pl/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> To polecenie jest aliasem `-p linux hostid`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux hostid` diff --git a/pages.pl/osx/ghostname.md b/pages.pl/osx/ghostname.md new file mode 100644 index 00000000000000..8d9b4e48ee2121 --- /dev/null +++ b/pages.pl/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> To polecenie jest aliasem `-p linux hostname`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux hostname` diff --git a/pages.pl/osx/gid.md b/pages.pl/osx/gid.md new file mode 100644 index 00000000000000..eba563501f152d --- /dev/null +++ b/pages.pl/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> To polecenie jest aliasem `-p linux id`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux id` diff --git a/pages.pl/osx/gifconfig.md b/pages.pl/osx/gifconfig.md new file mode 100644 index 00000000000000..089595ee7c3996 --- /dev/null +++ b/pages.pl/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> To polecenie jest aliasem `-p linux ifconfig`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ifconfig` diff --git a/pages.pl/osx/gindent.md b/pages.pl/osx/gindent.md new file mode 100644 index 00000000000000..157ce17bcad78c --- /dev/null +++ b/pages.pl/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> To polecenie jest aliasem `-p linux indent`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux indent` diff --git a/pages.pl/osx/ginstall.md b/pages.pl/osx/ginstall.md new file mode 100644 index 00000000000000..9b3ea3d7ecba5b --- /dev/null +++ b/pages.pl/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> To polecenie jest aliasem `-p linux install`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux install` diff --git a/pages.pl/osx/gjoin.md b/pages.pl/osx/gjoin.md new file mode 100644 index 00000000000000..f4c328316b51ff --- /dev/null +++ b/pages.pl/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> To polecenie jest aliasem `-p linux join`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux join` diff --git a/pages.pl/osx/gkill.md b/pages.pl/osx/gkill.md new file mode 100644 index 00000000000000..2b27fb89510361 --- /dev/null +++ b/pages.pl/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> To polecenie jest aliasem `-p linux kill`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux kill` diff --git a/pages.pl/osx/glibtool.md b/pages.pl/osx/glibtool.md new file mode 100644 index 00000000000000..3be67fddc6a03c --- /dev/null +++ b/pages.pl/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> To polecenie jest aliasem `-p linux libtool`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux libtool` diff --git a/pages.pl/osx/glibtoolize.md b/pages.pl/osx/glibtoolize.md new file mode 100644 index 00000000000000..290ebcfc142e10 --- /dev/null +++ b/pages.pl/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> To polecenie jest aliasem `-p linux libtoolize`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux libtoolize` diff --git a/pages.pl/osx/glink.md b/pages.pl/osx/glink.md new file mode 100644 index 00000000000000..5e662789487f5d --- /dev/null +++ b/pages.pl/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> To polecenie jest aliasem `-p linux link`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux link` diff --git a/pages.pl/osx/gln.md b/pages.pl/osx/gln.md new file mode 100644 index 00000000000000..e596d8eb44befb --- /dev/null +++ b/pages.pl/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> To polecenie jest aliasem `-p linux ln`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ln` diff --git a/pages.pl/osx/glocate.md b/pages.pl/osx/glocate.md new file mode 100644 index 00000000000000..6d2bdbe8dd5ba5 --- /dev/null +++ b/pages.pl/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> To polecenie jest aliasem `-p linux locate`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux locate` diff --git a/pages.pl/osx/glogger.md b/pages.pl/osx/glogger.md new file mode 100644 index 00000000000000..7573e84fd94c4c --- /dev/null +++ b/pages.pl/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> To polecenie jest aliasem `-p linux logger`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux logger` diff --git a/pages.pl/osx/glogname.md b/pages.pl/osx/glogname.md new file mode 100644 index 00000000000000..62bb7168beed3d --- /dev/null +++ b/pages.pl/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> To polecenie jest aliasem `-p linux logname`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux logname` diff --git a/pages.pl/osx/gls.md b/pages.pl/osx/gls.md new file mode 100644 index 00000000000000..f31ac659a872eb --- /dev/null +++ b/pages.pl/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> To polecenie jest aliasem `-p linux ls`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ls` diff --git a/pages.pl/osx/gmake.md b/pages.pl/osx/gmake.md new file mode 100644 index 00000000000000..20bb2f0ef090c6 --- /dev/null +++ b/pages.pl/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> To polecenie jest aliasem `-p linux make`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux make` diff --git a/pages.pl/osx/gmd5sum.md b/pages.pl/osx/gmd5sum.md new file mode 100644 index 00000000000000..a0f4f3542a2d3e --- /dev/null +++ b/pages.pl/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> To polecenie jest aliasem `-p linux md5sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux md5sum` diff --git a/pages.pl/osx/gmkdir.md b/pages.pl/osx/gmkdir.md new file mode 100644 index 00000000000000..02e174d13edca7 --- /dev/null +++ b/pages.pl/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> To polecenie jest aliasem `-p linux mkdir`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux mkdir` diff --git a/pages.pl/osx/gmkfifo.md b/pages.pl/osx/gmkfifo.md new file mode 100644 index 00000000000000..ae4578bd1f0db9 --- /dev/null +++ b/pages.pl/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> To polecenie jest aliasem `-p linux mkfifo`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux mkfifo` diff --git a/pages.pl/osx/gmknod.md b/pages.pl/osx/gmknod.md new file mode 100644 index 00000000000000..e98acf1fc43689 --- /dev/null +++ b/pages.pl/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> To polecenie jest aliasem `-p linux mknod`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux mknod` diff --git a/pages.pl/osx/gmktemp.md b/pages.pl/osx/gmktemp.md new file mode 100644 index 00000000000000..5653049bc82c8a --- /dev/null +++ b/pages.pl/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> To polecenie jest aliasem `-p linux mktemp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux mktemp` diff --git a/pages.pl/osx/gmv.md b/pages.pl/osx/gmv.md new file mode 100644 index 00000000000000..11222cbc68319e --- /dev/null +++ b/pages.pl/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> To polecenie jest aliasem `-p linux mv`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux mv` diff --git a/pages.pl/osx/gnice.md b/pages.pl/osx/gnice.md new file mode 100644 index 00000000000000..d1382257f1b8b0 --- /dev/null +++ b/pages.pl/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> To polecenie jest aliasem `-p linux nice`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux nice` diff --git a/pages.pl/osx/gnl.md b/pages.pl/osx/gnl.md new file mode 100644 index 00000000000000..d907c5513daf9a --- /dev/null +++ b/pages.pl/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> To polecenie jest aliasem `-p linux nl`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux nl` diff --git a/pages.pl/osx/gnohup.md b/pages.pl/osx/gnohup.md new file mode 100644 index 00000000000000..4f725b6eb39434 --- /dev/null +++ b/pages.pl/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> To polecenie jest aliasem `-p linux nohup`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux nohup` diff --git a/pages.pl/osx/gnproc.md b/pages.pl/osx/gnproc.md new file mode 100644 index 00000000000000..98fc20eb369e5a --- /dev/null +++ b/pages.pl/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> To polecenie jest aliasem `-p linux nproc`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux nproc` diff --git a/pages.pl/osx/gnumfmt.md b/pages.pl/osx/gnumfmt.md new file mode 100644 index 00000000000000..ba77a71a5bfa83 --- /dev/null +++ b/pages.pl/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> To polecenie jest aliasem `-p linux numfmt`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux numfmt` diff --git a/pages.pl/osx/god.md b/pages.pl/osx/god.md new file mode 100644 index 00000000000000..35c4cbd828864a --- /dev/null +++ b/pages.pl/osx/god.md @@ -0,0 +1,7 @@ +# god + +> To polecenie jest aliasem `-p linux od`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux od` diff --git a/pages.pl/osx/gpaste.md b/pages.pl/osx/gpaste.md new file mode 100644 index 00000000000000..70894cb432f7c9 --- /dev/null +++ b/pages.pl/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> To polecenie jest aliasem `-p linux paste`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux paste` diff --git a/pages.pl/osx/gpathchk.md b/pages.pl/osx/gpathchk.md new file mode 100644 index 00000000000000..23a31d654c458f --- /dev/null +++ b/pages.pl/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> To polecenie jest aliasem `-p linux pathchk`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux pathchk` diff --git a/pages.pl/osx/gping.md b/pages.pl/osx/gping.md new file mode 100644 index 00000000000000..9431669ad7409e --- /dev/null +++ b/pages.pl/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> To polecenie jest aliasem `-p linux ping`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ping` diff --git a/pages.pl/osx/gping6.md b/pages.pl/osx/gping6.md new file mode 100644 index 00000000000000..509682ca91860a --- /dev/null +++ b/pages.pl/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> To polecenie jest aliasem `-p linux ping6`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ping6` diff --git a/pages.pl/osx/gpinky.md b/pages.pl/osx/gpinky.md new file mode 100644 index 00000000000000..0ef26a30ebb117 --- /dev/null +++ b/pages.pl/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> To polecenie jest aliasem `-p linux pinky`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux pinky` diff --git a/pages.pl/osx/gpr.md b/pages.pl/osx/gpr.md new file mode 100644 index 00000000000000..7a82a018b2fd3e --- /dev/null +++ b/pages.pl/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> To polecenie jest aliasem `-p linux pr`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux pr` diff --git a/pages.pl/osx/gprintenv.md b/pages.pl/osx/gprintenv.md new file mode 100644 index 00000000000000..3b3b2ed6515393 --- /dev/null +++ b/pages.pl/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> To polecenie jest aliasem `-p linux printenv`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux printenv` diff --git a/pages.pl/osx/gprintf.md b/pages.pl/osx/gprintf.md new file mode 100644 index 00000000000000..38620f150dceb3 --- /dev/null +++ b/pages.pl/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> To polecenie jest aliasem `-p linux printf`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux printf` diff --git a/pages.pl/osx/gptx.md b/pages.pl/osx/gptx.md new file mode 100644 index 00000000000000..d4f09bee150a2a --- /dev/null +++ b/pages.pl/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> To polecenie jest aliasem `-p linux ptx`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux ptx` diff --git a/pages.pl/osx/gpwd.md b/pages.pl/osx/gpwd.md new file mode 100644 index 00000000000000..d272af6473b684 --- /dev/null +++ b/pages.pl/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> To polecenie jest aliasem `-p linux pwd`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux pwd` diff --git a/pages.pl/osx/grcp.md b/pages.pl/osx/grcp.md new file mode 100644 index 00000000000000..a8d83c985a95fa --- /dev/null +++ b/pages.pl/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> To polecenie jest aliasem `-p linux rcp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rcp` diff --git a/pages.pl/osx/greadlink.md b/pages.pl/osx/greadlink.md new file mode 100644 index 00000000000000..2dfe4df6e7c3df --- /dev/null +++ b/pages.pl/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> To polecenie jest aliasem `-p linux readlink`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux readlink` diff --git a/pages.pl/osx/grealpath.md b/pages.pl/osx/grealpath.md new file mode 100644 index 00000000000000..e59d7d8c902abc --- /dev/null +++ b/pages.pl/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> To polecenie jest aliasem `-p linux realpath`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux realpath` diff --git a/pages.pl/osx/grexec.md b/pages.pl/osx/grexec.md new file mode 100644 index 00000000000000..6eb80211d3a15b --- /dev/null +++ b/pages.pl/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> To polecenie jest aliasem `-p linux rexec`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rexec` diff --git a/pages.pl/osx/grlogin.md b/pages.pl/osx/grlogin.md new file mode 100644 index 00000000000000..2840b9ea291d17 --- /dev/null +++ b/pages.pl/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> To polecenie jest aliasem `-p linux rlogin`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rlogin` diff --git a/pages.pl/osx/grm.md b/pages.pl/osx/grm.md new file mode 100644 index 00000000000000..7594541d50f11d --- /dev/null +++ b/pages.pl/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> To polecenie jest aliasem `-p linux rm`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rm` diff --git a/pages.pl/osx/grmdir.md b/pages.pl/osx/grmdir.md new file mode 100644 index 00000000000000..9baa41b15990e0 --- /dev/null +++ b/pages.pl/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> To polecenie jest aliasem `-p linux rmdir`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rmdir` diff --git a/pages.pl/osx/grsh.md b/pages.pl/osx/grsh.md new file mode 100644 index 00000000000000..ba611047e66aa8 --- /dev/null +++ b/pages.pl/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> To polecenie jest aliasem `-p linux rsh`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux rsh` diff --git a/pages.pl/osx/gruncon.md b/pages.pl/osx/gruncon.md new file mode 100644 index 00000000000000..27f2a1628cb644 --- /dev/null +++ b/pages.pl/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> To polecenie jest aliasem `-p linux runcon`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux runcon` diff --git a/pages.pl/osx/gsed.md b/pages.pl/osx/gsed.md new file mode 100644 index 00000000000000..66f56b4c8a7cd3 --- /dev/null +++ b/pages.pl/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> To polecenie jest aliasem `-p linux sed`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sed` diff --git a/pages.pl/osx/gseq.md b/pages.pl/osx/gseq.md new file mode 100644 index 00000000000000..6a19fffa24e660 --- /dev/null +++ b/pages.pl/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> To polecenie jest aliasem `-p linux seq`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux seq` diff --git a/pages.pl/osx/gsha1sum.md b/pages.pl/osx/gsha1sum.md new file mode 100644 index 00000000000000..e50e2389f5c0d0 --- /dev/null +++ b/pages.pl/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> To polecenie jest aliasem `-p linux sha1sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sha1sum` diff --git a/pages.pl/osx/gsha224sum.md b/pages.pl/osx/gsha224sum.md new file mode 100644 index 00000000000000..7dc7d581f20b51 --- /dev/null +++ b/pages.pl/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> To polecenie jest aliasem `-p linux sha224sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sha224sum` diff --git a/pages.pl/osx/gsha256sum.md b/pages.pl/osx/gsha256sum.md new file mode 100644 index 00000000000000..a497a95ffbed39 --- /dev/null +++ b/pages.pl/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> To polecenie jest aliasem `-p linux sha256sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sha256sum` diff --git a/pages.pl/osx/gsha384sum.md b/pages.pl/osx/gsha384sum.md new file mode 100644 index 00000000000000..3e8bb0a46258bc --- /dev/null +++ b/pages.pl/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> To polecenie jest aliasem `-p linux sha384sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sha384sum` diff --git a/pages.pl/osx/gsha512sum.md b/pages.pl/osx/gsha512sum.md new file mode 100644 index 00000000000000..fe852c0797e80a --- /dev/null +++ b/pages.pl/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> To polecenie jest aliasem `-p linux sha512sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sha512sum` diff --git a/pages.pl/osx/gshred.md b/pages.pl/osx/gshred.md new file mode 100644 index 00000000000000..49f0fec25d0fd2 --- /dev/null +++ b/pages.pl/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> To polecenie jest aliasem `-p linux shred`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux shred` diff --git a/pages.pl/osx/gshuf.md b/pages.pl/osx/gshuf.md new file mode 100644 index 00000000000000..fba739c6d4f54c --- /dev/null +++ b/pages.pl/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> To polecenie jest aliasem `-p linux shuf`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux shuf` diff --git a/pages.pl/osx/gsleep.md b/pages.pl/osx/gsleep.md new file mode 100644 index 00000000000000..c6ae77669e04e1 --- /dev/null +++ b/pages.pl/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> To polecenie jest aliasem `-p linux sleep`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sleep` diff --git a/pages.pl/osx/gsort.md b/pages.pl/osx/gsort.md new file mode 100644 index 00000000000000..1d56eb48af0792 --- /dev/null +++ b/pages.pl/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> To polecenie jest aliasem `-p linux sort`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sort` diff --git a/pages.pl/osx/gsplit.md b/pages.pl/osx/gsplit.md new file mode 100644 index 00000000000000..11d2884dbdd9f3 --- /dev/null +++ b/pages.pl/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> To polecenie jest aliasem `-p linux split`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux split` diff --git a/pages.pl/osx/gstat.md b/pages.pl/osx/gstat.md new file mode 100644 index 00000000000000..5e9ffe928873df --- /dev/null +++ b/pages.pl/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> To polecenie jest aliasem `-p linux stat`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux stat` diff --git a/pages.pl/osx/gstdbuf.md b/pages.pl/osx/gstdbuf.md new file mode 100644 index 00000000000000..1cbccb45a20518 --- /dev/null +++ b/pages.pl/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> To polecenie jest aliasem `-p linux stdbuf`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux stdbuf` diff --git a/pages.pl/osx/gstty.md b/pages.pl/osx/gstty.md new file mode 100644 index 00000000000000..23b6938d3e4761 --- /dev/null +++ b/pages.pl/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> To polecenie jest aliasem `-p linux stty`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux stty` diff --git a/pages.pl/osx/gsum.md b/pages.pl/osx/gsum.md new file mode 100644 index 00000000000000..b624efcf7f6eb9 --- /dev/null +++ b/pages.pl/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> To polecenie jest aliasem `-p linux sum`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sum` diff --git a/pages.pl/osx/gsync.md b/pages.pl/osx/gsync.md new file mode 100644 index 00000000000000..25cd5c231a0fad --- /dev/null +++ b/pages.pl/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> To polecenie jest aliasem `-p linux sync`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux sync` diff --git a/pages.pl/osx/gtac.md b/pages.pl/osx/gtac.md new file mode 100644 index 00000000000000..da37fb8df17bb2 --- /dev/null +++ b/pages.pl/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> To polecenie jest aliasem `-p linux tac`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tac` diff --git a/pages.pl/osx/gtail.md b/pages.pl/osx/gtail.md new file mode 100644 index 00000000000000..f7fa9d3e283d98 --- /dev/null +++ b/pages.pl/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> To polecenie jest aliasem `-p linux tail`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tail` diff --git a/pages.pl/osx/gtalk.md b/pages.pl/osx/gtalk.md new file mode 100644 index 00000000000000..f80bd0e2dbcc33 --- /dev/null +++ b/pages.pl/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> To polecenie jest aliasem `-p linux talk`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux talk` diff --git a/pages.pl/osx/gtar.md b/pages.pl/osx/gtar.md new file mode 100644 index 00000000000000..7f1ea0f643a8f9 --- /dev/null +++ b/pages.pl/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> To polecenie jest aliasem `-p linux tar`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tar` diff --git a/pages.pl/osx/gtee.md b/pages.pl/osx/gtee.md new file mode 100644 index 00000000000000..e7c4ac6a3d4856 --- /dev/null +++ b/pages.pl/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> To polecenie jest aliasem `-p linux tee`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tee` diff --git a/pages.pl/osx/gtelnet.md b/pages.pl/osx/gtelnet.md new file mode 100644 index 00000000000000..5f01c24d075c83 --- /dev/null +++ b/pages.pl/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> To polecenie jest aliasem `-p linux telnet`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux telnet` diff --git a/pages.pl/osx/gtest.md b/pages.pl/osx/gtest.md new file mode 100644 index 00000000000000..c785b162181af9 --- /dev/null +++ b/pages.pl/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> To polecenie jest aliasem `-p linux test`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux test` diff --git a/pages.pl/osx/gtftp.md b/pages.pl/osx/gtftp.md new file mode 100644 index 00000000000000..81643f42c8c407 --- /dev/null +++ b/pages.pl/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> To polecenie jest aliasem `-p linux tftp`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tftp` diff --git a/pages.pl/osx/gtime.md b/pages.pl/osx/gtime.md new file mode 100644 index 00000000000000..9c565eed87aef5 --- /dev/null +++ b/pages.pl/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> To polecenie jest aliasem `-p linux time`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux time` diff --git a/pages.pl/osx/gtimeout.md b/pages.pl/osx/gtimeout.md new file mode 100644 index 00000000000000..bc1b36860e962a --- /dev/null +++ b/pages.pl/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> To polecenie jest aliasem `-p linux timeout`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux timeout` diff --git a/pages.pl/osx/gtouch.md b/pages.pl/osx/gtouch.md new file mode 100644 index 00000000000000..86ac075efc179d --- /dev/null +++ b/pages.pl/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> To polecenie jest aliasem `-p linux touch`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux touch` diff --git a/pages.pl/osx/gtr.md b/pages.pl/osx/gtr.md new file mode 100644 index 00000000000000..58cbc5a8b06955 --- /dev/null +++ b/pages.pl/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> To polecenie jest aliasem `-p linux tr`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tr` diff --git a/pages.pl/osx/gtraceroute.md b/pages.pl/osx/gtraceroute.md new file mode 100644 index 00000000000000..0739b0f1dded4d --- /dev/null +++ b/pages.pl/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> To polecenie jest aliasem `-p linux traceroute`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux traceroute` diff --git a/pages.pl/osx/gtrue.md b/pages.pl/osx/gtrue.md new file mode 100644 index 00000000000000..b67f72d022c663 --- /dev/null +++ b/pages.pl/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> To polecenie jest aliasem `-p linux true`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux true` diff --git a/pages.pl/osx/gtruncate.md b/pages.pl/osx/gtruncate.md new file mode 100644 index 00000000000000..355ab10297c199 --- /dev/null +++ b/pages.pl/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> To polecenie jest aliasem `-p linux truncate`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux truncate` diff --git a/pages.pl/osx/gtsort.md b/pages.pl/osx/gtsort.md new file mode 100644 index 00000000000000..38a4183a66692f --- /dev/null +++ b/pages.pl/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> To polecenie jest aliasem `-p linux tsort`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tsort` diff --git a/pages.pl/osx/gtty.md b/pages.pl/osx/gtty.md new file mode 100644 index 00000000000000..67caca04926190 --- /dev/null +++ b/pages.pl/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> To polecenie jest aliasem `-p linux tty`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux tty` diff --git a/pages.pl/osx/guname.md b/pages.pl/osx/guname.md new file mode 100644 index 00000000000000..f92561a2ee5d71 --- /dev/null +++ b/pages.pl/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> To polecenie jest aliasem `-p linux uname`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux uname` diff --git a/pages.pl/osx/gunexpand.md b/pages.pl/osx/gunexpand.md new file mode 100644 index 00000000000000..7b01d23587290f --- /dev/null +++ b/pages.pl/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> To polecenie jest aliasem `-p linux unexpand`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux unexpand` diff --git a/pages.pl/osx/guniq.md b/pages.pl/osx/guniq.md new file mode 100644 index 00000000000000..aa5e300780e536 --- /dev/null +++ b/pages.pl/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> To polecenie jest aliasem `-p linux uniq`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux uniq` diff --git a/pages.pl/osx/gunits.md b/pages.pl/osx/gunits.md new file mode 100644 index 00000000000000..c6726a0e0c7aa6 --- /dev/null +++ b/pages.pl/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> To polecenie jest aliasem `-p linux units`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux units` diff --git a/pages.pl/osx/gunlink.md b/pages.pl/osx/gunlink.md new file mode 100644 index 00000000000000..26d53ca5b3372a --- /dev/null +++ b/pages.pl/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> To polecenie jest aliasem `-p linux unlink`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux unlink` diff --git a/pages.pl/osx/gupdatedb.md b/pages.pl/osx/gupdatedb.md new file mode 100644 index 00000000000000..af1037ba084a73 --- /dev/null +++ b/pages.pl/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> To polecenie jest aliasem `-p linux updatedb`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux updatedb` diff --git a/pages.pl/osx/guptime.md b/pages.pl/osx/guptime.md new file mode 100644 index 00000000000000..030a4990c228bd --- /dev/null +++ b/pages.pl/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> To polecenie jest aliasem `-p linux uptime`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux uptime` diff --git a/pages.pl/osx/gusers.md b/pages.pl/osx/gusers.md new file mode 100644 index 00000000000000..69909dd05e632c --- /dev/null +++ b/pages.pl/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> To polecenie jest aliasem `-p linux users`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux users` diff --git a/pages.pl/osx/gvdir.md b/pages.pl/osx/gvdir.md new file mode 100644 index 00000000000000..f9fc467435415c --- /dev/null +++ b/pages.pl/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> To polecenie jest aliasem `-p linux vdir`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux vdir` diff --git a/pages.pl/osx/gwc.md b/pages.pl/osx/gwc.md new file mode 100644 index 00000000000000..a3a152272c328a --- /dev/null +++ b/pages.pl/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> To polecenie jest aliasem `-p linux wc`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux wc` diff --git a/pages.pl/osx/gwhich.md b/pages.pl/osx/gwhich.md new file mode 100644 index 00000000000000..489c1e825311c9 --- /dev/null +++ b/pages.pl/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> To polecenie jest aliasem `-p linux which`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux which` diff --git a/pages.pl/osx/gwho.md b/pages.pl/osx/gwho.md new file mode 100644 index 00000000000000..149a01f8e0ce86 --- /dev/null +++ b/pages.pl/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> To polecenie jest aliasem `-p linux who`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux who` diff --git a/pages.pl/osx/gwhoami.md b/pages.pl/osx/gwhoami.md new file mode 100644 index 00000000000000..6af23891335d92 --- /dev/null +++ b/pages.pl/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> To polecenie jest aliasem `-p linux whoami`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux whoami` diff --git a/pages.pl/osx/gwhois.md b/pages.pl/osx/gwhois.md new file mode 100644 index 00000000000000..9b419cec281346 --- /dev/null +++ b/pages.pl/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> To polecenie jest aliasem `-p linux whois`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux whois` diff --git a/pages.pl/osx/gxargs.md b/pages.pl/osx/gxargs.md new file mode 100644 index 00000000000000..572a2ab350e1ea --- /dev/null +++ b/pages.pl/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> To polecenie jest aliasem `-p linux xargs`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux xargs` diff --git a/pages.pl/osx/gyes.md b/pages.pl/osx/gyes.md new file mode 100644 index 00000000000000..a4da6b44d82142 --- /dev/null +++ b/pages.pl/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> To polecenie jest aliasem `-p linux yes`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr -p linux yes` diff --git a/pages.pl/osx/launchd.md b/pages.pl/osx/launchd.md new file mode 100644 index 00000000000000..6e0876fe48e62a --- /dev/null +++ b/pages.pl/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> To polecenie jest aliasem `launchctl`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr launchctl` diff --git a/pages.pl/osx/say.md b/pages.pl/osx/say.md new file mode 100644 index 00000000000000..054ef551c97fb2 --- /dev/null +++ b/pages.pl/osx/say.md @@ -0,0 +1,28 @@ +# say + +> Czyta na głos. +> Więcej informacji: . + +- Powiedz na głos: + +`say "{{Lubię jeździć na rowerze.}}"` + +- Przeczytaj z pliku: + +`say --input-file={{ścieżka/do/pliku.txt}}` + +- Przeczytaj używając konkretnego głosu i prędkości mowy: + +`say --voice={{głos}} --rate={{słowa_na_minutę}} "{{Przepraszam Dave, ale nie mogę Ci na to pozwolić.}}"` + +- Pokaż listę dostępnych głosów, różne głosy obsługują różne języki: + +`say --voice="?"` + +- Powiedz coś po angielsku: + +`say --voice={{Alex}} "{{Here's to the Crazy Ones.}}"` + +- Stwórz plik audio z tekstu: + +`say --output-file={{ścieżka/do/pliku.aiff}} "{{Litwo, ojczyzno moja!}}"` diff --git a/pages.pl/osx/security.md b/pages.pl/osx/security.md new file mode 100644 index 00000000000000..80085733153cda --- /dev/null +++ b/pages.pl/osx/security.md @@ -0,0 +1,32 @@ +# security + +> Administruj pękami kluczy, kluczami, certyfikatami oraz framework'iem Security. +> Więcej informacji: . + +- Wypisz wszystkie dostępne pęki kluczy: + +`security list-keychains` + +- Usuń zadany pęk kluczy: + +`security delete-keychain {{ścieżka/do/pliku.keychain}}` + +- Utwórz pęk kluczy: + +`security create-keychain -p {{hasło}} {{ścieżka/do/pliku.keychain}}` + +- Ustaw certyfikat który ma być używany przy stronie internetowej lub [s]erwisie używając nazwy własnej (ta komenda nie powiedzie się gdy więcej niż jeden certyfikat ma taką samą nazwę własną): + +`security set-identity-preference -s {{URL|hostname|serwis}} -c "{{nazwa_własna}}" {{ścieżka/do/pliku.keychain}}` + +- Dodaj certyfikat z pliku do pęku [k]luczy (Jeżeli parametr -k nie został podany, domyślny pęk kluczy zostanie wykorzystany): + +`security add-certificates -k {{plik.keychain}} {{ścieżka/do/certyfikatu.keychain.pem}}` + +- Dodaj certyfikat CA do ustawień zaufania dla każdego użytkownika: + +`security add-trusted-cert -k {{ścieżka/do/pęku_kluczy_użytkownika.keychain-db}} {{ścieżka/do/certyfikatu_ca.pem}}` + +- Usuń certyfikat CA z ustawień zaufania dla każdego użytkownika: + +`security remove-trusted-cert {{ściieżka/do/certyfikatu_ca.pem}}` diff --git a/pages.pl/osx/uuidgen.md b/pages.pl/osx/uuidgen.md new file mode 100644 index 00000000000000..90958c5a37192d --- /dev/null +++ b/pages.pl/osx/uuidgen.md @@ -0,0 +1,8 @@ +# uuidgen + +> Wygeneruj nowy UUID (Universally Unique IDentifier). +> Więcej informacji: . + +- Wygneruj ciąg znaków UUID: + +`uuidgen` diff --git a/pages.pl/osx/w.md b/pages.pl/osx/w.md new file mode 100644 index 00000000000000..075d185f0df250 --- /dev/null +++ b/pages.pl/osx/w.md @@ -0,0 +1,17 @@ +# w + +> Pokazuje kto jest zalogowany i co aktualnie robi. +> Wyświetla login, TTY, zdalny host, czas zalogowania, czas bezczynności i aktualny proces. +> Więcej informacji: . + +- Pokazuje informacje o aktualnie zalogowanych użytkownikach: + +`w` + +- Pokazuje aktualnie zalogowanych użytkowników bez nagłówka: + +`w -h` + +- Pokazuje aktualnie zalogowanych użytkowników posortowanych po czasie bezczynności: + +`w -i` diff --git a/pages.pl/osx/wc.md b/pages.pl/osx/wc.md new file mode 100644 index 00000000000000..21b0feb278bfba --- /dev/null +++ b/pages.pl/osx/wc.md @@ -0,0 +1,24 @@ +# wc + +> Zlicza linie, słowa, i bajty. +> Więcej informacji: . + +- Policz linie w pliku: + +`wc -l {{ścieżka/do/pliku}}` + +- Policz słowa w pliku: + +`wc -w {{ścieżka/do/pliku}}` + +- Policz znaki (bajty) w pliku: + +`wc -c {{ścieżka/do/pliku}}` + +- Policz znaki w pliku (uwzględniając znaki zapisane więcej niż jednym bajtem): + +`wc -m {{ścieżka/do/pliku}}` + +- Użyj standardowego wejścia aby policzyć po kolei linie, słowa, i znaki (bajty): + +`{{find .}} | wc` diff --git a/pages.pl/windows/choco-apikey.md b/pages.pl/windows/choco-apikey.md new file mode 100644 index 00000000000000..1fcfcb698416d9 --- /dev/null +++ b/pages.pl/windows/choco-apikey.md @@ -0,0 +1,20 @@ +# choco apikey + +> Zarządzanie kluczami API dla żródeł Chocolatey. +> Więcej informacji: . + +- Wyświetlanie listy żródeł wraz z kluczami API: + +`choco apikey` + +- Wyświetlanie konkrentego źródła wraz z kluczem API: + +`choco apikey --source "{{adres_url}}"` + +- Ustawienie klucza API dla podanego źródła: + +`choco apikey --source "{{adres_url}}" --key "{{klucz_api}}"` + +- Usuwanie klucza API dla podanego źródła: + +`choco apikey --source "{{adres_url}}" --remove` diff --git a/pages.pl/windows/choco-feature.md b/pages.pl/windows/choco-feature.md new file mode 100644 index 00000000000000..1ae88f29ec6bb3 --- /dev/null +++ b/pages.pl/windows/choco-feature.md @@ -0,0 +1,16 @@ +# choco feature + +> Zarządzanie dostępnymi funkcjani Chocolatey. +> Więcej informacji: . + +- Wyświetlanie listy dostępnych funkcji: + +`choco feature list` + +- Włączenie podanej funkcji: + +`choco feature enable --name {{nazwa_funkcji}}` + +- Wyłączenie podanej funkcji: + +`choco feature disable --name {{nazwa_funkcji}}` diff --git a/pages.pl/windows/choco-info.md b/pages.pl/windows/choco-info.md new file mode 100644 index 00000000000000..9988a83326fa7f --- /dev/null +++ b/pages.pl/windows/choco-info.md @@ -0,0 +1,20 @@ +# choco info + +> Wyświetlanie szczegółowych informacji o pakiecie Chocolatey. +> Więcej informacji: . + +- Wyświetlanie informacji dotyczących podanego pakietu: + +`choco info {{pakiet}}` + +- Wyświetlanie informacji dotyczących podanego pakietu zainstalowanego lokalnie: + +`choco info {{pakiet}} --local-only` + +- Ustawienie określonego źródła/repozytorium pakietów z którego pobrane zostaną informacje: + +`choco info {{pakiet}} --source {{adres_url|alias}}` + +- Podanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco info {{pakiet}} --user {{nazwa_użytkownika}} --password {{hasło}}` diff --git a/pages.pl/windows/choco-install.md b/pages.pl/windows/choco-install.md new file mode 100644 index 00000000000000..952b92ec900ae3 --- /dev/null +++ b/pages.pl/windows/choco-install.md @@ -0,0 +1,36 @@ +# choco install + +> Instalacja jednej lub więcej paczek zarządzanych przez Chocolatey. +> Więcej informacji: . + +- Instalacja jednego lub więcej pakietów (oddzielonych spacją): + +`choco install {{nazwa_pakietu(pakietów)}}` + +- Instakacja pakietów z użyciem podanego pliku konfiguracyjnego: + +`choco install {{ścieżka/do/plik_konfiguracyjny.config}}` + +- Instalacja podanej specyfikacji nuspec lub pliku nupkg: + +`choco install {{ścieżka/do/pliku}}` + +- Instalacja konkretnej podanej wersji pakietu: + +`choco install {{pakiet}} --version {{wersja}}` + +- Zezwól na instalacjie wielu wersji danego pakietu: + +`choco install {{pakiet}} --allow-multiple` + +- Automatyczna akceptacja wszystkich monitów podczas instalacji: + +`choco install {{pakiet}} --yes` + +- Ustawienie określonego źródła/repozytorium pakietów: + +`choco install {{pakiet}} --source {{adres_url|alias}}` + +- Podanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco install {{pakiet}} --user {{nazwa_użytkownika}}} --password {{hasło}}` diff --git a/pages.pl/windows/choco-list.md b/pages.pl/windows/choco-list.md new file mode 100644 index 00000000000000..667e408ea0d5d0 --- /dev/null +++ b/pages.pl/windows/choco-list.md @@ -0,0 +1,28 @@ +# choco list + +> Wyświetlanie listy pakietów Chocolatey. +> Więcej informacji: . + +- Wyświetlanie wszystkich dostępnych pakietów: + +`choco list` + +- Wyświetlanie wszystkich lokalnie zainstalowanych pakietów: + +`choco list --local-only` + +- Wyświetlanie listy pakietów zawierającej lokalnie zainstalowane programy: + +`choco list --include-programs` + +- Wyświetlanie listy wyłącznie zatwierdzonych pakietów: + +`choco list --approved-only` + +- Wyświetlanie listy pakietów dpstępnych w podanym źródle/repozytorium: + +`choco list --source {{adres_url|alias}}` + +- PPodanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco list --user {{nazwa_użytkownika}} --password {{hasło}}` diff --git a/pages.pl/windows/choco-new.md b/pages.pl/windows/choco-new.md new file mode 100644 index 00000000000000..a13d774b0c4cee --- /dev/null +++ b/pages.pl/windows/choco-new.md @@ -0,0 +1,24 @@ +# choco new + +> Generowanie nowych specyfikacji pakietów Chocolatey. +> Więcej informacji: . + +- Utwórz nowy szkielet pakietu: + +`choco new {{nazwa_pakietu}}` + +- Utwórz nowy pakiet podając konkretną wersję: + +`choco new {{nazwa_pakietu}} --version {{wersja}}` + +- Utwórz nowy pakiet podając podając nazwę opiekuna: + +`choco new {{nazwa_pakietu}} --maintainer {{nazwa_opiekuna}}` + +- Utwórz nowy pakiet w podanym katalogu wyjściowym: + +`choco new {{nazwa_pakietu}} --output-directory {{ścieżka/do/katalogu/wyjściowego}}` + +- Utwórz nowy pakiet podając specyficzne adresy URL instalatoró dla wersji 32-bit i 64-bit: + +`choco new {{nazwa_pakietu}} url="{{adres_url}}" url64="{{adres_url}}"` diff --git a/pages.pl/windows/choco-outdated.md b/pages.pl/windows/choco-outdated.md new file mode 100644 index 00000000000000..10ca5d85f18595 --- /dev/null +++ b/pages.pl/windows/choco-outdated.md @@ -0,0 +1,20 @@ +# choco outdated + +> Sprawdzenie nieaktualnych pakietów zarządzanych przez Chocolatey. +> Więcej informacji: . + +- Wyświetlanie listy nieaktualnych pakietów w formie tabeli: + +`choco outdated` + +- Pominięcie/ignorowanie obecnie przypiętych pakietów: + +`choco outdated --ignore-pinned` + +- Ustawienie określonego źródła do sprawdzenia aktualności pakietów: + +`choco outdated --source {{adres_url|alias}}` + +- Podanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco outdated --user {{nazwa_użytkownika}} --password {{hasło}}` diff --git a/pages.pl/windows/choco-pack.md b/pages.pl/windows/choco-pack.md new file mode 100644 index 00000000000000..6f37514c07c045 --- /dev/null +++ b/pages.pl/windows/choco-pack.md @@ -0,0 +1,16 @@ +# choco pack + +> Pakowanie specyfikacji NuGet do pliku nupkg. +> Więcej informacji: . + +- Spakuj specyfikację NuGet do pliku nupkg: + +`choco pack {{ścieża/do/specyfikacji}}` + +- Spakuj specyfikację NuGet podajęc wersję pliku wyjściowego: + +`choco pack {{ścieża/do/specyfikacji}} --version {{wersja}}` + +- Spakuj specyfikację NuGet do konkretnego katalogu wyjściowego: + +`choco pack {{ścieża/do/specyfikacji}} --output-directory {{ścieżka/do/katalogu/wyjściowego}}` diff --git a/pages.pl/windows/choco-pin.md b/pages.pl/windows/choco-pin.md new file mode 100644 index 00000000000000..f543b1f1dcda85 --- /dev/null +++ b/pages.pl/windows/choco-pin.md @@ -0,0 +1,21 @@ +# choco pin + +> Przypięcie obecnej bądź podanej wersji dla danego pakietu zarządzanego przez Chocolatey. +> Przypięte pakiety są automatycznie pomijane podczas aktualizacji pakietów. +> Więcej informacji: . + +- Wyświetlanie listy obecnie przypiętych pakietów wraz z wersjami: + +`choco pin list` + +- Przypnij pakiet w jego obecnej wersji: + +`choco pin add --name {{pakiet}}` + +- Przypnij pakiet w podanej wersji: + +`choco pin add --name {{pakiet}} --version {{wersja}}` + +- Odepnij dany pakiet: + +`choco pin remove --name {{pakiet}}` diff --git a/pages.pl/windows/choco-search.md b/pages.pl/windows/choco-search.md new file mode 100644 index 00000000000000..91e9606b936405 --- /dev/null +++ b/pages.pl/windows/choco-search.md @@ -0,0 +1,28 @@ +# choco search + +> Wyszukiwanie pakietów Chocolatey dostępnych lokalnie lub w zdalnych źródłach/repozytoriach. +> Więcej informacji: . + +- Wyszkukiwanie pakietów: + +`choco search {{kwerenda}}` + +- Wyszkukiwanie lokalnych pakietów: + +`choco search {{kwerenda}} --local-only` + +- Wyświetlanie wyłącznie dokładnych dopasowań do podanej kwerendy/szukanej frazy: + +`choco search {{kwerenda}} --exact` + +- Automatyczna akceptacja wszystkich monitów (--yes): + +`choco search {{kwerenda}} --yes` + +- Ustawienie określonego źródła do wyszukiwania pakietów: + +`choco search {{kwerenda}} --source {{adres_url|alias}}` + +- Podanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco search {{kwerenda}} --user {{nazwa_użytkownika}} --password {{hasło}}` diff --git a/pages.pl/windows/choco-source.md b/pages.pl/windows/choco-source.md new file mode 100644 index 00000000000000..a3884c0c518cb2 --- /dev/null +++ b/pages.pl/windows/choco-source.md @@ -0,0 +1,32 @@ +# choco source + +> Zarządzanie źrółami/repozytorium pakietów Chocolatey. +> Więcej informacji: . + +- Wylistowanie aktualnie dostępmnych źródeł: + +`choco source list` + +- Dodanie nowego źródła: + +`choco source add --name {{nazwa}} --source {{adres_url}}` + +- Dodanie nowego źródła z użyciem poświadczeń: + +`choco source add --name {{nazwa}} --source {{adres_url}} --user {{nazwa_użytkownika}}} --password {{hasło}}` + +- Dodanie nowego źródła z użyciem certyfikatu: + +`choco source add --name {{nazwa}} --source {{adres_url}} --cert {{ścieżka/do/certyfikatu}}` + +- Włączenie danego źródła/repozytorium pakietów: + +`choco source enable --name {{nazwa}}` + +- Wyłączenie danego źródła/repozytorium pakietów: + +`choco source disable --name {{nazwa}}` + +- Usunięcie danego źródła/repozytorium: + +`choco source remove --name {{nazwa}}` diff --git a/pages.pl/windows/choco-uninstall.md b/pages.pl/windows/choco-uninstall.md new file mode 100644 index 00000000000000..692f6154ee882c --- /dev/null +++ b/pages.pl/windows/choco-uninstall.md @@ -0,0 +1,24 @@ +# choco uninstall + +> Odinstalowanie jednego lub więcej pakietów zarządzanych przez Chocolatey. +> Więcej informacji: . + +- Odinstalowanie jednego lub więcej pakietów (oddzielonych spacją): + +`choco uninstall {{{pakiet(pakietów)}}` + +- Odinstalowanie konkretnej wersji pakietu: + +`choco uninstall {{pakiet}} --version {{wersja}}` + +- Automatyczna akceptacja wszystkich monitów podczas deinstalacji pakietu: + +`choco uninstall {{pakiet}} --yes` + +- Odinstalowanie wszystkich zależności podczas procesu deinstalacji danego pakietu/pakietów: + +`choco uninstall {{pakiet}} --remove-dependencies` + +- Odinstalowanie wszystkich pakietów: + +`choco uninstall all` diff --git a/pages.pl/windows/choco-upgrade.md b/pages.pl/windows/choco-upgrade.md new file mode 100644 index 00000000000000..f84e66a6e7809e --- /dev/null +++ b/pages.pl/windows/choco-upgrade.md @@ -0,0 +1,32 @@ +# choco upgrade + +> Aktualizacja jednej lub więcej paczek zarządzanych przez Chocolatey. +> Więcej informacji: . + +- Aktualizacja jednego lub więcej pakietów (oddzielonych spacją): + +`choco upgrade {{pakiet(pakietów)}}` + +- Aktualizacja pakietu do konkretnej wersji: + +`choco upgrade {{pakiet}}` + +- Aktualizacja wszystkich pakietów zarządzanych przez Chocolatey: + +`choco upgrade all` + +- Uaktualnij wszystkie pakiety z wyjątkiem określonych pakietów rozdzielanych przecinkami: + +`choco upgrade all --except "{{pakiet(pakietów)}}"` + +- Automatyczna akceptacja wszystkich monitów podczas aktualizacji pakietu (--yes): + +`choco upgrade {{pakiet}} --yes` + +- Ustawienie określonego źródła/repozytorium pakietów: + +`choco upgrade {{pakiet}} --source {{adres_url|alias}}` + +- Podanie nazwy użytkownika i hasła do uwierzytelnienia: + +`choco upgrade {{pakiet}} --user {{nazwa_użytkownika}} --password {{hasło}}` diff --git a/pages.pl/windows/choco.md b/pages.pl/windows/choco.md new file mode 100644 index 00000000000000..e34911511c9cc1 --- /dev/null +++ b/pages.pl/windows/choco.md @@ -0,0 +1,21 @@ +# choco + +> Interfejs wiersza polecenia dla menadżera pakietów Chocolatey. +> Niektóre podkomendy takie jak `choco install` posiadają osobną dokumentację. +> Więcej informacji: . + +- Wykonanie podkomendy: + +`choco {{komenda}}` + +- Wyświetlenie ogólnej pomocy: + +`choco -?` + +- Wyświetlenie pomocy dla konkretnej podkomendy: + +`choco {{komenda}} -?` + +- Wyświetlenie zainstalowanej wersji Chocolatey + +`choco --version` diff --git a/pages.pl/windows/chrome.md b/pages.pl/windows/chrome.md new file mode 100644 index 00000000000000..19d68fc1e5221e --- /dev/null +++ b/pages.pl/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> To polecenie jest aliasem `chromium`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr chromium` diff --git a/pages.pl/windows/cinst.md b/pages.pl/windows/cinst.md new file mode 100644 index 00000000000000..e407f9ddddc203 --- /dev/null +++ b/pages.pl/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> To polecenie jest aliasem `choco install`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr choco install` diff --git a/pages.pl/windows/clist.md b/pages.pl/windows/clist.md new file mode 100644 index 00000000000000..1fa020d111db0b --- /dev/null +++ b/pages.pl/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> To polecenie jest aliasem `choco list`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr choco list` diff --git a/pages.pl/windows/cpush.md b/pages.pl/windows/cpush.md new file mode 100644 index 00000000000000..57fe433dc9f8f5 --- /dev/null +++ b/pages.pl/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> To polecenie jest aliasem `choco-push`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr choco-push` diff --git a/pages.pl/windows/cuninst.md b/pages.pl/windows/cuninst.md new file mode 100644 index 00000000000000..cec61420bb49dc --- /dev/null +++ b/pages.pl/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> To polecenie jest aliasem `choco uninstall`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr choco uninstall` diff --git a/pages.pl/windows/curl.md b/pages.pl/windows/curl.md new file mode 100644 index 00000000000000..8b261bb982f85e --- /dev/null +++ b/pages.pl/windows/curl.md @@ -0,0 +1,15 @@ +# curl + +> W PowerShell polecenie to może być aliasem polecenia `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`: + +`curl --version` + +- Zobacz dokumentację orginalnego polecenia `curl`: + +`tldr curl -p common` + +- Zobacz dokumentację polecenia PowerShell `Invoke-WebRequest`: + +`tldr invoke-webrequest` diff --git a/pages.pl/windows/iwr.md b/pages.pl/windows/iwr.md new file mode 100644 index 00000000000000..676b61ea80baaa --- /dev/null +++ b/pages.pl/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> To polecenie jest aliasem `invoke-webrequest`. + +- Zobacz dokumentację orginalnego polecenia: + +`tldr invoke-webrequest` diff --git a/pages.pl/windows/msg.md b/pages.pl/windows/msg.md new file mode 100644 index 00000000000000..3e4c975f777b59 --- /dev/null +++ b/pages.pl/windows/msg.md @@ -0,0 +1,24 @@ +# msg + +> Wyślij wiadomość do wybranego użytnownika lub sesji. +> Więcej informacji: . + +- Wysyła wiadomość do użytkownika lub sesji: + +`msg {{nazwa_użytkownika|nazwa_sesji|identyfikator_sesji}} {{wiadomość}}` + +- Wyślij wiadomość ze standardowego wejścia: + +`echo "{{wiadomość}}" | msg {{nazwa_użytkownika|nazwa_sesji|identyfikator_sesji}}` + +- Wyślij wiadomość to zdalnej maszyny: + +`msg /server:{{nazwa_serwera}} {{nazwa_użytkownika|nazwa_sesji|identyfikator_sesji}}` + +- Wyślij wiadomość do wszystkich użytkowników aktualnej maszyny: + +`msg *` + +- Wyślij wiadomość z opóźnieniem: + +`msg /time:{{seconds}}` diff --git a/pages.pl/windows/print.md b/pages.pl/windows/print.md new file mode 100644 index 00000000000000..96e2a4db5f6828 --- /dev/null +++ b/pages.pl/windows/print.md @@ -0,0 +1,12 @@ +# print + +> Wyślij plik tekstowy do drukarki. +> Więcej informacji: . + +- Drukuj plik tekstowy używając domyślnej drukarki: + +`print {{ścieżka/do/pliku}}` + +- Drukuj plik tekstowy używakąc wybranej drukarki: + +`print /d:{{drukarka}} {{ścieżka/do/pliku}}` diff --git a/pages.pl/windows/pwsh-where.md b/pages.pl/windows/pwsh-where.md new file mode 100644 index 00000000000000..1c24e11ce3ae19 --- /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ę orginalnego polecenia: + +`tldr Where-Object` diff --git a/pages.pl/windows/rd.md b/pages.pl/windows/rd.md new file mode 100644 index 00000000000000..7a5df0d5e26ff7 --- /dev/null +++ b/pages.pl/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> To polecenie jest aliasem `rmdir`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr rmdir` diff --git a/pages.pl/windows/set.md b/pages.pl/windows/set.md new file mode 100644 index 00000000000000..92dfb7d010fbd1 --- /dev/null +++ b/pages.pl/windows/set.md @@ -0,0 +1,20 @@ +# set + +> Wyświetl lub ustaw zmienne środowiskowe dla bieżącej instancji CMD. +> Więcej informacji: . + +- Lista wszystkich bieżących zmiennych środowiskowych: + +`set` + +- Ustaw zmienną środowiskową na określoną wartość: + +`set {{nazwa}}={{wartość}}` + +- Wymień zmienne środowiskowe zaczynające się od podanego ciągu znaków: + +`set {{nazwa}}` + +- Pyta użytkownika o wartość dla określonej zmiennej: + +`set /p {{nazwa}}={{wprowadzona_wartość}}` diff --git a/pages.pl/windows/sls.md b/pages.pl/windows/sls.md new file mode 100644 index 00000000000000..aa7964eab8c964 --- /dev/null +++ b/pages.pl/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> To polecenie jest aliasem `where-object`. +> Więcej informacji: . + +- Zobacz dokumentację orginalnego polecenia: + +`tldr where-object` diff --git a/pages.pl/windows/time.md b/pages.pl/windows/time.md new file mode 100644 index 00000000000000..137ebdd89ab324 --- /dev/null +++ b/pages.pl/windows/time.md @@ -0,0 +1,12 @@ +# time + +> Wyświetl lub ustaw czas systemowy. +> Więcej informacji: . + +- Wyświetl aktualny czas systemowy i zapytaj o wprowadzenie nowego czasu (pozostawić puste, aby zachować niezmieniony czas): + +`time` + +- Wyświetl aktualny czas systemowy bez pytania o nowy czas: + +`time /t` diff --git a/pages.pl/windows/ver.md b/pages.pl/windows/ver.md new file mode 100644 index 00000000000000..5f678688dfad22 --- /dev/null +++ b/pages.pl/windows/ver.md @@ -0,0 +1,8 @@ +# ver + +> Wyświetl aktualną wersję systemu DOS lub Windows. +> Więcej informacji: . + +- Wyświetl aktualną wersję systemu: + +`ver` diff --git a/pages.pl/windows/wget.md b/pages.pl/windows/wget.md new file mode 100644 index 00000000000000..2e9d4e63ee5134 --- /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ę orginalnego polecenia: + +`tldr wget -p common` diff --git a/pages.pl/windows/whoami.md b/pages.pl/windows/whoami.md new file mode 100644 index 00000000000000..b7a8f5f9e5f300 --- /dev/null +++ b/pages.pl/windows/whoami.md @@ -0,0 +1,24 @@ +# whoami + +> Wyświetlenie szczegółów dotyczących bieżącego użytkownika. +> Więcej informacji: . + +- Wyświetl szczegółów dotyczących bieżącego użytkownika: + +`whoami` + +- Wyświetl grupy, których członkiem jest bieżący użytkownik: + +`whoami /groups` + +- Wyświetl uprawnienia bieżącego użytkownika: + +`whoami /priv` + +- Wyświetl główną nazwę użytkownika (UPN) bieżącego użytkownika: + +`whoami /upn` + +- Wyświetl identyfikator logowania bieżącego użytkownika: + +`whoami /logonid` diff --git a/pages.pl/windows/xcopy.md b/pages.pl/windows/xcopy.md new file mode 100644 index 00000000000000..d1ab192dbe766b --- /dev/null +++ b/pages.pl/windows/xcopy.md @@ -0,0 +1,36 @@ +# xcopy + +> Kopiuje pliki i katalogi, w tym podkatalogi. +> Więcej informacji: . + +- Skopiuj plik(i) do określonego miejsca docelowego: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}}` + +- Wyświetl listę plików, które zostaną skopiowane przed skopiowaniem: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /p` + +- Skopiuj tylko strukturę katalogów, z wyłączeniem plików: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /t` + +- Dołącz puste katalogi podczas kopiowania: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /e` + +- Zachowaj źródłową listę ACL w miejscu docelowym: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /o` + +- Zezwól na wznawianie po utracie połączenia sieciowego: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /z` + +- Wyłącz monit, gdy plik istnieje w miejscu docelowym: + +`xcopy {{ścieżka/do/pliku_lub_katalogu}} {{ścieżka/do/miejsca_przeznaczenia}} /y` + +- Wyświetl szczegółowe informacje dotyczące polecenia: + +`xcopy /?` diff --git a/pages.pt_BR/android/am.md b/pages.pt_BR/android/am.md new file mode 100644 index 00000000000000..efa6692ff6075a --- /dev/null +++ b/pages.pt_BR/android/am.md @@ -0,0 +1,20 @@ +# am + +> Gerenciador de atividades do Android (Activity Manager). +> Mais informações: . + +- Inicia uma activity específica: + +`am start -n {{com.android.settings/.Settings}}` + +- Inicia uma activity e passa dados para ela: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Inicia uma activity correspondente a uma ação e categoria específicas: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Converte uma intent em uma URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.pt_BR/android/bugreport.md b/pages.pt_BR/android/bugreport.md new file mode 100644 index 00000000000000..4743782206cd93 --- /dev/null +++ b/pages.pt_BR/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Mostra um relatório de bugs do Android. +> Esse comando só pode ser utilizado por meio de `adb shell`. +> Mais informações: . + +- Mostra um relatório completo de bugs de um dispositivo Android: + +`bugreport` diff --git a/pages.pt_BR/android/bugreportz.md b/pages.pt_BR/android/bugreportz.md new file mode 100644 index 00000000000000..379638ee764e4b --- /dev/null +++ b/pages.pt_BR/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> 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: . + +- Mostra um relatório completo de bugs de um dispositivo Android em formato .zip: + +`bugreportz` + +- Mostra o progresso de `bugreportz` em execução: + +`bugreportz -p` + +- Mostra a versão de `bugreportz`: + +`bugreportz -v` + +- Mostra a ajuda: + +`bugreportz -h` diff --git a/pages.pt_BR/android/cmd.md b/pages.pt_BR/android/cmd.md new file mode 100644 index 00000000000000..6dab949761e10b --- /dev/null +++ b/pages.pt_BR/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Gerenciador de serviços do Android (service manager). +> Mais informações: . + +- Lista todos os serviços em execução: + +`cmd -l` + +- Chama um serviço específico: + +`cmd {{alarm}}` + +- Chama um serviço com parâmetros: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.pt_BR/android/dalvikvm.md b/pages.pt_BR/android/dalvikvm.md new file mode 100644 index 00000000000000..8da4a64fb46ba9 --- /dev/null +++ b/pages.pt_BR/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> A máquina virtual Java do Android. +> Mais informações: . + +- Inicia um programa Java: + +`dalvikvm -classpath {{caminho/para/arquivo.jar}} {{nome_da_classe}}` diff --git a/pages.pt_BR/android/dumpsys.md b/pages.pt_BR/android/dumpsys.md new file mode 100644 index 00000000000000..13724455b21b60 --- /dev/null +++ b/pages.pt_BR/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Fornece informações sobre os serviços do sistema Android. +> Este comando só pode ser usado através de `adb shell`. +> Mais informações: . + +- Gera um diagnóstico de todos os serviços do sistema: + +`dumpsys` + +- Gera um diagnóstico de um serviço do sistema específico: + +`dumpsys {{servico}}` + +- Lista todos os serviços que o `dumpsys` pode obter informações: + +`dumpsys -l` + +- Lista argumentos específicos-de-um-serviço para um serviço: + +`dumpsys {{servico}} -h` + +- Omite um serviço em específico do diagnóstico: + +`dumpsys --skip {{servico}}` + +- Específica um periodo de _timeout_ (por padrão é 10s): + +`dumpsys -t {{segundos}}` diff --git a/pages.pt_BR/android/getprop.md b/pages.pt_BR/android/getprop.md new file mode 100644 index 00000000000000..be6e5a1a1d5560 --- /dev/null +++ b/pages.pt_BR/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Obtém informações sobre propriedades do sistema Android (system props). +> Mais informações: . + +- Mostra todas as propriedades do sistema: + +`getprop` + +- Mostra o valor de uma propriedade específica: + +`getprop {{prop}}` + +- Mostra o nível de API: + +`getprop {{ro.build.version.sdk}}` + +- Mostra a versão do Android: + +`getprop {{ro.build.version.release}}` + +- Mostra o modelo do dispositivo: + +`getprop {{ro.vendor.product.model}}` + +- Mostra o status de desbloqueio OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Mostra o endereço MAC da placa de Wi-Fi do dispositivo: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.pt_BR/android/input.md b/pages.pt_BR/android/input.md new file mode 100644 index 00000000000000..a5b3aeeb0cfc04 --- /dev/null +++ b/pages.pt_BR/android/input.md @@ -0,0 +1,25 @@ +# input + +> Envia códigos de evento ou gestos de toque para um dispositivo Android. +> Esse comando só pode ser usado através de `adb shell`. +> Mais informações: . + +- Envia um código de evento de um caractere para um dispositivo Android: + +`input keyevent {{codigo_de_evento}}` + +- Envia texto para um dispositivo Android (`%s` representa espaços): + +`input text "{{texto}}"` + +- Envia um único toque para um dispositivo Android: + +`input tap {{x_pos}} {{y_pos}}` + +- Envia um gesto de deslizar para um dispositivo Android: + +`input swipe {{x_inicio}} {{y_inicio}} {{x_fim}} {{y_fim}} {{duração_em_ms}}` + +- Envia um pressionamento longo usando gesto de deslizar para um dispositivo Android: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duração_em_ms}}` diff --git a/pages.pt_BR/android/logcat.md b/pages.pt_BR/android/logcat.md new file mode 100644 index 00000000000000..98538aed6b021f --- /dev/null +++ b/pages.pt_BR/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Despeja um registro de mensagens do sistema. +> Mais informações: . + +- Exibe a saída do registro: + +`logcat` + +- Salva a saída da mensagem de registro em um arquivo: + +`logcat -f {{caminho/para/arquivo}}` + +- Exibe apenas linhas em que a mensagem de registro corresponda a uma expressão regular: + +`logcat --regex {{expressao_regular}}` diff --git a/pages.pt_BR/android/pkg.md b/pages.pt_BR/android/pkg.md new file mode 100644 index 00000000000000..eff658c41f78ee --- /dev/null +++ b/pages.pt_BR/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Gerenciador de pacotes para o Termux. +> Mais informações: . + +- Atualiza todos os pacotes instalados: + +`pkg upgrade` + +- Instala um pacote: + +`pkg install {{pacote}}` + +- Desinstala um pacote: + +`pkg uninstall {{pacote}}` + +- Reinstala um pacote: + +`pkg reinstall {{pacote}}` + +- Busca por um pacote: + +`pkg search {{pacote}}` diff --git a/pages.pt_BR/android/pm.md b/pages.pt_BR/android/pm.md new file mode 100644 index 00000000000000..5672582f7de46f --- /dev/null +++ b/pages.pt_BR/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Executa ações e consultas em pacotes de apps instalados no dispositivo. +> Mais informações: . + +- Exibe uma lista com todos os apps instalados: + +`pm list packages` + +- Exibe uma lista com todos os apps do sistema instalado: + +`pm list packages -s` + +- Exibe uma lista com todos os apps de terceiros instalados: + +`pm list packages -3` + +- Exibe uma lista com todos os apps cujos nomes estejam incluídos em palavras-chave: + +`pm list packages {{palavras_chave}}` + +- Exibe o caminho para o APK de um app: + +`pm path {{app}}` diff --git a/pages.pt_BR/android/screencap.md b/pages.pt_BR/android/screencap.md new file mode 100644 index 00000000000000..e071b383ad3443 --- /dev/null +++ b/pages.pt_BR/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Tira uma scrennshot do display mobile. +> Este comando apenas pode ser usado atraves de `adb shell`. +> Mais informações: . + +- Tira uma screenshot: + +`screencap {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/android/settings.md b/pages.pt_BR/android/settings.md new file mode 100644 index 00000000000000..1c0c60de9a11d2 --- /dev/null +++ b/pages.pt_BR/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Exibe, edita e apaga configurações do sistema Android. +> Mais informações: . + +- Exibe a lista de configurações no namespace `global`: + +`settings list {{global}}` + +- Obtém o valor de uma configuração específica: + +`settings get {{global}} {{airplane_mode_on}}` + +- Edita o valor de uma configuração: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Apaga uma configuração: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.pt_BR/android/wm.md b/pages.pt_BR/android/wm.md new file mode 100644 index 00000000000000..47fa876d06b22a --- /dev/null +++ b/pages.pt_BR/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Exibe informações da tela de um dispositivo Android. +> Esse comando só pode ser usado através de `adb shell`. +> Mais informações: . + +- Mostra o tamanho da tela de um dispositivo Android: + +`wm {{size}}` + +- Mostra a densidade de pixels da tela de um dispositivo Android: + +`wm {{density}}` diff --git a/pages.pt_BR/common/2to3.md b/pages.pt_BR/common/2to3.md new file mode 100644 index 00000000000000..f29585a6073dd2 --- /dev/null +++ b/pages.pt_BR/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> Conversão automática de código Python 2 para Python 3. +> Mais informações: . + +- Mostrar as alterações que seriam feitas sem faze-las de fato (simulação): + +`2to3 {{caminho/para/arquivo.py}}` + +- Converter um arquivo feito em Python 2 para Python 3: + +`2to3 --write {{caminho/para/arquivo.py}}` + +- Converter recurso específico de Python 2 para Python 3: + +`2to3 --write {{caminho/para/arquivo.py}} --fix={{raw_input}} --fix={{print}}` + +- Converter todos os recursos de Python 2 para Python 3, exceto as que específicadas: + +`2to3 --write {{caminho/para/arquivo.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- Mostrar a lista de todas os recursos disponíveis que podem ser convertidas de Python 2 para Python 3: + +`2to3 --list-fixes` + +- Converter todos os arquivos feitos em Python 2 em um diretório para Python 3: + +`2to3 --output-dir={{caminho/para/arquivos_python3}} --write-unchanged-files --nobackups {{caminho/para/arquivos_python2}}` + +- Executar 2to3 com múltiplas threads: + +`2to3 --processes={{4}} --output-dir={{caminho/para/arquivos_python3}} --write --nobackups --no-diff {{caminho/para/arquivos_python2}}` diff --git a/pages.pt_BR/common/7z.md b/pages.pt_BR/common/7z.md index d616cf8f58cdfe..7e9afdec89f2e6 100644 --- a/pages.pt_BR/common/7z.md +++ b/pages.pt_BR/common/7z.md @@ -1,32 +1,36 @@ # 7z > Um compactador de arquivos com alta taxa de compressão. -> Mais informações: . +> Mais informações: . -- Compactar um arquivo ou diretório: +- Compacta um arquivo ou diretório: `7z a {{arquivo_compactado.7z}} {{caminho/arquivo_ou_diretório}}` -- Criptografar um arquivo existente (incluindo cabeçalhos): +- Criptografa um arquivo existente (incluindo cabeçalhos): `7z a {{arquivo_criptografado.7z}} -p{{senha}} -mhe=on {{arquivo.7z}}` -- Descompactar um arquivo mantendo a estrutura de diretórios original: +- Descompacta um arquivo mantendo a estrutura de diretórios original: `7z x {{arquivo.7z}}` -- Descompactar um arquivo em um diretório específicado pelo usuário: +- Descompacta um arquivo em um diretório específicado pelo usuário: -`7z x {{arquivo.7z}} -o{{caminho/diretório}}` +`7z x {{caminho/para/arquivo.7z}} -o{{caminho/para/diretório}}` -- Compactar utilizando um tipo específico de arquivamento/compressão: +- Descompacta um arquivo para a saída padrão: -`7z a -t{{zip|gzip|bzip2|tar}} {{arquivo_compactado.7z}} {{caminho/arquivo_ou_diretório}}` +`7z x {{caminho/para/arquivo_compactado.7z}} -so` -- Exibir os tipos de arquivamento/compressão disponíveis: +- Compacta utilizando um tipo específico de arquivamento/compressão: -`7z i` +`7z a -t{{zip|gzip|bzip2|tar}} {{caminho/para/arquivo_compactado.7z}} {{caminho/para/arquivo_ou_diretório}}` -- Exibir o conteúdo de um arquivo: +- Exibe o conteúdo de um arquivo: `7z l {{arquivo.7z}}` + +- Exibe os tipos de arquivamento/compressão disponíveis: + +`7z i` diff --git a/pages.pt_BR/common/7za.md b/pages.pt_BR/common/7za.md index 04fc1c9850f711..74a0d3ac893b79 100644 --- a/pages.pt_BR/common/7za.md +++ b/pages.pt_BR/common/7za.md @@ -2,24 +2,36 @@ > 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: -`7za a {{arquivo_compactado.7z}} {{caminho/arquivo_ou_diretório}}` +`7za a {{caminho/para/arquivo_compactado.7z}} {{caminho/para/arquivo_ou_diretório}}` + +- Criptografa um arquivo existente (incluindo cabeçalhos): + +`7za a {{caminho/para/arquivo_criptografado.7z}} -p{{senha}} -mhe=on {{caminho/para/arquivo_compactado.7z}}` - Descompactar um arquivo mantendo a estrutura de diretórios original: -`7za x {{arquivo_compactado.7z}}` +`7za x {{caminho/para/arquivo_compactado.7z}}` -- Compactar utilizando um tipo específico de arquivamento/compressão: +- Descompacta um arquivo em um diretório específicado pelo usuário: -`7za a -t{{zip|gzip|bzip2|tar}} {{arquivo_compactado.7z}} {{caminho/arquivo_ou_diretório}}` +`7za x {{caminho/para/arquivo_compactado.7z}} -o{{caminho/para/diretório}}` -- Exibir os tipos de arquivamento/compressão disponíveis: +- Descompacta um arquivo para a saída padrão: -`7za i` +`7za x {{caminho/para/arquivo_compactado.7z}} -so` + +- Compacta utilizando um tipo específico de arquivamento/compressão: -- Exibir o conteúdo de um arquivo: +`7za a -t{{zip|gzip|bzip2|tar}} {{caminho/para/arquivo_compactado.7z}} {{caminho/arquivo_ou_diretório}}` -`7za l {{arquivo.7z}}` +- Exibe o conteúdo de um arquivo: + +`7za l {{caminho/para/arquivo_compactado.7z}}` + +- Exibe os tipos de arquivamento/compressão disponíveis: + +`7za i` diff --git a/pages.pt_BR/common/7zr.md b/pages.pt_BR/common/7zr.md index 955bb0138d0fbe..1b3ad09f8156fa 100644 --- a/pages.pt_BR/common/7zr.md +++ b/pages.pt_BR/common/7zr.md @@ -2,16 +2,32 @@ > 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: -`7zr a {{arquivo_compactado.7z}} {{caminho/arquivo_ou_diretorio}}` +`7zr a {{caminho/para/arquivo_compactado.7z}} {{caminho/para/arquivo_ou_diretorio}}` -- Descompactar um arquivo mantendo a estrutura de diretórios original: +- Criptografa um arquivo existente (incluindo cabeçalhos): + +`7zr a {{arquivo_criptografado.7z}} -p{{senha}} -mhe=on {{caminho/para/arquivo_compactado.7z}}` + +- Descompacta um arquivo mantendo a estrutura de diretórios original: `7zr x {{arquivo_compactado.7z}}` -- Exibir o conteúdo de um arquivo: +- Descompacta um arquivo em um diretório específicado pelo usuário: + +`7zr x {{caminho/para/arquivo_compactado.7z}} -o{{caminho/para/diretório}}` + +- Descompacta um arquivo para a saída padrão: + +`7zr x {{caminho/para/arquivo_compactado.7z}} -so` + +- Exibe o conteúdo de um arquivo: + +`7zr l {{caminho/para/arquivo_compactado.7z}}` + +- Exibe os tipos de arquivamento/compressão disponíveis: -`7zr l {{arquivo_compactado.7z}}` +`7zr i` diff --git a/pages.pt_BR/common/[.md b/pages.pt_BR/common/[.md new file mode 100644 index 00000000000000..fbc085180f721b --- /dev/null +++ b/pages.pt_BR/common/[.md @@ -0,0 +1,33 @@ +# [ + +> Avalia condição. +> Retorna 0 se a condição for verdadeira, 1 se for falsa. +> Mais informações: . + +- Testa se uma determinada variável é igual a uma determinada string: + +`[ "{{variavel}}" == "{{/bin/zsh}}" ]` + +- Testa se uma determinada variável é igual/diferente/maior que/menor que/maior ou igual/menor ou igual a um determinado inteiro: + +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{integer}} ]` + +- Testa se uma determinada variável tem um valor [n]ão vazio: + +`[ -n "${{variavel}}" ]` + +- Testa se uma determinada variável é vazia: + +`[ -z "{{variavel}}" ]` + +- Testa se um arquivo existe: + +`[ -f "{{caminho/para/arquivo}}" ]` + +- Testa se um [d]iretório existe: + +`[ ! -d "{{caminho/para/diretorio}}" ]` + +- Testa se um determinado arquivo ou diretório [e]xiste: + +`[ -e {{caminho/para/arquivo_ou_diretorio}} ]` diff --git a/pages.pt_BR/common/[[.md b/pages.pt_BR/common/[[.md new file mode 100644 index 00000000000000..cda212fb6c3d6c --- /dev/null +++ b/pages.pt_BR/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Verifica tipos de arquivos e compara valores. +> Retorna 0 se a condição é verdadeira, 1 se a condição é falsa. +> Mais informações: . + +- Testa se uma determinada variável é igual/diferente a uma determinada string: + +`[[ ${{variável}} {{==|!=}} "{{string}}" ]]` + +- Testa se uma determinada string está em conformidade com um determinado padrão/regex: + +`[[ ${{variável}} {{==|=~}} {{padrão}} ]]` + +- Testa se uma determinada variável é igual [eq]/não igual [ne]/maior que [gt]/menor que [lt]/maior ou igual que [ge]/menor ou igual que [le] um determinado número: + +`[[ ${{variável}} -{{eq|ne|gt|lt|ge|le}} {{número}} ]]` + +- Testa se uma determinada variável tem um valor [n]ão vazio: + +`[[ -n ${{variável}} ]]` + +- Testa se determinada variável tem um valor va[z]io: + +`[[ -z ${{variável}} ]]` + +- Testa se um determinado arquivo exite[f]: + +`[[ -f {{caminho/para/arquivo}} ]]` + +- Testa se um determinado [d]iretório existe: + +`[[ -d {{caminho/para/diretório}} ]]` + +- Testa se um determinado arquivo ou diretório [e]xiste: + +`[[ -e {{caminho/para/arquivo_ou_diretório}} ]]` diff --git a/pages.pt_BR/common/abduco.md b/pages.pt_BR/common/abduco.md new file mode 100644 index 00000000000000..40f401b6d7eea9 --- /dev/null +++ b/pages.pt_BR/common/abduco.md @@ -0,0 +1,24 @@ +# abduco + +> Gerenciador de sessão no terminal. +> Mais informações: . + +- Lista sessões: + +`abduco` + +- Anexa à uma sessão, criando-a se não existir: + +`abduco -A {{nome}} {{bash}}` + +- Anexa à uma sessão com `dvtm`, criando-a se não existir: + +`abduco -A {{nome}}` + +- Desanexa de uma sessão: + +`Ctrl + \` + +- Anexa à uma sessão no modo read-only (somente leitura): + +`abduco -Ar {{nome}}` diff --git a/pages.pt_BR/common/ac.md b/pages.pt_BR/common/ac.md new file mode 100644 index 00000000000000..7a2d04a62f7cd4 --- /dev/null +++ b/pages.pt_BR/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> Imprime estatisticas do tempo usuários conectados. +> Mais informações: . + +- Imprime a quantidade de tempo que o usuário atual está conectado em horas: + +`ac` + +- Imprime a quantidade de tempo que os usuários estão conectado em horas: + +`ac -p` + +- Imprime a quantidade de tempo que um usuário específico está conectado em horas: + +`ac -p {{nome_do_usuario}}` + +- Imprime a quantidade de tempo que um usuário específico está conectado em horas por dia (com total): + +`ac -dp {{nome_do_usuario}}` diff --git a/pages.pt_BR/common/ack.md b/pages.pt_BR/common/ack.md index 6d79fee726d75e..3c0a85b8c1ebec 100644 --- a/pages.pt_BR/common/ack.md +++ b/pages.pt_BR/common/ack.md @@ -1,7 +1,7 @@ # ack > Uma ferramenta de pesquisa similar ao grep, otimizada para programadores. -> Mais informações: . +> Mais informações: . - Procurar por arquivos que contenham o termo "foo": diff --git a/pages.pt_BR/common/act.md b/pages.pt_BR/common/act.md new file mode 100644 index 00000000000000..10bb812c81f695 --- /dev/null +++ b/pages.pt_BR/common/act.md @@ -0,0 +1,28 @@ +# act + +> Executa GitHub Actions localmente utilizando Docker. +> Mais informações: . + +- Lista acoes disponiveis: + +`act -l` + +- Executa evento padrão: + +`act` + +- Executa evento especifico: + +`act {{tipo_de_evento}}` + +- Executa acao especifica: + +`act -a {{acao_id}}` + +- Nao executa realmente as acoes (i.e. um dry run): + +`act -n` + +- Mostra verbose logs: + +`act -v` diff --git a/pages.pt_BR/common/adb-install.md b/pages.pt_BR/common/adb-install.md new file mode 100644 index 00000000000000..e17a3b5311e056 --- /dev/null +++ b/pages.pt_BR/common/adb-install.md @@ -0,0 +1,20 @@ +# adb install + +> Android Debug Bridge Install: Instalar apps em uma instância do Android emulator ou dispositivos conectados. +> Mais informações: . + +- Instala um app Android em um emulador/dispositivo: + +`adb install {{caminho/para/arquivo.apk}}` + +- Reinstala um app existente, mantendo seus dados: + +`adb install -r {{caminho/para/arquivo.apk}}` + +- Concede todas as permissões listadas no manifesto do app: + +`adb install -g {{caminho/para/arquivo.apk}}` + +- Atualiza rapidamente um app já instalado atualizando apenas as partes do APK que mudaram: + +`adb install --fastdeploy {{caminho/para/arquivo.apk}}` diff --git a/pages.pt_BR/common/adb-shell.md b/pages.pt_BR/common/adb-shell.md index 4e1ed26610a7bf..80e3e6a252879f 100644 --- a/pages.pt_BR/common/adb-shell.md +++ b/pages.pt_BR/common/adb-shell.md @@ -1,36 +1,36 @@ # adb shell > Android Debug Bridge Shell: Executar remotamente comandos shell em instâncias do emulador Android ou dispositivos Android conectados. -> Mais informações: . +> Mais informações: . -- Iniciar um shell interativo remoto no emulador/dispositivo: +- Inicia um shell interativo remoto no emulador/dispositivo: `adb shell` -- Obter todas as propriedades do emulador ou dispositivo: +- Obtém todas as propriedades do emulador ou dispositivo: `adb shell getprop` -- Reverter todas as permissões de tempo de execução para o padrão: +- Reverte todas as permissões de tempo de execução para o padrão: `adb shell pm reset-permissions` -- Revogar uma permissão perigosa para um aplicação: +- Revoga uma permissão perigosa para um aplicação: `adb shell pm revoke {{pacote}} {{permissao}}` -- Acionar um evento: +- Aciona um evento: `adb shell input keyevent {{keycode}}` -- Limpar os dados da aplicação no emulador/dispositivo: +- Limpa os dados da aplicação no emulador/dispositivo: `adb shell pm clear {{pacote}}` -- Iniciar uma atividade no emulator/dispositivo: +- Inicia uma atividade no emulator/dispositivo: `adb shell am start -n {{pacote}}/{{atividade}}` -- Iniciar atividade "home" no emulator/dispositivo: +- Inicia atividade "home" no emulator/dispositivo: `adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.pt_BR/common/adb.md b/pages.pt_BR/common/adb.md new file mode 100644 index 00000000000000..e7b765f4f4335f --- /dev/null +++ b/pages.pt_BR/common/adb.md @@ -0,0 +1,33 @@ +# adb + +> Android Debug Bridge: Comunica com uma instância do emulador Android emulator ou dispositivos conectados. +> Alguns subcomandos tais como `adb shell` possuem sua própria documentação de uso. +> Mais informações: . + +- Checa se o servidor adb está em execução e o iniciar: + +`adb start-server` + +- Encerra o processo do servidor adb: + +`adb kill-server` + +- Inicia uma shell remota no emulador/dispositivo desejado: + +`adb shell` + +- Instala um app Android no emulador/dispositivo: + +`adb install -r {{caminho/para/arquivo.apk}}` + +- Copia um arquivo/pasta do dispositivo desejado: + +`adb pull {{caminho/para/arquivo_ou_pasta_no_dispositivo}} {{caminho/para/pasta_de_destino_local}}` + +- Copia um arquivo/pasta para o dispositivo desejado: + +`adb push {{caminho/para/arquivo_ou_pasta_local}} {{caminho/para/pasta_de_destino_no_dispositivo}}` + +- Exibe a lista de dispositivos conectados: + +`adb devices` diff --git a/pages.pt_BR/common/ag.md b/pages.pt_BR/common/ag.md new file mode 100644 index 00000000000000..053ee2bf1e5b2f --- /dev/null +++ b/pages.pt_BR/common/ag.md @@ -0,0 +1,32 @@ +# ag + +> The Silver Searcher. Parecido com o ack, mas com um foco em ser ainda mais rápido. +> Mais informações: . + +- Acha arquivos que contém "foo" e imprime as linhas correspondentes no contexto: + +`ag {{foo}}` + +- Acha arquivos que contém "foo" em um diretório específico: + +`ag {{foo}} {{caminho/para/arquivo}}` + +- Acha arquivos que contém "foo", mas lista somente os nomes dos arquivos: + +`ag -l {{foo}}` + +- Acha arquivos que contém "FOO" sem diferença de caixa e imprime somente o correspondente em vez de a linha inteira: + +`ag -i -o {{FOO}}` + +- Acha "foo" em arquivos cujo nome corresponde a "bar": + +`ag {{foo}} -G {{bar}}` + +- Acha arquivos cujo conteúdo corresponde à expressão regular: + +`ag '{{^ba(r|z)$}}'` + +- Acha arquivos cujo nome corresponde a "foo": + +`ag -g {{foo}}` diff --git a/pages.pt_BR/common/agate.md b/pages.pt_BR/common/agate.md new file mode 100644 index 00000000000000..855997b6457dc1 --- /dev/null +++ b/pages.pt_BR/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> Um simples servidor para o protocolo de internet Gemini. +> Mais informações: . + +- Executa e gera uma chave privada e um certificado: + +`agate --content {{caminho/para/conteudo/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{example.com}} --lang {{en-US}}` + +- Executa o servidor: + +`agate {{caminho/para/arquivo}}` + +- Exibe opções de ajuda: + +`agate -h` diff --git a/pages.pt_BR/common/age.md b/pages.pt_BR/common/age.md new file mode 100644 index 00000000000000..6d266185ed1d7e --- /dev/null +++ b/pages.pt_BR/common/age.md @@ -0,0 +1,28 @@ +# age + +> Uma simples, moderna e segura ferramenta de criptografia de arquivos. +> Mais informações: . + +- Gera um arquivo criptografado que pode ser descriptografado com uma frase-chave: + +`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: + +`age-keygen --output {{caminho/para/arquivo}}` + +- Criptografa arquivo com uma ou mais chaves públicas que são inseridas como literais: + +`age --recipient {{chave_pública_1}} --recipient {{chave_pública_2}} {{caminho/para/arquivo_descriptografado}} --output {{caminho/para/arquivo_criptografado}}` + +- Criptografa arquivo com uma ou mais chaves públicas que são especificadas no arquivo do destinatário: + +`age --recipients-file {{caminho/para/arquivo_destinatário}} {{caminho/para/arquivo_descriptografado}} --output {{caminho/para/arquivo_criptografado}}` + +- Descriptografa um arquivo com uma frase-chave: + +`age --decrypt --output {{caminho/para/arquivo_descriptografado}} {{caminho/para/arquivo_criptografado}}` + +- Descriptografa um arquivo com um arquivo chave privada: + +`age --decrypt --identity {{caminho/para/arquivo_chave_privada}} --output {{caminho/para/arquivo_descriptografado}} {{caminho/para/arquivo_criptografado}}` diff --git a/pages.pt_BR/common/airmon-ng.md b/pages.pt_BR/common/airmon-ng.md new file mode 100644 index 00000000000000..b4166f8b0d6397 --- /dev/null +++ b/pages.pt_BR/common/airmon-ng.md @@ -0,0 +1,20 @@ +# airmon-ng + +> Ativa modo de monitoramento em dispositivos de rede sem-fio. +> Mais informações: . + +- Lista os dispositivos sem-fio e seus respectivos estados: + +`sudo airmon-ng` + +- Liga o modo de monitoramento para um dispositivo específico: + +`sudo airmon-ng start {{wlan0}}` + +- Encerra processos problemáticos que usam dispositivos sem-fio: + +`sudo airmon-ng check kill` + +- Desativa o modo de monitoramento para um dispositivo específico: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.pt_BR/common/alacritty.md b/pages.pt_BR/common/alacritty.md new file mode 100644 index 00000000000000..590cf7bb05118e --- /dev/null +++ b/pages.pt_BR/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Terminal multiplataforma, acelerado por GPU. +> Mais informações: . + +- Abre uma nova janela do Alacritty: + +`alacritty` + +- Roda em um diretório específico: + +`alacritty --working-directory {{caminho/para/diretório}}` + +- Roda um comando em uma nova janela do Alacritty: + +`alacritty -e {{comando}}` + +- Especifica um arquivo de configuração alternativo (`$XDG_CONFIG_HOME/alacritty/alacritty.yml` por padrão): + +`alacritty --config-file {{caminho/para/config.yml}}` + +- Executa com configuração ao vivo habilitada (pode também ser habilitada por padrão no `alacritty.yml`): + +`alacritty --live-config-reload --config-file {{caminho/para/config.yml}}` diff --git a/pages.pt_BR/common/alex.md b/pages.pt_BR/common/alex.md new file mode 100644 index 00000000000000..ad44a764ae48c2 --- /dev/null +++ b/pages.pt_BR/common/alex.md @@ -0,0 +1,21 @@ +# alex + +> Uma ferramenta que captura escrita insensível e sem consideraçāo. +> 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: + +`echo {{A rede dele parece boa}} | alex --stdin` + +- Analisa todos arquivos no diretório atual: + +`alex` + +- Analisa um arquivo específico: + +`alex {{archivo_do_texto.md}}` + +- Analisa todos arquivos em Markdown exceto `example.md`: + +`alex *.md !{{example.md}}` diff --git a/pages.pt_BR/common/amass.md b/pages.pt_BR/common/amass.md new file mode 100644 index 00000000000000..1ef6b9233da5c9 --- /dev/null +++ b/pages.pt_BR/common/amass.md @@ -0,0 +1,21 @@ +# amass + +> Ferramenta de Attack Surface Mapping (mapeamento de superfície de ataque) e Asset Discovery (descoberta de asset) em profundidade. +> Alguns subcomandos como `amass db` tem sua propria documentacao de uso. +> Mais informações: . + +- Executa um subcomando Amass: + +`amass {{subcomando}}` + +- Mostra ajuda geral: + +`amass -help` + +- Mostra ajuda de um subcomando Amass (como `intel`, `enum`, etc.): + +`amass -help {{subcomando}}` + +- Mostra a versão: + +`amass -version` diff --git a/pages.pt_BR/common/ansible.md b/pages.pt_BR/common/ansible.md new file mode 100644 index 00000000000000..033da4a229ed49 --- /dev/null +++ b/pages.pt_BR/common/ansible.md @@ -0,0 +1,33 @@ +# ansible + +> Gerencia grupos de computadores remotamente utilizando SSH. (use o arquivo `/etc/ansible/hosts` para adicionar novos grupos/hosts). +> Alguns subcomando como `ansible galaxy` possuis a própria documentação de uso. +> Mais informações: . + +- Lista os hosts pertencentes a um grupo: + +`ansible {{grupo}} --list-hosts` + +- Realiza o ping de um grupo de hosts invocando o módulo ping: + +`ansible {{grupo}} -m ping` + +- Exibe fatos sobre um grupo de hosts invocando o módulo setup: + +`ansible {{grupo}} -m setup` + +- Executa um comando em um grupo de hosts invocando o módulo command com argumentos: + +`ansible {{grupo}} -m command -a '{{meu_comando}}'` + +- Executa um comando com privilégios administrativos: + +`ansible {{grupo}} --become --ask-become-pass -m command -a '{{meu_comando}}'` + +- Executa um comando usando um arquivos de inventário customizado: + +`ansible {{grupo}} -i {{arquivo_inventario}} -m command -a '{{meu_comando}}'` + +- Lista os grupos presentes em um inventário: + +`ansible localhost -m debug -a '{{var=groups.keys()}}'` diff --git a/pages.pt_BR/common/apm.md b/pages.pt_BR/common/apm.md index 3c2fba19e62316..ba369a811aa747 100644 --- a/pages.pt_BR/common/apm.md +++ b/pages.pt_BR/common/apm.md @@ -2,6 +2,7 @@ > Gerenciador de pacotes do editor de texto Atom. > Ver também `atom`. +> Mais informações: . - Instalar pacotes de http://atom.io/packages e temas de http://atom.io/themes: diff --git a/pages.pt_BR/common/arduino-builder.md b/pages.pt_BR/common/arduino-builder.md new file mode 100644 index 00000000000000..8b7393644ff639 --- /dev/null +++ b/pages.pt_BR/common/arduino-builder.md @@ -0,0 +1,25 @@ +# arduino-builder + +> Uma ferramenta de linha de comando para compilar sketches do arduino. +> AVIDO DE OBSOLESCÊNCIA: Esta ferramenta está sendo descontinuada e substituida pelo `arduino`. +> Mais informações: . + +- Compilar um sketch: + +`arduino-builder -compile {{caminho/para/sketch.ino}}` + +- Definir o nível de debug (1 a 10, o padrão é 5): + +`arduino-builder -debug-level {{nivel}}` + +- Definir um diretório de compilação customizado: + +`arduino-builder -build-path {{caminho/para/diretorio}}` + +- Usar um arquivo com as opções de compilação, em vez de especificar `--hardware`, `--tools`, etc. manualmente toda hora: + +`arduino-builder -build-options-file {{caminho/para/build.options.json}}` + +- Habilitar o modo verboso: + +`arduino-builder -verbose {{true}}` diff --git a/pages.pt_BR/common/arduino.md b/pages.pt_BR/common/arduino.md new file mode 100644 index 00000000000000..3a54c0d1f56204 --- /dev/null +++ b/pages.pt_BR/common/arduino.md @@ -0,0 +1,28 @@ +# arduino + +> Arduino Studio - Ambiente de Desenvolvimento Integrado para a plataforma Arduino. +> Mais informações: . + +- Compilar um sketch: + +`arduino --verify {{caminho/para/arquivo.ino}}` + +- Compilar e enviar sketch: + +`arduino --upload {{caminho/para/arquivo.ino}}` + +- Compilar e enviar sketch para um Arduino Nano com uma CPU Atmega328p, conectada na porta `/dev/ttyACM0`: + +`arduino --board {{arduino:avr:nano:cpu=atmega328p}} --port {{/dev/ttyACM0}} --upload {{caminho/para/arquivo.ino}}` + +- Definir a preferência `nome` para um determinado `valor`: + +`arduino --pref {{nome}}={{valor}}` + +- Compilar um sketch, colocar o resultado da compilação no diretório de compilação, e reutilizar qualquer resultado pre-existente neste diretório: + +`arduino --pref build.path={{caminho/para/diretório}} --verify {{caminho/para/arquivo.ino}}` + +- Salvar todas as preferências (alteradas) para `preferences.txt`: + +`arduino --save-prefs` diff --git a/pages.pt_BR/common/arp-scan.md b/pages.pt_BR/common/arp-scan.md new file mode 100644 index 00000000000000..59716661c39358 --- /dev/null +++ b/pages.pt_BR/common/arp-scan.md @@ -0,0 +1,20 @@ +# arp-scan + +> Envia pacotes ARP para máquinas (identificadas por endereço IP ou por nome de domínio) em uma rede local, identificando as máquinas ativas de acordo com as respostas. +> Mais informações: . + +- Verificar as máquinas da rede local: + +`arp-scan --localnet` + +- Verificar as máquinas de uma rede IP especificando a máscara de bit: + +`arp-scan {{192.168.1.1}}/{{24}}` + +- Verificar as máquinas de uma rede IP que estejam em uma faixa de valores: + +`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` + +- Verificar as máquinas de uma rede IP especificando a máscara de rede: + +`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages.pt_BR/common/arp.md b/pages.pt_BR/common/arp.md index 8907024def3205..e7414a3b690722 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/asciidoctor.md b/pages.pt_BR/common/asciidoctor.md new file mode 100644 index 00000000000000..c934b6820adc50 --- /dev/null +++ b/pages.pt_BR/common/asciidoctor.md @@ -0,0 +1,20 @@ +# asciidoctor + +> Um processador que converte AsciiDoc em formatos publicáveis. +> Mais informações: . + +- Converte um arquivo `.adoc` em HTML (formato padrão de saída): + +`asciidoctor {{caminho/para/arquivo.adoc}}` + +- Converte um arquivo `.adoc` em HTML e liga a uma folha de estilos CSS: + +`asciidoctor -a stylesheet={{caminho/para/estilos.css}} {{caminho/para/arquivo.adoc}}` + +- Converte um arquivo `.adoc` em um HTML embutível, removendo tudo exceto o corpo: + +`asciidoctor --embedded {{caminho/para/arquivo.adoc}}` + +- Converte um arquivo `.adoc` em PDF usando a biblioteca `asciidoctor-pdf`: + +`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{caminho/para/arquivo.adoc}` diff --git a/pages.pt_BR/common/at.md b/pages.pt_BR/common/at.md index a9f7cf39e665d7..ded03ec7fac172 100644 --- a/pages.pt_BR/common/at.md +++ b/pages.pt_BR/common/at.md @@ -2,7 +2,7 @@ > Ferramenta para o agendamento de comandos. > O serviço atd (ou atrun) deve estar sendo executado para as atuais execuções. -> Mais informações: . +> Mais informações: . - Executar comandos da standard input em 5 minutos (pressionar `Ctrl + D`quando acabar): diff --git a/pages.pt_BR/common/awk.md b/pages.pt_BR/common/awk.md new file mode 100644 index 00000000000000..3c6b1a3ddaabd2 --- /dev/null +++ b/pages.pt_BR/common/awk.md @@ -0,0 +1,36 @@ +# awk + +> Uma linguagem de programação versátil para trabalhar com arquivos. +> Mais informações: . + +- Imprime a quinta coluna (também chamada de campo) em um arquivo separado por espaços: + +`awk '{print $5}' {{nome_do_arquivo}}` + +- Imprime a segunda coluna das linhas contendo "foo" em um arquivo separado por espaços: + +`awk '/{{foo}}/ {print $2}' {{nome_do_arquivo}}` + +- Imprime a última coluna de cada linha em um arquivo, usando vírgula (ao invés de espaço) como separador de campo: + +`awk -F ',' '{print $NF}' {{nome_do_arquivo}}` + +- Soma os valores da primeira coluna de um arquivo e imprime o total: + +`awk '{s+=$1} END {print s}' {{nome_do_arquivo}}` + +- Imprime de três em três linhas a partir da primeira: + +`awk 'NR%3==1' {{nome_do_arquivo}}` + +- Imprime diferentes valores baseado em condições: + +`awk '{if ($1 == "foo") print "Correspondência completa foo"; else if ($1 ~ "bar") print "Correspondência parcial bar"; else print "Baz"}' {{nome_do_arquivo}}` + +- Imprime todas as linhas em que a 10ª coluna é igual a um dado valor: + +`awk '($10 == valor)'` + +- Imprime todas as linhas em que o valor da décima coluna está entre um mínimo e um máximo: + +`awk '($10 >= valor_minimo && $10 <= valor_maximo)'` diff --git a/pages.pt_BR/common/aws-configure.md b/pages.pt_BR/common/aws-configure.md new file mode 100644 index 00000000000000..278c2cffcee9bb --- /dev/null +++ b/pages.pt_BR/common/aws-configure.md @@ -0,0 +1,36 @@ +# aws configure + +> Gerencia as configurações para o AWS CLI. +> Mais informações: . + +- Configura interativamente o AWS CLI (cria uma nova configuração ou atualiza a configuração default): + +`aws configure` + +- Configura interativamente um profile para o AWS CLI (cria um novo profile ou atualiza um que já existae): + +`aws configure --profile {{nome_do_profile}}` + +- Exibe o valor de uma variável específica de configuração: + +`aws configure get {{nome}}` + +- Exibe o valor de uma variável específica de configuração de um profile específico: + +`aws configure get {{nome}} --profile {{nome_do_profile}}` + +- Altera o valor de uma variável específica de configuração: + +`aws configure set {{nome}} {{valor}}` + +- Altera o valor de uma variável específica de configuração de um profile específico: + +`aws configure set {{nome}} {{valor}} --profile {{nome_do_profile}}` + +- Lista os entradas da configuração: + +`aws configure list` + +- Lista os entradas da configuração de um profile específico: + +`aws configure list --profile {{profile_name}}` diff --git a/pages.pt_BR/common/aws-cur.md b/pages.pt_BR/common/aws-cur.md new file mode 100644 index 00000000000000..bbd10f42c21475 --- /dev/null +++ b/pages.pt_BR/common/aws-cur.md @@ -0,0 +1,16 @@ +# aws cur + +> Cria, pesquisa e apaga relatórios de uso do AWS. +> Mais informações: . + +- Cria um relatório de uso e custo do AWS definido de a partir de um arquivo JSON: + +`aws cur put-report-definition --report-definition file://{{caminho/para/definição_do_relatório.json}}` + +- Lista as definições dos relatórios de uso para a conta logada: + +`aws cur describe-report-definitions` + +- Apaga uma definição de relatório de uso: + +`aws cur --region {{região_aws}} delete-report-definition --report-name {{relatório}}` diff --git a/pages.pt_BR/common/aws-ec2.md b/pages.pt_BR/common/aws-ec2.md index 1a9be83818fda2..3267d998b28b8c 100644 --- a/pages.pt_BR/common/aws-ec2.md +++ b/pages.pt_BR/common/aws-ec2.md @@ -4,14 +4,6 @@ > Provê capacidade computacional segura e flexível na nuvem da AWS para proporcionar um desenvolvimento e subida para produção de aplicações rapidamente. > Mais informações: . -- Lista todos os comandos EC2 disponíveis: - -`aws ec2 help` - -- Exibe ajuda específica para um subcomando da EC2: - -`aws ec2 {{subcomando}} help` - - Exibe informações sobre uma insntância específica: `aws ec2 describe-instances --instance-ids {{id_da_instância}}` @@ -35,3 +27,11 @@ - Lista as AMIs (Imagem de Máquina da Amazon) disponíveis: `aws ec2 describe-images` + +- Lista todos os comandos EC2 disponíveis: + +`aws ec2 help` + +- Exibe ajuda específica para um subcomando da EC2: + +`aws ec2 {{subcomando}} help` diff --git a/pages.pt_BR/common/aws-ecr.md b/pages.pt_BR/common/aws-ecr.md new file mode 100644 index 00000000000000..1315fc85243095 --- /dev/null +++ b/pages.pt_BR/common/aws-ecr.md @@ -0,0 +1,36 @@ +# aws ecr + +> Enviar, buscar, e gerenciar imagens de container. +> Mais informações: . + +- Autentica o docker com o registro default (nome do usuário na AWS): + +`aws ecr get-login-password --region {{region}} | {{docker login}} --username AWS --password-stdin {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com` + +- Cria um repositório: + +`aws ecr create-repository --repository-name {{repository}} --image-scanning-configuration scanOnPush={{true|false}} --region {{region}}` + +- Cria uma tag em uma imagem local para o ECR: + +`docker tag {{nome_do_container}}:{{tag}} {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{nome_do_container}}:{{tag}}` + +- Envia uma imagem para um repositório: + +`docker push {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{nome_do_container}}:{{tag}}` + +- Busca a imagem de um repositório: + +`docker pull {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{nome_do_container}}:{{tag}}` + +- Apaga uma imagem de um repositório: + +`aws ecr batch-delete-image --repository-name {{repositório}} --image-ids imageTag={{latest}}` + +- Apaga um repositório: + +`aws ecr delete-repository --repository-name {{repositório}} --force` + +- Lista as imagens de um repositório: + +`aws ecr list-images --repository-name {{repositório}}` diff --git a/pages.pt_BR/common/aws-glue.md b/pages.pt_BR/common/aws-glue.md new file mode 100644 index 00000000000000..62e6015b192189 --- /dev/null +++ b/pages.pt_BR/common/aws-glue.md @@ -0,0 +1,29 @@ +# aws glue + +> Linha de comando CLI para o AWS Glue. +> Define o endpoint público para o servico AWS Glue. +> Mais informações: . + +- Lista trabalhos: + +`aws glue list-jobs` + +- Inicia um trabalho: + +`aws glue start-job-run --job-name {{nome_do_trabalho}}` + +- Inicia um fluxo de trabalho: + +`aws glue start-workflow-run --name {{nome_do_fluxo_de_trabalho}}` + +- Lista os gatilhos: + +`aws glue list-triggers` + +- Iniciar um gatilho: + +`aws glue start-trigger --name {{nome_do_gatilho}}` + +- Cria um endpoint de desenvolvimento: + +`aws glue create-dev-endpoint --endpoint-name {{nome}} --role-arn {{papel_arn_usado_pelo_endpoint}}` diff --git a/pages.pt_BR/common/aws-google-auth.md b/pages.pt_BR/common/aws-google-auth.md new file mode 100644 index 00000000000000..3aeb7756b6874a --- /dev/null +++ b/pages.pt_BR/common/aws-google-auth.md @@ -0,0 +1,20 @@ +# aws-google-auth + +> Linha de comando para obter credenciais (STS) temporárias AWS usando o Google Apps como um provedor (Single Sign-On) federado. +> Mais informações: . + +- Loga com o Google SSO usando identificadores IDP e SP e criar credenciais com duração de uma hora: + +`aws-google-auth -u {{exemplo@example.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}}` + +- Loga perguntando ([a]sking) qual papel usar (no caso de diversos papeis SAML disponíveis): + +`aws-google-auth -u {{examplo@example.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a` + +- Resolve aliases para contas AWS: + +`aws-google-auth -u {{examplo@example.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a --resolve-aliases` + +- Exibe informações de ajuda: + +`aws-google-auth -h` diff --git a/pages.pt_BR/common/aws-help.md b/pages.pt_BR/common/aws-help.md new file mode 100644 index 00000000000000..2b98d9d82e5a98 --- /dev/null +++ b/pages.pt_BR/common/aws-help.md @@ -0,0 +1,16 @@ +# aws help + +> Exibe ajuda sobre o AWS CLI. +> Mais informações: . + +- Exibe a ajuda: + +`aws help` + +- Lista todos os tópicos disponíveis: + +`aws help topics` + +- Exibe ajuda sobre um tópico específico: + +`aws help {{nome_do_tópico}}` diff --git a/pages.pt_BR/common/aws-history.md b/pages.pt_BR/common/aws-history.md new file mode 100644 index 00000000000000..36169bc5c3d32b --- /dev/null +++ b/pages.pt_BR/common/aws-history.md @@ -0,0 +1,12 @@ +# aws history + +> Exibe o histórico dos comandos para o AWS CLI (o armazenamento do hisitórico dos comandos do AWS CLI deve estar habilitado). +> Mais informações: . + +- Lista histórico dos comandos e seus IDs: + +`aws history list` + +- Exibe eventos relacionados a um comando específico dado um ID do comando: + +`aws history show {{id_do_comando}}` diff --git a/pages.pt_BR/common/aws-iam.md b/pages.pt_BR/common/aws-iam.md new file mode 100644 index 00000000000000..e10814647324d7 --- /dev/null +++ b/pages.pt_BR/common/aws-iam.md @@ -0,0 +1,36 @@ +# aws iam + +> CLI for AWS IAM. +> Mais informações: . + +- Exibe a página de ajuda do `aws iam` (incluindo todos os comandos iam disponíveis): + +`aws iam help` + +- Lista os usuários: + +`aws iam list-users` + +- Lista as políticas: + +`aws iam list-policies` + +- Lista os grupos: + +`aws iam list-groups` + +- Obtém os usuários de um grupo: + +`aws iam get-group --group-name {{nome_do_grupo}}` + +- Descreve uma política IAM: + +`aws iam get-policy --policy-arn arn:aws:iam::aws:policy/{{nome_da_política}}` + +- Lista as chaves de acesso: + +`aws iam list-access-keys` + +- Lista as chaves de acesso para um usuário específico: + +`aws iam list-access-keys --user-name {{nome_do_usuário}}` diff --git a/pages.pt_BR/common/aws-kinesis.md b/pages.pt_BR/common/aws-kinesis.md new file mode 100644 index 00000000000000..2b4a5351d238af --- /dev/null +++ b/pages.pt_BR/common/aws-kinesis.md @@ -0,0 +1,28 @@ +# aws kinesis + +> CLI oficial da AWS para o serviço de streamin de dados Amazon Kinesis. +> Mais informações: . + +- Lista todos os streams de uma conta: + +`aws kinesis list-streams` + +- Escreve um registro para um stream Kinesis: + +`aws kinesis put-record --stream-name {{nome}} --partition-key {{chave}} --data {{mensagem_codificaca_em_base64}}` + +- Escreve um registro para um stream Kinesis com codificação base64 inline: + +`aws kinesis put-record --stream-name {{nome}} --partition-key {{chave}} --data "$( echo "{{minha mensagem não codificada}}" | base64 )"` + +- Lista os shards disponíveis em um stream: + +`aws kinesis list-shards --stream-name {{nome}}` + +- Obtém uma iteração de shards para leitura da mensagem mais antiga no shard do stream: + +`aws kinesis get-shard-iterator --shard-iterator-type TRIM_HORIZON --stream-name {{nome}} --shard-id {{id}}` + +- Lê registros de um shard usando uma iteração de um shard: + +`aws kinesis get-records --shard-iterator {{iteração}}` diff --git a/pages.pt_BR/common/aws-lambda.md b/pages.pt_BR/common/aws-lambda.md new file mode 100644 index 00000000000000..83d42ec3d296ab --- /dev/null +++ b/pages.pt_BR/common/aws-lambda.md @@ -0,0 +1,32 @@ +# aws lambda + +> Linha de comando CLI para o AWS lambda. +> Mais informações: . + +- Executa uma função: + +`aws lambda invoke --function-name {{nome}} {{caminho/para/a/resposta}}.json` + +- Executa uma função enviando um payload em formato JSON: + +`aws lambda invoke --function-name {{nome}} --payload {{json}} {{caminho/para/a/resposta}}.json` + +- Lista as funções: + +`aws lambda list-functions` + +- Exibe a configuração de uma função: + +`aws lambda get-function-configuration --function-name {{nome}}` + +- Lista os aliases de uma função: + +`aws lambda list-aliases --function-name {{nome}}` + +- Exibe o configuração de concorrência reservada de uma função: + +`aws lambda get-function-concurrency --function-name {{nome}}` + +- Lista quais serviços AWS pode invocar a função: + +`aws lambda get-policy --function-name {{nome}}` diff --git a/pages.pt_BR/common/aws-s3.md b/pages.pt_BR/common/aws-s3.md index 0afe0e21559b30..29a9b3a0092778 100644 --- a/pages.pt_BR/common/aws-s3.md +++ b/pages.pt_BR/common/aws-s3.md @@ -2,7 +2,7 @@ > Interface de linha de comando para AWS S3. > Provê armazenamento através de uma interface de web services. -> Mais informações: . +> Mais informações: . - Exibe arquivos de um bucket: diff --git a/pages.pt_BR/common/aws-secretsmanager.md b/pages.pt_BR/common/aws-secretsmanager.md new file mode 100644 index 00000000000000..ebc91d323c83de --- /dev/null +++ b/pages.pt_BR/common/aws-secretsmanager.md @@ -0,0 +1,32 @@ +# aws secretsmanager + +> Armazena, gerencia, e obtem secrets. +> Mais informações: . + +- Lista secrets armazenados pelo gerenciador de secretes na conta atual: + +`aws secretsmanager list-secrets` + +- Cria um secret: + +`aws secretsmanager create-secret --name {{nome}} --description "{{descrição_do_secret}}" --secret-string {{secret}}` + +- Apaga um secret: + +`aws secretsmanager delete-secret --secret-id {{nome_ou_arn}}` + +- Visualiza detalhes de um secret menos pelo texto do secret: + +`aws secretsmanager describe-secret --secret-id {{nome_ou_arn}}` + +- Obtẽm o valor do secret (para pegar a última versão do secret não use `--version-stage`): + +`aws secretsmanager get-secret-value --secret-id {{nome_ou_arn}} --version-stage {{versão_do_secret}}` + +- Alterna o secret imediatamente usando uma função Lambda: + +`aws secretsmanager rotate-secret --secret-id {{nome_ou_arn}} --rotation-lambda-arn {{arn_da_função_lambda}}` + +- Alterna o secret automaticamente a cada 30 dias usando uma função Lambda: + +`aws secretsmanager rotate-secret --secret-id {{nome_ou_arn}} --rotation-lambda-arn {{arn_da_função_lambda}} --rotation-rules AutomaticallyAfterDays={{30}}` diff --git a/pages.pt_BR/common/aws.md b/pages.pt_BR/common/aws.md index 4aaee00e36eebc..4e7e7086327151 100644 --- a/pages.pt_BR/common/aws.md +++ b/pages.pt_BR/common/aws.md @@ -2,6 +2,7 @@ > A interface de linha de comando oficial para o Amazon Web Services. > Passo-a-passo, Single Sign-On (SSO), autocompletar de recursos e opções de YAML somente na v2. +> Alguns subcomandos como `aws s3` tem sua própia documentação de uso. > Mais informações: . - Configura a linha de comando da AWS: diff --git a/pages.pt_BR/common/az.md b/pages.pt_BR/common/az.md index 0325ab224f610d..9294246f8a6c94 100644 --- a/pages.pt_BR/common/az.md +++ b/pages.pt_BR/common/az.md @@ -1,6 +1,7 @@ # az > A interface de linha de comando oficial do Microsoft Azure. +> Mais informações: . - Fazer log in no Azure: diff --git a/pages.pt_BR/common/banner.md b/pages.pt_BR/common/banner.md new file mode 100644 index 00000000000000..27439a0d22bdce --- /dev/null +++ b/pages.pt_BR/common/banner.md @@ -0,0 +1,16 @@ +# banner + +> Exibe o argumento inserido como um grande banner em arte ASCII. +> Mais informações: . + +- Exibe uma mensagem como banner (aspas opcionais): + +`banner "{{Ola Mundo}}"` + +- Exibe um banner com a largura de 50 caracteres: + +`banner -w {{50}} "{{Ola Mundo}}"` + +- Exibe um banner com o texto inserido na entrada padrão: + +`banner` diff --git a/pages.pt_BR/common/base32.md b/pages.pt_BR/common/base32.md new file mode 100644 index 00000000000000..8f2727fd11df93 --- /dev/null +++ b/pages.pt_BR/common/base32.md @@ -0,0 +1,20 @@ +# base32 + +> 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: + +`base32 {{nome_do_arquivo}}` + +- Decodifica um arquivo: + +`base32 --decode {{nome_do_arquivo}}` + +- Codifica a partir de stdin: + +`{{algum_comando}} | base32` + +- 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 new file mode 100644 index 00000000000000..c51dd28c682a3d --- /dev/null +++ b/pages.pt_BR/common/base64.md @@ -0,0 +1,20 @@ +# base64 + +> 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: + +`base64 {{nome_arquivo}}` + +- Decodifica o conteúdo de um arquivo em base64 e grava o resultado em stdout: + +`base64 --decode {{nome_arquivo}}` + +- Codifica a partir de stdin: + +`{{algum_comando}} | base64` + +- Decodifica a partir de stdin: + +`{{algum_comando}} | base64 --decode` diff --git a/pages.pt_BR/common/basename.md b/pages.pt_BR/common/basename.md new file mode 100644 index 00000000000000..2de71eb7cf08aa --- /dev/null +++ b/pages.pt_BR/common/basename.md @@ -0,0 +1,16 @@ +# basename + +> Remove o prefixo de um caminho. +> Mais informações: . + +- Mostra apenas o nome do arquivo em um caminho: + +`basename {{caminho/para/arquivo}}` + +- Mostra apenas o nome do diretório mais à direita em um caminho: + +`basename {{caminho/para/diretório/}}` + +- Mostra apenas o nome do arquivo em um caminho, com um sufixo removido: + +`basename {{caminho/para/arquivo}} {{sufixo}}` diff --git a/pages.pt_BR/common/bash.md b/pages.pt_BR/common/bash.md new file mode 100644 index 00000000000000..c7372fa60cff82 --- /dev/null +++ b/pages.pt_BR/common/bash.md @@ -0,0 +1,33 @@ +# 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. +> Mais informações: . + +- Iniciar uma seção interativa do shell: + +`bash` + +- Executar um comando e sair: + +`bash -c "{{comando}}"` + +- Executar um script: + +`bash {{caminho/para/script.sh}}` + +- Executar um script, 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: + +`bash -e {{caminho/para/script.sh}}` + +- Ler e executar comandos do stdin (entrada padrão): + +`bash -s` + +- Exibir a versão do Bash (`$BASH_VERSION` abrange apenas a versão sem informações da licença): + +`bash --version` diff --git a/pages.pt_BR/common/bat.md b/pages.pt_BR/common/bat.md index cb96429c527843..13c1b1f293596b 100644 --- a/pages.pt_BR/common/bat.md +++ b/pages.pt_BR/common/bat.md @@ -1,25 +1,29 @@ # bat -> Imprimir e concatenar arquivos. +> Imprime e concatena arquivos. > Um clone do `cat` com realce de sintaxe e integração com Git. > Mais informações: . -- Imprimir o conteúdo de um arquivo para a saída padrão: +- Imprime o conteúdo de um arquivo para a saída padrão: `bat {{arquivo}}` -- Concatenar vários arquivos em um arquivo de destino: +- Concatena o conteúdo de vários arquivos em um arquivo destino: -`bat {{caminho/para/arquivo1}} {{caminho/para/arquivo2}} > {{caminho/para/arquivo_destino}}` +`bat {{arquivo1}} {{arquivo2}} > {{arquivo_destino}}` -- Numerar todas as linhas do output: +- Acrescenta o conteúdo de vários arquivos ao final de um arquivo destino: -`bat -n {{caminho/para/arquivo}}` +`bat {{arquivo1}} {{arquivo2}} >> {{arquivo_destino}}` -- Realçar a sintaxe em um arquivo JSON: +- Numera todas as linhas de saída: -`bat --language json {{caminho/para/arquivo.json}}` +`bat -n {{arquivo}}` -- Mostrar todas as linguagens suportadas: +- Realça a sintaxe de um arquivo JSON: + +`bat --language json {{arquivo.json}}` + +- Mostra todas as linguagens suportadas: `bat --list-languages` diff --git a/pages.pt_BR/common/binwalk.md b/pages.pt_BR/common/binwalk.md new file mode 100644 index 00000000000000..c38a16898ced8f --- /dev/null +++ b/pages.pt_BR/common/binwalk.md @@ -0,0 +1,28 @@ +# binwalk + +> Ferramenta de análise de Firmware. +> Mais informações: . + +- Escaneia um arquivo binário: + +`binwalk {{caminho/para/binário}}` + +- Extrai arquivos de um binário, especificando a saída do diretório: + +`binwalk --extract --directory {{diretório_do_destino}} {{caminho/para/binário}}` + +- Extrai recursivamente arquivos de um binário limitando a profundidade da recursão para 2: + +`binwalk --extract --matryoshka --depth {{2}} {{caminho/para/binário}}` + +- Extrai arquivos de um binário com uma assinatura específica: + +`binwalk --dd '{{png image:png}}' {{caminho/para/binário}}` + +- Analisa a entropia de um binário, salvando o gráfico com o mesmo nome que o binário e a extensão `.png`: + +`binwalk --entropy --save {{caminho/para/binário}}` + +- Combina entropia, assinatura e análise dos código de operações em um comando só: + +`binwalk --entropy --signature --opcodes {{caminho/para/binário}}` diff --git a/pages.pt_BR/common/brew.md b/pages.pt_BR/common/brew.md new file mode 100644 index 00000000000000..12ecdb743aa0f0 --- /dev/null +++ b/pages.pt_BR/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> A versão Linux do gerenciador de pacotes Homebrew. +> Mais informações: . + +- Buscar por fórmulas disponíveis: + +`brew search {{termo_da_busca}}` + +- Instalar a última versão estável de uma fórmula (utilizar `--devel` para versões de desenvolvimento): + +`brew install {{formula}}` + +- Listar as fórmulas instaladas: + +`brew list` + +- Atualizar uma fórmula instalada (se não for informado o nome de uma fórmula, todas as fórmulas serão atualizadas): + +`brew upgrade {{formula}}` + +- Recuperar a versão mais recente do Linuxbrew e de todas as fórmulas do GitHub: + +`brew update` + +- Exibir as fórmulas que possuem novas versões disponíveis: + +`brew outdated` + +- Exibir informações sobre uma fórmula (versão, caminho de instalação, dependências, etc.): + +`brew info {{formula}}` + +- Verificar a instalação local em busca de possíveis problemas: + +`brew doctor` diff --git a/pages.pt_BR/common/btm.md b/pages.pt_BR/common/btm.md new file mode 100644 index 00000000000000..50a323b9195b8d --- /dev/null +++ b/pages.pt_BR/common/btm.md @@ -0,0 +1,25 @@ +# btm + +> Uma alternativa ao `top`. +> Tem como objetivo ser leve, multiplataforma e mais gráfico que o `top`. +> Mais informações: . + +- Exibe o layout padrão (CPU, memória, temperaturas, disco, rede e processos): + +`btm` + +- Ativa o modo básico, removendo gráficos e condensando dados (semelhante a `top`): + +`btm --basic` + +- Usa pontos grandes em vez de pequenos em gráficos: + +`btm --dot_marker` + +- Exibe também a carga da bateria e o estado de saúde: + +`btm --battery` + +- Atualiza a cada 250 milissegundos e exibe os últimos 30 segundos nos gráficos: + +`btm --rate 250 --default_time_value 30000` diff --git a/pages.pt_BR/common/bundler.md b/pages.pt_BR/common/bundler.md new file mode 100644 index 00000000000000..a6861ffe7a1126 --- /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/bup.md b/pages.pt_BR/common/bup.md new file mode 100644 index 00000000000000..1547b6a59abcab --- /dev/null +++ b/pages.pt_BR/common/bup.md @@ -0,0 +1,24 @@ +# bup + +> Sistema de backup baseado no formato Git packfile, oferecendo salvamentos incrementais e desduplicação global. +> Mais informações: . + +- Inicializa um repositório de backup no diretório local especificado: + +`bup -d {{caminho/para/repositório}} init` + +- Prepara um determinado diretório antes de fazer um backup: + +`bup -d {{caminho/para/repositório}} index {{caminho/para/diretório}}` + +- Faz o backup de um diretório para o repositório: + +`bup -d {{caminho/para/repositório}} save -n {{nome_do_backup}} {{caminho/para/diretório}}` + +- Exibe os snapshots de backup armazenados atualmente no repositório: + +`bup -d {{caminho/para/repositório}} ls` + +- Restaura um snapshot de backup específico para um diretório de destino: + +`bup -d {{caminho/para/repositório}} restore -C {{caminho/para/diretório_de_destino}} {{nome_do_backup}}` diff --git a/pages.pt_BR/common/bzip2.md b/pages.pt_BR/common/bzip2.md index 008f3e84bc1d80..12c1b0b3c4fbe2 100644 --- a/pages.pt_BR/common/bzip2.md +++ b/pages.pt_BR/common/bzip2.md @@ -1,6 +1,7 @@ # bzip2 > Um compressor de arquivos que utiliza o algoritmo Burrows–Wheeler. +> Mais informações: . - Compactar um arquivo: diff --git a/pages.pt_BR/common/c99.md b/pages.pt_BR/common/c99.md new file mode 100644 index 00000000000000..33c4db10335261 --- /dev/null +++ b/pages.pt_BR/common/c99.md @@ -0,0 +1,20 @@ +# c99 + +> Compila programas em C de acordo com a norma ISO C. +> Mais informações: . + +- Compila arquivo(s) de origem e cria um executável: + +`c99 {{arquivo.c}}` + +- Compila arquivo(s) de origem e cria um executável com um nome customizável: + +`c99 -o {{nome_executavel}} {{arquivo.c}}` + +- Compila arquivo(s) de origem e cria arquivo(s) de objeto: + +`c99 -c {{arquivo.c}}` + +- Compila arquivo(s) de origem, linka com arquivo(s) de objeto e cria um executável: + +`c99 {{arquivo.c}} {{arquivo.o}}` diff --git a/pages.pt_BR/common/cabal.md b/pages.pt_BR/common/cabal.md new file mode 100644 index 00000000000000..18099ca67ed982 --- /dev/null +++ b/pages.pt_BR/common/cabal.md @@ -0,0 +1,29 @@ +# cabal + +> Interface de linha de comando para a infraestrutura de pacote Haskel (Cabal). +> Gerencia projetos Haskell e pacotes Cabal do repositório de pacotes Hackage. +> Mais informações: . + +- Busca e lista pacotes do Hackage: + +`cabal list {{string_buscada}}` + +- Mostra informações sobre o pacote: + +`cabal info {{nome_pacote}}` + +- Baixa e instala um pacote: + +`cabal install {{nome_pacote}}` + +- Cria um novo projeto Haskell no diretório atual: + +`cabal init` + +- Monta o projeto no diretório atual: + +`cabal build` + +- Roda testes do projeto no diretório atual: + +`cabal test` diff --git a/pages.pt_BR/common/caddy.md b/pages.pt_BR/common/caddy.md new file mode 100644 index 00000000000000..e66198ed93c04f --- /dev/null +++ b/pages.pt_BR/common/caddy.md @@ -0,0 +1,28 @@ +# caddy + +> Um servidor web open source, pronto para empresas, com HTTPS automático, escrito em Go. +> Mais informações: . + +- Inicia Caddy em primeiro plano: + +`caddy run` + +- Inicia Caddy com um arquivo Caddy específico: + +`caddy run --config {{caminho/para/arquivoCaddy}}` + +- Inicia Caddy no plano de fundo: + +`caddy start` + +- Para um processo Caddy em plano de fundo: + +`caddy stop` + +- Executa um servidor de arquivo simples na porta especificada, com uma interface navegável: + +`caddy file-server --listen :{{8000}} --browse` + +- Executa um servidor proxy reverso: + +`caddy reverse-proxy --from :{{80}} --to localhost:{{8000}}` diff --git a/pages.pt_BR/common/calc.md b/pages.pt_BR/common/calc.md new file mode 100644 index 00000000000000..4476deb6f5184f --- /dev/null +++ b/pages.pt_BR/common/calc.md @@ -0,0 +1,12 @@ +# calc + +> Calculadora interativa de precisão arbitrária no terminal. +> Mais informações: . + +- Iniciar a calculadora em modo interativo: + +`calc` + +- Realizar o cálculo em modo não interativo: + +`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.pt_BR/common/calendar.md b/pages.pt_BR/common/calendar.md new file mode 100644 index 00000000000000..f873c645c580ac --- /dev/null +++ b/pages.pt_BR/common/calendar.md @@ -0,0 +1,20 @@ +# calendar + +> Mostra eventos de um arquivo calendar. +> Mais informações: . + +- Mostra eventos para hoje e amanhã (ou para o final de semana na sexta-feira) do calendário padrão: + +`calendar` + +- Mostra eventos marcados para os próximos 30 dias ([A]head): + +`calendar -A {{30}}` + +- Mostra eventos ocorridos nos últimos 7 dias ([B]ack): + +`calendar -B {{7}}` + +- Mostra eventos de um calendário personalizado, salvo no caminho especificado ([f]ile): + +`calendar -f {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/cargo.md b/pages.pt_BR/common/cargo.md new file mode 100644 index 00000000000000..df944dc93012d7 --- /dev/null +++ b/pages.pt_BR/common/cargo.md @@ -0,0 +1,37 @@ +# cargo + +> 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: . + +- Procura por crates: + +`cargo search {{string_procurada}}` + +- Instala uma crate: + +`cargo install {{nome_da_crate}}` + +- Lista as crates instaladas: + +`cargo install --list` + +- Cria um projeto Rust sendo binário ou uma biblioteca no diretório atual: + +`cargo init --{{bin|lib}}` + +- Cria um projeto Rust sendo binário ou uma biblioteca em um diretório específico: + +`cargo new {{caminho/para/directório}} --{{bin|lib}}` + +- Constrói o projeto Rust no diretório atual: + +`cargo build` + +- Constrói o projeto Rust no diretório atual utilizando o nightly compilador: + +`cargo +nightly build` + +- Constrói o projeto Rust utilizando um número específico de threads (padrão é o número de cores do CPU): + +`cargo build --jobs {{número_de_threads}}` diff --git a/pages.pt_BR/common/cd.md b/pages.pt_BR/common/cd.md new file mode 100644 index 00000000000000..e3330f76cc9da9 --- /dev/null +++ b/pages.pt_BR/common/cd.md @@ -0,0 +1,20 @@ +# cd + +> Altera o diretório de trabalho atual. +> Mais informações: . + +- Vai para o diretório informado: + +`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 escolhido anteriormente: + +`cd -` diff --git a/pages.pt_BR/common/certutil.md b/pages.pt_BR/common/certutil.md new file mode 100644 index 00000000000000..5f57ed117f9ed5 --- /dev/null +++ b/pages.pt_BR/common/certutil.md @@ -0,0 +1,24 @@ +# certutil + +> Gerencie chaves e certificados em bancos de dados e tokens NSS. +> Mais informações: . + +- Cria um novo banco de dados de certificados: + +`certutil -N -d .` + +- Lista todos os certificados em um banco de dados: + +`certutil -L -d .` + +- Lista todas as chaves privadas em um banco de dados: + +`certutil -K -d . -f {{caminho/para/arquivo_de_senha.txt}}` + +- Importa o certificado assinado para o banco de dados dos solicitantes: + +`certutil -A -n "{{certificado_do_servidor}}" -t ",," -i {{caminho/para/arquivo.crt}} -d .` + +- Adiciona nomes de assunto a um determinado certificado: + +`certutil -S -f {{caminho/para/arquivo_de_senha.txt}} -d . -t ",," -c "{{certificado_do_servidor}}" -n "{{nome_do_servidor}}" -g {{2048}} -s "CN={{nome_comum}},O={{organização}}"` diff --git a/pages.pt_BR/common/chmod.md b/pages.pt_BR/common/chmod.md new file mode 100644 index 00000000000000..c15c0f4f8887ba --- /dev/null +++ b/pages.pt_BR/common/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> Muda a permissão de acesso de um arquivo ou diretório. +> Mais informações: . + +- Dá ao [u]suário dono de um arquivo o direito de e[x]ecutá-lo: + +`chmod u+x {{arquivo}}` + +- Dá ao [u]suário direitos para le[r] e [w]escrever em um arquivo/diretório: + +`chmod u+rw {{arquivo_ou_diretorio}}` + +- Remove direitos e[x]ecutáveis de um [g]rupo: + +`chmod g-x {{arquivo}}` + +- Dá a [a]todos os usuários direitos para le[r] e e[x]ecutar: + +`chmod a+rx {{arquivo}}` + +- Dá para [o]utros (que não estejam no grupo do proprietário do arquivo) os mesmos direitos que o [g]rupo: + +`chmod o=g {{arquivo}}` + +- Remove todos os direitos de [o]utros: + +`chmod o= {{arquivo}}` + +- Muda recursivamente as permissões, dando para [g]rupo e [o]utros a habilidade para [w]escrever: + +`chmod -R g+w,o+w {{diretorio}}` + +- Recursivamente concede a [a]todos os usuários permissões de leitu[r]a para arquivos e e[X]ecute permissões para sub-diretórios dentro de um diretório: + +`chmod -R a+rX {{diretorio}}` diff --git a/pages.pt_BR/common/chown.md b/pages.pt_BR/common/chown.md new file mode 100644 index 00000000000000..c43384ce1ab4aa --- /dev/null +++ b/pages.pt_BR/common/chown.md @@ -0,0 +1,24 @@ +# chown + +> Muda o usuário e grupo donos de arquivos e diretórios. +> Mais informações: . + +- Muda o usuário que é dono de um arquivo ou diretório: + +`chown {{usuario}} {{caminho/para/arquivo_ou_diretorio}}` + +- Muda o usuário e grupo que são donos de um arquivo/diretório: + +`chown {{usuario}}:{{grupo}} {{caminho/para/arquivo_ou_diretorio}}` + +- Recursivamente muda o dono de um diretório e seu conteúdo: + +`chown -R {{usuario}} {{caminho/para/diretorio}}` + +- Muda o dono de um link simbólico: + +`chown -h {{usuario}} {{caminho/para/symlink}}` + +- Muda o dono de um arquivo/diretório para ficar igual a um arquivo de referência: + +`chown --reference={{caminho/para/arquivo_de_referencia}} {{caminho/para/arquivo_ou_diretorio}}` diff --git a/pages.pt_BR/common/chromium.md b/pages.pt_BR/common/chromium.md new file mode 100644 index 00000000000000..fed0f5bee0dd80 --- /dev/null +++ b/pages.pt_BR/common/chromium.md @@ -0,0 +1,28 @@ +# chromium + +> Navegador código aberto do Google. +> Mais informações: . + +- Abre um arquivo: + +`chromium {{caminho/para/arquivo.html}}` + +- Abre uma URL: + +`chromium {{exemplo.com}}` + +- Abre no modo de navegação anônima (icognito): + +`chromium --incognito {{exemplo.com}}` + +- Abre em uma nova janela: + +`chromium --new-window {{exemplo.com}}` + +- Abre no modo app (Sem barra de tarefas, barra de URL, botões, etc.): + +`chromium --app='{{https://example.com}}'` + +- Usa um servidor proxy: + +`chromium --proxy-server="{{socks5://hostname:66}}" {{exemplo.com}}` diff --git a/pages.pt_BR/common/clamav.md b/pages.pt_BR/common/clamav.md new file mode 100644 index 00000000000000..92e81c2f6fa783 --- /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/clang-cpp.md b/pages.pt_BR/common/clang-cpp.md new file mode 100644 index 00000000000000..3c27acd69c8451 --- /dev/null +++ b/pages.pt_BR/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Este comando é um pseudônimo de `clang++`. + +- Ver documentação sobre o comando original: + +`tldr clang++` diff --git a/pages.pt_BR/common/clear.md b/pages.pt_BR/common/clear.md new file mode 100644 index 00000000000000..07930baaf93ac6 --- /dev/null +++ b/pages.pt_BR/common/clear.md @@ -0,0 +1,20 @@ +# clear + +> Limpa a tela do terminal. +> Mais informações: . + +- Limpar a tela (equivalente a apertar Control-L no terminal Bash): + +`clear` + +- Limpar a tela mantendo o buffer de rolagem do terminal: + +`clear -x` + +- Especificar o tipo de terminal a ser limpado (por padrão é o valor da variável de ambiente `TERM`): + +`clear -T {{tipo_do_terminal}}` + +- Mostra a versão do `ncurses` usado pelo `clear`: + +`clear -V` diff --git a/pages.pt_BR/common/clojure.md b/pages.pt_BR/common/clojure.md new file mode 100644 index 00000000000000..dc4b398c50fd00 --- /dev/null +++ b/pages.pt_BR/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Este comando é um pseudônimo de `clj`. + +- Ver documentação sobre o comando original: + +`tldr clj` diff --git a/pages.pt_BR/common/cmatrix.md b/pages.pt_BR/common/cmatrix.md new file mode 100644 index 00000000000000..c408cd3000b223 --- /dev/null +++ b/pages.pt_BR/common/cmatrix.md @@ -0,0 +1,20 @@ +# cmatrix + +> Exibe um padrão semelhante à Matrix rolando na tela do terminal. +> Mais informações: . + +- Habilita rolagem assincrona: + +`cmatrix -a` + +- Exibe texto em vermelho: + +`cmatrix -C {{red}}` + +- Habilita modo arco-iris: + +`cmatrix -r` + +- Determina um atraso de 2 centisegundos (20 milisegundos) na atualização da tela: + +`cmatrix -u {{2}}` diff --git a/pages.pt_BR/common/cola.md b/pages.pt_BR/common/cola.md new file mode 100644 index 00000000000000..985ed8979d7151 --- /dev/null +++ b/pages.pt_BR/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Este comando é um pseudônimo de `git-cola`. + +- Ver documentação sobre o comando original: + +`tldr git-cola` diff --git a/pages.pt_BR/common/compgen.md b/pages.pt_BR/common/compgen.md new file mode 100644 index 00000000000000..0bf0dbf9067520 --- /dev/null +++ b/pages.pt_BR/common/compgen.md @@ -0,0 +1,24 @@ +# compgen + +> Um programa para auto completar comandos no Bash, ele é executado ao pressionar duas vezes a tecla TAB. +> Mais informações: . + +- Exibir todos os comandos que você pode executar: + +`compgen -c` + +- Exibir todos os alias: + +`compgen -a` + +- Exibir todas as funções que você pode executar: + +`compgen -A function` + +- Exibir todas as palavras reservadas do shell: + +`compgen -k` + +- Exibir todos os comandos/alias que iniciam com o termo 'ls': + +`compgen -ac {{ls}}` diff --git a/pages.pt_BR/common/convert.md b/pages.pt_BR/common/convert.md index 26f46e8fff983a..24832ab61b8728 100644 --- a/pages.pt_BR/common/convert.md +++ b/pages.pt_BR/common/convert.md @@ -1,6 +1,6 @@ # convert -> Ferramenta de conversão de imagens da Imagemagick. +> Ferramenta de conversão de imagens da ImageMagick. > Mais informações: . - Converter uma imagem do formato JPG para o formato PNG: diff --git a/pages.pt_BR/common/cp.md b/pages.pt_BR/common/cp.md new file mode 100644 index 00000000000000..eda28ac43e3c1c --- /dev/null +++ b/pages.pt_BR/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> Copia arquivos e diretórios. +> Mais informações: . + +- Copia um arquivo para outra locação: + +`cp {{caminho/para/arquivo_origem.ext}} {{caminho/para/arquivo_destino.ext}}` + +- Copia um arquivo para outro diretório, mantendo o mesmo nome: + +`cp {{caminho/para/arquivo_origem.ext}} {{caminho/para/diretorio_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): + +`cp -R {{caminho/para/diretorio_origem}} {{caminho/para/diretorio_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}}` + +- Copia arquivos de texto para outra locação, em modo interativo (pergunta ao usuário antes de sobrescrever): + +`cp -i {{*.txt}} {{caminho/para/diretorio_destino}}` + +- Segue links simbólicos antes de realizar a cópia: + +`cp -L {{link}} {{caminho/para/diretorio_destino}}` diff --git a/pages.pt_BR/common/cron.md b/pages.pt_BR/common/cron.md new file mode 100644 index 00000000000000..022acfda94ac4a --- /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/curl.md b/pages.pt_BR/common/curl.md index c7bbe91e154cf8..393e268b21b26f 100644 --- a/pages.pt_BR/common/curl.md +++ b/pages.pt_BR/common/curl.md @@ -6,27 +6,27 @@ - Descarregar os conteúdos de um URL para um arquivo: -`curl {{http://example.com}} -o {{arquivo}}` +`curl {{http://example.com}} --output {{arquivo}}` - Descarregar um arquivo, gravando o resultado sob o nome do arquivo indicado pelo URL: -`curl -O {{http://example.com/arquivo}}` +`curl --remote-name {{http://example.com/arquivo}}` - Descarregar um arquivo, seguindo redirecionamentos e automaticamente continuando transferências idênticas que tenham sido interrompidas: -`curl -O -L -C - {{http://example.com/arquivo}}` +`curl --remote-name --location --continue-at - {{http://example.com/arquivo}}` - Enviar dados codificados por formulário (pedido POST do tipo `application/x-www-form-urlencoded`): -`curl -d {{'nome=maria'}} {{http://example.com/formulario}}` +`curl --data {{'nome=maria'}} {{http://example.com/formulario}}` - Enviar um pedido com um cabeçalho adicional, usando um método HTTP personalizado: -`curl -H {{'X-Meu-Cabecalho: 123'}} -X {{PUT}} {{http://example.com}}` +`curl --header {{'X-Meu-Cabecalho: 123'}} --request {{PUT}} {{http://example.com}}` - Enviar dados no formato JSON, especificando o cabeçalho de tipo de conteúdo (content-type) apropriado: -`curl -d {{'{"nome":"maria"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/usuarios/123}}` +`curl --data {{'{"nome":"maria"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/usuarios/123}}` - Passar ao pedido o nome de usuário e senha para autenticação no servidor: diff --git a/pages.pt_BR/common/daps.md b/pages.pt_BR/common/daps.md new file mode 100644 index 00000000000000..f6edfb37a92e4e --- /dev/null +++ b/pages.pt_BR/common/daps.md @@ -0,0 +1,24 @@ +# daps + +> DAPS é um programa de código aberto para transformar DocBook XML em formatos de saída como HTML ou PDF. +> Mais informações: . + +- Verifica se um arquivo DocBook XML é válido: + +`daps -d {{caminho/para/arquivo.xml}} validate` + +- Converte um arquivo DocBook XML para PDF: + +`daps -d {{caminho/para/arquivo.xml}} pdf` + +- Converte um arquivo DocBook XML em um único arquivo HTML: + +`daps -d {{caminho/para/arquivo.xml}} html --single` + +- Exibe ajuda: + +`daps --help` + +- Exibe versão: + +`daps --version` diff --git a/pages.pt_BR/common/darkhttpd.md b/pages.pt_BR/common/darkhttpd.md new file mode 100644 index 00000000000000..3c88072de99dbb --- /dev/null +++ b/pages.pt_BR/common/darkhttpd.md @@ -0,0 +1,16 @@ +# darkhttpd + +> Servidor web Darkhttpd. +> Mais informações: . + +- Inicia o servidor servindo a raiz do documento especificada: + +`darkhttpd {{caminho/para/raiz_do_documento}}` + +- Inicia o servidor na porta especificada (porta 8080 por padrão se estiver executando como usuário não raiz): + +`darkhttpd {{caminho/para/raiz_do_documento}} --port {{porta}}` + +- Escuta apenas no endereço IP especificado (por padrão, o servidor escuta em todas as interfaces): + +`darkhttpd {{caminho/para/raiz_do_documento}} --addr {{endereço_de_ip}}` diff --git a/pages.pt_BR/common/dart.md b/pages.pt_BR/common/dart.md new file mode 100644 index 00000000000000..a823e245c9959b --- /dev/null +++ b/pages.pt_BR/common/dart.md @@ -0,0 +1,28 @@ +# dart + +> A ferramenta para gerenciar projetos Dart. +> Mais informações: . + +- Inicializa um novo projeto Dart em um diretório com o mesmo nome: + +`dart create {{nome_do_projeto}}` + +- Executa um arquivo Dart: + +`dart run {{caminho/para/arquivo.dart}}` + +- Baixa as dependências do projeto atual: + +`dart pub get` + +- Executa testes de unidade para o projeto atual: + +`dart test` + +- Atualiza as dependências de um projeto desatualizado para oferecer suporte à segurança nula: + +`dart pub upgrade --null-safety` + +- Compila um arquivo Dart para um binário nativo: + +`dart compile exe {{caminho/para/arquivo.dart}}` diff --git a/pages.pt_BR/common/dash.md b/pages.pt_BR/common/dash.md new file mode 100644 index 00000000000000..cfb19752d1152f --- /dev/null +++ b/pages.pt_BR/common/dash.md @@ -0,0 +1,28 @@ +# dash + +> Debian Almquist Shell, uma implementação moderna e compatível com POSIX de `sh` (não compatível com Bash). +> Mais informações: . + +- Inicia uma sessão de shell interativa: + +`dash` + +- Executa um comando e sai: + +`dash -c "{{comando}}"` + +- Executa um script: + +`dash {{caminho/para/script.sh}}` + +- Executa comandos de um script, imprimindo cada comando antes de executá-lo: + +`dash -x {{caminho/para/script.sh}}` + +- Executa comandos de um script, parando no primeiro erro: + +`dash -e {{caminho/para/script.sh}}` + +- Lê e executa comandos de stdin: + +`dash -s` diff --git a/pages.pt_BR/common/date.md b/pages.pt_BR/common/date.md new file mode 100644 index 00000000000000..41d9183e44d1e5 --- /dev/null +++ b/pages.pt_BR/common/date.md @@ -0,0 +1,28 @@ +# date + +> Define ou exibe a data e horário do sistema. +> Mais informações: . + +- Exibe a data atual usando a formatação padrão: + +`date +"%c"` + +- Exibe a data atual no formato UTC e ISO 8601: + +`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): + +`date +%s` + +- Exibe uma data representada como Unix timestamp utilizando a formatação padrão: + +`date -d @1473305798` + +- Converte uma data específica 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`): + +`date --rfc-3339=s` diff --git a/pages.pt_BR/common/dd.md b/pages.pt_BR/common/dd.md new file mode 100644 index 00000000000000..b07b31bfd7d3a8 --- /dev/null +++ b/pages.pt_BR/common/dd.md @@ -0,0 +1,32 @@ +# dd + +> Converte e copia um arquivo. +> Mais informações: . + +- Cria um USB drive bootável a partir de um arquivo isohybrid (como uma archlinux-xxx.iso) e mostra o progresso: + +`dd if={{arquivo.iso}} of=/dev/{{usb_drive}} status=progress` + +- Clona um drive para outro drive com 4 MiB block, ignora erros e mostra o progresso: + +`dd if=/dev/{{drive_fonte}} of=/dev/{{drive_destino}} bs=4M conv=noerror status=progress` + +- Gera um arquivo com 100 bytes aleatórios utilizando o kernel random driver: + +`dd if=/dev/urandom of={{arquivo_random}} bs=100 count=1` + +- Faz o benchmark da performance de escrita de um disco: + +`dd if=/dev/zero of={{arquivo_1GB}} bs=1024 count=1000000` + +- Gera um backup do sistema em um arquivo IMG e mostra o progresso: + +`dd if=/dev/{{dispositivo_drive}} of={{caminho/para/arquivo.img}} status=progress` + +- Restaura um drive a partir de um arquivo IMG e mostra o progresso: + +`dd if={{caminho/para/arquivo.img}} of=/dev/{{dispositivo_drive}} status=progress` + +- Checa o progresso de um processo dd rodando (rode esse comando de outro shell): + +`kill -USR1 $(pgrep ^dd)` diff --git a/pages.pt_BR/common/diff.md b/pages.pt_BR/common/diff.md new file mode 100644 index 00000000000000..a796375efdf978 --- /dev/null +++ b/pages.pt_BR/common/diff.md @@ -0,0 +1,32 @@ +# diff + +> Compara diretórios e arquivos. +> Mais informações: . + +- Compara arquivos (mostra as mudanças necessárias para transformar `arquivo_antigo` em `arquivo_novo`): + +`diff {{arquivo_antigo}} {{arquivo_novo}}` + +- Compara arquivos, ignorando espaço: + +`diff --ignore-all-space {{arquivo_antigo}} {{arquivo_novo}}` + +- Compara arquivos, mostrando diferenças lado a lado: + +`diff --side-by-side {{arquivo_antigo}} {{arquivo_novo}}` + +- Compara arquivos, mostrando as diferenças de forma padronizada como feito por `git diff`: + +`diff --unified {{arquivo_antigo}} {{arquivo_novo}}` + +- Compara diretórios recursivamente, mostrando nomes de diretórios e arquivos diferentes e listando as diferenças entre os arquivos: + +`diff --recursive {{arquivo_antigo}} {{arquivo_novo}}` + +- Compara diretórios, mostrando apenas os nomes dos arquivos diferentes: + +`diff --recursive --brief {{arquivo_antigo}} {{arquivo_novo}}` + +- Cria um arquivo patch para o Git a partir das diferenças entre dois arquivos, tratando arquivos ausentes como vazios: + +`diff --text --unified --new-file {{arquivo_antigo}} {{arquivo_novo}} > {{diferenca.patch}}` diff --git a/pages.pt_BR/common/dig.md b/pages.pt_BR/common/dig.md new file mode 100644 index 00000000000000..23c7df5e971570 --- /dev/null +++ b/pages.pt_BR/common/dig.md @@ -0,0 +1,36 @@ +# dig + +> Utilitário de pesquisa de DNS. +> Mais informações: . + +- Pesquisa o(s) IP(s) associados a um hostname (Registros A): + +`dig +short {{exemplo.com}}` + +- Obtém uma resposta detalhada para um determinado domínio (Registros A): + +`dig +noall +answer {{exemplo.com}}` + +- Consulta um tipo de registro DNS específico associado a um nome de domínio fornecido: + +`dig +short {{exemplo.com}} {{A|MX|TXT|CNAME|NS}}` + +- Obtém todos os tipos de registros para um nome de domínio fornecido: + +`dig {{exemplo.com}} ANY` + +- Especifica um servidor DNS alternativo para consultar: + +`dig @{{8.8.8.8}} {{exemplo.com}}` + +- Performa uma busca reversa de DNS em um endereço de IP (Registro PTR): + +`dig -x {{8.8.8.8}}` + +- Encontra servidores de nomes autorizados para a região e exibe os registros SOA: + +`dig +nssearch {{exemplo.com}}` + +- Performa consultas iterativas e exibe o caminho de ratreio completo para resolver um nome de domínio: + +`dig +trace {{exemplo.com}}` diff --git a/pages.pt_BR/common/docker-compose.md b/pages.pt_BR/common/docker-compose.md new file mode 100644 index 00000000000000..20555014dc2777 --- /dev/null +++ b/pages.pt_BR/common/docker-compose.md @@ -0,0 +1,36 @@ +# docker compose + +> Executa e gerencia multi-containers de aplicações Docker. +> Mais informações: . + +- Lista todos os containers em execução: + +`docker compose ps` + +- Cria e inicia todos os containers em segundo plano usando um arquivo `docker-compose.yml` do seu diretório atual: + +`docker compose up --detach` + +- Inicia todos os containers. Se necessário, realiza um rebuild: + +`docker compose up --build` + +- Inicia todos os containers que estão usando um arquivo compose alternativo: + +`docker compose --file {{caminho/para/arquivo}} up` + +- Encerra todos os containers em execução: + +`docker compose stop` + +- Encerra e remove todos os containers, networks, imagens e volumes: + +`docker compose down --rmi all --volumes` + +- Segue os logs de todos os containers: + +`docker compose logs --follow` + +- Segue os logs de um container específico: + +`docker compose logs --follow {{nome_container}}` diff --git a/pages.pt_BR/common/docker-cp.md b/pages.pt_BR/common/docker-cp.md new file mode 100644 index 00000000000000..73d2d5b97fed21 --- /dev/null +++ b/pages.pt_BR/common/docker-cp.md @@ -0,0 +1,16 @@ +# docker cp + +> Copia arquivos ou diretórios entre filesystems do host e container. +> Mais informações: . + +- Copia um arquivo ou diretório de um host para um container: + +`docker cp {{caminho/do/arquivo_ou_diretório_do_host}} {{nome_do_container}}:{{caminho/do/arquivo_ou_diretório_do_container}}` + +- Copia um arquivo ou diretório de um container para o host: + +`docker cp {{nome_do_container}}:{{caminho/do/arquivo_ou_diretório_do_container}} {{caminho/do/arquivo_ou_diretório_do_host}}` + +- Copia um diretório de um host para um container, seguindo o link simbólico (copia os arquivos linkados diretamente e não o link simbólico): + +`docker cp --follow-link {{caminho/do/arquivo_ou_diretório_linkado_do_host}} {{nome_do_container}}:{{caminho/do/arquivo_ou_diretório_do_container}}` diff --git a/pages.pt_BR/common/docker-rmi.md b/pages.pt_BR/common/docker-rmi.md new file mode 100644 index 00000000000000..be9c6549c2cf1b --- /dev/null +++ b/pages.pt_BR/common/docker-rmi.md @@ -0,0 +1,20 @@ +# docker rmi + +> Remove uma ou mais imagens Docker. +> Mais informações: . + +- Exibe a ajuda: + +`docker rmi` + +- Remove uma ou mais imagens pelo seus nomes: + +`docker rmi {{imagem1 imagem2 ...}}` + +- Remove forçadamente uma imagem: + +`docker rmi --force {{imagem}}` + +- Remove uma imagem sem apagar suas imagens pais que não possuem tags: + +`docker rmi --no-prune {{imagem}}` diff --git a/pages.pt_BR/common/docker-run.md b/pages.pt_BR/common/docker-run.md index 6b8baf7029ae01..4d3dfaa31d0106 100644 --- a/pages.pt_BR/common/docker-run.md +++ b/pages.pt_BR/common/docker-run.md @@ -9,20 +9,20 @@ - Executa um comando em um novo container em background e exibe o ID: -`docker run -d {{image}} {{command}}` +`docker run --detach {{image}} {{command}}` - Executa um comando em um novo container que será removido após a execução em um modo interativo e com um terminal TTY: -`docker run --rm -it {{image}} {{command}}` +`docker run --rm --interactive --tty {{image}} {{command}}` - Executa um comando em um novo container com variáveis de ambiente: -`docker run -e '{{variável}}={{valor}}' -e {{variável}} {{imagem}} {{comando}}` +`docker run --env '{{variável}}={{valor}}' --env {{variável}} {{imagem}} {{comando}}` - Executa um comando em um novo container montando volumes nos caminhos específicos: -`docker run -v {{caminho/no/host_local}}:{{caminho/no/container}} {{imagem}} {{comando}}` +`docker run --volume {{caminho/no/host_local}}:{{caminho/no/container}} {{imagem}} {{comando}}` - Executa um comando em um novo container e abre as portas para acesso: -`docker run -p {{porta_do_host_local}}:{{porta_do_container}} {{imagem}} {{comando}}` +`docker run --publish {{porta_do_host_local}}:{{porta_do_container}} {{imagem}} {{comando}}` diff --git a/pages.pt_BR/common/docker-stats.md b/pages.pt_BR/common/docker-stats.md new file mode 100644 index 00000000000000..dab73954f39717 --- /dev/null +++ b/pages.pt_BR/common/docker-stats.md @@ -0,0 +1,24 @@ +# docker stats + +> Exibe estatísticas dinâmicas de uso de recursos dos containers. +> Mais informações: . + +- Exibe estatísticas atualizadas de todos os containers em execução: + +`docker stats` + +- Exibe estatísticas atualizadas de uma lista separada por espaço dos containers: + +`docker stats {{nome_do_container}}` + +- Altera o formato das colunas para exibir o uso da CPU em porcentagem: + +`docker stats --format "{{.Name}}:\t{{.CPUPerc}}"` + +- Exibe estatísticas para todos os containers (tanto em execução como parados): + +`docker stats --all` + +- Desabilita estatísticas atualizadas e só exibe o status naquele momento: + +`docker stats --no-stream` diff --git a/pages.pt_BR/common/docker.md b/pages.pt_BR/common/docker.md index 8d2efbdf8d5f54..d7799c9a77a68a 100644 --- a/pages.pt_BR/common/docker.md +++ b/pages.pt_BR/common/docker.md @@ -1,6 +1,7 @@ # docker > Gerenciador de containers e imagens Docker. +> Alguns subcomandos como `docker run` tem sua própia documentação de uso. > Mais informações: . - Listar os containers Docker que se encontram em execução: diff --git a/pages.pt_BR/common/dust.md b/pages.pt_BR/common/dust.md new file mode 100644 index 00000000000000..f2f2207df1a721 --- /dev/null +++ b/pages.pt_BR/common/dust.md @@ -0,0 +1,32 @@ +# dust + +> Dust oferece uma visão geral de quais diretórios estão usando espaço em disco. +> Mais informações: . + +- Exibe informações para o diretório atual: + +`dust` + +- Exibe informações para uma lista de diretórios separados por espaço: + +`dust {{caminho/para/diretório1}} {{caminho/para/diretório2}}` + +- Exibe 30 diretórios (o padrão é 21): + +`dust --number-of-lines {{30}}` + +- Exibe informações para o diretório atual, com até 3 níveis de profundidade: + +`dust --depth {{3}}` + +- Exibe os maiores diretórios no topo em ordem decrescente: + +`dust --reverse` + +- Ignora todos os arquivos e diretórios com um nome específico: + +`dust --ignore-directory {{arquivo_ou_nome_do_diretório}}` + +- Não exibe barras de porcentagem e porcentagens: + +`dust --no-percent-bars` diff --git a/pages.pt_BR/common/ebook-convert.md b/pages.pt_BR/common/ebook-convert.md new file mode 100644 index 00000000000000..04b1cb115aaeb7 --- /dev/null +++ b/pages.pt_BR/common/ebook-convert.md @@ -0,0 +1,13 @@ +# ebook-convert + +> Pode ser usado para converter e-books entre os fomatos comuns, como PDF, EPUB e MOBI. +> Faz parte da biblioteca de ferramentas Calibre e-book. +> Mais informações: . + +- Converte um e-book em outro formato: + +`ebook-convert {{caminho/para/arquivo_entrada}} {{arquivo_saída}}` + +- Converte Markdown ou HTML em um e-book com ToC, título e autor: + +`ebook-convert {{caminho/para/arquivo_entrada}} {{arquivo_saída}} --level1-toc="//h:h1" --level2-toc="//h:h2" --level3-toc="//h:h3" --title={{titulo}} --authors={{autor}}` diff --git a/pages.pt_BR/common/echo.md b/pages.pt_BR/common/echo.md new file mode 100644 index 00000000000000..cfbdccdd97e45d --- /dev/null +++ b/pages.pt_BR/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> Imprime os argumentos passados. +> Mais informações: . + +- Imrpime uma mensagem de texto. Nota: aspas são opcionais: + +`echo "{{Uma mensagem}}"` + +- Imprime uma mensagem com as variáveis de ambiente: + +`echo "{{Meu path é $PATH}}"` + +- Imprime uma mensagem sem adicionar uma nova linha em seguida: + +`echo -n "{{Uma mensagem}}"` + +- Adiciona uma messagem no arquivo: + +`echo "{{Uma mensagem}}" >> {{arquivo.txt}}` + +- Habilita interpretação dos códigos de escape após barra invetida (caracteres especiais): + +`echo -e "{{Coluna 1\tColuna 2}}"` diff --git a/pages.pt_BR/common/ect.md b/pages.pt_BR/common/ect.md new file mode 100644 index 00000000000000..1f8c46d3b05d27 --- /dev/null +++ b/pages.pt_BR/common/ect.md @@ -0,0 +1,25 @@ +# ect + +> Efficient Compression Tool. +> Otimizador de arquivos escrito em C++. Suporta arquivos do tipo `.png`, `.jpg`, `.gzip` and `.zip`. +> Mais informações: . + +- Comprime um arquivo: + +`ect {{caminho/para/arquivo.png}}` + +- Comprime um arquivo com level de compressão específico e multithreading (1=Mais rápido (pior), 9=Mais lento (Melhor). O padrão é 3): + +`ect -{{9}} --mt-deflate {{caminho/para/arquivo.zip}}` + +- Comprime todos os arquivos em um diretório recursivamente: + +`ect -recurse {{caminho/para/diretório}}` + +- Comprime um arquivo, mantendo o tempo de modificação original: + +`ect -keep {{caminho/para/arquivo.png}}` + +- Comprime um arquivo, removendo metadados: + +`ect -strip {{caminho/para/arquivo.png}}` diff --git a/pages.pt_BR/common/ed.md b/pages.pt_BR/common/ed.md new file mode 100644 index 00000000000000..c68175a5ee1789 --- /dev/null +++ b/pages.pt_BR/common/ed.md @@ -0,0 +1,33 @@ +# ed + +> O editor de texto original do Unix. +> Veja também: `awk`, `sed`. +> Mais informações: . + +- Inicia uma sessão do editor interativo com um documento vazio: + +`ed` + +- Inicia uma sessão do editor interativo com um documento vazio e um prompt específico: + +`ed --prompt='> '` + +- Inicia uma sessão do editor interativo com erros compreensíveis para usuários: + +`ed --verbose` + +- Inicia uma sessão do editor interativo com um documento vazio e sem diagnósticos, contagens de bytes e prompt "!": + +`ed --quiet` + +- Inicia uma sessão do editor interativo sem mudança no status de saída quando o comando falha: + +`ed --loose-exit-status` + +- Edita um arquivo específico (mostra a contagem de bytes do arquivo carregado): + +`ed {{caminho/para/arquivo}}` + +- Substitui a string com um substituto específico em todas as linhas: + +`,s/{{regular_expression}}/{{substituto}}/g` diff --git a/pages.pt_BR/common/emacs.md b/pages.pt_BR/common/emacs.md new file mode 100644 index 00000000000000..4c04d056e9a307 --- /dev/null +++ b/pages.pt_BR/common/emacs.md @@ -0,0 +1,33 @@ +# emacs + +> O editor extensível, personalizável, autodocumentável, com exibição em tempo real. +> Veja também `emacsclient`. +> Mais informações: . + +- Inicia o Emacs e abra um arquivo: + +`emacs {{caminho/para/arquivo}}` + +- Abre um arquivo em uma linha especificada: + +`emacs +{{numero_linha}} {{caminho/para/arquivo}}` + +- Inicia o Emacs em modo console (sem uma janela X): + +`emacs --no-window-system` + +- Inicia um servidor Emacs em segundo plano (acessível através do `emacsclient`): + +`emacs --daemon` + +- Para um servidor Emacs em funcionamento e todas as suas instâncias, pedindo confirmação em arquivos não salvos: + +`emacsclient --eval '(save-buffers-kill-emacs)'` + +- Salva um arquivo em Emacs: + +`Ctrl + X, Ctrl + S` + +- Deixa o Emacs: + +`Ctrl + X, Ctrl + C` diff --git a/pages.pt_BR/common/esbuild.md b/pages.pt_BR/common/esbuild.md new file mode 100644 index 00000000000000..bd0d7614ac9f94 --- /dev/null +++ b/pages.pt_BR/common/esbuild.md @@ -0,0 +1,36 @@ +# esbuild + +> Empacotador e minificador JavaScript construído para velocidade. +> Mais informações: . + +- Empacota uma aplicação JavaScript e imprime para stdout: + +`esbuild --bundle {{caminho/para/arquivo.js}}` + +- Empacota uma aplicação JSX de stdin: + +`esbuild --bundle --outfile={{caminho/para/saída.js}} < {{caminho/para/arquivo.jsx}}` + +- Empacota e reduz uma aplicação JSX com mapas de origem no modo `production`: + +`esbuild --bundle --define:{{process.env.NODE_ENV=\"production\"}} --minify --sourcemap {{caminho/para/arquivo.js}}` + +- Empacota uma aplicação JSX para uma lista de navegadores separados por vírgulas: + +`esbuild --bundle --minify --sourcemap --target={{chrome58,firefox57,safari11,edge16}} {{caminho/para/arquivo.jsx}}` + +- Empacota uma aplicação JavaScript para uma versão específica do node: + +`esbuild --bundle --platform={{node}} --target={{node12}} {{caminho/para/arquivo.js}}` + +- Empacota uma aplicação JavaScript habilitando a sintaxe JSX em arquivos `.js`: + +`esbuild --bundle app.js --loader:{{.js=jsx}} {{caminho/para/arquivo.js}}` + +- Empacota e serve uma aplicação JavaScript em um servidor HTTP: + +`esbuild --bundle --serve={{porta}} --outfile={{index.js}} {{caminho/para/arquivo.js}}` + +- Empacota uma lista de arquivos em um diretório de saída: + +`esbuild --bundle --outdir={{caminho/para/diretório_de_saída}} {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` diff --git a/pages.pt_BR/common/fast.md b/pages.pt_BR/common/fast.md new file mode 100644 index 00000000000000..c03eed2fcd50a2 --- /dev/null +++ b/pages.pt_BR/common/fast.md @@ -0,0 +1,16 @@ +# fast + +> Teste sua velocidade de download e upload utilizando fast.com. +> Mais informações: . + +- Mede a velocidade de download atual: + +`fast` + +- Mede a velocidade de upload atual além da velocidade de download: + +`fast --upload` + +- Exibe os resultados em uma única linha para reduzir espaçamento: + +`fast --single-line` diff --git a/pages.pt_BR/common/fastboot.md b/pages.pt_BR/common/fastboot.md new file mode 100644 index 00000000000000..4688541aeb61ca --- /dev/null +++ b/pages.pt_BR/common/fastboot.md @@ -0,0 +1,32 @@ +# fastboot + +> Se comunica com dispositivos Android conectados quando iniciados no modo _fastboot_ (o único lugar em que `adb` não funciona). +> Mais informações: . + +- Desbloqueia o bootloader: + +`fastboot oem unlock` + +- Bloqueia o bootloader novamente: + +`fastboot oem lock` + +- Reinicia o dispositivo no modo fastboot para o modo fastboot novamente: + +`fastboot reboot bootloader` + +- Flasheia uma imagem: + +`fastboot flash {{arquivo.img}}` + +- Flasheia uma imagem de _recovery_ customizada: + +`fastboot flash recovery {{arquivo.img}}` + +- Exibe os dispositivos conectados: + +`fastboot devices` + +- Mostra todas as informações de um dispositivo: + +`fastboot getvar all` diff --git a/pages.pt_BR/common/fc-list.md b/pages.pt_BR/common/fc-list.md new file mode 100644 index 00000000000000..be63c976da0f0f --- /dev/null +++ b/pages.pt_BR/common/fc-list.md @@ -0,0 +1,8 @@ +# fc-list + +> Exibe todas as fontes disponíveis no sistema. +> Mais informações: . + +- Exibir as fontes instaladas correspondentes ao critério de busca: + +`fc-list | grep '{{criterio_de_busca}}'` diff --git a/pages.pt_BR/common/fc.md b/pages.pt_BR/common/fc.md new file mode 100644 index 00000000000000..80010021ad4855 --- /dev/null +++ b/pages.pt_BR/common/fc.md @@ -0,0 +1,16 @@ +# fc + +> Abre o último comando executado em um editor de texto. +> Mais informações: . + +- Abrir o último comando executado no editor de texto padrão do sistema: + +`fc` + +- Especificar o editor de texto que será utilizado ao executar o comando: + +`fc -e {{'emacs'}}` + +- Exibir um histórico dos últimos comandos executados: + +`fc -l` diff --git a/pages.pt_BR/common/fd.md b/pages.pt_BR/common/fd.md new file mode 100644 index 00000000000000..6812e10c53c09d --- /dev/null +++ b/pages.pt_BR/common/fd.md @@ -0,0 +1,29 @@ +# fd + +> Uma alternativa para `find`. +> Visa ser mais rápido e fácil de usar do que `find`. +> Mais informações: . + +- Encontra recursivamente arquivos que correspondam ao padrão fornecido no diretório atual: + +`fd {{padrão}}` + +- Encontra arquivos que começam com `foo`: + +`fd '^foo'` + +- Encontra arquivos com uma extensão específica: + +`fd --extension txt` + +- Encontra arquivos em um diretório específico: + +`fd '{{padrão}}' {{caminho/para/diretório}}` + +- Inclui arquivos ignorados e ocultos na pesquisa: + +`fd --hidden --no-ignore '{{padrão}}'` + +- Executa um comando em cada resultado de pesquisa retornado: + +`fd '{{padrão}}' --exec {{comando}}` diff --git a/pages.pt_BR/common/fdp.md b/pages.pt_BR/common/fdp.md new file mode 100644 index 00000000000000..71ec7a7e17132a --- /dev/null +++ b/pages.pt_BR/common/fdp.md @@ -0,0 +1,25 @@ +# fdp + +> Renderiza uma imagem de um gráfico de rede `force-directed` a partir de um arquivo `graphviz`. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> Mais informações: . + +- Renderiza uma imagem `png` com um nome de arquivo baseado no nome do arquivo de entrada e formato de saída (-O maiúsculo): + +`fdp -T png -O {{caminho/para/entrada.gv}}` + +- Renderiza uma imagem `svg` com o nome do arquivo de saída especificado (-o minúsculo): + +`fdp -T svg -o {{caminho/para/imagem.svg}} {{caminho/para/entrada.gv}}` + +- Renderiza a saída nos formatos: + +`fdp -T {{ps|pdf|svg|fig|png|gif|jpg|json|dot}} -O {{caminho/para/entrada.gv}}` + +- Renderiza uma imagem `gif` usando stdin e stdout: + +`echo "{{digraph {isso -> aquilo} }}" | fdp -T gif > {{caminho/para/imagem.gif}}` + +- Exibe ajuda: + +`fdp -?` diff --git a/pages.pt_BR/common/ffmpeg.md b/pages.pt_BR/common/ffmpeg.md new file mode 100644 index 00000000000000..01f8a97fe102a8 --- /dev/null +++ b/pages.pt_BR/common/ffmpeg.md @@ -0,0 +1,36 @@ +# ffmpeg + +> Ferramenta de conversão de vídeo. +> Mais informações: . + +- Extrair o som de um vídeo e salvá-lo como MP3: + +`ffmpeg -i {{vídeo}} -vn {{som}}.mp3` + +- Converter quadros de um vídeo ou GIF para imagens numeradas individuais: + +`ffmpeg -i {{vídeo|gif}} {{quadro_%d.png}}` + +- Combinar imagens numeradas (`quadro_1.jpg`, `quadro_2.jpg`, etc) em um vídeo ou GIF: + +`ffmpeg -i {{quadro_%d.jpg}} -f image2 {{vídeo|gif}}` + +- Extrair um único quadro de um vídeo no tempo mm:ss e salvá-lo como uma imagem de resolução 128x128: + +`ffmpeg -ss {{mm:ss}} -i {{vídeo}} -frames 1 -s {{128x128}} -f image2 {{quadro.png}}` + +- Cortar um vídeo de um dado tempo inicial mm:ss até um tempo final mm2:ss2 (omita a opção -to para cortar o vídeo até o final): + +`ffmpeg -ss {{mm:ss}} -to {{mm2:ss2}} -i {{vídeo_entrada}} -codec copy {{vídeo_saída}}` + +- Converter um vídeo AVI para MP4. AAC Áudio @ 128kbit, h264 Vídeo @ CRF 23: + +`ffmpeg -i {{vídeo_entrada}}.avi -codec:audio aac -b:audio 128k -codec:video libx264 -crf 23 {{vídeo_saída}}.mp4` + +- Remuxar um vídeo MKV para MP4 sem recodificar áudio ou vídeo: + +`ffmpeg -i {{vídeo_entrada}}.mkv -codec copy {{vídeo_saída}}.mp4` + +- Converter vídeo MP4 para o codec VP9. Para a melhor qualidade, use um valor CRF (faixa recomendada 15-35) e -b:video DEVE ser 0: + +`ffmpeg -i {{vídeo_entrada}}.mp4 -codec:video libvpx-vp9 -crf {{30}} -b:video 0 -codec:audio libopus -vbr on -threads {{número_de_threads}} {{vídeo_saída}}.webm` diff --git a/pages.pt_BR/common/finger.md b/pages.pt_BR/common/finger.md new file mode 100644 index 00000000000000..4f8811d9b76da4 --- /dev/null +++ b/pages.pt_BR/common/finger.md @@ -0,0 +1,24 @@ +# finger + +> Programa de pesquisa de informações do usuário. +> Mais informações: . + +- Exibe informações sobre usuários conectados no momento: + +`finger` + +- Exibe informações sobre um usuário específico: + +`finger {{nome_de_usuário}}` + +- Exibe o nome de login do usuário, nome real, nome do terminal e outras informações: + +`finger -s` + +- Produz o formato de saída de várias linhas exibindo as mesmas informações que `-s`, bem como o diretório pessoal do usuário, número de telefone residencial, shell de login, status de correio, etc.: + +`finger -l` + +- Impede a correspondência com os nomes de usuário e usa apenas nomes de login: + +`finger -m` diff --git a/pages.pt_BR/common/firefox.md b/pages.pt_BR/common/firefox.md new file mode 100644 index 00000000000000..79120fce8e1c3f --- /dev/null +++ b/pages.pt_BR/common/firefox.md @@ -0,0 +1,36 @@ +# firefox + +> Um browser livre e de código aberto. +> Mais informações: . + +- Inicie o Firefox e abra uma página web: + +`firefox {{https://www.duckduckgo.com}}` + +- Abra uma nova janela: + +`firefox --new-window {{https://www.duckduckgo.com}}` + +- Abra uma janela privativa (incognito): + +`firefox --private-window` + +- Pesquise por "wikipedia" usando a engine de busca padrão: + +`firefox --search "{{wikipedia}}"` + +- Inicie o Firefox no modo seguro, com todas as extensões desativadas: + +`firefox --safe-mode` + +- Tire uma screenshot de uma página web no modo headless: + +`firefox --headless --screenshot {{caminho/para/arquivo_de_saida.png}} {{https://exemplo.com/}}` + +- Use um perfil específico para permitir que múltiplas instâncias separadas do Firefox rodem ao mesmo tempo: + +`firefox --profile {{caminho/para/diretório}} {{https://example.com/}}` + +- Configure o Firefox como o navegador padrão: + +`firefox --setDefaultBrowser` diff --git a/pages.pt_BR/common/flips.md b/pages.pt_BR/common/flips.md new file mode 100644 index 00000000000000..03d7ece5ef772d --- /dev/null +++ b/pages.pt_BR/common/flips.md @@ -0,0 +1,16 @@ +# flips + +> Cria e aplica patches em arquivos IPS e BPS. +> Mais informações: . + +- Abre Flips para criar e aplicar um patch: + +`flips` + +- Aplica um patch criando um novo arquivo ROM: + +`flips --apply {{patch.bps}} {{rom.smc}} {{hack.smc}}` + +- Cria um patch a partir de duas ROMs: + +`flips --create {{rom.smc}} {{hack.smc}} {{patch.bps}}` diff --git a/pages.pt_BR/common/flutter.md b/pages.pt_BR/common/flutter.md new file mode 100644 index 00000000000000..f1ad4b7dfe3934 --- /dev/null +++ b/pages.pt_BR/common/flutter.md @@ -0,0 +1,32 @@ +# flutter + +> SDK livre e open source do Google para desenvolvimento de aplicativos mobile cross-platform. +> Mais informações: . + +- Mostra ajuda sobre algum comando específico: + +`flutter help {{comando}}` + +- Verifica se todas as ferramentas externas necessárias estão instaladas: + +`flutter doctor` + +- Lista ou muda o channel do Flutter: + +`flutter channel {{stable|beta|dev|master}}` + +- Executa o projeto Flutter em todos os emuladores ativos ou devices conectados: + +`flutter run -d all` + +- Instala todas as dependências definidas no `pubspec.yaml`: + +`flutter pub get` + +- Executa todos os testes no terminal a partir da raíz do projeto: + +`flutter test {{test/example_test.dart}}` + +- Buildar APK de release direcionado aos mais modernos smartphones: + +`flutter build apk --target-platform {{android-arm}},{{android-arm64}}` diff --git a/pages.pt_BR/common/fmt.md b/pages.pt_BR/common/fmt.md new file mode 100644 index 00000000000000..b4e5e6f9f46fef --- /dev/null +++ b/pages.pt_BR/common/fmt.md @@ -0,0 +1,20 @@ +# fmt + +> Reformata um arquivo de texto juntando seus parágrafos e limitando a largura da linha a um determinado número de caracteres (75 por padrão). +> Mais informações: . + +- Reformata um arquivo: + +`fmt {{caminho/para/arquivo}}` + +- Reformata um arquivo produzindo linhas de saída de (no máximo) `n` caracteres: + +`fmt -w {{n}} {{caminho/para/arquivo}}` + +- Reformata um arquivo sem unir linhas menores do que a largura fornecida: + +`fmt -s {{caminho/para/arquivo}}` + +- Reformata um arquivo com espaçamento uniforme (1 espaço entre palavras e 2 espaços entre parágrafos): + +`fmt -u {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/fnm.md b/pages.pt_BR/common/fnm.md new file mode 100644 index 00000000000000..4c41d1941c068f --- /dev/null +++ b/pages.pt_BR/common/fnm.md @@ -0,0 +1,25 @@ +# fnm + +> Gerenciador de versão Node.js rápido. +> Instale, Desinstale ou alterne entre as versões do Node.js. +> Mais informações: . + +- Instala uma versão específica do Node.js: + +`fnm install {{versão_do_node}}` + +- Lista todas as versões disponíveis do Node.js e destaca a padrão: + +`fnm ls` + +- Usa uma versão específica do Node.js no shell atual: + +`fnm use {{versão_do_node}}` + +- Define a versão padrão do Node.js: + +`fnm default {{versão_do_node}}` + +- Desinstala uma determinada versão do Node.js: + +`fnm uninstall {{versão_do_node}}` diff --git a/pages.pt_BR/common/fossil-ci.md b/pages.pt_BR/common/fossil-ci.md new file mode 100644 index 00000000000000..851ae74f47b797 --- /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 00000000000000..a2d8cf6667040b --- /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 00000000000000..2e9c76a0d4407f --- /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 00000000000000..cf1951bdeefdb0 --- /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/ftp.md b/pages.pt_BR/common/ftp.md new file mode 100644 index 00000000000000..d243d560b9a544 --- /dev/null +++ b/pages.pt_BR/common/ftp.md @@ -0,0 +1,32 @@ +# ftp + +> Ferramentas para interagir com um servidor via Protocolo de Transferência de Arquivos. +> Mais informações: . + +- Conecta-se a um servidor FTP: + +`ftp {{ftp.exemplo.com}}` + +- Alterna para o modo de transferência binária (gráficos, arquivos compactados, etc): + +`binary` + +- Transfere vários arquivos sem solicitar confirmação em cada arquivo: + +`prompt off` + +- Baixa vários arquivos (expressão glob): + +`mget {{*.png}}` + +- Carrega vários arquivos (expressão glob): + +`mput {{*.zip}}` + +- Exclui vários arquivos no servidor remoto: + +`mdelete {{*.txt}}` + +- Renomeia um arquivo no servidor remoto: + +`rename {{nome_do_arquivo_original}} {{nome_do_novo_arquivo}}` diff --git a/pages.pt_BR/common/gatsby.md b/pages.pt_BR/common/gatsby.md new file mode 100644 index 00000000000000..de492844767e1f --- /dev/null +++ b/pages.pt_BR/common/gatsby.md @@ -0,0 +1,24 @@ +# gatsby + +> Gerador de site estático para React. +> Mais informações: . + +- Cria um novo site: + +`gatsby new {{nome_do_site}}` + +- Cria um novo site com um 'starter' do Gatsby: + +`gatsby new {{nome_do_site}} {{url_do_repositório_github_do_starter}}` + +- Inicia um servidor de desenvolvimento local de atualização em tempo real: + +`gatsby develop` + +- Executa uma build de produção e gera HTML estático: + +`gatsby build` + +- Inicia um servidor local que atende a build de produção: + +`gatsby serve` diff --git a/pages.pt_BR/common/gcal.md b/pages.pt_BR/common/gcal.md new file mode 100644 index 00000000000000..d4055fc41461c9 --- /dev/null +++ b/pages.pt_BR/common/gcal.md @@ -0,0 +1,24 @@ +# gcal + +> Exibe o calendário. +> Mais informações: . + +- Exibe o calendário para o mês atual: + +`gcal` + +- Exibe o calendário para o mês de Fevereiro do ano de 2010: + +`gcal {{2}} {{2010}}` + +- Fornece folha de calendário com números da semana: + +`gcal --with-week-number` + +- Altera o dia da semana de início para o 1º dia da semana (segunda-feira): + +`gcal --starting-day={{1}}` + +- Exibe o mês anterior, atual e seguinte em torno de hoje: + +`gcal .` diff --git a/pages.pt_BR/common/gcalcli.md b/pages.pt_BR/common/gcalcli.md new file mode 100644 index 00000000000000..ca214f85ea409b --- /dev/null +++ b/pages.pt_BR/common/gcalcli.md @@ -0,0 +1,33 @@ +# gcalcli + +> Ferramenta de linha de comando para interagir com o Google Agenda. +> Solicita autorização da API do Google na primeira inicialização. +> Mais informações: . + +- Lista seus eventos para todos os seus calendários nos próximos 7 dias: + +`gcalcli agenda` + +- Mostra eventos começando em ou entre datas específicas (também recebe datas relativas, por exemplo, "amanhã"): + +`gcalcli agenda {{mm/dd}} [{{mm/dd}}]` + +- Lista eventos de um calendário específico: + +`gcalcli --calendar {{nome_do_calendário}} agenda` + +- Exibe um calendário ASCII de eventos por semana: + +`gcalcli calw` + +- Exibe um calendário ASCII de eventos para um mês: + +`gcalcli calm` + +- Adiciona um evento rapidamente ao seu calendário: + +`gcalcli --calendar {{nome_do_calendário}} quick "{{mm/dd}} {{HH:MM}} {{nome_do_evento}}"` + +- Adiciona um evento ao calendário. Dispara prompt interativo: + +`gcalcli --calendar "{{nome_do_calendário}}" add` diff --git a/pages.pt_BR/common/gcc.md b/pages.pt_BR/common/gcc.md index 949e134891e8b1..a6e948a2588d5d 100644 --- a/pages.pt_BR/common/gcc.md +++ b/pages.pt_BR/common/gcc.md @@ -5,15 +5,15 @@ - Compilar múltiplos arquivos de código fonte, produzindo um arquivo executável: -`gcc {{arquivo_fonte1.c}} {{arquivo_fonte2.c}} -o {{arquivo_executável}}` +`gcc {{arquivo_fonte1.c}} {{arquivo_fonte2.c}} --output {{arquivo_executável}}` - Habilitar avisos durante a compilação: -`gcc {{arquivo_fonte.c}} -Wall -Og -o {{arquivo_executável}}` +`gcc {{arquivo_fonte.c}} -Wall -Og --output {{arquivo_executável}}` - Incluir bibliotecas de um local diferente: -`gcc {{arquivo_fonte.c}} -o {{arquivo_executável}} -I{{caminho/para/header}} -L{{caminho/para/biblioteca}} -l{{nome_biblioteca}}` +`gcc {{arquivo_fonte.c}} --output {{arquivo_executável}} -I{{caminho/para/header}} -L{{caminho/para/biblioteca}} -l{{nome_biblioteca}}` - Compilar o código fonte para instruções Assembler: diff --git a/pages.pt_BR/common/gdu.md b/pages.pt_BR/common/gdu.md new file mode 100644 index 00000000000000..83f25b84252dea --- /dev/null +++ b/pages.pt_BR/common/gdu.md @@ -0,0 +1,36 @@ +# gdu + +> Analisador de uso de disco com interface de console. +> Mais informações: . + +- Exibe interativamente o uso de disco do diretório atual: + +`gdu` + +- Exibe interativamente o uso de disco de um determinado diretório: + +`gdu {{caminho/para/diretório}}` + +- Exibe interativamente o uso de disco de todos os discos montados: + +`gdu --show-disks` + +- Exibe interativamente o uso de disco do diretório atual, mas ignora alguns subdiretórios: + +`gdu --ignore-dirs {{caminho/para/diretório1,caminho/para/diretório2,...}}` + +- Ignora caminhos por expressão regular: + +`gdu --ignore-dirs-pattern '{{.*[abc]+}}'` + +- Ignora diretórios ocultos: + +`gdu --no-hidden` + +- Imprime apenas o resultado, não entra no modo interativo: + +`gdu --non-interactive {{caminho/para/diretório}}` + +- Não mostra o progresso no modo não interativo (útil em scripts): + +`gdu --no-progress {{caminho/para/diretório}}` diff --git a/pages.pt_BR/common/gh-cs.md b/pages.pt_BR/common/gh-cs.md new file mode 100644 index 00000000000000..6d97ad68cba6f2 --- /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-gc.md b/pages.pt_BR/common/git-gc.md new file mode 100644 index 00000000000000..05a843d462c894 --- /dev/null +++ b/pages.pt_BR/common/git-gc.md @@ -0,0 +1,24 @@ +# git gc + +> Otimiza o repositório local limpando os arquivos desnecessários. +> Mais informações: . + +- Otimiza o repositório: + +`git gc` + +- Otimiza de forma mais agressiva, demora mais tempo: + +`git gc --aggressive` + +- Não remove objetos perdidos (por default é removido): + +`git gc --no-prune` + +- Não exibe a saída: + +`git gc --quiet` + +- Exibe toda a ajuda: + +`git gc --help` diff --git a/pages.pt_BR/common/git-pr.md b/pages.pt_BR/common/git-pr.md new file mode 100644 index 00000000000000..20c2cfd12e7fbf --- /dev/null +++ b/pages.pt_BR/common/git-pr.md @@ -0,0 +1,21 @@ +# git pr + +> Traz o código via checkout dos pull requests do GitHub localmente. +> Parte do `git-extras`. +> Mais informações: . + +- Traz o código específico de um pull request: + +`git pr {{número_do_pr}}` + +- Traz o código de um pull request para um remoto específico: + +`git pr {{número_do_pr}} {{remoto}}` + +- Traz o código de um pull request da sua URL: + +`git pr {{url}}` + +- Limpa pull requests antigos: + +`git pr clean` diff --git a/pages.pt_BR/common/git-rm.md b/pages.pt_BR/common/git-rm.md new file mode 100644 index 00000000000000..4a7c285dad2660 --- /dev/null +++ b/pages.pt_BR/common/git-rm.md @@ -0,0 +1,16 @@ +# git rm + +> Remove arquivos do índice do repositório e do arquivo local do sistema. +> Mais informações: . + +- Remove arquivo do índice do repositório e do arquivo local do sistema: + +`git rm {{arquivo}}` + +- Remove um diretório: + +`git rm -r {{diretório}}` + +- Remove arquivo do índice do repositório mas mantém o mesmo localmente: + +`git rm --cached {{arquivo}}` diff --git a/pages.pt_BR/common/git-tag.md b/pages.pt_BR/common/git-tag.md new file mode 100644 index 00000000000000..70d40dd5b4d716 --- /dev/null +++ b/pages.pt_BR/common/git-tag.md @@ -0,0 +1,33 @@ +# git tag + +> Cria, exibe, exclui ou verifica tags. +> Uma tag é uma referência estática para um commit específico. +> Mais informações: . + +- Exibe todas as tags: + +`git tag` + +- Crie uma tag com o nome fornecido apontando para o commit atual: + +`git tag {{nome_da_tag}}` + +- Crie uma tag com o nome fornecido apontando para um determinado commit: + +`git tag {{nome_da_tag}} {{commit}}` + +- Cria uma tag anotada com a mensagem fornecida: + +`git tag {{nome_da_tag}} -m {{mensagem_da_tag}}` + +- Exclui a tag com o nome fornecido: + +`git tag -d {{nome_da_tag}}` + +- Obtenha tags atualizadas do upstream: + +`git fetch --tags` + +- Liste todas as tags cujos ancestrais incluem um determinado commit: + +`git tag --contains {{commit}}` diff --git a/pages.pt_BR/common/git.md b/pages.pt_BR/common/git.md index 333fa2c221ca81..a9a287c5b1415b 100644 --- a/pages.pt_BR/common/git.md +++ b/pages.pt_BR/common/git.md @@ -1,7 +1,8 @@ # git > Sistema de versionamento distribuído. -> Mais informações: . +> Alguns subcomandos como `git commit` tem sua própia documentação de uso. +> Mais informações: . - Verifique a versão do Git: @@ -21,7 +22,7 @@ - Execute um subcomando Git no caminho raíz de um repositório específico: -`git -C {{caminho/para/o/repo}} {{subcomando}}` +`git -C {{caminho/para/repo}} {{subcomando}}` - Execute um subcomando Git com uma dada configuração: diff --git a/pages.pt_BR/common/gnmic-sub.md b/pages.pt_BR/common/gnmic-sub.md new file mode 100644 index 00000000000000..e3ef34a4430789 --- /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 00000000000000..f11e68ec2c7976 --- /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/grep.md b/pages.pt_BR/common/grep.md new file mode 100644 index 00000000000000..0611eee9979e40 --- /dev/null +++ b/pages.pt_BR/common/grep.md @@ -0,0 +1,36 @@ +# grep + +> Acha padrões em arquivos usando expressões regulares. +> Mais informações: . + +- Pesquisa por um padrão em um arquivo: + +`grep "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` + +- Pesquisa por uma string exata (desabilita expressões regulares): + +`grep --fixed-strings "{{string_exata}}" {{caminho/para/arquivo}}` + +- Pesquisa por um padrão em todos os arquivos recursivamente em um diretório, mostrando o número das linhas das correspondências, ignorando arquivos binários: + +`grep --recursive --line-number --binary-files={{without-match}} "{{padrão_pesquisado}}" {{caminho/para/diretório}}` + +- Usa expressões regulares estendidas (suporta `?`, `+`, `{}`, `()` and `|`), no modo insensível a maiúsculas e minúsculas: + +`grep --extended-regexp --ignore-case "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` + +- Imprime 3 linhas de contexto em volta, antes ou depois de cada correspondência: + +`grep --{{context|before-context|after-context}}={{3}} "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` + +- Imprime o nome do arquivo e o número da linha para cada correspondência: + +`grep --with-filename --line-number "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` + +- Pesquisa por linhas que correspondem a um padrão, imprimindo apenas o texto correspondido: + +`grep --only-matching "{{padrão_pesquisado}}" {{caminho/para/arquivo}}` + +- 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/history.md b/pages.pt_BR/common/history.md new file mode 100644 index 00000000000000..5d562c9075f178 --- /dev/null +++ b/pages.pt_BR/common/history.md @@ -0,0 +1,24 @@ +# history + +> Histórico de linha da comando. +> Mais informações: . + +- Exibe a lista de histórico de comandos com números de linha: + +`history` + +- Exibe os últimos 20 comandos (em `zsh` ele exibe todos os comandos a partir do 20º): + +`history {{20}}` + +- Limpa a lista do histórico de comandos (apenas para o shell `bash` atual): + +`history -c` + +- Sobrescreve o arquivo de histórico com o histórico do shell `bash` atual (frequentemente combinado com `history -c` para limpar o histórico): + +`history -w` + +- Deleta a entrada do histórico no deslocamento especificado: + +`history -d {{deslocamento}}` diff --git a/pages.pt_BR/common/htop.md b/pages.pt_BR/common/htop.md index 733015410bad6b..3d9349e7a19d9d 100644 --- a/pages.pt_BR/common/htop.md +++ b/pages.pt_BR/common/htop.md @@ -1,15 +1,28 @@ # htop > Visualizar informação dinâmica em tempo real acerca de processos em execução. Uma versão melhorada do comando `top`. +> Mais informações: . -- Inicializar htop: +- Inicializa htop: `htop` -- Inicializar htop mostrando somente processos pertencentes a um usuário: +- Inicializa htop mostrando somente processos pertencentes a um usuário: -`htop -u {{nome_usuário}}` +`htop --user {{nome_usuário}}` -- Obter ajuda acerca de comandos interativos: +- Ordena processos por um `item_de_ordenacao` (utilize `htop --sort help` para ver as opçōes disponíveis): + +`htop --sort {{item_de_ordenacao}}` + +- Vê comandos interativos enquanto roda `htop`: `?` + +- Muda para uma aba diferente: + +`tab` + +- Mostra ajuda: + +`htop --help` diff --git a/pages.pt_BR/common/hx.md b/pages.pt_BR/common/hx.md new file mode 100644 index 00000000000000..39c1ce01477b48 --- /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/common/id.md b/pages.pt_BR/common/id.md new file mode 100644 index 00000000000000..683e8529db569c --- /dev/null +++ b/pages.pt_BR/common/id.md @@ -0,0 +1,20 @@ +# id + +> Exibe o usuário atual e identidade do grupo. +> Mais informações: . + +- Exibe o ID do usuário atual (UID), ID do grupo (GID) e grupos aos quais eles pertencem: + +`id` + +- Exibe a identidade do usuário atual como um número: + +`id -u` + +- Exibe a identidade do grupo atual como um número: + +`id -g` + +- Exibe o ID de um usuário arbitrário (UID), ID do grupo (GID) e grupos aos quais eles pertencem: + +`id {{nomedeusuario}}` diff --git a/pages.pt_BR/common/img2pdf.md b/pages.pt_BR/common/img2pdf.md new file mode 100644 index 00000000000000..69b1de17909d4d --- /dev/null +++ b/pages.pt_BR/common/img2pdf.md @@ -0,0 +1,24 @@ +# img2pdf + +> Ferramenta de conversão sem perdas de imagens para PDF. +> Mais informações: . + +- Converter múltiplas imagens para um único PDF, cada imagem sendo uma página: + +`img2pdf {{caminho/da/imagem1.jpg}} {{caminho/da/imagem2.jpg}} --output {{caminho/do/arquivo.pdf}}` + +- Converter para PDF apenas o primeiro quadro de uma imagem com múltiplos quadros: + +`img2pdf {{caminho/do/arquivo.gif}} --first-frame-only --output {{caminho/do/arquivo.pdf}}` + +- Auto-orientar a imagem, usar uma página A4 em modo paisagem e uma borda de 2cm horizontalmente e 5.1cm verticalmente: + +`img2pdf {{caminho/do/arquivo.jpg}} --auto-orient --pagesize {{A4^T}} --border {{2cm}}:{{5.1cm}} --output {{caminho/do/arquivo.pdf}}` + +- Encolher apenas imagens maiores para um retângulo de 10cm por 15cm dentro de uma página de 30x20cm: + +`img2pdf {{caminho/do/arquivo.tiff}} --pagesize {{30cm}}x{{20cm}} --imgsize {{10cm}}x{{15cm}} --fit {{shrink}} --output {{caminho/do/arquivo.pdf}}` + +- Converter uma imagem para PDF e especificar os metadados do arquivo resultante: + +`img2pdf {{caminho/do/arquivo.png}} --title {{título}} --author {{autor}} --creationdate {{1970-01-31}} --keywords {{palavra_chave1 palavra_chave2}} --subject {{assunto}} --output {{caminho/do/arquivo.pdf}}` diff --git a/pages.pt_BR/common/java.md b/pages.pt_BR/common/java.md new file mode 100644 index 00000000000000..d2e6520c81d843 --- /dev/null +++ b/pages.pt_BR/common/java.md @@ -0,0 +1,24 @@ +# java + +> 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 `.jar`: + +`java -jar {{arquivo.jar}}` + +- Executa um programa `.jar`, com o debugger tentando conectar-se na porta 5005: + +`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{arquivo.jar}}` + +- Exiba a versão do JDK, JRE e Hotspot: + +`java -version` + +- Exiba os comandos disponíveis do Java: + +`java -help` diff --git a/pages.pt_BR/common/javac.md b/pages.pt_BR/common/javac.md new file mode 100644 index 00000000000000..d0caa11363aa91 --- /dev/null +++ b/pages.pt_BR/common/javac.md @@ -0,0 +1,20 @@ +# javac + +> O compilador de aplicações Java. +> Mais informações: . + +- Compile um arquivo `.java`: + +`javac {{arquivo.java}}` + +- Compile vários arquivos `.java`: + +`javac {{arquivo1.java}} {{arquivo2.java}} {{arquivo3.java}}` + +- Compile todos os arquivos `.java` no diretório atual: + +`javac {{*.java}}` + +- Compile um arquivo `.java` e coloque a classe resultante em um diretório específico: + +`javac -d {{caminho/para/diretorio}} {{arquivo.java}}` diff --git a/pages.pt_BR/common/join.md b/pages.pt_BR/common/join.md new file mode 100644 index 00000000000000..c8791907e74ce3 --- /dev/null +++ b/pages.pt_BR/common/join.md @@ -0,0 +1,20 @@ +# join + +> Junta linhas de dois arquivos ordenados em um campo comum. +> Mais informações: . + +- Junta dois arquivos no primeiro campo (padrão): + +`join {{arquivo1}} {{arquivo2}}` + +- Junta dois arquivos usando uma vírgula (em vez de um espaço) como separador de campo: + +`join -t {{','}} {{arquivo1}} {{arquivo2}}` + +- Junta campo3 do arquivo1 ao campo1 do arquivo2: + +`join -1 {{3}} -2 {{1}} {{arquivo1}} {{arquivo2}}` + +- Produz uma linha para cada linha que não pode ser pareada para o arquivo1: + +`join -a {{1}} {{arquivo1}} {{arquivo2}}` diff --git a/pages.pt_BR/common/jupyter.md b/pages.pt_BR/common/jupyter.md new file mode 100644 index 00000000000000..821957e85deadc --- /dev/null +++ b/pages.pt_BR/common/jupyter.md @@ -0,0 +1,33 @@ +# jupyter + +> Aplicação web para criar e compartilhar documentos que contem código, visualizações e anotações. +> Usado principalmente para análise de dados, computação científica e aprendizado de máquinas (machine learning). +> Mais informações: . + +- Inicia um servidor de notebooks Jupyter no diretório atual: + +`jupyter notebook` + +- Abre um caderno Jupyter específico: + +`jupyter notebook {{exemplo.ipynb}}` + +- Exporta um caderno Jupyter específico para outro formato: + +`jupyter nbconvert --to {{html|markdown|pdf|script}} {{exemplo.ipynb}}` + +- Inicia um servidor em uma porta específica: + +`jupyter notebook --port={{porta}}` + +- Lista de servidores de notebooks atualmente em funcionamento: + +`jupyter notebook list` + +- Para o servidor atualmente em funcionamento: + +`jupyter notebook stop` + +- Inicia o JupyterLab, se instalado, no diretório atual: + +`jupyter lab` diff --git a/pages.pt_BR/common/jwt.md b/pages.pt_BR/common/jwt.md new file mode 100644 index 00000000000000..963e1b49023750 --- /dev/null +++ b/pages.pt_BR/common/jwt.md @@ -0,0 +1,21 @@ +# jwt + +> Uma ferramenta de linha de comando (command-line tool) para trabalhar com JSON Web Tokens (JWTs). +> Algoritmos de encriptação disponíveis são HS256, HS384, HS512, RS256, RS384, RS512, ES256, ES384. +> Mais informações: . + +- Decodifica um JWT: + +`jwt decode {{jwt_string}}` + +- Decodifica um JWT em uma JSON string: + +`jwt decode -j {{jwt_string}}` + +- Codifica uma JSON string em um JWT: + +`jwt encode --alg {{HS256}} --secret {{1234567890}} '{{json_string}}'` + +- Codifica dados (payload) de um par de chaves (key pair) em um JWT: + +`jwt encode --alg {{HS256}} --secret {{1234567890}} -P chave=valor` diff --git a/pages.pt_BR/common/kafkacat.md b/pages.pt_BR/common/kafkacat.md new file mode 100644 index 00000000000000..f7ea4a6f900523 --- /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/kill.md b/pages.pt_BR/common/kill.md index f476c3bcdf9b67..5dc8bb17986176 100644 --- a/pages.pt_BR/common/kill.md +++ b/pages.pt_BR/common/kill.md @@ -2,6 +2,7 @@ > Envia um sinal para um processo, geralmente para finalizar o processo. > Todos os sinais exceto pelo SIGKILL e SIGSTOP podem ser interceptados pelo processo para finalizar de forma limpa. +> Mais informações: . - Finaliza um programa usando o sinal default SIGTERM (terminate): diff --git a/pages.pt_BR/common/kubectl.md b/pages.pt_BR/common/kubectl.md index 2ef8db58907809..6738f93653d00b 100644 --- a/pages.pt_BR/common/kubectl.md +++ b/pages.pt_BR/common/kubectl.md @@ -1,6 +1,7 @@ # kubectl > Linha de comando para executar comando em clusters do Kubernetes. +> Alguns subcomandos como `kubectl run` tem sua própia documentação de uso. > Mais informações: . - Lista toda a informação sobre um recurso em detalhes: diff --git a/pages.pt_BR/common/llvm-ar.md b/pages.pt_BR/common/llvm-ar.md new file mode 100644 index 00000000000000..270a90d73dc84d --- /dev/null +++ b/pages.pt_BR/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Este comando é um pseudônimo de `ar`. + +- Ver documentação sobre o comando original: + +`tldr ar` diff --git a/pages.pt_BR/common/llvm-g++.md b/pages.pt_BR/common/llvm-g++.md new file mode 100644 index 00000000000000..3b7663def38ac2 --- /dev/null +++ b/pages.pt_BR/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Este comando é um pseudônimo de `clang++`. + +- Ver documentação sobre o comando original: + +`tldr clang++` diff --git a/pages.pt_BR/common/llvm-gcc.md b/pages.pt_BR/common/llvm-gcc.md new file mode 100644 index 00000000000000..6009326b468311 --- /dev/null +++ b/pages.pt_BR/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Este comando é um pseudônimo de `clang`. + +- Ver documentação sobre o comando original: + +`tldr clang` diff --git a/pages.pt_BR/common/llvm-nm.md b/pages.pt_BR/common/llvm-nm.md new file mode 100644 index 00000000000000..eea18491564602 --- /dev/null +++ b/pages.pt_BR/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Este comando é um pseudônimo de `nm`. + +- Ver documentação sobre o comando original: + +`tldr nm` diff --git a/pages.pt_BR/common/llvm-objdump.md b/pages.pt_BR/common/llvm-objdump.md new file mode 100644 index 00000000000000..e01a1197a9f252 --- /dev/null +++ b/pages.pt_BR/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Este comando é um pseudônimo de `objdump`. + +- Ver documentação sobre o comando original: + +`tldr objdump` diff --git a/pages.pt_BR/common/llvm-strings.md b/pages.pt_BR/common/llvm-strings.md new file mode 100644 index 00000000000000..3142c193ff9e17 --- /dev/null +++ b/pages.pt_BR/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Este comando é um pseudônimo de `strings`. + +- Ver documentação sobre o comando original: + +`tldr strings` diff --git a/pages.pt_BR/common/lsof.md b/pages.pt_BR/common/lsof.md index fedb22eb0795f1..729419301e6eba 100644 --- a/pages.pt_BR/common/lsof.md +++ b/pages.pt_BR/common/lsof.md @@ -2,6 +2,7 @@ > Lista arquivos abertos e os seus processos correspondentes. > Nota: Privilégios de administrador (ou sudo) são necessários para listar arquivos abertos por outros. +> Mais informações: . - Localizar os processos que têm um certo arquivo aberto: diff --git a/pages.pt_BR/common/lzcat.md b/pages.pt_BR/common/lzcat.md new file mode 100644 index 00000000000000..bcb502a9e4b9db --- /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 00000000000000..d702815d7f79b7 --- /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 5e200871459777..73639bf0ac7eee 100644 --- a/pages.pt_BR/common/man.md +++ b/pages.pt_BR/common/man.md @@ -9,7 +9,7 @@ - Visualizar a página da seção 7 do manual de um comando: -`man {{comando}}.{{7}}` +`man {{7}} {{comando}}` - Visualizar o caminho procurado pelas páginas do manual: diff --git a/pages.pt_BR/common/mosquitto.md b/pages.pt_BR/common/mosquitto.md new file mode 100644 index 00000000000000..bb7d92035cf51e --- /dev/null +++ b/pages.pt_BR/common/mosquitto.md @@ -0,0 +1,20 @@ +# mosquitto + +> Um broker de MQTT. +> Mais informações: . + +- Inicia mosquitto: + +`mosquitto` + +- Especifica um arquivo de configuração para usar: + +`mosquitto --config-file {{caminho/para/arquivo.conf}}` + +- Escuta em uma porta específica: + +`mosquitto --port {{8883}}` + +- Cria um processo rodando em background: + +`mosquitto --daemon` diff --git a/pages.pt_BR/common/mscore.md b/pages.pt_BR/common/mscore.md new file mode 100644 index 00000000000000..12747be1646fac --- /dev/null +++ b/pages.pt_BR/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Este comando é um pseudônimo de `musescore`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr musescore` diff --git a/pages.pt_BR/common/mvn.md b/pages.pt_BR/common/mvn.md index f91df9180c8f25..250eaca48f5e17 100644 --- a/pages.pt_BR/common/mvn.md +++ b/pages.pt_BR/common/mvn.md @@ -1,7 +1,7 @@ # mvn > Ferramenta para a criação e gerenciamento de projetos Java. -> Mais informações: . +> Mais informações: . - Compilar um projeto: @@ -13,7 +13,7 @@ - Criar um artefato de distribuição sem executar testes unitários: -`mvn package -Dmaven.test.skip=true` +`mvn package -DskipTests` - Instalar um artefato gerado em um repositório local: diff --git a/pages.pt_BR/common/nano.md b/pages.pt_BR/common/nano.md new file mode 100644 index 00000000000000..92c789e937c142 --- /dev/null +++ b/pages.pt_BR/common/nano.md @@ -0,0 +1,28 @@ +# nano + +> Editor de texto de linha de comando simples e fácil de usar. Um clone melhorado e gratuito de Pico. +> Mais informações: . + +- Abre um novo arquivo no nano: + +`nano` + +- Abre um arquivo específico: + +`nano {{caminho/para/arquivo}}` + +- Abre um arquivo específico, posicionando o cursor na linha e coluna especificadas: + +`nano +{{linha}},{{coluna}} {{caminho/para/arquivo}}` + +- Abre um arquivo específico 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: + +`nano --autoindent {{caminho/para/arquivo}}` + +- Abre nano e cria um arquivo backup (`file~`) quando salva edições: + +`nano --backup {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/neofetch.md b/pages.pt_BR/common/neofetch.md new file mode 100644 index 00000000000000..408df6c5efbe04 --- /dev/null +++ b/pages.pt_BR/common/neofetch.md @@ -0,0 +1,20 @@ +# neofetch + +> Ferramenta CLI para exibir informações sobre seu sistema operacional, software e hardware. +> Mais informações: . + +- Volta à configuração padrão, ou crie-a se for a primeira vez que o programa for executado: + +`neofetch` + +- Habilita/Desabilita uma linha de informação da saída, onde 'infoname' é o nome da função no arquivo de configuração, por exemplo, 'memory': + +`neofetch --{{enable|disable}} {{infoname}}` + +- Oculta/Mostra arquitetura do SO: + +`neofetch --os_arch {{on|off}}` + +- Habilita/Desabilita a marca da CPU na saída: + +`neofetch --cpu_brand {{on|off}}` diff --git a/pages.pt_BR/common/next.md b/pages.pt_BR/common/next.md new file mode 100644 index 00000000000000..8385035dac9f42 --- /dev/null +++ b/pages.pt_BR/common/next.md @@ -0,0 +1,36 @@ +# next + +> Framework React que usa renderização do lado do servidor para construir aplicações web otimizadas. +> Mais informações: . + +- Inicia a aplicação atual em modo de desenvolvimento: + +`next dev` + +- Inicia a aplicação atual e escuta em uma porta específica: + +`next dev --port {{porta}}` + +- Cria a aplicação atual otimizada para produção: + +`next build` + +- Inicia a aplicação compilada em modo de produção: + +`next start` + +- Inicia a aplicação compilada e escuta em uma porta específica: + +`next start --port {{porta}}` + +- Exporta a aplicação atual para páginas HTML estáticas: + +`next export` + +- Exibe o status de telemetria Next.js: + +`next telemetry` + +- Exibe ajuda para um subcomando: + +`next {{build|dev|export|start|telemetry}} --help` diff --git a/pages.pt_BR/common/nm-classic.md b/pages.pt_BR/common/nm-classic.md new file mode 100644 index 00000000000000..420929fedc6847 --- /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/node.md b/pages.pt_BR/common/node.md index 02c640fbb6b5b9..a5132771f63153 100644 --- a/pages.pt_BR/common/node.md +++ b/pages.pt_BR/common/node.md @@ -15,6 +15,10 @@ `node -e "{{código}}"` -- Executar um arquivo Javascript, imprimindo o resultado: +- Executar um arquivo JavaScript, imprimindo o resultado: `node -p "{{script}}"` + +- Ativar o inspetor, pausando a execução até que um depurador seja conectado depois que o código-fonte for totalmente analisado: + +`node --no-lazy --inspect-brk {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/common/nth.md b/pages.pt_BR/common/nth.md new file mode 100644 index 00000000000000..c28eb59302df9f --- /dev/null +++ b/pages.pt_BR/common/nth.md @@ -0,0 +1,20 @@ +# nth + +> Name That Hash - Nomeia o tipo de um hash em um instante. +> Mais informações: . + +- Nomeia o hash: + +`nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}}` + +- Nomeia hashes em um arquivo: + +`nth -f {{caminho/para/hashes}}` + +- Saída no formato json: + +`nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}} -g` + +- Decodifica o hash em Base64 e nomeia: + +`nth -t {{NWY0ZGNjM2I1YWE3NjVkNjFkODMyN2RlYjg4MmNmOTkK}} -b64` diff --git a/pages.pt_BR/common/ntl.md b/pages.pt_BR/common/ntl.md new file mode 100644 index 00000000000000..745113542da35f --- /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/pio-init.md b/pages.pt_BR/common/pio-init.md new file mode 100644 index 00000000000000..dae9300e6c02e6 --- /dev/null +++ b/pages.pt_BR/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Este comando é um pseudônimo de `pio project`. + +- Ver documentação sobre o comando original: + +`tldr pio project` diff --git a/pages.pt_BR/common/piodebuggdb.md b/pages.pt_BR/common/piodebuggdb.md new file mode 100644 index 00000000000000..62807d1d775423 --- /dev/null +++ b/pages.pt_BR/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Este comando é um pseudônimo de `pio debug`. + +- Ver documentação sobre o comando original: + +`tldr pio debug` diff --git a/pages.pt_BR/common/pip-install.md b/pages.pt_BR/common/pip-install.md new file mode 100644 index 00000000000000..43b161b0b73315 --- /dev/null +++ b/pages.pt_BR/common/pip-install.md @@ -0,0 +1,24 @@ +# pip install + +> Instala pacotes Python. +> Mais informações: . + +- Instala um pacote: + +`pip install {{nome_pacote}}` + +- Instala uma versão específica de um pacote: + +`pip install {{nome_pacote}}=={{versão_do_pacote}}` + +- Instala pacotes listados em um arquivo: + +`pip install --requirement {{requirements.txt}}` + +- Instala pacotes a partir de uma URL ou arquivo local (.tar.gz | .whl): + +`pip install --find-links {{url|caminho/do/arquivo}}` + +- Instala o pacote local no diretório atual no modo de desenvolvimento (editável): + +`pip install --editable {{.}}` diff --git a/pages.pt_BR/common/pip-uninstall.md b/pages.pt_BR/common/pip-uninstall.md new file mode 100644 index 00000000000000..dd81373b562db4 --- /dev/null +++ b/pages.pt_BR/common/pip-uninstall.md @@ -0,0 +1,16 @@ +# pip uninstall + +> Desinstala pacotes Python. +> Mais informações: . + +- Desinstala um pacote: + +`pip uninstall {{nome_pacote}}` + +- Desinstala pacotes listados em um arquivo: + +`pip uninstall --requirement {{requirements.txt}}` + +- Desinstala um pacote sem pedir por confirmação: + +`pip uninstall --yes {{nome_pacote}}` diff --git a/pages.pt_BR/common/pip.md b/pages.pt_BR/common/pip.md new file mode 100644 index 00000000000000..135720610756fa --- /dev/null +++ b/pages.pt_BR/common/pip.md @@ -0,0 +1,33 @@ +# pip + +> Gerenciador de pacotes para Python. +> Alguns sub-comandos, como `pip install` possuem sua própria documentação. +> Mais informações: . + +- Instala um pacote (veja `pip install` para mais exemplos de instalação): + +`pip install {{nome_pacote}}` + +- Instala um pacote no diretório do usuário em vez do local padrão do sistema: + +`pip install --user {{nome_pacote}}` + +- Atualiza um pacote: + +`pip install --upgrade {{nome_pacote}}` + +- Desinstala um pacote: + +`pip uninstall {{nome_pacote}}` + +- Salva os pacotes instalados em um arquivo: + +`pip freeze > {{requirements.txt}}` + +- Mostra informações sobre um pacote instalado: + +`pip show {{nome_pacote}}` + +- Instala pacotes a partir de um arquivo: + +`pip install --requirement {{requirements.txt}}` diff --git a/pages.pt_BR/common/pip3.md b/pages.pt_BR/common/pip3.md new file mode 100644 index 00000000000000..822f38a839b0a3 --- /dev/null +++ b/pages.pt_BR/common/pip3.md @@ -0,0 +1,36 @@ +# pip3 + +> Gerenciador de pacotes para 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}}` + +- Atualiza um pacote: + +`pip3 install --upgrade {{nome_pacote}}` + +- Desinstala um pacote: + +`pip3 uninstall {{nome_pacote}}` + +- Salva a lista de pacotes instalados em um arquivo: + +`pip3 freeze > {{requirements.txt}}` + +- Instala pacotes salvos em um arquivo: + +`pip3 install --requirement {{requirements.txt}}` + +- Mostra informações sobre um pacote instalado: + +`pip3 show {{nome_pacote}}` diff --git a/pages.pt_BR/common/platformio.md b/pages.pt_BR/common/platformio.md new file mode 100644 index 00000000000000..0a8caa8f72cc3a --- /dev/null +++ b/pages.pt_BR/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Este comando é um pseudônimo de `pio`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr pio` diff --git a/pages.pt_BR/common/ptpython3.md b/pages.pt_BR/common/ptpython3.md new file mode 100644 index 00000000000000..f34fb9886b31a6 --- /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 new file mode 100644 index 00000000000000..a99b110f8666bc --- /dev/null +++ b/pages.pt_BR/common/python.md @@ -0,0 +1,32 @@ +# python + +> O interpretador de linguagem Python. +> Mais informações: . + +- Inicia o REPL (shell interativo): + +`python` + +- Executa o script do arquivo Python alvo: + +`python {{script.py}}` + +- Executa o script como parte do shell interativo: + +`python -i {{script.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): + +`python -m {{modulo}} {{argumentos}}` + +- Instala um pacote usando pip: + +`python -m pip install {{nome_do_pacote}}` + +- Depura interativamente um script de Python: + +`python -m pdb {{script.py}}` diff --git a/pages.pt_BR/common/python3.md b/pages.pt_BR/common/python3.md new file mode 100644 index 00000000000000..29dffc65df4445 --- /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/r2.md b/pages.pt_BR/common/r2.md new file mode 100644 index 00000000000000..b1f0b849f51450 --- /dev/null +++ b/pages.pt_BR/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Este comando é um pseudônimo de `radare2`. + +- Ver documentação sobre o comando original: + +`tldr radare2` diff --git a/pages.pt_BR/common/rails-generate.md b/pages.pt_BR/common/rails-generate.md index 79d10e39ef3c8e..bbd0b34d5c9067 100644 --- a/pages.pt_BR/common/rails-generate.md +++ b/pages.pt_BR/common/rails-generate.md @@ -1,6 +1,7 @@ # rails generate > Gerar artefatos Rails a partir de um modelo em um projeto existente. +> Mais informações: . - Exibir todos os geradores disponíveis: diff --git a/pages.pt_BR/common/rbenv.md b/pages.pt_BR/common/rbenv.md index 1ff7af2d31cd8b..be66b890216705 100644 --- a/pages.pt_BR/common/rbenv.md +++ b/pages.pt_BR/common/rbenv.md @@ -1,6 +1,7 @@ # rbenv > Ferramenta que facilita a instalação e gerenciamento de múltiplas versões da linguagem Ruby. +> Mais informações: . - Instalar uma ou mais versões, separadas por espaço: diff --git a/pages.pt_BR/common/rcat.md b/pages.pt_BR/common/rcat.md new file mode 100644 index 00000000000000..0917154d72c996 --- /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/renice.md b/pages.pt_BR/common/renice.md new file mode 100644 index 00000000000000..d4111d5828025b --- /dev/null +++ b/pages.pt_BR/common/renice.md @@ -0,0 +1,17 @@ +# renice + +> Altera a prioridade/agradabilidade de agendamento de um ou mais processos em execução. +> Os valores de agradabilidade variam de -20 (mais favorável ao processo) a 19 (menos favorável ao processo). +> Mais informações: . + +- Altera a prioridade de um processo em execução: + +`renice -n {{valor_de_agradabilidade}} -p {{pid}}` + +- Altera a prioridade de todos os processos pertencentes a um usuário: + +`renice -n {{valor_de_agradabilidade}} -u {{nome_do_usuario}}` + +- Altera a prioridade de todos os processos que pertencem a um grupo de processos: + +`renice -n {{valor_de_agradabilidade}} --pgrp {{grupo_de_processos}}` diff --git a/pages.pt_BR/common/ripgrep.md b/pages.pt_BR/common/ripgrep.md new file mode 100644 index 00000000000000..c48e52eb5e84f3 --- /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/rustc.md b/pages.pt_BR/common/rustc.md new file mode 100644 index 00000000000000..2bcd8a1e15dd2a --- /dev/null +++ b/pages.pt_BR/common/rustc.md @@ -0,0 +1,33 @@ +# rustc + +> O compilador Rust. +> Processa, compila e vincula arquivos fonte da linguagem Rust. +> Mais informações: . + +- Compila um único arquivo: + +`rustc {{caminho/para/arquivo.rs}}` + +- Compila com alta otimização: + +`rustc -O {{caminho/para/arquivo.rs}}` + +- Compila com informações de depuração: + +`rustc -g {{caminho/para/arquivo.rs}}` + +- Compila com otimizações específicas de arquitetura para a CPU atual: + +`rustc -C target-cpu=native {{caminho/para/arquivo.rs}}` + +- Exibe otimizações específicas de arquitetura para a CPU atual: + +`rustc -C target-cpu=native --print cfg` + +- Exibe lista de targets: + +`rustc --print target-list` + +- Compila para um target específico: + +`rustc --target {{target_triplo}} {{caminho/para/arquivo.rs}}` diff --git a/pages.pt_BR/common/rvm.md b/pages.pt_BR/common/rvm.md index b5e710492d9c2d..9e95332bcbd885 100644 --- a/pages.pt_BR/common/rvm.md +++ b/pages.pt_BR/common/rvm.md @@ -1,6 +1,7 @@ # rvm > Ferramenta que facilita a instalação e gerenciamento de múltiplas versões da linguagem Ruby. +> Mais informações: . - Instalar uma ou mais versões separadas por espaço: diff --git a/pages.pt_BR/common/sh.md b/pages.pt_BR/common/sh.md new file mode 100644 index 00000000000000..7eef6b9d5cf0e2 --- /dev/null +++ b/pages.pt_BR/common/sh.md @@ -0,0 +1,21 @@ +# sh + +> Bourne shell, o interpretador padrão da linha de comando. +> Veja também `histexpand` para um histórico expandido. +> Mais informações: . + +- Inicie uma sessão shell interativa: + +`sh` + +- Execute um comando e então saia da shell: + +`sh -c "{{comando}}"` + +- Execute um script: + +`sh {{caminho/para/script.sh}}` + +- Leia e execute comandos da entrada stdin (entrada padrão): + +`sh -s` diff --git a/pages.pt_BR/common/sl.md b/pages.pt_BR/common/sl.md new file mode 100644 index 00000000000000..7d46bb09eb8292 --- /dev/null +++ b/pages.pt_BR/common/sl.md @@ -0,0 +1,24 @@ +# sl + +> Locomotiva a vapor passando pelo seu terminal. +> Mais informações: . + +- Faz uma locomotiva a vapor passar pelo seu terminal: + +`sl` + +- O trem pega fogo e pessoas gritam: + +`sl -a` + +- Faz o trem voar: + +`sl -F` + +- Faz o trem pequeno: + +`sl -l` + +- Deixa o usuário sair (CTRL + C): + +`sl -e` diff --git a/pages.pt_BR/common/snakefmt.md b/pages.pt_BR/common/snakefmt.md new file mode 100644 index 00000000000000..ece1189469c8e5 --- /dev/null +++ b/pages.pt_BR/common/snakefmt.md @@ -0,0 +1,24 @@ +# snakefmt + +> Formata arquivos Snakemake. +> Mais informações: . + +- Formata um Snakefile específico: + +`snakefmt {{caminho/para/snakefile}}` + +- Formata todos os Snakefiles recursivamente em uma pasta específica: + +`snakefmt {{caminho/para/diretorio}}` + +- Formata um arquivo usando um arquivo de configuração específico: + +`snakefmt --config {{caminho/para/config.toml}} {{caminho/para/snakefile}}` + +- Formata um arquivo usando um comprimento máximo de linha específico: + +`snakefmt --line-length {{100}} {{caminho/para/snakefile}}` + +- Exibe às mudanças que seriam realizadas sem realiza-las: + +`snakefmt --diff {{caminho/para/snakefile}}` diff --git a/pages.pt_BR/common/tldrl.md b/pages.pt_BR/common/tldrl.md new file mode 100644 index 00000000000000..0abf7458779c53 --- /dev/null +++ b/pages.pt_BR/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Este comando é um pseudônimo de `tldr-lint`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr tldr-lint` diff --git a/pages.pt_BR/common/tlmgr-arch.md b/pages.pt_BR/common/tlmgr-arch.md new file mode 100644 index 00000000000000..8b52201e258041 --- /dev/null +++ b/pages.pt_BR/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Este comando é um pseudônimo de `tlmgr platform`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr tlmgr platform` diff --git a/pages.pt_BR/common/todoman.md b/pages.pt_BR/common/todoman.md new file mode 100644 index 00000000000000..83dbb99e60e001 --- /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 865f5bc9448475..8a75a107bdb996 100644 --- a/pages.pt_BR/common/touch.md +++ b/pages.pt_BR/common/touch.md @@ -1,21 +1,24 @@ # touch -> Atualizar as timestamps de um arquivo para a hora atual. -> Se o arquivo não existir, cria um arquivo vazio, a menos que seja passado o parâmetro -c ou -h. -> Mais informações: . +> Alterar os timestamps de acesso e de modificação (atime, mtime) de um arquivo. +> Mais informações: . -- Criar um novo arquivo vazio, ou atualizar as timestamps para a hora atual: +- Criar novo(s) arquivo(s) vazio(s) ou alterar os timestamps do(s) arquivo(s) para o timestamp atual: -`touch {{arquivo}}` +`touch {{caminho/para/arquivo}}` -- Definir as timestamps de um arquivo para a hora especificada: +- Definir os timestamps de um arquivo para uma data e hora específica: -`touch -t {{YYYYMMDDHHMM.SS}} {{arquivo}}` +`touch -t {{YYYYMMDDHHMM.SS}} {{caminho/para/arquivo}}` -- Usar as timestamps do arquivo1 para definir as timestamps do arquivo2: +- Definir os timestamps de um arquivo para uma hora no passado: -`touch -r {{arquivo1}} {{arquivo2}}` +`touch -d "{{-1 hour}}" {{caminho/para/arquivo}}` -- Alterar as timestamps de um arquivo. Não cria novo arquivo se não existir: +- Usar as timestamps de um arquivo para definir as timestamps de um segundo arquivo: -`touch -c {{arquivo}}` +`touch -r {{caminho/para/arquivo1}} {{caminho/para/arquivo2}}` + +- Criar múltiplos arquivos: + +`touch -c {{caminho/para/arquivo{1,2,3}.txt}}` diff --git a/pages.pt_BR/common/transmission.md b/pages.pt_BR/common/transmission.md new file mode 100644 index 00000000000000..b6c4220168769a --- /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/tree.md b/pages.pt_BR/common/tree.md new file mode 100644 index 00000000000000..2f57689bb87d64 --- /dev/null +++ b/pages.pt_BR/common/tree.md @@ -0,0 +1,36 @@ +# tree + +> Exibe o conteúdo do diretório atual em formato de árvore. +> Mais informações: . + +- Exibe os arquivos e diretórios de acordo com o nível de profundidade 'num' informado (onde 1 significa o diretório atual): + +`tree -L {{num}}` + +- Exibe apenas diretórios: + +`tree -d` + +- Inclui a exibição de arquivos ocultos com colorização diferenciada: + +`tree -a -C` + +- Exibe a árvore sem identação, mostrando o caminho completo (usar `-N` para não escapar espaços em branco e caracteres especiais): + +`tree -i -f` + +- Exibe o tamanho de cada arquivo e o tamanho acumulado de cada diretório, em um formato de leitura para humanos: + +`tree -s -h --du` + +- Exibe arquivos em uma árvore hierárquica, utilizando um padrão coringa, e eliminando diretórios que não contêm arquivos correspondentes ao informado: + +`tree -P '{{*.txt}}' --prune` + +- Exibe diretórios em uma árvore hierárquica, utilizando um padrão coringa, e eliminando diretórios que não possuem ancestrais do informado: + +`tree -P {{nome_diretorio}} --matchdirs --prune` + +- Exibe a árvore ignorando os diretórios informados: + +`tree -I '{{nome_diretorio1|nome_diretorio2}}'` diff --git a/pages.pt_BR/common/unlzma.md b/pages.pt_BR/common/unlzma.md new file mode 100644 index 00000000000000..dea65ab66d8b66 --- /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/unrar.md b/pages.pt_BR/common/unrar.md index 436ff086f036e8..82686aee866b0e 100644 --- a/pages.pt_BR/common/unrar.md +++ b/pages.pt_BR/common/unrar.md @@ -1,6 +1,7 @@ # unrar > Descompactar arquivos comprimidos no formato RAR. +> Mais informações: . - Descompactar o arquivo mantendo a estrutura de diretórios original: diff --git a/pages.pt_BR/common/unxz.md b/pages.pt_BR/common/unxz.md new file mode 100644 index 00000000000000..e46da9be4a7674 --- /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/unzip.md b/pages.pt_BR/common/unzip.md index 92d99979c28b1f..a0fb6b9fbcf71b 100644 --- a/pages.pt_BR/common/unzip.md +++ b/pages.pt_BR/common/unzip.md @@ -1,6 +1,7 @@ # unzip > Ferramenta de descompactação de arquivos zip. +> Mais informações: . - Extraindo arquivos zip: diff --git a/pages.pt_BR/common/vi.md b/pages.pt_BR/common/vi.md new file mode 100644 index 00000000000000..162ba161f86707 --- /dev/null +++ b/pages.pt_BR/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Este comando é um pseudônimo de `vim`. + +- Ver documentação sobre o comando original: + +`tldr vim` diff --git a/pages.pt_BR/common/vim.md b/pages.pt_BR/common/vim.md new file mode 100644 index 00000000000000..8399f06caf44d2 --- /dev/null +++ b/pages.pt_BR/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), é um editor de texto em linha de comando, que fornece muitos modos para diferentes tipos de manipulação de texto. +> Apertando `i` no modo normal entra em modo insert (inserir). Apertando `` volta para o modo normal, que permite o uso dos comandos do Vim. +> Mais informações: . + +- Abre um arquivo: + +`vim {{caminho/para/arquivo}}` + +- Abre um arquivo em um número da linha específica: + +`vim +{{número_da_linha}} {{caminho/para/arquivo}}` + +- Abre o manual do Vim em visualização: + +`:help` + +- Salva e sai do arquivo atual: + +`:wq` + +- Entra em modo normal e desfaz a última operação: + +`u` + +- Procura por um sequência padrão dentro de um arquivo (aperte `n`/`N` para ir para próxima/anterior sequência padrão): + +`/{{sequência_padrão_procurada}}` + +- Executa uma substituição por expressão regular no arquivo todo: + +`:%s/{{expressão_regular}}/{{substituição}}/g` + +- Mostra os números das linhas: + +`:set nu` diff --git a/pages.pt_BR/common/vlc.md b/pages.pt_BR/common/vlc.md new file mode 100644 index 00000000000000..39f69e06d88eed --- /dev/null +++ b/pages.pt_BR/common/vlc.md @@ -0,0 +1,24 @@ +# vlc + +> Reprodutor multimídia multi-plataforma. +> Mais informações: . + +- Reproduzir um arquivo: + +`vlc {{caminho/para/arquivo}}` + +- Reproduzir em tela cheia: + +`vlc --fullscreen {{caminho/para/arquivo}}` + +- Reproduzir mudo: + +`vlc --no-audio {{caminho/para/arquivo}}` + +- Reproduzir repetidamente: + +`vlc --loop {{caminho/para/arquivo}}` + +- Reproduzir vídeo de um URL: + +`vlc {{https://www.youtube.com/watch?v=fxNlpQYRz7s}}` diff --git a/pages.pt_BR/common/wget.md b/pages.pt_BR/common/wget.md new file mode 100644 index 00000000000000..d4001c22971053 --- /dev/null +++ b/pages.pt_BR/common/wget.md @@ -0,0 +1,37 @@ +# wget + +> Baixar arquivos da Internet. +> Suporta HTTP, HTTPS, e FTP. +> Mais informações: . + +- Baixa o conteúdo de uma URL para o arquivo (nomeado como "foo" neste caso): + +`wget {{https://exemplo.com/foo}}` + +- Baixa o conteúdo de uma URL para o arquivo (nomeado como "bar" neste caso): + +`wget --output-document {{bar}} {{https://exemplo.com/foo}}` + +- Baixa uma única página web e todo os seus recursos com intervalos de 3 segundos entre requisições (scripts, stylesheets, imagens, etc.): + +`wget --page-requisites --convert-links --wait={{3}} {{https://exemplo.com/algumapagina.html}}` + +- Baixa todos os arquivos listados dentro de um diretório e seus sub-diretórios (não baixa elementos de página incorporados): + +`wget --mirror --no-parent {{https://exemplo.com/algumcaminho/}}` + +- Limita a velocidade de download e o número de novas tentativas de conexão: + +`wget --limit-rate={{300k}} --tries={{100}} {{https://exemplo.com/algumcaminho/}}` + +- Baixa um arquivo de um servidor HTTP usando Autenticação Básica (também funciona para FTP): + +`wget --user={{nomeusuario}} --password={{senha}} {{https://exemplo.com}}` + +- Continua um download incompleto: + +`wget --continue {{https://exemplo.com}}` + +- Baixa todas as URLs armazenadas em um arquivo de texto para um diretório específico: + +`wget --directory-prefix {{caminho/para/diretorio}} --input-file {{URLs.txt}}` diff --git a/pages.pt_BR/common/where.md b/pages.pt_BR/common/where.md new file mode 100644 index 00000000000000..7376b20ca59e56 --- /dev/null +++ b/pages.pt_BR/common/where.md @@ -0,0 +1,9 @@ +# where + +> Reporta todas as instâncias conhecidas do comando. +> Pode ser um executável na variável PATH, um alias, ou um comando builtin do shell. +> Mais informações: . + +- Encontra todas as instâncias de um comando: + +`where {{comando}}` diff --git a/pages.pt_BR/common/which.md b/pages.pt_BR/common/which.md new file mode 100644 index 00000000000000..f3a59b4bcbccb7 --- /dev/null +++ b/pages.pt_BR/common/which.md @@ -0,0 +1,12 @@ +# which + +> Localiza um programa no path do usuário. +> Mais informações: . + +- Procura na variável PATH e exibe a localização do executável se encontrado: + +`which {{executável}}` + +- Se existe múltiplos executáveis que concidem com a pesquisa, exibe todos: + +`which -a {{executavél}}` diff --git a/pages.pt_BR/common/while.md b/pages.pt_BR/common/while.md new file mode 100644 index 00000000000000..a9da9fe09e0d25 --- /dev/null +++ b/pages.pt_BR/common/while.md @@ -0,0 +1,12 @@ +# while + +> Loop simples da shell. +> Mais informações: . + +- Lê a entrada default (stdin) e realiza uma ação a cada linha: + +`while read line; do echo "$line"; done` + +- Executa um comando para sempre a cada segundo: + +`while :; do {{comando}}; sleep 1; done` diff --git a/pages.pt_BR/common/whoami.md b/pages.pt_BR/common/whoami.md new file mode 100644 index 00000000000000..d7652fdb0edb66 --- /dev/null +++ b/pages.pt_BR/common/whoami.md @@ -0,0 +1,12 @@ +# whoami + +> Imprime o nome do usuário associado com o ID do usuário efetivamente atual. +> Mais informações: . + +- Exibe o nome do usuário logado: + +`whoami` + +- Exibe o nome do usuário depois de uma mudança do ID do usuário: + +`sudo whoami` diff --git a/pages.pt_BR/common/wpa_supplicant.md b/pages.pt_BR/common/wpa_supplicant.md index b91b298037286c..bf22b92b8e594c 100644 --- a/pages.pt_BR/common/wpa_supplicant.md +++ b/pages.pt_BR/common/wpa_supplicant.md @@ -1,6 +1,7 @@ # wpa_supplicant > Gerenciador de redes wireless protegidas. +> Mais informações: . - Entrar em uma rede wireless protegida: diff --git a/pages.pt_BR/common/xkill.md b/pages.pt_BR/common/xkill.md index b9139084ef8a9d..e5459aa2c7d34a 100644 --- a/pages.pt_BR/common/xkill.md +++ b/pages.pt_BR/common/xkill.md @@ -2,6 +2,7 @@ > Termina o cliente associado a um elemento gráfico. > Utilizado para forçar a terminação de processos que não respondem ou não apresentam botão "fechar". +> Mais informações: . - Ativar um cursor para fechar uma janela com o clique do botão esquerdo do mouse (pressionar qualquer outro botão para cancelar): diff --git a/pages.pt_BR/common/xzcat.md b/pages.pt_BR/common/xzcat.md new file mode 100644 index 00000000000000..06624535aef357 --- /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/yarn-why.md b/pages.pt_BR/common/yarn-why.md index ecf8735124fcb2..04fa1aa3919618 100644 --- a/pages.pt_BR/common/yarn-why.md +++ b/pages.pt_BR/common/yarn-why.md @@ -1,7 +1,7 @@ # yarn-why > Identifica por que um pacote Yarn foi instalado. -> Mais informações: . +> Mais informações: . - Exibir na tela o motivo de um pacote Yarn estar instalado: diff --git a/pages.pt_BR/common/zip.md b/pages.pt_BR/common/zip.md index 9769aecdcaa266..bb016954b79a59 100644 --- a/pages.pt_BR/common/zip.md +++ b/pages.pt_BR/common/zip.md @@ -1,6 +1,7 @@ # zip > Ferramenta de compressão de arquivos em arquivos zip. +> Mais informações: . - Compactando arquivos em um arquivo zip: diff --git a/pages.pt_BR/common/zsh.md b/pages.pt_BR/common/zsh.md new file mode 100644 index 00000000000000..dc60aebaa5d5f4 --- /dev/null +++ b/pages.pt_BR/common/zsh.md @@ -0,0 +1,25 @@ +# zsh + +> Z SHell, um interpretador de linha de comando compatível com o Bash. +> Veja também `histexpand` para um histórico expandido. +> Mais informações: . + +- Inicie uma sessão shell interativa: + +`zsh` + +- Execute um comando e depois saia da shell: + +`zsh -c "{{comando}}"` + +- Execute um script: + +`zsh {{caminho/para/script.zsh}}` + +- Execute um script, imprimindo cada comando 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` diff --git a/pages.pt_BR/linux/a2disconf.md b/pages.pt_BR/linux/a2disconf.md index 911d1c491cc38a..f36e4a8a0391d8 100644 --- a/pages.pt_BR/linux/a2disconf.md +++ b/pages.pt_BR/linux/a2disconf.md @@ -1,12 +1,12 @@ # a2disconf > Desativar um arquivo de configuração em sistemas operacionais baseados no Debian. -> Mais informações: . +> Mais informações: . -- Desativar um arquivo de configuração: +- Desativa um arquivo de configuração: `sudo a2disconf {{arquivo_de_configuracao}}` -- Não mostrar mensagens informativas: +- Não mostra mensagens informativas: `sudo a2disconf --quiet {{arquivo_de_configuracao}}` diff --git a/pages.pt_BR/linux/a2dismod.md b/pages.pt_BR/linux/a2dismod.md index 85218282550b41..4ef41d68bff1c5 100644 --- a/pages.pt_BR/linux/a2dismod.md +++ b/pages.pt_BR/linux/a2dismod.md @@ -1,12 +1,12 @@ # a2dismod > Desativa um módulo do Apache em sistemas operacionais baseados no Debian. -> Mais informações: . +> Mais informações: . -- Desativar um módulo: +- Desativa um módulo: `sudo a2dismod {{módulo}}` -- Não mostrar mensagens informativas: +- Não mostra mensagens informativas: `sudo a2dismod --quiet {{módulo}}` diff --git a/pages.pt_BR/linux/a2dissite.md b/pages.pt_BR/linux/a2dissite.md new file mode 100644 index 00000000000000..64bc9c01d9ace8 --- /dev/null +++ b/pages.pt_BR/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Desativa um host virtual do Apache em sistemas operacionais baseados no Debian. +> Mais informações: . + +- Desativa um host virtual: + +`sudo a2dissite {{host_virtual}}` + +- Não mostra mensagens informativas: + +`sudo a2dissite --quiet {{host_virtual}}` diff --git a/pages.pt_BR/linux/a2enconf.md b/pages.pt_BR/linux/a2enconf.md new file mode 100644 index 00000000000000..03f84b432b490c --- /dev/null +++ b/pages.pt_BR/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Ativa um arquivo de configuração do Apache em sistemas operacionais baseados no Debian. +> Mais informações: . + +- Ativa um arquivo de configuração: + +`sudo a2enconf {{arquivo_de_configuração}}` + +- Não mostra mensagens informativas: + +`sudo a2enconf --quiet {{arquivo_de_configuração}}` diff --git a/pages.pt_BR/linux/a2enmod.md b/pages.pt_BR/linux/a2enmod.md new file mode 100644 index 00000000000000..263c9cc678c389 --- /dev/null +++ b/pages.pt_BR/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Ativa um módulo do Apache em sistemas operacionais baseados no Debian. +> Mais informações: . + +- Ativa um módulo: + +`sudo a2enmod {{módulo}}` + +- Não mostra mensagens informativas: + +`sudo a2enmod --quiet {{module}}` diff --git a/pages.pt_BR/linux/a2ensite.md b/pages.pt_BR/linux/a2ensite.md new file mode 100644 index 00000000000000..d87f3daae03980 --- /dev/null +++ b/pages.pt_BR/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Ativa um host virtual do Apache em sistemas operacionais baseados no Debian. +> Mais informações: . + +- Ativa um host virtual: + +`sudo a2ensite {{host_virtual}}` + +- Não mostra mensagens informativas: + +`sudo a2ensite --quiet {{host_virtual}}` diff --git a/pages.pt_BR/linux/a2query.md b/pages.pt_BR/linux/a2query.md new file mode 100644 index 00000000000000..5ff8cdac5b6d92 --- /dev/null +++ b/pages.pt_BR/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Exibe configurações de execução do Apache em sistemas operacionais baseados no Debian. +> Mais informações: . + +- Lista módulos ativos do Apache: + +`sudo a2query -m` + +- Verifica se um módulo específico está instalado: + +`sudo a2query -m {{nome_do_modulo}}` + +- Lista host virtuais ativos: + +`sudo a2query -s` + +- Exibe o módulo de multi processamento atualmente ativo: + +`sudo a2query -M` + +- Mostra a versão do Apache: + +`sudo a2query -v` diff --git a/pages.pt_BR/linux/abbr.md b/pages.pt_BR/linux/abbr.md new file mode 100644 index 00000000000000..d91d5e76ae3461 --- /dev/null +++ b/pages.pt_BR/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Gerencie abreviações para fish-shell. +> Palavras definidas pelo usuário são substituídas por frases longas assim que são digitadas. +> Mais informações: . + +- Adicione uma nova abreviação: + +`abbr --add {{nome_abreviacao}} {{comando}} {{orgumentos_comando}}` + +- Renomear uma abreviação existente: + +`abbr --rename {{nome_antigo}} {{novo_nome}}` + +- Apagar uma abreviação existente: + +`abbr --erase {{nome_abreviacao}}` + +- Importar abreviações definidas em outro host via SSH: + +`ssh {{nome_host}} abbr --show | source` diff --git a/pages.pt_BR/linux/abroot.md b/pages.pt_BR/linux/abroot.md new file mode 100644 index 00000000000000..7b4a47b0e8fc3b --- /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/ac.md b/pages.pt_BR/linux/ac.md new file mode 100644 index 00000000000000..a0209353b97955 --- /dev/null +++ b/pages.pt_BR/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> Imprime estatísticas de quanto tempo usuários permaneceram conctados. +> Mais informações: . + +- Imprime quanto tempo em horas o usuário atual ficou conectado: + +`ac` + +- Imprime quanto tempo em horas usuários ficaram conectados: + +`ac --individual-totals` + +- Imprime quanto tempo em horas um usuário em particular ficou conectado: + +`ac --individual-totals {{usuario}}` + +- Imprime quanto tempo um usuário em particular ficou conectado em horas por dia (com total): + +`ac --daily-totals --individual-totals {{usuario}}` + +- Também exibe detalhes adicionais: + +`ac --compatibility` diff --git a/pages.pt_BR/linux/acountry.md b/pages.pt_BR/linux/acountry.md new file mode 100644 index 00000000000000..dce5e6d0039d1a --- /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 new file mode 100644 index 00000000000000..0fa461d7285dd5 --- /dev/null +++ b/pages.pt_BR/linux/acpi.md @@ -0,0 +1,28 @@ +# acpi + +> Exibe status da bateria ou informações térmicas. +> Mais informações: . + +- Exibe informações sobre a bateria: + +`acpi` + +- Exibe informações térmicas: + +`acpi -t` + +- Exibe informações sobre dispositivo de resfriamento: + +`acpi -c` + +- Exibe informações térmicas em Fahrenheit: + +`acpi -tf` + +- Exibe todas as informações: + +`acpi -V` + +- Extrai informações de `/proc` em vez de `/sys`: + +`acpi -p` diff --git a/pages.pt_BR/linux/add-apt-repository.md b/pages.pt_BR/linux/add-apt-repository.md index b2f195d5e56beb..45bb8398274b6f 100644 --- a/pages.pt_BR/linux/add-apt-repository.md +++ b/pages.pt_BR/linux/add-apt-repository.md @@ -1,6 +1,7 @@ # add-apt-repository > Gerenciar definições de repositórios APT. +> Mais informações: . - Adicionar um repositório: diff --git a/pages.pt_BR/linux/addpart.md b/pages.pt_BR/linux/addpart.md new file mode 100644 index 00000000000000..d4849fede29bb7 --- /dev/null +++ b/pages.pt_BR/linux/addpart.md @@ -0,0 +1,9 @@ +# addpart + +> Informa ao kernel do Linux sobre a existência da partição especificada. +> O comando é um wrapper do ioctl `add partition`. +> Mais informações: . + +- Informar ao kernel do Linux sobre a existência da partição especificada: + +`addpart {{dispositivo}} {{particao}} {{inicio}} {{tamanho}}` diff --git a/pages.pt_BR/linux/addr2line.md b/pages.pt_BR/linux/addr2line.md new file mode 100644 index 00000000000000..7e8a1b6ffd6e7b --- /dev/null +++ b/pages.pt_BR/linux/addr2line.md @@ -0,0 +1,16 @@ +# addr2line + +> Converte endereços de um binário em nomes de arquivos e números de linha. +> Mais informações: . + +- Exibe o nome do arquivo e o número da linha do código-fonte de um endereço de instrução de um executável: + +`addr2line --exe={{caminho/do/executavel}} {{endereco}}` + +- Exibe o nome da função, nome do arquivo e número da linha: + +`addr2line --exe={{caminho/do/executavel}} --functions {{endereco}}` + +- Desembaraça o nome da função em código C++: + +`addr2line --exe={{caminho/do/executavel}} --functions --demangle {{endereco}}` diff --git a/pages.pt_BR/linux/adig.md b/pages.pt_BR/linux/adig.md new file mode 100644 index 00000000000000..7e9436b7e2b0a9 --- /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/alien.md b/pages.pt_BR/linux/alien.md new file mode 100644 index 00000000000000..b042908b0db29f --- /dev/null +++ b/pages.pt_BR/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> Converter diferentes pacotes de instalação para outros formatos. +> Mais informações: . + +- Converter um arquivo de instalação específico para o formato Debian (extensão `.deb`): + +`sudo alien --to-deb {{caminho/para/arquivo}}` + +- Converter um arquivo de instalação específico para o formato Red Hat (extensão `.rpm`): + +`sudo alien --to-rpm {{caminho/para/arquivo}}` + +- Converter um arquivo de instalação específico para um arquivo de instalação do Slackware (extensão `.tgz`): + +`sudo alien --to-tgz {{caminho/para/arquivo}}` + +- Converter um arquivo de instalação específico para o formato Debian e instalar no sistema: + +`sudo alien --to-deb --install {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/linux/alpine.md b/pages.pt_BR/linux/alpine.md index 7d374c3be0ab08..2d3afab8ad77ff 100644 --- a/pages.pt_BR/linux/alpine.md +++ b/pages.pt_BR/linux/alpine.md @@ -2,15 +2,16 @@ > Um cliente de e-mail e programa de newsgroup Usenet com uma interface inspirada no pico e nano. > Suporta a maioria dos serviços de e-mail por meio de IMAP. +> Mais informações: . -- Iniciar o alpine: +- Inicia o alpine: `alpine` -- Abrir o alpine na tela de composição de mensagem com o e-mail do destinatário preenchido: +- Abre o alpine na tela de composição de mensagem com o e-mail do destinatário preenchido: `alpine {{email@exemplo.net}}` -- Encerrar o alpine: +- Encerra o alpine: `'q' e 'y'` diff --git a/pages.pt_BR/linux/alternatives.md b/pages.pt_BR/linux/alternatives.md new file mode 100644 index 00000000000000..d36d026ad9e8c8 --- /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/apache2ctl.md b/pages.pt_BR/linux/apache2ctl.md index 56c761d627a4d3..b37ea16f067b93 100644 --- a/pages.pt_BR/linux/apache2ctl.md +++ b/pages.pt_BR/linux/apache2ctl.md @@ -2,7 +2,7 @@ > Interface de controle do servidor web HTTP Apache. > Este comando está disponível nas distribuições baseadas em Debian, para as baseadas em RHEL veja `httpd`. -> Mais informações: . +> Mais informações: . - Iniciar o Apache. Caso ele já esteja em execução, uma mensagem será apresentada: diff --git a/pages.pt_BR/linux/apk.md b/pages.pt_BR/linux/apk.md index 7a22c32c538c5a..de4ee11b8115e9 100644 --- a/pages.pt_BR/linux/apk.md +++ b/pages.pt_BR/linux/apk.md @@ -1,6 +1,7 @@ # apk > Gerenciador de pacotes da distribuição Alpine. +> Mais informações: . - Atualizar os índices dos pacotes disponíveis: diff --git a/pages.pt_BR/linux/archey.md b/pages.pt_BR/linux/archey.md index f5212fddfdf608..71d6dc743294c3 100644 --- a/pages.pt_BR/linux/archey.md +++ b/pages.pt_BR/linux/archey.md @@ -1,6 +1,7 @@ # archey > Ferramenta que exibe informações do sistema de forma estilizada. +> Mais informações: . - Exibir as informações do sistema: diff --git a/pages.pt_BR/linux/archinstall.md b/pages.pt_BR/linux/archinstall.md new file mode 100644 index 00000000000000..9402897ffc412c --- /dev/null +++ b/pages.pt_BR/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> Instalador do Arch Linux guiado com uma torção. +> Mais informações: . + +- Inicia o instalador interativo: + +`archinstall` + +- Inicia um instalador predefinido: + +`archinstall {{minimal|unattended}}` diff --git a/pages.pt_BR/linux/arp-scan.md b/pages.pt_BR/linux/arp-scan.md deleted file mode 100644 index 18c305721c28db..00000000000000 --- a/pages.pt_BR/linux/arp-scan.md +++ /dev/null @@ -1,19 +0,0 @@ -# arp-scan - -> Envia pacotes ARP para máquinas (identificadas por endereço IP ou por nome de domínio) em uma rede local, identificando as máquinas ativas de acordo com as respostas. - -- Verificar as máquinas da rede local: - -`arp-scan --localnet` - -- Verificar as máquinas de uma rede IP especificando a máscara de bit: - -`arp-scan {{192.168.1.1}}/{{24}}` - -- Verificar as máquinas de uma rede IP que estejam em uma faixa de valores: - -`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` - -- Verificar as máquinas de uma rede IP especificando a máscara de rede: - -`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages.pt_BR/linux/as.md b/pages.pt_BR/linux/as.md index 909fe07dd101df..3380106f61f2c0 100644 --- a/pages.pt_BR/linux/as.md +++ b/pages.pt_BR/linux/as.md @@ -2,6 +2,7 @@ > Assembler GNU multiplataforma. > Seu objetivo inicial é realizar o montagem do arquivo gerado pelo `gcc` para ser utilizado pelo `ld`. +> Mais informações: . - Realizar a montagem de um arquivo, o resultado dessa operação será gravado no arquivo a.out: diff --git a/pages.pt_BR/linux/asciiart.md b/pages.pt_BR/linux/asciiart.md new file mode 100644 index 00000000000000..c811a6f71fe9e9 --- /dev/null +++ b/pages.pt_BR/linux/asciiart.md @@ -0,0 +1,28 @@ +# asciiart + +> Converte imagens para ASCII. +> Mais informações: . + +- Lê uma imagem de um arquivo e imprime em ASCII: + +`asciiart {{caminho/para/imagem.jpg}}` + +- Lê uma imagem de uma URL e imprime em ASCII: + +`asciiart {{www.exemplo.com/imagem.jpg}}` + +- Escolha a largura da saída (o padrão é 100): + +`asciiart --width {{50}} {{caminho/para/imagem.jpg}}` + +- Imprimir com cor: + +`asciiart --color {{caminho/para/imagem.jpg}}` + +- Escolha o formato de saída (o padrão é text): + +`asciiart --format {{text|html}} {{caminho/para/imagem.jpg}}` + +- Inverter o mapeamento dos caracteres: + +`asciiart --invert-chars {{caminho/para/imagem.jpg}}` diff --git a/pages.pt_BR/linux/aspell.md b/pages.pt_BR/linux/aspell.md index 57ea4974617d76..c9d81db56405ba 100644 --- a/pages.pt_BR/linux/aspell.md +++ b/pages.pt_BR/linux/aspell.md @@ -1,6 +1,7 @@ # aspell > Verificador ortográfico interativo. +> Mais informações: . - Verificar a ortografia do texto de um arquivo: @@ -14,10 +15,10 @@ `aspell dicts` -- Executar aspell utilizando uma língua diferente (informe o código ISO 639 da língua): +- Executar `aspell` utilizando uma língua diferente (informe o código ISO 639 da língua): `aspell --lang={{cs}}` - Exibir os erros ortográficos no terminal e ignorando as palavras da lista pessoal: -`cat {{arquivo}} | aspell --personal={{lista_pessoal.pws}} {{list}}` +`cat {{arquivo}} | aspell --personal={{lista_pessoal.pws}} list` diff --git a/pages.pt_BR/linux/authconfig.md b/pages.pt_BR/linux/authconfig.md index 4572c6a7538cbd..bb4f6257bcf773 100644 --- a/pages.pt_BR/linux/authconfig.md +++ b/pages.pt_BR/linux/authconfig.md @@ -1,6 +1,7 @@ # authconfig > Interface de linha comandos para configurar o sistema de autenticação. +> Mais informações: . - Exibir as configurações atuais (ou dry run): diff --git a/pages.pt_BR/linux/autorandr.md b/pages.pt_BR/linux/autorandr.md index 98f23a4b5b9843..0a5ed30957a598 100644 --- a/pages.pt_BR/linux/autorandr.md +++ b/pages.pt_BR/linux/autorandr.md @@ -1,6 +1,7 @@ # autorandr > Altera o layout da tela automaticamente. +> Mais informações: . - Salvar o layout da tela em uso: diff --git a/pages.pt_BR/linux/batcat.md b/pages.pt_BR/linux/batcat.md new file mode 100644 index 00000000000000..179e18cfb85d11 --- /dev/null +++ b/pages.pt_BR/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> Este comando é um pseudônimo de `bat`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr bat` diff --git a/pages.pt_BR/linux/battop.md b/pages.pt_BR/linux/battop.md new file mode 100644 index 00000000000000..cc824e52b8e348 --- /dev/null +++ b/pages.pt_BR/linux/battop.md @@ -0,0 +1,12 @@ +# battop + +> Um visualizador interativo para as baterias instaladas no seu notebook. +> Mais informações: . + +- Exibe informações da bateria: + +`battop` + +- Altera a [u]nidade de medida das informações da bateria (padrão: human): + +`battop -u {{human|si}}` diff --git a/pages.pt_BR/linux/beep.md b/pages.pt_BR/linux/beep.md index 1ccc48ce88cd04..203b3f79b66c74 100644 --- a/pages.pt_BR/linux/beep.md +++ b/pages.pt_BR/linux/beep.md @@ -1,6 +1,7 @@ # beep > Utilitário que permite o computador emitir sons. +> Mais informações: . - Emitir um som: @@ -20,4 +21,4 @@ - Executar a escala de Dó maior: -`beep -f 262 -n -f 294 -n -f 330 -n -f 349 -n -f 392 -n -f 440 -n -f 494 -n -f 523` +`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.pt_BR/linux/blkid.md b/pages.pt_BR/linux/blkid.md new file mode 100644 index 00000000000000..c1308b2b03f3b9 --- /dev/null +++ b/pages.pt_BR/linux/blkid.md @@ -0,0 +1,12 @@ +# blkid + +> Lista todas as partições reconhecidas e seu Identificador Único Universal (UUID). +> Mais informações: . + +- Lista todas as partições: + +`sudo blkid` + +- Lista todas as partições em uma tabela, incluindo os pontos de montagem atuais: + +`sudo blkid -o list` diff --git a/pages.pt_BR/linux/bluetoothctl.md b/pages.pt_BR/linux/bluetoothctl.md new file mode 100644 index 00000000000000..a00fbc22164254 --- /dev/null +++ b/pages.pt_BR/linux/bluetoothctl.md @@ -0,0 +1,36 @@ +# bluetoothctl + +> Gerencia dispositivos Bluetooth a partir da linha de comando. +> Mais informações: . + +- Inicia o shell `bluetoothctl`: + +`bluetoothctl` + +- Lista todos os dispositivos conhecidos: + +`bluetoothctl devices` + +- Liga ou desliga o controlador Bluetooth: + +`bluetoothctl power {{on|off}}` + +- Emparelha com um dispositivo: + +`bluetoothctl pair {{endereço_mac}}` + +- Remove um dispositivo: + +`bluetoothctl remove {{endereço_mac}}` + +- Conecta a um dispositivo pareado: + +`bluetoothctl connect {{endereço_mac}}` + +- Desconecta um dispositivo pareado: + +`bluetoothctl disconnect {{endereço_mac}}` + +- Exibe ajuda: + +`bluetoothctl help` diff --git a/pages.pt_BR/linux/bmon.md b/pages.pt_BR/linux/bmon.md index 0df932b2b22c51..6938844424638b 100644 --- a/pages.pt_BR/linux/bmon.md +++ b/pages.pt_BR/linux/bmon.md @@ -1,6 +1,7 @@ # bmon > Monitora a largura de banda e produz estatísticas relacionadas a rede. +> Mais informações: . - Exibir uma lista com todas as interfaces de rede: diff --git a/pages.pt_BR/linux/br.md b/pages.pt_BR/linux/br.md new file mode 100644 index 00000000000000..7b27e91715aa10 --- /dev/null +++ b/pages.pt_BR/linux/br.md @@ -0,0 +1,25 @@ +# br + +> Navega árvore de diretórios interativamente. +> Veja também: `broot`. +> Mais informações: . + +- Começa e navega na árvore de diretórios atual interativamente: + +`br` + +- Inicia mostrando o tamanho de arquivos e diretórios: + +`br --sizes` + +- Inicia mostrando permissões: + +`br --permissions` + +- Inicia mostrando apenas diretórios: + +`br --only-folders` + +- Inicia mostrando arquivos ocultos e diretórios: + +`br --hidden` diff --git a/pages.pt_BR/linux/brctl.md b/pages.pt_BR/linux/brctl.md index db1871a50255ed..3574040d99d2d9 100644 --- a/pages.pt_BR/linux/brctl.md +++ b/pages.pt_BR/linux/brctl.md @@ -1,6 +1,7 @@ # brctl > Administração de pontes de rede. +> Mais informações: . - Exibir uma lista com informações das pontes de rede existentes: diff --git a/pages.pt_BR/linux/brew.md b/pages.pt_BR/linux/brew.md deleted file mode 100644 index 468793bec6abb7..00000000000000 --- a/pages.pt_BR/linux/brew.md +++ /dev/null @@ -1,35 +0,0 @@ -# brew - -> A versão Linux do gerenciador de pacotes Homebrew. - -- Buscar por fórmulas disponíveis: - -`brew search {{termo_da_busca}}` - -- Instalar a última versão estável de uma fórmula (utilizar `--devel` para versões de desenvolvimento): - -`brew install {{formula}}` - -- Listar as fórmulas instaladas: - -`brew list` - -- Atualizar uma fórmula instalada (se não for informado o nome de uma fórmula, todas as fórmulas serão atualizadas): - -`brew upgrade {{formula}}` - -- Recuperar a versão mais recente do Linuxbrew e de todas as fórmulas do GitHub: - -`brew update` - -- Exibir as fórmulas que possuem novas versões disponíveis: - -`brew outdated` - -- Exibir informações sobre uma fórmula (versão, caminho de instalação, dependências, etc.): - -`brew info {{formula}}` - -- Verificar a instalação local em busca de possíveis problemas: - -`brew doctor` diff --git a/pages.pt_BR/linux/bspwm.md b/pages.pt_BR/linux/bspwm.md new file mode 100644 index 00000000000000..b70f9365f4fdcd --- /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-balance.md b/pages.pt_BR/linux/btrfs-balance.md new file mode 100644 index 00000000000000..8fdd408e95593e --- /dev/null +++ b/pages.pt_BR/linux/btrfs-balance.md @@ -0,0 +1,32 @@ +# btrfs balance + +> Balanceia grupos de blocos em um sistema de arquivos btrfs. +> Mais informações: . + +- Mostra o status de uma operação balance em execução ou pausada: + +`sudo btrfs balance status {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Balanceia todos os grupos de blocos (lento; reescreve todos os blocos no sistema de arquivos): + +`sudo btrfs balance start {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Balanceia grupos de blocos de dados com menos de 15% de utilização, executando a operação em segundo plano: + +`sudo btrfs balance start --bg -dusage={{15}} {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Balanceia um máximo de 10 partes de metadados com menos de 20% de utilização e pelo menos 1 parte em um determinado dispositivo `devid` (consulte `btrfs filesystem show`): + +`sudo btrfs balance start -musage={{20}},limit={{10}},devid={{devid}} {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Converte blocos de dados para raid6 e metadados para raid1c3 (veja mkfs.btrfs(8) para perfis): + +`sudo btrfs balance start -dconvert={{raid6}} -mconvert={{raid1c3}} {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Converte blocos de dados para raid1, pulando pedaços já convertidos (por exemplo, após uma operação de conversão cancelada anterior): + +`sudo btrfs balance start -dconvert={{raid1}},soft {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Cancela, pausa ou retoma uma operação de balanceamento em execução ou pausada: + +`sudo btrfs balance {{cancel|pause|resume}} {{caminho/para/sistema_de_arquivos_btrfs}}` diff --git a/pages.pt_BR/linux/btrfs-check.md b/pages.pt_BR/linux/btrfs-check.md new file mode 100644 index 00000000000000..8a472839f52e91 --- /dev/null +++ b/pages.pt_BR/linux/btrfs-check.md @@ -0,0 +1,32 @@ +# btrfs check + +> Verifica ou repara um sistema de arquivos btrfs. +> Mais informações: . + +- Verifica um sistema de arquivos btrfs: + +`sudo btrfs check {{caminho/para/partição}}` + +- Verifica e repara um sistema de arquivos btrfs (perigoso): + +`sudo btrfs check --repair {{caminho/para/partição}}` + +- Mostra o andamento da verificação: + +`sudo btrfs check --progress {{caminho/para/partição}}` + +- Verifica a soma de verificação de cada bloco de dados (se o sistema de arquivos estiver bom): + +`sudo btrfs check --check-data-csum {{caminho/para/partição}}` + +- Usa o `n`-ésimo superbloco (`n` pode ser 0, 1 ou 2): + +`sudo btrfs check --super {{n}} {{caminho/para/partição}}` + +- Reconstrói a árvore de soma de verificação: + +`sudo btrfs check --repair --init-csum-tree {{caminho/para/partição}}` + +- Reconstrói a árvore de extensão: + +`sudo btrfs check --repair --init-extent-tree {{caminho/para/partição}}` diff --git a/pages.pt_BR/linux/btrfs-device.md b/pages.pt_BR/linux/btrfs-device.md new file mode 100644 index 00000000000000..85cce01d0909cd --- /dev/null +++ b/pages.pt_BR/linux/btrfs-device.md @@ -0,0 +1,24 @@ +# btrfs device + +> Gerencia dispositivos em um sistema de arquivos btrfs. +> Mais informações: . + +- Adiciona um ou mais dispositivos a um sistema de arquivos btrfs: + +`sudo btrfs device add {{caminho/para/bloco_do_dispositivo1}} [{{caminho/para/bloco_do_dispositivo2}}] {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Remove um dispositivo de um sistema de arquivos btrfs: + +`sudo btrfs device remove {{caminho/para/dispositivo|id_do_dispositivo}} [{{...}}]` + +- Exibe estatísticas de erro: + +`sudo btrfs device stats {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Examina todos os discos e informa ao kernel todos os sistemas de arquivos btrfs detectados: + +`sudo btrfs device scan --all-devices` + +- Exibe estatísticas detalhadas de alocação por disco: + +`sudo btrfs device usage {{caminho/para/sistema_de_arquivos_btrfs}}` diff --git a/pages.pt_BR/linux/btrfs-filesystem.md b/pages.pt_BR/linux/btrfs-filesystem.md new file mode 100644 index 00000000000000..36c9877603485b --- /dev/null +++ b/pages.pt_BR/linux/btrfs-filesystem.md @@ -0,0 +1,28 @@ +# btrfs filesystem + +> Gerencia sistemas de arquivos btrfs. +> Mais informações: . + +- Mostra uso do sistema de arquivos (opcionalmente execute como root para mostrar informações detalhadas): + +`btrfs filesystem usage {{caminho/para/montagem_btrfs}}` + +- Mostra uso por dispositivos individuais: + +`sudo btrfs filesystem show {{caminho/para/montagem_btrfs}}` + +- Desfragmenta um único arquivo em um sistema de arquivos btrfs (evite enquanto um agente de desduplicação estiver em execução): + +`sudo btrfs filesystem defragment -v {{caminho/para/arquivo}}` + +- Desfragmenta um diretório recursivamente (não cruza os limites do subvolume): + +`sudo btrfs filesystem defragment -v -r {{caminho/para/diretório}}` + +- Força a sincronização de blocos de dados não gravados com o(s) disco(s): + +`sudo btrfs filesystem sync {{caminho/para/montagem_btrfs}}` + +- Resume o uso do disco para os arquivos em um diretório recursivamente: + +`sudo btrfs filesystem du --summarize {{caminho/para/diretório}}` diff --git a/pages.pt_BR/linux/btrfs-inspect-internal.md b/pages.pt_BR/linux/btrfs-inspect-internal.md new file mode 100644 index 00000000000000..edc1090c98be5e --- /dev/null +++ b/pages.pt_BR/linux/btrfs-inspect-internal.md @@ -0,0 +1,28 @@ +# btrfs inspect-internal + +> Consulta informações internas de um sistema de arquivos btrfs. +> Mais informações: . + +- Imprime informações de superblocos: + +`sudo btrfs inspect-internal dump-super {{caminho/para/partição}}` + +- Imprime as informações do superbloco e de todas as suas cópias: + +`sudo btrfs inspect-internal dump-super --all {{caminho/para/partição}}` + +- Imprime informações de metadados do sistema de arquivos: + +`sudo btrfs inspect-internal dump-tree {{caminho/para/partição}}` + +- Imprime lista de arquivos no `n`-ésimo inode: + +`sudo btrfs inspect-internal inode-resolve {{n}} {{caminho/para/montagem_btrfs}}` + +- Imprime a lista de arquivos em um determinado endereço lógico: + +`sudo btrfs inspect-internal logical-resolve {{endereço_lógico}} {{caminho/para/montagem_btrfs}}` + +- Imprime as estatísticas das árvores raiz, extensão, csum e fs: + +`sudo btrfs inspect-internal tree-stats {{caminho/para/partição}}` diff --git a/pages.pt_BR/linux/btrfs-property.md b/pages.pt_BR/linux/btrfs-property.md new file mode 100644 index 00000000000000..c80e4058f6701c --- /dev/null +++ b/pages.pt_BR/linux/btrfs-property.md @@ -0,0 +1,24 @@ +# btrfs property + +> Obtém, define ou lista propriedades para um determinado objeto de sistema de arquivos btrfs (arquivos, diretórios, subvolumes, sistemas de arquivos ou dispositivos). +> Mais informações: . + +- Lista as propriedades disponíveis (e descrições) para o objeto btrfs fornecido: + +`sudo btrfs property list {{caminho/para/objeto_btrfs}}` + +- Obtém todas as propriedades para o objeto btrfs fornecido: + +`sudo btrfs property get {{caminho/para/objeto_btrfs}}` + +- Obtém a propriedade `label` (etiqueta) para o sistema de arquivos ou dispositivo btrfs fornecido: + +`sudo btrfs property get {{caminho/para/sistema_de_arquivos_btrfs}} label` + +- Obtém todas as propriedades específicas do tipo de objeto para o sistema de arquivos ou dispositivo btrfs fornecido: + +`sudo btrfs property get -t {{subvol|filesystem|inode|device}} {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Define a propriedade de `compression` (compactação) para um determinado inode btrfs (um arquivo ou diretório): + +`sudo btrfs property set {{caminho/para/inode_btrfs}} compression {{zstd|zlib|lzo|none}}` diff --git a/pages.pt_BR/linux/btrfs-rescue.md b/pages.pt_BR/linux/btrfs-rescue.md new file mode 100644 index 00000000000000..4f38eb17f3142d --- /dev/null +++ b/pages.pt_BR/linux/btrfs-rescue.md @@ -0,0 +1,24 @@ +# btrfs rescue + +> Tenta recuperar um sistema de arquivos btrfs danificado. +> Mais informações: . + +- Reconstrói a árvore de metadados do sistema de arquivos (muito lento): + +`sudo btrfs rescue chunk-recover {{caminho/para/partição}}` + +- Corrige problemas relacionados ao alinhamento do tamanho do dispositivo (por exemplo, incapaz de montar o sistema de arquivos com incompatibilidade de super total de bytes): + +`sudo btrfs rescue fix-device-size {{caminho/para/partição}}` + +- Recupera um superblock corrompido das cópias corretas (recupere a raiz da árvore do sistema de arquivos): + +`sudo btrfs rescue super-recover {{caminho/para/partição}}` + +- Recupera-se de uma transação interrompida (corrige problemas de repetição de log): + +`sudo btrfs rescue zero-log {{caminho/para/partição}}` + +- Cria um dispositivo de controle `/dev/btrfs-control` quando o `mknod` não estiver instalado: + +`sudo btrfs rescue create-control-device` diff --git a/pages.pt_BR/linux/btrfs-subvolume.md b/pages.pt_BR/linux/btrfs-subvolume.md new file mode 100644 index 00000000000000..8c82fcef5b0ed4 --- /dev/null +++ b/pages.pt_BR/linux/btrfs-subvolume.md @@ -0,0 +1,28 @@ +# btrfs subvolume + +> Gerencia subvolumes e snapshots btrfs. +> Mais informações: . + +- Cria um novo subvolume vazio: + +`sudo btrfs subvolume create {{caminho/para/novo_subvolume}}` + +- Lista todos os subvolumes e snapshots no sistema de arquivos especificado: + +`sudo btrfs subvolume list {{caminho/para/sistema_de_arquivos_btrfs}}` + +- Exclui um subvolume: + +`sudo btrfs subvolume delete {{caminho/para/subvolume}}` + +- Cria um snapshot somente leitura de um subvolume existente: + +`sudo btrfs subvolume snapshot -r {{caminho/para/subvolume_de_origem}} {{caminho/para/destino}}` + +- Cria um snapshot de leitura/gravação de um subvolume existente: + +`sudo btrfs subvolume snapshot {{caminho/para/subvolume_de_origem}} {{caminho/para/destino}}` + +- Mostra informações detalhadas sobre um subvolume: + +`sudo btrfs subvolume show {{caminho/para/subvolume}}` diff --git a/pages.pt_BR/linux/btrfs.md b/pages.pt_BR/linux/btrfs.md new file mode 100644 index 00000000000000..f642c461330acd --- /dev/null +++ b/pages.pt_BR/linux/btrfs.md @@ -0,0 +1,25 @@ +# btrfs + +> Um sistema de arquivos baseado no princípio copy-on-write (COW) para Linux. +> Alguns subcomandos como `btrfs device` têm sua própria documentação de uso. +> Mais informações: . + +- Cria subvolume: + +`sudo btrfs subvolume create {{caminho/para/subvolume}}` + +- Lista subvolumes: + +`sudo btrfs subvolume list {{caminho/para/ponto_de_montagem}}` + +- Mostra informações de uso do espaço: + +`sudo btrfs filesystem df {{caminho/para/ponto_de_montagem}}` + +- Ativa a cota: + +`sudo btrfs quota enable {{caminho/para/subvolume}}` + +- Mostra a cota: + +`sudo btrfs qgroup show {{caminho/para/subvolume}}` diff --git a/pages.pt_BR/linux/cal.md b/pages.pt_BR/linux/cal.md index c5984c3dfee7da..e28feba31f0999 100644 --- a/pages.pt_BR/linux/cal.md +++ b/pages.pt_BR/linux/cal.md @@ -1,6 +1,7 @@ # cal > Exibe as informações do calendário, destacando o dia atual. +> Mais informações: . - Exibir o calendário do mês atual: diff --git a/pages.pt_BR/linux/calc.md b/pages.pt_BR/linux/calc.md deleted file mode 100644 index cdd731d1ef17f6..00000000000000 --- a/pages.pt_BR/linux/calc.md +++ /dev/null @@ -1,11 +0,0 @@ -# calc - -> Calculadora interativa de precisão arbitrária no terminal. - -- Iniciar a calculadora em modo interativo: - -`calc` - -- Realizar o cálculo em modo não interativo: - -`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages.pt_BR/linux/cc.md b/pages.pt_BR/linux/cc.md new file mode 100644 index 00000000000000..8f9ff19aee329f --- /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/certbot.md b/pages.pt_BR/linux/certbot.md index 83a00dd4649d86..4b9f595ecab85c 100644 --- a/pages.pt_BR/linux/certbot.md +++ b/pages.pt_BR/linux/certbot.md @@ -2,6 +2,7 @@ > O agente da Let's Encrypt para obtenção e renovação de certificados TLS automaticamente. > Sucessor do `letsencrypt`. +> Mais informações: . - Obter um novo certificado via autorização webroot, porém sem instalá-lo automaticamente: diff --git a/pages.pt_BR/linux/cgroups.md b/pages.pt_BR/linux/cgroups.md new file mode 100644 index 00000000000000..4439ae98bf3f75 --- /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/chage.md b/pages.pt_BR/linux/chage.md index 40816ffd8be67b..fb88762969a089 100644 --- a/pages.pt_BR/linux/chage.md +++ b/pages.pt_BR/linux/chage.md @@ -1,23 +1,24 @@ # chage > Gerencia informações de expiração de conta e senha do usuário. +> Mais informações: . - Exibir as informações referentes a senha do usuário: -`chage -l {{nome_do_usuario}}` +`chage --list {{nome_do_usuario}}` - Habilitar a expiração da senha do usuário em 10 dias: -`sudo chage -M {{10}} {{nome_do_usuario}}` +`sudo chage --maxdays {{10}} {{nome_do_usuario}}` - Desabilitar a expiração da senha do usuário: -`sudo chage -M -1 {{nome_do_usuario}}` +`sudo chage --maxdays {{-1}} {{nome_do_usuario}}` - Definir a data de expiração da conta do usuário: -`sudo chage -E {{YYYY-MM-DD}}` +`sudo chage --expiredate {{YYYY-MM-DD}} {{nome_do_usuario}}` - Obrigar o usuário a alterar sua senha no próximo login: -`sudo chage -d 0` +`sudo chage --lastday {{0}} {{nome_do_usuario}}` diff --git a/pages.pt_BR/linux/chattr.md b/pages.pt_BR/linux/chattr.md index 0097eb4e90d0eb..9d950ff987cb6b 100644 --- a/pages.pt_BR/linux/chattr.md +++ b/pages.pt_BR/linux/chattr.md @@ -1,6 +1,7 @@ # chattr > Altera os atributos de arquivos ou diretórios. +> Mais informações: . - Bloquear um arquivo ou diretório para mudanças ou remoção, mesmo para um super usuário: diff --git a/pages.pt_BR/linux/chkconfig.md b/pages.pt_BR/linux/chkconfig.md index c7782564282b75..a9df2790b264fa 100644 --- a/pages.pt_BR/linux/chkconfig.md +++ b/pages.pt_BR/linux/chkconfig.md @@ -1,6 +1,7 @@ # chkconfig > Gerencia o runlevel dos serviços no CentOS 6. +> Mais informações: . - Exibir os serviços com os respectivos runlevels: diff --git a/pages.pt_BR/linux/cmus.md b/pages.pt_BR/linux/cmus.md index 044a85dceb2bb1..a340f4a8a33aa9 100644 --- a/pages.pt_BR/linux/cmus.md +++ b/pages.pt_BR/linux/cmus.md @@ -2,6 +2,7 @@ > Player de música via terminal. > Use as setas para navegar, `` para selecionar, e números 1-8 para alterar as telas de opções. +> Mais informações: . - Iniciar o cmus em um diretório específico: diff --git a/pages.pt_BR/linux/compgen.md b/pages.pt_BR/linux/compgen.md deleted file mode 100644 index 8f61d9907fdc1c..00000000000000 --- a/pages.pt_BR/linux/compgen.md +++ /dev/null @@ -1,23 +0,0 @@ -# compgen - -> Um programa para auto completar comandos no Bash, ele é executado ao pressionar duas vezes a tecla TAB. - -- Exibir todos os comandos que você pode executar: - -`compgen -c` - -- Exibir todos os alias: - -`compgen -a` - -- Exibir todas as funções que você pode executar: - -`compgen -A function` - -- Exibir todas as palavras reservadas do shell: - -`compgen -k` - -- Exibir todos os comandos/alias que iniciam com o termo 'ls': - -`compgen -ac {{ls}}` diff --git a/pages.pt_BR/linux/cp.md b/pages.pt_BR/linux/cp.md new file mode 100644 index 00000000000000..33db0785dc1e61 --- /dev/null +++ b/pages.pt_BR/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Copia arquivos e diretórios. +> Mais informações: . + +- Copiar um arquivo para outra localização: + +`cp {{caminho/para/arquivo_entrada.ext}} {{caminho/para/arquivo_saída.ext}}` + +- Copiar um arquivo para dentro de outro diretório, mantendo o nome: + +`cp {{caminho/para/arquivo.ext}} {{caminho/para/diretório}}` + +- Recursivamente copiar os conteúdos de um diretório para outra localização (se a destinação existe, o diretório é copiado para dentro dela): + +`cp -r {{caminho/para/diretório_fonte}} {{caminho/para/diretório_alvo}}` + +- Copiar um diretório recursivamente, em modo verboso (mostra os arquivos conforme eles são copiados): + +`cp -vr {{caminho/para/diretório_fonte}} {{caminho/para/diretório_alvo}}` + +- Copiar arquivos de texto para outra localização, em modo interativo (exige confirmação do usuário antes de sobrescrever): + +`cp -i {{*.txt}} {{caminho/para/diretório_alvo}}` + +- Seguir links simbólicos antes de copiar: + +`cp -L {{link}} {{caminho/para/diretório_alvo}}` + +- Usar todo o caminho dos arquivos fonte, criando quaisquer diretórios intermediários ausentes quando copia: + +`cp --parents {{fonte/caminho/para/arquivo}} {{caminho/para/arquivo_alvo}}` diff --git a/pages.pt_BR/linux/cpuid.md b/pages.pt_BR/linux/cpuid.md index 21b909da628e04..0d0bc1f83fa279 100644 --- a/pages.pt_BR/linux/cpuid.md +++ b/pages.pt_BR/linux/cpuid.md @@ -1,6 +1,7 @@ # cpuid > Exibe informações detalhadas sobre todas as CPUs. +> Mais informações: . - Exibir informações de todas as CPUs: diff --git a/pages.pt_BR/linux/csplit.md b/pages.pt_BR/linux/csplit.md index ed54a9fcf7170a..6e892f21e8312b 100644 --- a/pages.pt_BR/linux/csplit.md +++ b/pages.pt_BR/linux/csplit.md @@ -22,4 +22,4 @@ - Dividir um arquivo na linha que atenda a expressão regular: -`csplit {{arquivo}} /{{regex}}/` +`csplit {{arquivo}} /{{expressao_regular}}/` diff --git a/pages.pt_BR/linux/diff3.md b/pages.pt_BR/linux/diff3.md index eb4324a7eaef69..b8daa9b59994a0 100644 --- a/pages.pt_BR/linux/diff3.md +++ b/pages.pt_BR/linux/diff3.md @@ -1,6 +1,7 @@ # diff3 > Compara 3 arquivos linha por linha. +> Mais informações: . - Comparar os arquivos: diff --git a/pages.pt_BR/linux/dmesg.md b/pages.pt_BR/linux/dmesg.md index 8abad70afa1f6d..a4655e6e19a6fe 100644 --- a/pages.pt_BR/linux/dmesg.md +++ b/pages.pt_BR/linux/dmesg.md @@ -1,6 +1,7 @@ # dmesg > Escreve as mensagens do kernel na terminal. +> Mais informações: . - Exibir as mensagens do kernel: diff --git a/pages.pt_BR/linux/dmidecode.md b/pages.pt_BR/linux/dmidecode.md index e1b4cf5448eafd..f04ae70c246cc5 100644 --- a/pages.pt_BR/linux/dmidecode.md +++ b/pages.pt_BR/linux/dmidecode.md @@ -2,6 +2,7 @@ > Exibe em formato de fácil leitura o sumário DMI (também conhecido como SMBIOS) . > Requer privilégio de super usuário. +> Mais informações: . - Exibir o sumário do DMI: diff --git a/pages.pt_BR/linux/dnf.md b/pages.pt_BR/linux/dnf.md index 52a7e1e853d140..81923d9261c6e2 100644 --- a/pages.pt_BR/linux/dnf.md +++ b/pages.pt_BR/linux/dnf.md @@ -1,6 +1,7 @@ # dnf > Gerenciador de pacotes das distribuições baseadas em RHEL (substituto do yum). +> Mais informações: . - Instalar um novo pacote: diff --git a/pages.pt_BR/linux/dolphin.md b/pages.pt_BR/linux/dolphin.md new file mode 100644 index 00000000000000..afa003b4fec63c --- /dev/null +++ b/pages.pt_BR/linux/dolphin.md @@ -0,0 +1,32 @@ +# dolphin + +> Gerenciador de arquivos do KDE. +> Mais informações: . + +- Inicializa o Dolphin: + +`dolphin` + +- Inicializa o Dolphin em um diretório específico: + +`dolphin {{caminho/para/diretorio}}` + +- Inicializa o Dolphin com um arquivo ou diretório específico: + +`dolphin --select {{caminho/para/arquivo_ou_diretorio}}` + +- Inicializa o Dolphin em uma janela separada: + +`dolphin --new-window` + +- Inicializa o Dolphin no modo de divisão de tela: + +`dolphin --split` + +- Inicializa o daemon do Dolphin (necessário apenas para usar a interface do DBus): + +`dolphin --daemon` + +- Exibe log de ajuda (em inglês): + +`dolphin --help` diff --git a/pages.pt_BR/linux/dpkg-query.md b/pages.pt_BR/linux/dpkg-query.md index e9146b415c8c50..e69d7df614ef56 100644 --- a/pages.pt_BR/linux/dpkg-query.md +++ b/pages.pt_BR/linux/dpkg-query.md @@ -1,6 +1,7 @@ # dpkg-query > Ferramenta que mostra informações dos pacotes instalados. +> Mais informações: . - Exibir os pacotes instalados: diff --git a/pages.pt_BR/linux/dpkg.md b/pages.pt_BR/linux/dpkg.md index 99b937ae48026e..d5d29f1943ded1 100644 --- a/pages.pt_BR/linux/dpkg.md +++ b/pages.pt_BR/linux/dpkg.md @@ -1,6 +1,8 @@ # dpkg > Gerenciador de pacotes Debian. +> Alguns subcomandos como `dpkg deb` tem sua própia documentação de uso. +> Mais informações: . - Instalar um pacote: diff --git a/pages.pt_BR/linux/eyed3.md b/pages.pt_BR/linux/eyed3.md index abf43ea60ea098..b2a2c37964bf52 100644 --- a/pages.pt_BR/linux/eyed3.md +++ b/pages.pt_BR/linux/eyed3.md @@ -1,7 +1,7 @@ # eyeD3 > Lê e manipula os metadados de arquivos MP3. -> Mais informações: . +> Mais informações: . - Visualizar as informações de um arquivo MP3: diff --git a/pages.pt_BR/linux/fatlabel.md b/pages.pt_BR/linux/fatlabel.md index 56dd98a2476f52..c16714a3cb7964 100644 --- a/pages.pt_BR/linux/fatlabel.md +++ b/pages.pt_BR/linux/fatlabel.md @@ -1,6 +1,7 @@ # fatlabel > Define ou exibe o rótulo de uma partição FAT32. +> Mais informações: . - Exibir o rótulo de uma partição FAT32: diff --git a/pages.pt_BR/linux/fc-list.md b/pages.pt_BR/linux/fc-list.md deleted file mode 100644 index 03dd9a200e10dc..00000000000000 --- a/pages.pt_BR/linux/fc-list.md +++ /dev/null @@ -1,7 +0,0 @@ -# fc-list - -> Exibe todas as fontes disponíveis no sistema. - -- Exibir as fontes instaladas correspondentes ao critério de busca: - -`fc-list | grep '{{criterio_de_busca}}'` diff --git a/pages.pt_BR/linux/fc.md b/pages.pt_BR/linux/fc.md deleted file mode 100644 index 4af6f7b36c77f2..00000000000000 --- a/pages.pt_BR/linux/fc.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc - -> Abre o último comando executado em um editor de texto. - -- Abrir o último comando executado no editor de texto padrão do sistema: - -`fc` - -- Especificar o editor de texto que será utilizado ao executar o comando: - -`fc -e {{'emacs'}}` - -- Exibir um histórico dos últimos comandos executados: - -`fc -l` diff --git a/pages.pt_BR/linux/fdisk.md b/pages.pt_BR/linux/fdisk.md index c6e51170a00ead..6e88ca19010fba 100644 --- a/pages.pt_BR/linux/fdisk.md +++ b/pages.pt_BR/linux/fdisk.md @@ -1,6 +1,7 @@ # fdisk > Gerenciador de tabelas de partições e partições no disco rígido. +> Mais informações: . - Exibir as partições: diff --git a/pages.pt_BR/linux/flameshot.md b/pages.pt_BR/linux/flameshot.md new file mode 100644 index 00000000000000..f8dd134ec0d9f9 --- /dev/null +++ b/pages.pt_BR/linux/flameshot.md @@ -0,0 +1,37 @@ +# flameshot + +> Função de captura da tela com uma Interface Gráfica do Usuário. +> Suporta edição básica de imagens, como texto, formas, cores e imgur. +> Mais informações: . + +- Cria uma captura da tela completa: + +`flameshot full` + +- Cria uma captura da tela interativamente: + +`flameshot gui` + +- Cria uma captura da tela e salva em um caminho específico: + +`flameshot gui --path {{caminho/para/diretório}}` + +- Cria uma captura da tela interativamente em um modo simplificado: + +`flameshot launcher` + +- Cria uma captura da tela a partir de um monitor específico: + +`flameshot screen --number {{2}}` + +- Cria uma captura da tela e imprime na saída padrão: + +`flameshot gui --raw` + +- Cria uma captura da tela e copia para a área de transferência: + +`flameshot gui --clipboard` + +- Cria uma captura da tela com um atraso específico em milissegundos: + +`flameshot full --delay {{5000}}` diff --git a/pages.pt_BR/linux/flatpak.md b/pages.pt_BR/linux/flatpak.md new file mode 100644 index 00000000000000..c984148c0bc5dc --- /dev/null +++ b/pages.pt_BR/linux/flatpak.md @@ -0,0 +1,36 @@ +# flatpak + +> Construa, instale e execute aplicações e plataformas flatpak. +> Mais informações: . + +- Executar uma aplicação instalada: + +`flatpak run {{nome}}` + +- Instalar uma aplicação de uma fonte remota: + +`flatpak install {{remoto}} {{nome}}` + +- Listar todas as aplicações e plataformas instaladas: + +`flatpak list` + +- Atualizar todas as aplicações e plataformas instaladas: + +`flatpak update` + +- Adicionar uma fonte remota: + +`flatpak remote-add --if-not-exists {{nome_remoto}} {{url_remoto}}` + +- Listar todas fontes remotas configuradas: + +`flatpak remote-list` + +- Remover uma aplicação instalada: + +`flatpak remove {{nome}}` + +- Mostrar informações sobre uma aplicação instalada: + +`flatpak info {{nome}}` diff --git a/pages.pt_BR/linux/free.md b/pages.pt_BR/linux/free.md new file mode 100644 index 00000000000000..87fcacb60b3689 --- /dev/null +++ b/pages.pt_BR/linux/free.md @@ -0,0 +1,20 @@ +# free + +> Mostra a quantidade de memória livre e utilizada pelo sistema. +> Mais informações: . + +- Mostrar memória do sistema: + +`free` + +- Mostrar memória em Bytes/KB/MB/GB: + +`free -{{b|k|m|g}}` + +- Mostrar memória em unidades legíveis por seres humanos: + +`free -h` + +- Atualizar a saída padrão a cada 2 segundos: + +`free -s {{2}}` diff --git a/pages.pt_BR/linux/genisoimage.md b/pages.pt_BR/linux/genisoimage.md new file mode 100644 index 00000000000000..f512fad4407d3e --- /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/gnome-calculator.md b/pages.pt_BR/linux/gnome-calculator.md new file mode 100644 index 00000000000000..9fa346e0cb368f --- /dev/null +++ b/pages.pt_BR/linux/gnome-calculator.md @@ -0,0 +1,16 @@ +# gnome-calculator + +> A calculadora oficial para o ambiente de desktop GNOME. +> Mais informações: . + +- Inicia a GNOME Calculator GUI: + +`gnome-calculator` + +- Resolve uma equação específica na linha de comando sem iniciar o aplicativo de desktop: + +`gnome-calculator --solve {{2^5 * 2 + 5}}` + +- Exibe a versão: + +`gnome-calculator --version` diff --git a/pages.pt_BR/linux/gnome-terminal.md b/pages.pt_BR/linux/gnome-terminal.md new file mode 100644 index 00000000000000..3e491ccc37dd1b --- /dev/null +++ b/pages.pt_BR/linux/gnome-terminal.md @@ -0,0 +1,20 @@ +# gnome-terminal + +> O emulador do Terminal GNOME. +> Mais informações: . + +- Abre uma nova janela de terminal GNOME: + +`gnome-terminal` + +- Executa um comando específico em uma nova janela de terminal: + +`gnome-terminal -- {{commando}}` + +- Abre uma nova aba na última janela aberta: + +`gnome-terminal --tab` + +- Define o título da nova aba: + +`gnome-terminal --tab --title "{{título}}"` 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 00000000000000..d1da796cb51b6b --- /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 new file mode 100644 index 00000000000000..e7d3713e842232 --- /dev/null +++ b/pages.pt_BR/linux/ip.md @@ -0,0 +1,37 @@ +# ip + +> 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ções: . + +- Lista interfaces com informações detalhadas: + +`ip address` + +- Lista interfaces com breves informações sobre a camada de rede: + +`ip -brief address` + +- Lista interfaces com breves informações sobre a camada de link de dados: + +`ip -brief link` + +- Exibe a tabela de roteamento: + +`ip route` + +- Mostra vizinhos (ARP tabela): + +`ip neighbour` + +- Ativa / desativa uma interface: + +`ip link set {{interface}} up/down` + +- Adiciona / remove um endereço de IP a uma interface: + +`ip addr add/del {{ip}}/{{mask}} dev {{interface}}` + +- Adiciona uma rota padrão: + +`ip route add default via {{ip}} dev {{interface}}` diff --git a/pages.pt_BR/linux/locate.md b/pages.pt_BR/linux/locate.md new file mode 100644 index 00000000000000..adebcd2720aeb5 --- /dev/null +++ b/pages.pt_BR/linux/locate.md @@ -0,0 +1,16 @@ +# locate + +> Encontre nomes de arquivos rapidamente. +> Mais informações: . + +- Procura por padrões no banco de dados. Nota: o banco de dados é recalculado periodicamente (geralmente semanalmente ou diariamente): + +`locate {{padrão}}` + +- Procura um arquivo pelo seu nome de arquivo exato(um padrão que não contém caracteres curingas é interpretado como `*pattern*`): + +`locate */{{nome_do_arquivo}}` + +- Recalcula o banco de dados. Você precisa fazer se você quiser achar os arquivos recentementes adicionados: + +`sudo updatedb` diff --git a/pages.pt_BR/linux/ls.md b/pages.pt_BR/linux/ls.md new file mode 100644 index 00000000000000..252ff6a5ac934d --- /dev/null +++ b/pages.pt_BR/linux/ls.md @@ -0,0 +1,36 @@ +# ls + +> Listar o conteúdo de um diretório. +> Mais informações: . + +- Lista um arquivo por linha: + +`ls -1` + +- Lista todos os arquivos, inclusive arquivos ocultos: + +`ls -a` + +- Liste todos os arquivos, com o separador `/` adicionado ao nome dos diretórios: + +`ls -F` + +- Lista longa (permissões, posse de arquivos, tamanho e data de modificação) de todos os arquivos: + +`ls -la` + +- Lista longa com o tamanho dos arquivos registrado de forma legível (KiB, MiB, GiB, etc.): + +`ls -lh` + +- Lista longa organizada por tamanho de arquivo (decrescente): + +`ls -lS` + +- Lista longa organizada por data de alteração (mais antigo primeiro): + +`ls -ltr` + +- Lista apenas diretórios: + +`ls -d */` diff --git a/pages.pt_BR/linux/lsblk.md b/pages.pt_BR/linux/lsblk.md new file mode 100644 index 00000000000000..c7c0b48d953371 --- /dev/null +++ b/pages.pt_BR/linux/lsblk.md @@ -0,0 +1,36 @@ +# lsblk + +> Lista informações sobre dispositivos. +> Mais informações: . + +- Lista todos dispositivos de armazenamento no formato de árvore: + +`lsblk` + +- Também lista dispositivos vazios: + +`lsblk -a` + +- Mostrar a coluna de tamanhos em bytes, em vez de um formato legível por humanos: + +`lsblk -b` + +- Mostrar na saída padrão informações sobre os filesystems dos dispositivos: + +`lsblk -f` + +- Utiliza caracteres ASCII para o formato de árvore: + +`lsblk -i` + +- Mostrar na saída padrão informações sobre block-device topology: + +`lsblk -t` + +- Excluír da saída padrão os dispositivos específicados por seus repectivos números separados por vírgulas: + +`lsblk -e {{1,7}}` + +- Mostrar um resumo de forma customizada passando as colunas separadas por vírgulas: + +`lsblk --output {{NAME}},{{SERIAL}},{{MODEL}},{{TRAN}},{{TYPE}},{{SIZE}},{{FSTYPE}},{{MOUNTPOINT}}` diff --git a/pages.pt_BR/linux/megadl.md b/pages.pt_BR/linux/megadl.md new file mode 100644 index 00000000000000..5ec1c3840dba34 --- /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/mv.md b/pages.pt_BR/linux/mv.md new file mode 100644 index 00000000000000..7a857a2de3b964 --- /dev/null +++ b/pages.pt_BR/linux/mv.md @@ -0,0 +1,28 @@ +# mv + +> Movimentação de arquivos entre diretórios, ou renomeá-los. +> Mais informações: . + +- Move um arquivo para um diretório arbitrário: + +`mv {{arquivo}} {{destino}}` + +- Move arquivos para outro diretório, mantendo os nomes dos arquivos: + +`mv {{arquivo_1}} {{arquivo_2}} {{arquivo_3}} {{destino}}` + +- Não requisitar confirmação para sobrescrição de arquivos: + +`mv -f {{arquivo}} {{destino}}` + +- Requisita confirmação para sobrescrição de arquivos, independentemente das permissões de arquivo: + +`mv -i {{arquivo}} {{destino}}` + +- Não sobrescrita arquivos existentes no diretório de destino: + +`mv -n {{arquivo}} {{destino}}` + +- Move os arquivos em modo Verbose, mostrando os arquivos após sua movimentação: + +`mv -v {{arquivo}} {{destino}}` diff --git a/pages.pt_BR/linux/ncal.md b/pages.pt_BR/linux/ncal.md new file mode 100644 index 00000000000000..775cfb637b9567 --- /dev/null +++ b/pages.pt_BR/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Este comando é um pseudônimo de `cal`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr cal` diff --git a/pages.pt_BR/linux/pacman.md b/pages.pt_BR/linux/pacman.md new file mode 100644 index 00000000000000..a2aa71d751a1e1 --- /dev/null +++ b/pages.pt_BR/linux/pacman.md @@ -0,0 +1,37 @@ +# pacman + +> Utilitário de Arch Linux para gerenciamento de pacotes. +> Alguns subcomandos como `pacman sync` possuem sua própria documentação de uso. +> Mais informações: . + +- Sincroniza e atualiza todos os pacotes: + +`sudo pacman -Syu` + +- Instala um novo pacote: + +`sudo pacman -S {{nome_do_pacote}}` + +- Remove um pacote e suas dependências: + +`sudo pacman -Rs {{nome_do_pacote}}` + +- Procura no banco de dados de pacotes por uma expressão regular ou palavra-chave: + +`pacman -Ss "{{padrao_buscado}}"` + +- Lista pacotes instalados e versões: + +`pacman -Q` + +- Lista apenas os pacotes explicitamente instalados e versões: + +`pacman -Qe` + +- Lista pacotes órfãos (instalado como dependência mas não requerido por qualquer pacote): + +`pacman -Qtdq` + +- Esvazia completamente o cache do pacman: + +`sudo pacman -Scc` diff --git a/pages.pt_BR/linux/paru.md b/pages.pt_BR/linux/paru.md new file mode 100644 index 00000000000000..45b7961705c86f --- /dev/null +++ b/pages.pt_BR/linux/paru.md @@ -0,0 +1,28 @@ +# paru + +> Um auxiliar do AUR e um wrapper do pacman. +> Mais informações: . + +- Pesquisa e instala interativamente um pacote: + +`paru {{nome_do_pacote_ou_termo_de_pesquisa}}` + +- Sincroniza e atualizar todos os pacotes: + +`paru` + +- Atualiza pacotes do AUR: + +`paru -Sua` + +- Obtém informações sobre um pacote: + +`paru -Si {{nome_do_pacote}}` + +- Faz o download do `PKGBUILD` e outros arquivos de origem do pacote do AUR ou ABS: + +`paru --getpkgbuild {{nome_do_pacote}}` + +- Exibe o arquivo `PKGBUILD` de um pacote: + +`paru --getpkgbuild --print {{nome_do_pacote}}` diff --git a/pages.pt_BR/linux/pi.md b/pages.pt_BR/linux/pi.md new file mode 100644 index 00000000000000..bf8efe46371ace --- /dev/null +++ b/pages.pt_BR/linux/pi.md @@ -0,0 +1,24 @@ +# pi + +> Calcula a constante decimal de Arquimedes Pi na linha de comando. +> Mais informações: . + +- Exibe 100 dígitos decimais da constante de Archimedes Pi: + +`pi` + +- Exibe um número específico de dígitos decimais da constante de Archimedes Pi: + +`pi {{number}}` + +- Exibe ajuda: + +`pi --help` + +- Exibe a versão: + +`pi --version` + +- Exibe leituras recomendadas: + +`pi --bibliography` diff --git a/pages.pt_BR/linux/reboot.md b/pages.pt_BR/linux/reboot.md new file mode 100644 index 00000000000000..0d652b97cd29cd --- /dev/null +++ b/pages.pt_BR/linux/reboot.md @@ -0,0 +1,24 @@ +# reboot + +> Reinicia o sistema. +> Mais informações: . + +- Reinicia o sistema: + +`reboot` + +- Desliga o sistema (igual a `poweroff`): + +`reboot --poweroff` + +- Suspende o sistema (igual a `halt`): + +`reboot --halt` + +- Reinicia imediatamente sem entrar em contato com o gerente do sistema: + +`reboot --force` + +- Escreve a entrada wtmp shutdown sem reinicializar o sistema: + +`reboot --wtmp-only` diff --git a/pages.pt_BR/linux/rolldice.md b/pages.pt_BR/linux/rolldice.md new file mode 100644 index 00000000000000..a7efef747c3756 --- /dev/null +++ b/pages.pt_BR/linux/rolldice.md @@ -0,0 +1,20 @@ +# rolldice + +> Rola dados virtuais. +> Mais informações: . + +- Rola um dado de 20 lados: + +`rolldice d{{20}}` + +- Rola dois dados de seis lados e descarta o menor valor: + +`rolldice {{2}}d{{6}}s{{1}}` + +- Rola dois dados de vite lados e adiciona um modificador ao resultado: + +`rolldice {{2}}d{{20}}{{+5}}` + +- Rola um dado de vinte lados duas vezes: + +`rolldice {{2}}xd{{20}}` diff --git a/pages.pt_BR/linux/snapper.md b/pages.pt_BR/linux/snapper.md new file mode 100644 index 00000000000000..7b0e02b0d4f786 --- /dev/null +++ b/pages.pt_BR/linux/snapper.md @@ -0,0 +1,28 @@ +# snapper + +> Ferramenta de gerenciamento de snapshots do sistema de arquivos. +> Mais informações: . + +- Lista configurações de snapshots: + +`snapper list-configs` + +- Cria configuração do snapper: + +`snapper -c {{configuração}} create-config {{caminho/para/diretório}}` + +- Cria um snapshot com uma descrição: + +`snapper -c {{configuração}} create -d "{{descrição_do_snapshot}}"` + +- Lista snapshots para uma configuração: + +`snapper -c {{configuração}} list` + +- Exclue um snapshot: + +`snapper -c {{configuração}} delete {{número_do_snapshot}}` + +- Exclue um intervalo de snapshots: + +`snapper -c {{configuração}} delete {{snapshot_X}}-{{snapshot_Y}}` diff --git a/pages.pt_BR/linux/sudo.md b/pages.pt_BR/linux/sudo.md new file mode 100644 index 00000000000000..1e1a198026d7e3 --- /dev/null +++ b/pages.pt_BR/linux/sudo.md @@ -0,0 +1,36 @@ +# sudo + +> Executa um único comando como o Superuser, ou como outro usuário. +> Mais informações: . + +- Executa um comando como Superuser: + +`sudo {{less /var/log/syslog}}` + +- Edita um arquivo, como Superuser, com seu editor padrão: + +`sudo --edit {{/etc/fstab}}` + +- Executa um comando como outro usuário e/ou grupo: + +`sudo --user={{usuário}} --group={{grupo}} {{id -a}}}` + +- Executa um comando anterior com o prefixo `sudo` (apenas em `bash`, `zsh`, etc.): + +`sudo !!` + +- Abre o shell padrão com privilégios de Superuser e executar arquivos de login (`.profile`, `.bash_profile`, etc.): + +`sudo --login` + +- Abre o shell padrão com privilégios de Superuser sem alterar o ambiente de execução: + +`sudo --shell` + +- Abre o shell padrão como dado usuário, carregando o ambiente de execução deste usuário e lendo arquivos de login (`.profile`, `.bash_profile`, etc.): + +`sudo --login --user={{usuário}}` + +- Lista os comandos permitidos (e não permitidos) para o usuário atual: + +`sudo --list` diff --git a/pages.pt_BR/linux/top.md b/pages.pt_BR/linux/top.md index 885b9448c3ab08..fc2edb3c745e64 100644 --- a/pages.pt_BR/linux/top.md +++ b/pages.pt_BR/linux/top.md @@ -1,6 +1,7 @@ # top > Utilitário para exibir informações, em tempo real, sobre os processos em execução. +> Mais informações: . - Iniciar top: diff --git a/pages.pt_BR/linux/tree.md b/pages.pt_BR/linux/tree.md deleted file mode 100644 index 284e25c46669d9..00000000000000 --- a/pages.pt_BR/linux/tree.md +++ /dev/null @@ -1,36 +0,0 @@ -# tree - -> Exibe o conteúdo do diretório atual em formato de árvore. -> Mais informações: . - -- Exibe os arquivos e diretórios de acordo com o nível de profundidade 'num' informado (onde 1 significa o diretório atual): - -`tree -L {{num}}` - -- Exibe apenas diretórios: - -`tree -d` - -- Inclui a exibição de arquivos ocultos com colorização diferenciada: - -`tree -a -C` - -- Exibe a árvore sem identação, mostrando o caminho completo (usar `-N` para não escapar espaços em branco e caracteres especiais): - -`tree -i -f` - -- Exibe o tamanho de cada arquivo e o tamanho acumulado de cada diretório, em um formato de leitura para humanos: - -`tree -s -h --du` - -- Exibe arquivos em uma árvore hierárquica, utilizando um padrão coringa, e eliminando diretórios que não contêm arquivos correspondentes ao informado: - -`tree -P '{{*.txt}}' --prune` - -- Exibe diretórios em uma árvore hierárquica, utilizando um padrão coringa, e eliminando diretórios que não possuem ancestrais do informado: - -`tree -P {{nome_diretorio}} --matchdirs --prune` - -- Exibe a árvore ignorando os diretórios informados: - -`tree -I '{{nome_diretorio1|nome_diretorio2}}'` diff --git a/pages.pt_BR/linux/ubuntu-bug.md b/pages.pt_BR/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..24e681f2810e08 --- /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/watch.md b/pages.pt_BR/linux/watch.md new file mode 100644 index 00000000000000..e980f7d942da22 --- /dev/null +++ b/pages.pt_BR/linux/watch.md @@ -0,0 +1,16 @@ +# watch + +> Executa um comando repetidas vezes, e monitora a saída em tela cheia. +> Mais informações: . + +- Monitora arquivos no diretório atual: + +`watch {{ls}}` + +- Monitora espaço em disco e destaca as alterações: + +`watch -d {{df}}` + +- Monitora processos "node", atualizando a cada 3 segundos: + +`watch -n {{3}} "{{ps aux | grep node}}"` diff --git a/pages.pt_BR/linux/xwinwrap.md b/pages.pt_BR/linux/xwinwrap.md new file mode 100644 index 00000000000000..04c65842f7e151 --- /dev/null +++ b/pages.pt_BR/linux/xwinwrap.md @@ -0,0 +1,20 @@ +# xwinwrap + +> Usa um reprodutor de vídeo ou um programa como plano de fundo. +> Mais informações: . + +- Reproduz um vídeo usando mpv: + +`xwinwrap -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{caminho/para/video.mp4}}` + +- Reproduz um vídeo em tela cheia usando mpv: + +`xwinwrap -b -nf -fs -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{caminho/para/video.mp4}}` + +- Reproduz um vídeo usando mpv com 80% de opacidade: + +`xwinwrap -b -nf -ov -o 0.8 --- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{caminho/para/video.mp4}}` + +- Reproduz um vídeo usando mpv em um segundo monitor 1600x900 com 1920 de distância do eixo X: + +`xwinwrap -g 1600x900+1920 -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{caminho/para/video.mkv}}` diff --git a/pages.pt_BR/linux/yaourt.md b/pages.pt_BR/linux/yaourt.md new file mode 100644 index 00000000000000..46725151068a13 --- /dev/null +++ b/pages.pt_BR/linux/yaourt.md @@ -0,0 +1,24 @@ +# yaourt + +> Utilitário de Arch Linux para compilaçào de pacotes AUR (Arch User Repository). +> Mais informações: . + +- Sincroniza e atualiza todos os pacotes (incluindo AUR): + +`yaourt -Syua` + +- Instala um novo pacote (incluindo AUR): + +`yaourt -S {{nome_do_pacote}}` + +- Remove um pacote e suas dependências (incluindo pacotes AUR): + +`yaourt -Rs {{nome_do_pacote}}` + +- Procura no banco de dados de pacotes por uma palavra-chave (incluindo AUR): + +`yaourt -Ss {{nome_do_pacote}}` + +- Lista pacotes instalados, versões, e repositórios (pacotes AUR serão listados sob como repositório 'local'): + +`yaourt -Q` diff --git a/pages.pt_BR/linux/yay.md b/pages.pt_BR/linux/yay.md new file mode 100644 index 00000000000000..8b1a94dcb29c58 --- /dev/null +++ b/pages.pt_BR/linux/yay.md @@ -0,0 +1,37 @@ +# yay + +> Yet Another Yogurt: Um utilitário de Arch Linux para compilar e instalar pacotes do AUR (Arch User Repository). +> Veja também `pacman`. +> Mais informações: . + +- Busca interativamente e instala pacotes dos repositórios e AUR: + +`yay {{nome_do_pacote|termo_de_busca}}` + +- Sincroniza e atualiza todos os pacotes dos repositórios e AUR: + +`yay` + +- Sincroniza e atualiza apenas pacotes AUR: + +`yay -Sua` + +- Instala um novo pacote de repositório e AUR: + +`yay -S {{nome_do_pacote}}` + +- Remove um pacote instalado, suas dependências e arquivos de configuração: + +`yay -Rns {{nome_do_pacote}}` + +- Procura no banco de dados de pacotes por uma palavra-chave dos repositórios e AUR: + +`yay -Ss {{palavra_chave}}` + +- Remove pacotes órfãos (instalado como dependência mas não utilizado por qualquer pacote): + +`yay -Yc` + +- Mostra estatísticas dos pacotes instalados e condição do sistema: + +`yay -Ps` diff --git a/pages.pt_BR/linux/yum.md b/pages.pt_BR/linux/yum.md new file mode 100644 index 00000000000000..afb9ef79457df5 --- /dev/null +++ b/pages.pt_BR/linux/yum.md @@ -0,0 +1,28 @@ +# yum + +> Gerenciador de pacotes utilitário para RHEL, Fedora e CentOS (para outras versões). +> Mais informações: . + +- Instala um novo pacote: + +`yum install {{package}}` + +- Instala um novo pacote e assumir sim para todas as questões (também funciona com atualizações, ótimo para atualizações automáticas): + +`yum -y install {{package}}` + +- Localiza o pacote que providência um comando particular: + +`yum provides {{command}}` + +- Remove um pacote: + +`yum remove {{package}}` + +- Exibe atualizações disponíveis para pacotes instalados: + +`yum check-update` + +- Atualiza pacotes instalados para as novas versões disponíveis: + +`yum upgrade` diff --git a/pages.pt_BR/linux/zathura.md b/pages.pt_BR/linux/zathura.md new file mode 100644 index 00000000000000..24a26cad71d51c --- /dev/null +++ b/pages.pt_BR/linux/zathura.md @@ -0,0 +1,33 @@ +# zathura + +> Um visualizador de documentos modular e baseado em vim, com uma linha de comando integrada. +> Tenha certeza de que um backend está instalado (poppler, PostScript, ou DjVu). +> Mais informações: . + +- Abre um arquivo: + +`zathura {{caminho/para/arquivo}}` + +- Navega esquerda/baixo/cima/direita: + +` ou teclas direcionais` + +- Rotaciona: + +`r` + +- Inverte cores: + +`Ctrl + R` + +- Procura por uma string no documento: + +`/{{string}}` + +- Cria/remove marcadores de página: + +`:{{bmark|bdelete}} {{nome_do_marcador}}` + +- Lista marcadores de página: + +`:blist` diff --git a/pages.pt_BR/linux/zramctl.md b/pages.pt_BR/linux/zramctl.md new file mode 100644 index 00000000000000..bd7dc512a6c0c5 --- /dev/null +++ b/pages.pt_BR/linux/zramctl.md @@ -0,0 +1,25 @@ +# zramctl + +> Configura e controla dispositivos zram. +> Use `mkfs` ou `mkswap` para formatar dispositivos zram para partições. +> Mais informações: . + +- Verifica se o zram está habilitado: + +`lsmod | grep -i zram` + +- Habilita o zram com um número dinâmico de dispositivos (use `zramctl` para configurar ainda mais os dispositivos): + +`sudo modprobe zram` + +- Habilita o zram com exatamente 2 dispositivos: + +`sudo modprobe zram num_devices={{2}}` + +- Encontra e inicializa o próximo dispositivo zram gratuito em uma unidade virtual de 2 GB usando a compressão LZ4: + +`sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}` + +- Lista dispositivos atualmente inicializados: + +`zramctl` diff --git a/pages.pt_BR/linux/zypper.md b/pages.pt_BR/linux/zypper.md new file mode 100644 index 00000000000000..46d5a5f4ac69db --- /dev/null +++ b/pages.pt_BR/linux/zypper.md @@ -0,0 +1,28 @@ +# zypper + +> Utilitário de gerenciamento de pacotes SUSE e openSUSE. +> Mais informações: . + +- Sincroniza a lista de pacotes e versões disponíveis: + +`zypper refresh` + +- Instala um novo pacote: + +`zypper install {{pacote}}` + +- Remove um pacote: + +`zypper remove {{pacote}}` + +- Atualiza os pacotes instalados para as versões mais recentes disponíveis: + +`zypper update` + +- Pesquisa pacote por palavra-chave: + +`zypper search {{palavra-chave}}` + +- Mostra informações relacionadas aos repositórios configurados: + +`zypper repos --sort-by-priority` diff --git a/pages.pt_BR/osx/aa.md b/pages.pt_BR/osx/aa.md new file mode 100644 index 00000000000000..9653ee23880174 --- /dev/null +++ b/pages.pt_BR/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Este comando é um alias de `yaa`. + +- Veja a documentação do comando original: + +`tldr yaa` diff --git a/pages.pt_BR/osx/afinfo.md b/pages.pt_BR/osx/afinfo.md new file mode 100644 index 00000000000000..2aa777b63711c7 --- /dev/null +++ b/pages.pt_BR/osx/afinfo.md @@ -0,0 +1,29 @@ +# afinfo + +> Parser de metadados de arquivos de áudio para OS X. +> Comando nativo do OS X. +> Mais informações: . + +- Exibir informações de um determinado arquivo de áudio: + +`afinfo {{caminho/para/arquivo}}` + +- Imprimir uma descrição de uma linha do arquivo de áudio: + +`afinfo --brief {{caminho/para/arquivo}}` + +- Imprimir informações de metadados e conteúdo do InfoDictionary do arquivo de áudio: + +`afinfo --info {{caminho/para/arquivo}}` + +- Imprimir saída em formato XML: + +`afinfo --xml {{caminho/para/arquivo}}` + +- Imprimir avisos para o arquivo de áudio, se houver: + +`afinfo --warnings {{caminho/para/arquivo}}` + +- Exibir ajuda sobre o uso completo: + +`afinfo --help` diff --git a/pages.pt_BR/osx/afplay.md b/pages.pt_BR/osx/afplay.md new file mode 100644 index 00000000000000..f3f34f53eacf79 --- /dev/null +++ b/pages.pt_BR/osx/afplay.md @@ -0,0 +1,20 @@ +# afplay + +> Player de áudio para linha de comando. +> Mais informações: . + +- Reproduzir um arquivo de som (espera até que a reprodução termine): + +`afplay {{caminho/para/arquivo}}` + +- Reproduzir um arquivo de som em velocidade 2x (taxa de reprodução): + +`afplay --rate {{2}} {{caminho/para/arquivo}}` + +- Reproduzir um arquivo de som em meia velocidade: + +`afplay --rate {{0.5}} {{caminho/para/arquivo}}` + +- Reproduzir os N primeiros segundos de um arquivo de som: + +`afplay --time {{segundos}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/osx/airport.md b/pages.pt_BR/osx/airport.md new file mode 100644 index 00000000000000..1761d855d43f2f --- /dev/null +++ b/pages.pt_BR/osx/airport.md @@ -0,0 +1,20 @@ +# airport + +> Utilitário de configuração de rede sem fio. +> Mais informações: . + +- Mostrar informações de status da rede sem fio atual: + +`airport --getinfo` + +- Farejar tráfego de rede sem fio no canal 1: + +`airport sniff {{1}}` + +- Procurar redes sem fio disponíveis: + +`airport --scan` + +- Desassociar da rede airport atual: + +`sudo airport --disassociate` diff --git a/pages.pt_BR/osx/airportd.md b/pages.pt_BR/osx/airportd.md new file mode 100644 index 00000000000000..d3c0d418fc96bf --- /dev/null +++ b/pages.pt_BR/osx/airportd.md @@ -0,0 +1,9 @@ +# airportd + +> Gerencia interfaces sem fio. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`airportd` diff --git a/pages.pt_BR/osx/apachectl.md b/pages.pt_BR/osx/apachectl.md new file mode 100644 index 00000000000000..00ceaf99a57f43 --- /dev/null +++ b/pages.pt_BR/osx/apachectl.md @@ -0,0 +1,16 @@ +# apachectl + +> Interface de controle do Servidor HTTP Apache para macOS. +> Mais informações: . + +- Iniciar o job launchd `org.apache.httpd`: + +`apachectl start` + +- Parar o job launchd: + +`apachectl stop` + +- Parar, e então iniciar o job launchd: + +`apachectl restart` diff --git a/pages.pt_BR/osx/applecamerad.md b/pages.pt_BR/osx/applecamerad.md new file mode 100644 index 00000000000000..3520c964145566 --- /dev/null +++ b/pages.pt_BR/osx/applecamerad.md @@ -0,0 +1,9 @@ +# applecamerad + +> Gerenciador de câmera. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`applecamerad` diff --git a/pages.pt_BR/osx/appsleepd.md b/pages.pt_BR/osx/appsleepd.md new file mode 100644 index 00000000000000..5d54de47d8b389 --- /dev/null +++ b/pages.pt_BR/osx/appsleepd.md @@ -0,0 +1,9 @@ +# appsleepd + +> Fornece serviços app sleep. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`appsleepd` diff --git a/pages.pt_BR/osx/arch.md b/pages.pt_BR/osx/arch.md new file mode 100644 index 00000000000000..e77344f7f87c46 --- /dev/null +++ b/pages.pt_BR/osx/arch.md @@ -0,0 +1,13 @@ +# arch + +> Exibe o nome da arquitetura do sistema ou executa um comando em uma arquitetura diferente. +> Veja também `uname`. +> Mais informações: . + +- Exibir o nome da arquitetura do sistema: + +`arch` + +- Executar um comando usando a arquitetura x86_64: + +`arch -x86_64 "{{comando}}"` diff --git a/pages.pt_BR/osx/archey.md b/pages.pt_BR/osx/archey.md new file mode 100644 index 00000000000000..e2e08a04eefeda --- /dev/null +++ b/pages.pt_BR/osx/archey.md @@ -0,0 +1,20 @@ +# archey + +> Ferramenta simples para exibir as informações do sistema com estilo. +> Mais informações: . + +- Mostrar informações do sistema: + +`archey` + +- Mostrar informações do sistema sem saída colorida: + +`archey --nocolor` + +- Mostrar informações do sistema, usando MacPorts em vez de Homebrew: + +`archey --macports` + +- Mostrar informações do sistema sem verificação de endereço IP: + +`archey --offline` diff --git a/pages.pt_BR/osx/as.md b/pages.pt_BR/osx/as.md new file mode 100644 index 00000000000000..d040abf3adc944 --- /dev/null +++ b/pages.pt_BR/osx/as.md @@ -0,0 +1,21 @@ +# as + +> Montador (assembler) GNU portável. +> Principalmente destinado a montar a saída do `gcc` para ser usada pelo `ld`. +> Mais informações: . + +- Montar (compilar) um arquivo, escrevendo a saída para `a.out`: + +`as {{arquivo.s}}` + +- Montar a saída para um determinado arquivo: + +`as {{arquivo.s}} -o {{saida.o}}` + +- Gerar saída mais rapidamente ignorando espaços em branco e pré-processamento de comentários. (Só deve ser usado para compiladores confiáveis): + +`as -f {{arquivo.s}}` + +- Incluir um determinado caminho na lista de diretórios para pesquisar os arquivos especificados nas diretivas `.include`: + +`as -I {{caminho/para/diretório}} {{arquivo.s}}` diff --git a/pages.pt_BR/osx/asr.md b/pages.pt_BR/osx/asr.md new file mode 100644 index 00000000000000..3d4d85c63e4e8e --- /dev/null +++ b/pages.pt_BR/osx/asr.md @@ -0,0 +1,21 @@ +# asr + +> Restaurar (copiar) uma imagem de disco em um volume. +> O nome do comando significa Apple Software Restore. +> Mais informações: . + +- Restaurar uma imagem de disco para um volume de destino: + +`sudo asr restore --source {{nome_da_imagem}}.dmg --target {{caminho/para/volume}}` + +- Apagar o volume de destino antes de restaurar: + +`sudo asr restore --source {{nome_da_imagem}}.dmg --target {{caminho/para/volume}} --erase` + +- Ignorar a verificação após a restauração: + +`sudo asr restore --source {{nome_da_imagem}}.dmg --target {{caminho/para/volume}} --noverify` + +- Clonar volumes sem o uso de uma imagem de disco intermediária: + +`sudo asr restore --source {{caminho/para/volume}} --target {{caminho/para/volume_clonado}}` diff --git a/pages.pt_BR/osx/automountd.md b/pages.pt_BR/osx/automountd.md new file mode 100644 index 00000000000000..252b119b4e275e --- /dev/null +++ b/pages.pt_BR/osx/automountd.md @@ -0,0 +1,13 @@ +# automountd + +> Um daemon de montagem/desmontagem automática para `autofs`. Iniciado sob demanda por `launchd`. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`automountd` + +- Log de mais detalhes em `syslog`: + +`automountd -v` diff --git a/pages.pt_BR/osx/avbdeviced.md b/pages.pt_BR/osx/avbdeviced.md new file mode 100644 index 00000000000000..c57c25c650c17f --- /dev/null +++ b/pages.pt_BR/osx/avbdeviced.md @@ -0,0 +1,9 @@ +# avbdeviced + +> Serviço para gerenciar dispositivos Audio Video Bridging (AVB). +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`avbdeviced` diff --git a/pages.pt_BR/osx/base64.md b/pages.pt_BR/osx/base64.md new file mode 100644 index 00000000000000..70cf104ad308e5 --- /dev/null +++ b/pages.pt_BR/osx/base64.md @@ -0,0 +1,20 @@ +# base64 + +> Codifica e decodifica usando a representação Base64. +> Mais informações: . + +- Codificar um arquivo: + +`base64 --input={{arquivo}}` + +- Decodificar um arquivo: + +`base64 --decode --input={{arquivo_base64}}` + +- Codificar de stdin: + +`echo -n "{{texto}}" | base64` + +- Decodificar de stdin: + +`echo -n {{texto_base64}} | base64 --decode` diff --git a/pages.pt_BR/osx/bc.md b/pages.pt_BR/osx/bc.md new file mode 100644 index 00000000000000..22e3d81b96f486 --- /dev/null +++ b/pages.pt_BR/osx/bc.md @@ -0,0 +1,29 @@ +# bc + +> Linguagem e calculadora com precisão arbitrária. +> Veja também: `dc`. +> Mais informações: . + +- Iniciar uma sessão interativa: + +`bc` + +- Iniciar uma sessão interativa com a biblioteca matemática padrão habilitada: + +`bc --mathlib` + +- Calcular uma expressão: + +`bc --expression='{{5 / 3}}'` + +- Executar um script: + +`bc {{caminho/para/script.bc}}` + +- Calcular uma expressão com a escala especificada: + +`bc --expression='scale = {{10}}; {{5 / 3}}'` + +- Calcular uma função sine/cosine/arctangent/natural logarithm/exponential usando `mathlib`: + +`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'` diff --git a/pages.pt_BR/osx/bird.md b/pages.pt_BR/osx/bird.md new file mode 100644 index 00000000000000..5ba2838a1af507 --- /dev/null +++ b/pages.pt_BR/osx/bird.md @@ -0,0 +1,9 @@ +# bird + +> Suporta a sincronização do iCloud e iCloud Drive. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`bird` diff --git a/pages.pt_BR/osx/bless.md b/pages.pt_BR/osx/bless.md new file mode 100644 index 00000000000000..8b19d64c09302a --- /dev/null +++ b/pages.pt_BR/osx/bless.md @@ -0,0 +1,20 @@ +# bless + +> Define a capacidade de inicialização por volume e as opções de disco de inicialização. Set volume boot capability and startup disk options. +> Mais informações: . + +- Definir um volume somente com Mac OS X ou Darwin, e criar os arquivos BootX e `boot.efi` se necessário: + +`bless --folder {{/Volumes/Mac OS X/System/Library/CoreServices}} --bootinfo --bootefi` + +- Definir um volume contendo Mac OS 9 ou Mac OS X como o volume ativo: + +`bless --mount {{/Volumes/Mac OS}} --setBoot` + +- Definir o sistema para NetBoot e transmitir para um servidor disponível: + +`bless --netboot --server {{bsdp://255.255.255.255}}` + +- Coletar informações sobre o volume atualmente selecionado (conforme determinado pelo firmware), adequado para piping para um programa capaz de analisar listas de propriedades: + +`bless --info --plist` diff --git a/pages.pt_BR/osx/bnepd.md b/pages.pt_BR/osx/bnepd.md new file mode 100644 index 00000000000000..87291c22abf5c9 --- /dev/null +++ b/pages.pt_BR/osx/bnepd.md @@ -0,0 +1,9 @@ +# bnepd + +> Serviço que lida com todas as conexões de rede Bluetooth. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Iniciar o daemon: + +`bnepd` diff --git a/pages.pt_BR/osx/brightness.md b/pages.pt_BR/osx/brightness.md new file mode 100644 index 00000000000000..3b7b4a9a5517c9 --- /dev/null +++ b/pages.pt_BR/osx/brightness.md @@ -0,0 +1,16 @@ +# brightness + +> Obtém e define o nível de brilho de todos os monitores internos e alguns monitores externos. +> Mais informações: . + +- Mostrar o brilho atual: + +`brightness -l` + +- Definir o brilho para 100%: + +`brightness {{1}}` + +- Definir o brilho para 50%: + +`brightness {{0.5}}` diff --git a/pages.pt_BR/osx/caffeinate.md b/pages.pt_BR/osx/caffeinate.md new file mode 100644 index 00000000000000..4917746fa11fb4 --- /dev/null +++ b/pages.pt_BR/osx/caffeinate.md @@ -0,0 +1,16 @@ +# caffeinate + +> Evita que o macOS entre em suspensão (repouso). +> Mais informações: . + +- Evita a suspensão por uma hora (3600 segundos): + +`caffeinate -u -t {{3600}}` + +- Evita a suspensão até que um comando seja concluído: + +`caffeinate -s "{{comando}}"` + +- Evita a suspensão até que você digite Ctrl-C: + +`caffeinate -i` diff --git a/pages.pt_BR/osx/cal.md b/pages.pt_BR/osx/cal.md new file mode 100644 index 00000000000000..1c3ff11b33f91d --- /dev/null +++ b/pages.pt_BR/osx/cal.md @@ -0,0 +1,32 @@ +# cal + +> Exibe informações de calendário. +> Mais informações: . + +- Exibe um calendário para o mês atual: + +`cal` + +- Exibe os meses anterior, atual, e próximo: + +`cal -3` + +- Exibe um calendário para um mês específico (1-12 ou nome): + +`cal -m {{mês}}` + +- Exibe um calendário para o ano atual: + +`cal -y` + +- Exibe um calendário para um ano específico (4 dígitos): + +`cal {{ano}}` + +- Exibe um calendário para um mês e ano específicos: + +`cal {{mês}} {{ano}}` + +- Exibe a data da Páscoa (igrejas cristãs ocidentais) em um determinado ano: + +`ncal -e {{ano}}` diff --git a/pages.pt_BR/osx/carthage.md b/pages.pt_BR/osx/carthage.md new file mode 100644 index 00000000000000..e9a68fee3e1536 --- /dev/null +++ b/pages.pt_BR/osx/carthage.md @@ -0,0 +1,24 @@ +# carthage + +> Ferramenta de gerenciamento de dependências para aplicativos Cocoa. +> Mais informações: . + +- Baixa a versão mais recente de todas as dependências mencionadas no Cartfile e realiza o build delas: + +`carthage update` + +- Atualiza as dependências, e faz build apenas para o iOS: + +`carthage update --platform ios` + +- Atualiza as dependências, sem realizar build de nenhuma delas: + +`carthage update --no-build` + +- Faz o download e rebuild da versão atual das dependências (sem atualizá-las): + +`carthage bootstrap` + +- Faz o rebuild de uma dependência específica: + +`carthage build {{dependência}}` diff --git a/pages.pt_BR/osx/cfprefsd.md b/pages.pt_BR/osx/cfprefsd.md new file mode 100644 index 00000000000000..32af9bf2bdede1 --- /dev/null +++ b/pages.pt_BR/osx/cfprefsd.md @@ -0,0 +1,9 @@ +# cfprefsd + +> Fornece serviços de preferências (`CFPreferences`, `NSUserDefaults`). +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`cfprefsd` diff --git a/pages.pt_BR/osx/chflags.md b/pages.pt_BR/osx/chflags.md new file mode 100644 index 00000000000000..07dfa16b12a5a8 --- /dev/null +++ b/pages.pt_BR/osx/chflags.md @@ -0,0 +1,20 @@ +# chflags + +> Altera flags de arquivo ou diretório. +> Mais informações: . + +- Define a flag `hidden` para um arquivo: + +`chflags {{hidden}} {{caminho/para/arquivo}}` + +- Remove a flag `hidden` de um arquivo: + +`chflags {{nohidden}} {{caminho/para/arquivo}}` + +- Define recursivamente a flag `uchg` para um diretório: + +`chflags -R {{uchg}} {{caminho/para/diretório}}` + +- Remove recursivamente a flag `uchg` de um diretório: + +`chflags -R {{nouchg}} {{caminho/para/diretório}}` diff --git a/pages.pt_BR/osx/cloudphotod.md b/pages.pt_BR/osx/cloudphotod.md new file mode 100644 index 00000000000000..07bb515c1bd939 --- /dev/null +++ b/pages.pt_BR/osx/cloudphotod.md @@ -0,0 +1,9 @@ +# cloudphotod + +> Sincroniza fotos do iCloud. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`cloudphotod` diff --git a/pages.pt_BR/osx/codesign.md b/pages.pt_BR/osx/codesign.md new file mode 100644 index 00000000000000..a115c38c16f996 --- /dev/null +++ b/pages.pt_BR/osx/codesign.md @@ -0,0 +1,12 @@ +# codesign + +> Cria e manipula assinaturas de código para macOS. +> Mais informações: . + +- Assina um aplicativo com um certificado: + +`codesign --sign "{{Nome da Minha Empresa}}" {{caminho/para/App.app}}` + +- Verifica o certificado de um aplicativo: + +`codesign --verify {{caminho/para/App.app}}` diff --git a/pages.pt_BR/osx/coreaudiod.md b/pages.pt_BR/osx/coreaudiod.md new file mode 100644 index 00000000000000..df94ab61d41a9f --- /dev/null +++ b/pages.pt_BR/osx/coreaudiod.md @@ -0,0 +1,9 @@ +# coreaudiod + +> Serviço para o Core Audio, o sistema de áudio da Apple. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`coreaudiod` diff --git a/pages.pt_BR/osx/coreautha.md b/pages.pt_BR/osx/coreautha.md new file mode 100644 index 00000000000000..f21bd1326e2705 --- /dev/null +++ b/pages.pt_BR/osx/coreautha.md @@ -0,0 +1,9 @@ +# coreautha + +> Um agente de sistema que fornece o framework `LocalAuthentication`. +> Não deve ser invocado manualmente. Veja também: `coreauthd`. +> Mais informações: . + +- Inicia o agente: + +`coreautha` diff --git a/pages.pt_BR/osx/coreauthd.md b/pages.pt_BR/osx/coreauthd.md new file mode 100644 index 00000000000000..f3e2706726caab --- /dev/null +++ b/pages.pt_BR/osx/coreauthd.md @@ -0,0 +1,9 @@ +# coreauthd + +> Um daemon de sistema que fornece o framework `LocalAuthentication`. +> Não deve ser invocado manualmente. Veja também: `coreautha`. +> Mais informações: . + +- Inicia o daemon: + +`coreauthd` diff --git a/pages.pt_BR/osx/cot.md b/pages.pt_BR/osx/cot.md new file mode 100644 index 00000000000000..c6e23edaff2796 --- /dev/null +++ b/pages.pt_BR/osx/cot.md @@ -0,0 +1,24 @@ +# cot + +> Editor de texto puro para macOS. +> Mais informações: . + +- Inicia o CotEditor: + +`cot` + +- Abre arquivos específicos: + +`cot {{caminho/para/arquivo1 caminho/para/arquivo2 ...}}` + +- Abre um novo documento em branco: + +`cot --new` + +- Abre um arquivo específico e bloqueia o terminal até que o arquivo seja fechado: + +`cot --wait {{caminho/para/arquivo}}` + +- Abre um arquivo específico com o cursor em uma linha e coluna especificada: + +`cot --line {{número_da_linha}} --column {{número_da_coluna}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/osx/csrutil.md b/pages.pt_BR/osx/csrutil.md new file mode 100644 index 00000000000000..ad41ab6e47d216 --- /dev/null +++ b/pages.pt_BR/osx/csrutil.md @@ -0,0 +1,28 @@ +# csrutil + +> Gerencia a configuração do System Integrity Protection (SIP). +> Mais informações: . + +- Exibe o status do System Integrity Protection: + +`csrutil status` + +- Desabilita o System Integrity Protection: + +`csrutil disable` + +- Habilita o System Integrity Protection: + +`csrutil enable` + +- Exibe a lista de origens permitidas do NetBoot: + +`csrutil netboot list` + +- Adiciona um endereço IPv4 à lista de origens permitidas do NetBoot: + +`csrutil netboot add {{endereço_ip}}` + +- Reseta o status do System Integrity Protection e limpa a lista do NetBoot: + +`csrutil clear` diff --git a/pages.pt_BR/osx/csshx.md b/pages.pt_BR/osx/csshx.md new file mode 100644 index 00000000000000..dbb1229e29fdfa --- /dev/null +++ b/pages.pt_BR/osx/csshx.md @@ -0,0 +1,16 @@ +# csshX + +> Ferramenta de Cluster SSH para macOS. +> Mais informações: . + +- Conecta a vários hosts: + +`csshX {{nomedohost1}} {{nomedohost2}}` + +- Conecta a vários hosts com uma determinada chave SSH: + +`csshX {{user@nomedohost1}} {{user@nomedohost2}} --ssh_args "-i {{caminho/para/ssh_key.pem}}"` + +- Conecta a um cluster predefinido em `/etc/clusters`: + +`csshX cluster1` diff --git a/pages.pt_BR/osx/cut.md b/pages.pt_BR/osx/cut.md new file mode 100644 index 00000000000000..a61c60bdc25f8d --- /dev/null +++ b/pages.pt_BR/osx/cut.md @@ -0,0 +1,16 @@ +# cut + +> Recorta campos de stdin ou arquivos. +> Mais informações: . + +- Imprime um intervalo específico de caracteres/campos de cada linha: + +`{{comando}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}` + +- Imprime um intervalo de cada linha com um delimitador específico: + +`{{comando}} | cut -d "{{,}}" -{{c}} {{1}}` + +- Imprime um intervalo de cada linha de um arquivo específico: + +`cut -{{c}} {{1}} {{caminho/para/arquivo}}` diff --git a/pages.pt_BR/osx/dark-mode.md b/pages.pt_BR/osx/dark-mode.md new file mode 100644 index 00000000000000..412576a86a2619 --- /dev/null +++ b/pages.pt_BR/osx/dark-mode.md @@ -0,0 +1,20 @@ +# dark-mode + +> Controla o modo escuro do macOS a partir da linha de comando. +> Mais informações: . + +- Alterna o modo escuro (ativa se estiver desativado, desativa se estiver ativado): + +`dark-mode` + +- Ativa o modo escuro: + +`dark-mode on` + +- Desativa o modo escuro: + +`dark-mode off` + +- Verifica se o modo escuro está ativado: + +`dark-mode status` diff --git a/pages.pt_BR/osx/date.md b/pages.pt_BR/osx/date.md new file mode 100644 index 00000000000000..6cccab26339d87 --- /dev/null +++ b/pages.pt_BR/osx/date.md @@ -0,0 +1,20 @@ +# date + +> Define ou exibe a data do sistema. +> Mais informações: . + +- Exibe a data atual usando o formato da localidade padrão: + +`date +%c` + +- Exibe a data atual no formato UTC e ISO 8601: + +`date -u +%Y-%m-%dT%H:%M:%SZ` + +- Exibe a data atual como um timestamp Unix (segundos desde a época Unix): + +`date +%s` + +- Exibe uma data específica (representada como um timestamp Unix) usando o formato padrão: + +`date -r 1473305798` diff --git a/pages.pt_BR/osx/dd.md b/pages.pt_BR/osx/dd.md new file mode 100644 index 00000000000000..f06664529b5201 --- /dev/null +++ b/pages.pt_BR/osx/dd.md @@ -0,0 +1,20 @@ +# dd + +> Converte e copia um arquivo. +> Mais informações: . + +- Cria uma unidade USB inicializável a partir de um arquivo isohybrid (tal como `archlinux-xxx.iso`): + +`dd if={{arquivo.iso}} of=/dev/{{unidade_usb}}` + +- Clona uma unidade para outra unidade com bloco de 4 MB e ignora erro: + +`dd if=/dev/{{unidade_origem}} of=/dev/{{unidade_destino}} bs=4m conv=noerror` + +- Gera um arquivo de 100 bytes aleatórios usando o driver aleatório do kernel: + +`dd if=/dev/urandom of={{arquivo_aleatório}} bs=100 count=1` + +- Compara o desempenho de gravação de um disco: + +`dd if=/dev/zero of={{arquivo_1GB}} bs=1024 count=1000000` diff --git a/pages.pt_BR/osx/defaults.md b/pages.pt_BR/osx/defaults.md new file mode 100644 index 00000000000000..e34f9b6c70cf78 --- /dev/null +++ b/pages.pt_BR/osx/defaults.md @@ -0,0 +1,28 @@ +# defaults + +> Lê e grava a configuração do usuário do macOS para aplicativos. +> Mais informações: . + +- Lê os padrões do sistema para uma opção do aplicativo: + +`defaults read "{{aplicativo}}" "{{opção}}"` + +- Lê os valores padrão para uma opção do aplicativo: + +`defaults read -app "{{aplicativo}}" "{{opção}}"` + +- Pesquisa uma palavra-chave em nomes de domínio, chaves, e valores: + +`defaults find "{{palavra-chave}}"` + +- Grava o valor padrão de uma opção do aplicativo: + +`defaults write "{{aplicativo}}" "{{opção}}" {{-tipo}} {{valor}}` + +- Acelera as animações do Mission Control: + +`defaults write com.apple.Dock expose-animation-duration -float 0.1` + +- Exclui todos os padrões de um aplicativo: + +`defaults delete "{{aplicativo}}"` diff --git a/pages.pt_BR/osx/deleted.md b/pages.pt_BR/osx/deleted.md new file mode 100644 index 00000000000000..350ff9f8664b10 --- /dev/null +++ b/pages.pt_BR/osx/deleted.md @@ -0,0 +1,9 @@ +# deleted + +> Acompanha o espaço purgável e solicita que os clientes removam os arquivos quando o espaço estiver baixo. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`deleted` diff --git a/pages.pt_BR/osx/dhcp6d.md b/pages.pt_BR/osx/dhcp6d.md new file mode 100644 index 00000000000000..daf500c4f5bc7a --- /dev/null +++ b/pages.pt_BR/osx/dhcp6d.md @@ -0,0 +1,13 @@ +# dhcp6d + +> Servidor DHCPv6 stateless. Veja também: `InternetSharing`. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`dhcp6d` + +- Usa uma configuração personalizada: + +`dhcp6d {{caminho/para/configuração}}` diff --git a/pages.pt_BR/osx/diskutil.md b/pages.pt_BR/osx/diskutil.md new file mode 100644 index 00000000000000..6b68061e0a74b2 --- /dev/null +++ b/pages.pt_BR/osx/diskutil.md @@ -0,0 +1,20 @@ +# diskutil + +> Utilitário para gerenciar discos e volumes locais. +> Mais informações: . + +- Lista todos os discos, partições, e volumes montados atualmente disponíveis: + +`diskutil list` + +- Repara as estruturas de dados do sistema de arquivos de um volume: + +`diskutil repairVolume {{/dev/diskX}}` + +- Desmonta um volume: + +`diskutil unmountDisk {{/dev/diskX}}` + +- Ejeta um CD/DVD (desmonta primeiro): + +`diskutil eject {{/dev/disk1}}` diff --git a/pages.pt_BR/osx/distnoted.md b/pages.pt_BR/osx/distnoted.md new file mode 100644 index 00000000000000..93f06250c89054 --- /dev/null +++ b/pages.pt_BR/osx/distnoted.md @@ -0,0 +1,9 @@ +# distnoted + +> Fornece serviços de notificação distribuídos. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`distnoted` diff --git a/pages.pt_BR/osx/ditto.md b/pages.pt_BR/osx/ditto.md new file mode 100644 index 00000000000000..5adaf2078d3afe --- /dev/null +++ b/pages.pt_BR/osx/ditto.md @@ -0,0 +1,16 @@ +# ditto + +> Copia arquivos e diretórios. +> Mais informações: . + +- Sobrescreve o conteúdo do diretório de destino pelo conteúdo do diretório de origem: + +`ditto {{caminho/para/origem}} {{caminho/para/destino}}` + +- Imprime uma linha na janela do Terminal para cada arquivo que está sendo copiado: + +`ditto -V {{caminho/para/origem}} {{caminho/para/destino}}` + +- Copia um determinado arquivo ou diretório, mantendo as permissões do arquivo original: + +`ditto -rsrc {{caminho/para/origem}} {{caminho/para/destino}}` diff --git a/pages.pt_BR/osx/dmesg.md b/pages.pt_BR/osx/dmesg.md new file mode 100644 index 00000000000000..dc28ccb9ff7a68 --- /dev/null +++ b/pages.pt_BR/osx/dmesg.md @@ -0,0 +1,16 @@ +# dmesg + +> Exibe mensagens do kernel na saída padrão. +> Mais informações: . + +- Exibe mensagens do kernel: + +`dmesg` + +- Exibe quanta memória física está disponível no sistema: + +`dmesg | grep -i memory` + +- Exibe mensagens do kernel, 1 página por vez: + +`dmesg | less` diff --git a/pages.pt_BR/osx/dot_clean.md b/pages.pt_BR/osx/dot_clean.md new file mode 100644 index 00000000000000..ce507b8271d8b0 --- /dev/null +++ b/pages.pt_BR/osx/dot_clean.md @@ -0,0 +1,28 @@ +# dot_clean + +> Mescla ._* arquivos com arquivos nativos correspondentes. +> Mais informações: . + +- Mescla todos os `._*` arquivos recursivamente: + +`dot_clean {{caminho/para/diretório}}` + +- Não mescla recursivamente todos `._*` em um diretório (flat merge): + +`dot_clean -f {{caminho/para/diretório}}` + +- Mescla e exclui todos os arquivos `._*`: + +`dot_clean -m {{caminho/para/diretório}}` + +- Somente exclui arquivos `._*` se houver um arquivo nativo correspondente: + +`dot_clean -n {{caminho/para/diretório}}` + +- Segue os links simbólicos: + +`dot_clean -s {{caminho/para/diretório}}` + +- Imprime saída verbosa: + +`dot_clean -v {{caminho/para/diretório}}` diff --git a/pages.pt_BR/osx/drutil.md b/pages.pt_BR/osx/drutil.md new file mode 100644 index 00000000000000..31641612c057dc --- /dev/null +++ b/pages.pt_BR/osx/drutil.md @@ -0,0 +1,12 @@ +# drutil + +> Interage com gravadores de DVD. +> Mais informações: . + +- Ejeta um disco da unidade: + +`drutil eject` + +- Grava um diretório como um sistema de arquivos ISO9660 em um DVD. Não verifica, e ejeta quando terminar: + +`drutil burn -noverify -eject -iso9660` diff --git a/pages.pt_BR/osx/du.md b/pages.pt_BR/osx/du.md new file mode 100644 index 00000000000000..baf293cf1ee1aa --- /dev/null +++ b/pages.pt_BR/osx/du.md @@ -0,0 +1,28 @@ +# du + +> Uso do Disco: estima e resume o uso do espaço de arquivos e diretórios. +> Mais informações: . + +- Lista os tamanhos de um diretório e quaisquer subdiretórios, na unidade fornecida (KiB/MiB/GiB): + +`du -{{k|m|g}} {{caminho/para/diretório}}` + +- Lista os tamanhos de um diretório e quaisquer subdiretórios, em formato legível (ou seja, selecionando automaticamente a unidade apropriada para cada tamanho): + +`du -h {{caminho/para/diretório}}` + +- Exibe o tamanho de um único diretório, em unidades legíveis: + +`du -sh {{caminho/para/diretório}}` + +- Lista os tamanhos legíveis de um diretório e de todos os arquivos e diretórios dentro dele: + +`du -ah {{caminho/para/diretório}}` + +- Lista os tamanhos legíveis de um diretório e quaisquer subdiretórios, até N níveis de profundidade: + +`du -h -d {{N}} {{caminho/para/diretório}}` + +- Lista o tamanho legível de todos os arquivos `.jpg` nos subdiretórios do diretório atual e exibe um total cumulativo no final: + +`du -ch {{*/*.jpg}}` diff --git a/pages.pt_BR/osx/duti.md b/pages.pt_BR/osx/duti.md new file mode 100644 index 00000000000000..0098a5161d9227 --- /dev/null +++ b/pages.pt_BR/osx/duti.md @@ -0,0 +1,28 @@ +# duti + +> Define os aplicativos padrão para tipos de documentos e esquemas de URL no macOS. +> Mais informações: . + +- Define o Safari como o manipulador padrão de documentos HTML: + +`duti -s {{com.apple.Safari}} {{public.html}} all` + +- Define o VLC como visualizador padrão para arquivos com extensões `.m4v`: + +`duti -s {{org.videolan.vlc}} {{m4v}} viewer` + +- Define o Finder como o manipulador padrão para esquema de URL ftp://: + +`duti -s {{com.apple.Finder}} "{{ftp}}"` + +- Exibe informações sobre o aplicativo padrão para uma determinada extensão: + +`duti -x {{ext}}` + +- Exibe o manipulador padrão para um determinado UTI: + +`duti -d {{uti}}` + +- Exibe todos os manipuladores de um determinado UTI: + +`duti -l {{uti}}` diff --git a/pages.pt_BR/osx/ed.md b/pages.pt_BR/osx/ed.md new file mode 100644 index 00000000000000..27542c1a294b54 --- /dev/null +++ b/pages.pt_BR/osx/ed.md @@ -0,0 +1,25 @@ +# ed + +> Editor de texto original do Unix. +> Veja também: `awk`, `sed`. +> Mais informações: . + +- Inicia uma sessão interativa do editor com um documento vazio: + +`ed` + +- Inicia uma sessão interativa do editor com um documento vazio e um [p]rompt específico: + +`ed -p '> '` + +- Inicia uma sessão interativa do editor com um documento vazio e sem diagnósticos, contagens de bytes, e prompt '!': + +`ed -s` + +- Edita um arquivo específico (mostra a contagem de bytes do arquivo carregado): + +`ed {{caminho/para/arquivo}}` + +- Substitui uma string por uma substituição específica em todas as linhas: + +`,s/{{expressão_regular}}/{{substituição}}/g` diff --git a/pages.pt_BR/osx/emond.md b/pages.pt_BR/osx/emond.md new file mode 100644 index 00000000000000..146f1e87a2bbd5 --- /dev/null +++ b/pages.pt_BR/osx/emond.md @@ -0,0 +1,17 @@ +# emond + +> Serviço Event Monitor que aceita eventos de vários serviços, os executa por meio de um mecanismo de regras simples, e executa ações. +> As ações podem executar comandos, enviar e-mails, ou mensagens SMS. +> Mais informações: . + +- Inicia o daemon: + +`emond` + +- Especifica as regras para o emond processar, fornecendo um caminho para um arquivo ou diretório: + +`emond -r {{caminho/para/arquivo_ou_diretório}}` + +- Usa um arquivo de configuração específico: + +`emond -c {{caminho/para/configuração}}` diff --git a/pages.pt_BR/osx/fdesetup.md b/pages.pt_BR/osx/fdesetup.md new file mode 100644 index 00000000000000..deceded773876d --- /dev/null +++ b/pages.pt_BR/osx/fdesetup.md @@ -0,0 +1,24 @@ +# fdesetup + +> Define e recupera informações relacionadas ao FileVault. +> Mais informações: . + +- Lista os usuários atuais habilitados para o FileVault: + +`sudo fdesetup list` + +- Obtém o status atual do FileVault: + +`fdesetup status` + +- Adiciona usuário habilitado para o FileVault: + +`sudo fdesetup add -usertoadd user1` + +- Ativa o FileVault: + +`sudo fdesetup enable` + +- Desativa o FileVault: + +`sudo fdesetup disable` diff --git a/pages.pt_BR/osx/filecoordinationd.md b/pages.pt_BR/osx/filecoordinationd.md new file mode 100644 index 00000000000000..c3bbc6a6b13885 --- /dev/null +++ b/pages.pt_BR/osx/filecoordinationd.md @@ -0,0 +1,9 @@ +# filecoordinationd + +> Coordena o acesso a arquivos por vários processos (`NSFileCoordinator`, `NSFilePresenter`). +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`filecoordinationd` diff --git a/pages.pt_BR/osx/fileicon.md b/pages.pt_BR/osx/fileicon.md new file mode 100644 index 00000000000000..72c85f4986d952 --- /dev/null +++ b/pages.pt_BR/osx/fileicon.md @@ -0,0 +1,20 @@ +# fileicon + +> Uma CLI do macOS para gerenciar ícones personalizados de arquivos e pastas. +> Mais informações: . + +- Define um ícone personalizado para um arquivo ou diretório específico: + +`fileicon set {{caminho/para/arquivo_ou_diretório}} {{caminho/para/icone.png}}` + +- Remove um ícone personalizado de um arquivo ou diretório específico: + +`fileicon rm {{caminho/para/arquivo_ou_diretório}}` + +- Salva o ícone personalizado de um arquivo ou diretório como um arquivo `.icns` no diretório atual: + +`fileicon get {{caminho/para/arquivo_ou_diretório}}` + +- Testa se um arquivo ou diretório específico tem um ícone personalizado: + +`fileicon test {{caminho/para/arquivo_ou_diretório}}` diff --git a/pages.pt_BR/osx/fontd.md b/pages.pt_BR/osx/fontd.md new file mode 100644 index 00000000000000..5da8c029a0abeb --- /dev/null +++ b/pages.pt_BR/osx/fontd.md @@ -0,0 +1,9 @@ +# fontd + +> Disponibiliza fontes para o sistema. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`fontd` diff --git a/pages.pt_BR/osx/fsck.md b/pages.pt_BR/osx/fsck.md new file mode 100644 index 00000000000000..47ee46eab69e1e --- /dev/null +++ b/pages.pt_BR/osx/fsck.md @@ -0,0 +1,21 @@ +# fsck + +> Verifica a integridade de um sistema de arquivos ou repara ele. O sistema de arquivos deve ser desmontado no momento em que o comando é executado. +> É um wrapper que chama `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, e `fsck_udf` conforme necessário. +> Mais informações: . + +- Verifica o sistema de arquivos `/dev/sdX`, relatando quaisquer blocos danificados: + +`fsck {{/dev/sdX}}` + +- Verifica o sistema de arquivos `/dev/sdX` apenas se estiver limpo, relatando quaisquer blocos danificados e permitindo que o usuário interativamente escolha reparar cada um deles: + +`fsck -f {{/dev/sdX}}` + +- Verifica o sistema de arquivos `/dev/sdX` apenas se estiver limpo, relatando quaisquer blocos danificados e reparando-os automaticamente: + +`fsck -fy {{/dev/sdX}}` + +- Verifica o sistema de arquivos `/dev/sdX`, informando se ele foi desmontado corretamente: + +`fsck -q {{/dev/sdX}}` diff --git a/pages.pt_BR/osx/g[.md b/pages.pt_BR/osx/g[.md new file mode 100644 index 00000000000000..99ebaf59ef65c8 --- /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 00000000000000..a4e500139e351e --- /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 00000000000000..1c3e83a4129b9b --- /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 00000000000000..e91e514432210f --- /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 00000000000000..9ad1187d8d93cd --- /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 00000000000000..31c1ebc9e43900 --- /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 00000000000000..d0bbecc8517c6b --- /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 00000000000000..c809f97825d228 --- /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 00000000000000..edfb1ed7371c3e --- /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 00000000000000..05ec610aaadeaa --- /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 00000000000000..4add0882cf6821 --- /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 00000000000000..4d8a9587041807 --- /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 00000000000000..2e62a2070bbf37 --- /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 00000000000000..76cc9762a68497 --- /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 00000000000000..8e321b528cdd0f --- /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 00000000000000..220761b432669f --- /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 00000000000000..61f4b8f5e9eb48 --- /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 00000000000000..1a2f35ad244660 --- /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 00000000000000..be072b3816492d --- /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 00000000000000..3736615b97bbea --- /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 00000000000000..f344ac4a28ae34 --- /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 00000000000000..deb975282eaac1 --- /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 00000000000000..e1b48a78f7d5ed --- /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 00000000000000..620a2c1fc9669a --- /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 00000000000000..02efac8818bd1c --- /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 00000000000000..d0246645739866 --- /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 00000000000000..c96a3b0ca18d39 --- /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 00000000000000..78816789919de7 --- /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 00000000000000..37154f204bcea2 --- /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/getfileinfo.md b/pages.pt_BR/osx/getfileinfo.md new file mode 100644 index 00000000000000..24a2800d5fc0c9 --- /dev/null +++ b/pages.pt_BR/osx/getfileinfo.md @@ -0,0 +1,20 @@ +# GetFileInfo + +> Obtém informações sobre um arquivo em um diretório HFS+. +> Mais informações: . + +- Exibe informações sobre um determinado arquivo: + +`GetFileInfo {{caminho/para/nome_do_arquivo}}` + +- Exibe a data e hora em que um determinado arquivo foi criado: + +`GetFileInfo -d {{caminho/para/nome_do_arquivo}}` + +- Exibe a data e hora em que um determinado arquivo foi modificado pela última vez: + +`GetFileInfo -m {{caminho/para/nome_do_arquivo}}` + +- Exibe o criador de um determinado arquivo: + +`GetFileInfo -c {{caminho/para/nome_do_arquivo}}` diff --git a/pages.pt_BR/osx/gexpand.md b/pages.pt_BR/osx/gexpand.md new file mode 100644 index 00000000000000..bc34f8bfe2f60a --- /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 00000000000000..18897fdf9e9072 --- /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 00000000000000..baaea52a209cbf --- /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 00000000000000..5a50801eec8b2e --- /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 00000000000000..7fa01a3a9ac1e1 --- /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 00000000000000..ee768832b4e505 --- /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 00000000000000..9fb92cf4e62605 --- /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 00000000000000..d5110002549b2d --- /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 00000000000000..f4b3f0461e81ca --- /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 00000000000000..fd12e8d43212bb --- /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 00000000000000..59feec8b9802a0 --- /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 00000000000000..25b055fd8f7ffe --- /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 00000000000000..608350d8a4ca1e --- /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 00000000000000..9a5aa99a65309a --- /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 00000000000000..a3e80beca4ae9c --- /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 00000000000000..dd90fd9f9ce9ad --- /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 00000000000000..9662b6c4903e17 --- /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 00000000000000..ce9cebe61ed6f5 --- /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 00000000000000..ca7c579548a0e7 --- /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 00000000000000..1abe04e11d22eb --- /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 00000000000000..7be03dbcad99b0 --- /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 00000000000000..7f17aa768d2513 --- /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 00000000000000..095e55f992eb58 --- /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 00000000000000..5ce4aea5a10366 --- /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 00000000000000..806b58b3f4962c --- /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 00000000000000..2f482f5610b436 --- /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 00000000000000..976f4f6a1ac998 --- /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 00000000000000..d07d89a2ff8cb7 --- /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 00000000000000..7e7ad314cd5c95 --- /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 00000000000000..a7edcd6403c251 --- /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 00000000000000..a7396a61a74cb8 --- /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 00000000000000..c36ff73aa1bbf1 --- /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 00000000000000..5e0dd9e2ebaee9 --- /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 00000000000000..62cc2b49521116 --- /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 00000000000000..285554999a8788 --- /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 00000000000000..f5617ce91c3338 --- /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 00000000000000..60bc7d2e4cd371 --- /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 00000000000000..e09bd5575c76a2 --- /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 00000000000000..3c3de5703212f5 --- /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 00000000000000..bf9301d70b93b0 --- /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 00000000000000..67f5c1c7ddec36 --- /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 00000000000000..f48d0bf4f21b18 --- /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 00000000000000..f2e48f95b4e138 --- /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 00000000000000..9069279fe17ee3 --- /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 00000000000000..3632f63424dd76 --- /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 00000000000000..ad4853a29c53fb --- /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 00000000000000..e9e6a08f411fe3 --- /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 00000000000000..967f265079f944 --- /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 00000000000000..7d8e37fb739b3e --- /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 00000000000000..f4c2128cce0b1e --- /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 00000000000000..1d15326ebaa37b --- /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 00000000000000..112f4a9f775ac7 --- /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 00000000000000..b6d868296d99da --- /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 00000000000000..41f920860b0e1f --- /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 00000000000000..425e2390833e55 --- /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 00000000000000..4926833aa3be02 --- /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 00000000000000..18a1ff5d755a3f --- /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 00000000000000..58c29a9ccdfa54 --- /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 00000000000000..131550b5a4e4e9 --- /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 00000000000000..a239ec395e6250 --- /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 00000000000000..a8ca48d4a0f978 --- /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 00000000000000..f48e1f195abfad --- /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 00000000000000..12a6969b06b12b --- /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 00000000000000..abc58de067bf6b --- /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 00000000000000..0d04181571b86c --- /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 00000000000000..2ffe8b06714ba3 --- /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 00000000000000..ca12dfbebc81fd --- /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 00000000000000..098bf85629f222 --- /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 00000000000000..be5cc93c1db18f --- /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 00000000000000..a0f30b408b961f --- /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 00000000000000..81c400f237c609 --- /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 00000000000000..de8f4a73f7647d --- /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 00000000000000..92168492c0f1a6 --- /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 00000000000000..5796d2f38121f7 --- /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 00000000000000..350b3e093b8973 --- /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 00000000000000..4c16aef37dddbe --- /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 00000000000000..c21dba02b9d586 --- /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 00000000000000..2350d65f942c6e --- /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 00000000000000..0dff2ac915e77e --- /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 00000000000000..e72c39c1c972be --- /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 00000000000000..014311445aacfc --- /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 00000000000000..ae9d02665be298 --- /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 00000000000000..a850aa9f6769a6 --- /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 00000000000000..6ba1920eb45169 --- /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 00000000000000..db11b09c1a060f --- /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 00000000000000..4c738f012fc18f --- /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 00000000000000..4c968909a4bbbb --- /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 00000000000000..d1f7d542fab737 --- /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 00000000000000..8eb951dcd57d74 --- /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 00000000000000..cdf332da900be0 --- /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 00000000000000..6adfa0f0a26466 --- /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 00000000000000..8a71737eab9376 --- /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 00000000000000..56a66ba3421c84 --- /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 00000000000000..0781255d1d02b3 --- /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 00000000000000..f4fc403d774a56 --- /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 00000000000000..d61d51eb20a112 --- /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 00000000000000..83c03b112cedc8 --- /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 00000000000000..f74d38cea8a5d3 --- /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 00000000000000..9327a079f6ffb6 --- /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 00000000000000..b667991336452d --- /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 00000000000000..c4f56547dfc631 --- /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 00000000000000..7cbf287649ae8a --- /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 00000000000000..af91450e4516f1 --- /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 00000000000000..543f9ae1180407 --- /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 00000000000000..0982d09c5016a4 --- /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 00000000000000..9d91b611d97650 --- /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 00000000000000..0c86cdd2872bf7 --- /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 00000000000000..49fddb982e5b0c --- /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 00000000000000..4e617ceb8f4282 --- /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 00000000000000..2f8b09c965c8b1 --- /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/hdiutil.md b/pages.pt_BR/osx/hdiutil.md new file mode 100644 index 00000000000000..98053d41d300ce --- /dev/null +++ b/pages.pt_BR/osx/hdiutil.md @@ -0,0 +1,20 @@ +# hdiutil + +> Utilitário para criar e gerenciar imagens de disco. +> Mais informações: . + +- Monta uma imagem: + +`hdiutil attach {{caminho/para/aquivo_de_imagem}}` + +- Desmonta uma imagem: + +`hdiutil detach /Volumes/{{nome_do_volume}}` + +- Lista as imagens montadas: + +`hdiutil info` + +- Cria uma imagem ISO a partir do conteúdo de um diretório: + +`hdiutil makehybrid -o {{caminho/para/arquivo_de_saída}} {{caminho/para/diretório}}` diff --git a/pages.pt_BR/osx/hidd.md b/pages.pt_BR/osx/hidd.md new file mode 100644 index 00000000000000..27db478bd7bb1e --- /dev/null +++ b/pages.pt_BR/osx/hidd.md @@ -0,0 +1,9 @@ +# hidd + +> Daemon de nível de usuário da biblioteca HID. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`hidd` diff --git a/pages.pt_BR/osx/icalbuddy.md b/pages.pt_BR/osx/icalbuddy.md new file mode 100644 index 00000000000000..34acb2759ccef7 --- /dev/null +++ b/pages.pt_BR/osx/icalbuddy.md @@ -0,0 +1,24 @@ +# icalBuddy + +> Utilitário de linha de comando para exibir eventos e tarefas do banco de dados do calendário do macOS. +> Mais informações: . + +- Exibe eventos que acontecerão hoje: + +`icalBuddy --includeOnlyEventsFromNowOn eventsToday` + +- Exibe tarefas incompletas: + +`icalBuddy uncompletedTasks` + +- Exibe uma lista formatada separada por calendário para todos os eventos de hoje: + +`icalBuddy --formatOutput --separateByCalendar eventsToday` + +- Exibe tarefas para um determinado número de dias: + +`icalBuddy --includeOnlyEventsFromNowOn "tasksDueBefore:today+{{dias}}"` + +- Exibe eventos em um intervalo de tempo: + +`icalBuddy eventsFrom:{{data_inicial}} to:{{data_final}}` diff --git a/pages.pt_BR/osx/imgcat.md b/pages.pt_BR/osx/imgcat.md new file mode 100644 index 00000000000000..b945f142b3ae16 --- /dev/null +++ b/pages.pt_BR/osx/imgcat.md @@ -0,0 +1,9 @@ +# imgcat + +> Utilitário para exibir imagens diretamente na linha de comando. +> Requer um terminal compatível, como o iTerm2. +> Mais informações: . + +- Exibe uma imagem na linha de comando: + +`imgcat {{nome_do_arquivo}}` diff --git a/pages.pt_BR/osx/indent.md b/pages.pt_BR/osx/indent.md new file mode 100644 index 00000000000000..dc7b70784807d6 --- /dev/null +++ b/pages.pt_BR/osx/indent.md @@ -0,0 +1,12 @@ +# indent + +> Altera a aparência de um programa C/C++ inserindo ou excluindo espaços em branco. +> Mais informações: . + +- Formata código fonte C/C++ de acordo com o estilo Berkeley: + +`indent {{caminho/para/fonte.c}} {{caminho/para/fonte_identado.c}} -nbad -nbap -bc -br -c33 -cd33 -cdb -ce -ci4 -cli0 -di16 -fc1 -fcb -i4 -ip -l75 -lp -npcs -nprs -psl -sc -nsob -ts8` + +- Formata código fonte C/C++ de acordo com o estilo Kernighan & Ritchie (K&R): + +`indent {{caminho/para/fonte.c}} {{caminho/para/fonte_identado.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.pt_BR/osx/internetsharing.md b/pages.pt_BR/osx/internetsharing.md new file mode 100644 index 00000000000000..1f6b10bddc9414 --- /dev/null +++ b/pages.pt_BR/osx/internetsharing.md @@ -0,0 +1,9 @@ +# InternetSharing + +> Configura o Compartilhamento de Internet. +> Não deve ser invocado manualmente. +> Mais informações: . + +- Inicia o daemon: + +`InternetSharing` diff --git a/pages.pt_BR/osx/istats.md b/pages.pt_BR/osx/istats.md new file mode 100644 index 00000000000000..f068964909a4ee --- /dev/null +++ b/pages.pt_BR/osx/istats.md @@ -0,0 +1,20 @@ +# istats + +> Ferramenta CLI que mostra estatísticas como temperatura da CPU, velocidade das ventoinhas, e status da bateria. +> Mais informações: . + +- Exibe todas as estatísticas: + +`istats` + +- Exibe todas as estatísticas da CPU: + +`istats cpu` + +- Exibe todas as estatísticas das ventoinhas: + +`istats fan` + +- Examina e imprime as temperaturas: + +`istats scan` diff --git a/pages.pt_BR/osx/launchd.md b/pages.pt_BR/osx/launchd.md new file mode 100644 index 00000000000000..9c31c05c2981e1 --- /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/windows/assoc.md b/pages.pt_BR/windows/assoc.md new file mode 100644 index 00000000000000..9e6e8ba4948e01 --- /dev/null +++ b/pages.pt_BR/windows/assoc.md @@ -0,0 +1,16 @@ +# assoc + +> Exibir ou alterar associações entre extensões de arquivo e tipos de arquivos. +> Mais informações: . + +- Lista todas as associações entre extensões de arquivo e tipos de arquivos: + +`assoc` + +- Exibe o tipo de arquivo associado para uma extensão específica: + +`assoc {{.txt}}` + +- Define o tipo de arquivo associado para uma extensão específica: + +`assoc .{{txt}}={{arquivotxt}}` diff --git a/pages.pt_BR/windows/cd.md b/pages.pt_BR/windows/cd.md new file mode 100644 index 00000000000000..2fa0129b1d4243 --- /dev/null +++ b/pages.pt_BR/windows/cd.md @@ -0,0 +1,20 @@ +# cd + +> Exibe o nome ou altera o diretório local atual. +> Mais informações: . + +- Vá para um diretório na mesma unidade: + +`cd {{caminho/para/diretorio}}` + +- Mostra o nome do diretório atual: + +`cd` + +- Vá até o pai do diretório atual: + +`cd ..` + +- Vá para um diretório em uma unidade diferente: + +`cd {{caminho/para/diretorio}} /d` diff --git a/pages.pt_BR/windows/choco-install.md b/pages.pt_BR/windows/choco-install.md index 35daa5486581ea..2bf0a04eec0517 100644 --- a/pages.pt_BR/windows/choco-install.md +++ b/pages.pt_BR/windows/choco-install.md @@ -9,11 +9,11 @@ - Instalar pacotes a partir de um aquivo de configuração personalizado: -`choco install {{caminho/para/os/pacotes.config}}` +`choco install {{caminho/para/pacotes.config}}` - Instalar um arquivo específico `nuspec` ou `nupkg`: -`choco install {{caminho/para/o/arquivo}}` +`choco install {{caminho/para/arquivo}}` - Instalar uma versão específica de um pacote: diff --git a/pages.pt_BR/windows/choco-source.md b/pages.pt_BR/windows/choco-source.md index 3cba9a0701a812..eee78286985ea8 100644 --- a/pages.pt_BR/windows/choco-source.md +++ b/pages.pt_BR/windows/choco-source.md @@ -17,7 +17,7 @@ - Adicionar uma nova fonte de pacotes com certificado do cliente: -`choco source add --name {{nome}} --source {{url_da_fonte}} --cert {{caminho/para/o/certificado}}` +`choco source add --name {{nome}} --source {{url_da_fonte}} --cert {{caminho/para/certificado}}` - Habilitar uma fonte de pacotes: diff --git a/pages.pt_BR/windows/choco.md b/pages.pt_BR/windows/choco.md index e61f3f3b958cf2..d1bfbe0f66ef0a 100644 --- a/pages.pt_BR/windows/choco.md +++ b/pages.pt_BR/windows/choco.md @@ -1,7 +1,7 @@ # choco > Uma interface de linha de comando para o gerenciador de pacotes Chocolatey. -> Veja `choco install`, `choco upgrade` e outras páginas para mais informações. +> Alguns subcomandos como `choco install` tem sua própia documentação de uso. > Mais informações: . - Executar o comando Chocolatey: diff --git a/pages.pt_BR/windows/chrome.md b/pages.pt_BR/windows/chrome.md new file mode 100644 index 00000000000000..e378f8439b36da --- /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/cinst.md b/pages.pt_BR/windows/cinst.md new file mode 100644 index 00000000000000..bf894710549c5a --- /dev/null +++ b/pages.pt_BR/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Este comando é um pseudônimo de `choco install`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr choco install` diff --git a/pages.pt_BR/windows/clist.md b/pages.pt_BR/windows/clist.md new file mode 100644 index 00000000000000..660447b0493f15 --- /dev/null +++ b/pages.pt_BR/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Este comando é um pseudônimo de `choco list`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr choco list` diff --git a/pages.pt_BR/windows/cls.md b/pages.pt_BR/windows/cls.md index 89738962ce188a..b298e2ea37a5ae 100644 --- a/pages.pt_BR/windows/cls.md +++ b/pages.pt_BR/windows/cls.md @@ -1,7 +1,7 @@ # cls > Limpar a tela de saída. -> Mais informações: . +> Mais informações: . - Limpar a tela: diff --git a/pages.pt_BR/windows/cmd.md b/pages.pt_BR/windows/cmd.md index dd9820bae247ba..dffe5a52476565 100644 --- a/pages.pt_BR/windows/cmd.md +++ b/pages.pt_BR/windows/cmd.md @@ -1,7 +1,7 @@ # cmd > O interpretador de comandos do Windows. -> Mais informações: . +> Mais informações: . - Iniciar nova instância do interpretador de comandos: @@ -31,6 +31,6 @@ `cmd /v:{{on|off}}` -- Forçar que a saída de comandos use o padrão unicode: +- Forçar que a saída de comandos use o padrão Unicode: `cmd /u` diff --git a/pages.pt_BR/windows/cpush.md b/pages.pt_BR/windows/cpush.md new file mode 100644 index 00000000000000..cbff922ab3387b --- /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/cuninst.md b/pages.pt_BR/windows/cuninst.md new file mode 100644 index 00000000000000..c0b00b6f640525 --- /dev/null +++ b/pages.pt_BR/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Este comando é um pseudônimo de `choco uninstall`. +> Mais informações: . + +- Ver documentação sobre o comando original: + +`tldr choco uninstall` diff --git a/pages.pt_BR/windows/curl.md b/pages.pt_BR/windows/curl.md new file mode 100644 index 00000000000000..a891ea85620fe6 --- /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/dir.md b/pages.pt_BR/windows/dir.md index 4fd255edf37aa4..fa7959e8a25761 100644 --- a/pages.pt_BR/windows/dir.md +++ b/pages.pt_BR/windows/dir.md @@ -1,7 +1,7 @@ # dir > Listar os conteúdos de um diretório. -> Mais informações: . +> Mais informações: . - Mostrar o conteúdo do diretório atual: diff --git a/pages.pt_BR/windows/iwr.md b/pages.pt_BR/windows/iwr.md new file mode 100644 index 00000000000000..6f9b79fe54b517 --- /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/mkdir.md b/pages.pt_BR/windows/mkdir.md index d8baa041d379cb..3ce564bcff1edd 100644 --- a/pages.pt_BR/windows/mkdir.md +++ b/pages.pt_BR/windows/mkdir.md @@ -1,7 +1,7 @@ # mkdir > Criar um diretório. -> Mais informações: . +> Mais informações: . - Criar um diretório: diff --git a/pages.pt_BR/windows/print.md b/pages.pt_BR/windows/print.md index beb1ba32e3ddc2..c8680b11a518ff 100644 --- a/pages.pt_BR/windows/print.md +++ b/pages.pt_BR/windows/print.md @@ -1,7 +1,7 @@ # print > Imprimir um arquivo de texto em uma impressora. -> Mais informações: . +> Mais informações: . - Imprimir um arquivo de texto na impressora padrão: diff --git a/pages.pt_BR/windows/pwsh-where.md b/pages.pt_BR/windows/pwsh-where.md new file mode 100644 index 00000000000000..da3ecb2363df25 --- /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 00000000000000..64dfbb7810aafb --- /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/sigverif.md b/pages.pt_BR/windows/sigverif.md deleted file mode 100644 index dd9111e7d68d46..00000000000000 --- a/pages.pt_BR/windows/sigverif.md +++ /dev/null @@ -1,7 +0,0 @@ -# sigverif - -> Uma interface gráfica para verificação de assinaturas de arquivos do sistema. - -- Abre a interface de verificação de assinatura: - -`sigverif` diff --git a/pages.pt_BR/windows/sls.md b/pages.pt_BR/windows/sls.md new file mode 100644 index 00000000000000..0a49ea1fe749b9 --- /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/title.md b/pages.pt_BR/windows/title.md index 147aa260b1c277..4736fe00ebe7cb 100644 --- a/pages.pt_BR/windows/title.md +++ b/pages.pt_BR/windows/title.md @@ -1,7 +1,7 @@ # title > Exibe o título do prompt de comando. -> Mais informações: . +> Mais informações: . - Define o título do prompt de comando: diff --git a/pages.pt_BR/windows/tree.md b/pages.pt_BR/windows/tree.md index 9fed4aa6d17c32..b9cf455e4cd5c6 100644 --- a/pages.pt_BR/windows/tree.md +++ b/pages.pt_BR/windows/tree.md @@ -1,7 +1,7 @@ # tree > Exibe uma árvore gráfica da estrutura do diretório no caminho. -> Mais informações: . +> Mais informações: . - Exibe a árvore para o diretório atual: diff --git a/pages.pt_BR/windows/type.md b/pages.pt_BR/windows/type.md index 5b1492d5938648..8a32f7c5fda226 100644 --- a/pages.pt_BR/windows/type.md +++ b/pages.pt_BR/windows/type.md @@ -1,7 +1,7 @@ # type > Mostrar o conteúdo de um arquivo. -> Mais informações: . +> Mais informações: . - Mostrar o conteúdo de um arquivo específico: diff --git a/pages.pt_BR/windows/ver.md b/pages.pt_BR/windows/ver.md index b8da85414221f0..c8ee480d63ce4f 100644 --- a/pages.pt_BR/windows/ver.md +++ b/pages.pt_BR/windows/ver.md @@ -1,7 +1,7 @@ # ver > Exibe a atual versão do Windows ou MS-DOS. -> Mais informações: . +> Mais informações: . - Mostra a atual versão: diff --git a/pages.pt_BR/windows/wget.md b/pages.pt_BR/windows/wget.md new file mode 100644 index 00000000000000..cf848114c02995 --- /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_BR/windows/whoami.md b/pages.pt_BR/windows/whoami.md index 2b28f20803dd5b..479213b42cee4a 100644 --- a/pages.pt_BR/windows/whoami.md +++ b/pages.pt_BR/windows/whoami.md @@ -1,7 +1,7 @@ # whoami > Mostra detalhes sobre o usuário atual. -> Mais informações: . +> Mais informações: . - Mostra o username do usuário atual: diff --git a/pages.pt_PT/android/am.md b/pages.pt_PT/android/am.md new file mode 100644 index 00000000000000..18da8edf20e382 --- /dev/null +++ b/pages.pt_PT/android/am.md @@ -0,0 +1,20 @@ +# am + +> Gestor de atividades do Android (Activity Manager). +> Mais informações: . + +- Iniciar uma atividade específica: + +`am start -n {{com.android.settings/.Settings}}` + +- Iniciar uma atividade e passar-lhe dados: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Iniciar uma atividade com uma ação e categoria específicas: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Converter um `intent` num URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.pt_PT/android/bugreport.md b/pages.pt_PT/android/bugreport.md new file mode 100644 index 00000000000000..11007255b11ad8 --- /dev/null +++ b/pages.pt_PT/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Mostra um relatório de bugs do Android. +> Este comando só pode ser utilizado com a `adb shell`. +> Mais informações: . + +- Mostrar um relatório completo de bugs de um dispositivo Android: + +`bugreport` diff --git a/pages.pt_PT/android/bugreportz.md b/pages.pt_PT/android/bugreportz.md new file mode 100644 index 00000000000000..8df6adb6586d91 --- /dev/null +++ b/pages.pt_PT/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Gera um relatório de bugs do Android em formato .zip. +> Este comando só pode ser utilizado com a `adb shell`. +> Mais informações: . + +- Mostrar um relatório completo de bugs de um dispositivo Android em formato .zip: + +`bugreportz` + +- Mostrar o progresso de `bugreportz` em execução: + +`bugreportz -p` + +- Mostrar a versão de `bugreportz`: + +`bugreportz -v` + +- Mostrar a ajuda: + +`bugreportz -h` diff --git a/pages.pt_PT/android/cmd.md b/pages.pt_PT/android/cmd.md new file mode 100644 index 00000000000000..b79c4aa332ea14 --- /dev/null +++ b/pages.pt_PT/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Gestor de serviços (service manager) do Android. +> Mais informações: . + +- Listar todos os serviços em execução: + +`cmd -l` + +- Executar um serviço específico: + +`cmd {{alarm}}` + +- Executar um serviço com parâmetros: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.pt_PT/android/dalvikvm.md b/pages.pt_PT/android/dalvikvm.md new file mode 100644 index 00000000000000..3147de16689f74 --- /dev/null +++ b/pages.pt_PT/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> A máquina virtual Java do Android. +> Mais informações: . + +- Iniciar um programa Java: + +`dalvikvm -classpath {{caminho/para/arquivo.jar}} {{nome_da_classe}}` diff --git a/pages.pt_PT/android/dumpsys.md b/pages.pt_PT/android/dumpsys.md new file mode 100644 index 00000000000000..25bd8f70d2c4a7 --- /dev/null +++ b/pages.pt_PT/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Fornece informações sobre os serviços do sistema Android. +> Este comando só pode ser usado com a `adb shell`. +> Mais informações: . + +- Gerar um diagnóstico de todos os serviços do sistema: + +`dumpsys` + +- Gerar um diagnóstico de um serviço do sistema específico: + +`dumpsys {{servico}}` + +- Listar todos os serviços dos quais o `dumpsys` pode obter informações: + +`dumpsys -l` + +- Listar argumentos específicos de um serviço para um serviço: + +`dumpsys {{servico}} -h` + +- Omitir um serviço em específico do diagnóstico: + +`dumpsys --skip {{servico}}` + +- Especificar um periodo de _timeout_ (por padrão é 10s): + +`dumpsys -t {{segundos}}` diff --git a/pages.pt_PT/android/getprop.md b/pages.pt_PT/android/getprop.md new file mode 100644 index 00000000000000..f7d3480985cab5 --- /dev/null +++ b/pages.pt_PT/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Obtém informações sobre propriedades do sistema (system props) Android. +> Mais informações: . + +- Mostrar todas as propriedades do sistema: + +`getprop` + +- Mostrar o valor de uma propriedade específica: + +`getprop {{prop}}` + +- Mostrar o nível de API: + +`getprop {{ro.build.version.sdk}}` + +- Mostrar a versão do Android: + +`getprop {{ro.build.version.release}}` + +- Mostrar o modelo do dispositivo: + +`getprop {{ro.vendor.product.model}}` + +- Mostrar o status de desbloqueio OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Mostrar o endereço MAC da placa de Wi-Fi do dispositivo: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.pt_PT/android/input.md b/pages.pt_PT/android/input.md new file mode 100644 index 00000000000000..024c592d742eea --- /dev/null +++ b/pages.pt_PT/android/input.md @@ -0,0 +1,25 @@ +# input + +> Envia códigos de eventos ou toques no ecrã para um dispositivo Android. +> Este comando só pode ser usado com a `adb shell`. +> Mais informações: . + +- Enviar um código de evento de um caractere para um dispositivo Android: + +`input keyevent {{codigo_de_evento}}` + +- Enviar texto para um dispositivo Android (`%s` representa espaços): + +`input text "{{texto}}"` + +- Enviar um único toque para um dispositivo Android: + +`input tap {{x_pos}} {{y_pos}}` + +- Enviar um gesto de deslizar para um dispositivo Android: + +`input swipe {{x_inicio}} {{y_inicio}} {{x_fim}} {{y_fim}} {{duração_em_ms}}` + +- Enviar um toque prolongado usando um gesto de deslize para um dispositivo Android: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duração_em_ms}}` diff --git a/pages.pt_PT/android/logcat.md b/pages.pt_PT/android/logcat.md new file mode 100644 index 00000000000000..33f0b6a72b666f --- /dev/null +++ b/pages.pt_PT/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Exibe um conjunto de mensagens de sistema, incluindo a stack de execução do programa em caso de erro, e mensagens de informação criadas por aplicações. +> Mais informações: . + +- Mostrar mensagens de sistema: + +`logcat` + +- Escrever as mensagens de sistema num ficheiro: + +`logcat -f {{caminho/para/arquivo}}` + +- Mostrar mensagens que correspondem a uma expressão regular: + +`logcat --regex {{expressao_regular}}` diff --git a/pages.pt_PT/android/pkg.md b/pages.pt_PT/android/pkg.md new file mode 100644 index 00000000000000..66f179287394c9 --- /dev/null +++ b/pages.pt_PT/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Gestor de pacotes para o Termux. +> Mais informações: . + +- Atualizar todos os pacotes instalados: + +`pkg upgrade` + +- Instalar um pacote: + +`pkg install {{pacote}}` + +- Desinstalar um pacote: + +`pkg uninstall {{pacote}}` + +- Reinstalar um pacote: + +`pkg reinstall {{pacote}}` + +- Procurar um pacote: + +`pkg search {{pacote}}` diff --git a/pages.pt_PT/android/pm.md b/pages.pt_PT/android/pm.md new file mode 100644 index 00000000000000..22498fcab044ee --- /dev/null +++ b/pages.pt_PT/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Mostra informações sobre aplicações num dispositivo Android. +> Mais informações: . + +- Exibir uma lista com todas as aplicações instaladas: + +`pm list packages` + +- Exibir uma lista com todas as aplicações do sistema instaladas: + +`pm list packages -s` + +- Exibir uma lista todas as aplicações de terceiros instaladas: + +`pm list packages -3` + +- Exibir uma lista com todas as aplicações cujos nomes estejam incluídos em palavras-chave: + +`pm list packages {{palavras_chave}}` + +- Exibir o caminho para o APK de um app: + +`pm path {{app}}` diff --git a/pages.pt_PT/android/settings.md b/pages.pt_PT/android/settings.md new file mode 100644 index 00000000000000..b5d8381bf56b3a --- /dev/null +++ b/pages.pt_PT/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Exibe, edita e apaga configurações do sistema Android. +> Mais informações: . + +- Exibir a lista de configurações no namespace `global`: + +`settings list {{global}}` + +- Obter o valor de uma configuração específica: + +`settings get {{global}} {{airplane_mode_on}}` + +- Editar o valor de uma configuração: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Apagar uma configuração: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.pt_PT/android/wm.md b/pages.pt_PT/android/wm.md new file mode 100644 index 00000000000000..c4fc7980a69dac --- /dev/null +++ b/pages.pt_PT/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Exibe informações da tela de um dispositivo Android. +> Este comando só pode ser usado através da `adb shell`. +> Mais informações: . + +- Mostrar o tamanho da tela de um dispositivo Android: + +`wm {{size}}` + +- Mostrar a densidade de píxeis da tela de um dispositivo Android: + +`wm {{density}}` diff --git a/pages.pt_PT/common/alacritty.md b/pages.pt_PT/common/alacritty.md new file mode 100644 index 00000000000000..77e37f58a45392 --- /dev/null +++ b/pages.pt_PT/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Emulador de terminal multiplataforma acelerado por GPU. +> Mais informações: . + +- Abrir Alacritty numa nova janela: + +`alacritty` + +- Executar na directoria especificada: + +`alacritty --working-directory {{caminho/para/directoria}}` + +- Executar commando numa nova janela de Alacritty: + +`alacritty -e {{comando}}` + +- Definir caminho alternativo para o ficheiro de configuração (por omissão `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): + +`alacritty --config-file {{caminho/para/configuração.yml}}` + +- Executar com carregamento automático de configuração (pode ser definido por omissão em `alacritty.yml`): + +`alacritty --live-config-reload --config-file {{caminho/para/configuração.yml}}` diff --git a/pages.pt_PT/common/batch.md b/pages.pt_PT/common/batch.md index 0f85ac3923a7db..6f476d33f47b93 100644 --- a/pages.pt_PT/common/batch.md +++ b/pages.pt_PT/common/batch.md @@ -2,7 +2,7 @@ > Executar comandos num momento mais tarde quando a carga do sistema permitir. > O serviço atd (ou atrun) deve correr para atuais execuções. -> Mais informações: . +> Mais informações: . - Executar comandos da entrada padrão (premir `Ctrl + D` quando terminado): diff --git a/pages.pt_PT/common/bundler.md b/pages.pt_PT/common/bundler.md new file mode 100644 index 00000000000000..e0b87edf06956b --- /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/cd.md b/pages.pt_PT/common/cd.md index 1dc92e77bd7694..ca2bc8dc6a33e0 100644 --- a/pages.pt_PT/common/cd.md +++ b/pages.pt_PT/common/cd.md @@ -1,7 +1,7 @@ # cd > Mudar o diretório atual. -> Mais informações: . +> Mais informações: . - Ir para um dado diretório: diff --git a/pages.pt_PT/common/clamav.md b/pages.pt_PT/common/clamav.md new file mode 100644 index 00000000000000..137f37bf5765ad --- /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 00000000000000..69f53e4e0d4109 --- /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 00000000000000..eb78c6d9664cfc --- /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 00000000000000..6c548d0aa6bd38 --- /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 00000000000000..11e9764149735a --- /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 00000000000000..3c0af040528556 --- /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 00000000000000..278d85c10ef363 --- /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 00000000000000..afc1061f4f0ff9 --- /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 00000000000000..9a0661332b54ec --- /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 00000000000000..20baefabbafdd2 --- /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 00000000000000..b9e14e8199553b --- /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 00000000000000..a739ea447ef2c2 --- /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/history.md b/pages.pt_PT/common/history.md index 8afe731f6ffce1..d258a6f84cb779 100644 --- a/pages.pt_PT/common/history.md +++ b/pages.pt_PT/common/history.md @@ -1,6 +1,7 @@ # history > Histórico da linha de comandos. +> Mais informações: . - Mostrar o histórico da linha de comandos por ordem cronológica: @@ -16,4 +17,4 @@ - Mostrar as entradas do histórico da linha de comandos que correspondem a uma expressão regular: -`history | grep {{regex}}` +`history | grep {{expressao_regular}}` diff --git a/pages.pt_PT/common/hx.md b/pages.pt_PT/common/hx.md new file mode 100644 index 00000000000000..29928b5b10c9eb --- /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 00000000000000..6bbbfe1bf226cb --- /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 00000000000000..7d3c668055a7ae --- /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 00000000000000..1be4aa5adc14c8 --- /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 00000000000000..1ca4806b1c8c09 --- /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 00000000000000..bf294ffadb3c22 --- /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 00000000000000..86d220d6f3e371 --- /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 00000000000000..148e7641acafae --- /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 00000000000000..42ccc13304dd18 --- /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 00000000000000..dee9d6bcceb596 --- /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 00000000000000..db3c1343c50eb7 --- /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 00000000000000..ae429d3a10a0d5 --- /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 00000000000000..1493a3e239a58d --- /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 00000000000000..3aeb70a6de2a23 --- /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 00000000000000..b0bc373469ecb8 --- /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 00000000000000..b1f7b533b4b15a --- /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 00000000000000..772d759a6212ad --- /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 00000000000000..90b105e81ae003 --- /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 00000000000000..d5a2818ceda736 --- /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 00000000000000..771b16bfdf9940 --- /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 00000000000000..a5623ad3f2e6e8 --- /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 00000000000000..c7d67d577ad276 --- /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 00000000000000..46584e4cda1644 --- /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 00000000000000..faa733d768bb35 --- /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 f48bd165382f69..b9c5bff9f71569 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 00000000000000..9a4e0dfd6fb499 --- /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 00000000000000..d977bc5bf0b71f --- /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 00000000000000..f2b0163f192d9c --- /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 00000000000000..c23557a3856566 --- /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/xkill.md b/pages.pt_PT/common/xkill.md index e68be4546e07a2..a8bd0df21f2a0f 100644 --- a/pages.pt_PT/common/xkill.md +++ b/pages.pt_PT/common/xkill.md @@ -2,6 +2,7 @@ > Termina o cliente associado a um elemento gráfico. > Utilizado para forçar a terminação de processos que não respondem ou não apresentam botão "fechar". +> Mais informações: . - Ativar um cursor para fechar uma janela com o clique do botão esquerdo do rato (pressionar qualquer outro botão para cancelar): diff --git a/pages.pt_PT/common/xzcat.md b/pages.pt_PT/common/xzcat.md new file mode 100644 index 00000000000000..38b50ff9b18b2a --- /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/common/yt-dlp.md b/pages.pt_PT/common/yt-dlp.md new file mode 100644 index 00000000000000..a5e59f00204b78 --- /dev/null +++ b/pages.pt_PT/common/yt-dlp.md @@ -0,0 +1,37 @@ +# yt-dlp + +> Um fork do youtube-dl com funcionalidades e correções adicionais. +> Descarrega vídeos do YouTube e de outros websites. +> Mais informações: . + +- Descarregar um vídeo ou playlist (com as opções predefinidas): + +`yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- Descarregar um vídeo num formato específico, neste caso o melhor vídeo mp4 disponível (a predefinição é "bv\*+ba/b"): + +`yt-dlp --format "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- Extrair áudio de vídeos (requer o `ffmpeg` ou o `ffprobe`): + +`yt-dlp --extract-audio "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- Especificar o formato de áudio extraído (a predefinição é "best"): + +`yt-dlp --extract-audio --audio-format {{mp3}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- Especificar a qualidade do áudio extraído, entre 0 (melhor) e 10 (pior), sendo 5 a predefinição: + +`yt-dlp --extract-audio --audio-format {{mp3}} --audio-quality {{0}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- Descarregar todas as playlists de um canal ou utilizador do YouTube, mantendo cada playlist num diretório separado: + +`yt-dlp -o "{{%(uploader)s/%(playlist)s/%(indice_playlist)s - %(titulo)s.%(ext)s}}" "{{https://www.youtube.com/user/TheLinuxFoundation/playlists}}"` + +- Descarregar um curso do Udemy, mantendo cada capítulo num diretório em separado, dentro do diretório "MyVideos" na home do utilizador: + +`yt-dlp -u {{usuario}} -p {{palavra_passe}} -P "{{~/MyVideos}}" -o "{{%(playlist)s/%(numero_capitulo)s - %(capitulo)s/%(titulo)s.%(ext)s}}" "{{https://www.udemy.com/java-tutorial}}"` + +- Descarregar temporadas completas de séries, mantendo cada série e cada temporada num diretório separado, em C:\MyVideos: + +`yt-dlp -P "{{C:/MyVideos}}" -o "{{%(serie)s/%(numero_temporada)s - %(temporada)s/%(numero_episodio)s - %(episodio)s.%(ext)s}}" "{{https://videomore.ru/kino_v_detalayah/5_sezon/367617}}"` diff --git a/pages.pt_PT/linux/a2disconf.md b/pages.pt_PT/linux/a2disconf.md new file mode 100644 index 00000000000000..43e942627201ac --- /dev/null +++ b/pages.pt_PT/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Desactiva um ficheiro de configuração do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Desactiva um ficheiro de configuração: + +`sudo a2disconf {{ficheiro_de_configuração}}` + +- Desactiva um ficheiro de configuração, sem mostrar as mensagens informativas: + +`sudo a2disconf --quiet {{ficheiro_de_configuração}}` diff --git a/pages.pt_PT/linux/a2dismod.md b/pages.pt_PT/linux/a2dismod.md new file mode 100644 index 00000000000000..1dfd7901b33a5e --- /dev/null +++ b/pages.pt_PT/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Desactiva um módulo do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Desactiva um módulo: + +`sudo a2dismod {{módulo}}` + +- Desactiva um módulo, sem mostrar as mensagens informativas: + +`sudo a2dismod --quiet {{módulo}}` diff --git a/pages.pt_PT/linux/a2dissite.md b/pages.pt_PT/linux/a2dissite.md new file mode 100644 index 00000000000000..8bb9b453dd5adf --- /dev/null +++ b/pages.pt_PT/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Desactiva um host virtual do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Desactiva um host virtual: + +`sudo a2dissite {{virtual_host}}` + +- Desactiva um host virtual, sem mostrar as mensagens informativas: + +`sudo a2dissite --quiet {{virtual_host}}` diff --git a/pages.pt_PT/linux/a2enconf.md b/pages.pt_PT/linux/a2enconf.md new file mode 100644 index 00000000000000..796afa3da911bb --- /dev/null +++ b/pages.pt_PT/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Activa um ficheiro de configuração do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Activa um ficheiro de configuração: + +`sudo a2enconf {{ficheiro_de_configuração}}` + +- Activa um ficheiro de configuração, sem mostrar as mensagens informativas: + +`sudo a2enconf --quiet {{ficheiro_de_configuração}}` diff --git a/pages.pt_PT/linux/a2enmod.md b/pages.pt_PT/linux/a2enmod.md new file mode 100644 index 00000000000000..6c382aaaa5940d --- /dev/null +++ b/pages.pt_PT/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Activa um módulo do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Activa um módulo: + +`sudo a2enmod {{módulo}}` + +- Activa um módulo, sem mostrar as mensagens informativas: + +`sudo a2enmod --quiet {{módulo}}` diff --git a/pages.pt_PT/linux/a2ensite.md b/pages.pt_PT/linux/a2ensite.md new file mode 100644 index 00000000000000..3352939e5e4adc --- /dev/null +++ b/pages.pt_PT/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Activa um host virtual do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Activa um host virtual: + +`sudo a2ensite {{virtual_host}}` + +- Activa um host virtual, sem mostrar as mensagens informativas: + +`sudo a2ensite --quiet {{virtual_host}}` diff --git a/pages.pt_PT/linux/a2query.md b/pages.pt_PT/linux/a2query.md new file mode 100644 index 00000000000000..1d76e9bb49f4dd --- /dev/null +++ b/pages.pt_PT/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Mostra configurações runtime do Apache em distribuições baseadas em Debian. +> Mais informações: . + +- Lista módulos Apache activados: + +`sudo a2query -m` + +- Verifica de um módulo específico está instalado: + +`sudo a2query -m {{module_name}}` + +- Lista os hosts virtuais activados: + +`sudo a2query -s` + +- Mostra o módulo de multi processamento actualmente activado: + +`sudo a2query -M` + +- Mostra a versão do Apache: + +`sudo a2query -v` diff --git a/pages.pt_PT/linux/alternatives.md b/pages.pt_PT/linux/alternatives.md new file mode 100644 index 00000000000000..a46aa3ec4eefba --- /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/apt.md b/pages.pt_PT/linux/apt.md new file mode 100644 index 00000000000000..83cf7770b65f8c --- /dev/null +++ b/pages.pt_PT/linux/apt.md @@ -0,0 +1,28 @@ +# apt + +> Gestor de pacotes das distribuições baseadas em Debian. +> Mais informações: . + +- Actualiza a lista de pacotes disponíveis (recomenda-se executá-lo antes de outros comandos `apt`): + +`sudo apt update` + +- Pesquisa pacotes correspondentes ao critério de pesquisa: + +`apt search {{criterio_de_pesquisa}}` + +- Exibe as informações de um pacote: + +`apt show {{nome_do_pacote}}` + +- Instala um pacote ou actualiza-o para a versão mais recente: + +`sudo apt install {{nome_do_pacote}}` + +- Remove um pacote (Para remover os ficheiros de configuração deve-se usar a opção `purge` em vez de `remove`): + +`sudo apt remove {{nome_do_pacote}}` + +- Actualiza os pacotes instalados para as versões mais recentes: + +`sudo apt upgrade` diff --git a/pages.pt_PT/linux/archinstall.md b/pages.pt_PT/linux/archinstall.md new file mode 100644 index 00000000000000..6dd7665f2bbbde --- /dev/null +++ b/pages.pt_PT/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> Instalador com instruções para Arch Linux. +> Mais informações: . + +- Iniciar o instalador guiado: + +`archinstall` + +- Iniciar um instalador predefenido: + +`archinstall {{minimal|unattended}}` diff --git a/pages.pt_PT/linux/batcat.md b/pages.pt_PT/linux/batcat.md new file mode 100644 index 00000000000000..74c66857ffad30 --- /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 00000000000000..4dcde6a3013fa9 --- /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 00000000000000..e9899784c795b5 --- /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 00000000000000..4c2304fa5840a4 --- /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/gedit.md b/pages.pt_PT/linux/gedit.md index ed4c246b27a94b..ded4f57045a595 100644 --- a/pages.pt_PT/linux/gedit.md +++ b/pages.pt_PT/linux/gedit.md @@ -1,6 +1,7 @@ # gedit > Editor de texto para Desktop do GNOME. +> Mais informações: . - Abrir ficheiro de texto: 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 00000000000000..b079347d5df597 --- /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/man.md b/pages.pt_PT/linux/man.md new file mode 100644 index 00000000000000..383af4d1dd43e2 --- /dev/null +++ b/pages.pt_PT/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_PT/linux/megadl.md b/pages.pt_PT/linux/megadl.md new file mode 100644 index 00000000000000..f6fbaa623adf01 --- /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 00000000000000..fa6fa3baddd9bf --- /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 new file mode 100644 index 00000000000000..bfa853dd41e288 --- /dev/null +++ b/pages.pt_PT/linux/pacman.md @@ -0,0 +1,37 @@ +# pacman + +> Utilitário para gerir pacotes Arch Linux. +> Sub comandos como `pacman sync` tem a sua própria documentação. +> Mais informações: . + +- Sincronizar e actualizar todos os pacotes: + +`sudo pacman -Syu` + +- Instalar um novo pacote: + +`sudo pacman -S {{package_name}}` + +- Remover um pacote e todas as dependencias: + +`sudo pacman -Rs {{nome_do_pacote}}` + +- Procurar um pacote na base de dados por palavra chave ou expressão regular (regex): + +`pacman -Ss "{{search_pattern}}"` + +- Listar versão dos pactotes instalados: + +`pacman -Q` + +- Listar versão dos pactotes instalados explicitamente: + +`pacman -Qe` + +- Listar pacotes órfãos (instalados como dependencia mas não exigidos por nenhum pacote): + +`pacman -Qtdq` + +- Remover memória armazenada (cache) do `pacman`: + +`sudo pacman -Scc` diff --git a/pages.pt_PT/linux/ubuntu-bug.md b/pages.pt_PT/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..b918a80546081d --- /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/linux/xrdb.md b/pages.pt_PT/linux/xrdb.md new file mode 100644 index 00000000000000..b0c12c8d67697a --- /dev/null +++ b/pages.pt_PT/linux/xrdb.md @@ -0,0 +1,16 @@ +# xrdb + +> Utilitário de base de dados de recursos para servidor X window em sistemas tipo Unix. +> Mais informações: . + +- Iniciar `xrdb` em modo interactivo: + +`xrdb` + +- Carregar valores (p. ex. regras de estilo) de um ficheiro de recursos: + +`xrdb -load {{~/.Xresources}}` + +- Consultar base de dados de recursos e mostrar estado actual dos recursos: + +`xrdb -query` diff --git a/pages.pt_PT/osx/aa.md b/pages.pt_PT/osx/aa.md new file mode 100644 index 00000000000000..b3832b7cb8cef0 --- /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/arch.md b/pages.pt_PT/osx/arch.md new file mode 100644 index 00000000000000..f72c9ed89f425c --- /dev/null +++ b/pages.pt_PT/osx/arch.md @@ -0,0 +1,13 @@ +# arch + +> Mostra o nome da arquitetura do sistema, ou executa um comando utilizando uma arquitetura escolhida. +> Ver também `uname`. +> Mais informações: . + +- Mostra o nome da arquitetura do sistema: + +`arch` + +- Executa um comando utilizando a arquitetura x86_64: + +`arch -x86_64 {{comando}}` diff --git a/pages.pt_PT/osx/g[.md b/pages.pt_PT/osx/g[.md new file mode 100644 index 00000000000000..53cc73d0a602f4 --- /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 00000000000000..41ef4d3ea4f159 --- /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 00000000000000..bcc1949c450792 --- /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 00000000000000..fffc207ba43937 --- /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 00000000000000..ceaaff24744a47 --- /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 00000000000000..a0927b4c7bdc41 --- /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 00000000000000..b77a7ebb51f6a5 --- /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 00000000000000..d1286d77f53c11 --- /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 00000000000000..8f5e3b453e9794 --- /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 00000000000000..dfe12067d75ecf --- /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 00000000000000..48b34bafde7219 --- /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 00000000000000..38c0e590dd3b49 --- /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 00000000000000..beb1cb01fff7d2 --- /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 00000000000000..9a440aac2a6bf1 --- /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 00000000000000..267dce803f7181 --- /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 00000000000000..b044e764ceaa7d --- /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 00000000000000..b731d179f5b8f8 --- /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 00000000000000..e45fd63c9b7f16 --- /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 00000000000000..9d7e82ee10f869 --- /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 00000000000000..527d12af33ad07 --- /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 00000000000000..ce067585fedd2d --- /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 00000000000000..9e7b5124ddc9b2 --- /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 00000000000000..507fb792c3e974 --- /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 00000000000000..d04f183becb67a --- /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 00000000000000..5d284c1f9df0bd --- /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 00000000000000..f2735ad3199dab --- /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 00000000000000..457563c7bd045c --- /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 00000000000000..13cb7cb51a58d8 --- /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 00000000000000..e86bea9acab7e4 --- /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 00000000000000..1779c5641f0238 --- /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 00000000000000..7b943a36a71ba1 --- /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 00000000000000..c2d5b0e7aafa36 --- /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 00000000000000..f652d011fbc599 --- /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 00000000000000..4e0d94c699bb11 --- /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 00000000000000..1e4df6c79e4340 --- /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 00000000000000..9a28adf996090a --- /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 00000000000000..37447775d6057c --- /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 00000000000000..7343d86c37b4e6 --- /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 00000000000000..cbab70bceb50b3 --- /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 00000000000000..6d6c88b4c82451 --- /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 00000000000000..0bae06941b6431 --- /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 00000000000000..5463b424efacaf --- /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 00000000000000..d7d7cf5042e5a0 --- /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 00000000000000..681c85d25be497 --- /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 00000000000000..3de2e1090e507b --- /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 00000000000000..0af29a680e1d1b --- /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 00000000000000..bfe5edbda31270 --- /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 00000000000000..e12a4db14e3e72 --- /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 00000000000000..03d713452fc34b --- /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 00000000000000..e6509aefbf83cf --- /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 00000000000000..9d5a1715847ecc --- /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 00000000000000..1fd5426970123b --- /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 00000000000000..fa173548f80351 --- /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 00000000000000..171fc7e1e4651d --- /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 00000000000000..c1274d43b558d5 --- /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 00000000000000..263a806a3a3047 --- /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 00000000000000..c9df1521c9fde4 --- /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 00000000000000..a9cd255b3d04e9 --- /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 00000000000000..a23b0917ff07e1 --- /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 00000000000000..12bc82393af8bc --- /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 00000000000000..675290cc31ad13 --- /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 00000000000000..6382f6c59005f5 --- /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 00000000000000..4d8dfcbaa8852e --- /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 00000000000000..b5895361f99618 --- /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 00000000000000..42247a419a3a97 --- /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 00000000000000..8add6449cda925 --- /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 00000000000000..a32ed066a729a8 --- /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 00000000000000..c3b6fa04c2508b --- /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 00000000000000..341a18becf61c4 --- /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 00000000000000..b20a237af81720 --- /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 00000000000000..b5022b9d9600d0 --- /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 00000000000000..e9d7ac1a27b1da --- /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 00000000000000..0a160257059419 --- /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 00000000000000..5d26b0d7cb1686 --- /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 00000000000000..1f1814b58096fc --- /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 00000000000000..cd4bfc6c3f8577 --- /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 00000000000000..c6f08271270362 --- /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 00000000000000..050611f4e3f598 --- /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 00000000000000..e01a7b1abe1e56 --- /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 00000000000000..4a34bb55b673c2 --- /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 00000000000000..9adfcb46446fdd --- /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 00000000000000..8427f58487fe54 --- /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 00000000000000..53a01bc32d5f1e --- /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 00000000000000..86704dcc65921a --- /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 00000000000000..f3852e6373d0be --- /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 00000000000000..f65ab19601bb0f --- /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 00000000000000..2df23397a12703 --- /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 00000000000000..051ecfc3bab44d --- /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 00000000000000..0bff1520cc653d --- /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 00000000000000..dc73a7e00b3e0b --- /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 00000000000000..d6fb5eda31b90b --- /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 00000000000000..4041e365433589 --- /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 00000000000000..562c1712c33fb6 --- /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 00000000000000..86ea18f125bc89 --- /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 00000000000000..6c7b19c487f40e --- /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 00000000000000..c8ac034dd73d4c --- /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 00000000000000..91255b66ec2363 --- /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 00000000000000..c3d634d218db20 --- /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 00000000000000..c3d8204da95190 --- /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 00000000000000..385b4974225edd --- /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 00000000000000..0378b62e1e7752 --- /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 00000000000000..84f260026efe34 --- /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 00000000000000..2fb343b190f0fc --- /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 00000000000000..f26bf0ca762d5c --- /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 00000000000000..7aa5df89b0ab27 --- /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 00000000000000..8eff67a51dcf50 --- /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 00000000000000..6b6ecd1689ba74 --- /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 00000000000000..cd8b14a907c598 --- /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 00000000000000..900b958cbab6eb --- /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 00000000000000..42635b24f7c937 --- /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 00000000000000..13518fa3e79b68 --- /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 00000000000000..57afeb2721d818 --- /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 00000000000000..45da317a78ce64 --- /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 00000000000000..6a38ce4993df67 --- /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 00000000000000..cbd02530e0717a --- /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 00000000000000..d8dba858c6e352 --- /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 00000000000000..ac472d5b8e7d3c --- /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 00000000000000..fd8bbd0c8043b0 --- /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 00000000000000..6743026ad11a88 --- /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 00000000000000..0c87109e7b3416 --- /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 00000000000000..886c4db12b760d --- /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 00000000000000..b2be9349840304 --- /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 00000000000000..43488db7be8d66 --- /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 00000000000000..4bdd26c35e9a30 --- /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 00000000000000..32189fc2ef79d2 --- /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 00000000000000..adfeef7d5f0c26 --- /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 00000000000000..395b12ed5fb206 --- /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 00000000000000..9390999677526c --- /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 00000000000000..be614592667a56 --- /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 00000000000000..2598fb5c7ddbc3 --- /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 00000000000000..d5ad0f2a186f9f --- /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 00000000000000..7e44225b651ca0 --- /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 00000000000000..ba90319995047d --- /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 00000000000000..516e0b23bc0fa4 --- /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 00000000000000..5ba4f0f4b6ef99 --- /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 00000000000000..d71519e23037d2 --- /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 00000000000000..3ca8bf2535395e --- /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 00000000000000..17c9558d32df33 --- /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 00000000000000..0dcf99f3a5aaa8 --- /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 00000000000000..bb3591fa5374ed --- /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/osx/readlink.md b/pages.pt_PT/osx/readlink.md new file mode 100644 index 00000000000000..2cac4c5c260662 --- /dev/null +++ b/pages.pt_PT/osx/readlink.md @@ -0,0 +1,8 @@ +# readlink + +> Segue um link simbólico e obtêm a sua informação. +> Mais informações: . + +- Mostra o caminho absoluto apontado por um link simbólico: + +`readlink {{caminho/para/link_simbolico}}` diff --git a/pages.pt_PT/osx/rename.md b/pages.pt_PT/osx/rename.md new file mode 100644 index 00000000000000..93571e9060814a --- /dev/null +++ b/pages.pt_PT/osx/rename.md @@ -0,0 +1,8 @@ +# rename + +> Altera o nome de um ficheiro ou grupo de ficheiros com uma expressão regular. +> Mais informações: . + +- Altera "antes" para "depois" o nome dos ficheiros especificados: + +`rename 's/{{antes}}/{{depois}}/' {{*.txt}}` diff --git a/pages.pt_PT/osx/route.md b/pages.pt_PT/osx/route.md new file mode 100644 index 00000000000000..cd7825cbf49792 --- /dev/null +++ b/pages.pt_PT/osx/route.md @@ -0,0 +1,29 @@ +# route + +> Alteração manual da tabela de rotas. +> Necessita de root. +> Mais informações: . + +- Adiciona uma rota para um destino passando por um gateway: + +`sudo route add {{endereco_ip_destino}} {{endereco_gateway}}` + +- Adiciona uma rota para um rede /24 passando por um gateway: + +`sudo route add {{endereco_ip_subnet}}/24 {{endereco_gateway}}` + +- Corre em modo de teste (não realiza alterações, apenas a mostra): + +`sudo route -t add {{endereco_ip_destino}}/24 {{endereco_gateway}}` + +- Remove todas as rotas: + +`sudo route flush` + +- Remove uma rota especifica: + +`sudo route delete {{endereco_ip_destino}}/24` + +- Procura e mostra a rota para um destino (nome da máquina ou endereço IP): + +`sudo route get {{destino}}` diff --git a/pages.pt_PT/osx/screencapture.md b/pages.pt_PT/osx/screencapture.md new file mode 100644 index 00000000000000..2dc6729e88dfcb --- /dev/null +++ b/pages.pt_PT/osx/screencapture.md @@ -0,0 +1,28 @@ +# screencapture + +> Utilitário para fazer capturas de ecrã e gravações de ecrã. +> Mais informações: . + +- Faz um captura de ecrã e guarda-a num ficheiro: + +`screencapture {{caminho/para/ficheiro.png}}` + +- Faz um captura de ecrã incluindo o curso do rato e guarda-a num ficheiro: + +`screencapture -C {{caminho/para/ficheiro.png}}` + +- Faz um captura de ecrã e mostra-a em Pré-visualização, em vez de a guardar: + +`screencapture -P` + +- Faz uma captura de ecrã de uma área retangular selecionada: + +`screencapture -i {{caminho/para/ficheiro.png}}` + +- Faz uma captura de ecrã de uma área depois de um intervalo de tempo: + +`screencapture -T {{segundos}} {{caminho/para/ficheiro.png}}` + +- Faz uma gravação de ecrã guardando-a para um ficheiro: + +`screencapture -v {{caminho/para/ficheiro.mp4}}` diff --git a/pages.pt_PT/osx/scutil.md b/pages.pt_PT/osx/scutil.md new file mode 100644 index 00000000000000..b76658e34c98bc --- /dev/null +++ b/pages.pt_PT/osx/scutil.md @@ -0,0 +1,29 @@ +# scutil + +> Gere parametros da configuração do sistema. +> Necessita de permissões de root para modificar configurações. +> Mais informações: . + +- Mostra as configurações de DNS: + +`scutil --dns` + +- Mostra as configurações de proxy: + +`scutil --proxy` + +- Obtêm o nome do computador: + +`scutil --get ComputerName` + +- Altera o nome do computador: + +`sudo scutil --set ComputerName {{nome_computador}}` + +- Obtêm o nome de rede do computador: + +`scutil --get HostName` + +- Altera o nome de rede do computador: + +`scutil --set HostName {{nome_rede_computador}}` diff --git a/pages.pt_PT/osx/softwareupdate.md b/pages.pt_PT/osx/softwareupdate.md new file mode 100644 index 00000000000000..2e70a38015ab6b --- /dev/null +++ b/pages.pt_PT/osx/softwareupdate.md @@ -0,0 +1,20 @@ +# softwareupdate + +> Ferramenta de atualização de aplicativos da App Store via linha de comandos. +> Mais informações: . + +- Lista todos as atualizações disponíveis: + +`softwareupdate -l` + +- Descarrega e instala todas as atualizações disponíveis: + +`softwareupdate -ia` + +- Descarrega e instala todas as atualizações recomendadas: + +`softwareupdate -ir` + +- Descarrega e instala um aplicativo específico: + +`softwareupdate -i {{nome_atulizacao}}` diff --git a/pages.pt_PT/osx/spotify.md b/pages.pt_PT/osx/spotify.md new file mode 100644 index 00000000000000..e36aaa248c74af --- /dev/null +++ b/pages.pt_PT/osx/spotify.md @@ -0,0 +1,28 @@ +# spotify + +> Interface de linha de comando para Spotify. +> Mais informações: . + +- Procura uma música por nome e reprouz: + +`spotify play {{nome_musica}}` + +- Procura uma lista de reprodução por nome e reproduz: + +`spotify play list {{nome_lista_reproducao}}` + +- Pausa (ou ativa) a reprodução: + +`spotify pause` + +- Avança para a próxima música na lista de reprodução: + +`spotify next` + +- Altera o volume: + +`spotify vol {{up|down|value}}` + +- Mostra estado da lista de reprodução e detalhes da música: + +`spotify status` diff --git a/pages.pt_PT/osx/systemsetup.md b/pages.pt_PT/osx/systemsetup.md new file mode 100644 index 00000000000000..1aa6ff99a6dc24 --- /dev/null +++ b/pages.pt_PT/osx/systemsetup.md @@ -0,0 +1,24 @@ +# systemsetup + +> Configura as definições de Preferencias do Sistema da máquina. +> Mais informações: . + +- Ativa autenticação remota (SSH): + +`systemsetup -setremotelogin on` + +- Ativa o serviço de hora de rede com um fuso horário e servidor específico: + +`systemsetup -settimezone {{Europe/Lisbon}} -setnetworktimeserver {{2.pt.pool.ntp.org}} -setusingnetworktime on` + +- Colaca a máquina sem dormir, reiniciando automaticamente em falta de energia ou pânico do núcleo do sistema: + +`systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze on` + +- Lista os discos de inicialização validos: + +`systemsetup -liststartupdisks` + +- Especifica um novo disco de inicialização: + +`systemsetup -setstartupdisk {{caminho}}` diff --git a/pages.pt_PT/osx/xed.md b/pages.pt_PT/osx/xed.md new file mode 100644 index 00000000000000..4263488c6434e8 --- /dev/null +++ b/pages.pt_PT/osx/xed.md @@ -0,0 +1,16 @@ +# xed + +> Abre ficheiros para editar no Xcode. +> Mais informações: . + +- Abre um ficheiro no Xcode: + +`xed {{ficheiro1}}` + +- Abre um ou mais ficheiros no Xcode, cria o ficheiro se o mesmo não existir: + +`xed -c {{ficheiro1}}` + +- Abre um ficheiro no Xcode e foca na linha 88: + +`xed -l 88 {{ficheiro}}` diff --git a/pages.pt_PT/osx/xip.md b/pages.pt_PT/osx/xip.md new file mode 100644 index 00000000000000..a15de90ff2ff86 --- /dev/null +++ b/pages.pt_PT/osx/xip.md @@ -0,0 +1,9 @@ +# xip + +> Cria ou extrai ficheiros comprimido de um arquivo xip. +> Apenas arquivos criados pela Apple são confiáveis, dado isto esta ferramenta não deve ser utilizada para criar arquivos. +> Mais informações: . + +- Extrai o arquivo para o diretório de trabalho atual: + +`xip --expand {{caminho/para/ficheiro.xip}}` diff --git a/pages.pt_PT/windows/chrome.md b/pages.pt_PT/windows/chrome.md new file mode 100644 index 00000000000000..bf9682965a7c8f --- /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 00000000000000..dbdac1b8801321 --- /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 00000000000000..f7f51e97869e7b --- /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 00000000000000..041349238a819d --- /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 00000000000000..cc11b644ff5211 --- /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 00000000000000..a2274b4c24f590 --- /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 00000000000000..c8268c612ceea9 --- /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 00000000000000..a3a73539926bb4 --- /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 00000000000000..b48ccde76c00da --- /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 00000000000000..d1c7e64efe5d7a --- /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 00000000000000..a455bf59b52c33 --- /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.ro/common/todoist.md b/pages.ro/common/todoist.md new file mode 100644 index 00000000000000..869856d9533d73 --- /dev/null +++ b/pages.ro/common/todoist.md @@ -0,0 +1,28 @@ +# todoist + +> Acest program îți permite să folosești Todoist din linia de comandă. +> Mai multe informații: . + +- Adaugă o sarcină: + +`todoist add "{{o_sarcină}}"` + +- Adaugă o sarcină cu prioritate ridicată cu o etichetă, proiect și dată scadentă: + +`todoist add "{{o_sarcină}}" --priority {{1}} --label-ids "{{idul_etichetei}}" --project-name "{{numele_proiectului}}" --date "{{tmr 9am}}"` + +- Adaugă o sarcină cu prioritate ridicată cu o etichetă, proiect și dată scadentă, folosind modul rapid: + +`todoist quick '#{{numele_proiectului}} "{{tmr 9am}}" p{{1}} {{o_sarcină}} @{{numele_etichetei}}'` + +- Enumeră toate sarcinile cu cap de tabel și culori: + +`todoist --header --color list` + +- Enumeră toate sarcinile cu prioritate ridicată: + +`todoist list --filter p{{1}}` + +- Enumeră toate sarcinile cu prioritate ridicată de astăzi care au eticheta specificată: + +`todoist list --filter '(@{{numele_etichetei}} | {{today}}) & p{{1}}'` diff --git a/pages.ru/android/am.md b/pages.ru/android/am.md new file mode 100644 index 00000000000000..60677e458353e5 --- /dev/null +++ b/pages.ru/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}}` + +- Преобразовать намерение в URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.ru/android/bugreport.md b/pages.ru/android/bugreport.md new file mode 100644 index 00000000000000..c46fc7f13c7d96 --- /dev/null +++ b/pages.ru/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Показать отчет об ошибках Android. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Показать полный отчет об ошибках на устройстве Android: + +`bugreport` diff --git a/pages.ru/android/bugreportz.md b/pages.ru/android/bugreportz.md new file mode 100644 index 00000000000000..32bb034034b0a1 --- /dev/null +++ b/pages.ru/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Создать заархивированный отчет об ошибках Android. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Создать полный заархивированный отчет об ошибках на устройстве Android: + +`bugreportz` + +- Показать ход выполнения операции `bugreportz`: + +`bugreportz -p` + +- Показать версию `bugreportz`: + +`bugreportz -v` + +- Показать справку: + +`bugreportz -h` diff --git a/pages.ru/android/cmd.md b/pages.ru/android/cmd.md new file mode 100644 index 00000000000000..0699cf5802b3ee --- /dev/null +++ b/pages.ru/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Сервис менеджер Android. +> Больше информации: . + +- Список всех запущенных сервисов: + +`cmd -l` + +- Вызов конкретного сервиса: + +`cmd {{alarm}}` + +- Вызов сервиса с аргументами: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.ru/android/dalvikvm.md b/pages.ru/android/dalvikvm.md new file mode 100644 index 00000000000000..4be517658c6aaa --- /dev/null +++ b/pages.ru/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Виртуальная машина Android Java. +> Больше информации: . + +- Запустить Java-программу: + +`dalvikvm -classpath {{путь/к/файлу.jar}} {{classname}}` diff --git a/pages.ru/android/dumpsys.md b/pages.ru/android/dumpsys.md new file mode 100644 index 00000000000000..771e7a14341de7 --- /dev/null +++ b/pages.ru/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Предоставляет информацию о системных службах Android. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Получить диагностическу для всех системных сервисов: + +`dumpsys` + +- Получить диагностическу для конкретной системного сервисв: + +`dumpsys {{сервис}}` + +- Список всех сервисов доступных через `dumpsys`: + +`dumpsys -l` + +- Задать специфичные для сервиса аргументы: + +`dumpsys {{сервис}} -h` + +- Исключить конкретный сервис из диагностики: + +`dumpsys --skip {{сервис}}` + +- Задать время ожидания в секундах (по умолчанию 10 сек): + +`dumpsys -t {{секунды}}` diff --git a/pages.ru/android/getprop.md b/pages.ru/android/getprop.md new file mode 100644 index 00000000000000..e1a3270b70212f --- /dev/null +++ b/pages.ru/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Показывает информацию о характеристиках системы Android. +> Больше информации: . + +- Показать информацию о характеристиках системы Android: + +`getprop` + +- Показать информации о конкретной характеристике: + +`getprop {{prop}}` + +- Показать на уровне SDK API: + +`getprop {{ro.build.version.sdk}}` + +- Показать версию Android: + +`getprop {{ro.build.version.release}}` + +- Показать модель устройства Android: + +`getprop {{ro.vendor.product.model}}` + +- Показать статус блокировки OEM: + +`getprop {{ro.oem_unlock_supported}}` + +- Показать MAC адрес Wi-Fi карты Android: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.ru/android/input.md b/pages.ru/android/input.md new file mode 100644 index 00000000000000..f3258e6b876c89 --- /dev/null +++ b/pages.ru/android/input.md @@ -0,0 +1,25 @@ +# input + +> Отправить коды событий или жесты сенсорного экрана на устройство Android. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Отправить код события для одного символа на устройство Android: + +`input keyevent {{код_события}}` + +- Отправить текст на устройство Android (`%s` означает пробел): + +`input text "{{текст}}"` + +- Отправить одно нажатие на экран на устройство Android: + +`input tap {{х_позиция}} {{y_позиция}}` + +- Отправить жест смахивания на устройство Android: + +`input swipe {{x_начало}} {{y_начало}} {{x_конец}} {{y_конец}} {{продолжительность_в_мс}}` + +- Отправить длинное нажатие на экран на устройство Android с помощью жеста смахивания: + +`input swipe {{x_position}} {{y_position}} {{x_position}} {{y_pos}} {{продолжительность_в_мс}}` diff --git a/pages.ru/android/logcat.md b/pages.ru/android/logcat.md new file mode 100644 index 00000000000000..a302ce43c4bd7e --- /dev/null +++ b/pages.ru/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Дамп лог (журнал) системных сообщений, включая трассировку стека при возникновении ошибки и информационные сообщения, регистрируемые приложениями. +> Больше информации: . + +- Показать системные логи: + +`logcat` + +- Записать системные логи в файл: + +`logcat -f {{путь/до/файла}}` + +- Показать строки, соответствующие регулярному выражению: + +`logcat --regex {{регулярное_выражение}}` diff --git a/pages.ru/android/pkg.md b/pages.ru/android/pkg.md new file mode 100644 index 00000000000000..85d42e5c5f6a0c --- /dev/null +++ b/pages.ru/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Утилита управления пакетами для Termux. +> Больше информации: . + +- Обновить все установленные пакеты: + +`pkg upgrade` + +- Установить пакет: + +`pkg install {{пакет}}` + +- Удалить пакет: + +`pkg uninstall {{пакет}}` + +- Переустановить пакет: + +`pkg reinstall {{пакет}}` + +- Поиск пакета: + +`pkg search {{пакет}}` diff --git a/pages.ru/android/pm.md b/pages.ru/android/pm.md new file mode 100644 index 00000000000000..abc24a0efffc27 --- /dev/null +++ b/pages.ru/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.ru/android/screencap.md b/pages.ru/android/screencap.md new file mode 100644 index 00000000000000..18efbdae36a4ed --- /dev/null +++ b/pages.ru/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Сделать снимок экрана мобильного дисплея. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Сделать снимок экрана: + +`screencap {{путь/к/файлу}}` diff --git a/pages.ru/android/settings.md b/pages.ru/android/settings.md new file mode 100644 index 00000000000000..5711470fee4dd2 --- /dev/null +++ b/pages.ru/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Получить информацию об операционной системе Android. +> Больше информации: . + +- Показать список настроек в `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.ru/android/wm.md b/pages.ru/android/wm.md new file mode 100644 index 00000000000000..dec14ff16b7b23 --- /dev/null +++ b/pages.ru/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Показать информацию об экране Android-устройства. +> Эту команду можно использовать только через `adb shell`. +> Больше информации: . + +- Показать физический размер экрана Android-устройства: + +`wm {{size}}` + +- Показать физическую плотность экрана Android-устройства: + +`wm {{density}}` diff --git a/pages.ru/common/7z.md b/pages.ru/common/7z.md index edfb7b2b00358a..5e62639ef9af83 100644 --- a/pages.ru/common/7z.md +++ b/pages.ru/common/7z.md @@ -1,36 +1,36 @@ # 7z > Архиватор файлов с высокой степенью сжатия. -> Больше информации: . +> Больше информации: . -- Архивировать файл или папку: +- Архивировать ([a]rchive) файл или папку: -`7z a {{архив.7z}} {{путь/до/файла_или_папки}}` +`7z a {{путь/до/архива.7z}} {{путь/до/файла_или_папки}}` -- Зашифровать существующий архив (включая заголовки): +- Зашифровать существующий архив (включая имена файлов): -`7z a {{зашифрованный.7z}} -p{{пароль}} -mhe=on {{архив.7z}}` +`7z a {{путь/до/зашифрованного_архива.7z}} -p{{пароль}} -mhe=on {{путь/до/архива.7z}}` -- Распаковать существующий архив 7z с оригинальной структурой папок: +- Распаковать (e[x]tract) существующий архив, сохраняя оригинальную структуру папок: -`7z x {{архив.7z}}` +`7z x {{путь/до/архива.7z}}` -- Распаковать архив в нужную папку: +- Распаковать (e[x]tract) архив в нужную папку: -`7z x {{архив.7z}} -o{{путь/до/папки}}` +`7z x {{путь/до/архива.7z}} -o{{путь/до/папки}}` -- Распаковать архив в stdout: +- Распаковать (e[x]tract) архив в stdout: -`7z x {{архив.7z}} -so` +`7z x {{путь/до/архива.7z}} -so` -- Архивировать, используя определённый тип архива: +- Архивировать ([a]rchive), используя определённый тип архива: -`7z a -t{{zip|gzip|bzip2|tar}} {{архив.7z}} {{путь/до/файла_или_папки}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{путь/до/архива.7z}} {{путь/до/файла_или_папки}}` -- Вывести вписок всех доступных типов архивов: +- Вывести ([l]ist) содержимое архива: -`7z i` +`7z l {{путь/до/архива.7z}}` -- Вывести список файлов и папок в архиве: +- Вывести список всех доступных типов архивов: -`7z l {{архив.7z}}` +`7z i` diff --git a/pages.ru/common/7za.md b/pages.ru/common/7za.md index 90738800f9ebb2..75f8a5c86df0dc 100644 --- a/pages.ru/common/7za.md +++ b/pages.ru/common/7za.md @@ -1,25 +1,37 @@ # 7za > Архиватор файлов с высокой степенью сжатия. -> Автономная версия `7z` с поддержкой меньшего количества типов архивов -> Больше информации: . +> То же, что и `7z`, за исключением того, что поддерживает меньшее количество типов файлов, но является кроссплатформенным. +> Больше информации: . -- Архивировать файл или папку: +- Архивировать ([a]rchive) файл или папку: -`7za a {{архив.7z}} {{путь/до/файла_или_папки}}` +`7za a {{путь/до/архива.7z}} {{путь/до/файла_или_папки}}` -- Распаковать существующий архив 7z с оригинальной структурой папок: +- Зашифровать существующий архив (включая имена файлов): -`7za x {{архив.7z}}` +`7za a {{путь/до/зашифрованного_архива.7z}} -p{{пароль}} -mhe=on {{путь/до/архива.7z}}` -- Архивировать, используя определённый тип архива: +- Распаковать (e[x]tract) существующий архив, сохраняя оригинальную структуру папок: -`7za a -t{{zip|gzip|bzip2|tar}} {{архив.7z}} {{путь/до/файла_или_папки}}` +`7za x {{путь/до/архива.7z}}` -- Вывести вписок всех доступных типов архивов: +- Распаковать (e[x]tract) архив в нужную папку: -`7za i` +`7za x {{путь/до/архива.7z}} -o{{путь/до/папки}}` + +- Распаковать (e[x]tract) архив в stdout: + +`7za x {{путь/до/архива.7z}} -so` + +- Архивировать ([a]rchive), используя определённый тип архива: -- Вывести список файлов и папок в архиве: +`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{путь/до/архива.7z}} {{путь/до/файла_или_папки}}` -`7za l {{архив.7z}}` +- Вывести ([l]ist) содержимое архива: + +`7za l {{путь/до/архива.7z}}` + +- Вывести список всех доступных типов архивов: + +`7za i` diff --git a/pages.ru/common/7zr.md b/pages.ru/common/7zr.md index 93414699298fe9..b7d09b1341363a 100644 --- a/pages.ru/common/7zr.md +++ b/pages.ru/common/7zr.md @@ -1,17 +1,33 @@ # 7zr > Архиватор файлов с высокой степенью сжатия. -> Автономная версия `7z`, которая поддерживает только файлы .7z. -> Больше информации: . +> То же, что и `7z`, но поддерживает только файлы `.7z`. +> Больше информации: . -- Архивировать файл или папку: +- Архивировать ([a]rchive) файл или папку: -`7zr a {{архив.7z}} {{путь/до/файла_или_папки}}` +`7zr a {{путь/до/архива.7z}} {{путь/до/файла_или_папки}}` -- Распаковать существующий архив 7z с оригинальной структурой папок: +- Зашифровать существующий архив (включая имена файлов): -`7zr x {{архив.7z}}` +`7zr a {{путь/до/зашифрованного_архива.7z}} -p{{пароль}} -mhe=on {{путь/до/архива.7z}}` -- Вывести список файлов и папок в архиве: +- Распаковать (e[x]tract) существующий архив, сохраняя оригинальную структуру папок: -`7zr l {{архив.7z}}` +`7zr x {{путь/до/архива.7z}}` + +- Распаковать (e[x]tract) архив в нужную папку: + +`7zr x {{путь/до/архива.7z}} -o{{путь/до/папки}}` + +- Распаковать (e[x]tract) архив в stdout: + +`7zr x {{путь/до/архива.7z}} -so` + +- Вывести ([l]ist) содержимое архива: + +`7zr l {{путь/до/архива.7z}}` + +- Вывести список всех доступных типов архивов: + +`7zr i` diff --git a/pages.ru/common/aapt.md b/pages.ru/common/aapt.md index 9dd4b4bc2b266e..d847aabc97ee2c 100644 --- a/pages.ru/common/aapt.md +++ b/pages.ru/common/aapt.md @@ -2,6 +2,7 @@ > Утилита для упаковки ресурсов для Android. > Компилирует и упаковывает ресурсы приложений Android. +> Больше информации: . - Вывести список файлов содержащихся в APK-архиве: diff --git a/pages.ru/common/ack.md b/pages.ru/common/ack.md index 83c9e0d2a67e64..877bddb0578a43 100644 --- a/pages.ru/common/ack.md +++ b/pages.ru/common/ack.md @@ -1,32 +1,37 @@ # ack > Утилита для поиска, подобная grep, оптимизировання для программистов. -> Больше информации: . +> Смотри также: `rg`, которая гораздо быстрее. +> Больше информации: . -- Найти файлы, содержащие "foo": +- Найти файлы, содержащие строку или регулярное выражение, рекурсивно в текущей директории: -`ack {{foo}}` +`ack "{{шаблон_поиска}}"` -- Найти файлы заданного типа: +- Искать по шаблону без учёта регистра: -`ack --ruby {{foo}}` +`ack --ignore-case "{{шаблон_поиска}}"` -- Подсчитать общее число совпадений для термина "foo": +- Искать строки, соответствующие шаблону, печатая только ([o]nly) совпавший текст, а не остальную часть строки: -`ack -ch {{foo}}` +`ack -o "{{шаблон_поиска}}"` -- Показать имен файлов, содержащие "foo" и число совпадений в каждом файле: +- Ограничить поиск только файлами определённого типа: -`ack -cl {{foo}}` +`ack --type={{ruby}} "{{шаблон_поиска}}"` -- Поиск заданной строки в файле: +- Не искать в файлах определённого типа: -`ack bar "{{foo bar}}" {{путь/до/файла}}` +`ack --type=no{{ruby}} "{{шаблон_поиска}}"` -- Поиск в файле по заданному регулярному выражению: +- Подсчитать общее количество найденных совпадений: -`ack bar "{{[bB]ar \d+}}" {{путь/до/файла}}` +`ack --count --no-filename "{{шаблон_поиска}}"` -- Вывести список всех допустимых типов: +- Вывести только имена файлов и количество совпадений для каждого файла: + +`ack --count --files-with-matches "{{шаблон_поиска}}"` + +- Вывести все значения, которые можно использовать с `--type`: `ack --help-types` diff --git a/pages.ru/common/adb-install.md b/pages.ru/common/adb-install.md index 92dd149287d777..5f544463f7e9a8 100644 --- a/pages.ru/common/adb-install.md +++ b/pages.ru/common/adb-install.md @@ -1,16 +1,24 @@ # adb install -> Android Debug Bridge Install: Установка пакетов на эмулятор Android или подключенное устройство Android. +> Android Debug Bridge Install: Установка пакетов на эмулятор Android или подключённое устройство Android. > Больше информации: . - Установить приложение Android на эмулятор/устройство: `adb install {{путь/до/файла.apk}}` +- Установить приложение Android на конкретный эмулятор/устройство (отменяет использование `$ANDROID_SERIAL`): + +`adb -s {{серийный_номер}} install {{путь/до/файла.apk}}` + - Переустановить существующее приложение, оставив его данные: `adb install -r {{путь/до/файла.apk}}` +- Установить приложение Android, разрешив понижение версии (только для отлаживаемых пакетов): + +`adb install -d {{путь/до/файла.apk}}` + - Дать все разрешения, перечисленные в манифесте приложения: `adb install -g {{путь/до/файла.apk}}` diff --git a/pages.ru/common/adb.md b/pages.ru/common/adb.md index d90904f7bbd4b3..d25c9bd4448839 100644 --- a/pages.ru/common/adb.md +++ b/pages.ru/common/adb.md @@ -1,6 +1,7 @@ # adb > Android Debug Bridge: управление запущенным эмулятором Android или подключенным устройством Android. +> Некоторые подкоманды, такие как `adb shell`, имеют собственную документацию по использованию. > Больше информации: . - Проверить, запущен ли процесс сервера adb и запустить его: diff --git a/pages.ru/common/alias.md b/pages.ru/common/alias.md new file mode 100644 index 00000000000000..4c51b9543a4fcc --- /dev/null +++ b/pages.ru/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> Создает псевдонимы -- слова, которые заменяются командой. +> Срок действия псевдонима истекает с окончанием текущей сессии командной строки, если только не определить его в конфигурационном файле, например: `~/.bashrc`. +> Больше информации: . + +- Вывести список всех псевдонимов: + +`alias` + +- Создать типовой псевдоним: + +`alias {{псевдоним}}="{{команда}}"` + +- Вывести команду сопоставленную с данным псевдонимом: + +`alias {{псевдоним}}` + +- Удалить псевдоним: + +`unalias {{псевдоним}}` + +- Превратить `rm` в интерактивную команду: + +`alias {{rm}}="{{rm --interactive}}"` + +- Превратить `la` в ссылку на `ls --all`: + +`alias {{la}}="{{ls --all}}"` diff --git a/pages.ru/common/asciidoctor.md b/pages.ru/common/asciidoctor.md new file mode 100644 index 00000000000000..576dcf21bf0a6b --- /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/bg.md b/pages.ru/common/bg.md new file mode 100644 index 00000000000000..b1a7742a9e28bb --- /dev/null +++ b/pages.ru/common/bg.md @@ -0,0 +1,12 @@ +# bg + +> Возобновляет работу приостановленного задания (например, с помощью `Ctrl + Z`), и оставляет его работать в фоне. +> Больше информации: . + +- Возобновить работу последнего приостановленного задания и продолжить его выполнение в фоне: + +`bg` + +- Возобновить указанное задание (используйте `jobs -l`, чтобы получить его идентификатор) и продолжить его выполнение в фоне: + +`bg %{{идентификатор_задания}}` diff --git a/pages.ru/common/bundler.md b/pages.ru/common/bundler.md new file mode 100644 index 00000000000000..765df6dee1e8dd --- /dev/null +++ b/pages.ru/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> Эта команда — псевдоним для `bundle`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr bundle` diff --git a/pages.ru/common/cabal.md b/pages.ru/common/cabal.md new file mode 100644 index 00000000000000..d20c1318a74b08 --- /dev/null +++ b/pages.ru/common/cabal.md @@ -0,0 +1,29 @@ +# cabal + +> Интерфейс командной строки для инфраструктуры пакетов Haskell (Cabal). +> Управление Haskell-проектами и Cabal-пакетами из репозитория Hackage. +> Больше информации: . + +- Искать и вывести список пакетов из Hackage: + +`cabal list {{строка_поиска}}` + +- Показать информацию о пакете: + +`cabal info {{имя_пакета}}` + +- Скачать и установить пакет: + +`cabal install {{имя_пакета}}` + +- Создать новый Haskell-проект в текущей папке: + +`cabal init` + +- Собрать проект в текущей папке: + +`cabal build` + +- Запустить тесты из проекта в текущей папке: + +`cabal test` diff --git a/pages.ru/common/chmod.md b/pages.ru/common/chmod.md index 4b92329fc1f849..7622393ee7c398 100644 --- a/pages.ru/common/chmod.md +++ b/pages.ru/common/chmod.md @@ -3,30 +3,34 @@ > Изменить права доступа файлу или папке. > Больше информации: . -- Дать [u]пользователю, который владеет файлом, права на его [x]исполнение: +- Дать пользователю ([u]ser), который владеет файлом, права на его исполнение (e[x]ecute): `chmod u+x {{файл}}` -- Дать права [u]пользователю права [r]чтения и [w]записи в файл/папку: +- Дать права пользователю ([u]ser) права чтения ([r]ead) и записи ([w]rite) в файл/папку: `chmod u+rw {{файл_или_папка}}` -- Убрать права на [x]исполнение у [g]группы: +- Убрать права на исполнение (e[x]ecute) у группы ([g]roup): `chmod g-x {{файл}}` -- Дать [a]всем пользователям права на [r]чтение и [x]исполенеие: +- Дать всем ([a]ll) пользователям права на чтение ([r]ead) и исполнение (e[x]ecute): `chmod a+rx {{файл}}` -- Дать [o]другим (не из группы владельцев файлом) такие же права как и у [g]группы: +- Дать другим ([o]thers) (не из группы владельцев файла) такие же права, как и у группы ([g]roup): `chmod o=g {{файл}}` -- Убрать все права у [o]других: +- Убрать все права у других ([o]thers): `chmod o= {{файл}}` -- Изменить права рекурсивно, дав [g]группе и [o]другим возможность [w]записи в папку: +- Изменить права рекурсивно, дав группе ([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.ru/common/clamav.md b/pages.ru/common/clamav.md new file mode 100644 index 00000000000000..f486c0e2f5f004 --- /dev/null +++ b/pages.ru/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Эта команда — псевдоним для `clamdscan`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr clamdscan` diff --git a/pages.ru/common/clang-cpp.md b/pages.ru/common/clang-cpp.md new file mode 100644 index 00000000000000..7d3a138f3f8c83 --- /dev/null +++ b/pages.ru/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Эта команда — псевдоним для `clang++`. + +- Смотри документацию для оригинальной команды: + +`tldr clang++` diff --git a/pages.ru/common/clojure.md b/pages.ru/common/clojure.md new file mode 100644 index 00000000000000..46bab1a1039e35 --- /dev/null +++ b/pages.ru/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Эта команда — псевдоним для `clj`. + +- Смотри документацию для оригинальной команды: + +`tldr clj` diff --git a/pages.ru/common/cola.md b/pages.ru/common/cola.md new file mode 100644 index 00000000000000..05decc216fc17d --- /dev/null +++ b/pages.ru/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Эта команда — псевдоним для `git-cola`. + +- Смотри документацию для оригинальной команды: + +`tldr git-cola` diff --git a/pages.ru/common/cron.md b/pages.ru/common/cron.md new file mode 100644 index 00000000000000..b8e409315bf0b7 --- /dev/null +++ b/pages.ru/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Эта команда — псевдоним для `crontab`. + +- Смотри документацию для оригинальной команды: + +`tldr crontab` diff --git a/pages.ru/common/cut.md b/pages.ru/common/cut.md new file mode 100644 index 00000000000000..d5465d9b149981 --- /dev/null +++ b/pages.ru/common/cut.md @@ -0,0 +1,16 @@ +# cut + +> Вырезать поля из стандартного ввода или файлов. +> Больше информации: . + +- Вывести указанный диапазон символов/полей каждой строки (`--{{characters|fields}}={{1|1,10|1-10|1-|-10}}` далее обозначается как `{{диапазон}}`): + +`{{команда}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}` + +- Вывести диапазон каждой строки с указанным разделителем: + +`{{команда}} | cut --delimiter="{{,}}" {{диапазон}}` + +- Вывести диапазон каждой строки указанного файла: + +`cut {{диапазон}} {{путь/к/файлу}}` diff --git a/pages.ru/common/cwebp.md b/pages.ru/common/cwebp.md new file mode 100644 index 00000000000000..5b74994b389398 --- /dev/null +++ b/pages.ru/common/cwebp.md @@ -0,0 +1,24 @@ +# cwebp + +> Сжимает файл изображения в формат WebP. +> Больше информации: . + +- Сжать WebP со стандартными настройками (q = 75) с сохранением в выходной файл: + +`cwebp {{путь/к/изображению}} -o {{путь/к/результату.webp}}` + +- Сжать WebP с наилучшим качеством и наибольшим размером файла: + +`cwebp {{путь/к/изображению}} -o {{путь/к/результату.webp}} -q {{100}}` + +- Сжать WebP с наихудшим качеством и наименьшим размером файла: + +`cwebp {{путь/к/изображению}} -o {{путь/к/результату.webp}} -q {{0}}` + +- Сжать WebP с изменением размера изображения: + +`cwebp {{путь/к/изображению}} -o {{путь/к/результату.webp}} -resize {{width}} {{height}}` + +- Сжать WebP с удалением информации о прозрачности: + +`cwebp {{путь/к/изображению}} -o {{путь/к/результату.webp}} -noalpha` diff --git a/pages.ru/common/dotnet-build.md b/pages.ru/common/dotnet-build.md index afa40067fcebbd..a0694d3d1e8753 100644 --- a/pages.ru/common/dotnet-build.md +++ b/pages.ru/common/dotnet-build.md @@ -1,7 +1,7 @@ # dotnet build > Собирает приложение .NET и все его зависимости. -> Больше информации: . +> Больше информации: . - Скомпилировать проект или решение в текущей директории: diff --git a/pages.ru/common/dotnet-publish.md b/pages.ru/common/dotnet-publish.md index c94df1b9367582..4a5e2e11df5fdb 100644 --- a/pages.ru/common/dotnet-publish.md +++ b/pages.ru/common/dotnet-publish.md @@ -1,7 +1,7 @@ # dotnet publish > Публикует .NET-приложение и его зависимости в папку для развёртываения на целевой системе. -> Больше информации: . +> Больше информации: . - Скомпилировать проект .NET в режиме release: diff --git a/pages.ru/common/dotnet-restore.md b/pages.ru/common/dotnet-restore.md index 3c6cae956e5a1c..30cf465a661a20 100644 --- a/pages.ru/common/dotnet-restore.md +++ b/pages.ru/common/dotnet-restore.md @@ -1,7 +1,7 @@ # dotnet restore > Восстанавливает зависимости и утилиты для проекта .NET. -> Больше информации: . +> Больше информации: . - Восстановить зависимости для проекта или решения .NET в текущей директории: diff --git a/pages.ru/common/dotnet.md b/pages.ru/common/dotnet.md index be1ca4f0d11106..2b67d1d82a168a 100644 --- a/pages.ru/common/dotnet.md +++ b/pages.ru/common/dotnet.md @@ -1,7 +1,8 @@ # dotnet > Кросс-платформенная утилита командной строки .NET для .NET Core. -> Больше информации: . +> Некоторые подкоманды, такие как `dotnet build`, имеют собственную документацию по использованию. +> Больше информации: . - Инициализировать новый проект .NET: diff --git a/pages.ru/common/echo.md b/pages.ru/common/echo.md new file mode 100644 index 00000000000000..b84441e049cabb --- /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/ed.md b/pages.ru/common/ed.md new file mode 100644 index 00000000000000..678b565c91fbd1 --- /dev/null +++ b/pages.ru/common/ed.md @@ -0,0 +1,33 @@ +# ed + +> Оригинальный текстовый редактор Unix. +> Смотрите также: `awk`, `sed`. +> Больше информации: . + +- Запустить интерактивную сессию редактора с пустым документом: + +`ed` + +- Запустить интерактивную сессию редактора с пустым документом и указанной подсказкой: + +`ed --prompt="> "` + +- Запустить интерактивную сессию редактора с удобными для пользователя ошибками: + +`ed --verbose` + +- Запустить интерактивную сессию редактора пустым документом и без диагностики, подсчета байтов и '!' подсказки: + +`ed --quiet` + +- Запустить интерактивную сессию редактора без изменения статуса выхода при сбое команды: + +`ed --loose-exit-status` + +- Редактировать указанный файл (это показывает количество байт загруженного файла): + +`ed {{путь/к/файлу}}` + +- Заменить строку указанной на всех строках: + +`,s/{{регулярное_выражение}}/{{замена}}/g` diff --git a/pages.ru/common/exit.md b/pages.ru/common/exit.md new file mode 100644 index 00000000000000..6dfaf3546c260a --- /dev/null +++ b/pages.ru/common/exit.md @@ -0,0 +1,12 @@ +# exit + +> Выйти из оболочки. +> Больше информации: . + +- Выход из оболочки с кодом выхода последней выполненной команды: + +`exit` + +- Выйти из оболочки с указанным кодом выхода: + +`exit {{код_выхода}}` diff --git a/pages.ru/common/fg.md b/pages.ru/common/fg.md new file mode 100644 index 00000000000000..08603b9367b8e4 --- /dev/null +++ b/pages.ru/common/fg.md @@ -0,0 +1,12 @@ +# fg + +> Переключение задания на передний план. +> Больше информации: . + +- Переключить последнее приостановленное или выполняющееся в фоне задание на передний план: + +`fg` + +- Переключить указанное задание на передний план: + +`fg %{{идентификатор_задания}}` diff --git a/pages.ru/common/fossil-ci.md b/pages.ru/common/fossil-ci.md new file mode 100644 index 00000000000000..66e3db5af821b9 --- /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 00000000000000..6520ee06a83673 --- /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 00000000000000..6dc4881dfa5eda --- /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 00000000000000..16cbde50c2d9cf --- /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 00000000000000..b81cf79580d8dc --- /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/ghc.md b/pages.ru/common/ghc.md new file mode 100644 index 00000000000000..8f9b8e19ab277a --- /dev/null +++ b/pages.ru/common/ghc.md @@ -0,0 +1,29 @@ +# ghc + +> Компилятор Glasgow Haskell Compiler. +> Компиляция и компоновка исходных файлов Haskell. +> Больше информации: . + +- Найти и скомпилировать все модули в текущей папке: + +`ghc Main` + +- Скомпилировать один файл: + +`ghc {{файл.hs}}` + +- Скомпилировать с использованием дополнительной оптимизации: + +`ghc -O {{файл.hs}}` + +- Остановить компиляцию после создания объектных файлов (.o): + +`ghc -c {{файл.hs}}` + +- Запустить REPL (интерактивную оболочку): + +`ghci` + +- Вычислить одно выражение: + +`ghc -e {{выражение}}` diff --git a/pages.ru/common/ghci.md b/pages.ru/common/ghci.md new file mode 100644 index 00000000000000..fdc356ef0bdb72 --- /dev/null +++ b/pages.ru/common/ghci.md @@ -0,0 +1,24 @@ +# ghci + +> Интерактивная среда Glasgow Haskell Compiler. +> Больше информации: . + +- Запустить REPL (интерактивную оболочку): + +`ghci` + +- Запустить REPL и загрузить указанный исходный файл Haskell: + +`ghci {{исходный_файл.hs}}` + +- Запустить REPL и включить опцию языка: + +`ghci -X{{опция_языка}}` + +- Запустить REPL и включить определённый уровень предупреждений компилятора (например, `all` или `compact`): + +`ghci -W{{уровень_предупреждений}}` + +- Запустить REPL со списком папок, разделённых двоеточием, в которых нужно искать исходные файлы: + +`ghci -i{{путь/до/папки1}}:{{путь/до/папки2}}` diff --git a/pages.ru/common/ghcup.md b/pages.ru/common/ghcup.md new file mode 100644 index 00000000000000..1beacb15551fd4 --- /dev/null +++ b/pages.ru/common/ghcup.md @@ -0,0 +1,33 @@ +# ghcup + +> Установщик набора инструментов Haskell. +> Установка, управление и обновление наборов инструментов Haskell. +> Больше информации: . + +- Запустить интерактивный текстовый интерфейс: + +`ghcup tui` + +- Вывести список доступных версий GHC/cabal: + +`ghcup list` + +- Установить рекомендуемую версию GHC: + +`ghcup install ghc` + +- Установить указанную версию GHC: + +`ghcup install ghc {{версия}}` + +- Задать "активную" версию GHC: + +`ghcup set ghc {{версия}}` + +- Установить инструмент cabal-install: + +`ghcup install cabal` + +- Обновить сам `ghcup`: + +`ghcup upgrade` diff --git a/pages.ru/common/gimp.md b/pages.ru/common/gimp.md new file mode 100644 index 00000000000000..69812622e91a2f --- /dev/null +++ b/pages.ru/common/gimp.md @@ -0,0 +1,29 @@ +# gimp + +> GNU программа для работы с изображениями. +> Смотрите также: `krita`. +> Больше информации: . + +- Запустить GIMP: + +`gimp` + +- Запустить без заставки: + +`gimp --no-splash` + +- Открыть указанные файлы: + +`gimp {{путь/к/изображению1 путь/к/изображению2 ...}}` + +- Запустить новый инстанс, даже если один уже запущен: + +`gimp --new-instance` + +- Вывести ошибки и предупреждения в консоль, вместо отображения их в диалоговом окне: + +`gimp --console-messages` + +- Включить обработчики сигналов отладки: + +`gimp --debug-handlers` diff --git a/pages.ru/common/gnmic-sub.md b/pages.ru/common/gnmic-sub.md new file mode 100644 index 00000000000000..018a7005305bd3 --- /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 00000000000000..d6555a8e92db74 --- /dev/null +++ b/pages.ru/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> Эта команда — псевдоним для `chromium`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr chromium` diff --git a/pages.ru/common/grep.md b/pages.ru/common/grep.md new file mode 100644 index 00000000000000..7c52faf9a0ea80 --- /dev/null +++ b/pages.ru/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 "{{шаблон_поиска}}" {{путь/к/файлу}}` + +- Искать строки, где есть совпадение по шаблону поиска, вывод только совпадающей части текста: + +`grep --only-matching "{{шаблон_поиска}}" {{путь/к/файлу}}` + +- Искать строки в стандартном потоке ввода которые не совпадают с шаблоном поиска: + +`cat {{путь/к/файлу}} | grep --invert-match "{{шаблон_поиска}}"` diff --git a/pages.ru/common/head.md b/pages.ru/common/head.md new file mode 100644 index 00000000000000..fe940d9b2a59e4 --- /dev/null +++ b/pages.ru/common/head.md @@ -0,0 +1,20 @@ +# head + +> Выводит первую часть файлов. +> Больше информации: . + +- Вывести первые несколько строк из файла: + +`head -n {{количетсво_строк}} {{имя_файла}}` + +- Вывести первые несколько байтов из файла: + +`head -c {{количество_байт}} {{имя_файла}}` + +- Вывести все содержимое файла кроме нескольких последних строк: + +`head -n -{{количетсво_строк}} {{имя_файла}}` + +- Вывести все содержимое файла кроме нескольких последних байт: + +`head -c -{{количество_байт}} {{имя_файла}}` diff --git a/pages.ru/common/hexdump.md b/pages.ru/common/hexdump.md new file mode 100644 index 00000000000000..1f14541ff1ef2b --- /dev/null +++ b/pages.ru/common/hexdump.md @@ -0,0 +1,20 @@ +# hexdump + +> Дамп файла в ASCII, десятичном, шестнадцатеричном и восьмеричном форматах. +> Больше информации: . + +- Распечатать шестнадцатеричное представление файла, заменяя повторяющиеся строки на '*': + +`hexdump {{путь/до/файла}}` + +- Отобразить шестнадцатеричное и ASCII представление в две колонки: + +`hexdump -C {{путь/до/файла}}` + +- Отобразить двухколончатое представление файла, обработав только указанное число байтов с начала: + +`hexdump -C -n{{количество_байтов}} {{путь/до/файла}}` + +- Не заменять повторяющиеся строки на '*': + +`hexdump --no-squeezing {{путь/до/файла}}` diff --git a/pages.ru/common/histexpand.md b/pages.ru/common/histexpand.md new file mode 100644 index 00000000000000..778f8aac9e2673 --- /dev/null +++ b/pages.ru/common/histexpand.md @@ -0,0 +1,36 @@ +# history expansion + +> Повторное использование и подстановка команд из списка истории в `sh`, `bash`, `zsh`, `rbash` and `ksh`. +> Больше информации: . + +- Запустить предыдущую команду от имени суперпользователя (`!!` заменяется на предыдущую команду): + +`sudo !!` + +- Запустить команду с последним аргументом из предыдущей команды: + +`{{команда}} !$` + +- Запустить команду с первым аргументом из предыдущей команды: + +`{{команда}} !^` + +- Запустить `n`-ую с начала команду из истории: + +`!{{n}}` + +- Запустить `n`-ую с конца команду из истории : + +`!-{{n}}` + +- Запустить самую последнюю команду, содержащую `строка`: + +`!?{{строка}}?` + +- Запустить предыдущую команду, заменив `строка1` на `строка2`: + +`^{{строка1}}^{{строка2}}^` + +- Выполнить подстановку команд из списка истории и вывести на экран получившуюся команду, не запуская её: + +`{{!-n}}:p` diff --git a/pages.ru/common/history.md b/pages.ru/common/history.md new file mode 100644 index 00000000000000..e60c46364f07ed --- /dev/null +++ b/pages.ru/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.ru/common/hostname.md b/pages.ru/common/hostname.md new file mode 100644 index 00000000000000..bffa6b01d1b1e1 --- /dev/null +++ b/pages.ru/common/hostname.md @@ -0,0 +1,24 @@ +# hostname + +> Показ и изменение системного имени хоста. +> Больше информации: . + +- Показать имя хоста: + +`hostname` + +- Показать сетевой адрес, соответствующий имени хоста: + +`hostname -i` + +- Показать все сетевые адреса хоста: + +`hostname -I` + +- Показать полное доменное имя (FQDN, Fully Qualified Domain Name): + +`hostname --fqdn` + +- Задать имя хоста: + +`hostname {{новое_имя}}` diff --git a/pages.ru/common/hunspell.md b/pages.ru/common/hunspell.md new file mode 100644 index 00000000000000..6ec03287635322 --- /dev/null +++ b/pages.ru/common/hunspell.md @@ -0,0 +1,16 @@ +# hunspell + +> Проверка орфографии. +> Больше информации: . + +- Проверить орфографию в указанном файле: + +`hunspell {{путь/до/файла}}` + +- Проверить орфографию в указанном файле, используя американский словарь (en_US): + +`hunspell -d {{en_US}} {{путь/до/файла}}` + +- Вывести список неправильно написанных слов в файле: + +`hunspell -l {{путь/до/файла}}` diff --git a/pages.ru/common/hx.md b/pages.ru/common/hx.md new file mode 100644 index 00000000000000..4f4a5572a62ed8 --- /dev/null +++ b/pages.ru/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> Эта команда — псевдоним для `helix`. + +- Смотри документацию для оригинальной команды: + +`tldr helix` diff --git a/pages.ru/common/jobs.md b/pages.ru/common/jobs.md new file mode 100644 index 00000000000000..89dd47491e54ba --- /dev/null +++ b/pages.ru/common/jobs.md @@ -0,0 +1,20 @@ +# jobs + +> Отображение статуса заданий в текущей сессии. +> Больше информации: . + +- Показать статусы всех заданий: + +`jobs` + +- Показать статус конкретного задания: + +`jobs %{{идентификатор_задания}}` + +- Показать статусы и идентификаторы процесса всех заданий: + +`jobs -l` + +- Показать идентификаторы процесса всех заданий: + +`jobs -p` diff --git a/pages.ru/common/jq.md b/pages.ru/common/jq.md new file mode 100644 index 00000000000000..d0ad3d11c7046d --- /dev/null +++ b/pages.ru/common/jq.md @@ -0,0 +1,32 @@ +# jq + +> Процессор JSON командной строки, использующий доменный язык. +> Больше информации: . + +- Выполнить указанное выражение (вывести цветной и отформатированный json): + +`{{cat путь/к/файлу.json}} | jq '.'` + +- Выполнить указанный скрипт: + +`{{cat путь/к/файлу.json}} | jq --from-file {{путь/к/скрипту.jq}}` + +- Передать указанные агрументы: + +`{{cat путь/к/файлу.json}} | jq {{--arg "имя1" "значение1" --arg "имя2" "значение2" ...}} '{{. + $ARGS.named}}'` + +- Вывести указанные ключи: + +`{{cat путь/к/файлу.json}} | jq '{{.ключ1, .ключ2, ...}}'` + +- Вывести указанные элементы массива: + +`{{cat путь/к/файлу.json}} | jq '{{.[индекс1], .[индекс2], ...}}'` + +- Вывести все элементы массива/ключи объекта: + +`{{cat путь/к/файлу.json}} | jq '.[]'` + +- Добавить/удалить указанные ключи: + +`{{cat путь/к/файлу.json}} | jq '. {{+|-}} {{{"ключ1": "значение1", "ключ2": "значение2", ...}}}'` diff --git a/pages.ru/common/kafkacat.md b/pages.ru/common/kafkacat.md new file mode 100644 index 00000000000000..a4eac0512f8a13 --- /dev/null +++ b/pages.ru/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Эта команда — псевдоним для `kcat`. + +- Смотри документацию для оригинальной команды: + +`tldr kcat` diff --git a/pages.ru/common/llvm-ar.md b/pages.ru/common/llvm-ar.md new file mode 100644 index 00000000000000..dabf20f3ab65e3 --- /dev/null +++ b/pages.ru/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Эта команда — псевдоним для `ar`. + +- Смотри документацию для оригинальной команды: + +`tldr ar` diff --git a/pages.ru/common/llvm-g++.md b/pages.ru/common/llvm-g++.md new file mode 100644 index 00000000000000..03a352fa3b1f00 --- /dev/null +++ b/pages.ru/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Эта команда — псевдоним для `clang++`. + +- Смотри документацию для оригинальной команды: + +`tldr clang++` diff --git a/pages.ru/common/llvm-gcc.md b/pages.ru/common/llvm-gcc.md new file mode 100644 index 00000000000000..864bae891b1b36 --- /dev/null +++ b/pages.ru/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Эта команда — псевдоним для `clang`. + +- Смотри документацию для оригинальной команды: + +`tldr clang` diff --git a/pages.ru/common/llvm-nm.md b/pages.ru/common/llvm-nm.md new file mode 100644 index 00000000000000..a7e09973311fb7 --- /dev/null +++ b/pages.ru/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Эта команда — псевдоним для `nm`. + +- Смотри документацию для оригинальной команды: + +`tldr nm` diff --git a/pages.ru/common/llvm-objdump.md b/pages.ru/common/llvm-objdump.md new file mode 100644 index 00000000000000..9232cd34d94506 --- /dev/null +++ b/pages.ru/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Эта команда — псевдоним для `objdump`. + +- Смотри документацию для оригинальной команды: + +`tldr objdump` diff --git a/pages.ru/common/llvm-strings.md b/pages.ru/common/llvm-strings.md new file mode 100644 index 00000000000000..1013cdb4f687e3 --- /dev/null +++ b/pages.ru/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Эта команда — псевдоним для `strings`. + +- Смотри документацию для оригинальной команды: + +`tldr strings` diff --git a/pages.ru/common/ls.md b/pages.ru/common/ls.md index d544090f7c36d4..4037220d198605 100644 --- a/pages.ru/common/ls.md +++ b/pages.ru/common/ls.md @@ -1,6 +1,6 @@ # ls -> Выводит содержимого каталога. +> Вывод содержимого каталога. > Больше информации: . - Список файлов по одному в строке: @@ -11,11 +11,11 @@ `ls -a` -- Список всех файлов с добавлением в конце `/` к именам каталогов: +- Список всех файлов с добавлением в конце `/` к именам директорий: `ls -F` -- Подробный список с выводом разрешений, прав собственности, размера и даты изменения всех файлов: +- Подробный список с выводом разрешений, владельцев, размера и даты изменения всех файлов: `ls -la` @@ -23,10 +23,14 @@ `ls -lh` -- Подробный список отсортированный по размеру файлов (по убыванию): +- Подробный список, отсортированный по размеру файлов (по убыванию): `ls -lS` -- Подробный список отсортированный по дате изменения файла (более старые файлы сначала): +- Подробный список, отсортированный по дате изменения файла (сначала более старые): `ls -ltr` + +- Список только директорий: + +`ls -d */` diff --git a/pages.ru/common/lzcat.md b/pages.ru/common/lzcat.md new file mode 100644 index 00000000000000..022920837a9bcd --- /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 00000000000000..a272416e9d721f --- /dev/null +++ b/pages.ru/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/mcs.md b/pages.ru/common/mcs.md new file mode 100644 index 00000000000000..3c830ba7d92e22 --- /dev/null +++ b/pages.ru/common/mcs.md @@ -0,0 +1,16 @@ +# mcs + +> Mono компилятор C#. +> Больше информации: . + +- Скомпилировать указанные файлы: + +`mcs {{путь/к/входному_файлу1.cs путь/к/входному_файлу2.cs ...}}` + +- Указать имя выходной программы: + +`mcs -out:{{путь/к/файлу.exe}} {{путь/к/входному_файлу1.cs путь/к/входному_файлу2.cs ...}}` + +- Указать тип выходной программы: + +`mcs -target:{{exe|winexe|library|module}} {{путь/к/входному_файлу1.cs путь/к/входному_файлу2.cs ...}}` diff --git a/pages.ru/common/micro.md b/pages.ru/common/micro.md index 0b0b0b553b6977..3ea1b6f69d4e88 100644 --- a/pages.ru/common/micro.md +++ b/pages.ru/common/micro.md @@ -1,6 +1,6 @@ # micro -> Micro - это современный и интуитивно понятный консольный текстовый редактор. +> Micro — это современный и интуитивно понятный консольный текстовый редактор. > Micro поддерживает клавиатуру и мышь для навигации и/или выделения текста. > Больше информации: . @@ -8,13 +8,17 @@ `micro {{файл}}` +- Сохранить файл: + +`Ctrl + S` + - Вырезать всю строку: `Ctrl + K` -- Искать в файле (используйте `Ctrl + N`/`Ctrl + P` чтобы перейти к следующему/предыдущему совпадению): +- Искать в файле по регулярному выражению (используйте `Ctrl + N`/`Ctrl + P` чтобы перейти к следующему/предыдущему совпадению): -`Ctrl + F "{{паттерн}}" <Ввод>` +`Ctrl + F "{{шаблон}}" <Ввод>` - Выполнить команду: @@ -22,7 +26,7 @@ - Выполнить замену во всем файле: -`Ctrl + E replaceall "{{строка}}" "{{замена}}" <Ввод>` +`Ctrl + E replaceall "{{шаблон}}" "{{замена}}" <Ввод>` - Выход: diff --git a/pages.ru/common/mscore.md b/pages.ru/common/mscore.md new file mode 100644 index 00000000000000..ae68a187aa4437 --- /dev/null +++ b/pages.ru/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Эта команда — псевдоним для `musescore`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr musescore` diff --git a/pages.ru/common/nm-classic.md b/pages.ru/common/nm-classic.md new file mode 100644 index 00000000000000..847180451744cf --- /dev/null +++ b/pages.ru/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> Эта команда — псевдоним для `nm`. + +- Смотри документацию для оригинальной команды: + +`tldr nm` diff --git a/pages.ru/common/nohup.md b/pages.ru/common/nohup.md new file mode 100644 index 00000000000000..ec4e9ba6a84a81 --- /dev/null +++ b/pages.ru/common/nohup.md @@ -0,0 +1,20 @@ +# nohup + +> Позволяет процессу продолжать работу после закрытия терминала. +> Больше информации: . + +- Запустить процесс, который может выполняться в отвязке от терминала: + +`nohup {{команда}} {{аргумент1 аргумент2 ...}}` + +- Запустить `nohup` в фоновом режиме: + +`nohup {{команда}} {{аргумент1 аргумент2 ...}} &` + +- Запустить скрипт оболочки, который может выполняться в отвязке от терминала: + +`nohup {{путь/до/скрипта.sh}} &` + +- Запустить процесс и перенаправить его вывод в указанный файл: + +`nohup {{команда}} {{аргумент1 аргумент2 ...}} > {{путь/до/выходного_файла}} &` diff --git a/pages.ru/common/ntl.md b/pages.ru/common/ntl.md new file mode 100644 index 00000000000000..07c29908f6ced7 --- /dev/null +++ b/pages.ru/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Эта команда — псевдоним для `netlify`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr netlify` diff --git a/pages.ru/common/pio-init.md b/pages.ru/common/pio-init.md new file mode 100644 index 00000000000000..8546b85fe1289c --- /dev/null +++ b/pages.ru/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Эта команда — псевдоним для `pio project`. + +- Смотри документацию для оригинальной команды: + +`tldr pio project` diff --git a/pages.ru/common/piodebuggdb.md b/pages.ru/common/piodebuggdb.md new file mode 100644 index 00000000000000..b1e526eb12f712 --- /dev/null +++ b/pages.ru/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Эта команда — псевдоним для `pio debug`. + +- Смотри документацию для оригинальной команды: + +`tldr pio debug` diff --git a/pages.ru/common/platformio.md b/pages.ru/common/platformio.md new file mode 100644 index 00000000000000..08d835faeab4f1 --- /dev/null +++ b/pages.ru/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Эта команда — псевдоним для `pio`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr pio` diff --git a/pages.ru/common/ptpython3.md b/pages.ru/common/ptpython3.md new file mode 100644 index 00000000000000..d271ca92279d85 --- /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 00000000000000..a4f9e3b4e4ad86 --- /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 00000000000000..8da2bb01b9eb51 --- /dev/null +++ b/pages.ru/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Эта команда — псевдоним для `python`. + +- Смотри документацию для оригинальной команды: + +`tldr python` diff --git a/pages.ru/common/r2.md b/pages.ru/common/r2.md new file mode 100644 index 00000000000000..ef056431f81d08 --- /dev/null +++ b/pages.ru/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Эта команда — псевдоним для `radare2`. + +- Смотри документацию для оригинальной команды: + +`tldr radare2` diff --git a/pages.ru/common/rcat.md b/pages.ru/common/rcat.md new file mode 100644 index 00000000000000..69a361999de573 --- /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 00000000000000..57eac9e8af0291 --- /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 00000000000000..0b994b42fa9033 --- /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/stat.md b/pages.ru/common/stat.md new file mode 100644 index 00000000000000..f5fd8f23f26e5c --- /dev/null +++ b/pages.ru/common/stat.md @@ -0,0 +1,28 @@ +# stat + +> Показ информации о файле и файловой системе. +> Больше информации: . + +- Показать свойства файла, такие как размер, права доступа, даты создания и последнего обращения и другие: + +`stat {{путь/до/файла}}` + +- То же, что и выше, но в сжатой форме: + +`stat -t {{путь/до/файла}}` + +- Показать информацию о файловой системе: + +`stat -f {{путь/до/файла}}` + +- Показать только права доступа в восьмеричном виде: + +`stat -c "%a %n" {{путь/до/файла}}` + +- Показать владельца и группу файла: + +`stat -c "%U %G" {{путь/до/файла}}` + +- Показать размер файла в байтах: + +`stat -c "%s %n" {{путь/до/файла}}` diff --git a/pages.ru/common/stty.md b/pages.ru/common/stty.md new file mode 100644 index 00000000000000..1c9d293ac97419 --- /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/tar.md b/pages.ru/common/tar.md index d5fb2597928c93..75551d27dfe2b7 100644 --- a/pages.ru/common/tar.md +++ b/pages.ru/common/tar.md @@ -12,7 +12,7 @@ `tar czf {{целевой.tar.gz}} {{файл1}} {{файл2}} {{файл3}}` -- Создать gzip архив из деректории, используя относительные пути: +- Создать gzip-архив из директории, используя относительные пути: `tar czf {{целевой.tar.gz}} -C {{путь/до/папки}} .` @@ -24,14 +24,14 @@ `tar xf {{исходный.tar[.gz|.bz2|.xz]}} -C {{папка}}` -- Создать сжатый архив, использую суффикс архива для определения программы сжатия: +- Создать сжатый архив, используя суффикс архива для определения программы сжатия: `tar caf {{целевой.tar.xz}} {{файл1}} {{файл2}} {{файл3}}` -- Вывести список содержимого tar файла: +- Вывести список содержимого tar-файла: `tar tvf {{исходный.tar}}` -- Извлечь файлы удовлетворяющие шаблону: +- Извлечь файлы, соответствующие шаблону: `tar xf {{исходный.tar}} --wildcards "{{*.html}}"` diff --git a/pages.ru/common/tldr.md b/pages.ru/common/tldr.md index 52dd8da992dda9..938345e7dfddb3 100644 --- a/pages.ru/common/tldr.md +++ b/pages.ru/common/tldr.md @@ -5,7 +5,7 @@ - Показывает типичное использование комманды (подсказка: то как вы попали сюда!): -`tldr {{комманда}}` +`tldr {{команда}}` - Показывает tldr страницу для комманды tar для Linux: diff --git a/pages.ru/common/tldrl.md b/pages.ru/common/tldrl.md new file mode 100644 index 00000000000000..d2697939edbdd9 --- /dev/null +++ b/pages.ru/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Эта команда — псевдоним для `tldr-lint`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr tldr-lint` diff --git a/pages.ru/common/tlmgr-arch.md b/pages.ru/common/tlmgr-arch.md new file mode 100644 index 00000000000000..987716f619752f --- /dev/null +++ b/pages.ru/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Эта команда — псевдоним для `tlmgr platform`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr tlmgr platform` diff --git a/pages.ru/common/todoman.md b/pages.ru/common/todoman.md new file mode 100644 index 00000000000000..55b5409778777b --- /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 00000000000000..0467a94111d3fa --- /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 00000000000000..878bacca781b04 --- /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 00000000000000..31d4c54d84313b --- /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 00000000000000..abad1e437a95e4 --- /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 00000000000000..f4ad26043de59d --- /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 f3368eb605b099..13b4df0c793db2 100644 --- a/pages.ru/common/unzip.md +++ b/pages.ru/common/unzip.md @@ -1,6 +1,7 @@ # unzip > Извлекает сжатые файлы из архива zip. +> Больше информации: . - Распаковать файл(ы) zip (для нескольких файлов укажите пути через пробел): diff --git a/pages.ru/common/vi.md b/pages.ru/common/vi.md new file mode 100644 index 00000000000000..2a54eb997c78a3 --- /dev/null +++ b/pages.ru/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Эта команда — псевдоним для `vim`. + +- Смотри документацию для оригинальной команды: + +`tldr vim` diff --git a/pages.ru/common/weasyprint.md b/pages.ru/common/weasyprint.md index 710a547a7989c4..60e7a577b28158 100644 --- a/pages.ru/common/weasyprint.md +++ b/pages.ru/common/weasyprint.md @@ -19,6 +19,6 @@ `weasyprint {{путь/до/входного.html}} {{путь/до/выходного.png}} --resolution {{300}}` -- Во входном HTML файле указать базовый url для относительных urls: +- Во входном HTML файле указать базовый URL для относительных URLs: `weasyprint {{путь/до/входного.html}} {{путь/до/выходного.png}} --base-url {{url_или_имя-файла}}` diff --git a/pages.ru/common/which.md b/pages.ru/common/which.md new file mode 100644 index 00000000000000..aaae99d3dee57c --- /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 00000000000000..707259380e849f --- /dev/null +++ b/pages.ru/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> Эта команда — псевдоним для `xz`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr xz` diff --git a/pages.ru/common/zip.md b/pages.ru/common/zip.md index b99d1cc7586816..ae0f70155dcbd0 100644 --- a/pages.ru/common/zip.md +++ b/pages.ru/common/zip.md @@ -1,35 +1,33 @@ # zip > Упаковывает и сжимает (архивирует) файлы в файл zip. +> Смотрите также: `unzip`. +> Больше информации: . -- Упаковать и сжать папку и её содержимое, рекурсивно ([r]ecursive): +- Добавить файлы/папки в указанный архив ([r]ecursively): -`zip -r {{архив.zip}} {{/путь/до/папки}}` +`zip -r {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}}` -- Исключить (e[x]clude) ненужные файлы из добавляемых в сжатый архив: +- Удалить файлы/папки из указанного архива ([d]elete): -`zip -r {{архив.zip}} {{путь/до/папки}} -x {{путь/который/исключаем}}` +`zip -d {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}}` -- Архивировать папку и её содержимое с самым сильным [9] сжатием: +- Заархивировать файлы/папки, исключая некоторые (e[x]clude): -`zip -r -{{9}} {{архив.zip}} {{/путь/до/папки}}` +`zip -r {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}} -x {{путь/до/исключаемых_файлов_или_папок}}` -- Упаковать и сжать несколько папок и файлов: +- Заархивировать файлы/папки с заданной степенью сжатия (`0` — без сжатия, `9` — максимальная): -`zip -r {{архив.zip}} {{/путь/до/папки1 /путь/до/папки2 /путь/до/файла}}` +`zip -r -{{0-9}} {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}}` -- Создать зашифрованный архив (пользователя спросят пароль): +- Создать зашифрованный паролем архив ([e]ncrypted): -`zip -e -r {{архив.zip}} {{путь/до/папки}}` +`zip -r -e {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}}` -- Добавить файлы в существующий файл zip: +- Заархивировать файлы/папки в многотомный архив ([s]plit), например, частями по 3 Гб: -`zip {{архив.zip}} {{путь/до/файла}}` +`zip -r -s {{3g}} {{путь/до/архива.zip}} {{путь/до/файла_или_папки1 путь/до/файла_или_папки2 ...}}` -- Удалить файлы из существующего файла zip: +- Вывести содержимое указанного архива ([s]how [f]iles): -`zip -d {{архив.zip}} "{{папка/*.tmp}}"` - -- Архивировать папку и её содержимое, разделив ([s]plit) файл zip на несколько томов (например, кусками по 3 ГБ): - -`zip -r -s {{3g}} {{архив.zip}} {{путь/до/папки}}` +`zip -sf {{путь/до/архива.zip}}` diff --git a/pages.ru/common/zsh.md b/pages.ru/common/zsh.md new file mode 100644 index 00000000000000..15f39258b8910b --- /dev/null +++ b/pages.ru/common/zsh.md @@ -0,0 +1,29 @@ +# zsh + +> Z SHell — командный интерпретатор, совместимый с Bash. +> Смотри также `histexpand` про подстановку команд из списка истории. +> Больше информации: . + +- Запустить интерактивную сессию оболочки: + +`zsh` + +- Выполнить команду и выйти: + +`zsh -c "{{команда}}"` + +- Выполнить скрипт: + +`zsh {{путь/до/скрипта.zsh}}` + +- Выполнить скрипт с выводом каждой команды перед её выполнением: + +`zsh --xtrace {{путь/до/скрипта.zsh}}` + +- Запустить интерактивную сессию оболочки в подробном режиме, выводя каждую команду перед её выполнением: + +`zsh --verbose` + +- Выполнить определённую команду внутри `zsh` с отключёнными glob-шаблонами: + +`noglob {{команда}}` diff --git a/pages.ru/linux/alternatives.md b/pages.ru/linux/alternatives.md new file mode 100644 index 00000000000000..55e72a0fd25b07 --- /dev/null +++ b/pages.ru/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> Эта команда — псевдоним для `update-alternatives`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr update-alternatives` diff --git a/pages.ru/linux/aspell.md b/pages.ru/linux/aspell.md new file mode 100644 index 00000000000000..f33809fb3905b0 --- /dev/null +++ b/pages.ru/linux/aspell.md @@ -0,0 +1,24 @@ +# aspell + +> Интерактивная проверка орфографии. +> Больше информации: . + +- Проверить орфографию в одном файле: + +`aspell check {{путь/до/файла}}` + +- Вывести список неверно написанных слов из стандартного ввода: + +`cat {{файл}} | aspell list` + +- Показать доступные словари: + +`aspell dicts` + +- Запустить `aspell` с использованием другого языка (двухсимвольный код согласно ISO 639): + +`aspell --lang={{cs}}` + +- Вывести список неверно написанных слов из стандартного ввода, игнорируя слова из персонального списка: + +`cat {{файл}} | aspell --personal={{персональный_список_слов.pws}} list` diff --git a/pages.ru/linux/batcat.md b/pages.ru/linux/batcat.md new file mode 100644 index 00000000000000..1f276fd33c7cb4 --- /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 00000000000000..16c8da4e2e4aa3 --- /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 00000000000000..d18d20f5208099 --- /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 00000000000000..878d393cfd4636 --- /dev/null +++ b/pages.ru/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Эта команда — псевдоним для `cgclassify`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr cgclassify` diff --git a/pages.ru/linux/hostnamectl.md b/pages.ru/linux/hostnamectl.md new file mode 100644 index 00000000000000..8e4b47c03de7c4 --- /dev/null +++ b/pages.ru/linux/hostnamectl.md @@ -0,0 +1,20 @@ +# hostnamectl + +> Получение и установка имени хоста компьютера. +> Больше информации: . + +- Получить имя хоста компьютера: + +`hostnamectl` + +- Задать имя хоста компьютера: + +`sudo hostnamectl set-hostname "{{имя_хоста}}"` + +- Задать красивое (короткое) имя хоста компьютера: + +`sudo hostnamectl set-hostname --static "{{имя_хоста.example.com}}" && sudo hostnamectl set-hostname --pretty "{{имя_хоста}}"` + +- Сбросить имя хоста компьютера к значению по умолчанию: + +`sudo hostnamectl set-hostname --pretty ""` diff --git a/pages.ru/linux/ip-route-list.md b/pages.ru/linux/ip-route-list.md new file mode 100644 index 00000000000000..b6831d3a26bd9e --- /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/ispell.md b/pages.ru/linux/ispell.md new file mode 100644 index 00000000000000..1d6ee112edb01b --- /dev/null +++ b/pages.ru/linux/ispell.md @@ -0,0 +1,16 @@ +# ispell + +> Интерактивная проверка орфографии. +> Больше информации: . + +- Начать интерактивную сессию: + +`ispell` + +- Проверить на ошибки указанный файл и интерактивно применить исправления: + +`ispell {{путь/до/файла}}` + +- Отобразить версию: + +`ispell -v` diff --git a/pages.ru/linux/krita.md b/pages.ru/linux/krita.md new file mode 100644 index 00000000000000..fce6444f98aa45 --- /dev/null +++ b/pages.ru/linux/krita.md @@ -0,0 +1,25 @@ +# krita + +> Krita - программа для создания эскизов и рисования, разработанная для цифровых художников. +> Смотрите также: `gimp`. +> Больше информации: . + +- Запустить krita: + +`krita` + +- Запустить без заставки: + +`krita --nosplash` + +- Открыть указанные файлы: + +`krita {{путь/к/изображению1 путь/к/изображению2 ...}}` + +- Запустить с указанным рабочим пространством (`Animation`): + +`krita --workspace {{Animation}}` + +- Запустить в полноэкранном режиме: + +`krita --fullscreen` diff --git a/pages.ru/linux/lnav.md b/pages.ru/linux/lnav.md new file mode 100644 index 00000000000000..f190b4517f14ef --- /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 00000000000000..e4ee1da6f8032b --- /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 00000000000000..7e1b2100a3c56b --- /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 00000000000000..950df650e087ff --- /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 00000000000000..3d36d61b223d1f --- /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 00000000000000..c4c79532f8d60f --- /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 00000000000000..2dc49d585ff45a --- /dev/null +++ b/pages.ru/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Эта команда — псевдоним для `megatools-dl`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr megatools-dl` diff --git a/pages.ru/linux/ncal.md b/pages.ru/linux/ncal.md new file mode 100644 index 00000000000000..2bf2333b27b184 --- /dev/null +++ b/pages.ru/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Эта команда — псевдоним для `cal`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr cal` diff --git a/pages.ru/linux/ubuntu-bug.md b/pages.ru/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..ec13db042f84f6 --- /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/osx/aa.md b/pages.ru/osx/aa.md new file mode 100644 index 00000000000000..f70e45ab236b66 --- /dev/null +++ b/pages.ru/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> Эта команда — псевдоним для `yaa`. + +- Смотри документацию для оригинальной команды: + +`tldr yaa` diff --git a/pages.ru/osx/cut.md b/pages.ru/osx/cut.md new file mode 100644 index 00000000000000..5f04f83a14b379 --- /dev/null +++ b/pages.ru/osx/cut.md @@ -0,0 +1,16 @@ +# cut + +> Вырезать поля из стандартного ввода или файлов. +> Больше информации: . + +- Вывести указанный диапазон символов/полей каждой строки (`-{{c|f}} {{1|1,10|1-10|1-|-10}}` далее обозначается как `{{диапазон}}`): + +`{{команда}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}` + +- Вывести диапазон каждой строки с указанным разделителем: + +`{{команда}} | cut -d "{{,}}" {{диапазон}}` + +- Вывести диапазон каждой строки указанного файла: + +`cut {{диапазон}} {{путь/к/файлу}}` diff --git a/pages.ru/osx/ed.md b/pages.ru/osx/ed.md new file mode 100644 index 00000000000000..8ffb25781faced --- /dev/null +++ b/pages.ru/osx/ed.md @@ -0,0 +1,25 @@ +# ed + +> Оригинальный текстовый редактор Unix. +> Смотрите также: `awk`, `sed`. +> Больше информации: . + +- Запустить интерактивную сессию редактора с пустым документом: + +`ed` + +- Запустить интерактивную сессию редактора с пустым документом и указанной подсказкой: + +`ed -p "> "` + +- Запустить интерактивную сессию редактора пустым документом и без диагностики, подсчета байтов и '!' подсказки: + +`ed -s` + +- Редактировать указанный файл (это показывает количество байт загруженного файла): + +`ed {{путь/к/файлу}}` + +- Заменить строку указанной на всех строках: + +`,s/{{регулярное_выражение}}/{{замена}}/g` diff --git a/pages.ru/osx/g[.md b/pages.ru/osx/g[.md new file mode 100644 index 00000000000000..883d77379d714e --- /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 00000000000000..cdf552a61f29f3 --- /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 00000000000000..ab355dcc2e9fa8 --- /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 00000000000000..c1e1fb5297c532 --- /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 00000000000000..164e1254aaa656 --- /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 00000000000000..ef2683464a2c7c --- /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 00000000000000..adb215756de947 --- /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 00000000000000..e31b03a063ec30 --- /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 00000000000000..4ff036c4879381 --- /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 00000000000000..b6ef488476791c --- /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 00000000000000..b416190ffbb149 --- /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 00000000000000..caebcade56327f --- /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 00000000000000..ebb4137e58fb25 --- /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 00000000000000..0ecb4dc430030a --- /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 00000000000000..3951d90b0ac456 --- /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 00000000000000..d93cf99b3cf09f --- /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 00000000000000..2732471a981f9f --- /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 00000000000000..3e5eb48231ed56 --- /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 00000000000000..31ee648109b56e --- /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 00000000000000..90f32ceae60d02 --- /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 00000000000000..1acc57da537744 --- /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 00000000000000..146c5b741c7c71 --- /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 00000000000000..b8db900216c68f --- /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 00000000000000..d70782bdcd686c --- /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 00000000000000..aecb4d0cc6bcb7 --- /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 00000000000000..e132236e9fa33a --- /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 00000000000000..f5a849970b3aa7 --- /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 00000000000000..674ba06fa7d843 --- /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 00000000000000..e0714ce87fab4b --- /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 00000000000000..2ed0390f4bad3b --- /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 00000000000000..21ef55a1b0a823 --- /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 00000000000000..54fccd06939206 --- /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 00000000000000..3dd2e0b29afe4a --- /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 00000000000000..be3394de1a90c7 --- /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 00000000000000..ce58a4d86215be --- /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 00000000000000..c797bda8faa1a2 --- /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 00000000000000..ea08ba71d21e94 --- /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 00000000000000..06a388d21fa472 --- /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 00000000000000..cfd4aedb20b1a6 --- /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 00000000000000..9435fae7f9c2a7 --- /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 00000000000000..4a1617fb820da2 --- /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 00000000000000..d46befe8e1d995 --- /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 00000000000000..a0ad02d58fb029 --- /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 00000000000000..99891d4390a27b --- /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 00000000000000..75a73b7353544d --- /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 00000000000000..cd20a2564832d6 --- /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 00000000000000..01777c5aa70556 --- /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 00000000000000..9a3c7d5bafc3af --- /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 00000000000000..a57d380998c631 --- /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 00000000000000..97e4032cd14942 --- /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 00000000000000..128c967aec4a5e --- /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 00000000000000..fcc54173a0e53a --- /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 00000000000000..45bf0d5af3d21d --- /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 00000000000000..adba45f9e04ba3 --- /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 00000000000000..7644728cce432f --- /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 00000000000000..da28c35bf3f755 --- /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 00000000000000..b2993c8751e280 --- /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 00000000000000..2d2b64482736a4 --- /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 00000000000000..3f3ed231cd7045 --- /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 00000000000000..1ecdea5d16a5a6 --- /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 00000000000000..b8afb900938ec9 --- /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 00000000000000..cadc2bd805503e --- /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 00000000000000..99ce5924ce00e7 --- /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 00000000000000..6b6e6dca03316f --- /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 00000000000000..83e2d58dca18be --- /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 00000000000000..9988219b244c3c --- /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 00000000000000..49b8f598e5fbec --- /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 00000000000000..8e1781f2362542 --- /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 00000000000000..44296a6755b47a --- /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 00000000000000..16a55e922cb07f --- /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 00000000000000..000ebc931dc1ff --- /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 00000000000000..94725b3aa46f7f --- /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 00000000000000..daa80b94c8b976 --- /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 00000000000000..bff9cddb43f2eb --- /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 00000000000000..c2b465c4e16ed6 --- /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 00000000000000..f59b323e7333be --- /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 00000000000000..5bd59761220c6b --- /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 00000000000000..b3d3ee3c12ac6f --- /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 00000000000000..ab562b41d6fd8d --- /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 00000000000000..b1e21983f718ad --- /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 00000000000000..bda738d68a43dd --- /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 00000000000000..cd8d428c6153dd --- /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 00000000000000..06eee2383c9e95 --- /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 00000000000000..271dda2754d5bd --- /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 00000000000000..6d3cc73c02d466 --- /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 00000000000000..15afc1ec09620f --- /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 00000000000000..bfddf6bed6579e --- /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 00000000000000..769ea7244cc0bf --- /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 00000000000000..63c0c67aa75bf5 --- /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 00000000000000..66f22e82623516 --- /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 00000000000000..4d5f0addd51e1c --- /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 00000000000000..34807907aa3b34 --- /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 00000000000000..e46c03f9365ff7 --- /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 00000000000000..2cc48d9b94834c --- /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 00000000000000..164304fed707e8 --- /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 00000000000000..14fc18bd191b87 --- /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 00000000000000..00b895bbe38ae2 --- /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 00000000000000..084cb408f51867 --- /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 00000000000000..e17ee04d6268ef --- /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 00000000000000..9b36cd71f7c74e --- /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 00000000000000..965f1013d850d1 --- /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 00000000000000..0b8d62b95ff3d1 --- /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 00000000000000..cce202ea9da576 --- /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 00000000000000..b45dfc39b79fae --- /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 00000000000000..b6af0084d4391c --- /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 00000000000000..e76fbe02a9fb47 --- /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 00000000000000..352d7145d7f288 --- /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 00000000000000..f9f0db5ffc4692 --- /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 00000000000000..f301c729baff68 --- /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 00000000000000..95284375176e9c --- /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 00000000000000..94afaf2404d5c8 --- /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 00000000000000..5b9201db3f22d1 --- /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 00000000000000..2ea8b403339f64 --- /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 00000000000000..4a1d51d559938f --- /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 00000000000000..9434227d387644 --- /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 00000000000000..bb2bed8ef8bc1e --- /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 00000000000000..ddbc70f93aa526 --- /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 00000000000000..384f3a0bfe413c --- /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 00000000000000..cf462aef7bb5ff --- /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 00000000000000..e72e51164ec704 --- /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 00000000000000..96318e1b2dac4b --- /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 00000000000000..0d8651436f3ae7 --- /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 00000000000000..9deab273654e29 --- /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 00000000000000..b169311d04ace9 --- /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 00000000000000..df5b90d2687a16 --- /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 00000000000000..ea202c8e44962d --- /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 00000000000000..dc080e62e4b5e8 --- /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 00000000000000..cdce6254500b34 --- /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 00000000000000..348f60db2a9b5d --- /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 00000000000000..f75d85f9e0416a --- /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 00000000000000..26093ee5758753 --- /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 00000000000000..2bdedd7092623a --- /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 00000000000000..aa2db01f73fb68 --- /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 00000000000000..42e0fac9e5e657 --- /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 00000000000000..e836b57d64034d --- /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 00000000000000..f9b6709560608a --- /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 00000000000000..15c517450b81c7 --- /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 00000000000000..43e5b29dccfc46 --- /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 00000000000000..91352bd002ada3 --- /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 00000000000000..61d35869dd748c --- /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 00000000000000..20b4d0a2d4e0f1 --- /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/cd.md b/pages.ru/windows/cd.md new file mode 100644 index 00000000000000..378aafadd7f77f --- /dev/null +++ b/pages.ru/windows/cd.md @@ -0,0 +1,20 @@ +# cd + +> Отображение текущего или перемещение в другой каталог. +> Больше информации: . + +- Отобразить путь текущего каталога: + +`cd` + +- Перейти вверх в родительский каталог: + +`cd ..` + +- Перейти в указанный каталог на текущем диске: + +`cd {{путь\до\каталога}}` + +- Перейти в указанный каталог на другом диске ([d]rive): + +`cd /d {{C}}:{{путь\до\каталога}}` diff --git a/pages.ru/windows/chrome.md b/pages.ru/windows/chrome.md new file mode 100644 index 00000000000000..9bd54ee4773954 --- /dev/null +++ b/pages.ru/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Эта команда — псевдоним для `chromium`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr chromium` diff --git a/pages.ru/windows/cinst.md b/pages.ru/windows/cinst.md new file mode 100644 index 00000000000000..b6cba4e0048d81 --- /dev/null +++ b/pages.ru/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Эта команда — псевдоним для `choco install`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr choco install` diff --git a/pages.ru/windows/clist.md b/pages.ru/windows/clist.md new file mode 100644 index 00000000000000..06556da30e1073 --- /dev/null +++ b/pages.ru/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Эта команда — псевдоним для `choco list`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr choco list` diff --git a/pages.ru/windows/cpush.md b/pages.ru/windows/cpush.md new file mode 100644 index 00000000000000..f54a737718e763 --- /dev/null +++ b/pages.ru/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Эта команда — псевдоним для `choco-push`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr choco-push` diff --git a/pages.ru/windows/cuninst.md b/pages.ru/windows/cuninst.md new file mode 100644 index 00000000000000..d1236019365d52 --- /dev/null +++ b/pages.ru/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Эта команда — псевдоним для `choco uninstall`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr choco uninstall` diff --git a/pages.ru/windows/curl.md b/pages.ru/windows/curl.md new file mode 100644 index 00000000000000..915d7b8b5815d6 --- /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/find.md b/pages.ru/windows/find.md new file mode 100644 index 00000000000000..cac1b31ce83ecb --- /dev/null +++ b/pages.ru/windows/find.md @@ -0,0 +1,20 @@ +# find + +> Поиск заданной строки в одном или нескольких файлах. +> Больше информации: . + +- Найти строки, содержащие указанную строку: + +`find "{{строка}}" {{путь/до/файла_или_папки}}` + +- Отобразить строки, не содержащие указанную строку: + +`find "{{строка}}" {{путь/до/файла_или_папки}} /v` + +- Отобразить количество строк, содержащих указанную строку: + +`find "{{строка}}" {{путь/до/файла_или_папки}} /c` + +- Вывод номеров найденных строк: + +`find "{{строка}}" {{путь/до/файла_или_папки}} /n` diff --git a/pages.ru/windows/ipconfig.md b/pages.ru/windows/ipconfig.md new file mode 100644 index 00000000000000..bafa30857b27fa --- /dev/null +++ b/pages.ru/windows/ipconfig.md @@ -0,0 +1,24 @@ +# ipconfig + +> Отображение и управление сетевыми настройками Windows. +> Больше информации: . + +- Показать список сетевых адаптеров: + +`ipconfig` + +- Показать подробный список сетевых адаптеров: + +`ipconfig /all` + +- Обновить IP-адреса сетевого адаптера: + +`ipconfig /renew {{адаптер}}` + +- Освободить IP-адреса сетевого адаптера: + +`ipconfig /release {{адаптер}}` + +- Удалить все данные из кеша DNS: + +`ipconfig /flushdns` diff --git a/pages.ru/windows/iwr.md b/pages.ru/windows/iwr.md new file mode 100644 index 00000000000000..edf07e08ba6eef --- /dev/null +++ b/pages.ru/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> Эта команда — псевдоним для `invoke-webrequest`. + +- Смотри документацию для оригинальной команды: + +`tldr invoke-webrequest` diff --git a/pages.ru/windows/msiexec.md b/pages.ru/windows/msiexec.md new file mode 100644 index 00000000000000..be7fb7a673d54a --- /dev/null +++ b/pages.ru/windows/msiexec.md @@ -0,0 +1,20 @@ +# msiexec + +> Установка, обновление, восстановление или удаление программ Windows через пакеты установки MSI и MSP. +> Больше информации: . + +- Установить программу из MSI-пакета: + +`msiexec /package {{путь/до/файла.msi}}` + +- Установить MSI-пакет с веб-сайта: + +`msiexec /package {{https://example.com/installer.msi}}` + +- Установить MSP-пакет с обновлением (патчем): + +`msiexec /update {{путь/до/файла.msp}}` + +- Удалить программу или обновление, используя соответствующий пакет MSI или MSP: + +`msiexec /uninstall {{путь/до/файла}}` diff --git a/pages.ru/windows/nvm.md b/pages.ru/windows/nvm.md new file mode 100644 index 00000000000000..68d7ddc991b385 --- /dev/null +++ b/pages.ru/windows/nvm.md @@ -0,0 +1,21 @@ +# nvm + +> Установка, удаление и переключение между версиями Node.js. +> Поддерживает номера версий вроде "12.8" or "v16.13.1", метки вроде "stable", "system", и т.д. +> Больше информации: . + +- Установить заданную версию Node.js: + +`nvm install {{версия_node}}` + +- Задать версию Node.js по умолчанию (требуется запускать из-под Администратора): + +`nvm use {{версия_node}}` + +- Вывести список всех доступных версий Node.js и подсветить версию по умолчанию: + +`nvm list` + +- Удалить указанную версию Node.js: + +`nvm uninstall {{версия_node}}` diff --git a/pages.ru/windows/pabcnetcclear.md b/pages.ru/windows/pabcnetcclear.md new file mode 100644 index 00000000000000..14dda5d46cde51 --- /dev/null +++ b/pages.ru/windows/pabcnetcclear.md @@ -0,0 +1,24 @@ +# pabcnetcclear + +> Препроцессор и компилятор для исходных файлов PascalABC.NET. +> Больше информации: . + +- Скомпилировать файл с исходным кодом в исполняемый файл с тем же именем: + +`pabcnetcclear {{путь/до/исходного_файла.pas}}` + +- Скомпилировать файл с исходным кодом в исполняемый файл с заданным именем: + +`pabcnetcclear /Output:{{путь/до/файла.exe}} {{путь/до/исходного_файла.pas}}` + +- Скомпилировать файл с исходным кодом в исполняемый файл с тем же именем с/без отладочной информации: + +`pabcnetcclear /Debug:{{0|1}} {{путь/до/исходного_файла.pas}}` + +- Разрешить искать модули по указанному пути при компиляции файла с исходным кодом в исполняемый файл с тем же именем: + +`pabcnetcclear /SearchDir:{{путь/до/папки}} {{путь/до/исходного_файла.pas}}` + +- Скомпилировать файл с исходным кодом в исполняемый файл, определив символ условной компиляции: + +`pabcnetcclear /Define:{{символ}} {{путь/до/исходного_файла.pas}}` diff --git a/pages.ru/windows/pwsh-where.md b/pages.ru/windows/pwsh-where.md new file mode 100644 index 00000000000000..731fb6b933c3fc --- /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 00000000000000..e5791c0a0e9164 --- /dev/null +++ b/pages.ru/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> Эта команда — псевдоним для `rmdir`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr rmdir` diff --git a/pages.ru/windows/set.md b/pages.ru/windows/set.md new file mode 100644 index 00000000000000..05df7b6f45dddf --- /dev/null +++ b/pages.ru/windows/set.md @@ -0,0 +1,20 @@ +# set + +> Отобразить или задать значение переменным окружения для текущего экземпляра CMD. +> Больше информации: . + +- Вывести список текущих переменных окружения: + +`set` + +- Задать переменной окружения определённое значение: + +`set {{имя}}={{значение}}` + +- Вывести список переменных окружения, имена которых начинаются с заданной строки: + +`set {{имя}}` + +- Запросить у пользователя значение для указанной переменной: + +`set /p {{имя}}={{строка_подсказки}}` diff --git a/pages.ru/windows/sls.md b/pages.ru/windows/sls.md new file mode 100644 index 00000000000000..76aa7109fe905e --- /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 00000000000000..e0237911d33657 --- /dev/null +++ b/pages.ru/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> Эта команда — псевдоним для `wget -p common`. +> Больше информации: . + +- Смотри документацию для оригинальной команды: + +`tldr wget -p common` diff --git a/pages.ru/windows/where.md b/pages.ru/windows/where.md new file mode 100644 index 00000000000000..533fcc61d2dcd5 --- /dev/null +++ b/pages.ru/windows/where.md @@ -0,0 +1,21 @@ +# where + +> Показ расположения файлов, удовлетворяющих шаблону поиска. +> По умолчанию поиск производится в текущей папке и по путям в переменной окружения PATH. +> Больше информации: . + +- Отобразить расположение файлов, соответствующих шаблону: + +`where {{шаблон_файла}}` + +- Отобразить расположение файлов, соответствующих шаблону, вместе с размером и датой: + +`where /T {{шаблон_файла}}` + +- Рекурсивно искать файлы, соответствующие шаблону, по указанному пути: + +`where /R {{path/to/directory}} {{шаблон_файла}}` + +- Только вернуть код возврата для результата поиска файла по шаблону: + +`where /Q {{шаблон_файла}}` diff --git a/pages.sr/common/cd.md b/pages.sr/common/cd.md new file mode 100644 index 00000000000000..99eaf4457b8fef --- /dev/null +++ b/pages.sr/common/cd.md @@ -0,0 +1,20 @@ +# cd + +> Menja trenutnu radnu površinu. +> Više informacija na: . + +- Ulazi u dati direktorijum: + +`cd {{putanja/do/direktorijuma}}` + +- Ulazi u početni direktorjum trenutnog korisnika: + +`cd` + +- Ulazi u roditelja trenutnog direktorijuma: + +`cd ..` + +- Ulazi u prethodno izabrani direktorijum: + +`cd -` diff --git a/pages.sr/common/echo.md b/pages.sr/common/echo.md new file mode 100644 index 00000000000000..ebbe8ab91db2ac --- /dev/null +++ b/pages.sr/common/echo.md @@ -0,0 +1,24 @@ +# echo + +> Prikazuje date argumente. +> Više informacija na: . + +- Prikazuje tekstualnu poruku. Napomena: navodnici su opcionalni: + +`echo "{{Zdravo Svete}}"` + +- Prikazuje poruku sa promenljivom: + +`echo "{{Moja lokacija je $PATH}}"` + +- Prikazuje poruku bez dodatne linije: + +`echo -n "{{Zdravo Svete}}"` + +- Dodaje poruku u fajl: + +`echo "{{Zdravo Svete}}" >> {{fajl.txt}}` + +- Omogućava interpretaciju posebnih karektera (prethodi im "\\"): + +`echo -e "{{Kolona 1\tKolona 2}}"` diff --git a/pages.sr/common/git.md b/pages.sr/common/git.md new file mode 100644 index 00000000000000..849bf6905a52a7 --- /dev/null +++ b/pages.sr/common/git.md @@ -0,0 +1,29 @@ +# git + +> Distribuirani sistem kontrole verzija. +> Neke podkomande kao što je `git commit` imaju svoj primer u dokumentaciji. +> Više informacija na: . + +- Proverava Git verziju: + +`git --version` + +- Prikazuje opštu pomoć: + +`git --help` + +- Prikazuje pomoć o Git podkomandi (npr. `commit`, `log`, itd.): + +`git help {{podkomanda}}` + +- Izvršava Git podkomandu: + +`git {{podkomanda}}` + +- Izvršava Git podkomandu u zadatoj početnoj lokaciji repozitorijuma: + +`git -C {{putanja/do/repozitorijuma}} {{podkomanda}}` + +- Izvršava Git podkomandu sa zadatim setom konfiguracija: + +`git -c '{{config.key}}={{value}}' {{podkomanda}}` diff --git a/pages.sr/common/link.md b/pages.sr/common/link.md new file mode 100644 index 00000000000000..a7b9a3cc3bfdbc --- /dev/null +++ b/pages.sr/common/link.md @@ -0,0 +1,8 @@ +# link + +> Kreira link između novog i zadatog fajla. +> Više informacija na: . + +- Kreira link između novog i zadatog fajla: + +`link {{putanja/do/postojećeg_fajla}} {{putanja/do/novog_fajla}}` diff --git a/pages.sr/common/mkdir.md b/pages.sr/common/mkdir.md new file mode 100644 index 00000000000000..4f0e5e57bced2c --- /dev/null +++ b/pages.sr/common/mkdir.md @@ -0,0 +1,16 @@ +# mkdir + +> Kreira direktorijum. +> Više informacija na: . + +- Kreira direktorijum u trenutnom direktorijumu ili zadatoj lokaciji: + +`mkdir {{direktorijum}}` + +- Kreira više direktorijuma u trenutnom direktorijumu: + +`mkdir {{direktorijum_1 direktorijum_2 ...}}` + +- Kreira direktorijum koristeći rekurziju: + +`mkdir -p {{putanja/do/direktorijuma}}` diff --git a/pages.sv/common/[.md b/pages.sv/common/[.md new file mode 100644 index 00000000000000..f70ebdd0ea3340 --- /dev/null +++ b/pages.sv/common/[.md @@ -0,0 +1,25 @@ +# [ + +> Utvärdera villkor. +> Returnerar 0 om villkoret är sant, 1 om villkoret är falsk. +> Mer information: . + +- Testa om en given variabel är lika med en given sträng: + +`[ "{{$VARIABEL}}" == "{{/bin/zsh}}" ]` + +- Testa om en given variabel är tom: + +`[ -z "{{$GIT_BRANCH}}" ]` + +- Testa om filen existerar: + +`[ -f "{{väg/till/fil}}" ]` + +- Testa om en katalog inte existerar: + +`[ ! -d "{{väg/till/katalog}}" ]` + +- If-else uttryck: + +`[ {{villkor}} ] && {{echo "true"}} || {{echo "false"}}` diff --git a/pages.sv/common/arch.md b/pages.sv/common/arch.md index bb7900a5e59545..3a9cd1d7e6db5d 100644 --- a/pages.sv/common/arch.md +++ b/pages.sv/common/arch.md @@ -1,6 +1,6 @@ # arch -> Visa namnet på systemarkitekturen: +> Visa namnet på systemarkitekturen. > Se även `uname`. > Mer information: . diff --git a/pages.sv/common/bundler.md b/pages.sv/common/bundler.md new file mode 100644 index 00000000000000..4443d1dbe82d1e --- /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/cd.md b/pages.sv/common/cd.md new file mode 100644 index 00000000000000..ee4a00ab0b43e7 --- /dev/null +++ b/pages.sv/common/cd.md @@ -0,0 +1,20 @@ +# cd + +> Byt nuvarande katalog. +> Mer information: . + +- Gå till en given katalog: + +`cd {{sökväg/till/katalog}}` + +- Gå till hemkatalog för nuvarande användare: + +`cd` + +- Gå till överordnad katalog: + +`cd ..` + +- Gå tillbaks till den föregående valda katalogen: + +`cd -` diff --git a/pages.sv/common/clamav.md b/pages.sv/common/clamav.md new file mode 100644 index 00000000000000..0c87f62e78665a --- /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/clang-cpp.md b/pages.sv/common/clang-cpp.md new file mode 100644 index 00000000000000..ac58e000461e03 --- /dev/null +++ b/pages.sv/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Det här kommandot är ett alias för `clang++`. + +- Se dokumentationen för orginalkommandot: + +`tldr clang++` diff --git a/pages.sv/common/clojure.md b/pages.sv/common/clojure.md new file mode 100644 index 00000000000000..4ad1b77f5babe2 --- /dev/null +++ b/pages.sv/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Det här kommandot är ett alias för `clj`. + +- Se dokumentationen för orginalkommandot: + +`tldr clj` diff --git a/pages.sv/common/cola.md b/pages.sv/common/cola.md new file mode 100644 index 00000000000000..7b82b15842964c --- /dev/null +++ b/pages.sv/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Det här kommandot är ett alias för `git-cola`. + +- Se dokumentationen för orginalkommandot: + +`tldr git-cola` diff --git a/pages.sv/common/cron.md b/pages.sv/common/cron.md new file mode 100644 index 00000000000000..e0559419fc564b --- /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 00000000000000..bfd805bdc7edd2 --- /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 00000000000000..e7f09ecdfaaaef --- /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 00000000000000..289d25ec8e8cd8 --- /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 00000000000000..691f47ee963e09 --- /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 00000000000000..f225a459695410 --- /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 00000000000000..45608f52d7cd8e --- /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 00000000000000..085382a5c341ce --- /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 00000000000000..46aa7f9d757b9e --- /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 00000000000000..30e1e1f87218d2 --- /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/llvm-ar.md b/pages.sv/common/llvm-ar.md new file mode 100644 index 00000000000000..85c9ee05f4a0c0 --- /dev/null +++ b/pages.sv/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Det här kommandot är ett alias för `ar`. + +- Se dokumentationen för orginalkommandot: + +`tldr ar` diff --git a/pages.sv/common/llvm-g++.md b/pages.sv/common/llvm-g++.md new file mode 100644 index 00000000000000..3451b0009f1fbf --- /dev/null +++ b/pages.sv/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Det här kommandot är ett alias för `clang++`. + +- Se dokumentationen för orginalkommandot: + +`tldr clang++` diff --git a/pages.sv/common/llvm-gcc.md b/pages.sv/common/llvm-gcc.md new file mode 100644 index 00000000000000..569f741f385150 --- /dev/null +++ b/pages.sv/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Det här kommandot är ett alias för `clang`. + +- Se dokumentationen för orginalkommandot: + +`tldr clang` diff --git a/pages.sv/common/llvm-nm.md b/pages.sv/common/llvm-nm.md new file mode 100644 index 00000000000000..b7e344f74c13da --- /dev/null +++ b/pages.sv/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Det här kommandot är ett alias för `nm`. + +- Se dokumentationen för orginalkommandot: + +`tldr nm` diff --git a/pages.sv/common/llvm-objdump.md b/pages.sv/common/llvm-objdump.md new file mode 100644 index 00000000000000..aa08451e04d6b0 --- /dev/null +++ b/pages.sv/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Det här kommandot är ett alias för `objdump`. + +- Se dokumentationen för orginalkommandot: + +`tldr objdump` diff --git a/pages.sv/common/llvm-strings.md b/pages.sv/common/llvm-strings.md new file mode 100644 index 00000000000000..0f294b805b055b --- /dev/null +++ b/pages.sv/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Det här kommandot är ett alias för `strings`. + +- Se dokumentationen för orginalkommandot: + +`tldr strings` diff --git a/pages.sv/common/lzcat.md b/pages.sv/common/lzcat.md new file mode 100644 index 00000000000000..971ba00f315d35 --- /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 00000000000000..2e6e3b8f5f3b9d --- /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/mscore.md b/pages.sv/common/mscore.md new file mode 100644 index 00000000000000..1573bbb1b67451 --- /dev/null +++ b/pages.sv/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Det här kommandot är ett alias för `musescore`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr musescore` diff --git a/pages.sv/common/nm-classic.md b/pages.sv/common/nm-classic.md new file mode 100644 index 00000000000000..c35499649be4d8 --- /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/npm-why.md b/pages.sv/common/npm-why.md index 620dfa5c99eb24..e95e9095fc3441 100644 --- a/pages.sv/common/npm-why.md +++ b/pages.sv/common/npm-why.md @@ -1,7 +1,7 @@ # npm-why > Identifierar varför ett npm-paket är installerat. -> Mer information: . +> Mer information: . - Visa varför ett npm-paket är installerat: diff --git a/pages.sv/common/ntl.md b/pages.sv/common/ntl.md new file mode 100644 index 00000000000000..c548e2c1205cc3 --- /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/pio-init.md b/pages.sv/common/pio-init.md new file mode 100644 index 00000000000000..f81a43539ca503 --- /dev/null +++ b/pages.sv/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Det här kommandot är ett alias för `pio project`. + +- Se dokumentationen för orginalkommandot: + +`tldr pio project` diff --git a/pages.sv/common/piodebuggdb.md b/pages.sv/common/piodebuggdb.md new file mode 100644 index 00000000000000..5fe286f0e6d926 --- /dev/null +++ b/pages.sv/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Det här kommandot är ett alias för `pio debug`. + +- Se dokumentationen för orginalkommandot: + +`tldr pio debug` diff --git a/pages.sv/common/platformio.md b/pages.sv/common/platformio.md new file mode 100644 index 00000000000000..e998348e9607ed --- /dev/null +++ b/pages.sv/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Det här kommandot är ett alias för `pio`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr pio` diff --git a/pages.sv/common/ptpython3.md b/pages.sv/common/ptpython3.md new file mode 100644 index 00000000000000..e32843c0fc0a9e --- /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 00000000000000..3e8e7f5d3dfe67 --- /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/r2.md b/pages.sv/common/r2.md new file mode 100644 index 00000000000000..2f0890a0628ec2 --- /dev/null +++ b/pages.sv/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Det här kommandot är ett alias för `radare2`. + +- Se dokumentationen för orginalkommandot: + +`tldr radare2` diff --git a/pages.sv/common/rcat.md b/pages.sv/common/rcat.md new file mode 100644 index 00000000000000..6a6d7040acf27c --- /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 e8578fd42fc1de..3fa1e195bec168 100644 --- a/pages.sv/common/rev.md +++ b/pages.sv/common/rev.md @@ -1,6 +1,7 @@ # rev > Omvänd en textrad. +> Mer information: . - Omvänd textraden "hello": diff --git a/pages.sv/common/ripgrep.md b/pages.sv/common/ripgrep.md new file mode 100644 index 00000000000000..04506312ea9d80 --- /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/rm.md b/pages.sv/common/rm.md new file mode 100644 index 00000000000000..2747c7de241fd5 --- /dev/null +++ b/pages.sv/common/rm.md @@ -0,0 +1,24 @@ +# rm + +> Ta bort filer eller mappar. +> Mer information: . + +- Ta bort filer från godtyckliga ställen: + +`rm {{sökväg/till/fil}} {{sökväg/till/en/annan/fil}}` + +- Rekursivt ta bort en mapp och dess undermappar: + +`rm -r {{sökväg/till/mapp}}` + +- Tvinga borttagning av en mapp utan att bekräfta eller visa felmeddelanden: + +`rm -rf {{sökväg/till/mapp}}` + +- Interaktivt ta bort flera filer, genom att fråga om borttagning för varje fil: + +`rm -i {{fil(er)}}` + +- Ta bort filer och visa ett meddelande för varje borttagning: + +`rm -v {{sökväg/till/mapp/*}}` diff --git a/pages.sv/common/source.md b/pages.sv/common/source.md index e4213beea119d4..9f288095035775 100644 --- a/pages.sv/common/source.md +++ b/pages.sv/common/source.md @@ -1,6 +1,7 @@ # source > Kör kommandon från en fil i det aktuella skalet. +> Mer information: . - Utvärdera innehållet i en viss fil: diff --git a/pages.sv/common/time.md b/pages.sv/common/time.md index 5c299d1e9a1ad1..576d374f4dc630 100644 --- a/pages.sv/common/time.md +++ b/pages.sv/common/time.md @@ -1,6 +1,7 @@ # time > Se hur lång tid ett kommando tar. +> Mer information: . - Tidtagning "ls": diff --git a/pages.sv/common/tldrl.md b/pages.sv/common/tldrl.md new file mode 100644 index 00000000000000..a0a93448bc8e9a --- /dev/null +++ b/pages.sv/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Det här kommandot är ett alias för `tldr-lint`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr tldr-lint` diff --git a/pages.sv/common/tlmgr-arch.md b/pages.sv/common/tlmgr-arch.md new file mode 100644 index 00000000000000..e7d429018d79dc --- /dev/null +++ b/pages.sv/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Det här kommandot är ett alias för `tlmgr platform`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr tlmgr platform` diff --git a/pages.sv/common/todoman.md b/pages.sv/common/todoman.md new file mode 100644 index 00000000000000..4716d1af9da699 --- /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 00000000000000..f13acb6a24e506 --- /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/unalias.md b/pages.sv/common/unalias.md index 4c6edb440172b3..e67d695b2ef347 100644 --- a/pages.sv/common/unalias.md +++ b/pages.sv/common/unalias.md @@ -1,6 +1,7 @@ # unalias > Ta bort alias. +> Mer information: . - Ta bort en alias: diff --git a/pages.sv/common/unclutter.md b/pages.sv/common/unclutter.md index 5a1699a0aa6102..a11699224bcb63 100644 --- a/pages.sv/common/unclutter.md +++ b/pages.sv/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > Döljer muspekaren. +> Mer information: . - Dölj muspekarn efter 3 sekunder: diff --git a/pages.sv/common/unlzma.md b/pages.sv/common/unlzma.md new file mode 100644 index 00000000000000..008907608905df --- /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 00000000000000..763f246418bf9a --- /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/vi.md b/pages.sv/common/vi.md new file mode 100644 index 00000000000000..c3671d7c3ed9fd --- /dev/null +++ b/pages.sv/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Det här kommandot är ett alias för `vim`. + +- Se dokumentationen för orginalkommandot: + +`tldr vim` diff --git a/pages.sv/common/view.md b/pages.sv/common/view.md index 4af763654324d5..8bf6a06f818285 100644 --- a/pages.sv/common/view.md +++ b/pages.sv/common/view.md @@ -2,6 +2,7 @@ > En skrivskyddad version av `vim`. > Detta är lika med `vim -R`. +> Mer information: . - Öppna en fil: diff --git a/pages.sv/common/vimtutor.md b/pages.sv/common/vimtutor.md index c8528ed07837db..9b640ad6e03413 100644 --- a/pages.sv/common/vimtutor.md +++ b/pages.sv/common/vimtutor.md @@ -1,6 +1,7 @@ # vimtutor > Vim-handledare, lär ut de grundläggande vim-kommandona. +> Mer information: . - Starta vim-handledaren med det angivna språket (en, fr, de, ...): diff --git a/pages.sv/common/visudo.md b/pages.sv/common/visudo.md index d0c0fa652cced8..1cfd3da4908152 100644 --- a/pages.sv/common/visudo.md +++ b/pages.sv/common/visudo.md @@ -1,6 +1,7 @@ # visudo > Redigera sudoers-filen på säkert sätt. +> Mer information: . - Redigera sudoers-filen: diff --git a/pages.sv/common/xzcat.md b/pages.sv/common/xzcat.md new file mode 100644 index 00000000000000..295a775d3ef7b9 --- /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/common/yarn-why.md b/pages.sv/common/yarn-why.md index 17de9aae0b2a7b..ca3ac77574a697 100644 --- a/pages.sv/common/yarn-why.md +++ b/pages.sv/common/yarn-why.md @@ -1,7 +1,7 @@ # yarn-why > Identifierar varför ett Yarn paket har installerats. -> Mer information: . +> Mer information: . - Visa varför ett Yarn paket är installerat: diff --git a/pages.sv/common/zless.md b/pages.sv/common/zless.md index e21468931f0f3e..d68a86d816721a 100644 --- a/pages.sv/common/zless.md +++ b/pages.sv/common/zless.md @@ -1,6 +1,7 @@ # zless > Visa komprimerade filer. +> Mer information: . - Bläddra igenom ett komprimerat arkiv med `less`: diff --git a/pages.sv/linux/alternatives.md b/pages.sv/linux/alternatives.md new file mode 100644 index 00000000000000..d6dc5c509ee7e7 --- /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 00000000000000..e452545bf09038 --- /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 00000000000000..7c96f20c99b07e --- /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 00000000000000..09b9fd1c02aa58 --- /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 00000000000000..9c7d939182a7a5 --- /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 00000000000000..967b2befef789e --- /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 00000000000000..368be69260923f --- /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/ncal.md b/pages.sv/linux/ncal.md new file mode 100644 index 00000000000000..0e2c3d1b711f67 --- /dev/null +++ b/pages.sv/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Det här kommandot är ett alias för `cal`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr cal` diff --git a/pages.sv/linux/ubuntu-bug.md b/pages.sv/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..169cccbf3a57d9 --- /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 00000000000000..c0745b916c8891 --- /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 00000000000000..4056f2749c9da1 --- /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 00000000000000..21977cf1ba8aea --- /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 00000000000000..eb4cfb9bdd6351 --- /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 00000000000000..422e9353852c4b --- /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 00000000000000..22a3e3e03d37ef --- /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 00000000000000..88e1ff9ee8c4f8 --- /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 00000000000000..00ba8a0f938e42 --- /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 00000000000000..0f1aa99d906131 --- /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 00000000000000..24d0e0fb9b806c --- /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 00000000000000..228d078ab30f2a --- /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 00000000000000..e004479dfd6de1 --- /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 00000000000000..2fada5fbaa4c80 --- /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 00000000000000..03eee2bac4020a --- /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 00000000000000..f0889badce913f --- /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 00000000000000..bb84718a64b368 --- /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 00000000000000..e380b59cf9a873 --- /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 00000000000000..4f7bb87b95b806 --- /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 00000000000000..a6f7d43e101c4c --- /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 00000000000000..5753b4daf2a7f5 --- /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 00000000000000..9f71e32464d995 --- /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 00000000000000..4e786eb5e2e135 --- /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 00000000000000..831d1de8546974 --- /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 00000000000000..7b2d2937928095 --- /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 00000000000000..1e42994dd76132 --- /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 00000000000000..e7b8bcb54de02a --- /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 00000000000000..e0d16f386dbe47 --- /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 00000000000000..399fc45dc8985e --- /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 00000000000000..c0a7967289c780 --- /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 00000000000000..942baed78083aa --- /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 00000000000000..6f4c5a24387196 --- /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 00000000000000..93454afec76875 --- /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 00000000000000..0227bcd63815b8 --- /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 00000000000000..d4c9db27abc1c0 --- /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 00000000000000..1858107c0cec3d --- /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 00000000000000..533f251abb9d93 --- /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 00000000000000..f18d0acf65493d --- /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 00000000000000..97b210b191bbc5 --- /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 00000000000000..65aca244b95434 --- /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 00000000000000..581276b9f6e3d6 --- /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 00000000000000..f96e78319396fb --- /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 00000000000000..e348e86b16fc6e --- /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 00000000000000..0d075ea0a5f8b6 --- /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 00000000000000..b89d0181949bd4 --- /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 00000000000000..dde24816e94c51 --- /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 00000000000000..91cc3c75802bc9 --- /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 00000000000000..3e4b2c999fd7c1 --- /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 00000000000000..3dd27efcb1279a --- /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 00000000000000..3b815ac02d4595 --- /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 00000000000000..f87fb7c09aaaa4 --- /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 00000000000000..69c515bbe757c6 --- /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 00000000000000..c3b9d4a856d1fb --- /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 00000000000000..b14410732dff65 --- /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 00000000000000..e277b00b02b55a --- /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 00000000000000..4f78412f4f0c16 --- /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 00000000000000..3abc4b5aedc913 --- /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 00000000000000..e68b52286238e0 --- /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 00000000000000..dd8c27999e1abc --- /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 00000000000000..91f60dec825aa3 --- /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 00000000000000..ea6895e6ae4ddf --- /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 00000000000000..7be53692cd59e9 --- /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 00000000000000..90b4db276dbd6c --- /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 00000000000000..a1e68191775cf1 --- /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 00000000000000..c21c0c99cf0d05 --- /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 00000000000000..15dc0ebc6d9e5d --- /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 00000000000000..d54697f02f737b --- /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 00000000000000..c7683d630123a7 --- /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 00000000000000..2c035e0ecd32aa --- /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 00000000000000..bf601e0ccbdc03 --- /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 00000000000000..acd8a211651945 --- /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 00000000000000..b6a01457bd0b73 --- /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 00000000000000..64a1e13a327d38 --- /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 00000000000000..712e5d5a3d879d --- /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 00000000000000..fe836aaa3f10e3 --- /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 00000000000000..57f1b72d25090a --- /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 00000000000000..6bb277b7d154fe --- /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 00000000000000..94120b0c5b86f8 --- /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 00000000000000..e7532636c5ca67 --- /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 00000000000000..67846b00e544a2 --- /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 00000000000000..c571bf87ddaf60 --- /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 00000000000000..6587561bac234d --- /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 00000000000000..53debb99599dbe --- /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 00000000000000..a19e962079b1a6 --- /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 00000000000000..bcb83558d66a3a --- /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 00000000000000..6b16242d7023ff --- /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 00000000000000..f58ac2093c4ead --- /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 00000000000000..8d403dad08f235 --- /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 00000000000000..b5994b99bedb5e --- /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 00000000000000..4502c1d225a0d6 --- /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 00000000000000..7bb17cc0191025 --- /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 00000000000000..bf708324f2e3ca --- /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 00000000000000..2a0a94c0f620eb --- /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 00000000000000..aa0fb2daeecf4a --- /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 00000000000000..61345537d72ddb --- /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 00000000000000..d4e6d93a76b423 --- /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 00000000000000..28dde1a85875a3 --- /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 00000000000000..d605b544306801 --- /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 00000000000000..cbf789b6790028 --- /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 00000000000000..2d60d2072c7e38 --- /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 00000000000000..1848ffa4f5f272 --- /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 00000000000000..501a0438a55384 --- /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 00000000000000..52359e701ef689 --- /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 00000000000000..14316dc660222c --- /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 00000000000000..dbc1492f76d6a5 --- /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 00000000000000..8df654cd9a3b08 --- /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 00000000000000..b547742617263f --- /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 00000000000000..9a64e574aa8186 --- /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 00000000000000..457c9a6c65412e --- /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 00000000000000..8d9bd41eff12c1 --- /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 00000000000000..174480f09f999c --- /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 00000000000000..7cdac056f5df2b --- /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 00000000000000..acf8fbb49824dd --- /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 00000000000000..ddcfcdef6f1506 --- /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 00000000000000..6d66b4c2025c00 --- /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 00000000000000..ce8cda1b68c201 --- /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 00000000000000..7c4d538af43313 --- /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 00000000000000..711c1e5cb4f2ca --- /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 00000000000000..bffb7802fda0f0 --- /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 00000000000000..8ded35ff57b3e4 --- /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 00000000000000..efcfcaa698d71c --- /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 00000000000000..f49f763ddbfe88 --- /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 00000000000000..edfbacb4db8040 --- /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 00000000000000..ce18d3023eb9bc --- /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 00000000000000..cc6d3c8ad0a115 --- /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 00000000000000..bce33fc4693b36 --- /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 00000000000000..a750c1e1dea19e --- /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 00000000000000..93a4b64b2627a7 --- /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 00000000000000..2e0acc3294c832 --- /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 00000000000000..8829f9146f38c1 --- /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 00000000000000..6febe92f8f3f52 --- /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 00000000000000..8e1f6de2fae479 --- /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 00000000000000..6e927999c4176c --- /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 00000000000000..fc966bec8f9f70 --- /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 00000000000000..ae0f72ded3012b --- /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 00000000000000..666f3203520a19 --- /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 00000000000000..c5fa36809e77df --- /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 00000000000000..336cf1dc70c0b3 --- /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 00000000000000..56fcff880f1807 --- /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 00000000000000..5a726fd9abae78 --- /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 00000000000000..b9cd918fb356c1 --- /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 00000000000000..af7284b9acd453 --- /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 00000000000000..eeae1151e58c33 --- /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/cinst.md b/pages.sv/windows/cinst.md new file mode 100644 index 00000000000000..e4215443620d1b --- /dev/null +++ b/pages.sv/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Det här kommandot är ett alias för `choco install`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr choco install` diff --git a/pages.sv/windows/clist.md b/pages.sv/windows/clist.md new file mode 100644 index 00000000000000..f07a438c745eb5 --- /dev/null +++ b/pages.sv/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Det här kommandot är ett alias för `choco list`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr choco list` diff --git a/pages.sv/windows/color.md b/pages.sv/windows/color.md new file mode 100644 index 00000000000000..064add350506cf --- /dev/null +++ b/pages.sv/windows/color.md @@ -0,0 +1,16 @@ +# color + +> Används för att ändra bakgrunds och textfärgen i kommandotolken. +> Mer information: . + +- Återställer färgerna till orginal (svart bakgrund, vit text): + +`color` + +- För att se detaljerad information och de olika färgalternativen: + +`color /?` + +- Ställ in vilken färg bakgrunden och texten ska ha med hjälp av hexadecimala tal (`1-9,a-f`): + +`color {{tal_textfärg}}{{tal_bakgrundsfärg}}` diff --git a/pages.sv/windows/cpush.md b/pages.sv/windows/cpush.md new file mode 100644 index 00000000000000..593d53970261b3 --- /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/cuninst.md b/pages.sv/windows/cuninst.md new file mode 100644 index 00000000000000..01354d96bb0600 --- /dev/null +++ b/pages.sv/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Det här kommandot är ett alias för `choco uninstall`. +> Mer information: . + +- Se dokumentationen för orginalkommandot: + +`tldr choco uninstall` diff --git a/pages.sv/windows/curl.md b/pages.sv/windows/curl.md new file mode 100644 index 00000000000000..b8ed99be4a96df --- /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/explorer.md b/pages.sv/windows/explorer.md new file mode 100644 index 00000000000000..c4c038314c0a0d --- /dev/null +++ b/pages.sv/windows/explorer.md @@ -0,0 +1,16 @@ +# explorer + +> Windows Utforskaren. +> Mer information: . + +- Öppna Utforskaren: + +`explorer` + +- Öppna Utforskaren i den aktuella katalogen: + +`explorer .` + +- Öppna Utforskaren i en specifik katalog/mapp: + +`explorer {{länk/till/katalog}}` diff --git a/pages.sv/windows/gpupdate.md b/pages.sv/windows/gpupdate.md new file mode 100644 index 00000000000000..d284790a01c880 --- /dev/null +++ b/pages.sv/windows/gpupdate.md @@ -0,0 +1,20 @@ +# gpupdate + +> Ett verktyg för att kontrollera och uppdatera Windows Group Policy settings. +> Mer information: . + +- Kontrollera och tillämpa uppdaterade Group Policy settings: + +`gpupdate` + +- Ange för vilka Group Policy inställningar du vill kontrollera för uppdateringar: + +`gpupdate /target:{{datornamn|användare}}` + +- Tvinga alla Group Policy inställningar att tillämpas igen: + +`gpupdate /force` + +- Visa detaljerad användningsinformation: + +`gpupdate /?` diff --git a/pages.sv/windows/iwr.md b/pages.sv/windows/iwr.md new file mode 100644 index 00000000000000..4394c6728ecb52 --- /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/print.md b/pages.sv/windows/print.md new file mode 100644 index 00000000000000..148ebca8127a6b --- /dev/null +++ b/pages.sv/windows/print.md @@ -0,0 +1,12 @@ +# print + +> Skriv ut en textfil till en skrivare. +> Mer information: . + +- Skriv ut en textfil till standardskrivaren: + +`print {{sökväg/till/filen}}` + +- Skriv ut en textfil till en specifik skrivare: + +`print /d:{{skrivare}} {{sökväg/till/filen}}` diff --git a/pages.sv/windows/pwsh-where.md b/pages.sv/windows/pwsh-where.md new file mode 100644 index 00000000000000..dce07b93e06c9a --- /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 00000000000000..d2d99df094db28 --- /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 00000000000000..95cf5321951ed9 --- /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 00000000000000..2e5ed999793412 --- /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/am.md b/pages.ta/android/am.md new file mode 100644 index 00000000000000..06f5845e827d12 --- /dev/null +++ b/pages.ta/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.ta/android/bugreport.md b/pages.ta/android/bugreport.md new file mode 100644 index 00000000000000..74d8460de4d6e7 --- /dev/null +++ b/pages.ta/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> ஆண்ட்ராய்டு பிழை அறிக்கையைக் காட்டு. +> இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- ஆண்ட்ராய்டு சாதனத்தின் முழுமையான பிழை அறிக்கையைக் காட்டு: + +`bugreport` diff --git a/pages.ta/android/bugreportz.md b/pages.ta/android/bugreportz.md new file mode 100644 index 00000000000000..c3884ad14e0920 --- /dev/null +++ b/pages.ta/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> ஜிப் செய்யப்பட்ட ஆண்ட்ராய்டு பிழை அறிக்கையை உருவாக்கவும். +> இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- ஒரு ஆண்ட்ராய்டு சாதனத்தின் முழுமையான ஜிப் செய்யப்பட்ட பிழை அறிக்கையை உருவாக்கவும்: + +`bugreportz` + +- இயங்கும் `bugreportz` செயல்பாட்டின் முன்னேற்றத்தைக் காட்டு: + +`bugreportz -p` + +- `bugreportz` பதிப்பைக் காட்டு: + +`bugreportz -v` + +- காட்சி உதவி: + +`bugreportz -h` diff --git a/pages.ta/android/cmd.md b/pages.ta/android/cmd.md new file mode 100644 index 00000000000000..0d7d380bf547eb --- /dev/null +++ b/pages.ta/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> ஆண்ட்ராய்டு சேவை நிர்வாகி. +> மேலும் விவரத்திற்கு: . + +- இயங்கும் ஒவ்வொரு சேவையையும் பட்டியலிடுங்கள்: + +`cmd -l` + +- ஒரு குறிப்பிட்ட சேவையை அழைக்கவும்: + +`cmd {{எச்சரிக்கை}}` + +- வாதங்களுடன் ஒரு சேவையை அழைக்கவும்: + +`cmd {{வைப்ரேட்டர்}} {{அதிர்வு 300}}` diff --git a/pages.ta/android/dalvikvm.md b/pages.ta/android/dalvikvm.md new file mode 100644 index 00000000000000..618a0f4d19987f --- /dev/null +++ b/pages.ta/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> ஆண்ட்ராய்டு ஜாவா மெய்நிகர் இயந்திரம். +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட ஜாவா நிரலைத் தொடங்கவும்: + +`dalvikvm -classpath {{பாதை/டு/கோப்பு.jar}} {{வகுப்புப்பெயர்}}` diff --git a/pages.ta/android/dumpsys.md b/pages.ta/android/dumpsys.md new file mode 100644 index 00000000000000..bd231b7778821e --- /dev/null +++ b/pages.ta/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> ஆண்ட்ராய்டு சிஸ்டம் சேவைகள் பற்றிய தகவலை வழங்கவும். +> இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- அனைத்து கணினி சேவைகளுக்கும் கண்டறியும் வெளியீட்டைப் பெறவும்: + +`dumpsys` + +- ஒரு குறிப்பிட்ட கணினி சேவைக்கான கண்டறியும் வெளியீட்டைப் பெறவும்: + +`dumpsys {{சேவை}}` + +- அனைத்து சேவைகளையும் பட்டியலிடுங்கள் `dumpsys` இதைப் பற்றிய தகவல்களை வழங்க முடியும்: + +`dumpsys -l` + +- ஒரு சேவைக்கான சேவை சார்ந்த வாதங்களைப் பட்டியலிடுங்கள்: + +`dumpsys {{சேவை}} -h` + +- கண்டறியும் வெளியீட்டில் இருந்து ஒரு குறிப்பிட்ட சேவையை விலக்கவும்: + +`dumpsys --skip {{சேவை}}` + +- நேரம் முடிவடையும் காலத்தை வினாடிகளில் குறிப்பிடவும் (இயல்புநிலையிலிருந்து 10 வினாடிகள் வரை): + +`dumpsys -t {{வினாடிகள்}}` diff --git a/pages.ta/android/getprop.md b/pages.ta/android/getprop.md new file mode 100644 index 00000000000000..5fb655643535f0 --- /dev/null +++ b/pages.ta/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}}` + +- ஆண்ட்ராய்டு வைஃபை கார்டின் MAC முகவரியைக் காட்டவும்: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.ta/android/input.md b/pages.ta/android/input.md new file mode 100644 index 00000000000000..04ade3e9b2d1cf --- /dev/null +++ b/pages.ta/android/input.md @@ -0,0 +1,25 @@ +# input + +> நிகழ்வுக் குறியீடுகள் அல்லது தொடுதிரை சைகைகளை ஆண்ட்ராய்டு சாதனத்திற்கு அனுப்பவும். +> இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- ஆண்ட்ராய்டு சாதனத்திற்கு ஒற்றை எழுத்துக்கான நிகழ்வுக் குறியீட்டை அனுப்பவும்: + +`input keyevent {{நிகழ்வு_குறியீடு}}` + +- ஆண்ட்ராய்டு சாதனத்திற்கு உரையை அனுப்பு (`%s` என்பது இடைவெளிகளைக் குறிக்கிறது): + +`input text "{{உரை}}"` + +- ஆண்ட்ராய்டு சாதனத்திற்கு ஒரு முறை தட்டவும்: + +`input tap {{எக்ஸ்_போஸ்}} {{ஒய்_போஸ்}}` + +- ஆண்ட்ராய்டு சாதனத்திற்கு ஸ்வைப் சைகையை அனுப்பவும்: + +`input swipe {{எக்ஸ்_தொடக்கம்}} {{ஒய்_தொடக்கம்}} {{எக்ஸ்_முடிவு}} {{ஒய்_முடிவு}} {{காலம்_மில்லி_வினாடியில்}}` + +- ஸ்வைப் சைகையைப் பயன்படுத்தி ஆண்ட்ராய்டு சாதனத்திற்கு நீண்ட அழுத்தத்தை அனுப்பவும்: + +`input swipe {{எக்ஸ்_போஸ்}} {{ஒய்_போஸ்}} {{எக்ஸ்_போஸ்}} {{ஒய்_போஸ்}} {{காலம்_மில்லி_வினாடியில்}}` diff --git a/pages.ta/android/logcat.md b/pages.ta/android/logcat.md new file mode 100644 index 00000000000000..d87ca885b80792 --- /dev/null +++ b/pages.ta/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> கணினி செய்திகளின் பதிவை டம்ப் செய்யவும். +> மேலும் விவரத்திற்கு: . + +- கணினி பதிவுகளைக் காண்பி: + +`logcat` + +- ஒரு கோப்பில் கணினி பதிவுகளை எழுதவும்: + +`logcat -f {{பாதை/டு/கோப்பு}}` + +- வழக்கமான வெளிப்பாட்டுடன் பொருந்தக்கூடிய காட்சி வரிகள்: + +`logcat --regex {{வழக்கமான_வெளிப்பாடு}}` diff --git a/pages.ta/android/pkg.md b/pages.ta/android/pkg.md new file mode 100644 index 00000000000000..e3735910e2750e --- /dev/null +++ b/pages.ta/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> டெர்மக்ஸ் க்கான தொகுப்பு மேலாண்மை பயன்பாடு. +> மேலும் விவரத்திற்கு: . + +- நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் மேம்படுத்தவும்: + +`pkg upgrade` + +- ஒரு தொகுப்பை நிறுவவும்: + +`pkg install {{தொகுப்பு}}` + +- தொகுப்பை நிறுவல் நீக்கவும்: + +`pkg uninstall {{தொகுப்பு}}` + +- தொகுப்பை மீண்டும் நிறுவவும்: + +`pkg reinstall {{தொகுப்பு}}` + +- தொகுப்பைத் தேடுங்கள்: + +`pkg search {{தொகுப்பு}}` diff --git a/pages.ta/android/pm.md b/pages.ta/android/pm.md new file mode 100644 index 00000000000000..9ad896daadf68d --- /dev/null +++ b/pages.ta/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 {{செயலி}}` diff --git a/pages.ta/android/screencap.md b/pages.ta/android/screencap.md new file mode 100644 index 00000000000000..cc29ef3fe46943 --- /dev/null +++ b/pages.ta/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> மொபைல் டிஸ்ப்ளேவின் ஸ்கிரீன் ஷாட்டை எடுக்கவும். +> இந்த கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- ஒரு ஸ்கிரீன் ஷாட்டை எடுங்கள்: + +`screencap {{பாதை/டு/கோப்பு}}` diff --git a/pages.ta/android/settings.md b/pages.ta/android/settings.md new file mode 100644 index 00000000000000..3b0aed8b047e42 --- /dev/null +++ b/pages.ta/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> ஆண்ட்ராய்டு ஓஎஸ் பற்றிய தகவல்களைப் பெறுங்கள். +> மேலும் விவரத்திற்கு: . + +- `குளோபல்` பெயர்வெளியில் அமைப்புகளின் பட்டியலைக் காண்பி: + +`settings list {{குளோபல்}}` + +- ஒரு குறிப்பிட்ட அமைப்பின் மதிப்பைப் பெறவும்: + +`settings get {{குளோபல்}} {{விமானம்_முறை_ஆன்}}` + +- ஒரு அமைப்பின் குறிப்பிட்ட மதிப்பை அமைக்கவும்: + +`settings put {{குளோபல்}} {{திரை_பிரகாசம்}} {{42}}` + +- ஒரு குறிப்பிட்ட அமைப்பை நீக்கு: + +`settings delete {{பாதுகாப்பான}} {{திரை_சேமிப்பான்_இயக்கப்பட்டது}}` diff --git a/pages.ta/android/wm.md b/pages.ta/android/wm.md new file mode 100644 index 00000000000000..1de2ff07f364b3 --- /dev/null +++ b/pages.ta/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> ஆண்ட்ராய்டு சாதனத்தின் திரை பற்றிய தகவலைக் காட்டு. +> இந்தக் கட்டளையை `adb shell` மூலம் மட்டுமே பயன்படுத்த முடியும். +> மேலும் விவரத்திற்கு: . + +- ஆண்ட்ராய்டு சாதனத்தின் திரையின் இயற்பியல் அளவைக் காட்டு: + +`wm {{அளவு}}` + +- ஆண்ட்ராய்டு சாதனத்தின் திரையின் உடல் அடர்த்தியைக் காட்டவும்: + +`wm {{அடர்த்தி}}` diff --git a/pages.ta/common/ab.md b/pages.ta/common/ab.md index b931a0813b44d7..1bf9d77b6e47fb 100644 --- a/pages.ta/common/ab.md +++ b/pages.ta/common/ab.md @@ -1,20 +1,24 @@ # ab -> அப்பாச்சி தரப்படுத்தல் கருவி. சுமை சோதனை செய்ய எளிய கருவி. -> மேலும் தகவல்: . +> அப்பாச்சி HTTP சர்வர் தரப்படுத்தல் கருவி. +> மேலும் விவரத்திற்கு: . -- கொடுக்கப்பட்ட முகவரி க்கு 100 HTTP GET கோரிக்கைகளை இயக்கவும்: +- கொடுக்கப்பட்ட முகவரிக்கு 100 HTTP GET கோரிக்கைகளை இயக்கவும்: `ab -n {{100}} {{முகவரி}}` -- கொடுக்கப்பட்ட முகவரி க்கு 100 HTTP GET கோரிக்கைகளை ஒரே நேரத்தில் 10 கோரிக்கைகள் வீதம் செயல்படுத்தவும் : +- 100 HTTP GET கோரிக்கைகளை, ஒரே நேரத்தில் 10 தொகுதிகளில், URL முகவரிக்கு செயல்படுத்தவும்: `ab -n {{100}} -c {{10}} {{முகவரி}}` -- இணைப்பை தொடரச்செய்: +- ஒரு கோப்பிலிருந்து JSON பேலோடைப் பயன்படுத்தி, 100 HTTP POST கோரிக்கைகளை URL க்கு செயல்படுத்தவும்: + +`ab -n {{100}} -T {{application/json}} -p {{பாதை/டு/கோப்பு.json}} {{முகவரி}}` + +- HTTP [K]eep Alive ஐப் பயன்படுத்தவும், அதாவது ஒரு HTTP அமர்வுக்குள் பல கோரிக்கைகளைச் செய்யவும்: `ab -k {{முகவரி}}` -- தரப்படுத்தல் குறிக்க செலவழிக்க அதிகபட்ச விநாடிகளை அமைக்கவும்: +- தரப்படுத்தலுக்கு செலவிட வேண்டிய அதிகபட்ச வினாடிகளை அமைக்கவும்: `ab -t {{60}} {{முகவரி}}` diff --git a/pages.ta/common/ack.md b/pages.ta/common/ack.md index 3e6b7affabf54c..d72310507cb0e8 100644 --- a/pages.ta/common/ack.md +++ b/pages.ta/common/ack.md @@ -1,24 +1,37 @@ # ack -> புரோகிராமர்களுக்கு உகந்ததாக கிரப் போன்ற தேடல் கருவி. -> மேலும் தகவல்: . +> டெவலப்பர்களுக்காக உகந்ததாக `grep` போன்ற ஒரு தேடல் கருவி. +> மேலும் பார்க்கவும்: `rg`, இது மிகவும் வேகமானது. +> மேலும் விவரத்திற்கு: . -- "காலை" கொண்ட கோப்புகளைக் கண்டறியவும்: +- தற்போதைய கோப்பகத்தில் ஒரு சரம் அல்லது வழக்கமான வெளிப்பாடு உள்ள கோப்புகளை மீண்டும் மீண்டும் தேடவும்: -`ack {{காலை}}` +`ack "{{தேடல்_முறை}}"` -- ஒரு குறிப்பிட்ட வகை கோப்புகளைக் கண்டறியவும்: +- கேஸ்-சென்சிட்டிவ் பேட்டர்னைத் தேடுங்கள்: -`ack --ruby {{காலை}}` +`ack --ignore-case "{{தேடல்_முறை}}"` -- "காலை" என்ற சொல்லின் மொத்த பொருத்தங்களை எண்ணிக்கையை எண்ணவும்: +- ஒரு வடிவத்துடன் பொருந்தக்கூடிய வரிகளைத் தேடவும், [o]பொருந்திய உரையை மட்டும் அச்சிடவும் மற்றும் வரியின் மீதமுள்ளவை அல்ல: -`ack -ch {{காலை}}` +`ack -o "{{தேடல்_முறை}}"` -- காலை என்னும் சொல்லை கொண்ட ஒவ்வொரு கோப்பின் பெயர் மற்றும் பொருத்தங்களின் எண்ணிக்கையை காட்டவும்: +- ஒரு குறிப்பிட்ட வகை கோப்புகளுக்கான தேடலை வரம்பிடவும்: -`ack -cl {{காலை}}` +`ack --type={{ruby}} "{{தேடல்_முறை}}"` -- அனைத்து செல்லுபடியாகும் வகைகளையும் பட்டியலிடவும்: +- ஒரு குறிப்பிட்ட வகை கோப்புகளில் தேட வேண்டாம்: + +`ack --type=no{{ruby}} "{{தேடல்_முறை}}"` + +- காணப்பட்ட மொத்த பொருத்தங்களின் எண்ணிக்கையை எண்ணுங்கள்: + +`ack --count --no-filename "{{தேடல்_முறை}}"` + +- ஒவ்வொரு கோப்பிற்கும் கோப்பு பெயர்கள் மற்றும் பொருத்தங்களின் எண்ணிக்கையை மட்டும் அச்சிடவும்: + +`ack --count --files-with-matches "{{தேடல்_முறை}}"` + +- `--type` உடன் பயன்படுத்தக்கூடிய அனைத்து மதிப்புகளையும் பட்டியலிடுங்கள்: `ack --help-types` diff --git a/pages.ta/common/b2sum.md b/pages.ta/common/b2sum.md new file mode 100644 index 00000000000000..778b8301029009 --- /dev/null +++ b/pages.ta/common/b2sum.md @@ -0,0 +1,28 @@ +# b2sum + +> BLAKE2 கிரிப்டோகிராஃபிக் செக்ஸம்களைக் கணக்கிடவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு கோப்பிற்கான BLAKE2 செக்சம் கணக்கிடவும்: + +`b2sum {{பாதை/டு/கோப்பு}}` + +- பல கோப்புகளுக்கான BLAKE2 செக்சம்களைக் கணக்கிடவும்: + +`b2sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- stdin இலிருந்து BLAKE2 செக்சம் கணக்கிடவும்: + +`{{சில_கட்டளை}} | b2sum` + +- BLAKE2 தொகைகள் மற்றும் கோப்புப்பெயர்களின் கோப்பைப் படித்து, எல்லா கோப்புகளிலும் செக்சம்கள் பொருந்துகின்றன என்பதைச் சரிபார்க்கவும்: + +`b2sum --check {{பாதை/டு/கோப்பு.b2}}` + +- விடுபட்ட கோப்புகள் அல்லது சரிபார்ப்பு தோல்வியுற்றால் மட்டுமே செய்தியைக் காட்டவும்: + +`b2sum --check --quiet {{பாதை/டு/கோப்பு.b2}}` + +- விடுபட்ட கோப்புகளைப் புறக்கணித்து, சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும்: + +`b2sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.b2}}` diff --git a/pages.ta/common/brew.md b/pages.ta/common/brew.md new file mode 100644 index 00000000000000..39f5c352d47a6d --- /dev/null +++ b/pages.ta/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> மேக் ஓஎஸ் மற்றும் லினக்ஸ் கான தொகுப்பு மேலாளர். +> மேலும் விவரத்திற்கு: . + +- ஃபார்முலா அல்லது கேஸ்கின் சமீபத்திய நிலையான பதிப்பை நிறுவவும் (மேம்பாடு பதிப்புகளுக்கு `--devel` ஐப் பயன்படுத்தவும்): + +`brew install {{சூத்திரம்}}` + +- நிறுவப்பட்ட அனைத்து சூத்திரங்கள் மற்றும் கேஸ்க்களைப் பட்டியலிடுங்கள்: + +`brew list` + +- நிறுவப்பட்ட சூத்திரம் அல்லது கேஸ்க்கை மேம்படுத்தவும் (எதுவும் வழங்கப்படவில்லை என்றால், நிறுவப்பட்ட அனைத்து சூத்திரங்களும்/கேஸ்களும் மேம்படுத்தப்படும்): + +`brew upgrade {{சூத்திரம்}}` + +- ஹோம்ப்ரூவின் புதிய பதிப்பு மற்றும் ஹோம்ப்ரூ மூல களஞ்சியத்திலிருந்து அனைத்து சூத்திரங்கள் மற்றும் கேஸ்க்களைப் பெறவும்: + +`brew update` + +- மிகவும் சமீபத்திய பதிப்பு கிடைக்கக்கூடிய சூத்திரங்கள் மற்றும் கேஸ்க்களைக் காட்டு: + +`brew outdated` + +- கிடைக்கக்கூடிய சூத்திரங்கள் (அதாவது தொகுப்புகள்) மற்றும் கேஸ்கள் (அதாவது சொந்த தொகுப்புகள்) ஆகியவற்றைத் தேடுங்கள்: + +`brew search {{உரை}}` + +- ஒரு சூத்திரம் அல்லது கேஸ்கலை (பதிப்பு, நிறுவல் பாதை, சார்புகள் போன்றவை) பற்றிய தகவலைக் காண்பி: + +`brew info {{சூத்திரம்}}` + +- சாத்தியமான சிக்கல்களுக்கு உள்ளூர் ஹோம்ப்ரூவின் நிறுவலைச் சரிபார்க்கவும்: + +`brew doctor` diff --git a/pages.ta/common/bundler.md b/pages.ta/common/bundler.md new file mode 100644 index 00000000000000..20df1206eb1043 --- /dev/null +++ b/pages.ta/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> இக்கட்டளை `bundle` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr bundle` diff --git a/pages.ta/common/calc.md b/pages.ta/common/calc.md new file mode 100644 index 00000000000000..03761e6690c5bb --- /dev/null +++ b/pages.ta/common/calc.md @@ -0,0 +1,36 @@ +# calc + +> முனையத்தில் ஒரு ஊடாடும் தன்னிச்சையான துல்லியமான கால்குலேட்டர். +> மேலும் விவரத்திற்கு: . + +- ஊடாடும் பயன்முறையில் `calc` ஐத் தொடங்கவும்: + +`calc` + +- ஊடாடாத பயன்முறையில் கணக்கீடு செய்யவும்: + +`calc '{{85 * (36 / 4)}}'` + +- வெளியீட்டு வடிவமைப்பு இல்லாமல் கணக்கீடு செய்யுங்கள் (குழாய்களுடன் பயன்படுத்த): + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- ஒரு கணக்கீட்டைச் செய்து, பின்னர் [i]ஊடாடும் பயன்முறைக்கு மாறவும்: + +`calc -i '{{sqrt(2)}}'` + +- ஒரு குறிப்பிட்ட அனுமதி முறை இல் `calc` ஐத் தொடங்கவும் (0 முதல் 7, இயல்புநிலை 7 வரை): + +`calc -m {{முறை}}` + +- `calc` அறிமுகத்தைப் பார்க்கவும்: + +`calc help intro` + +- `calc` இன் மேலோட்டத்தைப் பார்க்கவும்: + +`calc help overview` + +- `calc` கையேட்டைத் திறக்கவும்: + +`calc help` diff --git a/pages.ta/common/cargo.md b/pages.ta/common/cargo.md new file mode 100644 index 00000000000000..e81111fb58decd --- /dev/null +++ b/pages.ta/common/cargo.md @@ -0,0 +1,37 @@ +# cargo + +> ரஸ்ட் திட்டங்கள் மற்றும் அவற்றின் தொகுதி சார்புகளை (கிரேட்ஸ்) நிர்வகிக்கவும். +> `cargo build` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. +> மேலும் விவரத்திற்கு: . + +- கிரேட்ஸைத் தேடுங்கள்: + +`cargo search {{தேடல்_சரம்}}` + +- ஒரு பெட்டியை நிறுவவும்: + +`cargo install {{கிரேட்_பெயர்}}` + +- நிறுவப்பட்ட பெட்டிகளை பட்டியலிடுங்கள்: + +`cargo install --list` + +- தற்போதைய கோப்பகத்தில் புதிய பைனரி அல்லது லைப்ரரி ரஸ்ட் திட்டத்தை உருவாக்கவும்: + +`cargo init --{{bin|lib}}` + +- குறிப்பிட்ட கோப்பகத்தில் புதிய பைனரி அல்லது லைப்ரரி ரஸ்ட் திட்டத்தை உருவாக்கவும்: + +`cargo new {{அடைவிற்குப்/பாதை}} --{{bin|lib}}` + +- தற்போதைய கோப்பகத்தில் ரஸ்ட் திட்டத்தை உருவாக்கவும்: + +`cargo build` + +- நைட்லி கம்பைலரைப் பயன்படுத்தி தற்போதைய கோப்பகத்தில் ரஸ்ட் திட்டத்தை உருவாக்கவும்: + +`cargo +nightly build` + +- குறிப்பிட்ட எண்ணிக்கையிலான நூல்களைப் பயன்படுத்தி உருவாக்கவும் (இயல்புநிலை CPU கோர்களின் எண்ணிக்கை): + +`cargo build --jobs {{நூல்களின்_எண்ணிக்கை}}` diff --git a/pages.ta/common/cd.md b/pages.ta/common/cd.md new file mode 100644 index 00000000000000..742aec258e1efe --- /dev/null +++ b/pages.ta/common/cd.md @@ -0,0 +1,28 @@ +# cd + +> தற்போதைய வேலை கோப்பகத்தை மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- குறிப்பிட்ட கோப்பகத்திற்குச் செல்லவும்: + +`cd {{அடைவிற்குப்/பாதை}}` + +- தற்போதைய கோப்பகத்தின் பெற்றோருக்குச் செல்லவும்: + +`cd ..` + +- தற்போதைய பயனரின் முகப்பு கோப்பகத்திற்குச் செல்லவும்: + +`cd` + +- குறிப்பிட்ட பயனரின் முகப்பு கோப்பகத்திற்குச் செல்லவும்: + +`cd ~{{பயனர்ப்பெயர்}}` + +- முன்பு தேர்ந்தெடுக்கப்பட்ட கோப்பகத்திற்குச் செல்லவும்: + +`cd -` + +- ரூட் கோப்பகத்திற்குச் செல்லவும்: + +`cd /` diff --git a/pages.ta/common/cksum.md b/pages.ta/common/cksum.md new file mode 100644 index 00000000000000..20fa171c6ff522 --- /dev/null +++ b/pages.ta/common/cksum.md @@ -0,0 +1,9 @@ +# cksum + +> கோப்பின் CRC சரிகாண்தொகையைக் கணித்து அதில் எத்தனை எண்ணிருமிகளுள்ளன என்றெண்ணு. +> குறிப்பு: பழைய Unix கணினிகளில் CRC கணிமுறை மாறலாம். +> மேலும் விவரத்திற்கு: . + +- கோப்பின் 32-இருமி சரிகாண்தொகையையும் எண்ணிருமி அலகில் கோப்பளவையும் பெயரையும் காட்டு: + +`cksum {{பாதை/டு/கோப்பு}}` diff --git a/pages.ta/common/clamav.md b/pages.ta/common/clamav.md new file mode 100644 index 00000000000000..912c675a25d9bb --- /dev/null +++ b/pages.ta/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> இக்கட்டளை `clamdscan` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clamdscan` diff --git a/pages.ta/common/clang-cpp.md b/pages.ta/common/clang-cpp.md new file mode 100644 index 00000000000000..e879b9eb08cc65 --- /dev/null +++ b/pages.ta/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> இக்கட்டளை `clang++` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clang++` diff --git a/pages.ta/common/clojure.md b/pages.ta/common/clojure.md new file mode 100644 index 00000000000000..2786b59dae9e7c --- /dev/null +++ b/pages.ta/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> இக்கட்டளை `clj` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clj` diff --git a/pages.ta/common/cola.md b/pages.ta/common/cola.md new file mode 100644 index 00000000000000..37fe15a7c0f6ae --- /dev/null +++ b/pages.ta/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> இக்கட்டளை `git-cola` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr git-cola` diff --git a/pages.ta/common/cp.md b/pages.ta/common/cp.md index 041e7e2c61c2f5..4142511d68c805 100644 --- a/pages.ta/common/cp.md +++ b/pages.ta/common/cp.md @@ -1,28 +1,28 @@ # cp > கோப்புகளையோ அடைவுகளையோ நகலெடு. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கோப்பை நகலெடு: -`cp {{மூலக்கோப்பிற்குப்/பாதை}} {{நகல்/கோப்பிற்குப்/பாதை}}` +`cp {{பாதை/டு/மூல_கோப்பு.ext}} {{பாதை/டு/நகல்_கோப்பு.ext}}` - கோப்பை நகலெடுத்து அடைவொன்றிற்குள் அதே பெயருடன் வை: -`cp {{மூலக்கோப்பிற்குப்/பாதை}} {{நகல்/கோப்பின்/தாயடைவிற்குப்/பாதை}}` +`cp {{பாதை/டு/மூல_கோப்பு.ext}} {{நகல்/கோப்பின்/தாயடைவிற்குப்/பாதை}}` -- அடைவையும் அதில் உள்ளடங்கிய அனைத்தையும் தற்சுருளாக நகலெடு: +- ஒரு கோப்பகத்தின் உள்ளடக்கங்களை மீண்டும் மீண்டும் மற்றொரு இடத்திற்கு நகலெடுக்கவும் (இலக்கு இருந்தால், அடைவு அதன் உள்ளே நகலெடுக்கப்படும்): -`cp -r {{மூல/அடைவிற்குப்/பாதை}} {{நகல்/அடைவிற்குப்/பாதை}}` +`cp -R {{மூல/அடைவிற்குப்/பாதை}} {{நகல்/அடைவிற்குப்/பாதை}}` -- அடைவையும் அதில் உள்ளடங்கிய அனைத்தையும் தற்சுருளாக வளவள நிலையில் (நகலெடுக்கப்படும் கோப்புகள் பட்டியலிடப்படும்) நகலெடு: +- ஒரு கோப்பகத்தை மீண்டும் மீண்டும், வாய்மொழி முறையில் நகலெடுக்கவும் (அவை நகலெடுக்கப்பட்ட கோப்புகளைக் காட்டுகிறது): -`cp -vr {{மூல/அடைவிற்குப்/பாதை}} {{நகல்/அடைவிற்குப்/பாதை}}` - -- அடைவின் உள்ளடக்கத்தை நகலெடுத்து இன்னொரு அடைவிற்குள் வை: - -`cp -r {{மூல/அடைவிற்குப்/பாதை/*}} {{நகல்/அடைவிற்குப்/பாதை}}` +`cp -vR {{மூல/அடைவிற்குப்/பாதை}} {{நகல்/அடைவிற்குப்/பாதை}}` - txt வகைப்பெயருடையக் கோப்புகளை ஊடாட்ட நிலையில் (ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் உறுதிப்படுத்தக் கேட்கும்) நகலெடு: `cp -i {{*.txt}} {{நகல்/அடைவிற்குப்/பாதை}}` + +- நகலெடுக்கும் முன் குறியீட்டு இணைப்புகளைப் பின்பற்றவும்: + +`cp -L {{இணைப்பு}} {{நகல்/அடைவிற்குப்/பாதை}}` diff --git a/pages.ta/common/cron.md b/pages.ta/common/cron.md new file mode 100644 index 00000000000000..7aa126c4736867 --- /dev/null +++ b/pages.ta/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> இக்கட்டளை `crontab` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr crontab` diff --git a/pages.ta/common/df.md b/pages.ta/common/df.md new file mode 100644 index 00000000000000..38e5d98db897f5 --- /dev/null +++ b/pages.ta/common/df.md @@ -0,0 +1,24 @@ +# df + +> கோப்பு முறைமை வட்டு இட உபயோகத்தின் மேலோட்டத்தை அளிக்கிறது. +> மேலும் விவரத்திற்கு: . + +- அனைத்து கோப்பு முறைமைகளையும் அவற்றின் வட்டு பயன்பாட்டையும் காண்பி: + +`df` + +- அனைத்து கோப்பு முறைமைகளையும் அவற்றின் வட்டு பயன்பாட்டையும் மனிதர்கள் படிக்கக்கூடிய வடிவத்தில் காண்பி: + +`df -h` + +- கொடுக்கப்பட்ட கோப்பு அல்லது கோப்பகத்தைக் கொண்ட கோப்பு முறைமை மற்றும் அதன் வட்டு பயன்பாட்டைக் காண்பி: + +`df {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` + +- இலவச ஐனோட்களின் எண்ணிக்கையில் புள்ளிவிவரங்களைக் காண்பி: + +`df -i` + +- கோப்பு முறைமைகளைக் காண்பி ஆனால் குறிப்பிட்ட வகைகளை விலக்கவும்: + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.ta/common/fossil-ci.md b/pages.ta/common/fossil-ci.md new file mode 100644 index 00000000000000..5d03afdacdc076 --- /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 00000000000000..b3c007a02304a2 --- /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 00000000000000..bb6cadddcbb913 --- /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 00000000000000..2adaf1a658dcfb --- /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/g++.md b/pages.ta/common/g++.md new file mode 100644 index 00000000000000..787ab0940bb87c --- /dev/null +++ b/pages.ta/common/g++.md @@ -0,0 +1,29 @@ +# g++ + +> C++ மூலக் கோப்புகளைத் தொகுக்கிறது. +> GCC இன் பகுதி (GNU கம்பைலர் சேகரிப்பு). +> மேலும் விவரத்திற்கு: . + +- இயங்கக்கூடிய பைனரியில் ஒரு மூலக் குறியீடு கோப்பை தொகுக்கவும்: + +`g++ {{பாதை/டு/மூல.c}} -o {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}}` + +- அனைத்து பிழைகள் மற்றும் எச்சரிக்கைகள் (கிட்டத்தட்ட) காட்சி: + +`g++ {{பாதை/டு/மூல.c}} -Wall -o {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}}` + +- (C++98/C++11/C++14/C++17) தொகுக்க ஒரு மொழித் தரத்தைத் தேர்வு செய்யவும்: + +`g++ {{பாதை/டு/மூல.c}} -std={{c++98|c++11|c++14|c++17}} -o {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}}` + +- மூலக் கோப்பை விட வேறு பாதையில் அமைந்துள்ள நூலகங்களைச் சேர்க்கவும்: + +`g++ {{பாதை /டு/மூல.c}} -o {பாதை/டு/வெளியீடு_இயங்கக்கூடியது}} -I{{பாதை/டு/தலைப்பு}} -L{{பாதை/நூலகம்}} -l{{நூலகம்_பெயர்}}` + +- பல மூலக் குறியீடு கோப்புகளை ஒரு இயங்கக்கூடிய பைனரியில் தொகுத்து இணைக்கவும்: + +`g++ -c {{பாதை/டு/மூலம்_1.cpp பாதை/டு/மூலம்_2.cpp ...}} && g++ -o {{பாதை/டு/வெளியீடு_செயல்படுத்தக்கூடியது}} {{பாதை/டு/மூலம்_1.o பாதை/டு/மூலம்_2.o ...}}` + +- பதிப்பைக் காட்டு: + +`g++ --version` diff --git a/pages.ta/common/gcc.md b/pages.ta/common/gcc.md new file mode 100644 index 00000000000000..131833518ebfd3 --- /dev/null +++ b/pages.ta/common/gcc.md @@ -0,0 +1,24 @@ +# gcc + +> C மற்றும் C++ மூலக் கோப்புகளை முன் செயலாக்கம் செய்து தொகுத்து, பின்னர் அவற்றைச் சேகரித்து இணைக்கவும். +> மேலும் விவரத்திற்கு: . + +- பல மூல கோப்புகளை இயங்கக்கூடியதாக தொகுக்கவும்: + +`gcc {{பாதை/டு/மூல1.c பாதை/டு/மூல2.c ...}} --output {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}}` + +- வெளியீட்டில் எச்சரிக்கைகள் மற்றும் பிழைத்திருத்த குறியீடுகளை அனுமதிக்கவும்: + +`gcc {{பாதை/டு/மூல.c}} -Wall -Og --output {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}}` + +- வேறு பாதையிலிருந்து நூலகங்களைச் சேர்க்கவும்: + +`gcc {{பாதை/டு/மூல.c}} --output {{பாதை/டு/வெளியீடு_இயங்கக்கூடியது}} -I{{பாதை/டு/தலைப்பு}} -L{{பாதை/நூலகத்திற்கு}} -l{{நூலகம்_பெயர்}}` + +- மூலக் குறியீட்டை அசெம்பிளர் வழிமுறைகளில் தொகுக்கவும்: + +`gcc -S {{பாதை/டு/மூல.c}}` + +- இணைக்காமல் மூலக் குறியீட்டை தொகுக்கவும்: + +`gcc -c {{பாதை/டு/மூல.c}}` diff --git a/pages.ta/common/gem.md b/pages.ta/common/gem.md new file mode 100644 index 00000000000000..89f3e74a79fc5f --- /dev/null +++ b/pages.ta/common/gem.md @@ -0,0 +1,36 @@ +# gem + +> ரூபி நிரலாக்க மொழிக்கான தொகுப்பு மேலாளருடன் தொடர்பு கொள்ளுங்கள். +> மேலும் விவரத்திற்கு: . + +- தொலை ரத்தினங்களைத் தேடி, கிடைக்கக்கூடிய அனைத்து பதிப்புகளையும் காட்டு: + +`gem search {{வழக்கமான_வெளிப்பாடு}} --all` + +- ரத்தினத்தின் சமீபத்திய பதிப்பை நிறுவவும்: + +`gem install {{ரத்தின_பெயர்}}` + +- ஒரு ரத்தினத்தின் குறிப்பிட்ட பதிப்பை நிறுவவும்: + +`gem install {{ரத்தின_பெயர்}} --version {{1.0.0}}` + +- ஒரு ரத்தினத்தின் சமீபத்திய பொருந்தக்கூடிய (SemVer) பதிப்பை நிறுவவும்: + +`gem install {{ரத்தின_பெயர்}} --version '~> {{1.0}}'` + +- ஒரு ரத்தினத்தைப் புதுப்பிக்கவும்: + +`gem update {{ரத்தின_பெயர்}}` + +- அனைத்து உள்ளூர் ரத்தினங்களையும் பட்டியலிடுங்கள்: + +`gem list` + +- ஒரு ரத்தினத்தை நிறுவல் நீக்கவும்: + +`gem uninstall {{ரத்தின_பெயர்}}` + +- ஒரு ரத்தினத்தின் குறிப்பிட்ட பதிப்பை நிறுவல் நீக்கவும்: + +`gem uninstall {{ரத்தின_பெயர்}} --version {{1.0.0}}` diff --git a/pages.ta/common/gh-cs.md b/pages.ta/common/gh-cs.md new file mode 100644 index 00000000000000..c59e595a073e07 --- /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-add.md b/pages.ta/common/git-add.md index f4a8192b745035..c445bd4e50ed8e 100644 --- a/pages.ta/common/git-add.md +++ b/pages.ta/common/git-add.md @@ -1,11 +1,11 @@ # git add > மாற்றப்பட்ட கோப்புகளை குறியீட்டில் சேர்க்கிறது. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - குறியீட்டில் ஒரு கோப்பைச் சேர்க்க: -`git add {{கோப்புக்கான/பாதை}}` +`git add {{பாதை/டு/கோப்பு}}` - எல்லா கோப்புகளையும் சேர்க்கவும் (கண்காணிக்கப்பட்ட மற்றும் தடமறியப்படாத): @@ -25,7 +25,7 @@ - கொடுக்கப்பட்ட கோப்பின் ஊடாடும் கட்ட பாகங்கள் சேர்க்கவும்: -`git add -p {{கோப்புக்கான/பாதை}}` +`git add -p {{பாதை/டு/கோப்பு}}` - ஒரு கோப்பை ஊடாடும் வகையில் சேர்க்கவும்: diff --git a/pages.ta/common/git-am.md b/pages.ta/common/git-am.md index ebd4d7e41b50c3..e9564c8fc1063e 100644 --- a/pages.ta/common/git-am.md +++ b/pages.ta/common/git-am.md @@ -2,11 +2,11 @@ > பேட்ச் கோப்புகளைப் பயன்படுத்துங்கள். மின்னஞ்சல் வழியாக கமிட் பெறும்போது பயனுள்ளதாக இருக்கும். > பேட்ச் கோப்புகளை உருவாக்கக்கூடிய `git format-patch` கட்டளையை காண்க. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - பேட்ச் கோப்பைப் பயன்படுத்துங்கள்: -`git am {{கோப்புக்கான/பாதை/கோப்பு.patch}}` +`git am {{பாதை/டு/கோப்பு.patch}}` - பேட்ச் கோப்பைப் பயன்படுத்துவதற்கான செயல்முறையை நிறுத்தவும்: @@ -14,4 +14,4 @@ - கோப்புகளை நிராகரிக்க தோல்வியுற்ற ஹன்களை சேமித்து, முடிந்தவரை ஒரு பேட்ச் கோப்பைப் பயன்படுத்துங்கள்: -`git am --reject {{கோப்புக்கான/பாதை/கோப்பு.patch}}` +`git am --reject {{பாதை/டு/கோப்பு.patch}}` diff --git a/pages.ta/common/git-annex.md b/pages.ta/common/git-annex.md index 3662d7d078538c..f8f434ba5a8826 100644 --- a/pages.ta/common/git-annex.md +++ b/pages.ta/common/git-annex.md @@ -2,7 +2,7 @@ > கோப்புகளை அவற்றின் உள்ளடக்கங்களை சரிபார்க்காமல், ஜிட் மூலம் நிர்வகிக்கவும். > ஒரு கோப்பு இணைக்கப்படும்போது, ​​அதன் உள்ளடக்கம் ஒரு முக்கிய மதிப்புக் கடைக்கு நகர்த்தப்படும், மேலும் உள்ளடக்கத்தை சுட்டிக்காட்டும் ஒரு சிம்லிங்க் செய்யப்படுகிறது. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - உதவி: @@ -14,11 +14,11 @@ - ஒரு கோப்பைச் சேர்க்கவும்: -`git annex add {{கோப்பு_அல்லது_கோப்பகத்திற்கான/பாதை}}` +`git annex add {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` - ஒரு கோப்பு அல்லது கோப்பகத்தின் தற்போதைய நிலையைக் காட்டு: -`git annex status {{கோப்பு_அல்லது_கோப்பகத்திற்கான/பாதை}}` +`git annex status {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` - தொலைநிலையுடன் உள்ளூர் களஞ்சியத்தை ஒத்திசைக்கவும்: @@ -26,4 +26,4 @@ - ஒரு கோப்பு அல்லது கோப்பகத்தைப் பெறுங்கள்: -`git annex get {{கோப்பு_அல்லது_கோப்பகத்திற்கான/பாதை}}` +`git annex get {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` diff --git a/pages.ta/common/git-apply.md b/pages.ta/common/git-apply.md index 1576e4efc97a84..8cc5a3f58ccdc2 100644 --- a/pages.ta/common/git-apply.md +++ b/pages.ta/common/git-apply.md @@ -1,15 +1,15 @@ # git apply > கோப்புகள் மற்றும் / அல்லது குறியீட்டுக்கு ஒரு இணைப்பு பயன்படுத்தவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - இணைக்கப்பட்ட கோப்புகளைப் பற்றிய செய்திகளை அச்சிடுங்கள்: -`git apply --verbose {{கோப்புக்கான/பாதை}}` +`git apply --verbose {{பாதை/டு/கோப்பு}}` - இணைக்கப்பட்ட கோப்புகளை குறியீட்டில் பயன்படுத்தவும் மற்றும் சேர்க்கவும்: -`git apply --index {{கோப்புக்கான/பாதை}}` +`git apply --index {{பாதை/டு/கோப்பு}}` - ரிமோட் பேட்ச் கோப்பைப் பயன்படுத்துங்கள்: @@ -17,12 +17,12 @@ - உள்ளீட்டிற்கான வெளியீட்டு வேறுபாடு நிலை மற்றும் இணைப்பு பொருந்தும்: -`git apply --stat --apply {{கோப்புக்கான/பாதை}}` +`git apply --stat --apply {{பாதை/டு/கோப்பு}}` - பேட்சை தலைகீழாகப் பயன்படுத்துங்கள்: -`git apply --reverse {{கோப்புக்கான/பாதை}}` +`git apply --reverse {{பாதை/டு/கோப்பு}}` - பேட்ச் முடிவை குறியீட்டில் வேலை செய்யும் மரத்தை மாற்றாமல் சேமிக்கவும்: -`git apply --cache {{கோப்புக்கான/பாதை}}` +`git apply --cache {{பாதை/டு/கோப்பு}}` diff --git a/pages.ta/common/git-archive.md b/pages.ta/common/git-archive.md index 03515b89a4f118..6880e9cc449439 100644 --- a/pages.ta/common/git-archive.md +++ b/pages.ta/common/git-archive.md @@ -1,7 +1,7 @@ # git archive > பெயரிடப்பட்ட மரத்திலிருந்து கோப்புகளின் காப்பகத்தை உருவாக்கவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - தற்போதைய HEAD இன் உள்ளடக்கங்களிலிருந்து ஒரு தார் காப்பகத்தை உருவாக்கி அதை நிலையான வெளியீட்டில் அச்சிடுக: @@ -13,16 +13,16 @@ - மேலே உள்ளதைப் போலவே, ஆனால் கோப்புக்கு ஜிப் காப்பகத்தை எழுதவும்: -`git archive --verbose --output={{கோப்புக்கான/பாதை/கோப்பு.zip}} HEAD` +`git archive --verbose --output={{பாதை/டு/கோப்பு.zip}} HEAD` - ஒரு குறிப்பிட்ட கிளையில் சமீபத்திய உறுதிப்பாட்டின் உள்ளடக்கங்களிலிருந்து தார் காப்பகத்தை உருவாக்கவும்: -`git archive --output={{கோப்புக்கான/பாதை/கோப்பு.tar}} {{கிளை_பெயர்}}` +`git archive --output={{பாதை/டு/கோப்பு.tar}} {{கிளை_பெயர்}}` - ஒரு குறிப்பிட்ட கோப்பகத்தின் உள்ளடக்கங்களிலிருந்து தார் காப்பகத்தை உருவாக்கவும்: -`git archive --output={{கோப்புக்கான/பாதை/கோப்பு.tar}} HEAD:{{கோப்பகத்திற்கான/பாதை}}` +`git archive --output={{பாதை/டு/கோப்பு.tar}} HEAD:{{அடைவிற்குப்/பாதை}}` - ஒவ்வொரு கோப்பிற்கும் ஒரு குறிப்பிட்ட கோப்பகத்திற்குள் காப்பகப்படுத்த ஒரு பாதையைத் தயாரிக்கவும்: -`git archive --output={{கோப்புக்கான/பாதை/கோப்பு.tar}} --prefix={{தயார்படுத்தும்/பாதை}}/ HEAD` +`git archive --output={{பாதை/டு/கோப்பு.tar}} --prefix={{தயார்படுத்தும்/பாதை}}/ HEAD` diff --git a/pages.ta/common/git-bisect.md b/pages.ta/common/git-bisect.md index 115a4c90e68536..6665c506f9ceb6 100644 --- a/pages.ta/common/git-bisect.md +++ b/pages.ta/common/git-bisect.md @@ -2,13 +2,13 @@ > ஒரு பிழையை அறிமுகப்படுத்திய உறுதிப்பாட்டைக் கண்டுபிடிக்க பைனரி தேடலைப் பயன்படுத்தவும். > தவறான உறுதிப்பாட்டை படிப்படியாகக் குறைக்க கிட் தானாகவே கமிட் வரைபடத்தில் முன்னும் பின்னுமாக குதிக்கிறது. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - அறியப்பட்ட தரமற்ற கமிட் மற்றும் அறியப்பட்ட சுத்தமான (பொதுவாக பழையது) வரம்புக்குட்பட்ட ஒரு கமிட் வரம்பில் ஒரு இரு அமர்வு தொடங்கவும்: `git bisect start {{மோசமான_கமிட்}} {{நல்ல_கமிட்}}` -- `git bisect` தேர்ந்தெடுக்கும் ஒவ்வொரு உறுதிப்பாட்டிற்கும், சிக்கலுக்காக அதைச் சோதித்தபின் அதை" கெட்டது "அல்லது" நல்லது "என்று குறிக்கவும்: +- `git bisect` தேர்ந்தெடுக்கும் ஒவ்வொரு உறுதிப்பாட்டிற்கும், சிக்கலுக்காக அதைச் சோதித்தபின் அதை "கெட்டது" (bad) அல்லது "நல்லது" (good) என்று குறிக்கவும்: `git bisect {{good|bad}}` @@ -19,3 +19,7 @@ - ஒரு பிரிவின் போது ஒரு உறுதிப்பாட்டைத் தவிர்க்கவும் (எ.கா. வேறுபட்ட பிரச்சினை காரணமாக சோதனைகளில் தோல்வியுற்றது): `git bisect skip` + +- இதுவரை செய்தவற்றின் பதிவைக் காண்பி: + +`git bisect log` diff --git a/pages.ta/common/git-blame.md b/pages.ta/common/git-blame.md index 18ad33e24ee418..ee963eae3041e7 100644 --- a/pages.ta/common/git-blame.md +++ b/pages.ta/common/git-blame.md @@ -1,12 +1,20 @@ # git blame > ஒரு கோப்பின் ஒவ்வொரு வரியிலும் கமிட் ஹாஷ் மற்றும் கடைசி எழுத்தாளரைக் காட்டு. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . -- எழுத்தாளர் பெயருடன் கோப்பை அச்சிட்டு ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்: +- ஆசிரியர் பெயருடன் கோப்பை அச்சிட்டு ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்: -`git blame {{கோப்பு}}` +`git blame {{பாதை/டு/கோப்பு}}` -- எழுத்தாளர் மின்னஞ்சலுடன் கோப்பை அச்சிட்டு ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்: +- ஆசிரியர் மின்னஞ்சலுடன் கோப்பை அச்சிட்டு ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்: -`git blame -e {{கோப்பு}}` +`git blame -e {{பாதை/டு/கோப்பு}}` + +- ஆசிரியர் பெயருடன் கோப்பை அச்சிடவும் மற்றும் ஒவ்வொரு வரியிலும் ஒரு குறிப்பிட்ட கமிட்டில் ஹாஷ் கமிட் செய்யவும்: + +`git blame {{கமிட்}} {{பாதை/டு/கோப்பு}}` + +- ஆசிரியர் பெயருடன் கோப்பை அச்சிட்டு, ஒரு குறிப்பிட்ட உறுதிப்பாட்டிற்கு முன் ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்: + +`git blame {{கமிட்}}~ {{பாதை/டு/கோப்பு}}` diff --git a/pages.ta/common/git-branch.md b/pages.ta/common/git-branch.md index d039379291834b..3b43f22890bbb6 100644 --- a/pages.ta/common/git-branch.md +++ b/pages.ta/common/git-branch.md @@ -1,15 +1,15 @@ # git branch > கிளைகளுடன் வேலை செய்வதற்கான பிரதான கிட் கட்டளை. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . -- கணினியில் உள்ள அனைத்து கிளைகளையும் பட்டியலிடுங்கள். தற்போதைய கிளை `*` ஆல் சிறப்பிக்கப்படுகிறது: +- அனைத்து கிளைகளையும் பட்டியலிடுங்கள் (உள்ளூர் மற்றும் தொலைதூர; தற்போதைய கிளை `*` மூலம் சிறப்பிக்கப்படுகிறது): -`git branch` +`git branch --all` -- அனைத்து கிளைகளையும் பட்டியலிடுங்கள் (கணினி மற்றும் தொலை களஞ்சியங்களில்): +- எந்தெந்த கிளைகள் தங்கள் வரலாற்றில் குறிப்பிட்ட Git கமிட்டை உள்ளடக்கியிருக்கின்றன என்பதை பட்டியலிடுங்கள்: -`git branch -a` +`git branch --all --contains {{கமிட்_ஹாஷ்}}` - தற்போதைய கிளையின் பெயரைக் காட்டு: diff --git a/pages.ta/common/git-bundle.md b/pages.ta/common/git-bundle.md index e0ac3120b4caea..a4495ca1afa031 100644 --- a/pages.ta/common/git-bundle.md +++ b/pages.ta/common/git-bundle.md @@ -1,32 +1,32 @@ # git bundle > ஒரு காப்பக கோப்பில் பொருள்கள் மற்றும் குறிப்புகளை தொகுக்கவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - ஒரு குறிப்பிட்ட கிளையின் அனைத்து பொருள்கள் மற்றும் குறிப்புகளைக் கொண்ட ஒரு மூட்டை கோப்பை உருவாக்கவும்: -`git bundle create {{கோப்புக்கான/பாதை/கோப்பு.bundle}} {{கிளையின்_பெயர்}}` +`git bundle create {{பாதை/டு/கோப்பு.bundle}} {{கிளையின்_பெயர்}}` - அனைத்து கிளைகளின் மூட்டை கோப்பை உருவாக்கவும்: -`git bundle create {{கோப்புக்கான/பாதை/கோப்பு.bundle}} --all` +`git bundle create {{பாதை/டு/கோப்பு.bundle}} --all` - தற்போதைய கிளையின் கடைசி 5 கமிட்டுகளின் மூட்டை கோப்பை உருவாக்கவும்: -`git bundle create {{கோப்புக்கான/பாதை/கோப்பு.bundle}} -{{5}} {{HEAD}}` +`git bundle create {{பாதை/டு/கோப்பு.bundle}} -{{5}} {{HEAD}}` - சமீபத்திய 7 நாட்களின் மூட்டை கோப்பை உருவாக்கவும்: -`git bundle create {{கோப்புக்கான/பாதை/கோப்பு.bundle}} --since={{7.days}} {{HEAD}}` +`git bundle create {{பாதை/டு/கோப்பு.bundle}} --since={{7.days}} {{HEAD}}` - ஒரு மூட்டை கோப்பு தற்போதைய களஞ்சியத்தில் செல்லுபடியாகும் மற்றும் பயன்படுத்தலாம் என்பதை சரிபார்க்கவும்: -`git bundle verify {{கோப்புக்கான/பாதை/கோப்பு.bundle}}` +`git bundle verify {{பாதை/டு/கோப்பு.bundle}}` - ஒரு மூட்டையில் உள்ள குறிப்புகளின் பட்டியலை நிலையான வெளியீட்டில் அச்சிடுக: -`git bundle unbundle {{கோப்புக்கான/பாதை/கோப்பு.bundle}}` +`git bundle unbundle {{பாதை/டு/கோப்பு.bundle}}` - ஒரு மூட்டை கோப்பிலிருந்து ஒரு குறிப்பிட்ட கிளையை தற்போதைய களஞ்சியத்தில் இணைக்கவும்: -`git pull {{கோப்புக்கான/பாதை/கோப்பு.bundle}} {{கிளையின்_பெயர்}}` +`git pull {{பாதை/டு/கோப்பு.bundle}} {{கிளையின்_பெயர்}}` diff --git a/pages.ta/common/git-cat-file.md b/pages.ta/common/git-cat-file.md index c85226336c1537..48ff4caa2a6b0d 100644 --- a/pages.ta/common/git-cat-file.md +++ b/pages.ta/common/git-cat-file.md @@ -1,7 +1,7 @@ # git cat-file > கிட் களஞ்சிய பொருள்களுக்கான உள்ளடக்கம் அல்லது வகை மற்றும் அளவு தகவல்களை வழங்கவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - HEAD கமிட்டின் அளவை பைட்டுகளில் பெறுங்கள்: diff --git a/pages.ta/common/git-check-ignore.md b/pages.ta/common/git-check-ignore.md index fbdebaedbdd1ac..6edd5af1431d67 100644 --- a/pages.ta/common/git-check-ignore.md +++ b/pages.ta/common/git-check-ignore.md @@ -1,24 +1,24 @@ # git check-ignore > (".gitignore") கோப்புகளை புறக்கணிக்கவும் / விலக்கவும் பகுப்பாய்வு செய்து பிழைத்திருத்தம் செய்யுங்கள். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - ஒரு கோப்பு அல்லது கோப்புறை புறக்கணிக்கப்பட்டுள்ளதா என சரிபார்க்கவும்: -`git check-ignore {{கோப்பு_அல்லது_கோப்புறைக்கான/பாதை}}` +`git check-ignore {{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` - பல கோப்புகள் அல்லது கோப்பகங்கள் புறக்கணிக்கப்படுகின்றனவா என்பதைச் சரிபார்க்கவும்: -`git check-ignore {{கோப்புக்கான_பாதை}} {{கோப்புறைக்கான_பாதை}}` +`git check-ignore {{பாதை/டு/கோப்பு}} {{அடைவிற்குப்/பாதை}}` - stdin இலிருந்து ஒரு வரியில் ஒன்றுக்கு பாதை பெயர்களைப் பயன்படுத்தவும்: -`git check-ignore --stdin < {{கோப்பு_பட்டியலுக்கான/பாதை}}` +`git check-ignore --stdin < {{பாதை/டு/கோப்பு_பட்டியல்}}` - குறியீட்டை சரிபார்க்க வேண்டாம் (பாதைகள் ஏன் கண்காணிக்கப்பட்டன மற்றும் புறக்கணிக்கப்படவில்லை என்பதை பிழைத்திருத்த பயன்படுகிறது): -`git check-ignore --no-index {{கோப்புகள்_அல்லது_கோப்புறைகளுக்கான/பாதை}}` +`git check-ignore --no-index {{பாதை/டு/கோப்பு_அல்லது_அடைவுகள்}}` - ஒவ்வொரு பாதைக்கும் பொருந்தும் முறை பற்றிய விவரங்களைச் சேர்க்கவும்: -`git check-ignore --verbose {{கோப்புகள்_அல்லது_கோப்புறைகளுக்கான/பாதை}}` +`git check-ignore --verbose {{பாதை/டு/கோப்பு_அல்லது_அடைவுகள்}}` diff --git a/pages.ta/common/git-checkout.md b/pages.ta/common/git-checkout.md index b6fc4052d0fbfb..16964a59693bfd 100644 --- a/pages.ta/common/git-checkout.md +++ b/pages.ta/common/git-checkout.md @@ -1,7 +1,7 @@ # git checkout > வேலை செய்யும் மரத்திற்கு ஒரு கிளை அல்லது பாதைகளை செக்கவுட் செய்ய. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - புதிய கிளையை உருவாக்கி மாறவும்: diff --git a/pages.ta/common/git-cherry-pick.md b/pages.ta/common/git-cherry-pick.md index c105f30c79ef21..c34c99fef162aa 100644 --- a/pages.ta/common/git-cherry-pick.md +++ b/pages.ta/common/git-cherry-pick.md @@ -2,7 +2,7 @@ > தற்போதுள்ள கமிட்டுகளால் அறிமுகப்படுத்தப்பட்ட மாற்றங்களை தற்போதைய கிளையில் பயன்படுத்துங்கள். > மற்றொரு கிளையில் மாற்றங்களைப் பயன்படுத்த, முதலில் விரும்பிய கிளைக்கு மாற `git checkout` ஐப் பயன்படுத்தவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - தற்போதைய கிளைக்கு ஒரு கமிட்டை பயன்படுத்துங்கள்: diff --git a/pages.ta/common/git-cherry.md b/pages.ta/common/git-cherry.md index 8102b5e8767900..1536ed38e5a502 100644 --- a/pages.ta/common/git-cherry.md +++ b/pages.ta/common/git-cherry.md @@ -1,7 +1,7 @@ # git cherry > அப்ஸ்ட்ரீமில் இன்னும் பயன்படுத்தப்படாத கமிட்டுகளைக் கண்டறியவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - அப்ஸ்ட்ரீமில் சமமான கமிட்டுகளுடன் கமிட்டுகளையும் (அவற்றின் செய்திகளையும்) காட்டு: diff --git a/pages.ta/common/git-clean.md b/pages.ta/common/git-clean.md index 157fc76a0d5911..9efe764068c0b8 100644 --- a/pages.ta/common/git-clean.md +++ b/pages.ta/common/git-clean.md @@ -1,7 +1,7 @@ # git clean > கண்காணிக்கப்படாத கோப்புகளை பணியிடத்திலிருந்து அகற்றவும். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கிட் மூலம் கண்காணிக்கப்படாத கோப்புகளை நீக்கு: diff --git a/pages.ta/common/git-clone.md b/pages.ta/common/git-clone.md index c391281161cb8a..f6e3504d235e6e 100644 --- a/pages.ta/common/git-clone.md +++ b/pages.ta/common/git-clone.md @@ -1,12 +1,16 @@ # git clone > ஏற்கனவே உள்ள ஒரு களஞ்சியத்தை குளோன் செய்யுங்கள். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - ஏற்கனவே உள்ள ஒரு களஞ்சியத்தை குளோன் செய்யுங்கள்: `git clone {{தொலை_களஞ்சிய_இடம்}}` +- ஏற்கனவே உள்ள களஞ்சியத்தை ஒரு குறிப்பிட்ட கோப்பகத்தில் குளோன் செய்யுங்கள்: + +`git clone {{தொலை_களஞ்சிய_இடம்}} {{அடைவிற்குப்/பாதை}}` + - இருக்கும் களஞ்சியத்தையும் அதன் துணை தொகுதிகளையும் குளோன் செய்யுங்கள்: `git clone --recursive {{தொலை_களஞ்சிய_இடம்}}` @@ -22,3 +26,11 @@ - இயல்புநிலை கிளையில் மிகச் சமீபத்திய 10 கமிட்டுகளை மட்டுமே பெறும் களஞ்சியத்தை குளோன் செய்யுங்கள் (நேரத்தைச் சேமிக்க பயனுள்ளதாக இருக்கும்): `git clone --depth {{10}} {{தொலை_களஞ்சிய_இடம்}}` + +- ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்து ஒரு குறிப்பிட்ட கிளையை மட்டும் பெறுங்கள்: + +`git clone --branch {{பெயர்}} --single-branch {{தொலை_களஞ்சிய_இடம்}}` + +- ஒரு குறிப்பிட்ட SSH கட்டளையைப் பயன்படுத்தி ஏற்கனவே உள்ள களஞ்சியத்தை குளோன் செய்யவும்: + +`git clone --config core.sshCommand="{{ssh -i பாதை/டு/தனியார்_ssh_key}}" {{தொலை_களஞ்சிய_இடம்}}` diff --git a/pages.ta/common/git-commit.md b/pages.ta/common/git-commit.md index 5211a27130323f..a9361c0b666c59 100644 --- a/pages.ta/common/git-commit.md +++ b/pages.ta/common/git-commit.md @@ -1,20 +1,32 @@ # git commit > கோப்புகளை களஞ்சியத்திற்கு கமிட்செய்ய. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - ஒரு செய்தியுடன் களஞ்சியத்திற்கு அரங்குக் கோப்புகளை கமிட் செய்யுங்கள்: `git commit -m "{{செய்தி}}"` +- ஒரு கோப்பிலிருந்து படிக்கப்பட்ட செய்தியுடன் கட்டப்பட்ட கோப்புகளை கமிட்செய்யவும்: + +`git commit --file {{பாதை/டு/கமிட்_செய்தி_கோப்பு}}` + - அனைத்து மாற்றியமைக்கப்பட்ட கோப்புகளையும் தானாக நிலைநிறுத்து, செய்தியுடன் கமிட் செய்யுங்கள்: `git commit -a -m "{{செய்தி}}"` +- ஸ்டேஜ் செய்யப்பட்ட கோப்புகளை கமிட்செய்து, அவற்றை `~/.gitconfig` இல் வரையறுக்கப்பட்ட GPG விசையுடன் [S] கையொப்பமிடுங்கள்: + +`git commit -S -m "{{செய்தி}}"` + - கடைசி கட்டத்தை தற்போதைய நிலை மாற்றங்களுடன் கமிட் செய்யுங்கள்: `git commit --amend` - குறிப்பிட்ட (ஏற்கனவே அரங்கேற்றப்பட்ட) கோப்புகளை மட்டுமே கமிட் செய்யுங்கள்: -`git commit {{எனது/கோப்பு1க்கான/பாதை}} {{எனது/கோப்பு2க்கான/பாதை}}` +`git commit {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- கட்டப்பட்ட கோப்புகள் இல்லாவிட்டாலும், கமிட்டை உருவாக்கவும்: + +`git commit -m "{{செய்தி}}" --allow-empty` diff --git a/pages.ta/common/gnmic-sub.md b/pages.ta/common/gnmic-sub.md new file mode 100644 index 00000000000000..57ee6f4e6c1d6a --- /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 00000000000000..98b3601c506b47 --- /dev/null +++ b/pages.ta/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> இக்கட்டளை `chromium` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr chromium` diff --git a/pages.ta/common/grep.md b/pages.ta/common/grep.md new file mode 100644 index 00000000000000..3cbbf5ebf4cffa --- /dev/null +++ b/pages.ta/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 "{{தேடுதொடர்}}" {{பாதை/டு/கோப்பு}}` + +- தேடுதொடருக்குத் தேடு, ஆனால் பொருந்திய பகுதிகளை மட்டும் காட்டு: + +`grep --only-matching "{{தேடுதொடர்}}" {{பாதை/டு/கோப்பு}}` + +- இயல் உள்ளீட்டில் தேடுதொடருக்குப் பொருந்தா வரிகளை மட்டும் காட்டு: + +`cat {{பாதை/டு/கோப்பு}} | grep --invert-match "{{தேடுதொடர்}}"` diff --git a/pages.ta/common/htop.md b/pages.ta/common/htop.md new file mode 100644 index 00000000000000..8da858770e5ffe --- /dev/null +++ b/pages.ta/common/htop.md @@ -0,0 +1,28 @@ +# htop + +> இயங்கும் செயல்முறைகளைப் பற்றிய டைனமிக் நிகழ்நேர தகவலைக் காண்பி. `top` இன் மேம்படுத்தப்பட்ட பதிப்பு. +> மேலும் விவரத்திற்கு: . + +- htop ஐத் தொடங்கவும்: + +`htop` + +- ஒரு குறிப்பிட்ட பயனருக்குச் சொந்தமான htop காட்சி செயல்முறைகளைத் தொடங்கவும்: + +`htop --user {{பயனர்பெயர்}}` + +- குறிப்பிட்ட `sort_item` மூலம் செயல்முறைகளை வரிசைப்படுத்தவும் (கிடைக்கும் விருப்பங்களுக்கு `htop --sort help` ஐப் பயன்படுத்தவும்): + +`htop --sort {{sort_item}}` + +- htop ஐ இயக்கும்போது ஊடாடும் கட்டளைகளைப் பார்க்கவும்: + +`?` + +- வேறு தாவலுக்கு மாறவும்: + +`tab` + +- உதவியைக் காட்டு: + +`htop --help` diff --git a/pages.ta/common/hx.md b/pages.ta/common/hx.md new file mode 100644 index 00000000000000..2333a961527fd1 --- /dev/null +++ b/pages.ta/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> இக்கட்டளை `helix` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr helix` diff --git a/pages.ta/common/iverilog.md b/pages.ta/common/iverilog.md new file mode 100644 index 00000000000000..ce1dbfdbed0284 --- /dev/null +++ b/pages.ta/common/iverilog.md @@ -0,0 +1,24 @@ +# iverilog + +> வெரிலாக் HDL (IEEE-1364) குறியீட்டை உருவகப்படுத்துதலுக்காக இயங்கக்கூடிய நிரல்களாக முன்செயலாக்கி தொகுக்கிறது. +> மேலும் விவரத்திற்கு: . + +- ஒரு மூல கோப்பை இயங்கக்கூடியதாக தொகுக்கவும்: + +`iverilog {{பாதை/டு/மூல.v}} -o {{பாதை/டு/செயல்படுத்தக்கூடியது}}` + +- அனைத்து எச்சரிக்கைகளையும் காண்பிக்கும் போது ஒரு மூலக் கோப்பை இயங்கக்கூடியதாக தொகுக்கவும்: + +`iverilog {{பாதை/டு/மூல.v}} -Wall -o {{பாதை/டு/செயல்படுத்தக்கூடியது}}` + +- VVP இயக்க நேரத்தைப் பயன்படுத்தி வெளிப்படையாக தொகுத்து இயக்கவும்: + +`iverilog -o {{பாதை/டு/செயல்படுத்தக்கூடியது}} -tvvp {{பாதை/டு/மூல.v}}` + +- வேறொரு பாதையிலிருந்து வெரிலாக் நூலகக் கோப்புகளைப் பயன்படுத்தி தொகுக்கவும்: + +`iverilog {{பாதை/டு/மூல.v}} -o {{பாதை/டு/செயல்படுத்தக்கூடியது}} -I{{பாதை/டு/நூலகம்_கோப்பகம்}}` + +- தொகுக்காமல் வெரிலாக் குறியீட்டை முன்கூட்டியே செயலாக்கவும்: + +`iverilog -E {{பாதை/டு/மூல.v}}` diff --git a/pages.ta/common/java.md b/pages.ta/common/java.md index e6fd4412ad6a8d..351af372fac218 100644 --- a/pages.ta/common/java.md +++ b/pages.ta/common/java.md @@ -1,24 +1,28 @@ # java > ஜாவா பயன்பாட்டு துவக்கி. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . -- ஒரு main செயல்பாட்டைக் கொண்ட ஜாவா .class கோப்பை வெறும் class பெயரை பயன்படுத்தி இயக்கவும்: +- ஜாவா `.class` கோப்பை இயக்கவும், அதில் ஒரு முக்கிய முறையைக் கொண்டு, வகுப்புப் பெயரை மட்டும் பயன்படுத்தவும்: -`java {{class_பெயரை}}` +`java {{வகுப்பு_பெயர்}}` -- ஒரு .jar நிரலை இயக்கவும்: +- ஒரு ஜாவா நிரலை இயக்கவும் மற்றும் கூடுதல் மூன்றாம் தரப்பு அல்லது பயனர் வரையறுக்கப்பட்ட வகுப்புகளைப் பயன்படுத்தவும்: -`java -jar {{கோபின்_பெயர்.jar}}` +`java -classpath {{பாதை/டு/வகுப்புகள்1}}:{{பாதை/டு/வகுப்புகள்2}}:. {{வகுப்புபெயர்}}` -- போர்ட் 5005 இல் இணைக்க காத்திருக்கும் பிழைதிருத்தி .jar நிரலை இயக்கவும்: +- ஒரு `.jar` நிரலை இயக்கவும்: -`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{கோபின்_பெயர்.jar}}` +`java -jar {{கோப்புபெயர்.jar}}` -- JDK, JRE மற்றும் HotSpot மென்பொருள் பதிப்புகள் காண்பி: +- போர்ட் 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.ta/common/javac.md b/pages.ta/common/javac.md index 7b1ce7017b033e..d05a6895845932 100644 --- a/pages.ta/common/javac.md +++ b/pages.ta/common/javac.md @@ -1,19 +1,20 @@ # javac -> ஜாவா நிரல்மொழிமாற்றி. +> ஜாவா பயன்பாட்டு தொகுப்பாளர். +> மேலும் விவரத்திற்கு: . -- `.java` கோப்பை நிரல்மொழிமாற்ற: +- ஒரு `.java` கோப்பை தொகுக்கவும்: `javac {{கோப்பு.java}}` -- பல `.java` கோப்புகளை நிரல்மொழிமாற்ற: +- பல `.java` கோப்புகளை தொகுக்கவும்: `javac {{கோப்பு1.java}} {{கோப்பு2.java}} {{கோப்பு3.java}}` -- தற்போதைய கோப்பகத்தில் அனைத்து `.java` கோப்புகளையும் நிரல்மொழிமாற்ற: +- தற்போதைய கோப்பகத்தில் அனைத்து `.java` கோப்புகளையும் தொகுக்கவும்: `javac {{*.java}}` -- ஒரு `.java` கோப்பை நிரல்மொழிமாற்றி, அதன் விளைவாக வரும் `.class` கோப்பை ஒரு குறிப்பிட்ட கோப்பகத்தில் வைக்கவும்: +- ஒரு `.java` கோப்பை தொகுத்து அதன் விளைவாக வரும் கிளாஸ் கோப்பை ஒரு குறிப்பிட்ட கோப்பகத்தில் வைக்கவும்: -`javac -d {{கோப்புறையை/குறிவைக்கும்/பாதை}} {{கோப்பு.java}}` +`javac -d {{அடைவிற்குப்/பாதை}} {{கோப்பு.java}}` diff --git a/pages.ta/common/jekyll.md b/pages.ta/common/jekyll.md new file mode 100644 index 00000000000000..025f0575838eac --- /dev/null +++ b/pages.ta/common/jekyll.md @@ -0,0 +1,24 @@ +# jekyll + +> ஒரு எளிய, வலைப்பதிவு அறிந்த, நிலையான தள ஜெனரேட்டர். +> மேலும் விவரத்திற்கு: . + +- ஒரு மேம்பாட்டு சேவையகத்தை உருவாக்கவும், அது இயங்குவது `http://localhost:4000/` இல்: + +`jekyll serve` + +- அதிகரிக்கும் மீளுருவாக்கத்தை இயக்கு: + +`jekyll serve --incremental` + +- வாய்மொழி வெளியீட்டை இயக்கு: + +`jekyll serve --verbose` + +- தற்போதைய கோப்பகத்தை `./_site`டிற்குள் உருவாக்கவும்: + +`jekyll build` + +- தளத்தை (தள வெளியீடு மற்றும் `கேச்` கோப்பகத்தை நீக்குகிறது) உருவாக்காமல் சுத்தம் செய்யுங்கள்: + +`jekyll clean` diff --git a/pages.ta/common/kafkacat.md b/pages.ta/common/kafkacat.md new file mode 100644 index 00000000000000..717a18cc2427fd --- /dev/null +++ b/pages.ta/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> இக்கட்டளை `kcat` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr kcat` diff --git a/pages.ta/common/llvm-ar.md b/pages.ta/common/llvm-ar.md new file mode 100644 index 00000000000000..91a41e9ccf7b93 --- /dev/null +++ b/pages.ta/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> இக்கட்டளை `ar` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr ar` diff --git a/pages.ta/common/llvm-g++.md b/pages.ta/common/llvm-g++.md new file mode 100644 index 00000000000000..eb8f349168067b --- /dev/null +++ b/pages.ta/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> இக்கட்டளை `clang++` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clang++` diff --git a/pages.ta/common/llvm-gcc.md b/pages.ta/common/llvm-gcc.md new file mode 100644 index 00000000000000..8e1691cd417404 --- /dev/null +++ b/pages.ta/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> இக்கட்டளை `clang` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr clang` diff --git a/pages.ta/common/llvm-nm.md b/pages.ta/common/llvm-nm.md new file mode 100644 index 00000000000000..4a46bcecbfedaf --- /dev/null +++ b/pages.ta/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> இக்கட்டளை `nm` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr nm` diff --git a/pages.ta/common/llvm-objdump.md b/pages.ta/common/llvm-objdump.md new file mode 100644 index 00000000000000..68bddc07b4804b --- /dev/null +++ b/pages.ta/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> இக்கட்டளை `objdump` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr objdump` diff --git a/pages.ta/common/llvm-strings.md b/pages.ta/common/llvm-strings.md new file mode 100644 index 00000000000000..43c59c0454812c --- /dev/null +++ b/pages.ta/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> இக்கட்டளை `strings` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr strings` diff --git a/pages.ta/common/ls.md b/pages.ta/common/ls.md index cd55e5c118f1e8..94d737d12509e1 100644 --- a/pages.ta/common/ls.md +++ b/pages.ta/common/ls.md @@ -1,7 +1,7 @@ # ls > அடைவு உள்ளடக்கத்தைப் பட்டியலிடு. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கோப்புகளை வரிக்கொன்றாகப் பட்டியலிடு: @@ -11,6 +11,10 @@ `ls -a` +- கோப்பகப் பெயர்களில் சேர்க்கப்பட்டுள்ள `/` உடன் அனைத்து கோப்புகளையும் பட்டியலிடுங்கள்: + +`ls -F` + - அனைத்துக் கோப்புகளையும் முழு விவரங்களுடன் (அனுமதி, உடைமை, கோப்பளவு, மாற்றமைத்தத் தேதி) பட்டியலிடு: `ls -la` @@ -26,3 +30,7 @@ - மாற்றமைத்தத் தேதியால் காலவரிசைப்படுத்தப்பட்ட (பழையதிலிருந்துத் துவங்கி) முழு விவரப் பட்டியல்: `ls -ltr` + +- கோப்பகங்களை மட்டும் பட்டியலிடுங்கள்: + +`ls -d */` diff --git a/pages.ta/common/lzcat.md b/pages.ta/common/lzcat.md new file mode 100644 index 00000000000000..84d650517e25e9 --- /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 00000000000000..af47a9e2134a96 --- /dev/null +++ b/pages.ta/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/man.md b/pages.ta/common/man.md new file mode 100644 index 00000000000000..cf7200e4c6e15b --- /dev/null +++ b/pages.ta/common/man.md @@ -0,0 +1,32 @@ +# man + +> கையேடு பக்கங்களை வடிவமைத்து காட்டவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு கட்டளைக்கான மேன் பக்கத்தைக் காண்பி: + +`man {{கட்டளை}}` + +- பிரிவு 7 இலிருந்து ஒரு கட்டளைக்கான மேன் பக்கத்தைக் காண்பி: + +`man {{7}} {{கட்டளை}}` + +- கட்டளைக்கு கிடைக்கக்கூடிய அனைத்து பிரிவுகளையும் பட்டியலிடுங்கள்: + +`man -f {{கட்டளை}}` + +- மேன்பக்கங்களுக்காகத் தேடப்பட்ட பாதையைக் காண்பி: + +`man --path` + +- மேன்பேஜைக் காட்டிலும் மேன்பேஜின் இருப்பிடத்தைக் காண்பி: + +`man -w {{கட்டளை}}` + +- ஒரு குறிப்பிட்ட மொழியைப் பயன்படுத்தி மேன் பக்கத்தைக் காண்பி: + +`man {{கட்டளை}} --locale={{மொழி}}` + +- தேடல் சரம் கொண்ட மேன் பக்கங்களைத் தேடவும்: + +`man -k "{{தேடல்_சரம்}}"` diff --git a/pages.ta/common/md5sum.md b/pages.ta/common/md5sum.md new file mode 100644 index 00000000000000..b4aa8ff1b8323e --- /dev/null +++ b/pages.ta/common/md5sum.md @@ -0,0 +1,28 @@ +# md5sum + +> MD5 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் MD5 சரிகாண்தொகையைக் கணி: + +`md5sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் MD5 சரிகாண்தொகையைக் கணி: + +`md5sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- இயல் உள்ளீட்டின் MD5 சரிகாண்தொகையைக் கணி: + +`echo "{{உரை}}" | md5sum` + +- MD5SUMகளின் கோப்பைப் படித்து, எல்லா கோப்புகளிலும் சரிகாண்தொகை பொருந்துகின்றனவா என்பதைச் சரிபார்க்கவும்: + +`md5sum --check {{பாதை/டு/கோப்பு.md5}}` + +- விடுபட்ட கோப்புகள் அல்லது சரிபார்ப்பு தோல்வியுற்றால் மட்டுமே செய்தியைக் காட்டவும்: + +`md5sum --check --quiet {{பாதை/டு/கோப்பு.md5}}` + +- விடுபட்ட கோப்புகளைப் புறக்கணித்து, சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும்: + +`md5sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.md5}}` diff --git a/pages.ta/common/mkdir.md b/pages.ta/common/mkdir.md index 7de549fa6a8f03..c332e967c00690 100644 --- a/pages.ta/common/mkdir.md +++ b/pages.ta/common/mkdir.md @@ -1,12 +1,16 @@ # mkdir > அடைவை உருவாக்கு. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - அடைவொன்றைத் தற்போதைய அடைவிலோக் குறிப்பிட்ட பாதையிலோ உருவாக்கு: `mkdir {{அடைவு}}` -- அடைவையும் ஏற்கனவே இல்லையெனில் அதன் தாயடைவுகளையும் தற்சுருளாக உருவாக்கு: +- தற்போதைய கோப்பகத்தில் பல கோப்பகங்களை உருவாக்கவும்: + +`mkdir {{அடைவு_1 அடைவு_2 ...}}` + +- கோப்பகங்களை மீண்டும் மீண்டும் உருவாக்கவும் (உள்ளமைக்கப்பட்ட கோப்பகங்களை உருவாக்க பயனுள்ளதாக இருக்கும்): `mkdir -p {{அடைவிற்குப்/பாதை}}` diff --git a/pages.ta/common/mscore.md b/pages.ta/common/mscore.md new file mode 100644 index 00000000000000..a5d9e7857b1fc7 --- /dev/null +++ b/pages.ta/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> இக்கட்டளை `musescore` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr musescore` diff --git a/pages.ta/common/mv.md b/pages.ta/common/mv.md index a7788bb6bc109c..15b092ed16ccef 100644 --- a/pages.ta/common/mv.md +++ b/pages.ta/common/mv.md @@ -1,12 +1,16 @@ # mv > கோப்புகளையோ அடைவுகளையோ நகர்த்து அல்லது மறுபெயரிடு. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கோப்பை ஓரிடத்திலிருந்து இன்னோரிடத்திற்கு நகர்த்து: `mv {{மூலப்பாதை}} {{குறிபாதை}}` +- கோப்பு பெயர்களை வைத்து, கோப்புகளை மற்றொரு கோப்பகத்திற்கு நகர்த்தவும்: + +`mv {{மூலப்பாதை1}} {{மூலப்பாதை2}} {{மூலப்பாதை3}} {{இலக்கு_கோப்பகம்}}` + - ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் உறுதிப்படுத்தாதே: `mv -f {{மூலப்பாதை}} {{குறிபாதை}}` diff --git a/pages.ta/common/nm-classic.md b/pages.ta/common/nm-classic.md new file mode 100644 index 00000000000000..88269805a92253 --- /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 00000000000000..0733ede181a9c1 --- /dev/null +++ b/pages.ta/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> இக்கட்டளை `netlify` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr netlify` diff --git a/pages.ta/common/pio-init.md b/pages.ta/common/pio-init.md new file mode 100644 index 00000000000000..f42a0df981af2c --- /dev/null +++ b/pages.ta/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> இக்கட்டளை `pio project` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr pio project` diff --git a/pages.ta/common/piodebuggdb.md b/pages.ta/common/piodebuggdb.md new file mode 100644 index 00000000000000..fa9d00ba7f03bd --- /dev/null +++ b/pages.ta/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> இக்கட்டளை `pio debug` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr pio debug` diff --git a/pages.ta/common/platformio.md b/pages.ta/common/platformio.md new file mode 100644 index 00000000000000..d2fd3ac06bbe11 --- /dev/null +++ b/pages.ta/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> இக்கட்டளை `pio` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr pio` diff --git a/pages.ta/common/podman.md b/pages.ta/common/podman.md new file mode 100644 index 00000000000000..6b1e2d48343017 --- /dev/null +++ b/pages.ta/common/podman.md @@ -0,0 +1,37 @@ +# Podman + +> காய்கள், கொள்கலன்கள் மற்றும் படங்களுக்கான எளிய மேலாண்மை கருவி. +> போட்மேன் ஒரு Docker-CLI ஒப்பிடக்கூடிய கட்டளை வரியை வழங்குகிறது. எளிமையாகச் சொன்னால்: `alias docker=podman`. +> மேலும் விவரத்திற்கு: . + +- கொள்கலன்கள் பற்றிய தகவலை அச்சிடவும்: + +`podman ps` + +- அனைத்து கொள்கலன்களையும் பட்டியலிடு (இரண்டும் இயங்கும் மற்றும் நிறுத்தப்பட்டது): + +`podman ps --all` + +- ஒன்று அல்லது அதற்கு மேற்பட்ட கொள்கலன்களைத் தொடங்கவும்: + +`podman start {{கொள்கலன்_பெயர்}} {{கொள்கலன்_ஐடி}}` + +- ஒன்று அல்லது அதற்கு மேற்பட்ட இயங்கும் கொள்கலன்களை நிறுத்துங்கள்: + +`podman stop {{கொள்கலன்_பெயர்}} {{கொள்கலன்_ஐடி}}` + +- பதிவேட்டில் இருந்து ஒரு படத்தை இழுக்கவும் (டாக்கர் ஹப்பிற்கு இயல்புநிலை): + +`podman pull {{படத்தின்_பெயர்}}:{{படத்தின்_டேக்}}` + +- ஏற்கனவே இயங்கும் கொள்கலனில் ஒரு ஷெல் திறக்க: + +`podman exec --interactive --tty {{கொள்கலன்_பெயர்}} {{sh}}` + +- ஒன்று அல்லது அதற்கு மேற்பட்ட நிறுத்தப்பட்ட கொள்கலன்களை அகற்றவும்: + +`podman rm {{கொள்கலன்_பெயர்}} {{கொள்கலன்_ஐடி}}` + +- ஒன்று அல்லது அதற்கு மேற்பட்ட கொள்கலன்களின் பதிவுகளைக் காண்பி மற்றும் பதிவு வெளியீட்டைப் பின்பற்றவும்: + +`podman logs --follow {{கொள்கலன்_பெயர்}} {{கொள்கலன்_ஐடி}}` diff --git a/pages.ta/common/powershell.md b/pages.ta/common/powershell.md new file mode 100644 index 00000000000000..b07ee4c0459982 --- /dev/null +++ b/pages.ta/common/powershell.md @@ -0,0 +1,37 @@ +# powershell + +> குறிப்பாக கணினி நிர்வாகத்திற்காக வடிவமைக்கப்பட்ட கட்டளை வரி ஷெல் மற்றும் ஸ்கிரிப்டிங் மொழி. +> மேலும் பார்க்கவும்: `pwsh`. +> மேலும் விவரத்திற்கு: . + +- ஊடாடும் ஷெல் அமர்வைத் தொடங்கவும்: + +`powershell` + +- தொடக்க கட்டமைப்புகளை ஏற்றாமல் ஊடாடும் ஷெல் அமர்வைத் தொடங்கவும்: + +`powershell -NoProfile` + +- குறிப்பிட்ட கட்டளைகளை இயக்கவும்: + +`powershell -Command "{{echo 'பவர்ஷெல் செயல்படுத்தப்படுகிறது'}}"` + +- ஒரு குறிப்பிட்ட ஸ்கிரிப்டை இயக்கவும்: + +`powershell -File {{பாதை/டு/ஸ்கிரிப்ட்.ps1}}` + +- பவர்ஷெல்லின் குறிப்பிட்ட பதிப்பைக் கொண்டு அமர்வைத் தொடங்கவும்: + +`powershell -Version {{பதிப்பு}}` + +- தொடக்க கட்டளைகளை இயக்கிய பிறகு ஷெல் வெளியேறுவதைத் தடுக்கவும்: + +`powershell -NoExit` + +- பவர்ஷெல்லுக்கு அனுப்பப்பட்ட தரவின் வடிவமைப்பை விவரிக்கவும்: + +`powershell -InputFormat {{Text|XML}}` + +- பவர்ஷெல்லின் வெளியீடு எவ்வாறு வடிவமைக்கப்படுகிறது என்பதைத் தீர்மானிக்கவும்: + +`powershell -OutputFormat {{Text|XML}}` diff --git a/pages.ta/common/ptpython3.md b/pages.ta/common/ptpython3.md new file mode 100644 index 00000000000000..160071cc3a9098 --- /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 00000000000000..0773edfe7b05eb --- /dev/null +++ b/pages.ta/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> இக்கட்டளை `python` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr python` diff --git a/pages.ta/common/r2.md b/pages.ta/common/r2.md new file mode 100644 index 00000000000000..360ea8273f74f7 --- /dev/null +++ b/pages.ta/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> இக்கட்டளை `radare2` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr radare2` diff --git a/pages.ta/common/rcat.md b/pages.ta/common/rcat.md new file mode 100644 index 00000000000000..e52b2dbdcabddf --- /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 00000000000000..7a95c9d03f1c5e --- /dev/null +++ b/pages.ta/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> இக்கட்டளை `rg` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr rg` diff --git a/pages.ta/common/rm.md b/pages.ta/common/rm.md index c016f2e6ee3f1c..f5146f975467c5 100644 --- a/pages.ta/common/rm.md +++ b/pages.ta/common/rm.md @@ -1,11 +1,11 @@ # rm > கோப்புகளையோ அடைவுகளையோ அழி. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கோப்புகளை அழி: -`rm {{கோப்பொன்றிற்குப்/பாதை}} {{கோப்பின்னொன்றிற்குப்/பாதை}}` +`rm {{பாதை/டு/கோப்பு}} {{பாதை/டு/மற்றொரு/கோப்பு}}` - அடைவொன்றையும் அதில் உள்ளடங்கிய அனைத்தையும் தற்சுருளாக அழி: diff --git a/pages.ta/common/rmdir.md b/pages.ta/common/rmdir.md index 66550ff7c408b0..ec61726ba65915 100644 --- a/pages.ta/common/rmdir.md +++ b/pages.ta/common/rmdir.md @@ -1,7 +1,7 @@ # rmdir > அடைவை அழி. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - அடைவு வெறுமையாகயிருந்தால் அதனை அழி. உள்ளடக்கமுடைய அடைவை நீக்க `rm` யைப் பயன்படுத்தவும்: diff --git a/pages.ta/common/ruby.md b/pages.ta/common/ruby.md new file mode 100644 index 00000000000000..06beae088db3a5 --- /dev/null +++ b/pages.ta/common/ruby.md @@ -0,0 +1,24 @@ +# ruby + +> ரூபி நிரலாக்க மொழி மொழிபெயர்ப்பாளர். +> மேலும் விவரத்திற்கு: . + +- ஒரு REPL (ஊடாடும் ஷெல்) தொடங்கவும்: + +`irb` + +- ஒரு ரூபி ஸ்கிரிப்டை இயக்கவும்: + +`ruby {{ஸ்கிரிப்ட்.rb}}` + +- கட்டளை வரியில் ஒற்றை ரூபி கட்டளையை செயல்படுத்தவும்: + +`ruby -e {{கட்டளை}}` + +- கொடுக்கப்பட்ட ரூபி ஸ்கிரிப்ட்டில் தொடரியல் பிழைகளைச் சரிபார்க்கவும்: + +`ruby -c {{ஸ்கிரிப்ட்.rb}}` + +- நீங்கள் பயன்படுத்தும் ரூபியின் பதிப்பைக் காட்டு: + +`ruby -v` diff --git a/pages.ta/common/rustc.md b/pages.ta/common/rustc.md new file mode 100644 index 00000000000000..4bad8d061186cf --- /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 00000000000000..dd61412e74230c --- /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.md b/pages.ta/common/rustup.md new file mode 100644 index 00000000000000..e268e60d8ac004 --- /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/sha1sum.md b/pages.ta/common/sha1sum.md new file mode 100644 index 00000000000000..79a7c31332454e --- /dev/null +++ b/pages.ta/common/sha1sum.md @@ -0,0 +1,28 @@ +# sha1sum + +> SHA1 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA1 சரிகாண்தொகையைக் கணி: + +`sha1sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் SHA1 சரிகாண்தொகையைக் கணி: + +`sha1sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- SHA1 சரிகாண்தொகைகளைக் கணித்து கோப்பில் எழுது: + +`sha1sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}} > {{பாதை/டு/கோப்பு.sha1}}` + +- SHA1 சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`sha1sum --check {{பாதை/டு/கோப்பு.sha1}}` + +- பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`sha1sum --check --quiet {{பாதை/டு/கோப்பு.sha1}}` + +- சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும், விடுபட்ட கோப்புகளைப் புறக்கணிக்கவும்: + +`sha1sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.sha1}}` diff --git a/pages.ta/common/sha224sum.md b/pages.ta/common/sha224sum.md new file mode 100644 index 00000000000000..30b3e4eb160da3 --- /dev/null +++ b/pages.ta/common/sha224sum.md @@ -0,0 +1,28 @@ +# sha224sum + +> SHA224 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA224 சரிகாண்தொகையைக் கணி: + +`sha224sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் SHA224 சரிகாண்தொகையைக் கணி: + +`sha224sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- SHA224 சரிகாண்தொகைகளைக் கணித்து கோப்பில் எழுது: + +`sha224sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}} > {{பாதை/டு/கோப்பு.sha224}}` + +- SHA224 சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`sha224sum --check {{பாதை/டு/கோப்பு.sha224}}` + +- பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`sha224sum --check --quiet {{பாதை/டு/கோப்பு.sha224}}` + +- சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும், விடுபட்ட கோப்புகளைப் புறக்கணிக்கவும்: + +`sha224sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.sha224}}` diff --git a/pages.ta/common/sha256sum.md b/pages.ta/common/sha256sum.md new file mode 100644 index 00000000000000..1869aa63620327 --- /dev/null +++ b/pages.ta/common/sha256sum.md @@ -0,0 +1,28 @@ +# sha256sum + +> SHA256 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA256 சரிகாண்தொகையைக் கணி: + +`sha256sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் SHA256 சரிகாண்தொகையைக் கணி: + +`sha256sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- SHA256 சரிகாண்தொகைகளைக் கணித்து கோப்பில் எழுது: + +`sha256sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}} > {{பாதை/டு/கோப்பு.sha256}}` + +- SHA256 சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`sha256sum --check {{பாதை/டு/கோப்பு.sha256}}` + +- பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`sha256sum --check --quiet {{பாதை/டு/கோப்பு.sha256}}` + +- விடுபட்ட கோப்புகளைப் புறக்கணித்து, சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும்: + +`sha256sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.sha256}}` diff --git a/pages.ta/common/sha384sum.md b/pages.ta/common/sha384sum.md new file mode 100644 index 00000000000000..830b2cf7097304 --- /dev/null +++ b/pages.ta/common/sha384sum.md @@ -0,0 +1,28 @@ +# sha384sum + +> SHA384 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA384 சரிகாண்தொகையைக் கணி: + +`sha384sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் SHA384 சரிகாண்தொகையைக் கணி: + +`sha384sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- SHA384 சரிகாண்தொகைகளைக் கணித்து கோப்பில் எழுது: + +`sha384sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}} > {{பாதை/டு/கோப்பு.sha384}}` + +- SHA384 சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`sha384sum --check {{பாதை/டு/கோப்பு.sha384}}` + +- பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`sha384sum --check --quiet {{பாதை/டு/கோப்பு.sha384}}` + +- விடுபட்ட கோப்புகளைப் புறக்கணித்து, சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும்: + +`sha384sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.sha384}}` diff --git a/pages.ta/common/sha512sum.md b/pages.ta/common/sha512sum.md new file mode 100644 index 00000000000000..27ff4ff0d3b1ab --- /dev/null +++ b/pages.ta/common/sha512sum.md @@ -0,0 +1,28 @@ +# sha512sum + +> SHA512 மறையீட்டு சரிகாண்தொகையைக் கணி. +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA512 சரிகாண்தொகையைக் கணி: + +`sha512sum {{பாதை/டு/கோப்பு}}` + +- பலக் கோப்புகளின் SHA512 சரிகாண்தொகையைக் கணி: + +`sha512sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}}` + +- SHA512 சரிகாண்தொகைகளைக் கணித்து கோப்பில் எழுது: + +`sha512sum {{பாதை/டு/கோப்பு1}} {{பாதை/டு/கோப்பு2}} > {{பாதை/டு/கோப்பு.sha512}}` + +- SHA512 சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`sha512sum --check {{பாதை/டு/கோப்பு.sha512}}` + +- பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`sha512sum --check --quiet {{பாதை/டு/கோப்பு.sha512}}` + +- விடுபட்ட பாதை/டு/கோப்புகளைப் புறக்கணித்து, சரிபார்ப்பு தோல்வியுற்ற கோப்புகளுக்கான செய்தியை மட்டும் காட்டவும்: + +`sha512sum --ignore-missing --check --quiet {{பாதை/டு/கோப்பு.sha512}}` diff --git a/pages.ta/common/shasum.md b/pages.ta/common/shasum.md new file mode 100644 index 00000000000000..fd0669c59d2a8a --- /dev/null +++ b/pages.ta/common/shasum.md @@ -0,0 +1,32 @@ +# shasum + +> SHA மறையீட்டு சரிகாண்தொகைகளைக் கணி அல்லது சரிபார். +> மேலும் விவரத்திற்கு: . + +- கோப்பின் SHA1 சரிகாண்தொகையைக் கணி: + +`shasum {{கோப்பு}}` + +- கோப்பின் SHA256 சரிகாண்தொகையைக் கணி: + +`shasum --algorithm 256 {{கோப்பு}}` + +- பலக் கோப்புகளின் SHA512 சரிகாண்தொகைகளைக் கணி: + +`shasum --algorithm 512 {{கோப்பு1}} {{கோப்பு2}}` + +- SHA256 சரிகாண்தொகைகளைக் கணித்துக் கோப்பில் எழுது: + +`shasum --algorithm 256 {{கோப்பு1}} {{கோப்பு2}} > {{கோப்பு.sha256}}` + +- சரிகாண்தொகைகளுடைய கோப்பைப் படித்து கோப்புகளைச் சரிபார்: + +`shasum --check {{கோப்பு}}` + +- சரிகாண்தொகைகளைச் சரிபார்த்துப் பிழையுற்ற கோப்புகளை மட்டும் காட்டு: + +`shasum --check --quiet {{கோப்பு}}` + +- இயல் உள்ளீட்டின் SHA1 சரிகாண்தொகையைக் கணி: + +`{{கட்டளை}} | shasum` diff --git a/pages.ta/common/sum.md b/pages.ta/common/sum.md new file mode 100644 index 00000000000000..15c9159bb96f15 --- /dev/null +++ b/pages.ta/common/sum.md @@ -0,0 +1,13 @@ +# sum + +> கோப்பின் சரிகாண்தொகையைக் கணித்து அதில் எத்தனைத் தொகுதிகளுள்ளன என்றெண்ணு. +> இதுத் தற்காலத்திய `cksum` கட்டளைக்கு முன் தோன்றியது. +> மேலும் விவரத்திற்கு: . + +- BSD ஒத்த படிமுறையுடனும் 1024-எண்ணிருமித் தொகுதிகளுடனும் சரிகாண்தொகையைக் கணி: + +`sum {{கோப்பு}}` + +- System V ஒத்த படிமுறையுடனும் 512-எண்ணிருமித் தொகுதிகளுடனும் சரிகாண்தொகையைக் கணி: + +`sum --sysv {{கோப்பு}}` diff --git a/pages.ta/common/tldrl.md b/pages.ta/common/tldrl.md new file mode 100644 index 00000000000000..3d57b3b9f58d70 --- /dev/null +++ b/pages.ta/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> இக்கட்டளை `tldr-lint` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr tldr-lint` diff --git a/pages.ta/common/tlmgr-arch.md b/pages.ta/common/tlmgr-arch.md new file mode 100644 index 00000000000000..f5b55c9bd09ada --- /dev/null +++ b/pages.ta/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> இக்கட்டளை `tlmgr platform` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr tlmgr platform` diff --git a/pages.ta/common/todo.md b/pages.ta/common/todo.md new file mode 100644 index 00000000000000..f6587d727fa68a --- /dev/null +++ b/pages.ta/common/todo.md @@ -0,0 +1,32 @@ +# todo + +> ஒரு எளிய, தரநிலை அடிப்படையிலான, cli todo மேலாளர். +> மேலும் விவரத்திற்கு: . + +- தொடங்கக்கூடிய பணிகளை பட்டியலிடுங்கள்: + +`todo list --startable` + +- பணி பட்டியலில் புதிய பணியைச் சேர்க்கவும்: + +`todo new {{செய்ய_வேண்டியவை}} --list {{வேலை}}` + +- கொடுக்கப்பட்ட ஐடியுடன் பணிக்கு இருப்பிடத்தைச் சேர்க்கவும்: + +`todo edit --location {{இருப்பிட_பெயர்}} {{பணி_ஐடி}}` + +- ஒரு பணியைப் பற்றிய விவரங்களைக் காட்டு: + +`todo show {{பணி_ஐடி}}` + +- குறிப்பிட்ட ஐடிகளுடன் பணிகளை முடித்ததாகக் குறிக்கவும்: + +`todo done {{பணி_ஐடி1 பணி_ஐடி2 ...}}` + +- ஒரு பணியை நீக்கு: + +`todo delete {{பணி_ஐடி}}` + +- செய்த பணிகளை நீக்கி, மீதமுள்ள பணிகளின் ஐடிகளை மீட்டமைக்கவும்: + +`todo flush` diff --git a/pages.ta/common/todoist.md b/pages.ta/common/todoist.md new file mode 100644 index 00000000000000..fa0b5a12b9c39a --- /dev/null +++ b/pages.ta/common/todoist.md @@ -0,0 +1,28 @@ +# todoist + +> கட்டளை வரியிலிருந்து Todoist ஐ அணுகவும். +> மேலும் விவரத்திற்கு: . + +- பணியைச் சேர்க்கவும்: + +`todoist add "{{பணி_பெயர்}}"` + +- லேபிள், திட்டம் மற்றும் நிலுவைத் தேதியுடன் அதிக முன்னுரிமை பணியைச் சேர்க்கவும்: + +`todoist add "{{பணி_பெயர்}}" --priority {{1}} --label-ids "{{லேபிள்_ஐடி}}" --project-name "{{திட்டத்தின்_பெயர்}}" --date "{{நாளை காலை 9 மணி}}"` + +- Aவிரைவு பயன்முறையில் லேபிள், திட்டப்பணி மற்றும் நிலுவைத் தேதியுடன் அதிக முன்னுரிமைப் பணியைச் சேர்க்கவும்: + +`todoist quick '#{{திட்டத்தின்_பெயர்}} "{{நாளை காலை 9 மணி}}" p{{1}} {{பணி_பெயர்}} @{{லேபிள்_பெயர்}}'` + +- தலைப்பு மற்றும் வண்ணத்துடன் அனைத்து பணிகளையும் பட்டியலிடுங்கள்: + +`todoist --header --color list` + +- அனைத்து உயர் முன்னுரிமைப் பணிகளையும் பட்டியலிடுங்கள்: + +`todoist list --filter p{{1}}` + +- குறிப்பிடப்பட்ட லேபிளைக் கொண்ட இன்றைய பணிகளை அதிக முன்னுரிமையுடன் பட்டியலிடுங்கள்: + +`todoist list --filter '(@{{லேபிள்_பெயர்}} | {{இன்று}}) & p{{1}}'` diff --git a/pages.ta/common/todoman.md b/pages.ta/common/todoman.md new file mode 100644 index 00000000000000..51de9d309b17bd --- /dev/null +++ b/pages.ta/common/todoman.md @@ -0,0 +1,9 @@ +# todoman + +> ஒரு எளிய, தரநிலை அடிப்படையிலான, cli todo மேலாளர். +> `todoman` என்பது `todo` கட்டளைக்கான பொதுவான பெயர், ஆனால் அது ஒரு கட்டளை அல்ல. +> மேலும் விவரத்திற்கு: . + +- உண்மையான கட்டளைக்கான ஆவணத்தைப் பார்க்கவும்: + +`tldr todo` diff --git a/pages.ta/common/transmission.md b/pages.ta/common/transmission.md new file mode 100644 index 00000000000000..9d7318735a1136 --- /dev/null +++ b/pages.ta/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> இக்கட்டளை `transmission-daemon` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr transmission-daemon` diff --git a/pages.ta/common/uname.md b/pages.ta/common/uname.md new file mode 100644 index 00000000000000..8ede07e563df74 --- /dev/null +++ b/pages.ta/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.ta/common/unlzma.md b/pages.ta/common/unlzma.md new file mode 100644 index 00000000000000..0f28a173730d9d --- /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 00000000000000..cd02243d8c097c --- /dev/null +++ b/pages.ta/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/common/vi.md b/pages.ta/common/vi.md new file mode 100644 index 00000000000000..6cab606afa1495 --- /dev/null +++ b/pages.ta/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> இக்கட்டளை `vim` கட்டளையின் மற்றொருப் பெயர். + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr vim` diff --git a/pages.ta/common/vt.md b/pages.ta/common/vt.md new file mode 100644 index 00000000000000..37dcb52abccc48 --- /dev/null +++ b/pages.ta/common/vt.md @@ -0,0 +1,37 @@ +# vt + +> வைரஸ் டோட்டலுக்கான கட்டளை-வரி இடைமுகம். +> இந்த கட்டளைக்கு வைரஸ் டோட்டல் கணக்கிலிருந்து API விசை தேவை. +> மேலும் விவரத்திற்கு: . + +- வைரஸ்களுக்காக ஒரு குறிப்பிட்ட கோப்பை ஸ்கேன் செய்யவும்: + +`vt scan file {{பாதை/டு/கோப்பு}}` + +- வைரஸ்களுக்காக முகவரி ஐ ஸ்கேன் செய்யவும்: + +`vt scan url {{முகவரி}}` + +- ஒரு குறிப்பிட்ட பகுப்பாய்விலிருந்து தகவலைக் காண்பி: + +`vt analysis {{கோப்பு_ஐடி|பகுப்பாய்வு_ஐடி}}` + +- என்க்ரிப்ட் செய்யப்பட்ட `.zip` வடிவத்தில் கோப்புகளைப் பதிவிறக்கவும் (பிரீமியம் கணக்கு தேவை): + +`vt download {{கோப்பு_ஐடி}} --output {{அடைவிற்குப்/பாதை}} --zip --zip-password {{கடவுச்சொல்}}` + +- ஊடாடும் வகையில் API விசையை உள்ளிட `vt` ஐத் துவக்கவும் அல்லது மீண்டும் தொடங்கவும்: + +`vt init` + +- ஒரு டொமைன் பற்றிய தகவலைக் காட்டு: + +`vt domain {{முகவரி}}` + +- குறிப்பிட்ட முகவரிக்கான தகவலைக் காட்டு: + +`vt url {{முகவரி}}` + +- குறிப்பிட்ட IP(ஐபி) முகவரிக்கான தகவலைக் காண்பி: + +`vt domain {{ஐபி_முகவரி}}` diff --git a/pages.ta/common/xzcat.md b/pages.ta/common/xzcat.md new file mode 100644 index 00000000000000..473734908b2e4f --- /dev/null +++ b/pages.ta/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> இக்கட்டளை `xz` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr xz` diff --git a/pages.ta/linux/alien.md b/pages.ta/linux/alien.md new file mode 100644 index 00000000000000..4ed3d242348a76 --- /dev/null +++ b/pages.ta/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> வெவ்வேறு நிறுவல் தொகுப்புகளை மற்ற வடிவங்களுக்கு மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட நிறுவல் கோப்பை டெபியன் வடிவத்திற்கு மாற்றவும் (`.deb` நீட்டிப்பு): + +`sudo alien --to-deb {{பாதை/டு/கோப்பு}}` + +- குறிப்பிட்ட நிறுவல் கோப்பை Red Hat வடிவத்திற்கு மாற்றவும் (`.rpm` நீட்டிப்பு): + +`sudo alien --to-rpm {{பாதை/டு/கோப்பு}}` + +- ஒரு குறிப்பிட்ட நிறுவல் கோப்பை ஸ்லாக்வேர் நிறுவல் கோப்பாக மாற்றவும் (`.tgz` நீட்டிப்பு): + +`sudo alien --to-tgz {{பாதை/டு/கோப்பு}}` + +- ஒரு குறிப்பிட்ட நிறுவல் கோப்பை டெபியன் வடிவத்திற்கு மாற்றி கணினியில் நிறுவவும்: + +`sudo alien --to-deb --install {{பாதை/டு/கோப்பு}}` diff --git a/pages.ta/linux/alternatives.md b/pages.ta/linux/alternatives.md new file mode 100644 index 00000000000000..c94ecae40aae17 --- /dev/null +++ b/pages.ta/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> இக்கட்டளை `update-alternatives` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr update-alternatives` diff --git a/pages.ta/linux/anbox.md b/pages.ta/linux/anbox.md new file mode 100644 index 00000000000000..7eb0b04fb7b4b1 --- /dev/null +++ b/pages.ta/linux/anbox.md @@ -0,0 +1,8 @@ +# anbox + +> எந்த GNU/லினக்ஸ் ஆப்பரேட்டிங் சிஸ்டத்திலும் ஆண்ட்ராய்ட் அப்ளிகேஷன்களை இயக்கும். +> மேலும் விவரத்திற்கு: . + +- பயன்பாட்டு மேலாளரில் அன்பாக்ஸ் ஐத் தொடங்கவும்: + +`anbox launch --package={{org.anbox.appmgr}} --component={{org.anbox.appmgr.AppViewActivity}}` diff --git a/pages.ta/linux/apk.md b/pages.ta/linux/apk.md new file mode 100644 index 00000000000000..0d98374f126574 --- /dev/null +++ b/pages.ta/linux/apk.md @@ -0,0 +1,28 @@ +# apk + +> ஆல்பைன் லினக்ஸ் தொகுப்பு மேலாண்மை கருவி. +> மேலும் விவரத்திற்கு: . + +- அனைத்து தொலை களஞ்சியங்களிலிருந்தும் களஞ்சியக் குறியீடுகளைப் புதுப்பிக்கவும்: + +`apk update` + +- புதிய தொகுப்பை நிறுவவும்: + +`apk add {{நிரல்தொகுப்பு}}` + +- ஒரு தொகுப்பை அகற்று: + +`apk del {{நிரல்தொகுப்பு}}` + +- முக்கிய சார்புகளை மாற்றாமல் தொகுப்பை பழுதுபார்க்கவும் அல்லது மேம்படுத்தவும்: + +`apk fix {{நிரல்தொகுப்பு}}` + +- முக்கிய வார்த்தை மூலம் தொகுப்பைத் தேடுங்கள்: + +`apk search {{முக்கிய_வார்த்தை}}` + +- ஒரு குறிப்பிட்ட தொகுப்பு பற்றிய தகவலைப் பெறவும்: + +`apk info {{நிரல்தொகுப்பு}}` diff --git a/pages.ta/linux/apt.md b/pages.ta/linux/apt.md new file mode 100644 index 00000000000000..3b99fb6750662a --- /dev/null +++ b/pages.ta/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> டெபியன் அடிப்படையிலான விநியோகங்களுக்கான தொகுப்பு மேலாண்மை பயன்பாடு. +> உபுண்டு பதிப்பு 16.04 மற்றும் அதற்குப் பிந்தைய பதிப்புகளில் ஊடாடும் வகையில் பயன்படுத்தப்படும் போது `apt-get` க்கு மாற்றாக பரிந்துரைக்கப்படுகிறது. +> மேலும் விவரத்திற்கு: . + +- கிடைக்கக்கூடிய தொகுப்புகள் மற்றும் பதிப்புகளின் பட்டியலைப் புதுப்பிக்கவும் (மற்ற `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.ta/linux/aptitude.md b/pages.ta/linux/aptitude.md new file mode 100644 index 00000000000000..b84dde7625efcd --- /dev/null +++ b/pages.ta/linux/aptitude.md @@ -0,0 +1,36 @@ +# aptitude + +> டெபியன் மற்றும் உபுண்டு தொகுப்பு மேலாண்மை பயன்பாடு. +> மேலும் விவரத்திற்கு: . + +- கிடைக்கும் தொகுப்புகள் மற்றும் பதிப்புகளின் பட்டியலை ஒத்திசைக்கவும். அடுத்தடுத்த `aptitude` கட்டளைகளை இயக்கும் முன், இதை முதலில் இயக்க வேண்டும்: + +`aptitude update` + +- புதிய தொகுப்பு மற்றும் அதன் சார்புகளை நிறுவவும்: + +`aptitude install {{நிரல்தொகுப்பு}}` + +- தொகுப்பைத் தேடுங்கள்: + +`aptitude search {{நிரல்தொகுப்பு}}` + +- நிறுவப்பட்ட தொகுப்பைத் தேடவும் (`?installed` தகுதி தேடல் சொல்: + +`aptitude search '?installed({{நிரல்தொகுப்பு}})'` + +- ஒரு நிரல்தொகுப்பு மற்றும் அதை சார்ந்த அனைத்து தொகுப்புகளையும் அகற்றவும்: + +`aptitude remove {{நிரல்தொகுப்பு}}` + +- நிறுவப்பட்ட தொகுப்புகளை புதிய கிடைக்கக்கூடிய பதிப்புகளுக்கு மேம்படுத்தவும்: + +`aptitude upgrade` + +- நிறுவப்பட்ட தொகுப்புகளை மேம்படுத்தவும் (போன்ற `aptitude upgrade`) வழக்கற்றுப் போன தொகுப்புகளை அகற்றுதல் மற்றும் புதிய நிரல்தொகுப்பு சார்புகளை சந்திக்க கூடுதல் தொகுப்புகளை நிறுவுதல் உட்பட: + +`aptitude full-upgrade` + +- தானாக மேம்படுத்தப்படுவதைத் தடுக்க, நிறுவப்பட்ட தொகுப்பை நிறுத்தி வைக்கவும்: + +`aptitude hold '?installed({{நிரல்தொகுப்பு}})'` diff --git a/pages.ta/linux/apx.md b/pages.ta/linux/apx.md new file mode 100644 index 00000000000000..c127265c2949b2 --- /dev/null +++ b/pages.ta/linux/apx.md @@ -0,0 +1,37 @@ +# apx + +> தொகுப்பு மேலாண்மை பயன்பாடு. +> பல மூலங்களிலிருந்து நிர்வகிக்கப்பட்ட கொள்கலன்களுக்குள் தொகுப்புகளை நிறுவவும் (`apx` அனைத்து கட்டளைகளிலும் --aur,--dnf, --apk கொடிகளை ஆதரிக்கிறது). +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட கொள்கலனை துவக்கவும் அல்லது மீண்டும் துவக்கவும்: + +`apx init` + +- கொள்கலனில் குறிப்பிட்ட தொகுப்புகளை நிறுவவும்: + +`apx install {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` + +- கொள்கலனுக்குள் DEB/RPM தொகுப்பை நிறுவவும் (RPMகளை நிறுவ `--dnf` கொடியைப் பயன்படுத்தவும்): + +`apx install --sideload {{பாதை/டு/நிரல்தொகுப்பு}}` + +- கொள்கலனில் இருந்து குறிப்பிட்ட தொகுப்புகளை அகற்றவும்: + +`apx remove {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` + +- குறிப்பிட்ட தொகுப்புகளுக்காக தேடவும்: + +`apx search {{நிரல்தொகுப்பு1 நிரல்தொகுப்பு2 ...}}` + +- கட்டளைகளை இயக்க நிர்வகிக்கப்படும் கொள்கலன் ஷெல்லை (ஓடு) உள்ளிடவும் (கண்டெய்னரில் இருந்து வெளியேற `exit` என தட்டச்சு செய்யவும்): + +`apx enter` + +- கொள்கலனில் கிடைக்கும் தொகுப்புகளின் பட்டியலைப் புதுப்பிக்கவும்: + +`apx update` + +- கொள்கலனில் நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் அவற்றின் புதிய கிடைக்கக்கூடிய பதிப்பிற்கு மேம்படுத்தவும்: + +`apx upgrade` diff --git a/pages.ta/linux/archinstall.md b/pages.ta/linux/archinstall.md new file mode 100644 index 00000000000000..7aa4f62fde5254 --- /dev/null +++ b/pages.ta/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> ஒரு திருப்பத்துடன் வழிகாட்டப்பட்ட ஆர்ச் லினக்ஸ் நிறுவி. +> மேலும் விவரத்திற்கு: . + +- ஊடாடும் நிறுவியைத் தொடங்கவும்: + +`archinstall` + +- முன்னமைக்கப்பட்ட நிறுவியைத் தொடங்கவும்: + +`archinstall {{minimal|unattended}}` diff --git a/pages.ta/linux/ascii.md b/pages.ta/linux/ascii.md new file mode 100644 index 00000000000000..02cf37ac644191 --- /dev/null +++ b/pages.ta/linux/ascii.md @@ -0,0 +1,36 @@ +# ascii + +> ASCII எழுத்து மாற்றுப்பெயர்களைக் காட்டு. +> மேலும் விவரத்திற்கு: . + +- ஒரு எழுத்தின் ASCII மாற்றுப்பெயர்களைக் காட்டு: + +`ascii {{a}}` + +- சுருக்கமான, ஸ்கிரிப்ட்-நட்பு முறையில் ASCII மாற்றுப்பெயர்களைக் காட்டு: + +`ascii -t {{a}}` + +- பல எழுத்துக்களின் ASCII மாற்றுப்பெயர்களைக் காட்டு: + +`ascii -s {{tldr}}` + +- ASCII அட்டவணையை தசமத்தில் காட்டு: + +`ascii -d` + +- ASCII அட்டவணையை ஹெக்ஸாடெசிமலில் காட்டு: + +`ascii -x` + +- ASCII அட்டவணையை ஆக்டலில் காட்டு: + +`ascii -o` + +- ASCII அட்டவணையை பைனரியில் காட்டு: + +`ascii -b` + +- விருப்பங்களின் சுருக்கம் மற்றும் முழுமையான ASCII அட்டவணையைக் காட்டு: + +`ascii` diff --git a/pages.ta/linux/asciiart.md b/pages.ta/linux/asciiart.md new file mode 100644 index 00000000000000..1073ba4c729648 --- /dev/null +++ b/pages.ta/linux/asciiart.md @@ -0,0 +1,28 @@ +# asciiart + +> படங்களை ASCII ஆக மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு கோப்பிலிருந்து ஒரு படத்தைப் படித்து ASCII இல் அச்சிடவும்: + +`asciiart {{பாதை/டு/படம்.jpg}}` + +- URL இலிருந்து ஒரு படத்தைப் படித்து, ASCII இல் அச்சிடவும்: + +`asciiart {{www.example.com/image.jpg}}` + +- வெளியீட்டு அகலத்தைத் தேர்வு செய்யவும் (இயல்புநிலை 100): + +`asciiart --width {{50}} {{பாதை/டு/படம்.jpg}}` + +- ASCII வெளியீட்டை வண்ணமயமாக்கவும்: + +`asciiart --color {{பாதை/டு/படம்.jpg}}` + +- வெளியீட்டு வடிவமைப்பைத் தேர்வு செய்யவும் (இயல்புநிலை வடிவம் உரை): + +`asciiart --format {{text|html}} {{பாதை/டு/படம்.jpg}}` + +- எழுத்து வரைபடத்தைத் தலைகீழாக மாற்றவும்: + +`asciiart --invert-chars {{பாதை/டு/படம்.jpg}}` diff --git a/pages.ta/linux/batcat.md b/pages.ta/linux/batcat.md new file mode 100644 index 00000000000000..1857653adac35b --- /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 00000000000000..841cd140887e19 --- /dev/null +++ b/pages.ta/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> இக்கட்டளை `bspc` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr bspc` diff --git a/pages.ta/linux/cal.md b/pages.ta/linux/cal.md new file mode 100644 index 00000000000000..79a698b03e794f --- /dev/null +++ b/pages.ta/linux/cal.md @@ -0,0 +1,24 @@ +# cal + +> தற்போதைய நாள் தனிப்படுத்தப்பட்ட காலண்டர் தகவலை அச்சிடுகிறது. +> மேலும் விவரத்திற்கு: . + +- நடப்பு மாதத்திற்கான காலெண்டரைக் காட்டு: + +`cal` + +- முந்தைய, தற்போதைய மற்றும் அடுத்த மாதத்தைக் காட்டவும்: + +`cal -3` + +- வாரத்தின் முதல் நாளாக திங்கட்கிழமை பயன்படுத்தவும்: + +`cal --monday` + +- ஒரு குறிப்பிட்ட ஆண்டிற்கான காலெண்டரைக் காண்பி (4 இலக்கங்கள்): + +`cal {{ஆண்டு}}` + +- ஒரு குறிப்பிட்ட மாதம் மற்றும் ஆண்டுக்கான காலெண்டரைக் காட்டு: + +`cal {{மாதம்}} {{ஆண்டு}}` diff --git a/pages.ta/linux/cc.md b/pages.ta/linux/cc.md new file mode 100644 index 00000000000000..1693307582234c --- /dev/null +++ b/pages.ta/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> இக்கட்டளை `gcc` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr gcc` diff --git a/pages.ta/linux/cgroups.md b/pages.ta/linux/cgroups.md new file mode 100644 index 00000000000000..104b8679500f8d --- /dev/null +++ b/pages.ta/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> இக்கட்டளை `cgclassify` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr cgclassify` diff --git a/pages.ta/linux/distrobox-create.md b/pages.ta/linux/distrobox-create.md new file mode 100644 index 00000000000000..cd8e7f53279ab0 --- /dev/null +++ b/pages.ta/linux/distrobox-create.md @@ -0,0 +1,13 @@ +# distrobox-create + +> உள்ளீட்டு பெயர் மற்றும் படத்துடன் டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களை உருவாக்கவும். +> உருவாக்கப்பட்ட கொள்கலன் ஹோஸ்டுடன் இறுக்கமாக ஒருங்கிணைக்கப்படும், இது பயனரின் வீட்டு அடைவு, வெளிப்புற சேமிப்பு, வெளிப்புற USB சாதனங்கள், வரைகலை பயன்பாடுகள் (X11/Wayland) மற்றும் ஒலியைப் பகிர அனுமதிக்கிறது. +> மேலும் விவரத்திற்கு: . + +- உபுண்டு படத்தைப் பயன்படுத்தி டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உருவாக்கவும்: + +`distrobox-create {{கொள்கலன்_பெயர்}} --image {{ubuntu:latest}}` + +- ஒரு டிஸ்ட்ரோபாக்ஸ் கொள்கலனை நகல் செய்யுங்கள்: + +`distrobox-create --clone {{கொள்கலன்_பெயர்}} {{நகல்_செய்யப்பட்ட_கொள்கலன்_பெயர்}}` diff --git a/pages.ta/linux/distrobox-enter.md b/pages.ta/linux/distrobox-enter.md new file mode 100644 index 00000000000000..e4cc608872b70c --- /dev/null +++ b/pages.ta/linux/distrobox-enter.md @@ -0,0 +1,17 @@ +# distrobox-enter + +> டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிடவும். மேலும் காண்க: `tldr distrobox`. +> இயக்கப்படும் இயல்புநிலை கட்டளை உங்கள் SHELL, நீங்கள் இயக்குவதற்கு வெவ்வேறு ஓடுகள் அல்லது முழு கட்டளைகளையும் குறிப்பிடலாம். ஸ்கிரிப்ட், பயன்பாடு அல்லது சேவையில் பயன்படுத்தினால், `--headless' பயன்முறையைப் பயன்படுத்தி tty மற்றும் ஊடாடும் தன்மையை முடக்கலாம். +> மேலும் விவரத்திற்கு: . + +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிடவும்: + +`distrobox-enter {{கொள்கலன்_பெயர்}}` + +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை உள்ளிட்டு, உள்நுழையும்போது கட்டளையை இயக்கவும்: + +`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 new file mode 100644 index 00000000000000..532b24af36efab --- /dev/null +++ b/pages.ta/linux/distrobox-list.md @@ -0,0 +1,13 @@ +# distrobox-list + +> அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் பட்டியலிடுங்கள். மேலும் பார்க்கவும்: `tldr distrobox`. +> டிஸ்ட்ரோபாக்ஸ் கொள்கலன்கள் மற்ற சாதாரண பாட்மேன் அல்லது டோக்கர் கொள்கலன்களிலிருந்து தனித்தனியாக பட்டியலிடப்பட்டுள்ளன. +> மேலும் விவரத்திற்கு: . + +- அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் பட்டியலிடுங்கள்: + +`distrobox-list` + +- அனைத்து டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களையும் வர்போஸ் தகவலுடன் பட்டியலிடுங்கள்: + +`distrobox-list --verbose` diff --git a/pages.ta/linux/distrobox-rm.md b/pages.ta/linux/distrobox-rm.md new file mode 100644 index 00000000000000..689446ad0e891b --- /dev/null +++ b/pages.ta/linux/distrobox-rm.md @@ -0,0 +1,13 @@ +# distrobox-rm + +> டிஸ்ட்ரோபாக்ஸ் கொள்கலன்களை நீக்கு. +> `டிஸ்ட்ரோபாக்ஸ்`ன் துணைக் கட்டளை. மேலும் பார்க்கவும்: `tldr distrobox`. +> மேலும் விவரத்திற்கு: . + +- டிஸ்ட்ரோபாக்ஸ் கொள்கலனை அகற்று (உதவிக்குறிப்பு: கொள்கலனை அகற்றும் முன் அதை நிறுத்தவும்): + +`distrobox-rm {{கொள்கலன்_பெயர்}}` + +- ஒரு டிஸ்ட்ரோபாக்ஸ் கொள்கலனை வலுக்கட்டாயமாக அகற்றவும்: + +`distrobox-rm {{கொள்கலன்_பெயர்}} --force` diff --git a/pages.ta/linux/dnf.md b/pages.ta/linux/dnf.md new file mode 100644 index 00000000000000..8bfa986c7ee28a --- /dev/null +++ b/pages.ta/linux/dnf.md @@ -0,0 +1,36 @@ +# dnf + +> RHEL, Fedora மற்றும் CentOS க்கான தொகுப்பு மேலாண்மை பயன்பாடு (yum ஐ மாற்றுகிறது). +> மேலும் விவரத்திற்கு: . + +- நிறுவப்பட்ட தொகுப்புகளை புதிய கிடைக்கக்கூடிய பதிப்புகளுக்கு மேம்படுத்தவும்: + +`sudo dnf upgrade` + +- முக்கிய வார்த்தைகள் மூலம் தொகுப்புகளைத் தேடுங்கள்: + +`dnf search {{முக்கிய வார்த்தைகள்}}` + +- தொகுப்பு பற்றிய விவரங்களைக் காண்பி: + +`dnf info {{நிரல்தொகுப்பு}}` + +- புதிய தொகுப்பை நிறுவவும் (அனைத்து அறிவுறுத்தல்களையும் தானாக உறுதிப்படுத்த `-y` ஐப் பயன்படுத்தவும்): + +`sudo dnf install {{நிரல்தொகுப்பு}}` + +- ஒரு தொகுப்பை அகற்று: + +`sudo dnf remove {{நிரல்தொகுப்பு}}` + +- நிறுவப்பட்ட தொகுப்புகளை பட்டியலிடுங்கள்: + +`dnf list --installed` + +- கொடுக்கப்பட்ட கோப்பை எந்த தொகுப்புகள் வழங்குகின்றன என்பதைக் கண்டறியவும்: + +`dnf provides {{கோப்பு}}` + +- அனைத்து கடந்த செயல்பாடுகளையும் காண்க: + +`dnf history` diff --git a/pages.ta/linux/fdisk.md b/pages.ta/linux/fdisk.md new file mode 100644 index 00000000000000..05519f5e6ecb8d --- /dev/null +++ b/pages.ta/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.ta/linux/flatpak.md b/pages.ta/linux/flatpak.md new file mode 100644 index 00000000000000..e33baf0e247eb7 --- /dev/null +++ b/pages.ta/linux/flatpak.md @@ -0,0 +1,36 @@ +# flatpak + +> பிளாட்பேக் பயன்பாடுகள் மற்றும் இயக்க நேரங்களை உருவாக்கவும், நிறுவவும் மற்றும் இயக்கவும். +> மேலும் விவரத்திற்கு: . + +- நிறுவப்பட்ட பயன்பாட்டை இயக்கவும்: + +`flatpak run {{பெயர்}}` + +- தொலைநிலை மூலத்திலிருந்து பயன்பாட்டை நிறுவவும்: + +`flatpak install {{ரிமோட்}} {{பெயர்}}` + +- நிறுவப்பட்ட அனைத்து பயன்பாடுகளையும் இயக்க நேரங்களையும் பட்டியலிடுங்கள்: + +`flatpak list` + +- நிறுவப்பட்ட அனைத்து பயன்பாடுகளையும் இயக்க நேரங்களையும் புதுப்பிக்கவும்: + +`flatpak update` + +- தொலைநிலை மூலத்தைச் சேர்க்கவும்: + +`flatpak remote-add --if-not-exists {{ரிமோட்_பெயர்}} {{ரிமோட்_முகவரி}}` + +- உள்ளமைக்கப்பட்ட அனைத்து தொலை மூலங்களையும் பட்டியலிடுங்கள்: + +`flatpak remote-list` + +- நிறுவப்பட்ட பயன்பாட்டை அகற்றவும்: + +`flatpak remove {{பெயர்}}` + +- நிறுவப்பட்ட பயன்பாட்டைப் பற்றிய தகவலைக் காட்டு: + +`flatpak info {{பெயர்}}` diff --git a/pages.ta/linux/fwupdmgr.md b/pages.ta/linux/fwupdmgr.md new file mode 100644 index 00000000000000..0298ea86392bc1 --- /dev/null +++ b/pages.ta/linux/fwupdmgr.md @@ -0,0 +1,20 @@ +# fwupdmgr + +> `fwupd` ஐப் பயன்படுத்தி UEFI உட்பட சாதன நிலைபொருளைப் புதுப்பிப்பதற்கான ஒரு கருவி. +> மேலும் விவரத்திற்கு: . + +- fwupd மூலம் கண்டறியப்பட்ட அனைத்து சாதனங்களையும் காண்பி: + +`fwupdmgr get-devices` + +- LVFS இலிருந்து சமீபத்திய ஃபார்ம்வேர் மெட்டாடேட்டாவைப் பதிவிறக்கவும்: + +`fwupdmgr refresh` + +- உங்கள் கணினியில் உள்ள சாதனங்களுக்கு கிடைக்கும் புதுப்பிப்புகளை பட்டியலிடுங்கள்: + +`fwupdmgr get-updates` + +- ஃபார்ம்வேர் புதுப்பிப்புகளை நிறுவவும்: + +`fwupdmgr update` diff --git a/pages.ta/linux/gedit.md b/pages.ta/linux/gedit.md new file mode 100644 index 00000000000000..c1a647337d9765 --- /dev/null +++ b/pages.ta/linux/gedit.md @@ -0,0 +1,20 @@ +# gedit + +> க்னோம் டெஸ்க்டாப் திட்டத்தின் உரை திருத்தி. +> மேலும் விவரத்திற்கு: . + +- உரைக் கோப்பைத் திறக்கவும்: + +`gedit {{பாதை/டு/கோப்பு}}` + +- பல உரை கோப்புகளைத் திறக்கவும்: + +`gedit {{கோப்பு1 கோப்பு2...}}` + +- ஒரு குறிப்பிட்ட குறியாக்கத்துடன் உரைக் கோப்பைத் திறக்கவும்: + +`gedit --encoding={{UTF-8}} {{பாதை/டு/கோப்பு}}` + +- ஆதரிக்கப்படும் குறியாக்கங்களின் பட்டியலைக் காண்பிக்கவும்: + +`gedit --list-encodings` diff --git a/pages.ta/linux/gnome-calculator.md b/pages.ta/linux/gnome-calculator.md new file mode 100644 index 00000000000000..70ae47c9e1cda0 --- /dev/null +++ b/pages.ta/linux/gnome-calculator.md @@ -0,0 +1,16 @@ +# gnome-calculator + +> GNOME டெஸ்க்டாப் சூழலுக்கான அதிகாரப்பூர்வ கால்குலேட்டர். +> மேலும் விவரத்திற்கு: . + +- GNOME கால்குலேட்டர் GUI ஐ துவக்கவும்: + +`gnome-calculator` + +- டெஸ்க்டாப் பயன்பாட்டைத் தொடங்காமல் கட்டளை வரியில் குறிப்பிடப்பட்ட சமன்பாட்டைத் தீர்க்கவும்: + +`gnome-calculator --solve {{2^5 * 2 + 5}}` + +- பதிப்பைக் காட்டு: + +`gnome-calculator --version` diff --git a/pages.ta/linux/gnome-extensions.md b/pages.ta/linux/gnome-extensions.md new file mode 100644 index 00000000000000..ffd88566acc33f --- /dev/null +++ b/pages.ta/linux/gnome-extensions.md @@ -0,0 +1,32 @@ +# gnome-extensions + +> டெர்மினலில் இருந்து க்னோம் நீட்டிப்புகளை நிர்வகிக்கவும். +> மேலும் விவரத்திற்கு: . + +- பதிப்பைக் காட்டு: + +`gnome-extensions version` + +- நிறுவப்பட்ட அனைத்து நீட்டிப்புகளையும் பட்டியலிடுங்கள்: + +`gnome-extensions list` + +- ஒரு குறிப்பிட்ட நீட்டிப்பு பற்றிய தகவலைக் காட்டு: + +`gnome-extensions info "{{நீட்டிப்பு_ஐடி}}"` + +- துணைக் கட்டளைக்கான உதவியைக் காண்பி (`பட்டியல்` போன்றவை): + +`gnome-extensions help {{துணைகட்டளை}}` + +- ஒரு குறிப்பிட்ட நீட்டிப்பை இயக்கு: + +`gnome-extensions enable "{{நீட்டிப்பு_ஐடி}}"` + +- ஒரு குறிப்பிட்ட நீட்டிப்பை முடக்கு: + +`gnome-extension disable "{{நீட்டிப்பு_ஐடி}}"` + +- ஒரு குறிப்பிட்ட நீட்டிப்பை நிறுவல் நீக்கு: + +`gnome-extension uninstall "{{நீட்டிப்பு_ஐடி}}"` diff --git a/pages.ta/linux/gnome-screenshot.md b/pages.ta/linux/gnome-screenshot.md new file mode 100644 index 00000000000000..4862502f37bc8b --- /dev/null +++ b/pages.ta/linux/gnome-screenshot.md @@ -0,0 +1,36 @@ +# gnome-screenshot + +> திரை, சாளரம் அல்லது பயனர் வரையறுக்கப்பட்ட பகுதியைப் படம்பிடித்து, படத்தை ஒரு கோப்பில் சேமிக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு ஸ்கிரீன் ஷாட்டை எடுத்து இயல்புநிலை இடத்தில் சேமிக்கவும், பொதுவாக `~/Pictures`(படங்கள்): + +`gnome-screenshot` + +- ஒரு ஸ்கிரீன்ஷாட்டை எடுத்து, பெயரிடப்பட்ட கோப்பு இடத்தில் சேமிக்கவும்: + +`gnome-screenshot --file {{பாதை/டு/கோப்பு}}` + +- ஒரு ஸ்கிரீன்ஷாட்டை எடுத்து கிளிப்போர்டில் சேமிக்கவும்: + +`gnome-screenshot --clipboard` + +- குறிப்பிட்ட எண்ணிக்கையிலான வினாடிகளுக்குப் பிறகு ஸ்கிரீன்ஷாட்டை எடுக்கவும்: + +`gnome-screenshot --delay {{5}}` + +- க்னோம் ஸ்கிரீன்ஷாட் GUI ஐ துவக்கவும்: + +`gnome-screenshot --interactive` + +- தற்போதைய சாளரத்தின் ஸ்கிரீன்ஷாட்டை எடுத்து குறிப்பிட்ட கோப்பு இடத்தில் சேமிக்கவும்: + +`gnome-screenshot --window --file {{பாதை/டு/கோப்பு}}` + +- குறிப்பிட்ட வினாடிகளுக்குப் பிறகு ஸ்கிரீன் ஷாட்டை எடுத்து கிளிப்போர்டில் சேமிக்கவும்: + +`gnome-screenshot --delay {{10}} --clipboard` + +- பதிப்பைக் காட்டு: + +`gnome-screenshot --version` diff --git a/pages.ta/linux/gnome-software.md b/pages.ta/linux/gnome-software.md new file mode 100644 index 00000000000000..eee5bf71dcc073 --- /dev/null +++ b/pages.ta/linux/gnome-software.md @@ -0,0 +1,20 @@ +# gnome-software + +> பயன்பாடுகளைச் சேர்க்கவும் அகற்றவும் மற்றும் உங்கள் கணினியைப் புதுப்பிக்கவும். +> மேலும் விவரத்திற்கு: . + +- GNOME மென்பொருள் GUI ஏற்கனவே இயங்கவில்லை என்றால் அதைத் தொடங்கவும்: + +`gnome-software` + +- GNOME மென்பொருள் GUI திறக்கப்படாவிட்டால் அதைத் துவக்கவும், மேலும் குறிப்பிட்ட பக்கத்திற்கு செல்லவும்: + +`gnome-software --mode {{updates|updated|installed|overview}}` + +- GNOME மென்பொருள் GUI திறக்கப்படாவிட்டால், அதைத் துவக்கி, குறிப்பிட்ட தொகுப்பைப் பார்க்கவும்: + +`gnome-software --details {{தொகுப்பு_பெயர்}}` + +- பதிப்பைக் காட்டு: + +`gnome-software --version` diff --git a/pages.ta/linux/ip-route-list.md b/pages.ta/linux/ip-route-list.md new file mode 100644 index 00000000000000..69e8359ba7bb22 --- /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 00000000000000..15cf4f00369117 --- /dev/null +++ b/pages.ta/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> இக்கட்டளை `megatools-dl` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr megatools-dl` diff --git a/pages.ta/linux/ncal.md b/pages.ta/linux/ncal.md new file mode 100644 index 00000000000000..88741cbce4e598 --- /dev/null +++ b/pages.ta/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> இக்கட்டளை `cal` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr cal` diff --git a/pages.ta/linux/pacman-database.md b/pages.ta/linux/pacman-database.md new file mode 100644 index 00000000000000..49e5a13e6a9e48 --- /dev/null +++ b/pages.ta/linux/pacman-database.md @@ -0,0 +1,29 @@ +# pacman --database + +> ஆர்ச் லினக்ஸ் தொகுப்பு தரவுத்தளத்தில் செயல்படவும். +> நிறுவப்பட்ட தொகுப்புகளின் சில பண்புகளை மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு தொகுப்பை மறைமுகமாக நிறுவியதாகக் குறிக்கவும்: + +`sudo pacman --database --asdeps {{நிரல்தொகுப்பு_பெயர்}}` + +- ஒரு தொகுப்பை வெளிப்படையாக நிறுவியதாகக் குறிக்கவும்: + +`sudo pacman --database --asexplicit {{நிரல்தொகுப்பு_பெயர்}}` + +- அனைத்து தொகுப்பு சார்புகளும் நிறுவப்பட்டுள்ளதா என சரிபார்க்கவும்: + +`pacman --database --check` + +- அனைத்து குறிப்பிட்ட சார்புகளும் உள்ளனவா என்பதை உறுதிசெய்ய, களஞ்சியங்களைச் சரிபார்க்கவும்: + +`pacman --database --check --check` + +- பிழை செய்திகளை மட்டும் காட்டு: + +`pacman --database --check --quiet` + +- உதவியைக் காட்டு: + +`pacman --database --help` diff --git a/pages.ta/linux/pacman-deptest.md b/pages.ta/linux/pacman-deptest.md new file mode 100644 index 00000000000000..69b9efb1567da2 --- /dev/null +++ b/pages.ta/linux/pacman-deptest.md @@ -0,0 +1,20 @@ +# pacman --deptest + +> குறிப்பிடப்பட்ட ஒவ்வொரு சார்புநிலையையும் சரிபார்த்து, கணினியில் தற்போது திருப்தி அடையாத சார்புகளின் பட்டியலைத் திருப்பி அனுப்பவும். +> மேலும் விவரத்திற்கு: . + +- நிறுவப்படாத சார்புகளின் தொகுப்பு பெயர்களை அச்சிடவும்: + +`pacman --deptest {{நிரல்தொகுப்பு_பெயர்1}} {{நிரல்தொகுப்பு_பெயர்2}}` + +- நிறுவப்பட்ட தொகுப்பு கொடுக்கப்பட்ட குறைந்தபட்ச பதிப்பை பூர்த்திசெய்கிறதா என சரிபார்க்கவும்: + +`pacman --deptest "{{bash>=5}}"` + +- தொகுப்பின் பிந்தைய பதிப்பு நிறுவப்பட்டுள்ளதா எனச் சரிபார்க்கவும்: + +`pacman --deptest "{{bash>5}}"` + +- உதவியைக் காட்டு: + +`pacman --deptest --help` diff --git a/pages.ta/linux/pacman-files.md b/pages.ta/linux/pacman-files.md new file mode 100644 index 00000000000000..9c88e46e1f9cd2 --- /dev/null +++ b/pages.ta/linux/pacman-files.md @@ -0,0 +1,33 @@ +# pacman --files + +> ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> `pkgfile` ஐயும் பார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- தொகுப்பு தரவுத்தளத்தைப் புதுப்பிக்கவும்: + +`sudo pacman --files --refresh` + +- ஒரு குறிப்பிட்ட கோப்பை வைத்திருக்கும் தொகுப்பைக் கண்டறியவும்: + +`pacman --files {{கோப்பு_பெயர்}}` + +- வழக்கமான வெளிப்பாட்டைப் பயன்படுத்தி, ஒரு குறிப்பிட்ட கோப்பை வைத்திருக்கும் தொகுப்பைக் கண்டறியவும்: + +`pacman --files --regex '{{வழக்கமான_வெளிப்பாடு}}'` + +- தொகுப்பு பெயர்களை மட்டும் பட்டியலிடுங்கள்: + +`pacman --files --quiet {{கோப்பு_பெயர்}}` + +- குறிப்பிட்ட தொகுப்புக்கு சொந்தமான கோப்புகளை பட்டியலிடுங்கள்: + +`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 new file mode 100644 index 00000000000000..f91376943e0aa8 --- /dev/null +++ b/pages.ta/linux/pacman-key.md @@ -0,0 +1,36 @@ +# pacman-key + +> பேக்மேனின் கீரிங்கை நிர்வகிக்க GnuPGக்கான ரேப்பர் ஸ்கிரிப்ட் பயன்படுத்தப்படுகிறது. +> மேலும் விவரத்திற்கு: . + +- பேக்மேன் கீரிங்கை துவக்கவும்: + +`sudo pacman-key --init` + +- இயல்பு ஆர்ச் லினக்ஸ் விசைகளைச் சேர்க்கவும்: + +`sudo pacman-key --populate {{archlinux}}` + +- பொது விசையிலிருந்து விசைகளை பட்டியலிடவும்: + +`pacman-key --list-keys` + +- குறிப்பிட்ட விசைகளைச் சேர்க்கவும்: + +`sudo pacman-key --சேர் {{பாதை/டு/விசைக்கோப்பு.gpg}}` + +- ஒரு முக்கிய சேவையகத்திலிருந்து ஒரு விசையைப் பெறுங்கள்: + +`sudo pacman-key --recv-keys "{{uid|பெயர்|மின்னஞ்சல்}}"` + +- ஒரு குறிப்பிட்ட விசையின் கைரேகையை அச்சிடுங்கள்: + +`pacman-key --finger "{{uid|பெயர்|மின்னஞ்சல்}}"` + +- இறக்குமதி செய்யப்பட்ட விசையை உள்நாட்டில் கையொப்பமிடவும்: + +`sudo pacman-key --lsign-key "{{uid|பெயர்|மின்னஞ்சல்}}"` + +- ஒரு குறிப்பிட்ட விசையை அகற்று: + +`sudo pacman-key --delete "{{uid|பெயர்|மின்னஞ்சல்}}"` diff --git a/pages.ta/linux/pacman-mirrors.md b/pages.ta/linux/pacman-mirrors.md new file mode 100644 index 00000000000000..ddfd64ae448a32 --- /dev/null +++ b/pages.ta/linux/pacman-mirrors.md @@ -0,0 +1,25 @@ +# pacman-mirrors + +> மஞ்சாரோ லினக்ஸுக்கு பேக்மேன் கண்ணாடி பட்டியலை உருவாக்கவும். +> பேக்மேன்-கண்ணாடிகள் ஒவ்வொரு ஓட்டத்திற்கும் உங்கள் தரவுத்தளத்தை ஒத்திசைக்க மற்றும் `sudo pacman -Syyu` ஐப் பயன்படுத்தி உங்கள் கணினியைப் புதுப்பிக்க வேண்டும். +> மேலும் விவரத்திற்கு: . + +- இயல்புநிலை அமைப்புகளைப் பயன்படுத்தி ஒரு கண்ணாடி பட்டியலை உருவாக்கவும்: + +`sudo pacman-mirrors --fasttrack` + +- தற்போதைய கண்ணாடிகளின் நிலையைப் பெறுங்கள்: + +`pacman-mirrors --status` + +- தற்போதைய கிளையைக் காட்டு: + +`pacman-mirrors --get-branch` + +- வேறு கிளைக்கு மாறவும்: + +`sudo pacman-mirrors --api --set-branch {{stable|unstable|testing}}` + +- உங்கள் நாட்டில் உள்ள கண்ணாடிகளை மட்டும் பயன்படுத்தி, கண்ணாடி பட்டியலை உருவாக்கவும்: + +`sudo pacman-mirrors --geoip` diff --git a/pages.ta/linux/pacman-remove.md b/pages.ta/linux/pacman-remove.md new file mode 100644 index 00000000000000..b272cfd26e075a --- /dev/null +++ b/pages.ta/linux/pacman-remove.md @@ -0,0 +1,32 @@ +# pacman --remove + +> ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> மேலும் விவரத்திற்கு: . + +- ஒரு தொகுப்பு மற்றும் அதன் சார்புகளை அகற்றவும்: + +`sudo pacman --remove --recursive {{நிரல்தொகுப்பு_பெயர்}}` + +- ஒரு தொகுப்பு மற்றும் அதன் சார்புகள் மற்றும் கட்டமைப்பு கோப்புகள் இரண்டையும் அகற்றவும்: + +`sudo pacman --remove --recursive --nosave {{நிரல்தொகுப்பு_பெயர்}}` + +- கேட்காமல் ஒரு தொகுப்பை அகற்றவும்: + +`sudo pacman --remove --noconfirm {{நிரல்தொகுப்பு_பெயர்}}` + +- அனாதை தொகுப்புகளை அகற்று (சார்புகளாக நிறுவப்பட்டது ஆனால் எந்த தொகுப்பிற்கும் தேவையில்லை): + +`sudo pacman --remove --recursive --nosave $(pacman --query --unrequired --deps --quiet)` + +- ஒரு தொகுப்பு மற்றும் அதைச் சார்ந்த அனைத்து தொகுப்புகளையும் அகற்றவும்: + +`sudo pacman --remove --cascade {{நிரல்தொகுப்பு_பெயர்}}` + +- பாதிக்கப்படக்கூடிய தொகுப்புகளை பட்டியலிடுங்கள் (எந்த தொகுப்புகளையும் அகற்றாது): + +`pacman --remove --print {{நிரல்தொகுப்பு_பெயர்}}` + +- இந்த துணைக் கட்டளைக்கான உதவியைக் காட்டு: + +`pacman --remove --help` diff --git a/pages.ta/linux/pacman-sync.md b/pages.ta/linux/pacman-sync.md new file mode 100644 index 00000000000000..06afcb3c745df3 --- /dev/null +++ b/pages.ta/linux/pacman-sync.md @@ -0,0 +1,36 @@ +# pacman --sync + +> ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> மேலும் விவரத்திற்கு: . + +- ஒரு புதிய தொகுப்பை நிறுவவும்: + +`sudo pacman --sync {{நிரல்தொகுப்பு_பெயர்}}` + +- அனைத்து தொகுப்புகளையும் ஒத்திசைத்து புதுப்பிக்கவும் (தொகுப்புகளைப் பதிவிறக்குவதற்கு `--downloadonly` சேர்க்கவும், அவற்றைப் புதுப்பிக்க வேண்டாம்): + +`sudo pacman --sync --refresh --sysupgrade` + +- அனைத்து தொகுப்புகளையும் புதுப்பித்து, கேட்காமல் புதிய ஒன்றை நிறுவவும்: + +`sudo pacman --sync --refresh --sysupgrade --noconfirm {{நிரல்தொகுப்பு_பெயர்}}` + +- வழக்கமான வெளிப்பாடு அல்லது முக்கிய சொல்லுக்கு தொகுப்பு தரவுத்தளத்தில் தேடவும்: + +`pacman --sync --தேடல் "{{தேடல்_முறை}}"` + +- தொகுப்பு பற்றிய தகவலைக் காட்டு: + +`pacman --sync --info {{நிரல்தொகுப்பு_பெயர்}}` + +- தொகுப்பு புதுப்பிப்பின் போது முரண்பட்ட கோப்புகளை மேலெழுதவும்: + +`sudo pacman --sync --refresh --sysupgrade --ஓவர்ரைட் {{பாதை/டு/கோப்பு}}` + +- அனைத்து தொகுப்புகளையும் ஒத்திசைத்து புதுப்பிக்கவும், ஆனால் ஒரு குறிப்பிட்ட தொகுப்பை புறக்கணிக்கவும் (ஒருமுறைக்கு மேல் பயன்படுத்தலாம்): + +`sudo pacman --sync --refresh --sysupgrade --ignor {{தொகுப்பு_பெயர்}}` + +- நிறுவப்படாத தொகுப்புகள் மற்றும் பயன்படுத்தப்படாத களஞ்சியங்களை தற்காலிக சேமிப்பிலிருந்து அகற்றவும் (அனைத்து தொகுப்புகளையும் சுத்தம் செய்ய இரண்டு `--clean` கொடிகளைப் பயன்படுத்தவும்): + +`sudo pacman --sync --clean` diff --git a/pages.ta/linux/pacman-upgrade.md b/pages.ta/linux/pacman-upgrade.md new file mode 100644 index 00000000000000..c3fef1b856ac96 --- /dev/null +++ b/pages.ta/linux/pacman-upgrade.md @@ -0,0 +1,28 @@ +# pacman --upgrade + +> ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> மேலும் விவரத்திற்கு: . + +- கோப்புகளிலிருந்து ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவவும்: + +`sudo pacman --upgrade {{பாதை/டு/நிரல்தொகுப்பு1.pkg.tar.zst}} {{பாதை/டு/நிரல்தொகுப்பு2.pkg.tar.zst}}` + +- கேட்காமல் ஒரு தொகுப்பை நிறுவவும்: + +`sudo pacman --upgrade --noconfirm {{பாதை/டு/நிரல்தொகுப்பு.pkg.tar.zst}}` + +- தொகுப்பு நிறுவலின் போது முரண்பட்ட கோப்புகளை மேலெழுதவும்: + +`sudo pacman --upgrade --overwrite {{பாதை/டு/கோப்பு}} {{பாதை/டு/நிரல்தொகுப்பு.pkg.tar.zst}}` + +- சார்பு பதிப்பு சரிபார்ப்புகளைத் தவிர்த்து, தொகுப்பை நிறுவவும்: + +`sudo pacman --upgrade --nodeps {{பாதை/டு/நிரல்தொகுப்பு.pkg.tar.zst}}` + +- பாதிக்கப்படக்கூடிய தொகுப்புகளைப் பட்டியலிடுங்கள் (எந்த தொகுப்புகளையும் நிறுவாது): + +`pacman --upgrade --print {{பாதை/டு/நிரல்தொகுப்பு.pkg.tar.zst}}` + +- உதவியைக் காட்டு: + +`pacman --upgrade --help` diff --git a/pages.ta/linux/pacman.md b/pages.ta/linux/pacman.md new file mode 100644 index 00000000000000..d57e3753ee872f --- /dev/null +++ b/pages.ta/linux/pacman.md @@ -0,0 +1,37 @@ +# pacman + +> ஆர்ச் லினக்ஸ் தொகுப்பு மேலாளர் பயன்பாடு. +> `pacman sync` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. +> மேலும் விவரத்திற்கு: . + +- அனைத்து தொகுப்புகளையும் ஒத்திசைத்து புதுப்பிக்கவும்: + +`sudo pacman -Syu` + +- ஒரு புதிய தொகுப்பை நிறுவவும்: + +`sudo pacman -S {{நிரல்தொகுப்பு_பெயர்}}` + +- ஒரு தொகுப்பு மற்றும் அதன் சார்புகளை அகற்றவும்: + +`சுடோ பேக்மேன் -ரூ {{நிரல்தொகுப்பு_பெயர்}}` + +- வழக்கமான வெளிப்பாடு அல்லது முக்கிய சொல்லுக்கு தொகுப்பு தரவுத்தளத்தில் தேடவும்: + +`pacman -Ss "{{தேடல்_முறை}}"` + +- நிறுவப்பட்ட தொகுப்புகள் மற்றும் பதிப்புகளை பட்டியலிடுங்கள்: + +`pacman -Q` + +- வெளிப்படையாக நிறுவப்பட்ட தொகுப்புகள் மற்றும் பதிப்புகளை மட்டும் பட்டியலிடுங்கள்: + +`pacman -Qe` + +- அனாதை தொகுப்புகளை பட்டியலிடு (சார்புகளாக நிறுவப்பட்டது ஆனால் உண்மையில் எந்த தொகுப்பிற்கும் தேவையில்லை): + +`pacman -Qtdq` + +- முழு பேக்மேன் தற்காலிக சேமிப்பையும் காலி செய்யவும்: + +`sudo pacman -Scc` diff --git a/pages.ta/linux/pacman4console.md b/pages.ta/linux/pacman4console.md new file mode 100644 index 00000000000000..d9207e13fbbeb2 --- /dev/null +++ b/pages.ta/linux/pacman4console.md @@ -0,0 +1,20 @@ +# pacman4console + +> அசல் பேக்மேனால் ஈர்க்கப்பட்ட உரை அடிப்படையிலான கன்சோல் கேம். +> மேலும் விவரத்திற்கு: . + +- நிலை 1 இல் ஒரு விளையாட்டைத் தொடங்கவும்: + +`pacman4console` + +- ஒரு குறிப்பிட்ட மட்டத்தில் ஒரு விளையாட்டைத் தொடங்கவும் (ஒன்பது அதிகாரப்பூர்வ நிலைகள் உள்ளன): + +`pacman4console --level={{நிலை_எண்}}` + +- pacman4console நிலை எடிட்டரைத் தொடங்கவும், குறிப்பிட்ட உரைக் கோப்பில் சேமிக்கவும்: + +`pacman4consoleedit {{பாதை/டு/நிலை_கோப்பு}}` + +- தனிப்பயன் மட்டத்தை விளையாடுங்கள்: + +`pacman4console --level={{பாதை/டு/நிலை_கோப்பு}}` diff --git a/pages.ta/linux/protontricks.md b/pages.ta/linux/protontricks.md new file mode 100644 index 00000000000000..8c60c98f2b0d11 --- /dev/null +++ b/pages.ta/linux/protontricks.md @@ -0,0 +1,28 @@ +# protontricks + +> புரோட்டான் இயக்கப்பட்ட கேம்களுக்கான ஒயின்ட்ரிக்ஸ் கட்டளைகளை இயக்கும் எளிய ரேப்பர். +> மேலும் விவரத்திற்கு: . + +- புரோட்டான்ட்ரிக்ஸ் GUI ஐ இயக்கவும்: + +`protontricks --gui` + +- ஒரு குறிப்பிட்ட விளையாட்டுக்கு ஒயின்ட்ரிக்ஸை இயக்கவும்: + +`protontricks {{ஆப்_ஐடி}} {{ஒயின்ட்ரிக்ஸ்_ஆர்க்ஸ்}}` + +- விளையாட்டின் நிறுவல் கோப்பகத்தில் கட்டளையை இயக்கவும்: + +`protontricks -c {{கட்டளை}} {{ஆப்_ஐடி}}` + +- [l]நிறுவப்பட்ட அனைத்து கேம்களும் பட்டியலிடவும்: + +`protontricks -l` + +- [s]பெயரின் மூலம் கேமின் ஆப் ஐடியைத் தேடவும்: + +`protontricks -s {{விளையாட்டின்_பெயர்}}` + +- புரோட்டான்ட்ரிக்ஸ் உதவி செய்தியைக் காட்டு: + +`protontricks --help` diff --git a/pages.ta/linux/rpm-ostree.md b/pages.ta/linux/rpm-ostree.md new file mode 100644 index 00000000000000..91bd15f0823671 --- /dev/null +++ b/pages.ta/linux/rpm-ostree.md @@ -0,0 +1,25 @@ +# rpm-ostree + +> ஒரு கலப்பின படம்/தொகுப்பு அமைப்பு. +> ostree வரிசைப்படுத்தல்கள், தொகுப்பு அடுக்குகள், கோப்பு முறைமை மேலடுக்குகள் மற்றும் துவக்க உள்ளமைவு ஆகியவற்றை நிர்வகிக்கவும். +> மேலும் விவரத்திற்கு: . + +- துவக்க ஏற்றியில் தோன்றும் வரிசையில் `rpm-ostree` வரிசைப்படுத்தல்களைக் காட்டு: + +`rpm-ostree status` + +- காலாவதியான மற்றும் புதுப்பிக்கக்கூடிய தொகுப்புகளைக் காட்டு: + +`rpm-ostree upgrade --preview` + +- மேம்படுத்தப்பட்ட தொகுப்புகளுடன் ஒரு புதிய `ostree` வரிசைப்படுத்தலைத் தயாரித்து அதில் மீண்டும் துவக்கவும்: + +`rpm-ostree upgrade --reboot` + +- முந்தைய ostree வரிசைப்படுத்தலில் மீண்டும் துவக்கவும்: + +`rpm-ostree rollback --reboot` + +- ஒரு புதிய ostree வரிசைப்படுத்தலில் ஒரு தொகுப்பை நிறுவி அதில் மீண்டும் துவக்கவும்: + +`rpm-ostree install {{தொகுப்பு}} --reboot` diff --git a/pages.ta/linux/ruget.md b/pages.ta/linux/ruget.md new file mode 100644 index 00000000000000..66eb32d002f358 --- /dev/null +++ b/pages.ta/linux/ruget.md @@ -0,0 +1,12 @@ +# ruget + +> ரஸ்டில் எழுதப்பட்ட wget மாற்று. +> மேலும் விவரத்திற்கு: . + +- URL முகவரி இன் உள்ளடக்கங்களை ஒரு கோப்பில் பதிவிறக்கவும்: + +`ruget {{https://example.com/file}}` + +- URL முகவரி இன் உள்ளடக்கங்களை குறிப்பிட்ட [o]அவுட்புட் கோப்பில் பதிவிறக்கவும்: + +`ruget --output {{கோப்பு_பெயர்}} {{https://example.com/file}}` diff --git a/pages.ta/linux/toolbox-create.md b/pages.ta/linux/toolbox-create.md new file mode 100644 index 00000000000000..182845af798256 --- /dev/null +++ b/pages.ta/linux/toolbox-create.md @@ -0,0 +1,24 @@ +# toolbox create + +> புதிய `toolbox` கொள்கலனை உருவாக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட விநியோகத்திற்காக `toolbox` கொள்கலனை உருவாக்கவும்: + +`toolbox create --distro {{விநியோகம்}}` + +- தற்போதைய விநியோகத்தின் குறிப்பிட்ட வெளியீட்டிற்கு `toolbox` கொள்கலனை உருவாக்கவும்: + +`toolbox create --release {{வெளியீடு}}` + +- தனிப்பயன் படத்துடன் `toolbox` கொள்கலனை உருவாக்கவும்: + +`toolbox create --image {{பெயர்}}` + +- தனிப்பயன் ஃபெடோரா படத்திலிருந்து `toolbox` கொள்கலனை உருவாக்கவும்: + +`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:36}}` + +- ஃபெடோரா 36க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனை உருவாக்கவும்: + +`toolbox create --distro {{fedora}} --release {{f36}}` diff --git a/pages.ta/linux/toolbox-enter.md b/pages.ta/linux/toolbox-enter.md new file mode 100644 index 00000000000000..698eeb63a8aa42 --- /dev/null +++ b/pages.ta/linux/toolbox-enter.md @@ -0,0 +1,17 @@ +# toolbox enter + +> ஊடாடும் பயன்பாட்டிற்கு `toolbox` கொள்கலனை உள்ளிடவும். +> மேலும் பார்க்கவும்: `toolbox run`. +> மேலும் விவரத்திற்கு: . + +- குறிப்பிட்ட விநியோகத்தின் இயல்புப் படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனை உள்ளிடவும்: + +`toolbox enter --distro {{விநியோகம்}}` + +- தற்போதைய விநியோகத்தின் குறிப்பிட்ட வெளியீட்டின் இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனை உள்ளிடவும்: + +`toolbox enter --release {{வெளியீடு}}` + +- ஃபெடோரா 36 க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி ஒரு கருவிப்பெட்டி கொள்கலனை உள்ளிடவும்: + +`toolbox enter --distro {{fedora}} --release {{f36}}` diff --git a/pages.ta/linux/toolbox-help.md b/pages.ta/linux/toolbox-help.md new file mode 100644 index 00000000000000..155610de892e68 --- /dev/null +++ b/pages.ta/linux/toolbox-help.md @@ -0,0 +1,12 @@ +# toolbox help + +> `toolbox` பற்றிய உதவித் தகவலைக் காட்டுகிறது. +> மேலும் விவரத்திற்கு: . + +- `toolbox` கையேட்டைக் காண்பி: + +`toolbox help` + +- குறிப்பிட்ட துணைக் கட்டளைக்கான `toolbox` கையேட்டைக் காண்பி: + +`toolbox help {{துணைக்_கட்டளை}}` diff --git a/pages.ta/linux/toolbox-init-container.md b/pages.ta/linux/toolbox-init-container.md new file mode 100644 index 00000000000000..f6bf9c3854d69f --- /dev/null +++ b/pages.ta/linux/toolbox-init-container.md @@ -0,0 +1,9 @@ +# toolbox init-container + +> இயங்கும் `toolbox` கொள்கலனைத் தொடங்கவும். +> இந்த கட்டளை பயனரால் செயல்படுத்தப்படக்கூடாது, மேலும் ஹோஸ்டில் இயக்க முடியாது. +> மேலும் விவரத்திற்கு: . + +- இயங்கும் கருவிப்பெட்டியை துவக்கவும்: + +`toolbox init-container --gid {{gid}} --home {{வீடு}} --home-link --media-link --mnt-link --monitor-host --shell {{ஷெல்}} --uid {{uid}} --user {{பயனர்}}` diff --git a/pages.ta/linux/toolbox-list.md b/pages.ta/linux/toolbox-list.md new file mode 100644 index 00000000000000..f83805f96117bf --- /dev/null +++ b/pages.ta/linux/toolbox-list.md @@ -0,0 +1,16 @@ +# toolbox list + +> ஏற்கனவே உள்ள `toolbox' கொள்கலன்களையும் படங்களையும் பட்டியலிடுங்கள். +> மேலும் விவரத்திற்கு: . + +- அனைத்து `toolbox` கொள்கலன்களையும் படங்களையும் பட்டியலிடுங்கள்: + +`toolbox list` + +- `toolbox` கொள்கலன்களை மட்டும் பட்டியலிடுங்கள்: + +`toolbox list --containers` + +- `toolbox` படங்களை மட்டும் பட்டியலிடுங்கள்: + +`toolbox list --images` diff --git a/pages.ta/linux/toolbox-rm.md b/pages.ta/linux/toolbox-rm.md new file mode 100644 index 00000000000000..48f4deec170cb5 --- /dev/null +++ b/pages.ta/linux/toolbox-rm.md @@ -0,0 +1,17 @@ +# toolbox rm + +> ஒன்று அல்லது அதற்கு மேற்பட்ட `toolbox` கொள்கலன்களை அகற்றவும். +> மேலும் பார்க்கவும்: `toolbox rmi`. +> மேலும் விவரத்திற்கு: . + +- கருவிப்பெட்டி கொள்கலனை அகற்றவும்: + +`toolbox rm {{கொள்கலன்_பெயர்}}` + +- அனைத்து `toolbox` கொள்கலனை அகற்றவும்: + +`toolbox rm --all` + +- தற்போது செயலில் உள்ள `toolbox` கொள்கலனை அகற்றுமாறு கட்டாயப்படுத்தவும்: + +`toolbox rm --force {{கொள்கலன்_பெயர்}}` diff --git a/pages.ta/linux/toolbox-rmi.md b/pages.ta/linux/toolbox-rmi.md new file mode 100644 index 00000000000000..587c20d051259c --- /dev/null +++ b/pages.ta/linux/toolbox-rmi.md @@ -0,0 +1,17 @@ +# toolbox rmi + +> ஒன்று அல்லது அதற்கு மேற்பட்ட `toolbox` படங்களை அகற்றவும். +> மேலும் பார்க்கவும்: `toolbox rm`. +> மேலும் விவரத்திற்கு: . + +- `toolbox` படத்தை அகற்றவும்: + +`toolbox rmi {{படம்_பெயர்}}` + +- அனைத்து `toolbox` படங்களையும் அகற்றவும்: + +`toolbox rmi --all` + +- தற்போது கன்டெய்னரால் பயன்படுத்தப்படும் `toolbox` படத்தை அகற்றுமாறு கட்டாயப்படுத்துங்கள் (கண்டெய்னரும் அகற்றப்படும்): + +`toolbox rmi --force {{படம்_பெயர்}}` diff --git a/pages.ta/linux/toolbox-run.md b/pages.ta/linux/toolbox-run.md new file mode 100644 index 00000000000000..ff1ff86191946c --- /dev/null +++ b/pages.ta/linux/toolbox-run.md @@ -0,0 +1,17 @@ +# toolbox run + +> ஏற்கனவே உள்ள `toolbox` கண்டெய்னரில் கட்டளையை இயக்கவும். +> மேலும் பார்க்கவும்: `toolbox enter`. +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட `toolbox` கொள்கலனில் ஒரு கட்டளையை இயக்கவும்: + +`toolbox run --container {{கொள்கலன்_பெயர்}} {{கட்டளை}}` + +- விநியோகத்தின் குறிப்பிட்ட வெளியீட்டிற்கு `toolbox` கொள்கலனுக்குள் கட்டளையை இயக்கவும்: + +`toolbox run --distro {{விநியோகம்}} --release {{வெளியீடு}} {{கட்டளை}}` + +- ஃபெடோரா 36க்கான இயல்புநிலை படத்தைப் பயன்படுத்தி `toolbox` கொள்கலனுக்குள் `emacs` ஐ இயக்கவும்: + +`toolbox run --distro {{fedora}} --release {{f36}} {{emacs}}` diff --git a/pages.ta/linux/toolbox.md b/pages.ta/linux/toolbox.md new file mode 100644 index 00000000000000..7dd8217815d72d --- /dev/null +++ b/pages.ta/linux/toolbox.md @@ -0,0 +1,21 @@ +# toolbox + +> லினக்ஸ் இல் கண்டெய்னரைஸ் செய்யப்பட்ட கட்டளை வரி சூழல்களுக்கான கருவி. +> `toolbox create` போன்ற சில துணைக் கட்டளைகள் அவற்றின் சொந்த பயன்பாட்டு ஆவணங்களைக் கொண்டுள்ளன. +> மேலும் விவரத்திற்கு: . + +- `toolbox` துணைக் கட்டளையை இயக்கவும்: + +`toolbox {{துணைக்_கட்டளை}}` + +- `toolbox` துணைக் கட்டளைக்கான உதவியைக் காட்டு (`create`, `enter`, `rm`, `rmi` போன்றவை.): + +`toolbox help {{துணைக்_கட்டளை}}` + +- பொதுவான உதவியைக் காட்டு: + +`toolbox --help` + +- `toolbox` பதிப்பைக் காட்டு: + +`toolbox --version` diff --git a/pages.ta/linux/tshark.md b/pages.ta/linux/tshark.md new file mode 100644 index 00000000000000..742f579c658f4b --- /dev/null +++ b/pages.ta/linux/tshark.md @@ -0,0 +1,36 @@ +# tshark + +> பாக்கெட் பகுப்பாய்வு கருவி, வயர்ஷார்க்கின் CLI பதிப்பு. +> மேலும் விவரத்திற்கு: . + +- லோக்கல் ஹோஸ்டில் அனைத்தையும் கண்காணிக்கவும்: + +`tshark` + +- குறிப்பிட்ட பிடிப்பு வடிப்பானுடன் பொருந்தும் பாக்கெட்டுகளை மட்டும் பிடிக்கவும்: + +`tshark -f '{{udp port 53}}'` + +- குறிப்பிட்ட வெளியீட்டு வடிப்பானுடன் பொருந்தும் பாக்கெட்டுகளை மட்டும் காட்டு: + +`tshark -Y '{{http.request.method == "GET"}}'` + +- ஒரு குறிப்பிட்ட நெறிமுறையைப் பயன்படுத்தி TCP போர்ட்டை டிகோட் செய்யவும் (எ.கா. HTTP): + +`tshark -d tcp.port=={{8888}},{{http}}` + +- கைப்பற்றப்பட்ட வெளியீட்டின் வடிவமைப்பைக் குறிப்பிடவும்: + +`tshark -T {{json|text|ps|…}}` + +- வெளியீட்டிற்கு குறிப்பிட்ட புலங்களைத் தேர்ந்தெடுக்கவும்: + +`tshark -T {{fields|ek|json|pdml}} -e {{http.request.method}} -e {{ip.src}}` + +- கைப்பற்றப்பட்ட பாக்கெட்டை ஒரு கோப்பில் எழுதவும்: + +`tshark -w {{பாதை/டு/கோப்பு}}` + +- ஒரு கோப்பிலிருந்து பாக்கெட்டுகளை பகுப்பாய்வு செய்யுங்கள்: + +`tshark -r {{பாதை/டு/கோப்பு.pcap}}` diff --git a/pages.ta/linux/ubuntu-bug.md b/pages.ta/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..76604980024daf --- /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 new file mode 100644 index 00000000000000..d08ea1cd992dd4 --- /dev/null +++ b/pages.ta/linux/ufw.md @@ -0,0 +1,37 @@ +# ufw + +> சிக்கலற்ற ஃபயர்வால். +> ஃபயர்வாலின் உள்ளமைவை எளிதாக்குவதை நோக்கமாகக் கொண்ட ஐப்டேபிள்களுக்கான முன்பக்கம். +> மேலும் விவரத்திற்கு: . + +- `ufw` ஐ இயக்கு: + +`ufw enable` + +- `ufw` ஐ முடக்கு: + +`ufw disable` + +- `ufw` விதிகளை அவற்றின் எண்களுடன் காட்டு: + +`ufw status numbered` + +- சேவையை அடையாளம் காட்டும் கருத்துடன் இந்த ஹோஸ்டில் உள்ள போர்ட் 5432 இல் உள்வரும் போக்குவரத்தை அனுமதிக்கவும்: + +`ufw allow {{5432}} comment "{{சேவை}}"` + +- போர்ட் 22 இல், இந்த ஹோஸ்டில் உள்ள எந்த முகவரிக்கும் 192.168.0.4 இலிருந்து டிசிபி போக்குவரத்தை மட்டும் அனுமதிக்கவும்: + +`ufw allow proto {{டிசிபி}} from {{192.168.0.4}} to {{ஏதேனும்}} port {{22}}` + +- இந்த ஹோஸ்டில் போர்ட் 80 இல் போக்குவரத்தை நிராகரிக்கவும்: + +`ufw deny {{80}}` + +- 8412:8500 வரம்பில் உள்ள துறைமுகங்களுக்கு அனைத்து யுடிபி போக்குவரத்தையும் நிராகரிக்கவும்: + +`ufw deny proto {{யுடிபி}} from {{ஏதேனும்}} to {{ஏதாவது}} port {{8412:8500}}` + +- ஒரு குறிப்பிட்ட விதியை நீக்கவும். விதி எண்ணை `ufw status numbered` கட்டளையிலிருந்து மீட்டெடுக்கலாம்: + +`ufw delete {{விதி_எண்}}` diff --git a/pages.ta/linux/uname.md b/pages.ta/linux/uname.md new file mode 100644 index 00000000000000..446cfcbb82412b --- /dev/null +++ b/pages.ta/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.ta/linux/wine.md b/pages.ta/linux/wine.md new file mode 100644 index 00000000000000..19d434d3f5644a --- /dev/null +++ b/pages.ta/linux/wine.md @@ -0,0 +1,28 @@ +# wine + +> யூனிக்ஸ் அடிப்படையிலான கணினிகளில் விண்டோஸ் இயங்குதளங்களை இயக்கவும். +> மேலும் விவரத்திற்கு: . + +- `wine` சூழலில் ஒரு குறிப்பிட்ட நிரலை இயக்கவும்:: + +`wine {{கட்டளை}}` + +- பின்னணியில் ஒரு குறிப்பிட்ட நிரலை இயக்கவும்: + +`wine start {{கட்டளை}}` + +- ஒரு MSI தொகுப்பை நிறுவவும்/நிறுத்தவும்: + +`wine msiexec /{{i|x}} {{கோப்போ/அடைவோ/நிரல்தொகுப்பு.msi}}` + +- `கோப்பு எக்ஸ்ப்ளோரர்`, `நோட்பேட்` அல்லது `வேர்ட்பேட்` ஐ இயக்கவும்: + +`wine {{explorer|notepad|write}}` + +- `ரெஜிஸ்ட்ரி எடிட்டர்`, `கண்ட்ரோல் பேனல்` அல்லது `டாஸ்க் மேனேஜர்` ஆகியவற்றை இயக்கவும்: + +`wine {{regedit|control|taskmgr}}` + +- கட்டமைப்பு கருவியை இயக்கவும்: + +`wine winecfg` diff --git a/pages.ta/osx/aa.md b/pages.ta/osx/aa.md new file mode 100644 index 00000000000000..bbb0a19d41109d --- /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 00000000000000..7667b36abe5640 --- /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 00000000000000..acc20333670da9 --- /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 00000000000000..27175c6afee821 --- /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 00000000000000..a9644d1ddb5546 --- /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 00000000000000..52737eb9314827 --- /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 00000000000000..de709748d2ab39 --- /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 00000000000000..8225088e8adc34 --- /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 00000000000000..304ea5d38deb0b --- /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 00000000000000..52ed519b82a4dc --- /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 00000000000000..4501d65ca8b5b1 --- /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 00000000000000..2d9d21a159fa00 --- /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 00000000000000..873b8f44ef3867 --- /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 00000000000000..d1345d785624b5 --- /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 00000000000000..0e3f5d6b523b6d --- /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 00000000000000..06501846830a23 --- /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 00000000000000..4e62a3a275fd7d --- /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 00000000000000..f2f0c59edcb0c6 --- /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 00000000000000..b74407385f8868 --- /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 00000000000000..0b0ee60cd4f378 --- /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 00000000000000..63910fba26199c --- /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 00000000000000..e754f6da0146dc --- /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 00000000000000..7cd8531d4b8345 --- /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 00000000000000..fa31084d3239ae --- /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 00000000000000..34b533af7dbf22 --- /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 00000000000000..5a4282570759c9 --- /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 00000000000000..ce0ec59f383350 --- /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 00000000000000..c3b7b91eff6b95 --- /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 00000000000000..862cd2584b560b --- /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 00000000000000..7ec63f081a271e --- /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 00000000000000..b5e93ede373ca4 --- /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 00000000000000..01abdb869e5c92 --- /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 00000000000000..d1d85cf59301db --- /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 00000000000000..be04339fbbced8 --- /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 00000000000000..46a0ca658b583f --- /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 00000000000000..cb3aaf76493d1a --- /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 00000000000000..86960eac323886 --- /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 00000000000000..c8c726d108892d --- /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 00000000000000..46d13d0049e94b --- /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 00000000000000..47f8b9daf27dbe --- /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 00000000000000..ff6a9e0686bb06 --- /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 00000000000000..4ffd74996e41d8 --- /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 00000000000000..12bd4b77a9d74c --- /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 00000000000000..66599b02c50eb3 --- /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 00000000000000..66ede1055f078f --- /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 00000000000000..758983de6e1d28 --- /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 00000000000000..3355056fbef88c --- /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 00000000000000..096a7ae14c56ff --- /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 00000000000000..bb38f23689ac98 --- /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 00000000000000..4955618d7440f0 --- /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 00000000000000..63580e1a9cc561 --- /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 00000000000000..9cc0e818540a73 --- /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 00000000000000..80a1d77e37f9a1 --- /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 00000000000000..8a838cc3c75f28 --- /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 00000000000000..d72ccd78d0f94d --- /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 00000000000000..0cb939cae42d97 --- /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 00000000000000..52ea39e5f09a79 --- /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 00000000000000..0b763fd16b61d8 --- /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 00000000000000..1b2bc1affadd39 --- /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 00000000000000..41a044ccaa5bd5 --- /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 00000000000000..4253c851455d37 --- /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 00000000000000..e6fa5189cb34b9 --- /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 00000000000000..18debc745c76f1 --- /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 00000000000000..b5f5c63e03bb7e --- /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 00000000000000..48b86a7c647fa7 --- /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 00000000000000..ae4f2353c9b1eb --- /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 00000000000000..1b53a0775b38fd --- /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 00000000000000..f78786a97346c1 --- /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 00000000000000..898b0ab0f322e3 --- /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 00000000000000..dba08ea9833dad --- /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 00000000000000..f1665f3e8daa66 --- /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 00000000000000..b1e03b6d1f3994 --- /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 00000000000000..c5086b5a5f0a12 --- /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 00000000000000..c4ca4c546e025d --- /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 00000000000000..f686264e7127a5 --- /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 00000000000000..4561f2a13a3624 --- /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 00000000000000..21d9d0b69cf50f --- /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 00000000000000..a39c83abaaca6c --- /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 00000000000000..623af7cda48984 --- /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 00000000000000..fa3bc2e7cfa481 --- /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 00000000000000..899705f4f2b292 --- /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 00000000000000..bf349a806d887b --- /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 00000000000000..eabbc916f3e9d9 --- /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 00000000000000..0d3e9af677ff61 --- /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 00000000000000..fbb7ed07d8d388 --- /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 00000000000000..3ec078efb0c488 --- /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 00000000000000..c413ea7f34fbf6 --- /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 00000000000000..b67c052b7e095c --- /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 00000000000000..d4ff94fce8d969 --- /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 00000000000000..bee19ba7cafedd --- /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 00000000000000..c8114867031e81 --- /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 00000000000000..f79ce858f3b6bd --- /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 00000000000000..3e1161ef22fcd4 --- /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 00000000000000..8d35c702184be4 --- /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 00000000000000..3ee10cd6711b9c --- /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 00000000000000..7a2ac5589e437a --- /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 00000000000000..11bc918e46328e --- /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 00000000000000..184f44c9e09755 --- /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 00000000000000..63033e969de34a --- /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 00000000000000..8d5fe0ad98a1f9 --- /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 00000000000000..83dec26722f4b5 --- /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 00000000000000..25d47c0e32b3c4 --- /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 00000000000000..f62d84f10cf527 --- /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 00000000000000..23e312349df9e6 --- /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 00000000000000..b3f401b564f21b --- /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 00000000000000..dca33dfea3b54d --- /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 00000000000000..618f4e8cdc5b09 --- /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 00000000000000..cbcb1e96aa7048 --- /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 00000000000000..b72d7026fa549b --- /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 00000000000000..6f83d79131b4ff --- /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 00000000000000..737d56ff381f81 --- /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 00000000000000..479925084f07f6 --- /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 00000000000000..56fe649c358512 --- /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 00000000000000..160301c8189ebc --- /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 00000000000000..c1f57b4daadbbe --- /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 00000000000000..84bd5e646ae7dd --- /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 00000000000000..8988f5b4c218dc --- /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 00000000000000..5c86655ee2d3bb --- /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 00000000000000..f378077df625b2 --- /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 00000000000000..083bec9cac6313 --- /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 00000000000000..5a7c12ab8fc7a5 --- /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 00000000000000..32c33ebe65d2d1 --- /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 00000000000000..165a8a90e1562e --- /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 00000000000000..47456917c8ca42 --- /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 00000000000000..589c06d369d2b2 --- /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 00000000000000..f15e045a377d5a --- /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 00000000000000..162260b5b65642 --- /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 00000000000000..d467e5d1dd4f66 --- /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 00000000000000..6a8a91b10dbaef --- /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 00000000000000..927aaa22eac162 --- /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 00000000000000..2e65d1cbc9ade1 --- /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 00000000000000..4e348eea5c3ff5 --- /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 00000000000000..2a5c4aa8ab576f --- /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 00000000000000..ac021cf40c887d --- /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 00000000000000..b0f49a97e934b8 --- /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 00000000000000..01305fc0686094 --- /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 00000000000000..3899d1e0aade42 --- /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 00000000000000..d03a0006992988 --- /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 00000000000000..34ad98bbebb05b --- /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 00000000000000..ddae4d771ee694 --- /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 00000000000000..89f149cb1f9bba --- /dev/null +++ b/pages.ta/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> இக்கட்டளை `launchctl` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr launchctl` diff --git a/pages.ta/osx/uname.md b/pages.ta/osx/uname.md new file mode 100644 index 00000000000000..e01a5c65ebb5ea --- /dev/null +++ b/pages.ta/osx/uname.md @@ -0,0 +1,25 @@ +# uname + +> தற்போதைய இயந்திரம் மற்றும் அதில் இயங்கும் இயக்க முறைமை பற்றிய விவரங்களை அச்சிடவும். +> குறிப்பு: இயக்க முறைமை பற்றிய கூடுதல் தகவலுக்கு, `sw_vers` கட்டளையை முயற்சிக்கவும். +> மேலும் விவரத்திற்கு: . + +- கர்னல் பெயரை அச்சிடவும்: + +`uname` + +- கணினி கட்டமைப்பு மற்றும் செயலி தகவலை அச்சிடவும்: + +`uname -mp` + +- கர்னல் பெயர், கர்னல் வெளியீடு மற்றும் கர்னல் பதிப்பை அச்சிடவும்: + +`uname -srv` + +- அச்சு அமைப்பு ஹோஸ்ட்பெயரை: + +`uname -n` + +- கிடைக்கக்கூடிய அனைத்து கணினி தகவல்களையும் அச்சிடவும்: + +`uname -a` diff --git a/pages.ta/sunos/devfsadm.md b/pages.ta/sunos/devfsadm.md new file mode 100644 index 00000000000000..b3a0d391d37948 --- /dev/null +++ b/pages.ta/sunos/devfsadm.md @@ -0,0 +1,16 @@ +# devfsadm + +> `/dev` க்கான நிர்வாக கட்டளை. `/dev` பெயர்வெளியை பராமரிக்கிறது. +> மேலும் விவரத்திற்கு: . + +- புதிய டிஸ்க்குகளை ஸ்கேன் செய்யவும்: + +`devfsadm -c disk` + +- தொங்கும் /தேவ் இணைப்புகளை சுத்தம் செய்து புதிய சாதனத்தை ஸ்கேன் செய்யவும்: + +`devfsadm -C -v` + +- ட்ரை-ரன் - என்ன மாற்றப்படும் என்பதை வெளியீடு ஆனால் எந்த மாற்றமும் செய்யாது: + +`devfsadm -C -v -n` diff --git a/pages.ta/sunos/dmesg.md b/pages.ta/sunos/dmesg.md new file mode 100644 index 00000000000000..7da0bb5bcdcef8 --- /dev/null +++ b/pages.ta/sunos/dmesg.md @@ -0,0 +1,16 @@ +# dmesg + +> கர்னல் செய்திகளை நிலையான வெளியீட்டிற்கு எழுதவும். +> மேலும் விவரத்திற்கு: . + +- கர்னல் செய்திகளைக் காட்டு: + +`dmesg` + +- இந்த அமைப்பில் எவ்வளவு இயற்பியல் நினைவகம் உள்ளது என்பதைக் காட்டுங்கள்: + +`dmesg | grep -i memory` + +- ஒரு நேரத்தில் 1 பக்கம் கர்னல் செய்திகளைக் காட்டு: + +`dmesg | less` diff --git a/pages.ta/sunos/prctl.md b/pages.ta/sunos/prctl.md new file mode 100644 index 00000000000000..76d25894bb4d36 --- /dev/null +++ b/pages.ta/sunos/prctl.md @@ -0,0 +1,16 @@ +# prctl + +> இயங்கும் செயல்முறைகளின், பணிகள் மற்றும் திட்டங்களின் ஆதாரக் கட்டுப்பாடு பெறவும் அல்லது அமைக்கவும். +> மேலும் விவரத்திற்கு: . + +- செயல்முறை வரம்புகள் மற்றும் அனுமதிகளை ஆய்வு செய்: + +`prctl {{pid}}` + +- இயந்திர பாகுபடுத்தக்கூடிய வடிவத்தில் செயல்முறை வரம்புகள் மற்றும் அனுமதிகளை ஆய்வு செய்: + +`prctl -P {{pid}}` + +- இயங்கும் செயல்முறைக்கான குறிப்பிட்ட வரம்பைப் பெறுங்கள்: + +`prctl -n process.max-file-descriptor {{pid}}` diff --git a/pages.ta/sunos/prstat.md b/pages.ta/sunos/prstat.md new file mode 100644 index 00000000000000..d1690767501137 --- /dev/null +++ b/pages.ta/sunos/prstat.md @@ -0,0 +1,24 @@ +# prstat + +> செயலில் உள்ள செயல்முறை புள்ளிவிவரங்களைப் புகாரளிக்கவும். +> மேலும் விவரத்திற்கு: . + +- CPU பயன்பாட்டின்படி வரிசைப்படுத்தப்பட்ட அனைத்து செயல்முறைகள் மற்றும் அறிக்கைகளின் புள்ளிவிவரங்களை ஆய்வு செய்யவும்: + +`prstat` + +- அனைத்து செயல்முறைகளையும் ஆய்வு செய்து, நினைவக பயன்பாட்டின்படி வரிசைப்படுத்தப்பட்ட புள்ளிவிவரங்களைப் புகாரளிக்கவும்: + +`prstat -s rss` + +- ஒவ்வொரு பயனருக்கும் மொத்த பயன்பாட்டுச் சுருக்கத்தைப் புகாரளிக்கவும்: + +`prstat -t` + +- மைக்ரோஸ்டேட் செயல்முறை கணக்கியல் தகவலைப் புகாரளிக்கவும்: + +`prstat -m` + +- ஒவ்வொரு நொடியும் செயல்முறைகளைப் பயன்படுத்தி முதல் 5 CPU இன் பட்டியலை அச்சிடவும்: + +`prstat -c -n 5 -s cpu 1` diff --git a/pages.ta/sunos/snoop.md b/pages.ta/sunos/snoop.md new file mode 100644 index 00000000000000..bd28aac01c3812 --- /dev/null +++ b/pages.ta/sunos/snoop.md @@ -0,0 +1,25 @@ +# snoop + +> நெட்வொர்க் பாக்கெட் ஸ்னிஃபர். +> tcpdump சமமான SunOS. +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட பிணைய இடைமுகத்தில் பாக்கெட்டுகளைப் பிடிக்கவும்: + +`snoop -d {{e1000g0}}` + +- கைப்பற்றப்பட்ட பாக்கெட்டுகளைக் காட்டுவதற்குப் பதிலாக ஒரு கோப்பில் சேமிக்கவும்: + +`snoop -o {{கோப்புப்_பெயர்}}` + +- ஒரு கோப்பிலிருந்து பாக்கெட்டுகளின் வெர்போஸ் புரோட்டோகால் லேயர் சுருக்கத்தைக் காண்பி: + +`snoop -V -i {{கோப்புப்_பெயர்}}` + +- ஹோஸ்ட்பெயரில் இருந்து வரும் நெட்வொர்க் பாக்கெட்டுகளைப் பிடித்து, கொடுக்கப்பட்ட போர்ட்டிற்குச் செல்லவும்: + +`snoop to port {{போர்ட்}} from host {{புரவலன்_பெயர்}}` + +- இரண்டு ஐபி முகவரிகளுக்கு இடையே பரிமாற்றம் செய்யப்பட்ட நெட்வொர்க் பாக்கெட்டுகளின் ஹெக்ஸ்-டம்ப்பைப் பிடித்துக் காட்டவும்: + +`snoop -x0 -p4 {{ஐபி_முகவரி_1}} {{ஐபி_முகவரி_2}}` diff --git a/pages.ta/sunos/svcadm.md b/pages.ta/sunos/svcadm.md new file mode 100644 index 00000000000000..98fd8f978340ba --- /dev/null +++ b/pages.ta/sunos/svcadm.md @@ -0,0 +1,24 @@ +# svcadm + +> சேவை நிகழ்வுகளை கையாளவும். +> மேலும் விவரத்திற்கு: . + +- சேவை தரவுத்தளத்தில் சேவையை இயக்கவும்: + +`svcadm enable {{சேவை_பெயர்}}` + +- சேவையை முடக்கு: + +`svcadm disable {{சேவை_பெயர்}}` + +- இயங்கும் சேவையை மீண்டும் தொடங்கவும்: + +`svcadm restart {{சேவை_பெயர்}}` + +- உள்ளமைவு கோப்புகளை மீண்டும் படிக்க கட்டளை சேவை: + +`svcadm refresh {{சேவை_பெயர்}}` + +- பராமரிப்பு நிலையிலிருந்து ஒரு சேவையை தெளிவாகி அதைத் தொடங்குமாறு கட்டளையிடவும்: + +`svcadm clear {{சேவை_பெயர்}}` diff --git a/pages.ta/sunos/svccfg.md b/pages.ta/sunos/svccfg.md new file mode 100644 index 00000000000000..7c8f7a0a00e840 --- /dev/null +++ b/pages.ta/sunos/svccfg.md @@ -0,0 +1,16 @@ +# svccfg + +> சேவை உள்ளமைவுகளை இறக்குமதி செய்யவும், ஏற்றுமதி செய்யவும் மற்றும் மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- உள்ளமைவு கோப்பை சரிபார்க்கவும்: + +`svccfg validate {{smf.xml}}` + +- கோப்பிற்கு சேவை உள்ளமைவுகளை ஏற்றுமதி செய்யவும்: + +`svccfg export {{சேவை_பெயர்}} > {{smf.xml}}` + +- கோப்பிலிருந்து சேவை உள்ளமைவுகளை இறக்குமதி/புதுப்பித்தல்: + +`svccfg import {{smf.xml}}` diff --git a/pages.ta/sunos/svcs.md b/pages.ta/sunos/svcs.md new file mode 100644 index 00000000000000..33d5ad150981a2 --- /dev/null +++ b/pages.ta/sunos/svcs.md @@ -0,0 +1,24 @@ +# svcs + +> இயங்கும் சேவைகள் பற்றிய தகவல்களை பட்டியலிடுங்கள். +> மேலும் விவரத்திற்கு: . + +- இயங்கும் அனைத்து சேவைகளையும் பட்டியலிடுங்கள்: + +`svcs` + +- இயங்காத சேவைகளை பட்டியலிடுங்கள்: + +`svcs -vx` + +- சேவையைப் பற்றிய தகவல்களைப் பட்டியலிடுங்கள்: + +`svcs apache` + +- சேவை பதிவு கோப்பின் இருப்பிடத்தைக் காட்டு: + +`svcs -L apache` + +- சேவை பதிவு கோப்பின் முடிவைக் காண்பி: + +`tail $(svcs -L apache)` diff --git a/pages.ta/sunos/truss.md b/pages.ta/sunos/truss.md new file mode 100644 index 00000000000000..a8555ec036f8f9 --- /dev/null +++ b/pages.ta/sunos/truss.md @@ -0,0 +1,25 @@ +# truss + +> சிஸ்டம் அழைப்புகளைத் தடமறிவதற்கான பிழைகாணல் கருவி. +> ஸ்டிரேஸுக்குச் சமமான SunOS. +> மேலும் விவரத்திற்கு: . + +- அனைத்து குழந்தை செயல்முறைகளையும் பின்பற்றி, அதை செயல்படுத்துவதன் மூலம் ஒரு நிரலைக் கண்டறியத் தொடங்குங்கள்: + +`truss -f {{நிரல்}}` + +- ஒரு குறிப்பிட்ட செயல்முறையை அதன் PID மூலம் கண்டறியத் தொடங்குங்கள்: + +`truss -p {{pid}}` + +- ஒரு நிரலை இயக்குவதன் மூலம், வாதங்கள் மற்றும் சூழல் மாறிகளைக் காண்பிப்பதன் மூலம் அதைக் கண்டுபிடிக்கத் தொடங்குங்கள்: + +`truss -a -e {{நிரல்}}` + +- ஒவ்வொரு கணினி அழைப்பிற்கும் நேரம், அழைப்புகள் மற்றும் பிழைகளை எண்ணி, நிரல் வெளியேறும் போது சுருக்கத்தைப் புகாரளிக்கவும்: + +`truss -c -p {{pid}}` + +- கணினி அழைப்பின் மூலம் செயல்முறை வடிகட்டுதல் வெளியீட்டைக் கண்டறியவும்: + +`truss -p {{pid}} -t {{அமைப்பின்_அழைப்பு_பெயர்}}` diff --git a/pages.ta/windows/assoc.md b/pages.ta/windows/assoc.md new file mode 100644 index 00000000000000..f5c0e8fc7c29a0 --- /dev/null +++ b/pages.ta/windows/assoc.md @@ -0,0 +1,16 @@ +# assoc + +> கோப்பு நீட்டிப்புகள் மற்றும் கோப்பு வகைகளுக்கு இடையே உள்ள தொடர்பைக் காட்டவும் அல்லது மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- கோப்பு நீட்டிப்புகள் மற்றும் கோப்பு வகைகளுக்கு இடையே உள்ள அனைத்து தொடர்புகளையும் பட்டியலிடுங்கள்: + +`assoc` + +- குறிப்பிட்ட நீட்டிப்புக்கான தொடர்புடைய கோப்பு வகையைக் காண்பி: + +`assoc {{.txt}}` + +- குறிப்பிட்ட நீட்டிப்புக்கு தொடர்புடைய கோப்பு வகையை அமைக்கவும்: + +`assoc .{{txt}}={{txtfile}}` diff --git a/pages.ta/windows/attrib.md b/pages.ta/windows/attrib.md new file mode 100644 index 00000000000000..3e5667b5acde36 --- /dev/null +++ b/pages.ta/windows/attrib.md @@ -0,0 +1,28 @@ +# attrib + +> கோப்புகள் அல்லது கோப்பகங்களின் பண்புக்கூறுகளைக் காட்டவும் அல்லது மாற்றவும். +> மேலும் விவரத்திற்கு: . + +- தற்போதைய கோப்பகத்தில் கோப்புகளின் அனைத்து தொகுப்பு பண்புகளையும் காண்பி: + +`attrib` + +- ஒரு குறிப்பிட்ட கோப்பகத்தில் கோப்புகளின் அனைத்து செட் பண்புக்கூறுகளையும் காண்பி: + +`attrib {{அடைவிற்குப்\பாதை}}` + +- தற்போதைய கோப்பகத்தில் கோப்புகள் மற்றும் [d]அடைவுகளின் அனைத்து தொகுப்பு பண்புகளையும் காண்பி: + +`attrib /d` + +- தற்போதைய கோப்பகம் மற்றும் [கள்]உப்-கோப்பகங்களில் கோப்புகளின் அனைத்து செட் பண்புக்கூறுகளையும் காண்பி: + +`attrib /s` + +- கோப்புகள் அல்லது கோப்பகங்களில் `[r]ead-only` அல்லது `[a]rchive` அல்லது `[s]ystem` அல்லது `[h]idden` அல்லது `not content [i]nexed` பண்புக்கூறைச் சேர்க்கவும்: + +`attrib +{{r|a|s|h|i}} {{பாதை/டு/கோப்பு_அல்லது_அடைவு1 பாதை/டு/கோப்பு_அல்லது_அடைவு2 ...}}` + +- கோப்புகள் அல்லது கோப்பகங்களின் குறிப்பிட்ட பண்புகளை அகற்றவும்: + +`attrib -{{r|a|s|h|i}} {{பாதை/டு/கோப்பு_அல்லது_அடைவு1 பாதை/டு/கோப்பு_அல்லது_அடைவு2 ...}}` diff --git a/pages.ta/windows/azcopy.md b/pages.ta/windows/azcopy.md new file mode 100644 index 00000000000000..2af5ba423f2565 --- /dev/null +++ b/pages.ta/windows/azcopy.md @@ -0,0 +1,28 @@ +# azcopy + +> அஸூர் கிளவுட் சேமிப்பகம் கணக்குகளில் பதிவேற்றுவதற்கான கோப்பு பரிமாற்றக் கருவி. +> மேலும் விவரத்திற்கு: . + +- அசூர் குத்தகைதாரரிடம் உள்நுழையவும்: + +`azopy login` + +- உள்ளூர் கோப்பைப் பதிவேற்றவும்: + +`azcopy copy '{{பாதை/டு/மூலம்/கோப்பு}}' 'https://{{சேமிப்பு_கணக்கு_பெயர்}}.blob.core.windows.net/{{கொள்கலன்_பெயர்}}/{{குமிழ்_பெயர்}}'` + +- `.txt` மற்றும் `.jpg` நீட்டிப்புகளுடன் கோப்புகளைப் பதிவேற்றவும்: + +`azcopy copy '{{பாதை/டு/மூலம்}}' 'https://{{சேமிப்பு_கணக்கு_பெயர்}}.blob.core.windows.net/{{கொள்கலன்_பெயர்}}' --include-pattern '{{*.txt;*.jpg}}'` + +- இரண்டு அசூர் சேமிப்பு கணக்குகளுக்கு இடையே நேரடியாக ஒரு கொள்கலனை நகலெடுக்கவும்: + +`azcopy copy 'https://{{மூலம்_சேமிப்பு_கணக்கு_பெயர்}}.blob.core.windows.net/{{கொள்கலன்_பெயர்}}' 'https://{{சேருமிடம்_சேமிப்பு_கணக்கு_பெயர்}}.blob.core.windows.net/{{கொள்கலன்_பெயர்}}'` + +- ஒரு உள்ளூர் கோப்பகத்தை ஒத்திசைக்கவும், மேலும் மூலத்தில் கோப்புகள் இல்லை என்றால் இலக்கில் உள்ள கோப்புகளை நீக்கவும்: + +`azcopy sync '{{பாதை/டு/மூலம்}}' 'https://{{சேமிப்பு_கணக்கு_பெயர்}}.blob.core.windows.net/{{கொள்கலன்_பெயர்}}' --recursive --delete-destination=true` + +- விரிவான பயன்பாட்டுத் தகவலைக் காண்பி: + +`azcopy --help` diff --git a/pages.ta/windows/cd.md b/pages.ta/windows/cd.md index 5c471a9189b957..c475074740626b 100644 --- a/pages.ta/windows/cd.md +++ b/pages.ta/windows/cd.md @@ -1,20 +1,24 @@ # cd -> தற்போதைய பணி அடைவின் பெயரைக் காட்டுகிறது அல்லது மாற்றுகிறது. -> மேலும் தகவல்: . +> தற்போதைய வேலை கோப்பகத்தைக் காட்டவும் அல்லது வேறு கோப்பகத்திற்கு நகர்த்தவும். +> மேலும் விவரத்திற்கு: . -- அதே இயக்ககத்தில் ஒரு கோப்பகத்திற்குச் செல்லவும்: +- தற்போதைய கோப்பகத்தின் பாதையைக் காட்டு: -`cd {{கோப்பகத்திற்கான/பாதை}}` +`cd` -- தற்போதைய கோப்பகத்தின் பெயரைக் காண்பி: +- தற்போதைய இயக்ககத்தின் ரூட்டுக்குச் செல்லவும்: -`cd` +`cd \` -- தற்போதைய கோப்பகத்தின் பெற்றோர் வரை செல்லுங்கள்: +- தற்போதைய கோப்பகத்தின் பெற்றோருக்குச் செல்லவும்: `cd ..` -- வேறு இயக்ககத்தில் ஒரு கோப்பகத்திற்குச் செல்லவும்: +- அதே இயக்ககத்தில் ஒரு குறிப்பிட்ட கோப்பகத்திற்குச் செல்லவும்: + +`cd {{அடைவிற்குப்\பாதை}}` + +- வேறு [d]இயக்ககத்தில் உள்ள குறிப்பிட்ட கோப்பகத்திற்குச் செல்லவும்: -`cd {{கோப்பகத்திற்கான/பாதை}} /d` +`cd /d {{C}}:{{அடைவிற்குப்\பாதை}}` diff --git a/pages.ta/windows/chkdsk.md b/pages.ta/windows/chkdsk.md new file mode 100644 index 00000000000000..6ceb4c49c5705c --- /dev/null +++ b/pages.ta/windows/chkdsk.md @@ -0,0 +1,20 @@ +# chkdsk + +> பிழைகளுக்கு கோப்பு முறைமை மற்றும் தொகுதி மெட்டாடேட்டாவைச் சரிபார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- சரிபார்க்க டிரைவ் லெட்டர் (பெருங்குடல்), மவுண்ட் பாயிண்ட் அல்லது தொகுதி பெயரைக் குறிப்பிடவும்: + +`chkdsk {{தொகுதி}}` + +- ஒரு குறிப்பிட்ட தொகுதியில் பிழைகளை சரிசெய்யவும்: + +`chkdsk {{தொகுதி}} /f` + +- சரிபார்க்கும் முன் ஒரு குறிப்பிட்ட தொகுதியை இறக்கவும்: + +`chkdsk {{தொகுதி}} /x` + +- பதிவு கோப்பு அளவை குறிப்பிட்ட அளவிற்கு மாற்றவும் (NTFS க்கு மட்டும்): + +`chkdsk /l{{அளவு}}` diff --git a/pages.ta/windows/choco-apikey.md b/pages.ta/windows/choco-apikey.md new file mode 100644 index 00000000000000..96217a6fc6fd49 --- /dev/null +++ b/pages.ta/windows/choco-apikey.md @@ -0,0 +1,20 @@ +# choco-apikey + +> சாக்லேட்டி மூலங்களுக்கான API விசைகளை நிர்வகிக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஆதாரங்களின் பட்டியலையும் அவற்றின் API விசைகளையும் காட்டவும்: + +`choco apikey` + +- ஒரு குறிப்பிட்ட மூலத்தையும் அதன் API விசையையும் காண்பி: + +`choco apikey --source "{{மூல_முகவரி}}"` + +- மூலத்திற்கான API விசையை அமைக்கவும்: + +`choco apikey --source "{{மூல_முகவரி}}" --key "{{api_key}}"` + +- மூலத்திற்கான API விசையை அகற்றவும்: + +`choco apikey --source "{{மூல_முகவரி}}" --remove` diff --git a/pages.ta/windows/choco-feature.md b/pages.ta/windows/choco-feature.md new file mode 100644 index 00000000000000..4042f588fb6fde --- /dev/null +++ b/pages.ta/windows/choco-feature.md @@ -0,0 +1,16 @@ +# choco feature + +> சாக்லேட்டியுடன் அம்சங்களுடன் தொடர்பு கொள்ளுங்கள். +> மேலும் விவரத்திற்கு: . + +- கிடைக்கக்கூடிய அம்சங்களின் பட்டியலைக் காண்பி: + +`choco feature list` + +- ஒரு அம்சத்தை இயக்கு: + +`choco feature enable --name {{பெயர்}}` + +- ஒரு அம்சத்தை முடக்கு: + +`choco feature disable --name {{பெயர்}}` diff --git a/pages.ta/windows/choco-info.md b/pages.ta/windows/choco-info.md new file mode 100644 index 00000000000000..6994ba39be3a43 --- /dev/null +++ b/pages.ta/windows/choco-info.md @@ -0,0 +1,20 @@ +# choco info + +> சாக்லேட்டியுடன் கூடிய தொகுப்பு பற்றிய விரிவான தகவலைக் காண்பி. +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட தொகுப்பின் தகவலைக் காட்டு: + +`choco info {{நிரல்தொகுப்பு}}` + +- உள்ளூர் தொகுப்புக்கான தகவலை மட்டும் காட்டு: + +`choco info {{நிரல்தொகுப்பு}} --local-only` + +- தொகுப்புகளின் தகவலைப் பெற தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco info {{நிரல்தொகுப்பு}} --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco info {{நிரல்தொகுப்பு}} --user {{பயனர்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco-install.md b/pages.ta/windows/choco-install.md new file mode 100644 index 00000000000000..c0ece372b31d2a --- /dev/null +++ b/pages.ta/windows/choco-install.md @@ -0,0 +1,36 @@ +# choco install + +> சாக்லேட்டியுடன் ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவவும். +> மேலும் விவரத்திற்கு: . + +- ஒன்று அல்லது அதற்கு மேற்பட்ட இடம் பிரிக்கப்பட்ட தொகுப்புகளை நிறுவவும்: + +`choco install {{நிரல்தொகுப்பு(கள்)}}` + +- தனிப்பயன் உள்ளமைவு கோப்பிலிருந்து தொகுப்புகளை நிறுவவும்: + +`choco install {{பாதை/டு/நிரல்தொகுப்பு.config}}` + +- ஒரு குறிப்பிட்ட `nuspec` அல்லது `nupkg` கோப்பை நிறுவவும்: + +`choco install {{பாதை/டு/கோப்பு}}` + +- தொகுப்பின் குறிப்பிட்ட பதிப்பை நிறுவவும்: + +`choco install {{நிரல்தொகுப்பு}} --version {{பதிப்பு}}` + +- ஒரு தொகுப்பின் பல பதிப்புகளை நிறுவ அனுமதிக்கவும்: + +`choco install {{நிரல்தொகுப்பு}} --allow-multiple` + +- அனைத்து அறிவுறுத்தல்களையும் தானாக உறுதிப்படுத்தவும்: + +`choco install {{நிரல்தொகுப்பு}} --yes` + +- தொகுப்புகளைப் பெற தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco install {{நிரல்தொகுப்பு}} --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco install {{நிரல்தொகுப்பு}} --user {{பயனர்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco-list.md b/pages.ta/windows/choco-list.md new file mode 100644 index 00000000000000..fd87217b9b594c --- /dev/null +++ b/pages.ta/windows/choco-list.md @@ -0,0 +1,28 @@ +# choco list + +> சாக்லேட்டியுடன் ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவவும். +> மேலும் விவரத்திற்கு: . + +- கிடைக்கக்கூடிய அனைத்து தொகுப்புகளையும் காண்பி: + +`choco list` + +- உள்நாட்டில் நிறுவப்பட்ட அனைத்து தொகுப்புகளையும் காண்பி: + +`choco list --local-only` + +- உள்ளூர் நிரல்களை உள்ளடக்கிய பட்டியலைக் காண்பி: + +`choco list --include-programs` + +- அங்கீகரிக்கப்பட்ட தொகுப்புகளை மட்டும் காண்பி: + +`choco list --approved-only` + +- இதிலிருந்து தொகுப்புகளைக் காண்பிக்க தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco list --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco list --user {{பயனர்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco-new.md b/pages.ta/windows/choco-new.md new file mode 100644 index 00000000000000..9995e0e15fbe20 --- /dev/null +++ b/pages.ta/windows/choco-new.md @@ -0,0 +1,24 @@ +# choco new + +> சாக்லேட்டியுடன் புதிய தொகுப்பு விவரக்குறிப்பு கோப்புகளை உருவாக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு புதிய தொகுப்பு எலும்புக்கூட்டை உருவாக்கவும்: + +`choco new {{நிரல்தொகுப்பு_பெயர்}}` + +- ஒரு குறிப்பிட்ட பதிப்பில் புதிய தொகுப்பை உருவாக்கவும்: + +`choco new {{நிரல்தொகுப்பு_பெயர்}} --version {{பதிப்பு}}` + +- குறிப்பிட்ட பராமரிப்பாளர் பெயருடன் புதிய தொகுப்பை உருவாக்கவும்: + +`choco new {{நிரல்தொகுப்பு_பெயர்}} --maintainer {{பராமரிப்பாளர்_பெயர்}}` + +- தனிப்பயன் வெளியீட்டு கோப்பகத்தில் புதிய தொகுப்பை உருவாக்கவும்: + +`choco new {{நிரல்தொகுப்பு_பெயர்}} --output-directory {{அடைவிற்குப்/பாதை}}` + +- குறிப்பிட்ட 32-பிட் மற்றும் 64-பிட் நிறுவி URL முகவரிகளுடன் புதிய தொகுப்பை உருவாக்கவும்: + +`choco புதிய {{நிரல்தொகுப்பு_பெயர்}} url="{{முகவரி}}" url64="{{முகவரி}}"` diff --git a/pages.ta/windows/choco-outdated.md b/pages.ta/windows/choco-outdated.md new file mode 100644 index 00000000000000..4847b792eb1bfb --- /dev/null +++ b/pages.ta/windows/choco-outdated.md @@ -0,0 +1,20 @@ +# choco outdated + +> சாக்லேட்டியுடன் காலாவதியான தொகுப்புகளைச் சரிபார்க்கவும். +> மேலும் விவரத்திற்கு: . + +- காலாவதியான தொகுப்புகளின் பட்டியலை அட்டவணை வடிவத்தில் காண்பி: + +`choco outdated` + +- வெளியீட்டில் பின் செய்யப்பட்ட தொகுப்புகளை புறக்கணிக்கவும்: + +`choco outdated --ignore-pinned` + +- தொகுப்புகளை சரிபார்க்க தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco outdated --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco outdated --user {{பயனர்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco-pack.md b/pages.ta/windows/choco-pack.md new file mode 100644 index 00000000000000..e937e1fd3c79ce --- /dev/null +++ b/pages.ta/windows/choco-pack.md @@ -0,0 +1,16 @@ +# choco pack + +> ஒரு `NuGet` விவரக்குறிப்பை `nupkg` கோப்பில் தொகுக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு `nupkg` கோப்பில் ஒரு `NuGet` விவரக்குறிப்பைத் தொகுக்கவும்: + +`choco pack {{பாதை/டு/விவரக்குறிப்பு}}` + +- இதன் விளைவாக வரும் கோப்பின் பதிப்பைக் குறிப்பிடும் ஒரு `NuGet` விவரக்குறிப்பைத் தொகுக்கவும்: + +`choco pack {{பாதை/டு/விவரக்குறிப்பு}} --version {{version}}` + +- ஒரு குறிப்பிட்ட கோப்பகத்திற்கு ஒரு `NuGet` விவரக்குறிப்பை தொகுக்கவும்: + +`choco pack {{பாதை/டு/விவரக்குறிப்பு}} --output-directory {{பாதை/டு/வெளியீடு_கோப்பகம்}}` diff --git a/pages.ta/windows/choco-pin.md b/pages.ta/windows/choco-pin.md new file mode 100644 index 00000000000000..a9a6167d8356f3 --- /dev/null +++ b/pages.ta/windows/choco-pin.md @@ -0,0 +1,21 @@ +# choco pin + +> சாக்லேட்டியுடன் ஒரு குறிப்பிட்ட பதிப்பில் ஒரு தொகுப்பைப் பின் செய்யவும். +> மேம்படுத்தும் போது பின் செய்யப்பட்ட தொகுப்புகள் தானாகவே தவிர்க்கப்படும். +> மேலும் விவரத்திற்கு: . + +- பின் செய்யப்பட்ட தொகுப்புகள் மற்றும் அவற்றின் பதிப்புகளின் பட்டியலைக் காண்பி: + +`choco pin list` + +- ஒரு தொகுப்பை அதன் தற்போதைய பதிப்பில் பின் செய்யவும்: + +`choco pin add --name {{நிரல்தொகுப்பு}}` + +- ஒரு குறிப்பிட்ட பதிப்பில் ஒரு தொகுப்பைப் பின் செய்யவும்: + +`choco pin add --name {{நிரல்தொகுப்பு}} --version {{பதிப்பு}}` + +- ஒரு குறிப்பிட்ட தொகுப்பிற்கான பின்னை அகற்றவும்: + +`choco pin remove --name {{நிரல்தொகுப்பு}}` diff --git a/pages.ta/windows/choco-search.md b/pages.ta/windows/choco-search.md new file mode 100644 index 00000000000000..ceb4ed562d00c4 --- /dev/null +++ b/pages.ta/windows/choco-search.md @@ -0,0 +1,28 @@ +# choco search + +> சாக்லேட்டியுடன் உள்ளூர் அல்லது தொலைநிலைப் பொதியைத் தேடுங்கள். +> மேலும் விவரத்திற்கு: . + +- ஒரு தொகுப்பைத் தேடுங்கள்: + +`choco search {{வினவல்}}` + +- உள்நாட்டில் ஒரு தொகுப்பைத் தேடுங்கள்: + +`choco search {{வினவல்}} --local-only` + +- முடிவுகளில் சரியான பொருத்தங்களை மட்டும் சேர்க்கவும்: + +`choco search {{வினவல்}} --exact` + +- அனைத்து அறிவுறுத்தல்களையும் தானாக உறுதிப்படுத்தவும்: + +`choco search {{வினவல்}} --yes` + +- தொகுப்புகளைத் தேட தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco search {{வினவல்}} --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco search {{வினவல்}} --user {{பயனர்ப்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco-source.md b/pages.ta/windows/choco-source.md new file mode 100644 index 00000000000000..7cb3f7028cd137 --- /dev/null +++ b/pages.ta/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.ta/windows/choco-uninstall.md b/pages.ta/windows/choco-uninstall.md new file mode 100644 index 00000000000000..8e23e51f3ea621 --- /dev/null +++ b/pages.ta/windows/choco-uninstall.md @@ -0,0 +1,24 @@ +# choco uninstall + +> சாக்லேட்டியுடன் ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை நிறுவல் நீக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒன்று அல்லது அதற்கு மேற்பட்ட இடம் பிரிக்கப்பட்ட தொகுப்புகளை நிறுவல் நீக்கவும்: + +`choco uninstall {{நிரல்தொகுப்பு(கள்)}}` + +- தொகுப்பின் குறிப்பிட்ட பதிப்பை நிறுவல் நீக்கவும்: + +`choco uninstall {{நிரல்தொகுப்பு}} --version {{பதிப்பு}}` + +- அனைத்து அறிவுறுத்தல்களையும் தானாக உறுதிப்படுத்தவும்: + +`choco uninstall {{நிரல்தொகுப்பு}} --yes` + +- நிறுவல் நீக்கும் போது அனைத்து சார்புகளையும் நீக்கவும்: + +`choco uninstall {{நிரல்தொகுப்பு}} --remove-dependencies` + +- அனைத்து தொகுப்புகளையும் நிறுவல் நீக்கவும்: + +`choco uninstall all` diff --git a/pages.ta/windows/choco-upgrade.md b/pages.ta/windows/choco-upgrade.md new file mode 100644 index 00000000000000..100a062e6a095d --- /dev/null +++ b/pages.ta/windows/choco-upgrade.md @@ -0,0 +1,32 @@ +# choco upgrade + +> சாக்லேட்டியுடன் ஒன்று அல்லது அதற்கு மேற்பட்ட தொகுப்புகளை மேம்படுத்தவும். +> மேலும் விவரத்திற்கு: . + +- ஒன்று அல்லது அதற்கு மேற்பட்ட இடம் பிரிக்கப்பட்ட தொகுப்புகளை மேம்படுத்தவும்: + +`choco upgrade {{நிரல்தொகுப்பு(கள்)}}` + +- தொகுப்பின் குறிப்பிட்ட பதிப்பிற்கு மேம்படுத்தவும்: + +`choco upgrade {{நிரல்தொகுப்பு}} --version {{பதிப்பு}}` + +- அனைத்து தொகுப்புகளையும் மேம்படுத்தவும்: + +`choco upgrade all` + +- குறிப்பிட்ட காற்புள்ளியால் பிரிக்கப்பட்ட தொகுப்புகளைத் தவிர அனைத்தையும் மேம்படுத்தவும்: + +`choco upgrade all --except "{{நிரல்தொகுப்பு(கள்)}}"` + +- அனைத்து அறிவுறுத்தல்களையும் தானாக உறுதிப்படுத்தவும்: + +`choco upgrade {{நிரல்தொகுப்பு}} --yes` + +- தொகுப்புகளைப் பெற தனிப்பயன் மூலத்தைக் குறிப்பிடவும்: + +`choco upgrade {{நிரல்தொகுப்பு}} --source {{மூல_முகவரி|alias}}` + +- அங்கீகாரத்திற்கான பயனர்பெயர் மற்றும் கடவுச்சொல்லை வழங்கவும்: + +`choco upgrade {{நிரல்தொகுப்பு}} --user {{பயனர்பெயர்}} --password {{கடவுச்சொல்}}` diff --git a/pages.ta/windows/choco.md b/pages.ta/windows/choco.md new file mode 100644 index 00000000000000..dd7aae875186ad --- /dev/null +++ b/pages.ta/windows/choco.md @@ -0,0 +1,21 @@ +# choco + +> சாக்லேட்டி தொகுப்பு மேலாளருக்கான கட்டளை வரி இடைமுகம். +> `choco install` போன்ற சிலச் சார்கட்டளைகளுக்குத் தனிப் பக்கம் உள்ளது. +> மேலும் விவரத்திற்கு: . + +- சாக்லேட்டி கட்டளையை இயக்கவும்: + +`choco {{கட்டளை}}` + +- பொது உதவியை அழைக்கவும்: + +`choco -?` + +- ஒரு குறிப்பிட்ட கட்டளையில் உதவியை அழைக்கவும்: + +`choco {{கட்டளை}} -?` + +- சாக்லேட்டி பதிப்பைச் சரிபார்க்கவும்: + +`choco --version` diff --git a/pages.ta/windows/choice.md b/pages.ta/windows/choice.md new file mode 100644 index 00000000000000..5f4c6fc1feb229 --- /dev/null +++ b/pages.ta/windows/choice.md @@ -0,0 +1,28 @@ +# choice + +> ஒரு தேர்வைத் தேர்ந்தெடுத்து, தேர்ந்தெடுக்கப்பட்ட தேர்வுக் குறியீட்டை வழங்க பயனரைத் தூண்டவும். +> மேலும் விவரத்திற்கு: . + +- தற்போதைய பயனரை `Y` அல்லது `N` தேர்வைத் தேர்ந்தெடுக்கும்படி கேட்கவும்: + +`choice` + +- ஒரு குறிப்பிட்ட தொகுப்பிலிருந்து ஒரு [c]hoice ஐ தேர்ந்தெடுக்க தற்போதைய பயனரை கேட்கவும்: + +`choice /c {{AB}}` + +- குறிப்பிட்ட [m]செய்தியுடன் ஒரு தேர்வைத் தேர்ந்தெடுக்க தற்போதைய பயனரைத் தூண்டவும்: + +`choice /m "{{செய்தி}}"` + +- ஒரு குறிப்பிட்ட தொகுப்பிலிருந்து ஒரு [c]கேஸ்-[s]சென்சிட்டிவ் [c]தேர்வு ஐத் தேர்ந்தெடுக்க தற்போதைய பயனரைத் தூண்டவும்: + +`choice /cs /c {{Ab}}` + +- ஒரு தேர்வைத் தேர்ந்தெடுக்க தற்போதைய பயனரைத் தூண்டவும் மற்றும் ஒரு குறிப்பிட்ட [t] நேரத்தில் [d]இயல்புநிலை தேர்வை விரும்பவும்: + +`choice /t {{5}} /d {{N}}` + +- உதவியை காட்டு: + +`choice /?` diff --git a/pages.ta/windows/chrome.md b/pages.ta/windows/chrome.md new file mode 100644 index 00000000000000..b2157be00dd237 --- /dev/null +++ b/pages.ta/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> இக்கட்டளை `chromium` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அசல் கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr chromium` diff --git a/pages.ta/windows/cinst.md b/pages.ta/windows/cinst.md new file mode 100644 index 00000000000000..6171f8c05400f4 --- /dev/null +++ b/pages.ta/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> இக்கட்டளை `choco install` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr choco install` diff --git a/pages.ta/windows/cipher.md b/pages.ta/windows/cipher.md new file mode 100644 index 00000000000000..047fe61689105f --- /dev/null +++ b/pages.ta/windows/cipher.md @@ -0,0 +1,20 @@ +# cipher + +> NTFS டிரைவ்களில் உள்ள கோப்புகளை குறியாக்கம் அல்லது மறைகுறியாக்கம் செய்யவும். +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட மறைகுறியாக்கப்பட்ட கோப்பு அல்லது கோப்பகம் பற்றிய தகவலைக் காண்பி: + +`cipher /c:{{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` + +- ஒரு கோப்பு அல்லது கோப்பகத்தை குறியாக்கு (கோப்பகத்தில் பின்னர் சேர்க்கப்பட்ட கோப்புகளும் கோப்பகம் குறிக்கப்பட்டதால் குறியாக்கம் செய்யப்படுகின்றன): + +`cipher /e:{{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` + +- ஒரு கோப்பு அல்லது கோப்பகத்தை மறைகுறியாக்கவும்: + +`cipher /d:{{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` + +- ஒரு கோப்பு அல்லது கோப்பகத்தை பாதுகாப்பாக அகற்றவும்: + +`cipher /w:{{பாதை/டு/கோப்பு_அல்லது_அடைவு}}` diff --git a/pages.ta/windows/clip.md b/pages.ta/windows/clip.md new file mode 100644 index 00000000000000..e486253fa60d5e --- /dev/null +++ b/pages.ta/windows/clip.md @@ -0,0 +1,20 @@ +# clip + +> உள்ளீட்டு உள்ளடக்கத்தை விண்டோஸ் கிளிப்போர்டுக்கு நகலெடுக்கவும். +> மேலும் விவரத்திற்கு: . + +- விண்டோஸ் கிளிப்போர்டுக்கு குழாய் கட்டளை வரி வெளியீடு: + +`{{dir}} | clip` + +- ஒரு கோப்பின் உள்ளடக்கங்களை விண்டோஸ் கிளிப்போர்டுக்கு நகலெடுக்கவும்: + +`clip < {{பாதை/டு/கோப்பு.ext}}` + +- விண்டோஸ் கிளிப்போர்டுக்கு புதிய வரியுடன் உரையை நகலெடுக்கவும்: + +`echo {{ஏதாவது உரை}} | clip` + +- விண்டோஸ் கிளிப்போர்டுக்கு புதிய வரி இல்லாமல் உரையை நகலெடுக்கவும்: + +`echo | set /p="ஏதாவது உரை" | clip` diff --git a/pages.ta/windows/clist.md b/pages.ta/windows/clist.md new file mode 100644 index 00000000000000..451bbe4e441095 --- /dev/null +++ b/pages.ta/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> இக்கட்டளை `choco list` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr choco list` diff --git a/pages.ta/windows/cls.md b/pages.ta/windows/cls.md index 8ee4141e3e875f..312178ad66b48f 100644 --- a/pages.ta/windows/cls.md +++ b/pages.ta/windows/cls.md @@ -1,7 +1,7 @@ # cls > திரையை அழிக்கிறது. -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - திரையை அழிக்கவும்: diff --git a/pages.ta/windows/cmd.md b/pages.ta/windows/cmd.md index b99256a00f9992..1f6bd0b033dbd0 100644 --- a/pages.ta/windows/cmd.md +++ b/pages.ta/windows/cmd.md @@ -1,7 +1,7 @@ # cmd > விண்டோஸ் கட்டளை மொழிபெயர்ப்பாளர். -> மேலும் தகவல்: . +> மேலும் விவரத்திற்கு: . - கட்டளை மொழிபெயர்ப்பாளரின் புதிய நிகழ்வைத் தொடங்கவும்: diff --git a/pages.ta/windows/cmstp.md b/pages.ta/windows/cmstp.md new file mode 100644 index 00000000000000..8021572d5b614e --- /dev/null +++ b/pages.ta/windows/cmstp.md @@ -0,0 +1,36 @@ +# cmstp + +> இணைப்பு சேவை சுயவிவரங்களை நிர்வகிப்பதற்கான கட்டளை வரி கருவி. +> மேலும் விவரத்திற்கு: . + +- ஒரு குறிப்பிட்ட சுயவிவரத்தை நிறுவவும்: + +`cmstp "{{பாதை/டு/சுயவிவரம்}}"` + +- டெஸ்க்டாப் குறுக்குவழியை உருவாக்காமல் நிறுவவும்: + +`cmstp /ns "{{பாதை/டு/சுயவிவரம்}}"` + +- சார்புகளை சரிபார்க்காமல் நிறுவவும்: + +`cmstp /nf "{{பாதை/டு/சுயவிவரம்}}"` + +- தற்போதைய பயனருக்கு மட்டும் நிறுவவும்: + +`cmstp /su "{{பாதை/டு/சுயவிவரம்}}"` + +- அனைத்து பயனர்களுக்கும் நிறுவவும் (நிர்வாக சலுகைகள் தேவை): + +`cmstp /au "{{பாதை/டு/சுயவிவரம்}}"` + +- எந்த அறிவுறுத்தலும் இல்லாமல் அமைதியாக நிறுவவும்: + +`cmstp /s "{{பாதை/டு/சுயவிவரம்}}"` + +- குறிப்பிட்ட சுயவிவரத்தை நிறுவல் நீக்கவும்: + +`cmstp /u "{{பாதை/டு/சுயவிவரம்}}"` + +- உறுதிப்படுத்தல் அறிவுறுத்தல் இல்லாமல் அமைதியாக நிறுவல் நீக்கவும்: + +`cmstp /u /s "{{பாதை/டு/சுயவிவரம்}}"` diff --git a/pages.ta/windows/color.md b/pages.ta/windows/color.md new file mode 100644 index 00000000000000..0cc62da8f34244 --- /dev/null +++ b/pages.ta/windows/color.md @@ -0,0 +1,16 @@ +# color + +> கன்சோலின் முன்புறம் மற்றும் பின்னணி வண்ணங்களை அமைக்கவும். +> மேலும் விவரத்திற்கு: . + +- கன்சோல் வண்ணங்களை இயல்புநிலை மதிப்புகளுக்கு அமைக்கவும்: + +`color` + +- கிடைக்கக்கூடிய வண்ண மதிப்புகள் மற்றும் விரிவான தகவல்களை பட்டியலிடுங்கள்: + +`color /?` + +- ஹெக்ஸாடெசிமல் எண்களைப் பயன்படுத்தி (`1-9,a-f`) கன்சோலின் முன்புறம் மற்றும் பின்னணியை ஒரு குறிப்பிட்ட வண்ணத்திற்கு அமைக்கவும்: + +`color {{முன்புற_குறியீடு}}{{பின்னணி_குறியீடு}}` diff --git a/pages.ta/windows/comp.md b/pages.ta/windows/comp.md new file mode 100644 index 00000000000000..a72ced5daa2fde --- /dev/null +++ b/pages.ta/windows/comp.md @@ -0,0 +1,37 @@ +# comp + +> இரண்டு கோப்புகள் அல்லது கோப்புகளின் தொகுப்புகளின் உள்ளடக்கங்களை ஒப்பிடுக. +> கோப்புகளின் தொகுப்புகளை ஒப்பிட, வைல்டு கார்டுகளைப் (*) பயன்படுத்தவும். +> மேலும் விவரத்திற்கு: . + +- கோப்புகளை ஊடாடும் வகையில் ஒப்பிடுக: + +`comp` + +- இரண்டு குறிப்பிட்ட கோப்புகளை ஒப்பிடுக: + +`comp {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` + +- இரண்டு செட் கோப்புகளை ஒப்பிடுக: + +`comp {{பாதை/டு/அடைவு_1/*}} {{பாதை/டு/அடைவு_2/*}}` + +- தசம வடிவத்தில் வேறுபாடுகளைக் காண்பி: + +`comp /d {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` + +- ASCII வடிவத்தில் வேறுபாடுகளைக் காண்பி: + +`comp /a {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` + +- வேறுபாடுகளுக்கான வரி எண்களைக் காண்பி: + +`comp /l {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` + +- கோப்புகளை கேஸ்-உணர்வின்றி ஒப்பிடுக: + +`comp /c {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` + +- ஒவ்வொரு கோப்பின் முதல் 5 வரிகளை மட்டும் ஒப்பிடுக: + +`comp /n={{5}} {{பாதை/டு/கோப்பு_1}} {{பாதை/டு/கோப்பு_2}}` diff --git a/pages.ta/windows/cpush.md b/pages.ta/windows/cpush.md new file mode 100644 index 00000000000000..0690d17d556c0e --- /dev/null +++ b/pages.ta/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> இக்கட்டளை `choco push` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அசல் கட்டளைக்கான ஆவணங்களைப் பார்க்கவும்: + +`tldr choco-push` diff --git a/pages.ta/windows/cuninst.md b/pages.ta/windows/cuninst.md new file mode 100644 index 00000000000000..5f61c859faf1ec --- /dev/null +++ b/pages.ta/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> இக்கட்டளை `choco uninstall` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr choco uninstall` diff --git a/pages.ta/windows/curl.md b/pages.ta/windows/curl.md new file mode 100644 index 00000000000000..5d0569904ba8f0 --- /dev/null +++ b/pages.ta/windows/curl.md @@ -0,0 +1,19 @@ +# curl + +> PowerShell இல், அசல் `curl` நிரல் () சரியாக நிறுவப்படாதபோது இந்தக் கட்டளை `Invoke-WebRequest` என்பதன் மாற்றுப்பெயராக இருக்கலாம். + +- அதன் பதிப்பு எண்ணை அச்சிட்டு `curl` சரியாக நிறுவப்பட்டுள்ளதா என்பதைச் சரிபார்க்கவும். இந்த கட்டளை பிழையாக மதிப்பிடப்பட்டால், PowerShell இந்த கட்டளையை `Invoke-WebRequest` உடன் மாற்றியிருக்கலாம்: + +`curl --version` + +- அசல் `curl` கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr curl -p common` + +- `tldr` கட்டளை வரி கிளையண்டின் பழைய பதிப்புகளில் அசல் `curl` கட்டளைக்கான ஆவணங்களைப் பார்க்கவும்: + +`tldr curl -o common` + +- PowerShell இன் `Invoke-WebRequest` கட்டளைக்கான ஆவணங்களைக் காண்க: + +`tldr invoke-webrequest` diff --git a/pages.ta/windows/del.md b/pages.ta/windows/del.md new file mode 100644 index 00000000000000..6f36f7a142c1ee --- /dev/null +++ b/pages.ta/windows/del.md @@ -0,0 +1,32 @@ +# del + +> ஒன்று அல்லது அதற்கு மேற்பட்ட கோப்புகளை நீக்கவும். +> மேலும் விவரத்திற்கு: . + +- ஒன்று அல்லது அதற்கு மேற்பட்ட இடத்தால் பிரிக்கப்பட்ட கோப்புகள் அல்லது வடிவங்களை நீக்கவும்: + +`del {{கோப்பு_வடிவம்}}` + +- ஒவ்வொரு கோப்பையும் நீக்குவதற்கு முன் உறுதிப்படுத்தும்படி கேட்கவும்: + +`del {{கோப்பு_வடிவம்}} /p` + +- படிக்க மட்டுமேயான கோப்புகளை நீக்க கட்டாயப்படுத்துங்கள்: + +`del {{கோப்பு_வடிவம்}} /f` + +- எல்லா துணை அடைவுகளிலிருந்தும் கோப்பு(களை) மீண்டும் மீண்டும் நீக்கவும்: + +`del {{கோப்பு_வடிவம்}} /s` + +- உலகளாவிய வைல்டு கார்டின் அடிப்படையில் கோப்புகளை நீக்கும் போது கேட்க வேண்டாம்: + +`del {{கோப்பு_வடிவம்}} /q` + +- உதவி மற்றும் கிடைக்கக்கூடிய பண்புகளை பட்டியலிடு: + +`del /?` + +- குறிப்பிட்ட பண்புக்கூறுகளின் அடிப்படையில் கோப்புகளை நீக்கவும்: + +`del {{கோப்பு_வடிவம்}} /a {{பண்புக்கூறு}}` diff --git a/pages.ta/windows/dir.md b/pages.ta/windows/dir.md new file mode 100644 index 00000000000000..865dbdf1a366ec --- /dev/null +++ b/pages.ta/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> அடைவு உள்ளடக்கங்களை பட்டியலிடுங்கள். +> மேலும் விவரத்திற்கு: . + +- தற்போதைய கோப்பகத்தின் உள்ளடக்கங்களைக் காட்டு: + +`dir` + +- கொடுக்கப்பட்ட கோப்பகத்தின் உள்ளடக்கங்களைக் காட்டு: + +`dir {{அடைவிற்குப்/பாதை}}` + +- மறைக்கப்பட்டவை உட்பட தற்போதைய கோப்பகத்தின் உள்ளடக்கங்களைக் காட்டு: + +`dir /A` + +- மறைக்கப்பட்டவை உட்பட கொடுக்கப்பட்ட கோப்பகத்தின் உள்ளடக்கங்களைக் காட்டு: + +`dir {{அடைவிற்குப்/பாதை}} /A` diff --git a/pages.ta/windows/diskpart.md b/pages.ta/windows/diskpart.md new file mode 100644 index 00000000000000..a051915d9d1e06 --- /dev/null +++ b/pages.ta/windows/diskpart.md @@ -0,0 +1,32 @@ +# diskpart + +> வட்டு, தொகுதி மற்றும் பகிர்வு மேலாளர். +> மேலும் விவரத்திற்கு: . + +- `diskpart` ஐ அதன் கட்டளை வரியை உள்ளிட நிர்வாக கட்டளை வரியில் தானாகவே இயக்கவும்: + +`diskpart` + +- அனைத்து வட்டுகளையும் பட்டியலிடுங்கள்: + +`list disk` + +- ஒரு தொகுதியைத் தேர்ந்தெடுக்கவும்: + +`select volume {{தொகுதி}}` + +- தேர்ந்தெடுக்கப்பட்ட தொகுதிக்கு ஒரு இயக்கி கடிதத்தை ஒதுக்கவும்: + +`assign letter {{கடிதம்}}` + +- ஒரு புதிய பகிர்வை உருவாக்கவும்: + +`create partition primary` + +- தேர்ந்தெடுக்கப்பட்ட தொகுதியை செயல்படுத்தவும்: + +`active` + +- வட்டு பகுதியிலிருந்து வெளியேறு: + +`exit` diff --git a/pages.ta/windows/doskey.md b/pages.ta/windows/doskey.md new file mode 100644 index 00000000000000..b3ee081823711d --- /dev/null +++ b/pages.ta/windows/doskey.md @@ -0,0 +1,32 @@ +# doskey + +> மேக்ரோக்கள், விண்டோஸ் கட்டளைகள் மற்றும் கட்டளை வரிகளை நிர்வகிக்கவும். +> மேலும் விவரத்திற்கு: . + +- கிடைக்கக்கூடிய மேக்ரோக்களை பட்டியலிடுங்கள்: + +`doskey /macros` + +- புதிய மேக்ரோவை உருவாக்கவும்: + +`doskey {{பெயர்}} = "{{கட்டளை}}"` + +- ஒரு குறிப்பிட்ட இயங்கக்கூடியவைக்கு ஒரு புதிய மேக்ரோவை உருவாக்கவும்: + +`doskey /exename={{இயங்கக்கூடியவை}} {{பெயர்}} = "{{கட்டளை}}"` + +- ஒரு மேக்ரோவை அகற்று: + +`doskey {{பெயர்}} =` + +- நினைவகத்தில் சேமிக்கப்பட்ட அனைத்து கட்டளைகளையும் காண்பி: + +`doskey /history` + +- பெயர்வுத்திறனுக்காக மேக்ரோக்களை ஒரு கோப்பில் சேமிக்கவும்: + +`doskey /macros > {{macinit}}` + +- ஒரு கோப்பிலிருந்து மேக்ரோக்களை ஏற்றவும்: + +`doskey /macrofile = {{macinit}}` diff --git a/pages.ta/windows/iwr.md b/pages.ta/windows/iwr.md new file mode 100644 index 00000000000000..8423c7d9408be9 --- /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 00000000000000..c15d32490c138d --- /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 00000000000000..5530814a9eb30f --- /dev/null +++ b/pages.ta/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> இக்கட்டளை `rmdir` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr rmdir` diff --git a/pages.ta/windows/rmdir.md b/pages.ta/windows/rmdir.md new file mode 100644 index 00000000000000..5dbca765917574 --- /dev/null +++ b/pages.ta/windows/rmdir.md @@ -0,0 +1,16 @@ +# rmdir + +> ஒரு கோப்பகம் மற்றும் அதன் உள்ளடக்கங்களை அகற்றவும். +> மேலும் விவரத்திற்கு: . + +- வெற்று கோப்பகத்தை அகற்றவும்: + +`rmdir {{அடைவிற்குப்/பாதை}}` + +- ஒரு கோப்பகத்தையும் அதன் உள்ளடக்கங்களையும் மீண்டும் மீண்டும் அகற்றவும்: + +`rmdir {{அடைவிற்குப்/பாதை}} /s` + +- மீண்டும் மீண்டும் கேட்காமல் ஒரு கோப்பகத்தையும் அதன் உள்ளடக்கங்களையும் அகற்றவும்: + +`rmdir {{அடைவிற்குப்/பாதை}} /s /q` diff --git a/pages.ta/windows/sls.md b/pages.ta/windows/sls.md new file mode 100644 index 00000000000000..d7b1e160d8fa7e --- /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 00000000000000..47f42e3d4f0845 --- /dev/null +++ b/pages.ta/windows/wget.md @@ -0,0 +1,8 @@ +# wget + +> இக்கட்டளை `wget -p common` கட்டளையின் மற்றொருப் பெயர். +> மேலும் விவரத்திற்கு: . + +- அக்கட்டளையின் விளக்கத்தைக் காண: + +`tldr wget -p common` diff --git a/pages.th/common/bundler.md b/pages.th/common/bundler.md new file mode 100644 index 00000000000000..79068011eb0119 --- /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 new file mode 100644 index 00000000000000..8448ee4b132ac8 --- /dev/null +++ b/pages.th/common/calc.md @@ -0,0 +1,36 @@ +# calc + +> เครื่องคิดเลขแบบโต้ตอบในเทอร์มินัล +> ข้อมูลเพิ่มเติม: . + +- คำนวณในแบบโต้ตอบ: + +`calc` + +- คำนวณในแบบไม่โต้ตอบ: + +`calc '{{85 * (36 / 4)}}'` + +- คำนวณโดยไม่มีการจัดรูปแบบเอาต์พุต: + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- คำนวณแล้วเปลี่ยนเป็นโหมดโต้ตอบ: + +`calc -i '{{sqrt(2)}}'` + +- คำนวณในสิทธิ์เฉพาะ (0 ถึง 7, ค่าเริ่มต้นเป็น 7): + +`calc -m {{mode}}` + +- ดูข้อมูลเบื้องต้นเกี่ยวกับ `calc`: + +`calc help intro` + +- ดูภาพรวมของ `calc`: + +`calc help overview` + +- เปิดคู่มือ `calc`: + +`calc help` diff --git a/pages.th/common/clamav.md b/pages.th/common/clamav.md new file mode 100644 index 00000000000000..a7ed041eacba3d --- /dev/null +++ b/pages.th/common/clamav.md @@ -0,0 +1,17 @@ +# ClamAV + +> โปรแกรมต้านไวรัสแบบเปิดเผยซอร์สโค้ด +> ClamAV ไม่ใช่คำสั่ง แต่เป็นกลุ่มของคำสั่ง +> ข้อมูลเพิ่มเติม: . + +- แสดงหน้า tldr สำหรับการแสกนไฟล์ด้วยโปรแกรมพื้นหลัง `clamd`: + +`tldr clamdscan` + +- แสดงหน้า tldr สำหรับการแสกนไฟล์โดยไม่ใช้โปรแกรมพื้นหลัง `clamd`: + +`tldr clamscan` + +- แสดงหน้า tldr สำหรับการอัพเดทฐานข้อมูลไวรัส: + +`tldr freshclam` diff --git a/pages.th/common/clamdscan.md b/pages.th/common/clamdscan.md new file mode 100644 index 00000000000000..b0f61a09618018 --- /dev/null +++ b/pages.th/common/clamdscan.md @@ -0,0 +1,36 @@ +# clamdscan + +> โปรแกรมแสกนหาไวรัสบนคอมมานด์ไลน์ โดยใช้โปรแกรมพื้นหลัง ClamAV. +> ข้อมูลเพิ่มเติม: . + +- แสกนข้อบกพร่องของไฟล์หรือไฟล์ในไดเรคทอรี: + +`clamdscan {{หนทาง/ไปยัง/ไฟล์_หรือ_ไดเรคทอรี่}}` + +- แสกนข้อมูลจากสตรีมอินพุทมาตรฐาน: + +`{{คำสั่ง}} | clamdscan -` + +- แสกนไดเรคทอรีปัจจุบันแล้วแสดงผลไฟล์ที่ตรวจพบความบกพร่อง: + +`clamdscan --infected` + +- ส่งผลการแสกนไปยังไฟล์ที่ระบุ: + +`clamdscan --log {{หนทาง/ไปยัง/ไฟล์ที่ระบุ}}` + +- ย้ายไฟล์ที่พบการติดไวรัสไปยังไดเรคทอรีที่ระบุ: + +`clamdscan --move {{หนทาง/ไปยัง/ไดเรคทอรีสำหรับการกักกัน}}` + +- ลบไฟล์ที่พบการติดไวรัส: + +`clamdscan --remove` + +- ใช้มัลติเธรดในการตรวจไดเรคทอรี: + +`clamdscan --multiscan` + +- ส่งตัวอธิบายไฟล์ไปยังโปรแกรมแสกนพื้นหลังแทนการส่งไฟล์ข้อมูล: + +`clamdscan --fdpass` diff --git a/pages.th/common/clamscan.md b/pages.th/common/clamscan.md new file mode 100644 index 00000000000000..afe01b9b9bbf5f --- /dev/null +++ b/pages.th/common/clamscan.md @@ -0,0 +1,36 @@ +# clamscan + +> โปรแกรมตรวจหาไวรัสบนคอมมานด์ไลน์ +> ข้อมูลเพิ่มเติม: . + +- แสกนไฟล์หาช่องโหว่ทางความปลอดภัย: + +`clamscan {{หนทาง/ไปยัง/ไฟล์}}` + +- แสกนทุกไฟล์ภายใต้ไดเรคทอรีเพื่อหาช่องโหว่ทางความปลอดภัย: + +`clamscan -r {{หนทาง/ไปยัง/ไดเรคทอรี}}` + +- แสกนข้อมูลที่ส่งเข้ามายังอินพุทมาตรฐาน: + +`{{คำสั่ง}} | clamscan -` + +- เลือกไฟล์หรือไดเรคทอรีข้อมูลพื้นฐานของไวรัส: + +`clamscan --database {{หนทาง/ไปยัง/ไฟล์ข้อมูลพื้นฐาน_หรือ_ไดเรคทอรี}}` + +- ทำการแสกนบนไดเรคทอรีปัจจุบันแล้วแสดงข้อมูลของไฟล์ที่ติดไวัส: + +`clamscan --infected` + +- เขียนผลการแสกนไปยังไฟล์ที่ระบุ: + +`clamscan --log {{หนทาง/ไปยัง/ไฟล์ที่ระบุ}` + +- ย้ายไฟล์ที่พบการติดไวรัสไปยังไดเรคทอรีที่ระบุ: + +`clamscan --move {{หนทาง/ไปยัง/ไดเรคทอรีสำหรับการกักกัน}}` + +- ลบไฟล์ที่พบการติดไวรัส: + +`clamscan --remove yes` diff --git a/pages.th/common/clang-cpp.md b/pages.th/common/clang-cpp.md new file mode 100644 index 00000000000000..0bd0fdf129c7f2 --- /dev/null +++ b/pages.th/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr clang++` diff --git a/pages.th/common/clojure.md b/pages.th/common/clojure.md new file mode 100644 index 00000000000000..623f6a3715fe19 --- /dev/null +++ b/pages.th/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clj`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr clj` diff --git a/pages.th/common/cola.md b/pages.th/common/cola.md new file mode 100644 index 00000000000000..5ecdf744d18489 --- /dev/null +++ b/pages.th/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `git-cola`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr git-cola` diff --git a/pages.th/common/cron.md b/pages.th/common/cron.md new file mode 100644 index 00000000000000..983f16abd96b8f --- /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 00000000000000..431196cbba9bf3 --- /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 00000000000000..8d5520be1cf55d --- /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 00000000000000..b7798bf47a0c47 --- /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 00000000000000..12072b46959017 --- /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 new file mode 100644 index 00000000000000..2123d6aae7ef4f --- /dev/null +++ b/pages.th/common/freshclam.md @@ -0,0 +1,8 @@ +# freshclam + +> อัพเดทฐานข้อมูลไวรัสที่อ้างอิงโดยโปรแกรมต้านไวรัส ClamAV. +> ข้อมูลเพิ่มเติม: . + +- อัพเดทฐานข้อมูลไวรัส: + +`freshclam` diff --git a/pages.th/common/gh-cs.md b/pages.th/common/gh-cs.md new file mode 100644 index 00000000000000..33d1b6ea9ba93b --- /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 00000000000000..baeeee3f2eb9cb --- /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 00000000000000..75108252b3ae82 --- /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 00000000000000..b638c1a4008c89 --- /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 00000000000000..9eb00a50d9304a --- /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 new file mode 100644 index 00000000000000..aed3d0b6d3a464 --- /dev/null +++ b/pages.th/common/kubectx.md @@ -0,0 +1,20 @@ +# kubectx + +> คำสั่งอรรถประโยชน์สำหรับสลับบริบทของคำสั่ง `kubectl`. +> ข้อมูลเพิ่มเติม: . + +- แสดงบริบททั้งหมด: + +`kubectx` + +- สลับบริบทที่กำลังใช้งาน: + +`kubectx {{ชื่อบริบท}}` + +- สลับไปบริบทที่ใช้งานก่อนหน้า: + +`kubectx -` + +- ลบบริบท: + +`kubectx -d {{ชื่อบริบท}}` diff --git a/pages.th/common/kubens.md b/pages.th/common/kubens.md new file mode 100644 index 00000000000000..527a2c60e13c94 --- /dev/null +++ b/pages.th/common/kubens.md @@ -0,0 +1,16 @@ +# kubens + +> คำสั่งอรรถประโยชน์สำหรับสลับเนมสเปซของ Kubernetes. +> ข้อมูลเพิ่มเติม: . + +- แสดงเนมสเปซทั้งหมด: + +`kubens` + +- สลับเนมสเปซที่กำลังใช้งาน: + +`kubens {{ชื่อเนมสเปซ}}` + +- สลับไปเนมสเปซที่ใช้งานก่อนหน้า: + +`kubens -` diff --git a/pages.th/common/llvm-ar.md b/pages.th/common/llvm-ar.md new file mode 100644 index 00000000000000..310beb3c0c98f3 --- /dev/null +++ b/pages.th/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `ar`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr ar` diff --git a/pages.th/common/llvm-g++.md b/pages.th/common/llvm-g++.md new file mode 100644 index 00000000000000..9e3e83dc13b63d --- /dev/null +++ b/pages.th/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang++`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr clang++` diff --git a/pages.th/common/llvm-gcc.md b/pages.th/common/llvm-gcc.md new file mode 100644 index 00000000000000..7615564f50ebd0 --- /dev/null +++ b/pages.th/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `clang`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr clang` diff --git a/pages.th/common/llvm-nm.md b/pages.th/common/llvm-nm.md new file mode 100644 index 00000000000000..cccbc519e5ab8a --- /dev/null +++ b/pages.th/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `nm`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr nm` diff --git a/pages.th/common/llvm-objdump.md b/pages.th/common/llvm-objdump.md new file mode 100644 index 00000000000000..48129906899425 --- /dev/null +++ b/pages.th/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `objdump`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr objdump` diff --git a/pages.th/common/llvm-strings.md b/pages.th/common/llvm-strings.md new file mode 100644 index 00000000000000..97b5ebc5416591 --- /dev/null +++ b/pages.th/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `strings`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr strings` diff --git a/pages.th/common/ls.md b/pages.th/common/ls.md new file mode 100644 index 00000000000000..cb32e948789942 --- /dev/null +++ b/pages.th/common/ls.md @@ -0,0 +1,36 @@ +# ls + +> แสดงชื่อ ขนาด หรือข้อมูลเบื้องต้นของแต่ละไฟล์หรือโฟลเดอร์ +> ข้อมูลเพิ่มเติม: . + +- แสดงชื่อไฟล์หรือโฟลเดอร์ หนึ่งชื่อต่อบรรทัด: + +`ls -1` + +- แสดงชื่อไฟล์หรือโฟลเดอร์ทั้งหมด รวมทั้งไฟล์ที่ถูกซ่อนอยู่: + +`ls -a` + +- แสดงชื่อไฟล์หรือโฟลเดอร์ทั้งหมด โดยที่ชื่อโฟลเดอร์จะมี `/` ตามหลัง: + +`ls -F` + +- แสดงข้อมูลเบื้องต้นของไฟล์หรือโฟลเดอร์ (สิทธ์การเข้าถึง, ความเป็นเจ้าของ, ขนาด, และวันที่แก้ไขล่าสุด): + +`ls -la` + +- แสดงข้อมูลเบื้องต้นของไฟล์หรือโฟลเดอร์ (สิทธ์การเข้าถึง, ความเป็นเจ้าของ, ขนาด, และวันที่แก้ไขล่าสุด โดยที่ขนาดจะแสดงผลในหน่วยที่มนุษย์เข้าใจ เช่น KiB, MiB, GiB): + +`ls -lh` + +- แสดงข้อมูลเบื้องต้นของไฟล์หรือโฟลเดอร์ (สิทธ์การเข้าถึง, ความเป็นเจ้าของ, ขนาด, และวันที่แก้ไขล่าสุด) โดยใช้ขนาดในการเรียงลำดับจากมากไปน้อย: + +`ls -lS` + +- แสดงข้อมูลเบื้องต้นของไฟล์หรือโฟลเดอร์ (สิทธ์การเข้าถึง, ความเป็นเจ้าของ, ขนาด, และวันที่แก้ไขล่าสุด) โดยใช้วันที่แก้ไขล่าสุดในการเรียงลำดับจากอายุมากไปน้อย: + +`ls -ltr` + +- แสดงชื่อโฟลเดอร์: + +`ls -d */` diff --git a/pages.th/common/lzcat.md b/pages.th/common/lzcat.md new file mode 100644 index 00000000000000..36237056962523 --- /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 00000000000000..a6e877ef82d330 --- /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 new file mode 100644 index 00000000000000..748e9d83beaa8c --- /dev/null +++ b/pages.th/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `musescore`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr musescore` diff --git a/pages.th/common/n.md b/pages.th/common/n.md new file mode 100644 index 00000000000000..e0910295a2c401 --- /dev/null +++ b/pages.th/common/n.md @@ -0,0 +1,24 @@ +# n + +> เครื่องมือในการจัดการเวอร์ชั่นของ node. +> ข้อมูลเพิ่มเติม: . + +- ติดตั้ง node เวอร์ชั่นที่กำหนด ถ้าหากเวอร์ชั่นที่กำหนดถูกติดตั้งแล้ว เวอร์ชั่นดังกล่าวจะถูกเปิดใช้งาน: + +`n {{version}}` + +- แสดงรายชื่อเวอร์ชั่นของ node ที่ถูกติดตั้งไปแล้ว และจะเปิดใช้งานหนึ่งในนั้นเป็นการโต้ตอบ: + +`n` + +- ลบ node เวอร์ชั่นที่กำหนด: + +`n rm {{version}}` + +- รันไฟล์ที่กำหนด ด้วย node เวอร์ชั่นที่กำหนด: + +`n use {{version}} {{file.js}}` + +- แสดงแสดงชื่อของไดเรกทอรีแบบไบนารี่ของ node เวอร์ชั่นที่กำหนด: + +`n bin {{version}}` diff --git a/pages.th/common/nm-classic.md b/pages.th/common/nm-classic.md new file mode 100644 index 00000000000000..101032f810dbc4 --- /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 00000000000000..b0fd9c0026b740 --- /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 new file mode 100644 index 00000000000000..7bd6d9688d627b --- /dev/null +++ b/pages.th/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio project`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr pio project` diff --git a/pages.th/common/piodebuggdb.md b/pages.th/common/piodebuggdb.md new file mode 100644 index 00000000000000..36b79238ecb587 --- /dev/null +++ b/pages.th/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio debug`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr pio debug` diff --git a/pages.th/common/platformio.md b/pages.th/common/platformio.md new file mode 100644 index 00000000000000..0040d248eed121 --- /dev/null +++ b/pages.th/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `pio`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr pio` diff --git a/pages.th/common/ptpython3.md b/pages.th/common/ptpython3.md new file mode 100644 index 00000000000000..3a68a9f89e2d91 --- /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 new file mode 100644 index 00000000000000..48320287981674 --- /dev/null +++ b/pages.th/common/pwd.md @@ -0,0 +1,12 @@ +# pwd + +> แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ +> ข้อมูลเพิ่มเติม: . + +- แสดงชื่อของไดเรกทอรีที่ทำงานอยู่: + +`pwd` + +- แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ โดยไม่รวม symlinks: + +`pwd -P` diff --git a/pages.th/common/python3.md b/pages.th/common/python3.md new file mode 100644 index 00000000000000..c5f1a76facf4f4 --- /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 new file mode 100644 index 00000000000000..5978d6c93846a3 --- /dev/null +++ b/pages.th/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `radare2`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr radare2` diff --git a/pages.th/common/rcat.md b/pages.th/common/rcat.md new file mode 100644 index 00000000000000..188277e90f6570 --- /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 00000000000000..cfd6b41424a626 --- /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 aecb6f4536778a..5441f22af054d7 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 new file mode 100644 index 00000000000000..522ae6a7102733 --- /dev/null +++ b/pages.th/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tldr-lint`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr tldr-lint` diff --git a/pages.th/common/tlmgr-arch.md b/pages.th/common/tlmgr-arch.md new file mode 100644 index 00000000000000..31e23d47537eb8 --- /dev/null +++ b/pages.th/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `tlmgr platform`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr tlmgr platform` diff --git a/pages.th/common/todoman.md b/pages.th/common/todoman.md new file mode 100644 index 00000000000000..457b6c28e3896d --- /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 00000000000000..31c58502a26c9c --- /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 00000000000000..c8562e784016f1 --- /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 00000000000000..82f5ca061127b2 --- /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 new file mode 100644 index 00000000000000..31e2cf8089ef9c --- /dev/null +++ b/pages.th/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `vim`. + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr vim` diff --git a/pages.th/common/xzcat.md b/pages.th/common/xzcat.md new file mode 100644 index 00000000000000..28ebe234fed96f --- /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 new file mode 100644 index 00000000000000..8cf54bf2baf5e0 --- /dev/null +++ b/pages.th/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> แสดงสถิติที่ผู้ใช้งานได้เชื่อมต่อเข้ามาในระบบเป็นเวลานานเท่าไหร่ +> ข้อมูลเพิ่มเติม: . + +- แสดงสถิติเวลาที่ผู้ใช้ปัจจุบันได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง: + +`ac` + +- แสดงสถิติเวลาที่ผู้ใช้ทุกคนได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง แจกแจงตามผู้ใช้แต่ละคน: + +`ac --individual-totals` + +- แสดงสถิติเวลาของผู้ใช้ที่ระบุไว้ได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง: + +`ac --individual-totals {{ชื่อผู้เข้าใช้}}` + +- แสดงสถิติว่าผู้ใช้ที่ระบุไว้ ได้เชื่อมต่อเข้ามาในรบบเป็นเวลากี่ชั่วโมงต่อวัน (พร้อมทั้งแสดงเวลาทั้งหมด): + +`ac --daily-totals --individual-totals {{ชื่อผู้เข้าใช้}}` + +- แสดงข้อมูลเพิ่มเติมต่างๆ: + +`ac --compatibility` diff --git a/pages.th/linux/alternatives.md b/pages.th/linux/alternatives.md new file mode 100644 index 00000000000000..364e31a9006a96 --- /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 new file mode 100644 index 00000000000000..9d00475c2f2665 --- /dev/null +++ b/pages.th/linux/apt-add-repository.md @@ -0,0 +1,20 @@ +# apt-add-repository + +> ควบคุมและจัดการที่อยู่ของคลัง apt. +> ข้อมูลเพิ่มเติม: . + +- เพิ่มที่หมายของคลัง apt: + +`apt-add-repository {{ที่อยู่จำเพาะของคลัง}}` + +- ลบคลัง apt: + +`apt-add-repository --remove {{ที่อยู่จำเพาะของคลัง}}` + +- อัพเดตข้อมูลแคชหลังจากเพิ่มคลัง apt: + +`apt-add-repository --update {{ที่อยู่จำเพาะของคลัง}}` + +- อนุญาตให้เข้าถึงซอรส์โค้ดของโปรแกรมในคลัง: + +`apt-add-repository --enable-source {{ที่อยู่จำเพาะของคลัง}}` diff --git a/pages.th/linux/batcat.md b/pages.th/linux/batcat.md new file mode 100644 index 00000000000000..717b6b4e7f4f32 --- /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 00000000000000..31bc8893fe08e5 --- /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 00000000000000..5dc1f5e586cb63 --- /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 00000000000000..1d3db4b28e39ba --- /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 00000000000000..92cba30f6e1794 --- /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 00000000000000..b1670471093822 --- /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 new file mode 100644 index 00000000000000..c740d46d221ce5 --- /dev/null +++ b/pages.th/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `cal`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr cal` diff --git a/pages.th/linux/pwd.md b/pages.th/linux/pwd.md new file mode 100644 index 00000000000000..d2ac40c06560b9 --- /dev/null +++ b/pages.th/linux/pwd.md @@ -0,0 +1,16 @@ +# pwd + +> แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ +> ข้อมูลเพิ่มเติม: . + +- แสดงชื่อของไดเรกทอรีที่ทำงานอยู่: + +`pwd` + +- แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ โดยไม่รวม symlinks: + +`pwd --physical` + +- แสดงชื่อของไดเรกทอรีที่ทำงานอยู่ โดยใช้ PWD จาก environment ถึงแม้ว่าจะรวม symlinks: + +`pwd --logical` diff --git a/pages.th/linux/ubuntu-bug.md b/pages.th/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..af06163e3d31eb --- /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 00000000000000..67d86d04e9b15b --- /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 00000000000000..9380a050e3693e --- /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 00000000000000..306b51811f1457 --- /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 00000000000000..54f0ff7a75d740 --- /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 00000000000000..fc56601a7d195c --- /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 00000000000000..684db4a694a928 --- /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 00000000000000..468f8ba0991220 --- /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 00000000000000..bb4e1bc93f7417 --- /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 00000000000000..9c83bd5cbe457b --- /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 00000000000000..d5b19ca37839c0 --- /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 00000000000000..986e95a84304ca --- /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 00000000000000..c9b1f7c1a53406 --- /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 00000000000000..b9e2b05b85b4e7 --- /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 00000000000000..cc0e97b9a5e060 --- /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 00000000000000..7122c3936f95ea --- /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 00000000000000..3b53593fff33a1 --- /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 00000000000000..d835e3ef1a10c9 --- /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 00000000000000..2d695f594bf31f --- /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 00000000000000..591d5dc941b5ee --- /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 00000000000000..63f0e7fdecd50c --- /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 00000000000000..e661db5fcdd672 --- /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 00000000000000..107d18e5418aa6 --- /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 00000000000000..b00ce50f0b2295 --- /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 00000000000000..4064afc9e21bc3 --- /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 00000000000000..f7d73894fed122 --- /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 00000000000000..7df7a7be89b266 --- /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 00000000000000..431f6d9f70ea6c --- /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 00000000000000..c735d91ee4b72b --- /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 00000000000000..d14b8225efd012 --- /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 00000000000000..3de5da93d37d13 --- /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 00000000000000..ca1b92ec9d1baa --- /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 00000000000000..b106735b6ae870 --- /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 00000000000000..80c91190fc92bf --- /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 00000000000000..f1fba9a16ef524 --- /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 00000000000000..d07ba19c180b18 --- /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 00000000000000..53e43a8d4c05ed --- /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 00000000000000..31859546897633 --- /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 00000000000000..5295958b0bc0e3 --- /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 00000000000000..2af4a41a4df891 --- /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 00000000000000..1252c7fd984a56 --- /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 00000000000000..f03eea2d4ee3cb --- /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 00000000000000..d74fbeb417c765 --- /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 00000000000000..5c146c80bc65ad --- /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 00000000000000..0e92beded42a72 --- /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 00000000000000..aaff464c82fbef --- /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 00000000000000..9620bdfcd7fc69 --- /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 00000000000000..9fe78361c954a4 --- /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 00000000000000..9020cd1481e3b8 --- /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 00000000000000..5f9cc9976f4275 --- /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 00000000000000..151d17ef79c86e --- /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 00000000000000..56c49266f51c97 --- /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 00000000000000..7e06846793f753 --- /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 00000000000000..0426b97c80cba4 --- /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 00000000000000..a87a677b8903a8 --- /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 00000000000000..2f5707dfef3426 --- /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 00000000000000..fc6b32ef518dac --- /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 00000000000000..056d9842c05087 --- /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 00000000000000..0994a9febdb0ac --- /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 00000000000000..72e485ba3861b3 --- /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 00000000000000..884d136dab476a --- /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 00000000000000..e967ad80eac555 --- /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 00000000000000..97989a5f13089f --- /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 00000000000000..d9c51b27f3f249 --- /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 00000000000000..ec5eb23c3861f2 --- /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 00000000000000..c0decc1c2919c6 --- /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 00000000000000..f0f78f36d0549d --- /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 00000000000000..c8613eb558b477 --- /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 00000000000000..acb953adb4523d --- /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 00000000000000..69840174a64e03 --- /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 00000000000000..6a3b1251377073 --- /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 00000000000000..6b8eab174fa588 --- /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 00000000000000..1b6d7b3ee27248 --- /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 00000000000000..dc461eeaf3845f --- /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 00000000000000..5d4c0d2b68516a --- /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 00000000000000..93a4bb6bd864d5 --- /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 00000000000000..7de783485f65ed --- /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 00000000000000..e344436255d383 --- /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 00000000000000..d195fa48050380 --- /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 00000000000000..ce02c968c5c6ff --- /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 00000000000000..589c116bf0953e --- /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 00000000000000..28df22c1024fd6 --- /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 00000000000000..5e64637edf7041 --- /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 00000000000000..271672c2b5c25f --- /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 00000000000000..f6356c05857dd2 --- /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 00000000000000..a4ecdc4e5e81ef --- /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 00000000000000..e182e5ee1f149e --- /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 00000000000000..af609813d8e9f8 --- /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 00000000000000..9d05f715cf9460 --- /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 00000000000000..8cce19ae1e5c0c --- /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 00000000000000..c5dd7b516e74b4 --- /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 00000000000000..cebbf626180347 --- /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 00000000000000..e6bb90ece7f11d --- /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 00000000000000..2d090c39a39a71 --- /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 00000000000000..dbf974a98767d2 --- /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 00000000000000..b210eac9a96db2 --- /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 00000000000000..b3d814752c5b8b --- /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 00000000000000..e0d4749dfd585a --- /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 00000000000000..1e22ea629a4df3 --- /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 00000000000000..08abeb6ff115f3 --- /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 00000000000000..c75ea16e197f19 --- /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 00000000000000..fb31e36379dd54 --- /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 00000000000000..14b1f62ea18345 --- /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 00000000000000..cba9d6da9eeb8d --- /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 00000000000000..c17b2943e92bd2 --- /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 00000000000000..c2809176142f64 --- /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 00000000000000..cf89b87f852e5d --- /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 00000000000000..7466cf3df32668 --- /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 00000000000000..e371fde05f3e22 --- /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 00000000000000..9661adbb4a1b88 --- /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 00000000000000..ca8844caec144a --- /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 00000000000000..897fe183bdec94 --- /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 00000000000000..cfdc8f66ae3d29 --- /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 00000000000000..48940e7e73ee17 --- /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 00000000000000..fd5d4582de4d93 --- /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 00000000000000..8eab749e20a13c --- /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 00000000000000..5f0812cee877a4 --- /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 00000000000000..e570eb9afe5c0b --- /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 00000000000000..910e66e045c504 --- /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 00000000000000..ef75a9e611bdfd --- /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 00000000000000..5dbb04b30d467b --- /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 00000000000000..8ddcd5d1f07605 --- /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 00000000000000..254f62dcb46e70 --- /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 00000000000000..1bd14aa4489dae --- /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 00000000000000..033a88403cb25a --- /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 00000000000000..6077fb6ba5f94a --- /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 00000000000000..e2d0f26d35fa9d --- /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 00000000000000..9687d9006e739f --- /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 00000000000000..7231821c7879ff --- /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 00000000000000..9bf850b71dc4dc --- /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 00000000000000..f7477cbebd353a --- /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 00000000000000..7a7b94b1f4bcf5 --- /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 00000000000000..d97528742b4811 --- /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 00000000000000..8cb4614a6a9704 --- /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 00000000000000..074de2d9fabd24 --- /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 00000000000000..cec4197ef1742d --- /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 00000000000000..01fa7f6a9cfc37 --- /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 00000000000000..84bbdce249a86e --- /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 00000000000000..8417d73c8ee85f --- /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 00000000000000..3bd17c2e8bbd91 --- /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 00000000000000..38da9d37e5b826 --- /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 00000000000000..91e0e0d5f3dee3 --- /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 00000000000000..946d43baa1b480 --- /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 00000000000000..5c88cd14f96af2 --- /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/chkdsk.md b/pages.th/windows/chkdsk.md new file mode 100644 index 00000000000000..7dc6a3a39204fe --- /dev/null +++ b/pages.th/windows/chkdsk.md @@ -0,0 +1,20 @@ +# chkdsk + +> ความสมบูรณ์ของระบบไฟล์และข้อมูลเมตาของระบบไฟล์บนดิสก์โวลุ่มและแก้ไขข้อผิดพลาดของระบบ +> ข้อมูลเพิ่มเติม: . + +- ระบุตัวอักษรไดรฟ์ (ตามด้วยเครื่องหมาย colon), mount point, หรือชื่อของไดรฟ์: + +`chkdsk {{ไดรฟ์}}` + +- แก้ไขข้อผิดพลาดของไดรฟ์ที่เลือก: + +`chkdsk {{ไดรฟ์}} /f` + +- ปิดการใช้งานไดรฟ์ที่เลือกก่อนการตรวจสอบ: + +`chkdsk {{ไดรฟ์}} /x` + +- เปลี่ยนขนาดของไฟล์ log เป็นไปตามขนาดที่ระบุ (เฉพาะ NTFS): + +`chkdsk /l {{ขนาด}}` diff --git a/pages.th/windows/chrome.md b/pages.th/windows/chrome.md new file mode 100644 index 00000000000000..6730ce12830d04 --- /dev/null +++ b/pages.th/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `chromium`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr chromium` diff --git a/pages.th/windows/cinst.md b/pages.th/windows/cinst.md new file mode 100644 index 00000000000000..c3e57de79ef15d --- /dev/null +++ b/pages.th/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco install`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr choco install` diff --git a/pages.th/windows/clist.md b/pages.th/windows/clist.md new file mode 100644 index 00000000000000..2b5b8c2ae021f8 --- /dev/null +++ b/pages.th/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco list`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr choco list` diff --git a/pages.th/windows/cls.md b/pages.th/windows/cls.md new file mode 100644 index 00000000000000..d27828e5da421f --- /dev/null +++ b/pages.th/windows/cls.md @@ -0,0 +1,8 @@ +# cls + +> ล้างตัวอักษรทั้งหมดที่อยู่บนหน้าต่าง +> ข้อมูลเพิ่มเติม: . + +- ล้างตัวอักษรทั้งหมดบนหน้าจอ: + +`cls` diff --git a/pages.th/windows/cpush.md b/pages.th/windows/cpush.md new file mode 100644 index 00000000000000..699793553a9353 --- /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 new file mode 100644 index 00000000000000..ec54d7e7d6bb23 --- /dev/null +++ b/pages.th/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> คำสั่งนี้เป็นอีกชื่อหนึ่งของคำสั่ง `choco uninstall`. +> ข้อมูลเพิ่มเติม: . + +- เรียกดูรายละเอียดสำหรับคำสั่งตัวเต็ม: + +`tldr choco uninstall` diff --git a/pages.th/windows/curl.md b/pages.th/windows/curl.md new file mode 100644 index 00000000000000..698388344e545f --- /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/explorer.md b/pages.th/windows/explorer.md new file mode 100644 index 00000000000000..628261e5d7a1b8 --- /dev/null +++ b/pages.th/windows/explorer.md @@ -0,0 +1,16 @@ +# explorer + +> โปรแกรมจัดการไฟล์ของวินโดวส์. +> ข้อมูลเพิ่มเติม: . + +- เปิดโปรแกรมจัดการไฟล์: + +`explorer` + +- เปิดโปรแกรมจัดการไฟล์ที่สารบบปัจุจุบัน: + +`explorer .` + +- เปิดโปรแกรมที่สารบบที่ระบุ: + +`explorer {{ทาง/ไป/สารบบ}}` diff --git a/pages.th/windows/iwr.md b/pages.th/windows/iwr.md new file mode 100644 index 00000000000000..cd059111335cac --- /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 00000000000000..2cad4c7201d3e3 --- /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 00000000000000..07c4abbfeddfdf --- /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 00000000000000..94a1780e2e0d94 --- /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 00000000000000..d3881b9ae80034 --- /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/am.md b/pages.tr/android/am.md new file mode 100644 index 00000000000000..f1c92ace444c10 --- /dev/null +++ b/pages.tr/android/am.md @@ -0,0 +1,20 @@ +# am + +> Android aktivite yöneticisi. +> Daha fazla bilgi için: . + +- Belirtilmiş bir aktiviteyi başlat: + +`am start -n {{com.android.settings/.Settings}}` + +- Bir aktivite başlatıp veriyi ona aktar: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Belirtilmiş bir eylem ve kategoriyi karşılayan bir aktivite başlat: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Bir kastı URI'a çevir: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.tr/android/bugreport.md b/pages.tr/android/bugreport.md new file mode 100644 index 00000000000000..2169ea6261981d --- /dev/null +++ b/pages.tr/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Bir Android bug raporu göster. +> Bu komut yalnızca `adb shell` ile kullanılabilir. +> Daha fazla bilgi için: . + +- Bir Android cihazı için eksizsiz bug raporu göster: + +`bugreport` diff --git a/pages.tr/android/bugreportz.md b/pages.tr/android/bugreportz.md new file mode 100644 index 00000000000000..ca5a8cdcb2db2c --- /dev/null +++ b/pages.tr/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Ziplenmiş bir Android bug raporu oluştur. +> Bu komut yalnızca `adb shell` ile kullanılabilir. +> 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: + +`bugreportz` + +- Çalışan `bugreportz` işleminin durumunu göster: + +`bugreportz -p` + +- `bugreportz` sürümünü göster: + +`bugreportz -v` + +- Yardım görüntüle: + +`bugreportz -h` diff --git a/pages.tr/android/cmd.md b/pages.tr/android/cmd.md new file mode 100644 index 00000000000000..5aeb164ec2e6af --- /dev/null +++ b/pages.tr/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Android servis yöneticisi. +> Daha fazla bilgi için: . + +- Tüm çalışan servisleri sırala: + +`cmd -l` + +- Belirtilen servisi çağır: + +`cmd {{alarm}}` + +- Belirtilen argümanlar ile servis çağır: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.tr/android/dalvikvm.md b/pages.tr/android/dalvikvm.md new file mode 100644 index 00000000000000..c63d5042618498 --- /dev/null +++ b/pages.tr/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Android Java sanal makinesi. +> Daha fazla bilgi için: . + +- Bir Java programı başlar: + +`dalvikvm -classpath {{örnek/dosya.jar}} {{sınıf_ismi}}` diff --git a/pages.tr/android/dumpsys.md b/pages.tr/android/dumpsys.md new file mode 100644 index 00000000000000..e93f7fe0bc10df --- /dev/null +++ b/pages.tr/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Android sistem servisleri ile ilgili bilgi sağla. +> Bu komut yalnızca `adb shell` ile kullanılabilir. +> Daha fazla bilgi için: . + +- Tüm sistem servisleri için tanısal bir çıktı al: + +`dumpsys` + +- Belirtilen sistem servisi için tanısal bir çıktı al: + +`dumpsys {{servis}}` + +- `dumpsys` komutunun hakkında bilgi verebileceği tüm servisleri sırala: + +`dumpsys -l` + +- Bir servis için servise özel argümanları sırala: + +`dumpsys {{servis}} -h` + +- Tanı çıktısından belirtilen servisi çıkart: + +`dumpsys --skip {{servis}}` + +- Saniye bazında bir zaman aşımı süresi belirle (varsayılan 10 saniyedir): + +`dumpsys -t {{saniye}}` diff --git a/pages.tr/android/getprop.md b/pages.tr/android/getprop.md new file mode 100644 index 00000000000000..3f69542b91fbad --- /dev/null +++ b/pages.tr/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> Android sistem özellikleri ile ilgili bilgi görüntüle. +> Daha fazla bilgi için: . + +- Android sistem özellikleri ile ilgili bilgi görüntüle: + +`getprop` + +- Belirtilen özellik ile ilgili bilgi görüntüle: + +`getprop {{prop}}` + +- SDK API seviyesini görüntüle: + +`getprop {{ro.build.version.sdk}}` + +- Android sürümünü görüntüle: + +`getprop {{ro.build.version.release}}` + +- Android cihaz modelini görüntüle: + +`getprop {{ro.vendor.product.model}}` + +- OEM kilit durumunu görüntüle: + +`getprop {{ro.oem_unlock_supported}}` + +- Android'in Wi-Fi kartının MAC adreslerini görüntüle: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.tr/android/input.md b/pages.tr/android/input.md new file mode 100644 index 00000000000000..c19c4bbe20786d --- /dev/null +++ b/pages.tr/android/input.md @@ -0,0 +1,25 @@ +# input + +> Olay kodlarını ve dokunmatik ekran mimiklerini bir Android cihazına yolla. +> Bu komut yalnızca `adb shell` ile kullanılabilir. +> Daha fazla bilgi için: . + +- Bir Android cihazına tek karakter için etkinlik kodu gönder: + +`input keyevent {{etkinlik_kodu}}` + +- Bir Android cihazına yazı gönder (`%s` boşlukları temsil eder): + +`input text "{{yazı}}"` + +- Bir Android cihazına tek dokunuş gönder: + +`input tap {{x_poz}} {{y_poz}}` + +- Bir Android cihazına kaydırma mimiği gönder: + +`input swipe {{x_başlangıç}} {{y_başlangıç}} {{x_son}} {{y_son}} {{ms_süre}}` + +- Bir Android cihazına kaydırma mimiği kullanarak uzun dokunuş gönder: + +`input swipe {{x_poz}} {{y_poz}} {{x_poz}} {{y_poz}} {{ms_süre}}` diff --git a/pages.tr/android/logcat.md b/pages.tr/android/logcat.md new file mode 100644 index 00000000000000..fcd3642079863b --- /dev/null +++ b/pages.tr/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> Sistem mesajlarının kaydını görüntüle. +> Daha fazla bilgi için: . + +- Sistem kaydını görüntüle: + +`logcat` + +- Sistem kayıtlarını bir dosyaya yaz: + +`logcat -f {{örnek/dosya}}` + +- Düzenli ifadeye uyan satırları görüntüle: + +`logcat --regex {{düzenli_ifade}}` diff --git a/pages.tr/android/pkg.md b/pages.tr/android/pkg.md new file mode 100644 index 00000000000000..9ce6431e3b7052 --- /dev/null +++ b/pages.tr/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Termux için paket yönetim aracı. +> Daha fazla bilgi için: . + +- İndirilmiş tüm paketleri yükselt: + +`pkg upgrade` + +- Belirtilen paketi indir: + +`pkg install {{paket}}` + +- Belirtilen paketi kaldır: + +`pkg uninstall {{paket}}` + +- Belirtilen paketi yeniden indir: + +`pkg reinstall {{paket}}` + +- Belirtilen paketi ara: + +`pkg search {{paket}}` diff --git a/pages.tr/android/pm.md b/pages.tr/android/pm.md new file mode 100644 index 00000000000000..d960dbc4453f45 --- /dev/null +++ b/pages.tr/android/pm.md @@ -0,0 +1,24 @@ +# pm + +> Android cihazındaki uygulamalar ile ilgili bilgi göster. +> Daha fazla bilgi için: . + +- İndirilen tüm uygulamaların sırala: + +`pm list packages` + +- İndirilen tüm sistem uygulamalarını sırala: + +`pm list packages -s` + +- İndirilen tüm üçüncü el uygulamaları sırala: + +`pm list packages -3` + +- Belirtilen anahtar kelimelere uyan uygulamaları sırala: + +`pm list packages {{anahtar_kelimeler}}` + +- Belirtilen uygulamanın APK'sine giden yolu görüntüle: + +`pm path {{uygulama}}` diff --git a/pages.tr/android/screencap.md b/pages.tr/android/screencap.md new file mode 100644 index 00000000000000..481428e5f274b0 --- /dev/null +++ b/pages.tr/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Bir mobil ekranın ekran görüntüsünü al. +> Bu komut sadece `adb shell` üzerinden kullanılabilir. +> Daha fazla bilgi için: . + +- Bir ekran görüntüsü al: + +`screencap {{dosya/yolu}}` diff --git a/pages.tr/android/settings.md b/pages.tr/android/settings.md new file mode 100644 index 00000000000000..f0db8b38b089fc --- /dev/null +++ b/pages.tr/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> Android işletim sistemi ile ilgili bilgi al. +> Daha fazla bilgi için: . + +- `global` isim alanındaki ayarların sırasını görüntüle: + +`settings list {{global}}` + +- Belirtilen ayarın değerini al: + +`settings get {{global}} {{airplane_mode_on}}` + +- Bir ayarın değerini belirle: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- Belirtilen ayarı sil: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.tr/android/wm.md b/pages.tr/android/wm.md new file mode 100644 index 00000000000000..26075252dd63f8 --- /dev/null +++ b/pages.tr/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> Bir Android cihazının ekranı ile ilgili bilgi göster. +> Bu komut yalnızca `adb shell` ile kullanılabilir. +> Daha fazla bilgi için: . + +- Bir Android cihazının ekranının fiziksel boyutunu görüntüle: + +`wm {{size}}` + +- Bir Android cihazının ekranının fiziksel derinliğini görüntüle: + +`wm {{density}}` diff --git a/pages.tr/common/7z.md b/pages.tr/common/7z.md index e423bc6ecb15eb..ada094a6dc8a66 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: . +> Daha fazla bilgi için: . - Dosya veya dizin arşivle: @@ -25,7 +25,7 @@ - Spesifik bir arşivleme türüyle arşivle: -`7z a -t{{zip|gzip|bzip2|tar}} {{sikistirilmis_dosya.7z}} {{yoldan/dosya_veya_dizine}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{sikistirilmis_dosya.7z}} {{yoldan/dosya_veya_dizine}}` - Kullanılabilir arşiv türlerini sırala: diff --git a/pages.tr/common/airmon-ng.md b/pages.tr/common/airmon-ng.md new file mode 100644 index 00000000000000..04da495ee2a4bb --- /dev/null +++ b/pages.tr/common/airmon-ng.md @@ -0,0 +1,20 @@ +# airmon-ng + +> Kablosuz ağ cihazlarında izleme modunu etkinleştirin. +> Daha fazla bilgi için: . + +- Kablosuz cihazları ve durumlarını listeleyin: + +`sudo airmon-ng` + +- Belirli bir cihaz için izleme modunu açın: + +`sudo airmon-ng start {{wlan0}}` + +- Kablosuz cihazları kullanan rahatsız edici işlemleri sonlandırın: + +`sudo airmon-ng check kill` + +- Belirli bir ağ arabirimi için izleme modunu kapatın: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.tr/common/alias.md b/pages.tr/common/alias.md new file mode 100644 index 00000000000000..aba22d4387718a --- /dev/null +++ b/pages.tr/common/alias.md @@ -0,0 +1,29 @@ +# alias + +> Takma adlar/kısayollar (bir komut dizesi ile değiştirilen sözcükler) oluşturur. +> Kısayollar, kabuğun yapılandırma dosyasında (örneğin `~/.bashrc`) tanımlanmadığı sürece geçerli kabuk oturumuyla birlikte sona erer. +> Daha fazla bilgi için: . + +- Tüm kısayolları listele: + +`alias` + +- Genel bir kısayol oluştur: + +`alias {{kelime}}="{{komut}}"` + +- Bir kısayolun verildigi komutu göster: + +`alias {{kelime}}` + +- Bir kısayolu kaldır: + +`unalias {{kelime}}` + +- `rm`'yi interaktif bir komuta dönüştür: + +`alias {{rm}}="{{rm --interactive}}"` + +- `la`'yi `ls --all` için kısayol olarak oluştur: + +`alias {{la}}="{{ls --all}}"` diff --git a/pages.tr/common/arch.md b/pages.tr/common/arch.md new file mode 100644 index 00000000000000..37b46ba48ed6ea --- /dev/null +++ b/pages.tr/common/arch.md @@ -0,0 +1,9 @@ +# arch + +> Sistem mimarisinin ismini göster. +> Ayrıca bakınız: `uname`. +> Daha fazla bilgi için: . + +- Sistemin mimarisini göster: + +`arch` diff --git a/pages.tr/common/arp.md b/pages.tr/common/arp.md new file mode 100644 index 00000000000000..1c894c00be171c --- /dev/null +++ b/pages.tr/common/arp.md @@ -0,0 +1,16 @@ +# arp + +> Sistemin ARP önbelleğini görüntüle ve manipüle et. +> Daha fazla bilgi için: . + +- Mevcut ARP tablosunu göster: + +`arp -a` + +- Belirli bir girdiyi sil: + +`arp -d {{adres}}` + +- ARP tablosunda bir girdi oluştur: + +`arp -s {{adres}} {{mac_adresi}}` diff --git a/pages.tr/common/bat.md b/pages.tr/common/bat.md new file mode 100644 index 00000000000000..44fac48dd7b83c --- /dev/null +++ b/pages.tr/common/bat.md @@ -0,0 +1,29 @@ +# bat + +> Dosyaları yazdır ve birleştir. +> Sözdizimi vurgulama ve Git entegrasyonuna sahip bir `cat` klonu. +> Daha fazla bilgi için: . + +- Bir dosyanın içeriğini standart çıktıya yazdır: + +`bat {{dosya}}` + +- Birkaç dosyayı hedef dosyada birleştir: + +`bat {{dosya1}} {{dosya2}} > {{hedef_dosya}}` + +- Birkaç dosyayı hedef dosyaya ekle: + +`bat {{dosya1}} {{dosya2}} >> {{hedef_dosya}}` + +- Tüm çıktı satırlarını numaralandır: + +`bat -n {{dosya}}` + +- Bir JSON dosyasının sözdizimini vurgula: + +`bat --language json {{dosya.json}}` + +- Desteklenen tüm dilleri görüntüle: + +`bat --list-languages` diff --git a/pages.tr/common/bundler.md b/pages.tr/common/bundler.md new file mode 100644 index 00000000000000..a6520695c87d92 --- /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/cat.md b/pages.tr/common/cat.md new file mode 100644 index 00000000000000..3cc8bd253dc500 --- /dev/null +++ b/pages.tr/common/cat.md @@ -0,0 +1,24 @@ +# cat + +> Dosyaları yazdır ve birleştir. +> Daha fazla bilgi için: . + +- Bir dosyanın içeriğini standart çıktıya yazdır: + +`cat {{dosya/yolu}}` + +- Birkaç dosyayı bir çıktı dosyasında birleştir: + +`cat {{dosya/yolu1}} {{dosya/yolu2}} > {{çıktı/dosyası/yolu}}` + +- Birkaç dosyayı bir çıktı dosyasına ekle: + +`cat {{dosya/yolu1}} {{dosya/yolu2}} >> {{çıktı/dosyası/yolu}}` + +- Tüm çıkış satırlarını numaralandır: + +`cat -n {{dosya/yolu}}` + +- Yazdırılamayan ve boşluk karakterleri görüntüle (ASCII değilse `M-` önekiyle): + +`cat -v -t -e {{dosya/yolu}}` diff --git a/pages.tr/common/clamav.md b/pages.tr/common/clamav.md new file mode 100644 index 00000000000000..80647a7e8317b4 --- /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 00000000000000..fef6fe1ae43fd0 --- /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 00000000000000..dbbaf4cf0ecb24 --- /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 00000000000000..61fb483a82c24d --- /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 00000000000000..8f6c5bf9584a83 --- /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 00000000000000..2cbf981c1f8cd4 --- /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/date.md b/pages.tr/common/date.md new file mode 100644 index 00000000000000..1e98e429504a0d --- /dev/null +++ b/pages.tr/common/date.md @@ -0,0 +1,28 @@ +# date + +> Sistem tarihini görüntüleyin veya ayarlayın. +> Daha fazla bilgi için: . + +- Varsayılan yerel biçimi kullanarak geçerli tarihi görüntüleyin: + +`date +"%c"` + +- Geçerli tarihi UTC ve ISO 8601 formatında görüntüleyin: + +`date -u +"%Y-%m-%dT%H:%M:%S%Z"` + +- Geçerli tarihi bir Unix zaman damgası olarak görüntüleyin (Unix zamanından bu yana geçen saniyeler): + +`date +%s` + +- Varsayılan biçimi kullanarak belirli bir tarihi (Unix zaman damgası olarak) görüntüleyin: + +`date -d @1473305798` + +- Belirli bir tarihi Unix zaman damgası biçimine dönüştürün: + +`date -d "{{2018-09-01 00:00}}" +%s --utc` + +- RFC-3339 biçimini kullanarak geçerli tarihi görüntüleyin (`YYYY-AA-GG ss:dd:ss ZD`): + +`date --rfc-3339=s` diff --git a/pages.tr/common/diff.md b/pages.tr/common/diff.md new file mode 100644 index 00000000000000..ad8321a65a0c83 --- /dev/null +++ b/pages.tr/common/diff.md @@ -0,0 +1,32 @@ +# diff + +> Dosyaları ve dizinleri karşılaştırın. +> Daha fazla bilgi için: . + +- Dosyaları karşılaştır (`eski_dosya`'yı `yeni_dosya`'ya dönüştürmek için yapılan değişiklikleri listeler): + +`diff {{eski_dosya}} {{yeni_dosya}}` + +- Boşlukları yok sayarak dosyaları karşılaştırın: + +`diff --ignore-all-space {{eski_dosya}} {{yeni_dosya}}` + +- Farkları yan yana göstererek dosyaları karşılaştırın: + +`diff --side-by-side {{eski_dosya}} {{yeni_dosya}}` + +- Farkları birleştirilmiş biçimde (`git diff` tarafından kullanıldığı gibi) göstererek dosyaları karşılaştırın: + +`diff --unified {{eski_dosya}} {{yeni_dosya}}` + +- Dizinleri yinelemeli olarak karşılaştırın (farklı dosya/dizin adlarını ve dosyalarda yapılan değişiklikleri gösterir): + +`diff --recursive {{eski_dizin}} {{yeni_dizin}}` + +- Dizinleri karşılaştırın, yalnızca farklı olan dosyaların adlarını gösterin: + +`diff --recursive --brief {{eski_dizin}} {{yeni_dizin}}` + +- Git için iki metin dosyasının farklarından, var olmayan dosyaları ise boş olarak değerlendirerek bir yama dosyası oluşturun: + +`diff --text --unified --new-file {{eski_dosya}} {{yeni_dosya}} > {{fark.patch}}` diff --git a/pages.tr/common/docker-compose.md b/pages.tr/common/docker-compose.md index a61d758b96ef1b..33b8114bc9c02b 100644 --- a/pages.tr/common/docker-compose.md +++ b/pages.tr/common/docker-compose.md @@ -1,36 +1,36 @@ # docker compose > Çoklu konteynerli docker uygulamalarını çalıştırın ve yönetin. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Tüm konteynerleri listele: -`docker-compose ps` +`docker compose ps` - 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: -`docker-compose up --build` +`docker compose up --build` - Tüm konteynerleri alternatif bir beste dosyasıyla başlatın: -`docker-compose --file {{yoldan/dosyaya}} up` +`docker compose --file {{yoldan/dosyaya}} up` - Çalışan tüm konteynerleri durdurun: -`docker-compose stop` +`docker compose stop` - Tüm konteynerleri, ağları, imgeleri ve alanları durdurun ve silin: -`docker-compose down --rmi all --volumes` +`docker compose down --rmi all --volumes` - Tüm konteynerler için logları takip edin: -`docker-compose logs --follow` +`docker compose logs --follow` - Belirtilmiş bir konteyner için logları takip edin: -`docker-compose logs --follow {{konteyner_ismi}}` +`docker compose logs --follow {{konteyner_ismi}}` diff --git a/pages.tr/common/docker-exec.md b/pages.tr/common/docker-exec.md index 8fce2e3d47d751..575e68895cb8ec 100644 --- a/pages.tr/common/docker-exec.md +++ b/pages.tr/common/docker-exec.md @@ -1,7 +1,7 @@ # docker exec > Halihazırda çalışan bir Docker konteyneri üstünde komut çalıştır. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Halihazırda çalışan bir konteynerin üstünde interaktif bir kabuk oturumunu çalıştır: diff --git a/pages.tr/common/docker-run.md b/pages.tr/common/docker-run.md index 8e81e66f0ed1d7..d41fbbc3768c5f 100644 --- a/pages.tr/common/docker-run.md +++ b/pages.tr/common/docker-run.md @@ -1,28 +1,28 @@ # docker run > Yeni bir Docker konteynerinde bir komut çalıştır. -> Daha fazla bilgi: . +> Daha fazla bilgi için: . -- Yeni bir konteynerde, etiketlenmiş bir imgeden komut çalıştır.: +- Yeni bir konteynerde, etiketlenmiş bir imgeden komut çalıştır: `docker run {{imge:etiket}} {{komut}}` - Yeni bir konteynerde arkaplanda çalışacak şekilde komut çalıştır ve ID'sini göster: -`docker run -d {{imge}} {{komut}}` +`docker run --detach {{imge}} {{komut}}` - İnteraktif mod ve pseudo-TTY'deki bir açık-kapalı konteynerde komut çalıştır: -`docker run --rm -it {{imge}} {{komut}}` +`docker run --rm --interactive --tty {{imge}} {{komut}}` - Yeni bir konteynerde geçebilmiş çevresel değişkenler ile komut çalıştır: -`docker run -e '{{değişken}}={{değer}}' -e {{değişken}} {{imge}} {{komut}}` +`docker run --env '{{değişken}}={{değer}}' --env {{değişken}} {{imge}} {{komut}}` - Yeni bir konteynerde bağlama takılı hacimlerle komut çalıştır: -`docker run -v {{örnek/host}}:{{örnek/konteyner}} {{imge}} {{komut}}` +`docker run --volume {{örnek/host}}:{{örnek/konteyner}} {{imge}} {{komut}}` - Yayınlanmış portları içeren yeni bir konteynerde komut çalıştır: -`docker run -p {{host_portu}}:{{konteyner_portu}} {{imge}} {{komut}}` +`docker run --publish {{host_portu}}:{{konteyner_portu}} {{imge}} {{komut}}` diff --git a/pages.tr/common/docker-system.md b/pages.tr/common/docker-system.md index 15adaceb256b7d..130eb9c6a0b6e3 100644 --- a/pages.tr/common/docker-system.md +++ b/pages.tr/common/docker-system.md @@ -1,7 +1,7 @@ # docker system > Docker verilerini yönet ve sistem bilgisi görüntüle. -> More information: . +> Daha fazla bilgi için: . - Yardım göster: diff --git a/pages.tr/common/docker.md b/pages.tr/common/docker.md index 764afd5e9f04e4..665cee8d399c75 100644 --- a/pages.tr/common/docker.md +++ b/pages.tr/common/docker.md @@ -1,6 +1,7 @@ # docker > Docker konteyner ve imgelerini yönetir. +> `docker run` gibi bazı alt komutların kendi dökümantasyonu bulunmaktadır. > Daha fazla bilgi için: . - Şuan çalışan docker konteynerlerini listele: @@ -17,7 +18,7 @@ - Varolan bir konteyneri başlat veya durdur: -`docker {{baslat|durdur}} {{konteyner_ismi}}` +`docker {{start|stop}} {{konteyner_ismi}}` - Bir docker kaydından imge çek: diff --git a/pages.tr/common/fossil-ci.md b/pages.tr/common/fossil-ci.md new file mode 100644 index 00000000000000..de9e2097ca8a50 --- /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 00000000000000..e19b103cf07a71 --- /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 00000000000000..3bb6d6a70b2942 --- /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 00000000000000..90db1968b313b6 --- /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 00000000000000..7745d9c19356e1 --- /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 00000000000000..8b10416dba6062 --- /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-add.md b/pages.tr/common/git-add.md new file mode 100644 index 00000000000000..aa99e84239bc43 --- /dev/null +++ b/pages.tr/common/git-add.md @@ -0,0 +1,32 @@ +# git add + +> Değiştirilmiş dosyaları indekse ekle. +> Daha fazla bilgi için: . + +- İndekse bir dosya ekle: + +`git add {{örnek/dosya}}` + +- Tüm (izlenen veya izlenmeyen) dosyaları ekle: + +`git add -A` + +- Yalnızca izlenen dosyaları ekle: + +`git add -u` + +- Yoksayılan dosyaları dahi ekle: + +`git add -f` + +- Dosyaların parçalarını etkileşimli olarak sahnele: + +`git add -p` + +- Belirtilen dosyaların parçalarını etkileşimli olarak sahnele: + +`git add -p {{örnek/dosya}}` + +- Bir dosyayı etkileşimli olarak sahnele: + +`git add -i` diff --git a/pages.tr/common/git-am.md b/pages.tr/common/git-am.md new file mode 100644 index 00000000000000..c7ebc8b47b4940 --- /dev/null +++ b/pages.tr/common/git-am.md @@ -0,0 +1,17 @@ +# git am + +> Yama dosyalarını uygula. E-posta ile commit alırken faydalıdır. +> Ayrıca yama dosyalarının üretilmesine yarayan `git format-patch` sayfasına bakılması önerilir. +> Daha fazla bilgi için: . + +- Bir yama dosyasını uygula: + +`git am {{örnek/yama.patch}}` + +- Yama dosyası uygulama işlemini durdur: + +`git am --abort` + +- Mümkün olacak kadar yama dosyasını uygula ve bu dosyaların uygulanamayan parçalarını bahsi geçen dosyaları reddetmek için kaydet: + +`git am --reject {{örnek/yama.patch}}` diff --git a/pages.tr/common/git-annex.md b/pages.tr/common/git-annex.md new file mode 100644 index 00000000000000..43cf2772f6c7b5 --- /dev/null +++ b/pages.tr/common/git-annex.md @@ -0,0 +1,28 @@ +# git annex + +> 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` + +- Bir dosya ekle: + +`git annex add {{örnek/dosya_veya_dizin}}` + +- Bir dosya veya dizinin şu anki durumunu göster: + +`git annex status {{örnek/dosya_veya_dizin}}` + +- Yerel bir depoyu, uzaktaki bir depo ile senkronize et: + +`git annex {{uzak_bağlantı}}` + +- Bir dosya veya dizin al: + +`git annex get {{örnek/dosya_veya_dizin}}` diff --git a/pages.tr/common/git-annotate.md b/pages.tr/common/git-annotate.md new file mode 100644 index 00000000000000..f078a49a16d28c --- /dev/null +++ b/pages.tr/common/git-annotate.md @@ -0,0 +1,14 @@ +# git annotate + +> Her satırdaki dosyanın yanında en son commit değeri ve yazarını göster. +> Ayrıca `git annotate` yerine tercih edilen `git blame` sayfasına bakılması önerilir. +> `git annotate`, git dışındaki sürüm kontrol sistemlerine aşina olanlar için sağlanmıştır. +> Daha fazla bilgi için: . + +- Bir dosyayı, her satırında son commit değeri ve yazarı bulunacak şekilde göster: + +`git annotate {{örnek/dosya}}` + +- Bir dosyayı, her satırında son commit değeri ve yazarının e-postası bulunacak şekilde göster: + +`git annotate -e {{örnek/dosya}}` diff --git a/pages.tr/common/git-apply.md b/pages.tr/common/git-apply.md new file mode 100644 index 00000000000000..11d99c7c743fa7 --- /dev/null +++ b/pages.tr/common/git-apply.md @@ -0,0 +1,28 @@ +# git apply + +> İndeks veya dosyalara yama uygula. +> Daha fazla bilgi için: . + +- Yamalanan dosyalarla ilgili mesajları yazdır: + +`git apply --verbose {{örnek/dosya}}` + +- Yamalanan dosyaları indekse uygula ve ekle: + +`git apply --index {{örnek/dosya}}` + +- Uzak yama dosyası uygula: + +`curl {{https://ornek.com/dosya.patch}} | git apply` + +- Çıktı için fark statistiği çıkar ve yamayı uygula: + +`git apply --stat --apply {{örnek/dosya}}` + +- Yamayı tersten uygula: + +`git apply --reverse {{örnek/dosya}}` + +- Yama sonucunu çalışan ağacı değiştirmeden indekste sakla: + +`git apply --cache {{örnek/dosya}}` diff --git a/pages.tr/common/git-archive.md b/pages.tr/common/git-archive.md new file mode 100644 index 00000000000000..65cf8bcdf215e4 --- /dev/null +++ b/pages.tr/common/git-archive.md @@ -0,0 +1,28 @@ +# git archive + +> İsimlendirilmiş bir ağaçtan dosyaların arşivini oluştur. +> Daha fazla bilgi için: . + +- Mevcut HEAD'deki içerik ile bir tar arşivi oluştur ve içeriği standart çıktı biçiminde göster: + +`git archive --verbose HEAD` + +- Mevcut HEAD'deki içerik ile bir zip arşivi oluştur ve içeriği standart çıktı biçiminde göster: + +`git archive --verbose --format=zip HEAD` + +- Yukarıda yazan madde ile aynı şeyi yap, ama zip arşivini belirtilen dosya olarak yaz: + +`git archive --verbose --output={{örnek/arşiv/dosyası.zip}} HEAD` + +- Belirtilmiş bir daldaki son commitlerin içeriğinden bir tar arşivi oluştur: + +`git archive --output={{örnek/arşiv/dosyası.tar}} {{dal_ismi}}` + +- Belirtilmiş bir dizindeki içeriklerden tar arşivi oluştur: + +`git archive --output={{örnek/arşiv/dosyası.tar}} HEAD:{{örnek/dizin}}` + +- Bir takım dosyayı belirtilmiş bir dizinin içinde arşivlemek için başlarına yol ekle: + +`git archive --output={{örnek/arşiv/dosyası.tar}} --prefix={{başlarına/yol/eklenecek/dosyalar}}/ HEAD` diff --git a/pages.tr/common/git-bisect.md b/pages.tr/common/git-bisect.md new file mode 100644 index 00000000000000..af4700f752c9e9 --- /dev/null +++ b/pages.tr/common/git-bisect.md @@ -0,0 +1,21 @@ +# git bisect + +> Bug taşıyan commit'i bulmak için ikili arama kullan. +> Git otomatik olarak commit çizelgesi içinde oradan oraya atlayarak yaramaz commit'i saptar. +> Daha fazla bilgi için: . + +- Buglı bilinen bir commit'i ve (genelde eski olan) iyi bir commit'i belirterek ikiye bölme işlemini başlat: + +`git bisect start {{kötü_commit}} {{iyi_commit}}` + +- `git bisect`'in seçtiği her commit'i, mevcut soruna sebep olup olmadıklarını test ettikten sonra "bad" (kötü) veya "good" (iyi) olarak işaretle: + +`git bisect {{good|bad}}` + +- `git bisect` sorunlu commit'i saptadıktan sonra, ikiye bölme işlemini bitir ve depoyu bahsi geçen commit'den önceki dala geçir: + +`git bisect reset` + +- İkiye bölme işlemi sırasında bir commit'i atla: + +`git bisect skip` diff --git a/pages.tr/common/git-blame.md b/pages.tr/common/git-blame.md new file mode 100644 index 00000000000000..afdf0ba58f5564 --- /dev/null +++ b/pages.tr/common/git-blame.md @@ -0,0 +1,12 @@ +# git blame + +> Her satırdaki dosyanın yanında en son commit değeri ve yazarını göster. +> Daha fazla bilgi için: . + +- Bir dosyayı, her satırında son commit değeri ve yazarı bulunacak şekilde göster: + +`git blame {{örnek/dosya}}` + +- Bir dosyayı, her satırında son commit değeri ve yazarının e-postası bulunacak şekilde göster: + +`git blame -e {{örnek/dosya}}` diff --git a/pages.tr/common/git-branch.md b/pages.tr/common/git-branch.md new file mode 100644 index 00000000000000..a34a4b0bd0ddbc --- /dev/null +++ b/pages.tr/common/git-branch.md @@ -0,0 +1,36 @@ +# git branch + +> Dallar ile çalışmak için kullanılan ana Git komutu. +> Daha fazla bilgi için: . + +- Yerel dalları göster. Mevctu dal `*` ile vurgulanır: + +`git branch` + +- Tüm dalları (yerel ve uzak bağlantıda olan) göster: + +`git branch -a` + +- Mevcut dalın ismini göster: + +`git branch --show-current` + +- Mevcut commit'e dayanarak yeni bir dal oluştur: + +`git branch {{dal_ismi}}` + +- Belirtilen commit'e dayanarak yeni bir dal oluştur: + +`git branch {{dal_ismi}} {{commit_değeri}}` + +- Bir dalı yeniden adlandır: + +`git branch -m {{eski_dal_ismi}} {{yeni_dal_ismi}}` + +- Yerel bir dalı sil: + +`git branch -d {{dal_ismi}}` + +- Uzaktaki bir dalı sil: + +`git push {{uzak_bağlantı}} --delete {{uzak_dal_ismi}}` diff --git a/pages.tr/common/git-bugreport.md b/pages.tr/common/git-bugreport.md new file mode 100644 index 00000000000000..eaf3db533797d0 --- /dev/null +++ b/pages.tr/common/git-bugreport.md @@ -0,0 +1,16 @@ +# git bugreport + +> Sşstem ve kullanıcıdan hata ayıklama bilgisi çeker ve olası bir Git hatasının rapor edilmesi için bu bilgiyi oluşturduğu bir metin dosyasına kaydeder. +> Daha fazla bilgi için: . + +- Mevcut dizinde yeni bir hata rapor dosyası oluştur: + +`git bugreport` + +- Belirtilen dizinde yeni bir hata rapor dosyası oluştur: + +`git bugreport --output-directory {{örnek/dizin}}` + +- `strftime` formatında belirtilmiş bir dosya adı ekiyle yeni bir rapor dosyası oluştur: + +`git bugreport --suffix {{%m%d%y}}` diff --git a/pages.tr/common/git-bundle.md b/pages.tr/common/git-bundle.md new file mode 100644 index 00000000000000..9bb669bdaf60ef --- /dev/null +++ b/pages.tr/common/git-bundle.md @@ -0,0 +1,32 @@ +# git bundle + +> Cisim ve referansları bir arşive paketle. +> Daha fazla bilgi için: . + +- Belirtilmiş bir dalın tüm cisim ve referanslarını içeren bir paket dosyası oluştur: + +`git bundle create {{örnek/dosyas.bundle}} {{dal_ismi}}` + +- Tüm dallar için bir paket dosyası oluştur: + +`git bundle create {{örnek/dosyas.bundle}} --all` + +- Mevcut daldaki en son 5 commit için bir paket dosyası oluştur: + +`git bundle create {{örnek/dosya.bundle}} -{{5}} {{HEAD}}` + +- Son 7 günü içeren bir paket dosyası oluştur: + +`git bundle create {{örnek/dosya.bundle}} --since={{7.days}} {{HEAD}}` + +- Bir paket dosyasının geçerli olduğunu ve mevcut depoya uygulanabileceğini doğrula: + +`git bundle verify {{örnek/dosya.bundle}}` + +- Bir pakette bulunan referansları sırala: + +`git bundle unbundle {{örnek/dosya.bundle}}` + +- Belirtilen dalı paket dosyasından çıkarıp mevcut depoya koy: + +`git pull {{örnek/dosya.bundle}} {{dal_ismi}}` diff --git a/pages.tr/common/git-cat-file.md b/pages.tr/common/git-cat-file.md new file mode 100644 index 00000000000000..285b2d28efa08e --- /dev/null +++ b/pages.tr/common/git-cat-file.md @@ -0,0 +1,16 @@ +# git cat-file + +> Git depo cisimlerine dair içerik, tür ve boyut bilgisini sağla. +> Daha fazla bilgi için: . + +- HEAD commit'inin byte bazında boyutunu öğren: + +`git cat-file -s HEAD` + +- Belirtilen Git cisminin türünü (blob, ağaç, commit, etiket) öğren: + +`git cat-file -t {{8c442dc3}}` + +- Git objesinin içeriğini, türüne uygun olarak hoş şekilde yansıt: + +`git cat-file -p {{HEAD~2}}` diff --git a/pages.tr/common/git-check-attr.md b/pages.tr/common/git-check-attr.md new file mode 100644 index 00000000000000..704eeb07dc198d --- /dev/null +++ b/pages.tr/common/git-check-attr.md @@ -0,0 +1,20 @@ +# git check-attr + +> `gitattributes` içeriği görüntüleme aracı. +> Daha fazla bilgi için: . + +- Bir dosyadaki tüm atıfları kontrol et: + +`git check-attr --all {{örnek/dosya}}` + +- Bir dosyadaki belirtilmiş atıfın değerini kontrol et: + +`git check-attr {{atıf}} {{örnek/dosya}}` + +- Birden fazla dosyadaki belirtilmiş atıfın değerini kontrol et: + +`git check-attr --all {{örnek/dosya1}} {{örnek/dosya2}}` + +- Bir veya birden fazla dosyadaki belirtilmiş atıfın değerini kontrol et: + +`git check-attr {{atıf}} {{örnek/dosya1}} {{örnek/dosya2}}` diff --git a/pages.tr/common/git-check-ignore.md b/pages.tr/common/git-check-ignore.md new file mode 100644 index 00000000000000..5c6352ce32310f --- /dev/null +++ b/pages.tr/common/git-check-ignore.md @@ -0,0 +1,24 @@ +# git check-ignore + +> Git yoksayma / dışlama (".gitignore") dosyalarını analiz et. +> Daha fazla bilgi için: . + +- Bir dosya veya dizinin yoksayıldığı veya sayılmadığını kontrol et: + +`git check-ignore {{örnek/dosya_veya_dizin}}` + +- Birden fazla dosya veya dizinin yoksayıldığı veya sayılmadığını kontrol et: + +`git check-ignore {{örnek/dosya}} {{örnek/dizin}}` + +- Her bir satıra tekabül edecek şekilde stdin'den yolisimleri kullan: + +`git check-ignore --stdin < {{örnek/dosya_sırası}}` + +- İndeksi kontrol etme: + +`git check-ignore --no-index {{örnek/dosya_veya_dizin}}` + +- Her yol için eşleşen desene dair detayları dahil et: + +`git check-ignore --verbose {{örnek/dosya_veya_dizin}}` diff --git a/pages.tr/common/git-check-mailmap.md b/pages.tr/common/git-check-mailmap.md new file mode 100644 index 00000000000000..10c66ef024e7f8 --- /dev/null +++ b/pages.tr/common/git-check-mailmap.md @@ -0,0 +1,8 @@ +# git check-mailmap + +> Bağlantıların kanonik isimleri ve e-posta adreslerini göster. +> Daha fazla bilgi için: . + +- Bir e-posta adresi ile eşleşen kanonik ismi bul: + +`git check-mailmap "<{{örnek@e-posta.com}}>"` diff --git a/pages.tr/common/git-check-ref-format.md b/pages.tr/common/git-check-ref-format.md new file mode 100644 index 00000000000000..218a46a12e4d01 --- /dev/null +++ b/pages.tr/common/git-check-ref-format.md @@ -0,0 +1,16 @@ +# git check-ref-format + +> Girilen referans isminin kabul edilebilir olup olmadığını kontrol eder, ve eğer kabul edilemezse sıfır olmayan bir çıktı verir. +> Daha fazla bilgi için: . + +- Belirtilen referans ismini biçimini kontrol et: + +`git check-ref-format {{refs/head/referans_ismi}}` + +- Son kontrol edilen dalın ismini göster: + +`git check-ref-format --branch @{-1}` + +- Bir referans ismi dosyasını normalleştir: + +`git check-ref-format --normalize {{refs/head/referans_ismi}}` diff --git a/pages.tr/common/git-checkout-index.md b/pages.tr/common/git-checkout-index.md new file mode 100644 index 00000000000000..2d65188b6e6098 --- /dev/null +++ b/pages.tr/common/git-checkout-index.md @@ -0,0 +1,20 @@ +# git checkout-index + +> Dosyaları indeksten çalışma ağacına kopyala. +> Daha fazla bilgi için: . + +- Son commit'den beri silinen dosyaları geri döndür: + +`git checkout-index --all` + +- Son commit'den beri silinen veya değiştirilen dosyaları geri döndür: + +`git checkout-index --all --force` + +- Son commit'den beri değiştirilen dosyaları geri döndür ancak silinenleri yoksay: + +`git checkout-index --all --force --no-create` + +- Tüm ağacın bir kopyasını belirtilen dizinde dışa aktar (sondaki eğik çizgi önemli): + +`git checkout-index --all --force --prefix={{dışa/aktarılacak/dizin/}}` diff --git a/pages.tr/common/git-checkout.md b/pages.tr/common/git-checkout.md new file mode 100644 index 00000000000000..72d1088e9ae0d0 --- /dev/null +++ b/pages.tr/common/git-checkout.md @@ -0,0 +1,36 @@ +# git checkout + +> Bulunulan dalı değiştir veya çalışma ağaçlarını onar. +> Daha fazla bilgi için: . + +- Yeni bir dal oluştur ve bu dala geç: + +`git checkout -b {{dal_ismi}}` + +- Belirtilen bir referansa (dal, uzak/dal, etiket gibi) dayanacak şekilde yeni bir dal oluştur ve bu dala geç: + +`git checkout -b {{dal_ismi}} {{referans}}` + +- Varolan yerel bir dala geç: + +`git checkout {{dal_ismi}}` + +- En son kontrol edilmiş olan dala geç: + +`git checkout -` + +- Uzak bağlantıdaki varolan bir dala geç: + +`git checkout --track {{uzak_bağlantı_adresi}}/{{dal_ismi}}` + +- Mevcut dizindeki sahnelenmemiş tüm değişiklikleri ayır (geri alma benzeri bir komut için `git reset` komutu önerilir): + +`git checkout .` + +- Sahnelenmemiş değişiklikleri belirtilen dosyaya ayır: + +`git checkout {{dosya_ismi}}` + +- Mevcut dizindeki bir dosyayı, belirtilen dalda commit edilmiş sürümü ile değiştirin: + +`git checkout {{dal_ismi}} -- {{dosya_ismi}}` diff --git a/pages.tr/common/git-cherry-pick.md b/pages.tr/common/git-cherry-pick.md new file mode 100644 index 00000000000000..b27a9ed7888bdb --- /dev/null +++ b/pages.tr/common/git-cherry-pick.md @@ -0,0 +1,21 @@ +# git cherry-pick + +> Varolan commit'ler ile getirilen yenilikleri mevcut dala uygula. +> Değişiklikleri başka bir dala aktarmak için, önce `git checkout` komutu kullanılmalıdır. +> Daha fazla bilgi için: . + +- Mevcut dala bir commit uygula: + +`git cherry-pick {{commit_ismi}}` + +- Mevcut dala belirtilmiş aralıktaki kadar commit uygula (ayrıca `git rebase --onto` komutunun araştırılması önerilir): + +`git cherry-pick {{ilk_commit}}~..{{son_commit}}` + +- Mevcut dala birçok (ardışık olmayan) commit uygula: + +`git cherry-pick {{commit_1}} {{commit_2}}` + +- Bir commit'in değişikliklerini, herhangi bir yeni commit oluşturmadan çalışan dizine ekle: + +`git cherry-pick -n {{commit}}` diff --git a/pages.tr/common/git-cherry.md b/pages.tr/common/git-cherry.md new file mode 100644 index 00000000000000..55d6611b56cb3f --- /dev/null +++ b/pages.tr/common/git-cherry.md @@ -0,0 +1,16 @@ +# git cherry + +> Ana depoya aktarılması gereken commit'leri bul. +> Daha fazla bilgi için: . + +- Commit'leri (ve mesajlarını) ana akımda kendilerine tekabül eden commit'ler ile göster: + +`git cherry -v` + +- Farklı bir ana akım ve konu dalı belirt: + +`git cherry {{origin}} {{topic}}` + +- Commit'leri verilen sınırlamalar ile sınırla: + +`git cherry {{origin}} {{topic}} {{base}}` diff --git a/pages.tr/common/git-clean.md b/pages.tr/common/git-clean.md new file mode 100644 index 00000000000000..f81eb825112137 --- /dev/null +++ b/pages.tr/common/git-clean.md @@ -0,0 +1,28 @@ +# git clean + +> Takip edilmeyen dosyaları çalışma ağacından sil. +> Daha fazla bilgi için: . + +- Git tarafından takip edilmeyen dosyaları sil: + +`git clean` + +- Git tarafından takip edilmeyen dosyaları etkileşimli bir nizamda sil: + +`git clean -i` + +- Hangi dosyaların silinmeye aday olduğunu onları silmeden göster: + +`git clean --dry-run` + +- Git tarafından takip edilmeyen dosyaları zorla zil: + +`git clean -f` + +- Git tarafından takip edilmeyen dizinleri zorla zil: + +`git clean -fd` + +- `.gitignore` ve `.git/info/exclude`'deki yoksayılan dosyalar dahiş olmak üzere takip edilmeyen dosyaları sil: + +`git clean -x` diff --git a/pages.tr/common/git-clone.md b/pages.tr/common/git-clone.md new file mode 100644 index 00000000000000..066b9649ae749d --- /dev/null +++ b/pages.tr/common/git-clone.md @@ -0,0 +1,32 @@ +# git clone + +> Varolan bir dizini klonla. +> Daha fazla bilgi için: . + +- Varolan bir depoyu klonla: + +`git clone {{uzak_bağlantıdaki_depo}}` + +- Varolan bir depoyu velirtilen dizine klonla: + +`git clone {{uzak_bağlantıdaki_depo}} {{örnek/dizin}}` + +- Varolan bir depo ve onun alt modüllerini klonla: + +`git clone --recursive {{uzak_bağlantıdaki_depo}}` + +- Yerel bir depoyu klonla: + +`git clone -l {{örnek/yerel/depo}}` + +- Sessizce klonla: + +`git clone -q {{uzak_bağlantıdaki_depo}}` + +- Yalnızca en yeni 10 commit'i çekerek varolan bir depoyu klonla (zaman tasarrufu açısından yararlıdır): + +`git clone --depth {{10}} {{uzak_bağlantıdaki_depo}}` + +- Yalnızca belirtilen bir dalı çekerek varolan bir depoyu klonla: + +`git clone --branch {{isim}} --single-branch {{uzak_bağlantıdaki_depo}}` diff --git a/pages.tr/common/git-column.md b/pages.tr/common/git-column.md new file mode 100644 index 00000000000000..eb6ad69446645d --- /dev/null +++ b/pages.tr/common/git-column.md @@ -0,0 +1,16 @@ +# git column + +> Kolonlarda veri görüntüle. +> Daha fazla bilgi için: . + +- Standart çıktıyı çoklu kolonlar olarak biçimlendir: + +`ls | git column --mode={{column}}` + +- Standart çıktıyı maksimum `100` birim sütun genişliğinde biçimlendir: + +`ls | git column --mode=column --width={{100}}` + +- Standart çıktıyı maksimum `30` birimlik boşluğa sahip situnlar olacak şekilde biçimlendir: + +`ls | git column --mode=column --padding={{30}}` diff --git a/pages.tr/common/git-commit-graph.md b/pages.tr/common/git-commit-graph.md new file mode 100644 index 00000000000000..b52efb97944595 --- /dev/null +++ b/pages.tr/common/git-commit-graph.md @@ -0,0 +1,16 @@ +# git commit-graph + +> Git commit-graph dosyalarını yaz ve doğrula. +> Daha fazla bilgi için: . + +- Dizinin yerel `.git` dizinindeki paketlenmiş commit'ler için bir commit-grafik dosyası yaz: + +`git commit-graph write` + +- Erişilebilen tüm commitleri içeren bir commit-grafik dosyası yaz: + +`git show-ref --hash | git commit-graph write --stdin-commits` + +- `HEAD`'den erişilebilenlerin yanında mevcut commit-grafik dosyasındaki tüm commit'leri içeren bir commit-grafik dosyası oluştur: + +`git rev-parse {{HEAD}} | git commit-graph write --stdin-commits --append` diff --git a/pages.tr/common/git-commit-tree.md b/pages.tr/common/git-commit-tree.md new file mode 100644 index 00000000000000..fb41af4412ddf6 --- /dev/null +++ b/pages.tr/common/git-commit-tree.md @@ -0,0 +1,21 @@ +# git commit-tree + +> Commit cisimleri oluşturmaya yarayan düşük seviyeli araç. +> Ayrıca `git commit` sayfasına bakılması önerilir. +> Daha fazla bilgi için: . + +- Belirtilen mesaj ile bir commit cismi oluştur: + +`git commit-tree {{ağaç}} -m "{{mesaj}}"` + +- Bir dosyadan mesaj okuyan bir commit cismi oluştur (stdin için `-` ekini kullan): + +`git commit-tree {{ağaç}} -F {{örnek/dosya}}` + +- GPG anahtarıyla imzalanmış bir commit cismi oluştur: + +`git commit-tree {{ağaç}} -m "{{mesaj}}" --gpg-sign` + +- Belirtilen ana commit cismi ile bir commit cismi oluştur: + +`git commit-tree {{ağaç}} -m "{{mesaj}}" -p {{ana_commit_sha}}` diff --git a/pages.tr/common/git-commit.md b/pages.tr/common/git-commit.md new file mode 100644 index 00000000000000..b14153e5e21a81 --- /dev/null +++ b/pages.tr/common/git-commit.md @@ -0,0 +1,20 @@ +# git commit + +> Depoya dosya commit'le. +> Daha fazla bilgi için: . + +- Sahnelenmiş dosyaları belirtilen mesaj ile commit'le: + +`git commit -m {{mesaj}}` + +- Değişiklikleri otomatik olarak sahnele ve mesaj ile commit'le: + +`git commit -a -m {{mesaj}}` + +- Değerini değiştirecek şekilde son commit'i yeni sahnelenmiş değişiklikleri ekleyerek güncelle: + +`git commit --amend` + +- Yalnızca belirtilmiş (halihazırda sahnelenmiş) dosyaları commit'le: + +`git commit {{örnek/dosya1}} {{örnek/dosya2}}` diff --git a/pages.tr/common/git-config.md b/pages.tr/common/git-config.md new file mode 100644 index 00000000000000..f9bb9592e0b810 --- /dev/null +++ b/pages.tr/common/git-config.md @@ -0,0 +1,37 @@ +# git config + +> Git depoları için yazılan kişisel konfigürasyon seçeneklerini yönet. +> Bu konfigürasyonlar lokal (mevcut depo için) veya evrensel (mevcut kullanıcı için) olabilir. +> Daha fazla bilgi için: . + +- Yalnızca (mevcut depodaki `.git/config`'de saklanan) yerel konfigürasyon kayıtlarını sırala: + +`git config --list --local` + +- Yalnızca (bilgisayardaki `~/.gitconfig`'de saklanan) evrensel konfigürasyon kayıtlarını sırala: + +`git config --list --global` + +- Yerel veya evrensel olarak tanımlanan tüm konfigürasyon kayıtlarını sırala: + +`git config --list` + +- Belirtilen bir konfigürasyon kaydının değerini öğren: + +`git config alias.unstage` + +- Belirtilen bir konfigürasyon kaydının evrensel değerini belirle: + +`git config --global alias.unstage "reset HEAD --"` + +- Evrensel bir konfigürasyon kaydını varsayılan değerine geri al: + +`git config --global --unset alias.unstage` + +- Mevcut depodaki Git konfigürasyonunu varsayılan metin düzenleyici ile düzenle: + +`git config --edit` + +- Evrensel Git konfigürasyonunu varsayılan metin düzenleyici ile düzenle: + +`git config --global --edit` diff --git a/pages.tr/common/git-count-objects.md b/pages.tr/common/git-count-objects.md new file mode 100644 index 00000000000000..012e91f953b437 --- /dev/null +++ b/pages.tr/common/git-count-objects.md @@ -0,0 +1,20 @@ +# git count-objects + +> Paketlenmemiş cisimlerin miktarını ve disk tüketimlerini hesapla. +> Daha fazla bilgi için: . + +- Tüm cisimleri say ve toplam disk tüketimlerini görüntüle: + +`git count-objects` + +- Tüm cisimleri say ve toplam disk tüketimlerini insanların okuyabileceği biçimde görüntüle: + +`git count-objects --human-readable` + +- Daha fazla ayrıntı görüntüle: + +`git count-objects --verbose` + +- Daha fazla ayrıntıyı insanların okuyabileceği biçimde görüntüle: + +`git count-objects --human-readable --verbose` diff --git a/pages.tr/common/git-credential.md b/pages.tr/common/git-credential.md new file mode 100644 index 00000000000000..e48bcd7f5057a1 --- /dev/null +++ b/pages.tr/common/git-credential.md @@ -0,0 +1,16 @@ +# git credential + +> Kullanıcı kimlik bilgilerini kurtar ve sakla. +> Daha fazla bilgi için: . + +- Kimlik bilgilerini, kullanıcı ismi ve parolayı konfigürasyon dosyası aracılığıyla kurtararak göster: + +`echo "{{url=http://örnek.com}}" | git credential fill` + +- Kimlik bilgilerini sonra kullanma amacıyla saklamak için bütün yapılandırılmış kimlik yardımcılarına gönder: + +`echo "{{url=http://örnek.com}}" | git credential approve` + +- Belirtilen kimlik bilgisini bütün yapılandırılmış kimlik yardımcılarından temizle: + +`echo "{{url=http://örnek.com}}" | git credential reject` diff --git a/pages.tr/common/git-describe.md b/pages.tr/common/git-describe.md new file mode 100644 index 00000000000000..7366f8f9b83d21 --- /dev/null +++ b/pages.tr/common/git-describe.md @@ -0,0 +1,24 @@ +# git describe + +> Bir nesneye varolan referans üzerinden insanlar tarafından okunabilecek biçimde olan bir isim ver. +> Daha fazla bilgi için: . + +- Mevcut commit için (en son eklenmiş etiket, ilave commit'lerin sayısı ve kısaltılmış commit değerini içeren) özel bir isim oluştur: + +`git describe` + +- Kısaltılmış commit değeri için 4 haneli bir isim oluştur: + +`git describe --abbrev={{4}}` + +- Etiket referans yolu ile bir isim oluştur: + +`git describe --all` + +- Bir Git etiketini açıkla: + +`git describe {{v1.0.0}}` + +- Belirtilen daldaki son commit için bir isim oluştur: + +`git describe {{dal_ismi}}` diff --git a/pages.tr/common/git-diff.md b/pages.tr/common/git-diff.md new file mode 100644 index 00000000000000..43bfaf4e76db26 --- /dev/null +++ b/pages.tr/common/git-diff.md @@ -0,0 +1,36 @@ +# git diff + +> İzlenen dosyalara değişiklikleri göster. +> Daha fazla bilgi için: . + +- Sahnelenmemiş, commit'lenmemiş değişiklikleri göster: + +`git diff` + +- Sahnelenmiş olanlar da dahil olmak üzere tüm commit'lenmemiş değişiklikleri göster: + +`git diff HEAD` + +- Yalnızca sahnelenmiş (eklenmiş ancak commit'lenmemiş) değişiklikleri göster: + +`git diff --staged` + +- Belirtilen bir tarihten itibaren yapılmış tüm commit'lerdeki değişiklikleri göster: + +`git diff 'HEAD@{3 months|weeks|days|hours|seconds ago}'` + +- Belirtilen bir commit'ten itibaren yalnızca üzerinde değişiklik yapılmış dosyaların ismini göster: + +`git diff --name-only {{commit}}` + +- Belirtilen bir commit'ten itibaren yapılmış dosya oluşturma, yeniden adlandırma ve mod değişim işlemlerini göster: + +`git diff --summary {{commit}}` + +- Tek bir dosyayı iki dal veya commit arasında karşılaştır: + +`git diff {{dal_1}}..{{dal_2}} [--] {{örnek/dosya}}` + +- Mevcut daldaki farklı dosyaları başka bir daldakilerle karşılaştır: + +`git diff {{dal}}:{{örnek/dosya2}} {{örnek/dosya}}` diff --git a/pages.tr/common/git-difftool.md b/pages.tr/common/git-difftool.md new file mode 100644 index 00000000000000..5dde623752e269 --- /dev/null +++ b/pages.tr/common/git-difftool.md @@ -0,0 +1,20 @@ +# git difftool + +> Harici diff araçları kullanarak dosya değişimlerini göster. `git diff` ile aynı ayar ve argümanları destekler. +> Daha fazla bilgi için: . + +- Müsait diff araçlarını göster: + +`git difftool --tool-help` + +- Varsayılan diff aracını birleştirmeye ayarla: + +`git config --global diff.tool "{{meld}}"` + +- Varsayılan diff aracını sahnelenmiş değişiklikleri göstermek için kullan: + +`git difftool --staged` + +- Verilen commit'den itibaren yapılmış değişiklikleri göstermek için (opendiff) kullan: + +`git difftool --tool={{opendiff}} {{commit}}` diff --git a/pages.tr/common/git-fetch.md b/pages.tr/common/git-fetch.md new file mode 100644 index 00000000000000..fe0d63399b7c56 --- /dev/null +++ b/pages.tr/common/git-fetch.md @@ -0,0 +1,24 @@ +# git fetch + +> Uzak bir depodaki cisim ve referansları indir. +> Daha fazla bilgi için: . + +- (Eğer belirtildiyse) Uzaktaki varsayılan ana akım depodan son değişiklikleri çek: + +`git fetch` + +- Belirtilen uzak ana akım depodan yeni dalları çek: + +`git fetch {{uzak_bağlantı}}` + +- Uzaktaki tüm ana akım depolardaki son değişiklikleri çek: + +`git fetch --all` + +- Uzaktaki ana akım depodan etiketleri dahi çek: + +`git fetch --tags` + +- Ana akım depodan silinmiş uzak dallara giden yerel referansları sil: + +`git fetch --prune` diff --git a/pages.tr/common/git-flow.md b/pages.tr/common/git-flow.md new file mode 100644 index 00000000000000..9d54fa2dbcdc6d --- /dev/null +++ b/pages.tr/common/git-flow.md @@ -0,0 +1,24 @@ +# git flow + +> Üst seviye depo işlemleri için Git uzantı koleksiyonu. +> Daha fazla bilgi için: . + +- Varolan bir git deposu içinde başlat: + +`git flow init` + +- `develop` tabanlı bir özellik dalı üzerinde geliştirmeye başla: + +`git flow feature start {{özellik}}` + +- Özellik dalı üzerinde geliştirmeyi bitir, `develop` dalı ile birleştir ve dalı sil: + +`git flow feature finish {{özellik}}` + +- Özelliği uzak sunucuya yayınla: + +`git flow feature publish {{özellik}}` + +- Başka bir kullanıcı tarafından yayınlanan özelliği al: + +`git flow feature pull origin {{özellik}}` diff --git a/pages.tr/common/git-format-patch.md b/pages.tr/common/git-format-patch.md new file mode 100644 index 00000000000000..66ad76fa7422e4 --- /dev/null +++ b/pages.tr/common/git-format-patch.md @@ -0,0 +1,17 @@ +# git format-patch + +> `.patch` dosyaları oluştur. Commit'leri e-posta olarak gönderirken işe yarar. +> Ayrıca benzer bir komut olan `git am` sayfasına bakılması önerilir. +> Daha fazla bilgi için: . + +- Gönderilmemiş tüm commit'ler için otomatik olarak adlandırılan bir `.patch` dosyası oluştur: + +`git format-patch {{origin}}` + +- 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}}` + +- Son 3 commit için bit `.patch` dosyası oluştur: + +`git format-patch -{{3}}` diff --git a/pages.tr/common/git-fsck.md b/pages.tr/common/git-fsck.md new file mode 100644 index 00000000000000..d1477495bb8c97 --- /dev/null +++ b/pages.tr/common/git-fsck.md @@ -0,0 +1,17 @@ +# git fsck + +> Git depo indeksindeki düğümlerin geçerliliğini ve bağlantılarını doğrula. +> Düzenleme yapılması tavsiye edilmez. Geçersiz düğümleri çözmek için `git gc` komutu önerilir. +> Daha fazla bilgi için: . + +- Mevcut depoyu kontrol et: + +`git fsck` + +- Bulunan tüm etiketleri sırala: + +`git fsck --tags` + +- Bulunan tüm kök düğümleri sırala: + +`git fsck --root` diff --git a/pages.tr/common/git-gc.md b/pages.tr/common/git-gc.md new file mode 100644 index 00000000000000..98eadb4e4b74b6 --- /dev/null +++ b/pages.tr/common/git-gc.md @@ -0,0 +1,24 @@ +# git gc + +> Gereksiz dosyaları silerek yerel depoyu optimize et. +> Daha fazla bilgi için: . + +- Depoyu optimize et: + +`git gc` + +- Agresifçe optimiize et (daha uzun sürer): + +`git gc --aggressive` + +- Gevşek objeleri kesme (varsayılan olarak keser): + +`git gc --no-prune` + +- Tüm çıktıları sessize al: + +`git gc --quiet` + +- Tam kullanım için yardım göster: + +`git gc --help` diff --git a/pages.tr/common/git-grep.md b/pages.tr/common/git-grep.md new file mode 100644 index 00000000000000..fdef69040e50b2 --- /dev/null +++ b/pages.tr/common/git-grep.md @@ -0,0 +1,25 @@ +# git-grep + +> Belirtilen söz dizisini bir deponun geçmişi dahil tüm dosyalarında ara. +> Sıradan `grep` komutundaki birçok ek bu komut için de aynen geçerlidir. +> Daha fazla bilgi için: . + +- İzlenen dosyalarda belirtilen söz dizisini ara: + +`git grep {{söz_dizisi}}` + +- İzlenen dosyalarda belirtilen desene uygun, belirtilen söz dizisini ara: + +`git grep {{söz_dizisi}} -- {{file_glob_pattern}}` + +- Alt modüller de dahil olmak üzere izlenen dosyalarda belirtilen söz dizisini ara: + +`git grep --recurse-submodules {{söz_dizisi}}` + +- Belirtilen depo geçmişinde belirtilen söz dizisini ara: + +`git grep {{söz_dizisi}} {{HEAD~2}}` + +- Belirtilen söz dizisini tüm dallarda ara: + +`git grep {{söz_dizisi}} $(git rev-list --all)` diff --git a/pages.tr/common/git-help.md b/pages.tr/common/git-help.md new file mode 100644 index 00000000000000..17332923909284 --- /dev/null +++ b/pages.tr/common/git-help.md @@ -0,0 +1,24 @@ +# git help + +> Git hakkında yardım bilgisi görüntüleme aracı. +> Daha fazla bilgi için: . + +- Belirtilmiş Git alt komutu hakkında yardım bilgisi göster: + +`git help {{komut_ismi}}` + +- Belirtilmiş Git alt komutu hakkında yardım bilgisini bir ağ tarayıcısında göster: + +`git help --web {{komut_ismi}}` + +- Tüm mevcut Git alt komutlarını sırala: + +`git help --all` + +- Mevcut rehberleri sırala: + +`git help --guide` + +- Mümkün olan tüm konfigürasyon değişkenlerini sırala: + +`git help --config` diff --git a/pages.tr/common/git-ignore.md b/pages.tr/common/git-ignore.md new file mode 100644 index 00000000000000..408bb8aebf1257 --- /dev/null +++ b/pages.tr/common/git-ignore.md @@ -0,0 +1,12 @@ +# git ignore + +> Önceden belirlenmiş şablonlarla .gitignore dosyaları oluştur. +> Daha fazla bilgi için: . + +- Mevzut şablonları sırala: + +`git ignore list` + +- Bir .gitignore şablonu oluştur: + +`git ignore {{nesne_a,nesne_b,nesne_n}}` diff --git a/pages.tr/common/git-imerge.md b/pages.tr/common/git-imerge.md new file mode 100644 index 00000000000000..72524a7a54a28b --- /dev/null +++ b/pages.tr/common/git-imerge.md @@ -0,0 +1,29 @@ +# git-imerge + +> İki git dalı arasında aşamalı olarak birleştirme veya taban değiştirme işlemlerini uygula. +> Dallar arasındaki uyuşmazlıklar özel commitler ile bölüşülerek uyuşmazlıkları çözmek kolaylaştırılır. +> Daha fazla bilgi için: . + +- imerge bazlı taban değiştirme işlemini başlat (işlemden önce tabanı değiştirilmek istenen dalı kontrol et): + +`git imerge rebase {{yerine_geçilecek_dal}}` + +- imerge bazlı birleştirme işlemini başlat (işlemden önce birleştirilmek istenen dalı kontrol et): + +`git imerge merge {{birleştirilecek_dal}}` + +- Devam eden birleştirme ve taban değiştirme işlemlerinin ASCII diagramını göster: + +`git imerge diagram` + +- Uyuşmazlıkları çözdükten sonra imerge işlemine devam et (önce `git add` komutu ile uyuşmayan dosyaları ekle): + +`git imerge continue --no-edit` + +- Tüm uyuşmazlıklar çözüldükten sonra imerge işlemini sonlandır: + +`git imerge finish` + +- imerge işlemini sonlandır ve belirtilen eski bir dala geri dön: + +`git-imerge remove && git checkout {{eski_dal}}` diff --git a/pages.tr/common/git-init.md b/pages.tr/common/git-init.md new file mode 100644 index 00000000000000..fec643a7ace41c --- /dev/null +++ b/pages.tr/common/git-init.md @@ -0,0 +1,16 @@ +# git init + +> Yeni bir yerel Git deposu başlat. +> Daha fazla bilgi için: . + +- Yeni bir yerel depo başlat: + +`git init` + +- Bir depoyu nesne verileri için SHA256 formatı ile başlat (Git versiyonu 2.29 veya üstü olmalıdır): + +`git init --object-format={{sha256}}` + +- Yalın bir depo başlat: + +`git init --bare` diff --git a/pages.tr/common/git-instaweb.md b/pages.tr/common/git-instaweb.md new file mode 100644 index 00000000000000..5b5aa7fbb18352 --- /dev/null +++ b/pages.tr/common/git-instaweb.md @@ -0,0 +1,32 @@ +# git instaweb + +> gitweb sunucusu başlatmak için yardımcı araç. +> Daha fazla bilgi için: . + +- Mevcut Git deposu için bir gitweb sunucusu başlat: + +`git instaweb --start` + +- Yalnızca yerel ağda başlat: + +`git instaweb --start --local` + +- Belirtilmiş bir port'da başlat: + +`git instaweb --start --port {{1234}}` + +- Belirtilmiş bir http daemon'u kullan: + +`git instaweb --start --httpd {{lighttpd|apache2|mongoose|plackup|webrick}}` + +- Ayrıca bir ağ tarayıcısını otomatik olarak başlat: + +`git instaweb --start --browser` + +- Çalışan mevcut gitweb sunucusunu durdur: + +`git instaweb --stop` + +- Çalışan mevcut gitweb sunucusunu yeniden başlat: + +`git instaweb --restart` diff --git a/pages.tr/common/git-lfs.md b/pages.tr/common/git-lfs.md new file mode 100644 index 00000000000000..6bb76cc4988e66 --- /dev/null +++ b/pages.tr/common/git-lfs.md @@ -0,0 +1,36 @@ +# git lfs + +> Git depolarındaki büyük dosyalarla çalış. +> Daha fazla bilgi için: . + +- Git LFS'i başlat: + +`git lfs install` + +- Belirtilen topağa uygun dosyaları izle: + +`git lfs track '{{*.bin}}'` + +- Git LFS uç nokta URL'sini değiştir (LFS sunucusunun Git sunucusundan ayrı olması durumunda işlevseldir): + +`git config -f .lfsconfig lfs.url {{lfs_uç_nokta_url'si}}` + +- İzlenen kalıpları sırala: + +`git lfs track` + +- Commit'lenmiş izlenen dosyaları sırala: + +`git lfs ls-files` + +- Tğm Git LFS nesnelerini uzak sunucuya gönder (hatayla karşılaşma durumunda faydalıdır): + +`git lfs push --all {{uzak_depo_adresi}} {{dal_ismi}}` + +- Tüm Git LFS nesnelerini çek: + +`git lfs fetch` + +- Tüm Git LFS nesnelerini kontrol et: + +`git lfs checkout` diff --git a/pages.tr/common/git-log.md b/pages.tr/common/git-log.md new file mode 100644 index 00000000000000..c2dab389e2caa7 --- /dev/null +++ b/pages.tr/common/git-log.md @@ -0,0 +1,36 @@ +# git log + +> Commit geçmişini göster. +> Daha fazla bilgi için: . + +- Mevcut olandan başlayarak mevcut çalışma ortamındaki git deposunun commit silsilesini ters kronolojik düzende göster: + +`git log` + +- Belirtilen dosya veya dizinin tarihini farklılıklarla beraber göster: + +`git log -p {{dosya/veya/dizin/konumu}}` + +- Her bir commit'de hangi dosya(lar)ın değiştiğinin önizlemesini göster: + +`git log --stat` + +- Mevcut daldaki commit'lerin mesajlarının ilk satırını içeren bir çizelge göster: + +`git log --oneline --graph` + +- Bir depodaki commit, etiket ve dalların tamamını içeren bir çizelge göster: + +`git log --oneline --decorate --all --graph` + +- Mesajları yalnızca belirtilen ifadeleri içeren commit'leri göster (büyük-küçük harfe duyarsız): + +`git log -i --grep {{aranan_ifade}}` + +- Belirtilmiş yazardan gelen, belirtilen sayıda commit göster: + +`git log -n {{sayı}} --author={{yazar}}` + +- İki tarih arasında yapılmış commit'leri göster: + +`git log --before={{tarih}} --after={{tarih}}` diff --git a/pages.tr/common/git-ls-files.md b/pages.tr/common/git-ls-files.md new file mode 100644 index 00000000000000..463049ab83694b --- /dev/null +++ b/pages.tr/common/git-ls-files.md @@ -0,0 +1,16 @@ +# git ls-files + +> İndex ve mevcut ağaçtaki dosyalar hakkında bilgi göster. +> Daha fazla bilgi için: . + +- Silinen dosyaları göster: + +`git ls-files --deleted` + +- Düzenlenen ve silinen dosyaları göster: + +`git ls-files --modified` + +- Yoksayılmış ve izlenmeyen dosyaları göster: + +`git ls-files --others` diff --git a/pages.tr/common/git-ls-remote.md b/pages.tr/common/git-ls-remote.md new file mode 100644 index 00000000000000..5acb2c9878b48d --- /dev/null +++ b/pages.tr/common/git-ls-remote.md @@ -0,0 +1,25 @@ +# git ls-remote + +> Çevrimiçi depolardaki isim ve URL bazlı referansları sıralamaya yarayan Git komutu. +> İsim veya URL girilmemişse, varsayılan dal veya çevrimiçi dalın kökeni kullanılır. +> Daha fazla bilgi için: . + +- Varsayılan çevrimiçi depodaki tüm referansları göster: + +`git ls-remote` + +- Varsayılan çevrimiçi depodaki yalnızca baş referanslarını göster: + +`git ls-remote --heads` + +- Varsayılan çevrimiçi depodaki yalnızca etiket referanslarını göster: + +`git ls-remote --tags` + +- Girilen isim veya URL'de bulunan çevrimiçi depodaki tüm referansları göster: + +`git ls-remote {{depo_adresi}}` + +- Bir çevrimiçi depodaki referansları belirtilen desene göre göster: + +`git ls-remote {{depo_ismi}} "{{desen}}"` diff --git a/pages.tr/common/git-ls-tree.md b/pages.tr/common/git-ls-tree.md new file mode 100644 index 00000000000000..af8ac20b4ea83a --- /dev/null +++ b/pages.tr/common/git-ls-tree.md @@ -0,0 +1,16 @@ +# git ls-tree + +> Bir ağaç nesnesinin içeriklerini sırala. +> Daha fazla bilgi için: . + +- Bir daldaki ağacın içeriklerini sırala: + +`git ls-tree {{dal_name}}` + +- Bir commit üstündeki ağacın içeriklerini alt ağaçlara ayırarak sırala: + +`git ls-tree -r {{commit_değeri}}` + +- Bir commit üstündeki ağacın yalnızca dosya isimlerini göster: + +`git ls-tree --name-only {{commit_değeri}}` diff --git a/pages.tr/common/git-merge.md b/pages.tr/common/git-merge.md new file mode 100644 index 00000000000000..8d91b01cb665ab --- /dev/null +++ b/pages.tr/common/git-merge.md @@ -0,0 +1,20 @@ +# git merge + +> Dalları birleştir. +> Daha fazla bilgi için: . + +- Mevcut dal ile belirtilen dalı birleştir: + +`git merge {{dal_ismi}}` + +- Birleştirme mesajını düzenle: + +`git merge -e {{dal_ismi}}` + +- Bir dalı birleştir ve birleştirme commit'i oluştur: + +`git merge --no-ff {{dal_ismi}}` + +- Karışıklık durumlarına karşı birleştirme işlemini durdur: + +`git merge --abort` diff --git a/pages.tr/common/git-mergetool.md b/pages.tr/common/git-mergetool.md new file mode 100644 index 00000000000000..3b8a0eb916a831 --- /dev/null +++ b/pages.tr/common/git-mergetool.md @@ -0,0 +1,28 @@ +# git mergetool + +> Birleştirme sırasında yaşanan karışıklıkları çözmek için karışıklık çözücü araçları çalıştırır. +> Daha fazla bilgi için: . + +- Karışıklıkları çözmek için varsayılan birleştirme aracını başlat: + +`git mergetool` + +- Kullanılabilir birleştirme araçlarını sırala: + +`git mergetool --tool-help` + +- Belirtilen birleştirme aracını başlat: + +`git mergetool --tool {{araç_ismi}}` + +- Her birleştirme aracı çağrılışında harekete geçme: + +`git mergetool --no-prompt` + +- Özellikle grafiksel (GUI) birleştirme aracını kullan (merge.guitool değişkenine göz at): + +`git mergetool --gui` + +- Özellikle normal birleştirme aracını kullan (merge.guitool değişkenine göz at): + +`git mergetool --no-gui` diff --git a/pages.tr/common/git-mv.md b/pages.tr/common/git-mv.md new file mode 100644 index 00000000000000..14618f55402c7f --- /dev/null +++ b/pages.tr/common/git-mv.md @@ -0,0 +1,16 @@ +# git mv + +> Dosyaları taşı veya yeniden adlandır ve Git indeksini güncelle. +> Daha fazla bilgi için: . + +- Depo içindeki dosyayı taşı ve bu hareketi sonraki commit'e ekle: + +`git mv {{dosya/konumu}} {{yeni/dosya/konumu}}` + +- Dosyayı yeniden adlandır ve yeniden adlandırma hareketini sonraki commit'e ekle: + +`git mv {{dosya_ismi}} {{yeni_dosya_ismi}}` + +- Eğer varsa belirtilen hedefteki dosyanın üstüne yaz: + +`git mv --force {{dosya}} {{hedef}}` diff --git a/pages.tr/common/git-notes.md b/pages.tr/common/git-notes.md new file mode 100644 index 00000000000000..4458dafaa2b665 --- /dev/null +++ b/pages.tr/common/git-notes.md @@ -0,0 +1,36 @@ +# git notes + +> Nesne notları ekle veya incele. +> Daha fazla bilgi için: . + +- Tüm notları ve bağlı oldukları nesneleri sırala: + +`git notes list` + +- Belirtilen nesneye bağlanan tüm notları sırala (varsayılan HEAD'dedir): + +`git notes list [{{nesne}}]` + +- Belirtilen nesneye bağlanan tüm notları göster (varsayılan HEAD'dedir): + +`git notes show [{{nesne}}]` + +- Belirtilen nesneye bir not ekle (varsayılan metin editörü açılır): + +`git notes append {{nesne}}` + +- Mesajı belirterek belirtilen nesneye bir not ekle: + +`git notes append --message="{{messaj_yazısı}}"` + +- Varolan bir notu düzenle (varsayılan HEAD'dedir): + +`git notes edit [{{nesne}}]` + +- Bir notu bir nesneden öbürüne kopyala: + +`git notes copy {{kaynak_nesne}} {{hedef_nesne}}` + +- Belirtilen nesneye eklenen tüm notları sil: + +`git notes remove {{nesne}}` diff --git a/pages.tr/common/git-pr.md b/pages.tr/common/git-pr.md new file mode 100644 index 00000000000000..9cc3367fd8a1cd --- /dev/null +++ b/pages.tr/common/git-pr.md @@ -0,0 +1,20 @@ +# git pr + +> Github çekme isteklerini (pr) yerelde kontrol et. +> Daha fazla bilgi için: . + +- Belirtilen çekme isteğini kontrol et: + +`git pr {{pr_numarası}}` + +- Belirtilen dış bağlantıdan gelen bir çekme isteğini kontrol et: + +`git pr {{pr_numarası}} {{dış_bağlantı}}` + +- Belirtilen URL'den gelen çekme isteğini kontrol et: + +`git pr {{url}}` + +- Eski çekme isteği dallarını temizle: + +`git pr clean` diff --git a/pages.tr/common/git-prune.md b/pages.tr/common/git-prune.md new file mode 100644 index 00000000000000..dc1330c4b4ed5a --- /dev/null +++ b/pages.tr/common/git-prune.md @@ -0,0 +1,17 @@ +# git prune + +> Nesne veritabanından erişilemeyen tüm nesneleri budamaya yarayan git komutu. +> Bu komut genelde doğrudan kullanılmasa da Git gc tarafından bir iç komut olarak kullanılmaktadır. +> Daha fazla bilgi için: . + +- Git prune tarafından silinebilecek nesneleri onları silmeden raporla: + +`git prune --dry-run` + +- Erişilemeyen nesneleri buda ve stdout'a budanan şeyleri görüntüle: + +`git prune --verbose` + +- Erişilemeyen nesneleri budarken ilerlemeyi göster: + +`git prune --progress` diff --git a/pages.tr/common/git-pull.md b/pages.tr/common/git-pull.md new file mode 100644 index 00000000000000..d0e8990003f3c1 --- /dev/null +++ b/pages.tr/common/git-pull.md @@ -0,0 +1,16 @@ +# git pull + +> Uzak bir depodan dal getir ve yerel depo ile birleştir. +> Daha fazla bilgi için: . + +- Varsayılan uzak depodan değişiklikleri indir ve birleştir: + +`git pull` + +- Varsayılan uzak depodan değişiklikleri indir ve ileri sarmayı kullan: + +`git pull --rebase` + +- Belirtilen uzak depodan ve daldan değişiklikleri indir, ve sonra onları HEAD ile birleştir: + +`git pull {{uzak_bağlantı}} {{dal}}` diff --git a/pages.tr/common/git-push.md b/pages.tr/common/git-push.md new file mode 100644 index 00000000000000..b371266f323e77 --- /dev/null +++ b/pages.tr/common/git-push.md @@ -0,0 +1,32 @@ +# git push + +> Commit'leri uzak depoya yolla. +> Daha fazla bilgi için: . + +- Mevcut daldaki yerel değişiklikleri onun uzak eşine gönder: + +`git push` + +- Belirtilen daldaki yerel değişiklikleri onun uzak eşine gönder: + +`git push {{uzak_bağlantı}} {{yerel_dal}}` + +- Mevcut dalı bir uzak dal ismi ayarlayarak uzak depoda yayınla: + +`git push {{uzak_bağlantı}} -u {{uzak_dal}}` + +- Yerel dallardaki tüm değişiklikleri onların belirtilen uzak depodaki uzak eşlerine gönder: + +`git push --all {{uzak_bağlantı}}` + +- Uzak depodaki bir dalı sil: + +`git push {{uzak_bağlantı}} --delete {{uzak_dal}}` + +- Yerel eşi olmayan uzak dalları sil: + +`git push --prune {{uzak_bağlantı}}` + +- Daha yzak depoda olmayan etiketleri yayınla: + +`git push --tags` diff --git a/pages.tr/common/git-rebase.md b/pages.tr/common/git-rebase.md new file mode 100644 index 00000000000000..90b0e8c2f0dc98 --- /dev/null +++ b/pages.tr/common/git-rebase.md @@ -0,0 +1,37 @@ +# git rebase + +> Bir daldan başka bir dalın üstüne commit'leri tekrar temeller. +> Sıklıkla bir dalı commit'leriyle beraber başka bir tabana "taşımak" için kullanılır. +> Daha fazla bilgi için: . + +- Mevcut dalı belirtilen öbür dal üzerine temelle: + +`git rebase {{yeni_taban_dal}}` + +- Commit'lerin sıralanması, çıkartılması, birleştirilmesi veya modifiye edilmesine izin vermek için tekrar temellemeyi etkileşimli olacak şekilde başlat: + +`git rebase -i {{hedef_taban_dalı_veya_commit_değeri}}` + +- Bir birleştirme hatası tarafından durdurulan tekrar temelleme işlemini çekişen dosyaları düzenledikten sonra devam ettir: + +`git rebase --continue` + +- Birleştirme çatışmasından ötürü durdurulan tekrar temelleme işlemini çekişen commit'leri atlayarak devam ettir: + +`git rebase --skip` + +- Devam eden tekrar temelleme işlemini iptal et (örneğin birleştirmede çatışma yaşandığında): + +`git rebase --abort` + +- Mevcut dalın bir parçasını belirtilen eski tabandan yeni tabana taşı: + +`git rebase --onto {{yeni_taban}} {{eski_taban}}` + +- Son 3 commit'i etkileşimli olmayacak şekilde yeniden uygula: + +`git rebase -i {{HEAD~5}}` + +- Herhangi bir çatışmayı çalışan dal sürümünü kurtarmak üzere otomatik olarak çöz (`theirs` argümanı burada ters anlama sahip): + +`git rebase -X theirs {{dal_ismi}}` diff --git a/pages.tr/common/git-reflog.md b/pages.tr/common/git-reflog.md new file mode 100644 index 00000000000000..2b2129115daf51 --- /dev/null +++ b/pages.tr/common/git-reflog.md @@ -0,0 +1,16 @@ +# git reflog + +> HEAD, dal ve etiketler gibi yerel referansların geçirdiği değişimlerin kaydını göster. +> Daha fazla bilgi için: . + +- HEAD için referans kaydını göster: + +`git reflog` + +- Belirtilen dal için referans kaydını göster: + +`git reflog {{dal_ismi}}` + +- Referans kaydında sadece son 5 değişimi göster: + +`git reflog -n {{5}}` diff --git a/pages.tr/common/git-remote.md b/pages.tr/common/git-remote.md new file mode 100644 index 00000000000000..c6af2b30ea74b7 --- /dev/null +++ b/pages.tr/common/git-remote.md @@ -0,0 +1,28 @@ +# git remote + +> İzlenen depolar dizisini (uzak bağlantıları) yönet. +> Daha fazla bilgi için: . + +- Varolan uzak bağlantıların isim ve URL'leriyle bir listesini göster: + +`git remote -v` + +- Uzak bağlantı ile ilgili bilgi göster: + +`git remote show {{uzak_bağlantı_ismi}}` + +- Uzak bağlantı ekle: + +`git remote add {{uzak_bağlantı_ismi}} {{uzak_bağlantı_url'si}}` + +- Uzak bağlantının URL'sini değiştir: + +`git remote set-url {{uzak_bağlantı_ismi}} {{yeni_url}}` + +- Uzak bağlantıyı sil: + +`git remote remove {{uzak_bağlantı_ismi}}` + +- Uzak bağlantıyı yeniden adlandır: + +`git remote rename {{eski_isim}} {{yeni_isim}}` diff --git a/pages.tr/common/git-repack.md b/pages.tr/common/git-repack.md new file mode 100644 index 00000000000000..4ce4376e5f3eca --- /dev/null +++ b/pages.tr/common/git-repack.md @@ -0,0 +1,12 @@ +# git repack + +> Bir Git deposundaki paketlenmemiş nesneleri paketle. +> Daha fazla bilgi için: . + +- Mevcut dizindeki paketlenmemiş nesneleri paketle: + +`git repack` + +- Paketlemeden sonra gereksiz nesneleri sil: + +`git repack -d` diff --git a/pages.tr/common/git-replace.md b/pages.tr/common/git-replace.md new file mode 100644 index 00000000000000..8c532f56c45aa8 --- /dev/null +++ b/pages.tr/common/git-replace.md @@ -0,0 +1,16 @@ +# git replace + +> Nesnelerin yerini değiştirmek için referans oluştur, sırala ve sil. +> Daha fazla bilgi için: . + +- Öbür commit'lere dokunmadan bir commit'in başka bir commit ile yerini değiştir: + +`git replace {{nesne}} {{yer_değiştirme}}` + +- Belirtilen nesnede varolan yer değiştirme referanslarını sil: + +`git replace --delete {{nesne}}` + +- Bir nesnenin içeriğini etkileşimli olarak düzenle: + +`git replace --edit {{nesne}}` diff --git a/pages.tr/common/git-request-pull.md b/pages.tr/common/git-request-pull.md new file mode 100644 index 00000000000000..333258c10dca81 --- /dev/null +++ b/pages.tr/common/git-request-pull.md @@ -0,0 +1,12 @@ +# git request-pull + +> Ana projeye yerelde yapılan değişiklikleri kendi ağacına çekmesini sormak için izin hazırla. +> Daha fazla bilgi için: . + +- v1.1 sürümü ve belirtilen dal arasındaki değişiklikleri özetleyen bir izin üret: + +`git request-pull {{v1.1}} {{https://ornek.com/proje}} {{dal_ismi}}` + +- `foo` dalındaki v0.1 sürümü ile yereldeki `bar` dalları arasındaki değişiklikleri özetleyen bir izin üret: + +`git request-pull {{v0.1}} {{https://ornek.com/proje}} {{foo:bar}}` diff --git a/pages.tr/common/git-reset.md b/pages.tr/common/git-reset.md new file mode 100644 index 00000000000000..238fe01dda0de3 --- /dev/null +++ b/pages.tr/common/git-reset.md @@ -0,0 +1,33 @@ +# git reset + +> Mevcut Git HEAD'ini belirtilen duruma sıfırlayarak commit'leri veya değişiklikleri geri al. +> Eğer bir konum verildiye o konumdaki değişiklikler "geri alınır"; eğer bir commit değeri veya dal verildiyse o commit/dal "geri alınır". +> Daha fazla bilgi için: . + +- Her şeyi geri al: + +`git reset` + +- Belirtilen dosya(lar)ı geri al: + +`git reset {{dosya(ların)/konumu}}` + +- Bir dosyanın kısımlarını geri al:: + +`git reset -p {{dosya/konumu}}` + +- Son commit'i, dosya sisteminde yapılan değişiklikleri geri almadan geri al: + +`git reset HEAD~` + +- Son iki commit'i onların indeks'e yaptığı değişiklikleri ekleyerek geri al: + +`git reset --soft HEAD~2` + +- Commit'lenmemiş değişiklikleri sahnelenip sahnelenmediklerine bakmaksızın iptal et (sadece sahnelenmemiş değişiklikleri iptal etmek için `git checkout` kullanılır): + +`git reset --hard` + +- Depoyu belirtilen commit'e o zamana kadar yapılan değişiklikleri iptal ederek sıfırla: + +`git reset --hard {{commit}}` diff --git a/pages.tr/common/git-restore.md b/pages.tr/common/git-restore.md new file mode 100644 index 00000000000000..35d014b5da3d7b --- /dev/null +++ b/pages.tr/common/git-restore.md @@ -0,0 +1,33 @@ +# git restore + +> Çalışan ağaç dosyalarını onar. Git sürümü 2.23+ olmalıdır. +> `git checkout` ve `git reset` komutlarına da ayrıca bakılması tavsiye edilir. +> Daha fazla bilgi için: . + +- Sahnelenmemiş bir dosyayı mevcut commit'in sürümüne kavuştur: + +`git restore {{dosya/konumu}}` + +- Sahnelenmemiş bir dosyayı belirtilen commit'in sürümüne kavuştur: + +`git restore --source {{commit}} {{dosya/konumu}}` + +- İzlenen dosyalardaki sahnelenmemiş tüm değişiklikleri iptal et: + +`git restore :/` + +- Bir dosyayı sahnelenmemiş hale getir: + +`git restore --staged {{dosya/konumu}}` + +- Tüm dosyaları sahnelenmemiş hale getir: + +`git restore --staged :/` + +- Dosyalara yapılan sahnelenmiş veya sahnelenmemiş tüm değişiklikleri iptal et: + +`git restore --worktree --staged :/` + +- Onarılacak dosya parçalarını etkileşimli olarak seç: + +`git restore --patch` diff --git a/pages.tr/common/git-rev-list.md b/pages.tr/common/git-rev-list.md new file mode 100644 index 00000000000000..7ff0cde5f29636 --- /dev/null +++ b/pages.tr/common/git-rev-list.md @@ -0,0 +1,20 @@ +# git rev-list + +> Değişiklikleri (commit'leri) ters kronolojik sırada sırala. +> Daha fazla bilgi için: . + +- Mevcut daldaki tüm commit'leri sırala: + +`git rev-list {{HEAD}}` + +- Belirtilen daldaki belirtilen tarihten daha yakın olan commit'leri sırala: + +`git rev-list --since={{'2019-12-01 00:00:00'}} {{dal_ismi}}` + +- Belirtilen commit'deki tüm birleştirme commit'lerini sırala: + +`git rev-list --merges {{commit}}` + +- Belirtilen etiketten itibaren olan commit sayılarını çıkar: + +`git rev-list {{tag_name}}..HEAD --count` diff --git a/pages.tr/common/git-rev-parse.md b/pages.tr/common/git-rev-parse.md new file mode 100644 index 00000000000000..3fe7f2a2eb55c2 --- /dev/null +++ b/pages.tr/common/git-rev-parse.md @@ -0,0 +1,16 @@ +# git rev-parse + +> Belirtilen sürümler için metaveri görüntüle. +> Daha fazla bilgi için: . + +- Bir dalın commit verisini göster: + +`git rev-parse {{dal_ismi}}` + +- Mevcut dal ismini göster: + +`git rev-parse --abbrev-ref {{HEAD}}` + +- Kök dizinin mutlak konumunu göster: + +`git rev-parse --show-toplevel` diff --git a/pages.tr/common/git-revert.md b/pages.tr/common/git-revert.md new file mode 100644 index 00000000000000..5fde6d6d547c89 --- /dev/null +++ b/pages.tr/common/git-revert.md @@ -0,0 +1,20 @@ +# git revert + +> Öncekilerin etkilerini geri alan yeni bir commit oluştur. +> Daha fazla bilgi için: . + +- En son commit'leri geri al: + +`git revert {{@}}` + +- En son 5. commit'i geri al: + +`git revert HEAD~{{4}}` + +- Birden fazla commit'i geri al: + +`git revert {{dal_ismi~5..dal_ismi~2}}` + +- Yeni commit'ler oluşturma, yalnızca çalışan ağacı değiştir: + +`git revert -n {{0c01a9..9a1743}}` diff --git a/pages.tr/common/git-rm.md b/pages.tr/common/git-rm.md new file mode 100644 index 00000000000000..d51c5800bee8a4 --- /dev/null +++ b/pages.tr/common/git-rm.md @@ -0,0 +1,16 @@ +# git rm + +> Dosyaları dizin indeksinden ve yerel dosya sisteminden sil. +> Daha fazla bilgi için: . + +- Dosyayı dizin indeksinden ve dosya sisteminden sil: + +`git rm {{dosya}}` + +- Dizini sil: + +`git rm -r {{dizin}}` + +- Dizin indeksinden dosyayı sil lakin yerelde dosyaya dokunma: + +`git rm --cached {{dosya}}` diff --git a/pages.tr/common/git-send-email.md b/pages.tr/common/git-send-email.md new file mode 100644 index 00000000000000..99e12d267648fd --- /dev/null +++ b/pages.tr/common/git-send-email.md @@ -0,0 +1,25 @@ +# git send-email + +> Bir yama koleksiyonunu e-posta olarak gönder. +> Yamalar dosya, dizin veya sürüm listesi olarak tanımlanabilir. +> Daha fazla bilgi için: . + +- Mevcut dizindeki son commit'i gönder: + +`git send-email -1` + +- Belirtilen commit'i gönder: + +`git send-email -1 {{commit}}` + +- Mevcut dizindeki belirtilen sayı kadar (örneğin 10) commit'i gönder: + +`git send-email {{-10}}` + +- Gönderilecek yama serisi için bir giriş e-posta mesajı gönder: + +`git send-email -{{commits_sayı}} --compose` + +- Gönderilecek her bir yama için e-posta mesajını görüntüle ve düzenle: + +`git send-email -{{commits_sayı}} --annotate` diff --git a/pages.tr/common/git-shortlog.md b/pages.tr/common/git-shortlog.md new file mode 100644 index 00000000000000..ebefb423529fb1 --- /dev/null +++ b/pages.tr/common/git-shortlog.md @@ -0,0 +1,28 @@ +# git shortlog + +> 'git log' çıktısını özetle. +> Daha fazla bilgi için: . + +- Yapılan tüm commit'lerin yazar ismiyle alfabetik olarak guruplanmış özetini göster: + +`git shortlog` + +- Yapılan tüm commit'lerin en çok commit yapan yazar ismi en üstte olacak şekilde özetini göster: + +`git shortlog -n` + +- Yapılan tüm commit'lerin yazar bilgilerini (isim ve e-posta) gösterecek şekilde özetini göster: + +`git shortlog -c` + +- En son yapılan 5 commit'in özetini göster (sürüm aralığı belirt): + +`git shortlog HEAD~{{5}}..HEAD` + +- Mevcut daldaki tüm kullanıcıları, e-postalarını ve yaptıkları commit sayısını göster: + +`git shortlog -sne` + +- Tüm dallardaki tüm kullanıcıları, e-postalarını ve yaptıkları commit sayısını göster: + +`git shortlog -sne --all` diff --git a/pages.tr/common/git-show-branch.md b/pages.tr/common/git-show-branch.md new file mode 100644 index 00000000000000..aaca6be0708adb --- /dev/null +++ b/pages.tr/common/git-show-branch.md @@ -0,0 +1,36 @@ +# git show-branch + +> Dalları ve içerdikleri commit'leri göster. +> Daha fazla bilgi için: . + +- Bir daldaki son commit'lerin bir özetini göster: + +`git show-branch {{dal_ismi|referans|commit}}` + +- Çeşitli commit veya daldaki commit'lerin geçmişini karşılaştır: + +`git show-branch {{dal_ismi|referans|commit}}` + +- Tüm uzak takip dallarını karşılaştır: + +`git show-branch --remotes` + +- Hem yerel, hem de uzak takip dallarını karşılaştır: + +`git show-branch --all` + +- Tüm dallardaki son commit'leri sırala: + +`git show-branch --all --list` + +- Belirtilen dalı mevcut dal ile karşılaştır: + +`git show-branch --current {{commit|dal_ismi|referans}}` + +- Bağlı isim yerine commit ismini görüntüle: + +`git show-branch --sha1-name --current {{current|dal_ismi|referans}}` + +- Commit'lerin ortak atasından sonraki commit'leri belirtilen sayı kadar görüntüle: + +`git show-branch --more {{5}} {{commit|dal_ismi|referans}} {{commit|dal_ismi|referans}} {{...}}` diff --git a/pages.tr/common/git-show-ref.md b/pages.tr/common/git-show-ref.md new file mode 100644 index 00000000000000..ee88682aec4ade --- /dev/null +++ b/pages.tr/common/git-show-ref.md @@ -0,0 +1,20 @@ +# git show-ref + +> Referans sıralamak için git komutu. +> Daha fazla bilgi için: . + +- Depodaki tüm referansları göster: + +`git show-ref` + +- Yalnızca kafa referanslarını göster: + +`git show-ref --heads` + +- Yalnızca etiket referanslarını göster: + +`git show-ref --tags` + +- Belirtilen referansın varolduğunu doğrula: + +`git show-ref --verify {{referans/konumu}}` diff --git a/pages.tr/common/git-show.md b/pages.tr/common/git-show.md new file mode 100644 index 00000000000000..a39f5d689b2479 --- /dev/null +++ b/pages.tr/common/git-show.md @@ -0,0 +1,36 @@ +# git show + +> Çeşitli Git nesnelerini (commit'ler, etiketler vs.) görüntüle. +> Daha fazla bilgi için: . + +- Son commit'e dair bilgi (değer, mesaj, değişimler ve öbür metaveriler) göster: + +`git show` + +- Belirtilen commit'e dair bilgi göster: + +`git show {{commit}}` + +- Belirtilen etiket ile özleşen commit'e dair bilgi göster: + +`git show {{tag}}` + +- Dalın HEAD'indeki 3. commit'e dair bilgi göster: + +`git show {{dal}}~{{3}}` + +- Commit'in mesajını diff çıktısını önleyerek tek satırda göster: + +`git show --oneline -s {{commit}}` + +- Yalnızca değiştirilen dosyalarla ilgili istatistik (eklenen/silinen karakterler) göster: + +`git show --stat {{commit}}` + +- Yalnızca eklenen, yeniden adlandırılan veya silinen dosyaların listesini göster: + +`git show --summary {{commit}}` + +- Bir dosyanın belirtilen sürümdeki (örneğin dal, etiket veya commit) içeriğini göster: + +`git show {{sürüm}}:{{dosya/konumu}}` diff --git a/pages.tr/common/git-sizer.md b/pages.tr/common/git-sizer.md new file mode 100644 index 00000000000000..568454c47b35b6 --- /dev/null +++ b/pages.tr/common/git-sizer.md @@ -0,0 +1,16 @@ +# git sizer + +> Git depo boyut metriklerini hesaplar ve problem veya rahatsızlığa sebep olabilecek boyutlarda uyarı verir. +> Daha fazla bilgi için: . + +- 0'dan büyük önem içeren istatistikleri raporla: + +`git sizer` + +- Tüm istatistikleri raporla: + +`git sizer -v` + +- İlave seçenekleri gör: + +`git sizer -h` diff --git a/pages.tr/common/git-stage.md b/pages.tr/common/git-stage.md new file mode 100644 index 00000000000000..2a8434328fde93 --- /dev/null +++ b/pages.tr/common/git-stage.md @@ -0,0 +1,33 @@ +# git stage + +> Değiştirilmiş dosyaları indekse ekle. +> Bu komut `git add`'in eş anlamlısıdır. +> Daha fazla bilgi için: . + +- İndekse bir dosya ekle: + +`git stage {{örnek/dosya}}` + +- Tüm (izlenen veya izlenmeyen) dosyaları ekle: + +`git stage -A` + +- Yalnızca izlenen dosyaları ekle: + +`git stage -u` + +- Yoksayılan dosyaları dahi ekle: + +`git stage -f` + +- Dosyaların parçalarını etkileşimli olarak sahnele: + +`git stage -p` + +- Belirtilen dosyaların parçalarını etkileşimli olarak sahnele: + +`git stage -p {{örnek/dosya}}` + +- Bir dosyayı etkileşimli olarak sahnele: + +`git stage -i` diff --git a/pages.tr/common/git-stash.md b/pages.tr/common/git-stash.md new file mode 100644 index 00000000000000..67f6d3d6764750 --- /dev/null +++ b/pages.tr/common/git-stash.md @@ -0,0 +1,36 @@ +# git stash + +> Yerel Git düzenlemelerini geçici bir alanda sakla. +> Daha fazla bilgi için: . + +- Yeni (izlenmeyen) dosyalar hariç mevcut değişiklikleri sakla: + +`git stash [push -m {{keyfi_saklama_mesajı}}]` + +- Yeni (izlenmeyen) dosyalar dahil mevcut değişiklikleri sakla: + +`git stash -u` + +- Değiştirilen dosyaların parçalarını etkileşimli şekilde seçip sakla: + +`git stash -p` + +- Tüm saklananları göster (saklanan ismi, bağlı olduğu dal ve mesaj gösterilir): + +`git stash list` + +- Bir saklananı uygula (varsayılan son saklanandır ve stash@{0} olarak belirtilir): + +`git stash apply {{keyfi_saklanan_veya_commit_ismi}}` + +- Bir saklananı uygula (varsayılan stash@{0}), ve eğer uygulanması sıkıntı çıkarmıyorsa onu saklanan listesinden kaldır: + +`git stash pop {{keyfi_saklanan_ismi}}` + +- Bir saklananı bırak (varsayılan stash@{0}): + +`git stash drop {{keyfi_saklanan_ismi}}` + +- Tüm saklananları bırak: + +`git stash clear` diff --git a/pages.tr/common/git-status.md b/pages.tr/common/git-status.md new file mode 100644 index 00000000000000..44f9cc3dbce35c --- /dev/null +++ b/pages.tr/common/git-status.md @@ -0,0 +1,21 @@ +# git status + +> Bir git deposundaki dosyalara yapılan değişiklikleri göster. +> Mevcut commit'e kıyasla değiştirilen, eklenen ve silinen dosyaları sıralar. +> Daha fazla bilgi için: . + +- Daha commit'e eklenmemiş değiştirilen dosyaları göster: + +`git status` + +- Çıktıyı özetlenmiş şekilde göster: + +`git status -s` + +- Çıktıda izlenmeyen dosyaları gösterme: + +`git status --untracked-files=no` + +- Çıktıyı özetlenmiş şekilde dal bilgisiyle beraber göster: + +`git status -sb` diff --git a/pages.tr/common/git-stripspace.md b/pages.tr/common/git-stripspace.md new file mode 100644 index 00000000000000..7cc780c0fe3bbc --- /dev/null +++ b/pages.tr/common/git-stripspace.md @@ -0,0 +1,16 @@ +# git stripspace + +> Gereksiz boşlukları sil. +> Daha fazla bilgi için: . + +- Gereksiz boşlukları dosyadan kırp: + +`cat {{örnek/dosya}} | git stripspace` + +- Gereksiz boşlukları ve Git yorumlarını dosyadan kırp: + +`cat {{örnek/dosya}} | git stripspace --strip-comments` + +- Bir dosyadaki tüm satırları Git yorumlarına çevir: + +`git stripspace --comment-lines < {{örnek/dosya}}` diff --git a/pages.tr/common/git-submodule.md b/pages.tr/common/git-submodule.md new file mode 100644 index 00000000000000..273b4210811ff3 --- /dev/null +++ b/pages.tr/common/git-submodule.md @@ -0,0 +1,20 @@ +# git submodule + +> Alt modülleri incele, güncelle ve yönet. +> Daha fazla bilgi için: . + +- Deponun belirtilen alt modüllerini indir: + +`git submodule update --init --recursive` + +- Bir Git deposunu alt modül olarak ekle: + +`git submodule add {{depo_url'si}}` + +- Bir Git deposunu alt modül olarak belirtilen dizinde ekle: + +`git submodule add {{depo_url'si}} {{dizin/konumu}}` + +- Tüm alt modülleri son commit'lerine güncelle: + +`git submodule foreach git pull` diff --git a/pages.tr/common/git-subtree.md b/pages.tr/common/git-subtree.md new file mode 100644 index 00000000000000..025f11d36c8b55 --- /dev/null +++ b/pages.tr/common/git-subtree.md @@ -0,0 +1,24 @@ +# git subtree + +> Proje bağımlılıklarını alt proje olarak yönetmeye yarayan bir araç. +> Daha fazla bilgi için: . + +- Bir Git deposunu alt ağaç olarak ekle: + +`git subtree add --prefix={{dizin/konumu}} --squash {{depo_url'si}} {{dal_ismi}}` + +- Alt ağaç deposunu son commit'ine güncelle: + +`git subtree pull --prefix={{dizin/konumu}} {{depo_url'si}} {{dal_ismi}}` + +- Son alt ağaca kadar olan değişiklikleri alt ağaca commit'le: + +`git subtree merge --prefix={{dizin/konumu}}} --squash {{depo_url'si}} {{dal_ismi}}` + +- Commit'leri bir alt ağaç deposuna yolla: + +`git subtree push --prefix={{dizin/konumu}}} {{depo_url'si}} {{dal_ismi}}` + +- Bir alt ağacın geçmişinden yeni bir proje geçmişi dışa aktar: + +`git subtree split --prefix={{dizin/konumu}}} {{depo_url'si}} -b {{dal_ismi}}` diff --git a/pages.tr/common/git-svn.md b/pages.tr/common/git-svn.md new file mode 100644 index 00000000000000..44d6dc5ffab154 --- /dev/null +++ b/pages.tr/common/git-svn.md @@ -0,0 +1,24 @@ +# git svn + +> Bir alt sürüm deposu ve Git arasında çift yönlü operasyon. +> Daha fazla bilgi için: . + +- Bit SVN deposunu klonla: + +`git svn clone {{https://ornek.com/altsürüm_deposu}} {{yerel_dizin}}` + +- Bir SVN deposunu belirtilen düzenleme numarasından başlayarak klonla: + +`git svn clone -r{{1234}}:HEAD {{https://svn.ornek.net/altsürüm/depo}} {{yerel_dizin}}` + +- Uzak SVN deposundan yerel klonu güncelle: + +`git svn rebase` + +- Git HEAD'i değiştirmeden uzak SVN deposundan güncellemeleri çek: + +`git svn fetch` + +- SVN deposuna geri commit'le: + +`git svn dcommit` diff --git a/pages.tr/common/git-switch.md b/pages.tr/common/git-switch.md new file mode 100644 index 00000000000000..b30c7c5a239ebf --- /dev/null +++ b/pages.tr/common/git-switch.md @@ -0,0 +1,29 @@ +# git switch + +> Git dalları arasında geçiş yap. Gir sürümü 2.23+ olmalıdır. +> Ayrıca benzer işlev gören `git checkout` komutuna bakılması önerilir. +> Daha fazla bilgi için: . + +- Varolan bir dala geç: + +`git switch {{dal_ismi}}` + +- Yeni bir dal yarat ve ona geç: + +`git switch --create {{dal_ismi}}` + +- Varolan commit üzerine yeni bir dal yarat ve ona geç: + +`git switch --create {{dal_ismi}} {{commit}}` + +- Önceki dala geç: + +`git switch -` + +- Bir dala geç ve tüm alt modülleri uyum için güncelle: + +`git switch --recurse-submodules {{dal_ismi}}` + +- Bir dala geç ve mevcut dal ile commit'lenmeyen değişiklikleri bu dal ile birleştir: + +`git switch --merge {{dal_ismi}}` diff --git a/pages.tr/common/git-tag.md b/pages.tr/common/git-tag.md new file mode 100644 index 00000000000000..394e7d4d6e715a --- /dev/null +++ b/pages.tr/common/git-tag.md @@ -0,0 +1,33 @@ +# git tag + +> Etiketleri oluştur, sırala, sil veya doğrula. +> Bir etiket, belirtilmiş bir commit'e bağlı statik bir referanstır. +> Daha fazla bilgi için: . + +- Tüm etiketleri sırala: + +`git tag` + +- Belirtilen isim ile mevcut commit'e bağlı bir etiket yarat: + +`git tag {{etiket_ismi}}` + +- Belirtilen isim ile belirtilen commit'e bağlı bir etiket yarat: + +`git tag {{etiket_ismi}} {{commit}}` + +- Belirtilen mesaja sahip açıklamalı bir etiket yarat: + +`git tag {{etiket_ismi}} -m {{etiket_mesajı}}` + +- Belirtilen isimdeki etiketi sil: + +`git tag -d {{etiket_ismi}}` + +- Ana projeden güncellenmiş etiketleri al: + +`git fetch --tags` + +- Belirtilen commit'i içeren/içermiş tüm etiketleri sırala: + +`git tag --contains {{commit}}` diff --git a/pages.tr/common/git-update-index.md b/pages.tr/common/git-update-index.md new file mode 100644 index 00000000000000..82453575ca7d1b --- /dev/null +++ b/pages.tr/common/git-update-index.md @@ -0,0 +1,8 @@ +# git update-index + +> İndeksi manipüle etmeye yarayan bir Git komutu. +> Daha fazla bilgi için: . + +- Düzenlenmiş bir dosya değiştirilmemiş gibi davran (`git status` bunu değişmiş gibi göstermeyecek): + +`git update-index --skip-worktree {{örnek/düzenlenen_dosya}}` diff --git a/pages.tr/common/git-update-ref.md b/pages.tr/common/git-update-ref.md new file mode 100644 index 00000000000000..72328128fbf329 --- /dev/null +++ b/pages.tr/common/git-update-ref.md @@ -0,0 +1,12 @@ +# git update-ref + +> Git referanslarını yaratmak, güncellemek ve silmeye yarayan bir Git komutu. +> Daha fazla bilgi için: . + +- Bir referansı sil (ilk commit'i hafifçe sıfırlamaya yarar): + +`git update-ref -d {{HEAD}}` + +- Referansı bir mesaj ile güncelle: + +`git update-ref -m {{mesaj}} {{HEAD}} {{4e95e05}}` diff --git a/pages.tr/common/git-var.md b/pages.tr/common/git-var.md new file mode 100644 index 00000000000000..9e87fff8545ac0 --- /dev/null +++ b/pages.tr/common/git-var.md @@ -0,0 +1,13 @@ +# git var + +> Bir Git mantıksal değişkeninin değerini yazdırır. +> Ayrıca bu komuttan daha çok tercih edilen `git config`'e bakılması önerilir. +> Daha fazla bilgi için: . + +- Yerel bir Git mantıksal değişkeninin değerini yazdır: + +`git var {{GIT_AUTHOR_IDENT|GIT_COMMITTER_IDENT|GIT_EDITOR|GIT_PAGER}}` + +- Tüm Git mantıksal değerlerini sırala: + +`git var -l` diff --git a/pages.tr/common/git-worktree.md b/pages.tr/common/git-worktree.md new file mode 100644 index 00000000000000..380ef8cea09858 --- /dev/null +++ b/pages.tr/common/git-worktree.md @@ -0,0 +1,20 @@ +# git worktree + +> Aynı depoya bağlı çoklu çalışan ağaçları yönet. +> Daha fazla bilgi için: . + +- Belirtilen dala sahip yeni bir dizin yarat: + +`git worktree add {{örnek/dizin}} {{dal}}` + +- Yeni bir dala sahip yeni bir dizin yarat: + +`git worktree add {{örnek/dizin}} -b {{yeni_dal}}` + +- Bu depoya bağlı tüm çalışan dizinleri sırala: + +`git worktree list` + +- Bir çalışma ağacını (çalışma ağacı dizinini sildikten sonra) kaldır: + +`git worktree prune` diff --git a/pages.tr/common/git.md b/pages.tr/common/git.md new file mode 100644 index 00000000000000..3f44b9e67f036d --- /dev/null +++ b/pages.tr/common/git.md @@ -0,0 +1,28 @@ +# git + +> Dağıtım sürüö kontrol sistemi. +> Daha fazla bilgi için: . + +- Git sürümünü kontrol et: + +`git --version` + +- Genel yardım sayfasını görüntüle: + +`git --help` + +- Bir Git alt komutu (`commit`, `log` gibi) için yardım sayfasını görüntüle: + +`git help {{alt_komut}}` + +- Bit Git alt komutunu çalıştır: + +`git {{alt_komut}}` + +- Bit Git alt komutunu belirtilen depoda çalıştır: + +`git -C {{örnek/depo}} {{alt_komut}}` + +- Bir Git alt komutunu belirtilen biçimlendirmeye uygun olarak çalıştır: + +`git -c '{{config.key}}={{değer}}' {{alt_komut}}` diff --git a/pages.tr/common/github-label-sync.md b/pages.tr/common/github-label-sync.md new file mode 100644 index 00000000000000..f4181617975c2e --- /dev/null +++ b/pages.tr/common/github-label-sync.md @@ -0,0 +1,24 @@ +# github-label-sync + +> GitHub etiketlerini senkronize etmeye yarayan komut satırı arayüzü. +> Daha fazla bilgi için: . + +- Yerel bir `labels.json` dosyası kullanarak etiketleri senkronize et: + +`github-label-sync --access-token {{token}} {{depo_ismi}}` + +- Belirli bir etiketlenen JSON dosyası kullanarak etiketleri senkronize et: + +`github-label-sync --access-token {{token}} --labels {{url|örnek/json_dosyası}} {{depo_ismi}}` + +- Programı etiketleri gerçekten senkronize etmeden çalıştır: + +`github-label-sync --access-token {{token}} --dry-run {{depo_ismi}}` + +- `labels.json` içinde olmayan etiketleri sakla: + +`github-label-sync --access-token {{token}} --allow-added-labels {{depo_ismi}}` + +- `GITHUB_ACCESS_TOKEN` ortam değişkenini kullanarak senkronize et: + +`github-label-sync {{depo_ismi}}` diff --git a/pages.tr/common/gitk.md b/pages.tr/common/gitk.md new file mode 100644 index 00000000000000..1afaba47970b7e --- /dev/null +++ b/pages.tr/common/gitk.md @@ -0,0 +1,24 @@ +# gitk + +> Görsel Git depo tarayıcısı. +> Daha fazla bilgi için: . + +- Mevcut Git deposu için depo tarayıcısını göster: + +`gitk` + +- Belirtilmiş dosya veya dizin için depo tarayıcısını göster: + +`gitk {{path/to/file_or_directory}}` + +- 1 hafta önceden beri yapılan commit'leri göster: + +`gitk --since="{{1 week ago}}"` + +- 1/1/2016 tarihinden önceki commit'leri göster: + +`gitk --until="{{1/1/2016}}"` + +- Tüm dallarda en fazla 100 değişiklik göster: + +` gitk --max-count={{100}} --all` diff --git a/pages.tr/common/gitlab-ctl.md b/pages.tr/common/gitlab-ctl.md new file mode 100644 index 00000000000000..57d56d4f582966 --- /dev/null +++ b/pages.tr/common/gitlab-ctl.md @@ -0,0 +1,28 @@ +# gitlab-ctl + +> Çok amaçlı GitLab yönetim CLI aracı. +> Daha fazla bilgi için: . + +- Tüm servislerin durumunu görüntüle: + +`sudo gitlab-ctl status` + +- Belirtilen servisin durumunu görüntüle: + +`sudo gitlab-ctl status {{nginx}}` + +- Tüm servisleri yeniden başlat: + +`sudo gitlab-ctl restart` + +- Belirtilen servisi yeniden başlat: + +`sudo gitlab-ctl restart {{nginx}}` + +- Tüm servislerin kaydını görüntüle ve `Ctrl + C` basılana kadar okumaya devam et: + +`sudo gitlab-ctl tail` + +- Belirtilen servisin kaydını görüntüle: + +`sudo gitlab-ctl tail {{nginx}}` diff --git a/pages.tr/common/gitlab-runner.md b/pages.tr/common/gitlab-runner.md new file mode 100644 index 00000000000000..5c5142fa17de58 --- /dev/null +++ b/pages.tr/common/gitlab-runner.md @@ -0,0 +1,28 @@ +# gitlab-runner + +> GitLab koşucuları için CLI aracı. +> Daha fazla bilgi için: . + +- Bir koşucuyu kayıt ettir: + +`sudo gitlab-runner register --url {{https://gitlab.ornek.com}} --registration-token {{token}} --name {{isim}}` + +- Bir koşucuyu Docker çalıştırıcısıyla kayı ettir: + +`sudo gitlab-runner register --url {{https://gitlab.ornek.com}} --registration-token {{token}} --name {{isim}} --executor {{docker}}` + +- Bir koşucunun kaydını geri al: + +`sudo gitlab-runner unregister --name {{isim}}` + +- Koşucu servisinin durumunu görüntüle: + +`sudo gitlab-runner status` + +- Koşucu servisini yeniden başlat: + +`sudo gitlab-runner restart` + +- Kayıt edilen koşucuların GitLab'e bağlanabilme durumlarını kontrol et: + +`sudo gitlab-runner verify` diff --git a/pages.tr/common/gitlab.md b/pages.tr/common/gitlab.md new file mode 100644 index 00000000000000..593480ab5e62c4 --- /dev/null +++ b/pages.tr/common/gitlab.md @@ -0,0 +1,21 @@ +# gitlab + +> GitLab API'si için Ruby sarıcı ve CLI aracı. +> `gitlab ctl` gibi bazı alt komutların kendi kullanım kılavuzları vardır. +> Daha fazla bilgi için: . + +- Yeni bir proje oluştur: + +`gitlab create_project {{proje_ismi}}` + +- Belirtilen commit ile ilgili bilgi al: + +`gitlab commit {{proje_ismi}} {{commit_değeri}}` + +- Bit CI pipeline'ındaki işler ile ilgili bilgi al: + +`gitlab pipeline_jobs {{proje_ismi}} {{pipeline_id'si}}` + +- Belirtilen CI işini başlat: + +`gitlab job_play {{proje_ismi}} {{iş_id'si}}` diff --git a/pages.tr/common/gitmoji.md b/pages.tr/common/gitmoji.md new file mode 100644 index 00000000000000..9d6a1be7736176 --- /dev/null +++ b/pages.tr/common/gitmoji.md @@ -0,0 +1,32 @@ +# gitmoji + +> Commit'lerde emoji kullanmak içni interaktif bir komut satırı aracı. +> Daha fazla bilgi için: . + +- Commit sihirbazını çalıştır: + +`gitmoji --commit` + +- Git hook'u başlat (bu sayede `git commit` çalıştırıldığı zaman `gitmoji` otomatik olarak çalıştırılabilir): + +`gitmoji --init` + +- Git hook'u sil: + +`gitmoji --remove` + +- Tüm kullanılabilir emojileri ve açıklamalarını sırala: + +`gitmoji --list` + +- Belirtilen kelime sırası için emoji sırası ara: + +`gitmoji --search {{kelime1}} {{kelime2}}` + +- Ana depodan emojileri güncelle: + +`gitmoji --update` + +- Genel tercihleri düzenle: + +`gitmoji --config` diff --git a/pages.tr/common/gitsome.md b/pages.tr/common/gitsome.md new file mode 100644 index 00000000000000..c1a4117fa0d15c --- /dev/null +++ b/pages.tr/common/gitsome.md @@ -0,0 +1,29 @@ +# gitsome + +> GitHub için gh komutuyla erişilebilen terminal tabanlı arayüz. +> Ayrıca `git` komutları için menu tarzı otomatik tamamlanmış öneriler sunar. +> Daha fazla bilgi için: . + +- Otomatik tamamlamayı ve Git ile gh komutları için etkileşimli yardımı etkinleştirmek için gitsome kabuğuna gir: + +`gitsome` + +- Mevcut hesap ile GitHub entegrasyonunu ayarla: + +`gh configure` + +- Mevcut hesap için bildirimleri (https://github.com/notifications adresinde görülebildiği gibi) sırala: + +`gh notifications` + +- Mevcut hesabın yıldızlanan depolarını belirtilen filtre ile sırala: + +`gh starred "{{python 3}}"` + +- Belirtilen GitHub deposunun güncel etkileşimini görüntüle: + +`gh feed {{tldr-pages/tldr}}` + +- Belirtilen GitHub kullanıcısının güncel etkileşimini varsayılan sayfacı ile (örneğin `less`) göster: + +`gh feed {{torvalds}} -p` diff --git a/pages.tr/common/gnmic-sub.md b/pages.tr/common/gnmic-sub.md new file mode 100644 index 00000000000000..04cdbac6a1a2cd --- /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-bug.md b/pages.tr/common/go-bug.md new file mode 100644 index 00000000000000..0c0e2487947b3b --- /dev/null +++ b/pages.tr/common/go-bug.md @@ -0,0 +1,8 @@ +# go bug + +> Bug bildir. +> Daha fazla bilgi için: . + +- Bug bildirisini başlatmak için bir website aç: + +`go bug` diff --git a/pages.tr/common/go-build.md b/pages.tr/common/go-build.md new file mode 100644 index 00000000000000..4a3791854f2048 --- /dev/null +++ b/pages.tr/common/go-build.md @@ -0,0 +1,20 @@ +# go build + +> Go kaynaklarını derle. +> Daha fazla bilgi için: . + +- Bir 'package main' dosyasını derle (çıktı uzantısız bir dosya ismi olacak): + +`go build {{örnek/konum/main.go}}` + +- Çıktı dosya ismini belirterek derle: + +`go build -o {{örnek/konum/binary}} {{örnek/konum/kaynak.go}}` + +- Bir paket yarat: + +`go build -o {{örnek/konum/binary}} {{örnek/konum/paket}}` + +- Bir ana paketi veri yarış tanımlayıcısını etkinleştirerek çalıştırılabilir olarak derle. + +`go build -race -o {{örnek/konum/çalıştırılabilir}} {{örnek/konum/ana_paket}}` diff --git a/pages.tr/common/go-clean.md b/pages.tr/common/go-clean.md new file mode 100644 index 00000000000000..5fc68e2df14704 --- /dev/null +++ b/pages.tr/common/go-clean.md @@ -0,0 +1,20 @@ +# go clean + +> Obje ve önbellek dosyalarını sil. +> Daha fazla bilgi için: . + +- Hiçbir şeyi silmeden silme komutlarını yazdır: + +`go clean -n` + +- Yapım önbelleğini sil:Delete the build cache: + +`go clean -cache` + +- Tüm önbelleğe alınan test sonuçlarını sil: + +`go clean -testcache` + +- Modül önbelleğni sil: + +`go clean -modcache` diff --git a/pages.tr/common/go-doc.md b/pages.tr/common/go-doc.md new file mode 100644 index 00000000000000..9dd4b893817038 --- /dev/null +++ b/pages.tr/common/go-doc.md @@ -0,0 +1,24 @@ +# go doc + +> Bir paket veya sembolün dokümentasyonunu göster. +> Daha fazla bilgi için: . + +- Mevcut paket için dokümentasyonu göster: + +`go doc` + +- Paket dokümentasyonunu ve dışa aktarılmış sembolleri göster: + +`go doc {{encoding/json}}` + +- Sembollerin de dokümentasyonunu göster: + +`go doc -all {{encoding/json}}` + +- Kaynakları da göster: + +`go doc -all -src {{encoding/json}}` + +- Belirtilen sembolü göster: + +`go doc -all -src {{encoding/json.Number}}` diff --git a/pages.tr/common/go-env.md b/pages.tr/common/go-env.md new file mode 100644 index 00000000000000..fd3d9452fcee11 --- /dev/null +++ b/pages.tr/common/go-env.md @@ -0,0 +1,20 @@ +# go env + +> Go toolchain'in kullandığı ortam değişkenlerini yönet. +> Daha fazla bilgi için: . + +- Tüm ortam değişkenlerini göster: + +`go env` + +- Belirtilen ortam değişkenlerini göster: + +`go env {{GOPATH}}` + +- Bir değere ortam değişkeni ata: + +`go env -w {{GOBIN}}={{örnek/konum/dizin}}` + +- Ortam değişkeninin değerini sıfırla: + +`go env -u {{GOBIN}}` diff --git a/pages.tr/common/go-fix.md b/pages.tr/common/go-fix.md new file mode 100644 index 00000000000000..f8a3dc1897967b --- /dev/null +++ b/pages.tr/common/go-fix.md @@ -0,0 +1,8 @@ +# go fix + +> Yeni API'ler kullanmak için paketleri güncelle. +> Daha fazla bilgi için: . + +- Paketleri yeni API'ler kullanmak için güncelle: + +`go fix {{paketler}}` diff --git a/pages.tr/common/go-fmt.md b/pages.tr/common/go-fmt.md new file mode 100644 index 00000000000000..c2cd3cdbb942c2 --- /dev/null +++ b/pages.tr/common/go-fmt.md @@ -0,0 +1,25 @@ +# go fmt + +> Go kaynak dosyalarını formatla. +> Değiştirilen dosya isimlerini yazdırır. +> Daha fazla bilgi için: . + +- Mevcut dizindeki Go kaynak dosyalarını formatla: + +`go fmt` + +- Belirtilen Go paketini içe aktarım yolunda formatla (`$GOPATH/src`): + +`go fmt {{örnek/konum/paket}}` + +- Paketi mevcut dizinde ve tüm öbür alt dizinlerde formatla (`...` ifadesine dikkat): + +`go fmt {{./...}}` + +- Hiçbir şeyi düzenlemeden format komutlarının ne yapacağını yazdır: + +`go fmt -n` + +- Komut çalışırken arkaplanda hangi komutların çalıştığını yazdır: + +`go fmt -x` diff --git a/pages.tr/common/go-generate.md b/pages.tr/common/go-generate.md new file mode 100644 index 00000000000000..3a47cac03f96f4 --- /dev/null +++ b/pages.tr/common/go-generate.md @@ -0,0 +1,8 @@ +# go generate + +> Kaynak dosyaları içinde komut çalıştırarak Go dosyaları oluştur. +> Daha fazla bilgi için: . + +- Kaynak dosyaları içinde komut çalıştırarak Go dosyaları oluştur: + +`go generate` diff --git a/pages.tr/common/go-get.md b/pages.tr/common/go-get.md new file mode 100644 index 00000000000000..75ba14e35ab5ec --- /dev/null +++ b/pages.tr/common/go-get.md @@ -0,0 +1,16 @@ +# go get + +> Bir bağımlılık paketi ekle veya eski GOPATH modunda paket indir. +> Daha fazla bilgi için: . + +- `go.mod`'a modül modunda (module-mode) belirtilen bir paket ekle veya paketi GOPATH modunda indir: + +`go get {{ornek.com/pkg}}` + +- Paketi module-aware modunda belirtilen sürümde düzenle: + +`go get {{ornek.com/pkg}}@{{v1.2.3}}` + +- Belirtilen paketi sil: + +`go get {{ornek.com/pkg}}@{{none}}` diff --git a/pages.tr/common/go-install.md b/pages.tr/common/go-install.md new file mode 100644 index 00000000000000..80ed84dd87c3d0 --- /dev/null +++ b/pages.tr/common/go-install.md @@ -0,0 +1,20 @@ +# go install + +> İçe aktarım yollarıyla isimlendirilen paketleri derle ve indir. +> Daha fazla bilgi için: . + +- Mevcut paketi derle ve indir: + +`go install` + +- Belirtilen yerel paketi derle ve indir: + +`go install {{örnek/konum/paket}}` + +- Bir programın son sürümünü mevcut dizindeki `go.mod`'u yoksayarak indir: + +`go install {{golang.org/x/tools/gopls}}@{{latest}}` + +- Bir programın mevcut dizindeki `go.mod`'da belirtilen sürümünü indir: + +`go install {{golang.org/x/tools/gopls}}` diff --git a/pages.tr/common/go-list.md b/pages.tr/common/go-list.md new file mode 100644 index 00000000000000..b96e21818cce61 --- /dev/null +++ b/pages.tr/common/go-list.md @@ -0,0 +1,20 @@ +# go list + +> Paket ve modülleri sırala. +> Daha fazla bilgi için: . + +- Paketleri sırala: + +`go list ./...` + +- Standart paketleri sırala: + +`go list std` + +- Paketleri JSON formatında sırala: + +`go list -json time net/http` + +- Modül bağımlılıklarını ve erişilebilir güncellemeleri sırala: + +`go list -m -u all` diff --git a/pages.tr/common/go-mod.md b/pages.tr/common/go-mod.md new file mode 100644 index 00000000000000..82dd557a9034e5 --- /dev/null +++ b/pages.tr/common/go-mod.md @@ -0,0 +1,24 @@ +# go mod + +> Modül yönetimi. +> Daha fazla bilgi için: . + +- Mevcut dizinde yeni modül başlat: + +`go mod init {{modülİsmi}}` + +- Modülleri yerel önbelleğe yükle: + +`go mod download` + +- Kaybolan modülleri ekle ve kullanılmayanları sil: + +`go mod tidy` + +- Bağlılıkların beklenen içeriğe sahip olduklarını doğrula: + +`go mod verify` + +- Tüm bağlılıkların kaynaklarını satıcı dizine kopyala: + +`go mod vendor` diff --git a/pages.tr/common/go-run.md b/pages.tr/common/go-run.md new file mode 100644 index 00000000000000..39c18697a08ab1 --- /dev/null +++ b/pages.tr/common/go-run.md @@ -0,0 +1,12 @@ +# go run + +> Binary (ikili sayı değeri) kaydetmeden Go kodunu derle ve çalıştır. +> Daha fazla bilgi için: . + +- Bir Go dosyası çalıştır: + +`go run {{örnek/konum/dosya.go}}` + +- Ana bir Go paketi çalıştır: + +`go run {{örnek/konum/paket}}` diff --git a/pages.tr/common/go-test.md b/pages.tr/common/go-test.md new file mode 100644 index 00000000000000..5e75a8eaf49bcd --- /dev/null +++ b/pages.tr/common/go-test.md @@ -0,0 +1,28 @@ +# go test + +> Go paketlerini test et (dosyalar `_test.go` ifadesiyle bitmeli). +> Daha fazla bilgi için: . + +- Mevcut dizinde bulunan paketleri test et: + +`go test` + +- Mevcut dizindeki paketleri ayrıntılı şekilde test et: + +`go test -v` + +- Mevcut dizindeki ve tüm alt dizinlerdeki paketleri test et (`...` ifadesine dikkat): + +`go test -v ./...` + +- Mevcut dzindeki paketleri test et ve tüm kalite testlerini çalıştır: + +`go test -v -bench .` + +- Mevcut dizindeki paketleri test et ve 50 saniye içinde tüm kalite testlerini çalıştır: + +`go test -v -bench . -benchtime {{50s}}` + +- Paketleri kapsamlı bir analiz ile test et: + +`go test -cover` diff --git a/pages.tr/common/go-tool.md b/pages.tr/common/go-tool.md new file mode 100644 index 00000000000000..a4c596eaae95d1 --- /dev/null +++ b/pages.tr/common/go-tool.md @@ -0,0 +1,21 @@ +# go tool + +> Belirtilen bir Go aracını veya komutunu çalıştır. +> Bir Go komutunu tipik olarak hata ayıklamak için tek başına bir binary olarak çalıştır. +> Daha fazla bilgi için: . + +- Erişilebilir araçları sırala: + +`go tool` + +- Go bağ aracını çalıştır: + +`go tool link {{örnek/konum/main.o}}` + +- Çalıştırılacak komutu çalıştırmadan yazdır (`whereis`'e benzer): + +`go tool -n {{komut}} {{argümanları}}` + +- Belirtilen araç için resmi dokümentasyonu göster: + +`go tool {{komut}} --help` diff --git a/pages.tr/common/go-version.md b/pages.tr/common/go-version.md new file mode 100644 index 00000000000000..904b41407f4b7d --- /dev/null +++ b/pages.tr/common/go-version.md @@ -0,0 +1,12 @@ +# go version + +> Go sürümünü yazdır. +> Daha fazla bilgi için: . + +- Go sürümünü yazdır: + +`go version` + +- Belirtilen çalıştırılabilir dosyanın yapımı için kullanılan Go sürümünü yazdır: + +`go version {{örnek/konum/çalıştırılabilir_dosya}}` diff --git a/pages.tr/common/go-vet.md b/pages.tr/common/go-vet.md new file mode 100644 index 00000000000000..4ac0e0233811a3 --- /dev/null +++ b/pages.tr/common/go-vet.md @@ -0,0 +1,29 @@ +# go vet + +> 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. +> Daha fazla bilgi için: . + +- Mevcut dizindeki Go paketini kontrol et: + +`go vet` + +- Belirtilen yoldaki Go paketini kontrol et: + +`go vet {{örnek/dosya_veya_dizin}}` + +- Go vet ile çalıştırılabilecek erişilebilir kontrolleri sırala: + +`go tool vet help` + +- Belirtilen bir kontrol için detayları ve bayrakları göster: + +`go tool vet help {{kontrol_ismi}}` + +- Kontrolün sorun bulmasına sebep olan satırları artı N sayıda ek içeriği görüntüle: + +`go vet -c={{N}}` + +- Analiz ve hataları JSON formatında çıkart: + +`go vet -json` diff --git a/pages.tr/common/go.md b/pages.tr/common/go.md new file mode 100644 index 00000000000000..5df7c21f9f4e2d --- /dev/null +++ b/pages.tr/common/go.md @@ -0,0 +1,33 @@ +# go + +> Go kaynak kodunu yönetmeye yarayan bir araç. +> `go build` gibi bazı alt komutların kendı kullanım dokümentasyonları mevcut. +> Daha fazla bilgi için: . + +- İçe aktarım yolunda belirtilen şekilde bir paketi indir ve yükle: + +`go get {{paket_yolu}}` + +- Bir kaynak dosyasını derle ve çalıştır (bir `main` paketine sahip olmalı): + +`go run {{dosya}}.go` + +- Bir kaynak dosyasını belirtilen çalıştırılabilir dosyaya derle: + +`go build -o {{çalıştırılabilir}} {{dosya}}.go` + +- Mevcut dizinde bulunan paketi derle: + +`go build` + +- Mevcut paket için tüm test durumlarını çalıştır (bahsi geçen dosyalar `_test.go` ifadesi ile bitmeli): + +`go test` + +- Mevcut paketi derle ve indir: + +`go install` + +- Mevcut diizinde yeni bir modül başlat: + +`go mod init {{modül_ismi}}` diff --git a/pages.tr/common/google-chrome.md b/pages.tr/common/google-chrome.md new file mode 100644 index 00000000000000..8c8e54d14590de --- /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 new file mode 100644 index 00000000000000..265c7951970076 --- /dev/null +++ b/pages.tr/common/grep.md @@ -0,0 +1,36 @@ +# grep + +> Düzenli ifadeler (Regex) kullanarak dosyalardaki kalıpları bul. +> Daha fazla bilgi için: . + +- Bir dosya içinde kalıp ara: + +`grep "{{aranan_kalıp}}" {{dosya/yolu}}` + +- Tam bir dize ara (düzenli ifadeleri devre dışı bırakır): + +`grep --fixed-strings "{{tam_dize}}" {{dosya/yolu}}` + +- Bir dizindeki tüm dosyalarda bir kalıbı tekrarlı olarak ara, eşleşmelerin satır numaralarını göster, binary dosyaları göz ardı et: + +`grep --recursive --line-number --binary-files={{without-match}} "{{aranan_kalıp}}" {{dosya/yolu}}` + +- Büyük/küçük harfe duyarsız modda genişletilmiş düzenli ifadeleri (`?`, `+`, `{}`, `()` ve `|` destekler) kullan: + +`grep --extended-regexp --ignore-case "{{aranan_kalıp}}" {{dosya/yolu}}` + +- Her eşleşmenin etrafında, öncesinde veya sonrasında 3 satır içerik yazdır: + +`grep --{{context|before-context|after-context}}={{3}} "{{aranan_kalıp}}" {{dosya/yolu}}` + +- Renkli çıktı ile her eşleşme için dosya adını ve satır numarasını yazdır: + +`grep --with-filename --line-number --color=always "{{aranan_kalıp}}" {{dosya/yolu}}` + +- Bir kalıpla eşleşen satırları ara, yalnızca eşleşen metni yazdır: + +`grep --only-matching "{{aranan_kalıp}}" {{dosya/yolu}}` + +- 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 00000000000000..91d563a6d006bf --- /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 00000000000000..f5fd6963ff296d --- /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 00000000000000..c67db370562727 --- /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 00000000000000..e7d99077c36fea --- /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 00000000000000..cb35770808062a --- /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 00000000000000..0956c3b790c747 --- /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 00000000000000..db1d9143990a72 --- /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 00000000000000..9a78cc5f9d0b13 --- /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 00000000000000..79d39e78301b55 --- /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 00000000000000..c816647a5affb7 --- /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/man.md b/pages.tr/common/man.md index 412c914799cbeb..5d1551170e1339 100644 --- a/pages.tr/common/man.md +++ b/pages.tr/common/man.md @@ -9,7 +9,7 @@ - Sayfanın 7. bölümündeki bir komut için man sayfasını görüntüle: -`man {{komut}}.{{7}}` +`man {{7}} {{komut}}` - Mansayfaları için aratılan yolu göster: diff --git a/pages.tr/common/mkdir.md b/pages.tr/common/mkdir.md new file mode 100644 index 00000000000000..6ff1d42e98bffd --- /dev/null +++ b/pages.tr/common/mkdir.md @@ -0,0 +1,16 @@ +# mkdir + +> Yeni bir dizin oluştur. +> Daha fazla bilgi için: . + +- Mevcut dizinde ya da verilen dizinde yeni bir dizin oluştur: + +`mkdir {{dizin}}` + +- Mevcut dizinde birden çok dizin oluştur: + +`mkdir {{dizin_1 dizin_2 ...}}` + +- Özyinelemeli şekilde dizin oluştur (iç içe klasörler oluşturmak için kullanışlıdır): + +`mkdir -p {{dizin/yolu}}` diff --git a/pages.tr/common/mscore.md b/pages.tr/common/mscore.md new file mode 100644 index 00000000000000..bf57b60fe7c064 --- /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/ng.md b/pages.tr/common/ng.md new file mode 100644 index 00000000000000..a5153422a6dd74 --- /dev/null +++ b/pages.tr/common/ng.md @@ -0,0 +1,36 @@ +# ng + +> Angular uygulamaları oluşturup yönetmek için bir Komut Satırı Arayüzü (CLI). +> Daha fazla bilgi için: . + +- Bir klasörün içinde yeni bir Angular uygulaması oluştur: + +`ng new {{proje_ismi}}` + +- Bir uygulamaya yeni bir komponent ekle: + +`ng generate component {{komponent_ismi}}` + +- Bir uygulamaya yeni bir sınıf ekle: + +`ng generate class {{sınıf_ismi}}` + +- Bir uygulamaya yeni bir direktif ekle: + +`ng generate directive {{direktif_ismi}}` + +- Uygulamayı çalıştır ve bir sunucu üzerinden yayınla: + +`ng serve` + +- Uygulamayı derle: + +`ng build` + +- Testleri çalıştır: + +`ng test` + +- Angular kurulumunun versiyonunu kontrol et: + +`ng version` diff --git a/pages.tr/common/nginx.md b/pages.tr/common/nginx.md new file mode 100644 index 00000000000000..bf6d5f72dd78f2 --- /dev/null +++ b/pages.tr/common/nginx.md @@ -0,0 +1,24 @@ +# nginx + +> Nginx web sunucusu. +> Daha fazla bilgi için: . + +- Varsayılan konfigürasyon dosyasıyla sunucuyu başlat: + +`nginx` + +- Özel bir konfigürasyon dosyasıyla sunucuyu başlat: + +`nginx -c {{konfigürasyon_dosyası}}` + +- Konfigürasyon dosyasındaki her göreceli dosya yolu için bir ön ek ile sunucuyu başlat: + +`nginx -c {{konfigürasyon_dosyası}} -p {{göreceli/dosya/yolu/ön/eki}}` + +- Çalışan sunucuyu etkilemeden konfigürasyon dosyasını test et: + +`nginx -t` + +- Aksamasız bir sinyal göndererek konfigürasyonu tekrar yükle: + +`nginx -s reload` diff --git a/pages.tr/common/nm-classic.md b/pages.tr/common/nm-classic.md new file mode 100644 index 00000000000000..48ef482d870481 --- /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 00000000000000..8fbfd9c78847b7 --- /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 00000000000000..26feb0084d320c --- /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 00000000000000..5437e0cf47eb6c --- /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 00000000000000..ac98ae7eaa0b84 --- /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 00000000000000..cfe8123f32e9cd --- /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 00000000000000..14bf60f960aa70 --- /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 00000000000000..b2a30e39ffdffe --- /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 00000000000000..c742983411b21b --- /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 00000000000000..101dd9a2795cf1 --- /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 00000000000000..774d564ee1f2ed --- /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/su.md b/pages.tr/common/su.md new file mode 100644 index 00000000000000..971826715fdd69 --- /dev/null +++ b/pages.tr/common/su.md @@ -0,0 +1,20 @@ +# su + +> Kabuk ortamında başka bir kullanıcıya geçiş yapın. +> Daha fazla bilgi için: . + +- Süper kullanıcıya geçin (kök şifresi gerektirir): + +`su` + +- Belirli bir kullanıcıya geçin (kullanıcının şifresini gerektirir): + +`su {{kullanıcıadı}}` + +- Belirli bir kullanıcıya geçin ve tam oturum açma kabuğunu simüle edin: + +`su - {{kullanıcıadı}}` + +- Başka bir kullanıcı olarak bir komut çalıştırın: + +`su - {{kullanıcıadı}} -c "{{komut}}"` diff --git a/pages.tr/common/tar.md b/pages.tr/common/tar.md new file mode 100644 index 00000000000000..58e8cc3ed254bf --- /dev/null +++ b/pages.tr/common/tar.md @@ -0,0 +1,37 @@ +# tar + +> Arşivleme aracı. +> Dosyalar genellikle gzip veya bzip2 gibi bir sıkıştırma yöntemiyle birleştirilir. +> Daha fazla bilgi için: . + +- Bir arşiv oluştur ve dosyaya yaz: + +`tar cf {{hedef.tar}} {{dosya1}} {{dosya2}} {{dosya3}}` + +- Bir gzip arşivi oluştur ve dosyaya yaz: + +`tar czf {{hedef.tar.gz}} {{dosya1}} {{dosya2}} {{dosya3}}` + +- Göreceli yolları kullanarak bir gzip arşivi oluştur: + +`tar czf {{hedef.tar.gz}} --directory={{dizin/yolu}} .` + +- Sıkıştırılmış bir arşiv dosyasını geçerli dizine ayrıntılı şekilde çıkar: + +`tar xvf {{kaynak.tar[.gz|.bz2|.xz]}}` + +- Sıkıştırılmış bir arşiv dosyasını hedef dizine çıkar: + +`tar xf {{kaynak.tar[.gz|.bz2|.xz]}} --directory={{dizin}}` + +- Sıkıştırılmış bir arşiv oluştur ve sıkıştırma yöntemini seçmek için arşiv sonekini kullan: + +`tar caf {{hedef.tar.xz}} {{dosya1}} {{dosya2}} {{dosya3}}` + +- Bir tar arşivinin içeriğini ayrıntılı olarak listele: + +`tar tvf {{kaynak.tar}}` + +- Şablonla eşleşen dosyaları arşivden çıkar: + +`tar xf {{kaynak.tar}} --wildcards "{{*.html}}"` diff --git a/pages.tr/common/tldrl.md b/pages.tr/common/tldrl.md index c9b54dfbdaee42..c5ae5c3d54334c 100644 --- a/pages.tr/common/tldrl.md +++ b/pages.tr/common/tldrl.md @@ -1,6 +1,7 @@ # tldrl > `tldr-lint` komutunun aynısı. +> Daha fazla bilgi için: . - Orijinal komut için yardım sayfasını göster: diff --git a/pages.tr/common/tlmgr-arch.md b/pages.tr/common/tlmgr-arch.md new file mode 100644 index 00000000000000..9467e04b8e6710 --- /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 00000000000000..8dc61ef542721b --- /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 00000000000000..c12d08a4c7c5cc --- /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/linux/tree.md b/pages.tr/common/tree.md similarity index 100% rename from pages.tr/linux/tree.md rename to pages.tr/common/tree.md diff --git a/pages.tr/common/unlzma.md b/pages.tr/common/unlzma.md new file mode 100644 index 00000000000000..606fdd23d3c780 --- /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 00000000000000..c0851a42aa0c37 --- /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 00000000000000..c0196322f76303 --- /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 00000000000000..d29bfc04569762 --- /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/common/yes.md b/pages.tr/common/yes.md new file mode 100644 index 00000000000000..13fa493f030552 --- /dev/null +++ b/pages.tr/common/yes.md @@ -0,0 +1,17 @@ +# yes + +> Bir şeyi tekrar tekrar yazdır. +> Bu komut genelde yükleme işlemleri sırasında onay için yes yazmak için kullanılır (apt-get gibi). +> Daha fazla bilgi için: . + +- Tekrar tekrar "mesaj" yazdır: + +`yes {{mesaj}}` + +- Tekrar tekrar "y" yazdır: + +`yes` + +- `apt-get` komutu tarafından sorulan her şeyi kabul et: + +`yes | sudo apt-get install {{program}}` diff --git a/pages.tr/linux/a2disconf.md b/pages.tr/linux/a2disconf.md new file mode 100644 index 00000000000000..9bdb7b5da42541 --- /dev/null +++ b/pages.tr/linux/a2disconf.md @@ -0,0 +1,12 @@ +# a2disconf + +> Debian tabanlı işletim sistemlerinde Apache konfigürasyon dosyasını devre dışı bırak. +> Daha fazla bilgi için: . + +- Bir konfigürasyon dosyasını devre dışı bırak: + +`sudo a2disconf {{konfigürasyon_dosyası}}` + +- Bilgilendirici mesajı gösterme: + +`sudo a2disconf --quiet {{konfigürasyon_dosyası}}` diff --git a/pages.tr/linux/a2dismod.md b/pages.tr/linux/a2dismod.md new file mode 100644 index 00000000000000..f2ce7abf00f9da --- /dev/null +++ b/pages.tr/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> Debian tabanlı işletim sistemlerinde bir Apache modülünü devre dışı bırak. +> Daha fazla bilgi için: . + +- Bir modülü devre dışı bırak: + +`sudo a2dismod {{modül}}` + +- Bilgilendirici mesajları gösterme: + +`sudo a2dismod --quiet {{module}}` diff --git a/pages.tr/linux/a2dissite.md b/pages.tr/linux/a2dissite.md new file mode 100644 index 00000000000000..ae62ba6df7e642 --- /dev/null +++ b/pages.tr/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> Debian tabanlı işletim sistemlerinde bir Apache sanal hostunu devre dışı bırak. +> Daha fazla bilgi için: . + +- Uzak hostu devre dışı bırak: + +`sudo a2dissite {{sanal_host}}` + +- Bilgilendirici mesajları gösterme: + +`sudo a2dissite --quiet {{sanal_host}}` diff --git a/pages.tr/linux/a2enconf.md b/pages.tr/linux/a2enconf.md new file mode 100644 index 00000000000000..eceb92cdd02fa9 --- /dev/null +++ b/pages.tr/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> Debian tabanlı işletim sistemlerinde Apache konfigürasyon dosyasını etkinleştir. +> Daha fazla bilgi için: . + +- Bir konfigürasyon dosyasını etkinleştir: + +`sudo a2enconf {{konfigürasyon_dosyası}}` + +- Bilgilendirici mesajları gösterme: + +`sudo a2enconf --quiet {{konfigürasyon_dosyası}}` diff --git a/pages.tr/linux/a2enmod.md b/pages.tr/linux/a2enmod.md new file mode 100644 index 00000000000000..cf82decfa0cd6e --- /dev/null +++ b/pages.tr/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> Debian tabanlı işletim sistemlerinde Apache modülünü etkinleştir. +> Daha fazla bilgi için: . + +- Bir modülü etkinleştir:: + +`sudo a2enmod {{modül}}` + +- Bilgilendirici mesajları gösterme: + +`sudo a2enmod --quiet {{modül}}` diff --git a/pages.tr/linux/a2ensite.md b/pages.tr/linux/a2ensite.md new file mode 100644 index 00000000000000..3307014bd48f9a --- /dev/null +++ b/pages.tr/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> Debian tabanlı işletim sistemlerinde Apache sanal hostu etkinleştir. +> Daha fazla bilgi için: . + +- Bir sanal hostu etkinleştir: + +`sudo a2ensite {{sanal_host}}` + +- Bilgilendirici mesajları gösterme: + +`sudo a2ensite --quiet {{sanal_host}}` diff --git a/pages.tr/linux/a2query.md b/pages.tr/linux/a2query.md new file mode 100644 index 00000000000000..92ef15563a4855 --- /dev/null +++ b/pages.tr/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> Apache ve Debian tabanlı işletim sistemlerinde çalışma süresi yapılandırmasını kurtar. +> Daha fazla bilgi için: . + +- Etkinleştirilmiş Apache modüllerini sırala: + +`sudo a2query -m` + +- Belirtilen modülün indirilip indirilmediğini kontrol et: + +`sudo a2query -m {{modül_ismi}}` + +- Etkinleştirilmiş sanal hostları sırala: + +`sudo a2query -s` + +- Mevcut etkinleştirilmiş Çoklu İşlem Modülü'nü görüntüle: + +`sudo a2query -M` + +- Apache sürümünü görüntüle: + +`sudo a2query -v` diff --git a/pages.tr/linux/alternatives.md b/pages.tr/linux/alternatives.md new file mode 100644 index 00000000000000..ebe4a82eb74f53 --- /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/apt.md b/pages.tr/linux/apt.md new file mode 100644 index 00000000000000..f7db831b7e8bc6 --- /dev/null +++ b/pages.tr/linux/apt.md @@ -0,0 +1,37 @@ +# apt + +> Debian tabanlı dağıtımlar için paket yönetim aracı. +> Ubuntu 16.04 ve sonraki sürümlerde interaktif kullanıldığında `apt-get` için önerilen değiştirme. +> Daha fazla bilgi için: . + +- Kullanılabilir paket ve versiyonların listesini yenile (Bu komutu diğer `apt` komutlarından önce kullanmanız önerilir): + +`apt update` + +- Belirli bir paketi arayın: + +`apt search {{paket}}` + +- Bir paketin bilgilerini gösterin: + +`apt show {{paket}}` + +- Bir paket kurun veya mevcut en son sürüme güncelleyin: + +`apt install {{paket}}` + +- Bir paketi kaldırın (bunun için "purge" kullanmak, yapılandırma dosyalarını da kaldırır): + +`apt remove {{paket}}` + +- Kurulu tüm paketleri mevcut en yeni sürümlerine yükseltin: + +`apt upgrade` + +- Tüm paketleri listeleyin: + +`apt list` + +- Kurulu paketleri listeleyin: + +`apt list --installed` diff --git a/pages.tr/linux/atool.md b/pages.tr/linux/atool.md new file mode 100644 index 00000000000000..a4a2b145245968 --- /dev/null +++ b/pages.tr/linux/atool.md @@ -0,0 +1,20 @@ +# atool + +> Çeşitli biçimlerdeki arşivleri yönetin. +> Daha fazla bilgi için: . + +- Bir zip arşivindeki dosyaları listele: + +`atool --list {{arşiv.zip/dosyasının/yolu}}` + +- Bir tar.gz arşivini yeni bir alt dizine (veya yalnızca bir dosya içeriyorsa geçerli dizine) çıkart: + +`atool --extract {{arşiv.tar.gz/dosyasının/yolu}}` + +- İki dosyaya sahip yeni bir 7zip arşivi oluştur: + +`atool --add {{arşiv.7z/dosyasının/yolu}} {{dosya1/yolu}} {{dosya2/yolu}}` + +- Geçerli dizindeki tüm zip ve rar arşivlerini çıkart: + +`atool --each --extract {{*.zip}} {{*.rar}}` diff --git a/pages.tr/linux/batcat.md b/pages.tr/linux/batcat.md new file mode 100644 index 00000000000000..60d4ee199cded4 --- /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/brightnessctl.md b/pages.tr/linux/brightnessctl.md new file mode 100644 index 00000000000000..98a35d34a4588b --- /dev/null +++ b/pages.tr/linux/brightnessctl.md @@ -0,0 +1,24 @@ +# brightnessctl + +> GNU/Linux işletim sistemlerinde cihaz parlaklığını okumak ve kontrol etmek için yardımcı program. +> Daha fazla bilgi için: . + +- Değiştirilebilir parlaklığa sahip cihazları listele: + +`brightnessctl --list` + +- Ekran arka ışığının şu andaki seviyesini yazdır: + +`brightnessctl get` + +- Ekran parlaklığını belli bir aralık dahilinde belirli yüzdeye eşitle: + +`brightnessctl set {{50%}}` + +- Parlaklığı belirli bir seviyede artır: + +`brightnessctl set {{+10%}}` + +- Parlaklığı belirli bir seviyede düşür: + +`brightnessctl set {{10%-}}` diff --git a/pages.tr/linux/bspwm.md b/pages.tr/linux/bspwm.md new file mode 100644 index 00000000000000..6bcbefc0bcb282 --- /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 00000000000000..456eeff28c9f05 --- /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 00000000000000..f9f4b1be4c51a1 --- /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/cp.md b/pages.tr/linux/cp.md new file mode 100644 index 00000000000000..0a025d0aa62611 --- /dev/null +++ b/pages.tr/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Dosya ve dizinleri kopyala. +> Daha fazla bilgi için: . + +- Bir dosyayı başka bir konuma kopyala: + +`cp {{örnek/yol/kaynak_dosya.ext}} {{örnek/yol/hedef_dosya.ext}}` + +- Bir dosyayı ismini değiştirmeden başka bir dizine kopyala: + +`cp {{örnek/yol/kaynak_dosya.ext}} {{örnek/yol/hedef_ana_dizin}}` + +- Bir dizinin içeriğini başka bir konuma tekrarlı şekilde kopyala (eğer belirtilen konum varsa dizin onun içine kopyalanır): + +`cp -r {{örnek/yol/kaynak_dizin}} {{örnek/yol/hedef_dizin}}` + +- Bir dizini tekrarlı şekilde ayrıntılı modda kopyala (dosyaları kopyalandıkları gibi gösterir): + +`cp -vr {{örnek/yol/kaynak_dizin}} {{örnek/yol/hedef_dizin}}` + +- Metin dosyalarını interaktif modda başka bir konuma kopyala (üstüne yazmadan önce kullanıcıyı bilgilendirir): + +`cp -i {{*.txt}} {{örnek/yol/hedef_dizin}}` + +- Kopyalamadan önce sembolik linkleri izle: + +`cp -L {{link}} {{örnek/yol/hedef_dizin}}` + +- Kopyalarken kaynak dosyalarının tam konumunu belirt: + +`cp --parents {{kaynak/örnek/yol/dosya}} {{örnek/yol/hedef_dosya}}` diff --git a/pages.tr/linux/dnf.md b/pages.tr/linux/dnf.md new file mode 100644 index 00000000000000..55ea92c76011e1 --- /dev/null +++ b/pages.tr/linux/dnf.md @@ -0,0 +1,36 @@ +# dnf + +> RHEL, Fedora ve CentOS için paket yönetim aracı (yum'un yerini alır). +> Daha fazla bilgi için: . + +- Kurulu paketleri kullanılabilir en yeni sürümlere yükselt: + +`sudo dnf upgrade` + +- Anahtar kelimeler kullanarak paket ara: + +`dnf search {{anahtar_kelimeler}}` + +- Bir paketin ayrıntılarını göster: + +`dnf info {{paket}}` + +- Yeni bir paket kur: + +`sudo dnf install {{paket}}` + +- Yeni bir paket kur ve tüm soruları otomatik evet olarak yanıtla: + +`sudo dnf -y install {{paket}}` + +- Bir paketi kaldır: + +`sudo dnf remove {{paket}}` + +- Kurulu paketleri listele: + +`dnf list --installed` + +- Verilen dosyayı hangi paketlerin sağladığını bul: + +`dnf provides {{dosya}}` diff --git a/pages.tr/linux/ip-address.md b/pages.tr/linux/ip-address.md new file mode 100644 index 00000000000000..f055db41f39f9c --- /dev/null +++ b/pages.tr/linux/ip-address.md @@ -0,0 +1,28 @@ +# ip address + +> IP adresi yönetimi alt komutu. +> Daha fazla bilgi için: . + +- Ağ arayüzlerini ve ilişkili IP adreslerini listele: + +`ip address` + +- Yalnızca etkin ağ arayüzlerini gösterecek şekilde filtrele: + +`ip address show up` + +- Belirli bir ağ arayüzü hakkındaki bilgileri görüntüle: + +`ip address show dev {{eth0}}` + +- Bir ağ arayüzüne bir IP adresi ekle: + +`ip address add {{ip_adresi}} dev {{eth0}}` + +- Bir ağ arayüzünden bir IP adresini kaldır: + +`ip address delete {{ip_adresi}} dev {{eth0}}` + +- Belirli bir kapsamdaki tüm IP adreslerini bir ağ arayüzünden sil: + +`ip address flush dev {{eth0}} scope {{global|host|link}}` diff --git a/pages.tr/linux/ip-link.md b/pages.tr/linux/ip-link.md new file mode 100644 index 00000000000000..92b062c6fa2fa2 --- /dev/null +++ b/pages.tr/linux/ip-link.md @@ -0,0 +1,28 @@ +# ip link + +> Ağ arayüzlerini yönet. +> Daha fazla bilgi için: . + +- Tüm ağ arayüzleriyle ilgili bilgileri göster: + +`ip link` + +- Belirli bir ağ arayüzüyle ilgili bilgileri göster: + +`ip link show {{ethN}}` + +- Bir ağ arayüzünü etkinleştir veya devre dışı bırak: + +`ip link set {{ethN}} {{up|down}}` + +- Bir ağ arayüzüne anlamlı bir ad ver: + +`ip link set {{ethN}} alias "{{LAN Arayüzü}}"` + +- Bir ağ arayüzünün MAC adresini değiştir: + +`ip link set {{ethN}} address {{ff:ff:ff:ff:ff:ff}}` + +- Jumbo çerçeveleri kullanması için bir ağ arayüzünün MTU boyutunu değiştir: + +`ip link set {{ethN}} mtu {{9000}}` diff --git a/pages.tr/linux/ip-neighbour.md b/pages.tr/linux/ip-neighbour.md new file mode 100644 index 00000000000000..0789f914197c83 --- /dev/null +++ b/pages.tr/linux/ip-neighbour.md @@ -0,0 +1,24 @@ +# ip neighbour + +> Komşu/ARP tablosu yönetimi IP alt komutu. +> Daha fazla bilgi için: . + +- Komşu/ARP tablosu girdilerini görüntüle: + +`ip neighbour` + +- `eth0` aygıtının komşu tablosundaki girdileri kaldır: + +`sudo ip neighbour flush dev {{eth0}}` + +- Bir komşu araması gerçekleştir ve bir komşu girdisi döndür: + +`ip neighbour get {{aranacak_ip}} dev {{eth0}}` + +- `eth0` arayüzüne komşu IP adresi için bir ARP girdisi ekle veya sil: + +`sudo ip neighbour {{add|del}} {{ip_adresi}} lladdr {{mac_adresi}} dev {{eth0}} nud reachable` + +- `eth0` arayüzünde komşu IP adresi için bir ARP girdisini değiştir: + +`sudo ip neighbour {{change|replace}} {{ip_adresi}} lladdr {{yeni_mac_adresi}} dev {{eth0}}` diff --git a/pages.tr/linux/ip-route-list.md b/pages.tr/linux/ip-route-list.md new file mode 100644 index 00000000000000..cccb46f6f6826b --- /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/ip-route.md b/pages.tr/linux/ip-route.md new file mode 100644 index 00000000000000..8d47c5560b36c2 --- /dev/null +++ b/pages.tr/linux/ip-route.md @@ -0,0 +1,32 @@ +# ip route + +> IP yönlendirme tablosu yönetimi alt komutu. +> Daha fazla bilgi için: . + +- Yönlendirme tablosunu görüntüle: + +`ip route {{show|list}}` + +- Ağ geçidini kullanan öntanımlı bir yönlendirme ekle: + +`sudo ip route add default via {{ağ_geçidi_ip_adresi}}` + +- `eth0` arayüzünü kullanan öntanımlı bir yönlendirme ekle: + +`sudo ip route add default dev {{eth0}}` + +- Statik bir yönlendirme ekle: + +`sudo ip route add {{hedef_ip_adresi}} via {{ağ_geçidi_ip_adresi}} dev {{eth0}}` + +- Statik bir yönlendirmeyi sil: + +`sudo ip route del {{hedef_ip_adresi}} dev {{eth0}}` + +- Statik bir yönlendirmeyi değiştir: + +`sudo ip route {{change|replace}} {{hedef_ip_adresi}} via {{ağ_geçidi_ip_adresi}} dev {{eth0}}` + +- Bir IP adresine ulaşmak için çekirdek tarafından hangi yönlendirmenin kullanılacağını göster: + +`ip route get {{hedef_ip_adresi}}` diff --git a/pages.tr/linux/ip-rule.md b/pages.tr/linux/ip-rule.md new file mode 100644 index 00000000000000..8cc1341d87c735 --- /dev/null +++ b/pages.tr/linux/ip-rule.md @@ -0,0 +1,36 @@ +# ip rule + +> IP yönlendirme politikası veri tabanı yönetimi. +> Daha fazla bilgi için: . + +- Yönlendirme politikasını göster: + +`ip rule {{show|list}}` + +- Paket kaynak adreslerine dayalı yeni bir kural ekle: + +`sudo ip rule add from {{192.168.178.2/32}}` + +- Paket hedef adreslerine dayalı yeni bir kural ekle: + +`sudo ip rule add to {{192.168.178.2/32}}` + +- Paket kaynak adreslerine dayalı bir kuralı sil: + +`sudo ip rule delete from {{192.168.178.2/32}}` + +- Paket hedef adreslerine dayalı bir kuralı sil: + +`sudo ip rule delete to {{192.168.178.2/32}}` + +- Silinen tüm kuralları temizle: + +`ip rule flush` + +- Tüm kuralları bir dosyaya kaydet: + +`ip rule save > {{ip_kuralları.dat/dosyasının/yolu}}` + +- Tüm kuralları bir dosyadan geri yükle: + +`ip rule restore < {{ip_kuralları.dat/dosyasının/yolu}}` diff --git a/pages.tr/linux/ip.md b/pages.tr/linux/ip.md new file mode 100644 index 00000000000000..16c56f86eaf5e4 --- /dev/null +++ b/pages.tr/linux/ip.md @@ -0,0 +1,37 @@ +# ip + +> Yönlendirmeyi, aygıtları, kural yönlendirmesini ve tünelleri görüntüle / değiştir. +> `ip address` gibi bazı alt komutların kendi kullanım belgeleri vardır. +> Daha fazla bilgi için: . + +- Arayüzlerin bilgilerini ayrıntılı bir şekilde listele: + +`ip address` + +- Arayüzlerin ağ katmanı bilgilerini kısa bir şekilde listele: + +`ip -brief address` + +- Arayüzlerin bağlantı katmanı bilgilerini kısa bir şekilde listele: + +`ip -brief link` + +- Yönlendirme tablosunu görüntüle: + +`ip route` + +- Komşuları (ARP tablosunu) göster: + +`ip neighbour` + +- Bir arayüzü etkinleştir/devre dışı bırak: + +`ip link set {{arayüz}} up/down` + +- Bir arayüze IP adresi ekle/sil: + +`ip addr add/del {{ip}}/{{maske}} dev {{arayüz}}` + +- Öntanımlı yönlendirme ekle: + +`ip route add default via {{ip}} dev {{arayüz}}` diff --git a/pages.tr/linux/megadl.md b/pages.tr/linux/megadl.md new file mode 100644 index 00000000000000..b065828da18c84 --- /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 00000000000000..fc7d6fa328c1b6 --- /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/nmcli-connection.md b/pages.tr/linux/nmcli-connection.md new file mode 100644 index 00000000000000..6a28bdca10f25e --- /dev/null +++ b/pages.tr/linux/nmcli-connection.md @@ -0,0 +1,32 @@ +# nmcli connection + +> NetworkManager ile bağlantı yönetimi. +> Daha fazla bilgi için: . + +- Tüm NetworkManager bağlantılarını listele (ad, UUID, tür ve aygıtı gösterir): + +`nmcli connection` + +- UUID belirterek bağlantıyı etkinleştir: + +`nmcli connection up uuid {{uuid}}` + +- Bağlantıyı devre dışı bırak: + +`nmcli connection down uuid {{uuid}}` + +- IPv4 ve IPv6 otomatik olarak yapılandırılan bir bağlantı oluştur: + +`nmcli connection add ifname {{arayüz_adı}} type {{ethernet}} ipv4.method {{auto}} ipv6.method {{auto}}` + +- Statik bir yalnızca IPv6 bağlantısı oluştur: + +`nmcli connection add ifname {{arayüz_adı}} type {{ethernet}} ip6 {{2001:db8::2/64}} gw6 {{2001:db8::1}} ipv6.dns {{2001:db8::1}} ipv4.method {{ignore}}` + +- Statik bir yalnızca IPv4 bağlantısı oluştur: + +`nmcli connection add ifname {{arayüz_adı}} type {{ethernet}} ip4 {{10.0.0.7/8}} gw4 {{10.0.0.1}} ipv4.dns {{10.0.0.1}} ipv6.method {{ignore}}` + +- Bir OVPN dosyasından OpenVPN kullanan bir VPN bağlantısı oluştur: + +`nmcli connection import type {{openvpn}} file {{vpn_yapılandırması.ovpn/dosyasının/yolu}}` diff --git a/pages.tr/linux/nmcli-device.md b/pages.tr/linux/nmcli-device.md new file mode 100644 index 00000000000000..4660f1002ce0cf --- /dev/null +++ b/pages.tr/linux/nmcli-device.md @@ -0,0 +1,20 @@ +# nmcli device + +> NetworkManager ile donanım aygıtı yönetimi. +> Daha fazla bilgi için: . + +- Tüm ağ arayüzlerinin durumlarını yazdır: + +`nmcli device status` + +- Kullanılabilir kablosuz erişim noktalarını yazdır: + +`nmcli device wifi` + +- Belirtilen ad ve parola ile kablosuz ağa bağlan: + +`nmcli device wifi connect {{ssid}} password {{parola}}` + +- Geçerli kablosuz ağ için parola ve QR kodunu yazdır: + +`nmcli device wifi show-password` diff --git a/pages.tr/linux/nmcli-monitor.md b/pages.tr/linux/nmcli-monitor.md new file mode 100644 index 00000000000000..0631ca2356f38a --- /dev/null +++ b/pages.tr/linux/nmcli-monitor.md @@ -0,0 +1,8 @@ +# nmcli monitor + +> NetworkManager bağlantı durumundaki değişiklikleri izleyin. +> Daha fazla bilgi için: . + +- NetworkManager değişikliklerini izlemeye başla: + +`nmcli monitor` diff --git a/pages.tr/linux/nmcli.md b/pages.tr/linux/nmcli.md new file mode 100644 index 00000000000000..0b1c0ab87e59c8 --- /dev/null +++ b/pages.tr/linux/nmcli.md @@ -0,0 +1,21 @@ +# nmcli + +> NetworkManager'ı denetlemek için bir komut satırı aracı. +> `nmcli monitor` gibi bazı alt komutların kendi kullanım belgeleri vardır. +> Daha fazla bilgi için: . + +- Bir `nmcli` alt komutunu çalıştır: + +`nmcli {{agent|connection|device|general|help|monitor|networking|radio}} {{komut_seçenekleri}}` + +- Kullanılan NetworkManager sürümünü görüntüle: + +`nmcli --version` + +- Yardımı görüntüle: + +`nmcli --help` + +- Bir alt komut için yardımı görüntüle: + +`nmcli {{alt_komut}} --help` diff --git a/pages.tr/linux/nmtui.md b/pages.tr/linux/nmtui.md new file mode 100644 index 00000000000000..c16e7f1de0c7f0 --- /dev/null +++ b/pages.tr/linux/nmtui.md @@ -0,0 +1,25 @@ +# nmtui + +> NetworkManager'ı denetlemek için metin tabanlı kullanıcı arayüzü. +> Gezinmek için ok tuşlarını, seçmek için Enter tuşunu kullanın. +> Daha fazla bilgi için: . + +- Kullanıcı arayüzünü aç: + +`nmtui` + +- Etkinleştirme veya devre dışı bırakma seçeneğiyle birlikte kullanılabilir bağlantıların bir listesini göster: + +`nmtui connect` + +- Belirtilen ağa bağlan: + +`nmtui connect {{ad|uuid|aygıt|SSID}}` + +- Belirtilen ağı düzenle/ekle/sil: + +`nmtui edit {{ad|kimlik}}` + +- Sistem ana makine adını ayarla: + +`nmtui hostname` diff --git a/pages.tr/linux/pacman-remove.md b/pages.tr/linux/pacman-remove.md index 804425b85d445d..2b7358ceb0c3c8 100644 --- a/pages.tr/linux/pacman-remove.md +++ b/pages.tr/linux/pacman-remove.md @@ -3,10 +3,6 @@ > Arch Linux paket yönetim aracı. > Daha fazla bilgi için: . -- Bu alt komut için yardım göster: - -`pacman --remove --help` - - Bir paket ve bağlılıklarını sil: `sudo pacman --remove --recursive {{paket_ismi}}` @@ -30,3 +26,7 @@ - (Bir paketin silinme durumunda) Etkilenecek paketleri (silmeden) listele: `pacman --remove --print {{paket_ismi}}` + +- Bu alt komut için yardım göster: + +`pacman --remove --help` diff --git a/pages.tr/linux/pacman-sync.md b/pages.tr/linux/pacman-sync.md index 1d0cfa211a16c9..2d1b9291c89500 100644 --- a/pages.tr/linux/pacman-sync.md +++ b/pages.tr/linux/pacman-sync.md @@ -7,7 +7,7 @@ `sudo pacman --sync {{paket_ismi}}` -- Tüm paketleri senkronize et ve güncelle (bahsi geçen paketleri güncellemeden indirmek için `--downloadonly` eki gereklidir) +- Tüm paketleri senkronize et ve güncelle (bahsi geçen paketleri güncellemeden indirmek için `--downloadonly` eki gereklidir): `sudo pacman --sync --refresh --sysupgrade` diff --git a/pages.tr/linux/pacman.md b/pages.tr/linux/pacman.md index a93d98eaaf062a..fe318d5d3f9583 100644 --- a/pages.tr/linux/pacman.md +++ b/pages.tr/linux/pacman.md @@ -5,15 +5,15 @@ - Tüm paketleri senkronize et ve güncelle: -`pacman -Syu` +`sudo pacman -Syu` - Yeni bir paket indir: -`pacman -S {{paket_ismi}}` +`sudo pacman -S {{paket_ismi}}` - Bir paket ve bağlılıklarını sil: -`pacman -Rs {{paket_ismi}}` +`sudo pacman -Rs {{paket_ismi}}` - Paket veritabanını girilen ifade ile arat: @@ -33,4 +33,4 @@ - Paket çerezlerini boş alan açmak için temizle: -`pacman -Scc` +`sudo pacman -Scc` diff --git a/pages.tr/linux/print.md b/pages.tr/linux/print.md new file mode 100644 index 00000000000000..c1b4a3dd7e3759 --- /dev/null +++ b/pages.tr/linux/print.md @@ -0,0 +1,13 @@ +# print + +> `run-mailcap` komutunun print özelliğinin öbür adı. +> Normalde `run-mailcap` komutu mime-tarzı/dosya işlemek için kullanılır. +> Daha fazla bilgi için: . + +- Bir dosyayı yazdır: + +`print {{dosya_ismi}}` + +- `run-mailcap` ile yazdır: + +`run-mailcap --action=print {{dosya_ismi}}` diff --git a/pages.tr/linux/pulseaudio.md b/pages.tr/linux/pulseaudio.md index 39ed3deb0b7224..9abd1abbdbc4a7 100644 --- a/pages.tr/linux/pulseaudio.md +++ b/pages.tr/linux/pulseaudio.md @@ -1,6 +1,7 @@ # pulseaudio > Ses sistem arkaplan uygulaması ve yöneticisi. +> Daha fazla bilgi için: . - Pulseaudio'nun çalışıp çalışmadığını kontrol et (sıfır olmayan çıktı, çalışmadığı anlamına gelir): diff --git a/pages.tr/linux/pw-cat.md b/pages.tr/linux/pw-cat.md new file mode 100644 index 00000000000000..e14af9a178287d --- /dev/null +++ b/pages.tr/linux/pw-cat.md @@ -0,0 +1,24 @@ +# pw-cat + +> Ses dosyalarını çalıştırmak ve kayıt etmek için pipewire aracı. +> Daha fazla bilgi için: . + +- Tüm erişilebilir oynatma hedeflerini sırala: + +`pw-cat --playback --list-targets` + +- Varsayılan hedef üzerinden bir WAV dosyası oynat: + +`pw-cat --playback {{örnek/konum/dosya.wav}}` + +- Tüm erişilebilir kayıt hedeflerini sırala: + +`pw-cat --record --list-targets` + +- Örnek bir kaydı farklı bir ses seviyesinde kayda al: + +`pw-cat --record --volume={{0.1}} {{örnek/konum/dosya.wav}}` + +- Örnek bir kaydı farklı bir örnek oran kullanarak kayda al: + +`pw-cat --record --rate={{6000}} {{örnek/konum/dosya.wav}}` diff --git a/pages.tr/linux/pw-cli.md b/pages.tr/linux/pw-cli.md new file mode 100644 index 00000000000000..7e876735a2a04f --- /dev/null +++ b/pages.tr/linux/pw-cli.md @@ -0,0 +1,16 @@ +# pw-cli + +> Pipewire komut satır arayüzü. +> Daha fazla bilgi için: . + +- Tüm düğümleri (taban ve kaynakları) ID'leri ile birlikte yazdır: + +`pw-cli list-objects Node` + +- Belirtilen ID'ye sahip objeye dair bilgileri yazdır: + +`pw-cli info {{4}}` + +- Tüm objelerin bilgilerini yazdır: + +`pw-cli info all` diff --git a/pages.tr/linux/pw-link.md b/pages.tr/linux/pw-link.md new file mode 100644 index 00000000000000..e84e907ae851a7 --- /dev/null +++ b/pages.tr/linux/pw-link.md @@ -0,0 +1,20 @@ +# pw-link + +> PipeWire'daki portlar arası linkleri yönet. +> Daha fazla bilgi için: . + +- Tüm ses çıktı ve girdi portlarını sırala: + +`pw-link --output --input'` + +- Çıktı ve girdi portları arasında bir bağlantı yarat: + +`pw-link {{çıktı_port_ismi}} {{girdi_port_ismi}}` + +- Disconnect two ports: + +`pw-link --disconnect {{çıktı_port_ismi}} {{girdi_port_ismi}}` + +- Yardım sayfası göster: + +`pw-link -h` diff --git a/pages.tr/linux/pw-loopback.md b/pages.tr/linux/pw-loopback.md new file mode 100644 index 00000000000000..046c83d3d2b962 --- /dev/null +++ b/pages.tr/linux/pw-loopback.md @@ -0,0 +1,28 @@ +# pw-loopback + +> PipeWire'da geri döngü cihazları yaratma aracı. +> Daha fazla bilgi için: . + +- Varsayılan geri döngü davranışına sahip bir geri döngü cihazı yarat: + +`pw-loopback` + +- Hoparlörlere otomatik olarak bağlanan bir geri döngü cihazı yarat: + +`pw-loopback -m '{{[FL FR]}}' --capture-props='{{media.class=Audio/Sink}}'` + +- Mikrofona otomatik olarak bağlanan bir geri döngü cihazı yarat: + +`pw-loopback -m '{{[FL FR]}}' --playback-props='{{media.class=Audio/Source}}'` + +- Hiçbir şeye otomatik olarak bağlanmayan salak bir geri döngü cihazı yarat: + +`pw-loopback -m '{{[FL FR]}}' --capture-props='{{media.class=Audio/Sink}}' --playback-props='{{media.class=Audio/Source}}'` + +- Hoparlörlere otomatik olarak bağlanan ve taban-kaynak arasında sağ-sol kanalların yerini değiştiren bir geri döngü cihazı yarat: + +`pw-loopback --capture-props='{{media.class=Audio/Sink audio.position=[FL FR]}}' --playback-props='{{audio.position=[FR FL]}}'` + +- Mikrofona otomatik olarak bağlanan ve taban-kaynak arasında sağ-sol kanalların yerini değiştiren bir geri döngü cihazı yarat: + +`pw-loopback --capture-props='{{audio.position=[FR FL]}}' --playback-props='{{media.class=Audio/Source audio.position=[FL FR]}}'` diff --git a/pages.tr/linux/pw-play.md b/pages.tr/linux/pw-play.md new file mode 100644 index 00000000000000..4fde0944b8a2d0 --- /dev/null +++ b/pages.tr/linux/pw-play.md @@ -0,0 +1,16 @@ +# pw-play + +> pw-cat --playback komutu için kısayol aracı. +> Daha fazla bilgi için: . + +- Tüm erişilebilir oynatma hedeflerini sırala: + +`pw-play --list-targets` + +- Varsayılan hedef üzerinden bir WAV sesi oynat: + +`pw-play {{örnek/konum/dosya.wav}}` + +- WAV sesini farklı bir ses yüksekliğinde oynat: + +`pw-play --volume={{0.1}} {{örnek/konum/dosya.wav}}` diff --git a/pages.tr/linux/pw-record.md b/pages.tr/linux/pw-record.md new file mode 100644 index 00000000000000..779cc3f1aa295b --- /dev/null +++ b/pages.tr/linux/pw-record.md @@ -0,0 +1,20 @@ +# pw-record + +> pw-cat --playback komutu için kısayol aracı. +> Daha fazla bilgi için: . + +- Tüm erişilebilir kayıt hedeflerini sırala: + +`pw-record --list-targets` + +- Varsayılan hedefi kullanarak örnek bir ses kaydı al: + +`pw-record {{örnek/konum/dosya.wav}}` + +- Farklı bir ses seviyesinde örnek ses kaydı al: + +`pw-record --volume={{0.1}} {{örnek/konum/dosya.wav}}` + +- Farklı bir kayıt oranı kullanarak örnek ses kaydı al: + +`pw-record --rate={{6000}} {{örnek/konum/dosya.wav}}` diff --git a/pages.tr/linux/pwd.md b/pages.tr/linux/pwd.md new file mode 100644 index 00000000000000..c888f079028aa9 --- /dev/null +++ b/pages.tr/linux/pwd.md @@ -0,0 +1,16 @@ +# pwd + +> Mevcut/çalışan dizinin ismini yazdır. +> Daha fazla bilgi için: . + +- Mevcut dizini yazdır: + +`pwd` + +- Mevcut dizini yazdır ve tüm symlink'leri çöz (yani "fiziksel" yolu göster): + +`pwd --physical` + +- Mevcut mantıksal dizini yazdır: + +`pwd --logical` diff --git a/pages.tr/linux/pwdx.md b/pages.tr/linux/pwdx.md new file mode 100644 index 00000000000000..f98fdb01d7ce1d --- /dev/null +++ b/pages.tr/linux/pwdx.md @@ -0,0 +1,8 @@ +# pwdx + +> Bir işlemin çalışan dizinini yazdır. +> Daha fazla bilgi için: . + +- Bir işlemin mevcut çalışan dizinini yazdır: + +`pwdx {{işlem_id'si}}` diff --git a/pages.tr/linux/trash.md b/pages.tr/linux/trash.md new file mode 100644 index 00000000000000..f099926edcd165 --- /dev/null +++ b/pages.tr/linux/trash.md @@ -0,0 +1,32 @@ +# trash + +> Çöp / geri dönüşüm kutusunu yönetmek için bir komut satırı arayüzü. +> Daha fazla bilgi için: . + +- Bir dosyayı sil (çöpe gönder): + +`trash {{örnek/dosya}}` + +- Çöpteki dosyaları göster: + +`trash-list` + +- Çöpteki dosyaları geri getir: + +`trash-restore` + +- Çöpü boşalt: + +`trash-empty` + +- Çöpü 10 gün öncesinden daha yeni atılan dosyalar hariç boşalt: + +`trash-empty {{10}}` + +- Çöptw 'foo' ismini taşıyan tüm dosyaları sil: + +`trash-rm foo` + +- Belirtilen konumdaki tüm dosyaları sil: + +`trash-rm {{/detaylı/örnek/konum/dosya_veya_dizin}}` diff --git a/pages.tr/linux/ubuntu-bug.md b/pages.tr/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..5b2cef3e24dfef --- /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/linux/wl-copy.md b/pages.tr/linux/wl-copy.md new file mode 100644 index 00000000000000..29225783c5b119 --- /dev/null +++ b/pages.tr/linux/wl-copy.md @@ -0,0 +1,21 @@ +# wl-copy + +> Wayland için pano değiştirme aracı. +> Ayrıca bakın: `wl-paste`. +> Daha fazla bilgi için: . + +- Metni panoya kopyala: + +`wl-copy {{metin}}` + +- Komutun çıktısını panoya kopyala: + +`{{komut}} | wl-copy` + +- Yalnızca bir yapıştırma için kopyala ve ardından temizle: + +`wl-copy --paste-once` + +- Panoyu temizle: + +`wl-copy --clear` diff --git a/pages.tr/linux/wl-paste.md b/pages.tr/linux/wl-paste.md new file mode 100644 index 00000000000000..325a3cb98d3433 --- /dev/null +++ b/pages.tr/linux/wl-paste.md @@ -0,0 +1,17 @@ +# wl-paste + +> Wayland için panoda saklanan verilere erişim aracı. +> Ayrıca bakın: `wl-copy`. +> Daha fazla bilgi için: . + +- Panonun içeriğini yapıştır: + +`wl-paste` + +- Panonun içeriğini bir dosyaya yaz: + +`wl-paste > {{dosya/yolu}}` + +- Panonun içeriğini bir komuta aktar: + +`wl-paste | {{komut}}` diff --git a/pages.tr/linux/wpa_cli.md b/pages.tr/linux/wpa_cli.md new file mode 100644 index 00000000000000..f70eaa55442bcf --- /dev/null +++ b/pages.tr/linux/wpa_cli.md @@ -0,0 +1,28 @@ +# wpa_cli + +> Kablosuz LAN arayüzleri ekleyin ve yapılandırın. +> Daha fazla bilgi için: . + +- Kullanılabilir ağları tara: + +`wpa_cli scan` + +- Tarama sonuçlarını göster: + +`wpa_cli scan_results` + +- Ağ ekle: + +`wpa_cli add_network {{numara}}` + +- Bir ağın SSID değerini ayarla: + +`wpa_cli set_network {{numara}} ssid "{{SSID}}"` + +- Ağı etkinleştir: + +`wpa_cli enable_network {{numara}}` + +- Yapılandırmayı kaydet: + +`wpa_cli save_config` diff --git a/pages.tr/linux/wpa_passphrase.md b/pages.tr/linux/wpa_passphrase.md new file mode 100644 index 00000000000000..508db360131c91 --- /dev/null +++ b/pages.tr/linux/wpa_passphrase.md @@ -0,0 +1,12 @@ +# wpa_passphrase + +> Belirtilen SSID için bir ASCII paroladan bir WPA-PSK anahtarı oluşturun. +> Daha fazla bilgi için: . + +- Standart girişten parolayı okuyarak belirtilen SSID için WPA-PSK anahtarını hesapla ve görüntüle: + +`wpa_passphrase {{SSID}}` + +- Parolayı argüman olarak belirterek belirtilen SSID için WPA-PSK anahtarını hesapla ve görüntüle: + +`wpa_passphrase {{SSID}} {{parola}}` diff --git a/pages.tr/linux/xeyes.md b/pages.tr/linux/xeyes.md index 85fafde4aaf228..3e6a3ee0847f7c 100644 --- a/pages.tr/linux/xeyes.md +++ b/pages.tr/linux/xeyes.md @@ -1,6 +1,7 @@ # xeyes > Ekranda fare imlecini takip eden bir çift göz göster. +> Daha fazla bilgi için: . - Xeyes'ı yerel makinenin varsayılan ekranında başlat: diff --git a/pages.tr/linux/xfce4-screenshooter.md b/pages.tr/linux/xfce4-screenshooter.md index 6df233ecca6c04..cc97ae6603b64c 100644 --- a/pages.tr/linux/xfce4-screenshooter.md +++ b/pages.tr/linux/xfce4-screenshooter.md @@ -1,6 +1,7 @@ # xfce4-screenshooter > XFCE4 ekran görüntüsü aracı. +> Daha fazla bilgi için: . - Ekran görüntüsü alma grafik arayüzünü başlat: diff --git a/pages.tr/linux/xfce4-terminal.md b/pages.tr/linux/xfce4-terminal.md index 010398f1a6867a..a4f2e2c95d53e2 100644 --- a/pages.tr/linux/xfce4-terminal.md +++ b/pages.tr/linux/xfce4-terminal.md @@ -1,6 +1,7 @@ # xfce4-terminal > XFCE4 terminal öykünücüsü. +> Daha fazla bilgi için: . - Yeni bir terminal penceresi aç: diff --git a/pages.tr/linux/xrandr.md b/pages.tr/linux/xrandr.md new file mode 100644 index 00000000000000..b4c729ba1896ed --- /dev/null +++ b/pages.tr/linux/xrandr.md @@ -0,0 +1,28 @@ +# xrandr + +> Bir ekran için boyut, yön ve/veya çıkış yansımasını ayarla. +> Daha fazla bilgi için: . + +- Sistemin mevcut durumunu göster (bilinen ekranlar, çözünürlükler, ...): + +`xrandr --query` + +- Bağlantısı kesilmiş çıkışları devre dışı bırak ve bağlanmış olanları varsayılan ayarlar ile devreye sok: + +`xrandr --auto` + +- DisplayPort 1'in çözünürlük ve yenileme hızını 1920x1080, 60Hz olarak değiştir: + +`xrandr --output {{DP1}} --mode {{1920x1080}} --rate {{60}}` + +- HDMI2'nin çözünürlüğünü 1280x1024'e değiştirip, DP1'in sağına koy: + +`xrandr --output {{HDMI2}} --mode {{1280x1024}} --right-of {{DP1}}` + +- VGA1 çıkışını devre dışı bırak: + +`xrandr --output {{VGA1}} --off` + +- LVDS1 için parlaklığı 50% yap: + +`xrandr --output {{LVDS1}} --brightness {{0.5}}` diff --git a/pages.tr/linux/xterm.md b/pages.tr/linux/xterm.md index b704c498283f7a..9de8ab27f0eeb4 100644 --- a/pages.tr/linux/xterm.md +++ b/pages.tr/linux/xterm.md @@ -1,6 +1,7 @@ # xterm > X Ekran Sistemi için terminal öykünücüsü. +> Daha fazla bilgi için: . - `Örnek` başlığına sahip bir terminal aç: diff --git a/pages.tr/osx/aa.md b/pages.tr/osx/aa.md new file mode 100644 index 00000000000000..fe030f2bfb2142 --- /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 00000000000000..53ff8efcd3b1f3 --- /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 00000000000000..ed0fbe7ad364ca --- /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 00000000000000..8d700db4ee3a96 --- /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 00000000000000..acbe99dbb65773 --- /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 00000000000000..ab29d8685d4102 --- /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 00000000000000..4b3aaab588b1cf --- /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 00000000000000..d0b056b29b879f --- /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 00000000000000..e942b9462fb725 --- /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 00000000000000..4effdc1be66bf0 --- /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 00000000000000..2fa46f2c2bfd5f --- /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 00000000000000..7dafde3062f01d --- /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 00000000000000..5371ae63cccdfc --- /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 00000000000000..a962776d637ee3 --- /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 00000000000000..bcd9076a7e9af4 --- /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 00000000000000..1b0ee2801aa4c7 --- /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 00000000000000..d4f8d64d1980d4 --- /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 00000000000000..1d820af1271ab9 --- /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 00000000000000..7239a4d159e4b9 --- /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 00000000000000..1a6b369f5b170e --- /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 00000000000000..a43889e829119d --- /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 00000000000000..60ba0d68600ce6 --- /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 00000000000000..125d898624a907 --- /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 00000000000000..b450d91397d248 --- /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 00000000000000..333569d60996ec --- /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 00000000000000..a35a01734bfc50 --- /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 00000000000000..2ade0632c28aab --- /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 00000000000000..910b718699d0e4 --- /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 00000000000000..99877275bcec65 --- /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 00000000000000..2efef981243034 --- /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 00000000000000..6676a142faf534 --- /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 00000000000000..d4fc5cf0ad0dce --- /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 00000000000000..7ff9bf0dfa580c --- /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 00000000000000..349d59f5557f46 --- /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 00000000000000..260453e336a4f2 --- /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 00000000000000..44e9ba032314db --- /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 00000000000000..00122f0dc90628 --- /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 00000000000000..81e563992abfc3 --- /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 00000000000000..0ae7bdffba0831 --- /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 00000000000000..95df45abc40a0e --- /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 00000000000000..6e3d8b5feafca8 --- /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 00000000000000..a637283c50a7b6 --- /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 00000000000000..26c1fff7f84f73 --- /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 00000000000000..6098b1c51974d5 --- /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 00000000000000..53bef779e00a65 --- /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 00000000000000..c763f658411765 --- /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 00000000000000..783fa1dd8b6b1e --- /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 00000000000000..f047325a64f359 --- /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 00000000000000..ce2e83adc2dd5c --- /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 00000000000000..b08f7bbd184483 --- /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 00000000000000..4dc3c9714a8d2f --- /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 00000000000000..85617c9cd75398 --- /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 00000000000000..9f0a88a0c3b5a1 --- /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 00000000000000..47f9675007f88e --- /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 00000000000000..9c5889f5254919 --- /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 00000000000000..312360acf19d9a --- /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 00000000000000..d35b2b33f9f911 --- /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 00000000000000..f8179d4e9f30bd --- /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 00000000000000..ef3e7ad09551b0 --- /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 00000000000000..2fda802d730303 --- /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 00000000000000..cd4723088d7e87 --- /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 00000000000000..e648d1538b78bc --- /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 00000000000000..974946d465623f --- /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 00000000000000..7723528cd954e6 --- /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 00000000000000..5edaf221441a7f --- /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 00000000000000..02b3000d8ddede --- /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 00000000000000..1645e90ad940f0 --- /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 00000000000000..d1bbd9fa691ddd --- /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 00000000000000..10694d9025ea5c --- /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 00000000000000..b699787bd5561c --- /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 00000000000000..71e07d29531d2c --- /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 00000000000000..4bbcc55948115e --- /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 00000000000000..14b1d581e94382 --- /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 00000000000000..93059aa6875aa1 --- /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 00000000000000..38b6f58685629a --- /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 00000000000000..42a883c018a485 --- /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 00000000000000..47d0bdd5c7c8e5 --- /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 00000000000000..ab27f714144e8b --- /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 00000000000000..8f643e569278b7 --- /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 00000000000000..f4be0cb3ac639b --- /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 00000000000000..057aaaefc47994 --- /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 00000000000000..c25d9fd197da77 --- /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 00000000000000..15c1e7f19414aa --- /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 00000000000000..e6521dba752511 --- /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 00000000000000..1dc6aaa82aaba9 --- /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 00000000000000..71e4c017c2911a --- /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 00000000000000..9b71df5c62e516 --- /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 00000000000000..8519102bf72e4d --- /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 00000000000000..f11203a327ff35 --- /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 00000000000000..c064ff1e016c1d --- /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 00000000000000..f17d955209a009 --- /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 00000000000000..11570309fcb7c9 --- /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 00000000000000..ce002164882198 --- /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 00000000000000..31b3c30df5be21 --- /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 00000000000000..5fa795fdf91715 --- /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 00000000000000..f016e7df2f51dd --- /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 00000000000000..ae85e5e0dd6835 --- /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 00000000000000..b1ee1f3a8048b8 --- /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 00000000000000..fabcfb808143dc --- /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 00000000000000..1814f9eb978c60 --- /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 00000000000000..2ee476c6ae75ba --- /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 00000000000000..27da4251d7dde4 --- /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 00000000000000..411df0c42181b8 --- /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 00000000000000..bb5a235ecab2e9 --- /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 00000000000000..c8e41d66edd69f --- /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 00000000000000..da4d21fa61812f --- /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 00000000000000..5261812b3a2983 --- /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 00000000000000..ec718b810b090c --- /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 00000000000000..ad3b4276e6a464 --- /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 00000000000000..c5fcc1ee63e86e --- /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 00000000000000..ab0e89cfffa720 --- /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 00000000000000..ba76a057534744 --- /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 00000000000000..43e965b3d9bb96 --- /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 00000000000000..d97437d896d656 --- /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 00000000000000..d97c774f9ec327 --- /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 00000000000000..0d7064377de627 --- /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 00000000000000..8bad46168d7417 --- /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 00000000000000..c466defd5e5f54 --- /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 00000000000000..4ef1e827dd817d --- /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 00000000000000..80cac8e1aca5df --- /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 00000000000000..daab244fc938d7 --- /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 00000000000000..5ed7bf731547e6 --- /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 00000000000000..34534ca31e6331 --- /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 00000000000000..7e57656a49c611 --- /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 00000000000000..9f9838a9ad3cf1 --- /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 00000000000000..a4b63b65a9a3cd --- /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 00000000000000..a58db9d995df6d --- /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 00000000000000..5f7172de2be57b --- /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 00000000000000..d55469dd13ad36 --- /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 00000000000000..e0172bacecfd7b --- /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 00000000000000..481f47c10680d7 --- /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 00000000000000..7f195076e0b668 --- /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 00000000000000..6fca9be18852ba --- /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 00000000000000..d60324566ffd8b --- /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 00000000000000..83d33d7cc903d6 --- /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 00000000000000..5bfb45923e4ceb --- /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 00000000000000..ead160c46d2aa0 --- /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 00000000000000..62b6d200b1b04b --- /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 00000000000000..3f8bc1f59b4066 --- /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 00000000000000..057632fc79d96b --- /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 00000000000000..9133b5d9cfc39a --- /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/sunos/devfsadm.md b/pages.tr/sunos/devfsadm.md new file mode 100644 index 00000000000000..0293210fb5d75d --- /dev/null +++ b/pages.tr/sunos/devfsadm.md @@ -0,0 +1,16 @@ +# devfsadm + +> `/dev` için yönetim komutu. `/dev` ad alanına yönetir. +> Daha fazla bilgi için: . + +- Yeni disk ara: + +`devfsadm -c disk` + +- Sarkab /dev bağlantılarını temizle ve yeni bir cihaz ara: + +`devfsadm -C -v` + +- Komut çalıştırılacağı takdirde ne olacağını gör ancak herhangi bir düzenleme yapma: + +`devfsadm -C -v -n` diff --git a/pages.tr/sunos/dmesg.md b/pages.tr/sunos/dmesg.md new file mode 100644 index 00000000000000..3ea3830a5128e2 --- /dev/null +++ b/pages.tr/sunos/dmesg.md @@ -0,0 +1,16 @@ +# dmesg + +> Kernel mesajlarını görüntüle. +> Daha fazla bilgi için: . + +- Kernel mesajlarını görüntüle: + +`dmesg` + +- Sistemde ne kadar fiziksel hafıza kaldığını göster: + +`dmesg | grep -i memory` + +- Kernel mesajlarını terminal ekranına sığacak ve her satıra bir tane gelecek şekilde göster: + +`dmesg | less` diff --git a/pages.tr/sunos/prctl.md b/pages.tr/sunos/prctl.md new file mode 100644 index 00000000000000..43db241768d96b --- /dev/null +++ b/pages.tr/sunos/prctl.md @@ -0,0 +1,16 @@ +# prctl + +> Çalışan işlemlerin, görevlerin ve projelerin kaynak kontrollerini öğren veya belirle. +> Daha fazla bilgi için: . + +- Belirtilen işlemin limit ve izinlerini incele: + +`prctl {{PID}}` + +- İşlem limit ve izinlerini makineye dayanıklı fortmattaExamine process limits and permissions in machine parsable format: + +`prctl -P {{PID}}` + +- Çalışan işlem için belirtilen limiti öğren: + +`prctl -n process.max-file-descriptor {{PID}}` diff --git a/pages.tr/sunos/prstat.md b/pages.tr/sunos/prstat.md new file mode 100644 index 00000000000000..c6ea309da29f7e --- /dev/null +++ b/pages.tr/sunos/prstat.md @@ -0,0 +1,24 @@ +# prstat + +> Aktif işlem istatistiklerini bildir. +> Daha fazla bilgi için: . + +- CPU kullanımına ayrılan tüm işlem ve raporların istatiğini incele: + +`prstat` + +- Hafıza kullanımına ayrılan tüm işlem ve raporların istatistiğini incele: + +`prstat -s rss` + +- Her bir kullanıcı için toplam kullanım özetini bildir: + +`prstat -t` + +- Mikrodurum işlem hesap açıklama bilgisini bildir: + +`prstat -m` + +- Saniye başı en çok CPU kullanan 5 işlemin listesini yazdır: + +`prstat -c -n 5 -s cpu 1` diff --git a/pages.tr/sunos/snoop.md b/pages.tr/sunos/snoop.md new file mode 100644 index 00000000000000..a3fdfeb48d1ac2 --- /dev/null +++ b/pages.tr/sunos/snoop.md @@ -0,0 +1,25 @@ +# snoop + +> Ağ paketi inceleyici. +> SunOS'in tcpdump alternatifi. +> Daha fazla bilgi için: . + +- Belirtilen ağ arayüzünde paketleri yakala: + +`snoop -d {{e1000g0}}` + +- Yakalanan paketleri terminalde göstermek yerine bir dosyaya kaydet: + +`snoop -o {{dosyaismi}}` + +- Belirtilen dosyadan paketlerin ayrıntılı protokol katman özetini görüntüle: + +`snoop -V -i {{dosyaismi}}` + +- Host isminden gelen ağ paketlerini yakala ve belirtilen port'a git: + +`snoop to port {{port}} from host {{hostismi}}` + +- İki IP adresi arasında takas edilen ağ paketleriini yakala ve hex değerlerini göster: + +`snoop -x0 -p4 {{ip_addresi_1}} {{ip_addresi_2}}` diff --git a/pages.tr/sunos/svcadm.md b/pages.tr/sunos/svcadm.md new file mode 100644 index 00000000000000..05f3039af735db --- /dev/null +++ b/pages.tr/sunos/svcadm.md @@ -0,0 +1,24 @@ +# svcadm + +> Servisleri idare et. +> Daha fazla bilgi için: . + +- Servis veritabanındaki bir servisi etkinleştir: + +`svcadm enable {{servis_ismi}}` + +- Servisi devre dışı bırak: + +`svcadm disable {{servis_ismi}}` + +- Çalışan bir servisi yeniden başlat: + +`svcadm restart {{servis_ismi}}` + +- Servise yapulandırma dosyalarını yeniden okumasını emret: + +`svcadm refresh {{servis_ismi}}` + +- Bir servisi bakım durumundan çıkar ve başlamasını emret: + +`svcadm clear {{servis_ismi}}` diff --git a/pages.tr/sunos/svccfg.md b/pages.tr/sunos/svccfg.md new file mode 100644 index 00000000000000..53e9c4cb12b9ad --- /dev/null +++ b/pages.tr/sunos/svccfg.md @@ -0,0 +1,16 @@ +# svccfg + +> Servis yapılandırmalarını içe aktar, dışa aktar ve düzenle. +> Daha fazla bilgi için: . + +- Yapılandırma dosyasını değerlendir: + +`svccfg validate {{smf.xml}}` + +- Servis yapılandırma dosyalarını belirtilen dosyaya yazılacak şekilde dışa aktar: + +`svccfg export {{servisismi}} > {{smf.xml}}` + +- Dosyadan servis yapılandırmalarını içe aktar/güncelle: + +`svccfg import {{smf.xml}}` diff --git a/pages.tr/sunos/svcs.md b/pages.tr/sunos/svcs.md new file mode 100644 index 00000000000000..bd406b77ae5682 --- /dev/null +++ b/pages.tr/sunos/svcs.md @@ -0,0 +1,24 @@ +# svcs + +> Çalışan servislere dair bilgileri sırala. +> Daha fazla bilgi için: . + +- Tüm çalışan servisleri sırala: + +`svcs` + +- Çalışmayan servisleri sırala: + +`svcs -vx` + +- Belirtilen servise dair bilgileri sırala: + +`svcs apache` + +- Servis kayıt dosyasının yerini göster: + +`svcs -L apache` + +- Servis kayıt dosyasının sonunu görüntüle: + +`tail $(svcs -L apache)` diff --git a/pages.tr/sunos/truss.md b/pages.tr/sunos/truss.md new file mode 100644 index 00000000000000..1d2d332ad422d5 --- /dev/null +++ b/pages.tr/sunos/truss.md @@ -0,0 +1,25 @@ +# truss + +> İzleme sistem çağrıları için sorun giderme aracı. +> SunOS'in strace alternatifi. +> Daha fazla bilgi için: . + +- Bir programı tüm alt işlemleriyle beraber çalıştırarak başlat: + +`truss -f {{program}}` + +- Belirtilen işlemi onun PID değerini girerek izlemeye başla: + +`truss -p {{pid}}` + +- Bir programı argümanları ve çevresel değerlerini göstererek başlar: + +`truss -a -e {{program}}` + +- Her bir sistem çağrısı için zaman, çağrı ve hataları say ve program çıkışında bunların özetini bildir: + +`truss -c -p {{pid}}` + +- Bir işlemi onun çıktısını sistem çağrısıyla süzerek izle: + +`truss -p {{pid}} -t {{system_çağrısı_ismi}}` diff --git a/pages.tr/windows/chrome.md b/pages.tr/windows/chrome.md new file mode 100644 index 00000000000000..6cc7a8ff9dddad --- /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 00000000000000..8609a9e6d41de6 --- /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 00000000000000..0e21b806f9f2f9 --- /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 00000000000000..1d2f25f1310c49 --- /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 00000000000000..acec675a9ab462 --- /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 00000000000000..3333af91e6f0fc --- /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 00000000000000..312569933e8e6b --- /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 00000000000000..6e3fed446432b7 --- /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 00000000000000..8187bcb309183e --- /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 00000000000000..2689eab9d4d882 --- /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 00000000000000..37770e51f9d557 --- /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 00000000000000..50eabe24a0c469 --- /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 00000000000000..67cad03803286c --- /dev/null +++ b/pages.uk/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> Ця команда є псевдонімом для `clamdscan`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr clamdscan` diff --git a/pages.uk/common/clang-cpp.md b/pages.uk/common/clang-cpp.md new file mode 100644 index 00000000000000..36476bfdbb8160 --- /dev/null +++ b/pages.uk/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> Ця команда є псевдонімом для `clang++`. + +- Дивись документацію для оригінальної команди: + +`tldr clang++` diff --git a/pages.uk/common/clojure.md b/pages.uk/common/clojure.md new file mode 100644 index 00000000000000..a7bc496b58808a --- /dev/null +++ b/pages.uk/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> Ця команда є псевдонімом для `clj`. + +- Дивись документацію для оригінальної команди: + +`tldr clj` diff --git a/pages.uk/common/cola.md b/pages.uk/common/cola.md new file mode 100644 index 00000000000000..7f4a181c6961e4 --- /dev/null +++ b/pages.uk/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> Ця команда є псевдонімом для `git-cola`. + +- Дивись документацію для оригінальної команди: + +`tldr git-cola` diff --git a/pages.uk/common/cron.md b/pages.uk/common/cron.md new file mode 100644 index 00000000000000..8215e67b15e659 --- /dev/null +++ b/pages.uk/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> Ця команда є псевдонімом для `crontab`. + +- Дивись документацію для оригінальної команди: + +`tldr crontab` diff --git a/pages.uk/common/dog.md b/pages.uk/common/dog.md new file mode 100644 index 00000000000000..4f93d121e26f19 --- /dev/null +++ b/pages.uk/common/dog.md @@ -0,0 +1,29 @@ +# dog + +> Утиліта пошуку DNS. +> Вона має кольоровий вихід, підтримує протоколи DNS-over-TLS і DNS-over-HTTPS та може видавати JSON. +> Більше інформації: . + +- Шукає IP-адреси пов'язані з іменем хоста (A records): + +`dog {{example.com}}` + +- Запитує тип записів MX, пов’язаних із заданим доменним ім’ям: + +`dog {{example.com}} MX` + +- Вкажіть конкретний DNS-сервер для запиту (наприклад, Cloudflare): + +`dog {{example.com}} MX @{{1.1.1.1}}` + +- Запит через TCP, а не UDP: + +`dog {{example.com}} MX @{{1.1.1.1}} --tcp` + +- Запитує тип записів MX, пов’язаних із заданим доменним ім’ям через TCP, використовуючи явні аргументи: + +`dog --query {{example.com}} --type MX --nameserver {{1.1.1.1}} --tcp` + +- Шукає IP-адреси, пов’язані з іменем хоста (записи A), за допомогою DNS через HTTPS (DoH): + +`dog {{example.com}} --https @{{https://cloudflare-dns.com/dns-query}}` diff --git a/pages.uk/common/dokku.md b/pages.uk/common/dokku.md new file mode 100644 index 00000000000000..aeeba51917d586 --- /dev/null +++ b/pages.uk/common/dokku.md @@ -0,0 +1,25 @@ +# dokku + +> Міні-Heroku на основі Docker (PaaS). +> Легко розгортає кілька програм на власному сервері різними мовами за допомогою однієї команди `git-push`. +> Більше інформації: . + +- Показати запущені програми: + +`dokku apps` + +- Створити програму: + +`dokku apps:create {{ім'я_програми}}` + +- Видалити програму: + +`dokku apps:destroy {{ім'я_програми}}` + +- Встановити плагін: + +`dokku plugin:install {{повний_url_на_репозиторій}}` + +- Зв'язати базу даних із програмою: + +`dokku {{db}}:link {{ім'я_бази_даних}} {{ім'я_програми}}` diff --git a/pages.uk/common/fossil-ci.md b/pages.uk/common/fossil-ci.md new file mode 100644 index 00000000000000..0fc67574d1d6b7 --- /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 00000000000000..dd111656ff0213 --- /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 00000000000000..216d0fd1ed109d --- /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 00000000000000..f2a0c6d72b7a8d --- /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 00000000000000..48e6f38b1b54c2 --- /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 new file mode 100644 index 00000000000000..4d7ff30b3c915e --- /dev/null +++ b/pages.uk/common/gist.md @@ -0,0 +1,32 @@ +# gist + +> Завантажує код у https://gist.github.com. +> Більше інформації: . + +- Увійти в gist на цьому комп'ютері: + +`gist --login` + +- Створити gist з будь-якої кількості текстових файлів: + +`gist {{ім'я_файлу.txt}} {{ім'я_файлу2.txt}}` + +- Створити приватний gist з описом: + +`gist --private --description "{{Змістовний опис}}" {{ім'я_файлу.txt}} ` + +- Прочитати контент з stdin і створити gist з цього: + +`{{echo "привіт світ"}} | gist` + +- Перелічити свої публічні та приватні gist: + +`gist --list` + +- Перелічити всі публічні gist будь-якого користувача: + +`gist --list {{ім'я_користувача}}` + +- Оновити gist за допомогою ID з URL: + +`gist --update {{GIST_ID}} {{ім'я_файлу.txt}}` diff --git a/pages.uk/common/git-abort.md b/pages.uk/common/git-abort.md new file mode 100644 index 00000000000000..1ec2eb08346cc4 --- /dev/null +++ b/pages.uk/common/git-abort.md @@ -0,0 +1,9 @@ +# git abort + +> Перериває поточне перебазування(rebase), злиття(merge) або вибір(cherry-pick). +> Частина `git-extras`. +> Більше інформації: . + +- Перериває Git перебазування(rebase), злиття(merge) або вибір(cherry-pick): + +`git abort` diff --git a/pages.uk/common/git-add.md b/pages.uk/common/git-add.md new file mode 100644 index 00000000000000..5f6ea5719838bf --- /dev/null +++ b/pages.uk/common/git-add.md @@ -0,0 +1,32 @@ +# git add + +> Додає змінені файли до індексу. +> Більше інформації: . + +- Додає змінені файли до індексу: + +`git add {{шлях/до/файлу}}` + +- Додає усі файли (контрольовані та неконтрольовані): + +`git add -A` + +- Додає тільки ті файли, що вже контрольовані: + +`git add -u` + +- Додає й ті файли, що ігноруються: + +`git add -f` + +- Інтерактивно індексує частини файлів: + +`git add -p` + +- Інтерактивно індексує частини вказаного файлу: + +`git add -p {{шлях/до/файлу}}` + +- Інтерактивно індексує файл: + +`git add -i` diff --git a/pages.uk/common/git-checkout-index.md b/pages.uk/common/git-checkout-index.md new file mode 100644 index 00000000000000..2b1ae3830c9a9a --- /dev/null +++ b/pages.uk/common/git-checkout-index.md @@ -0,0 +1,20 @@ +# git checkout-index + +> Копіює файли з індексу до робочої директорії. +> Більше інформації: . + +- Відновлює усі файли, що були видалені з часу останнього коміту: + +`git checkout-index --all` + +- Відновлює усі файли, що були видалені чи змінені з часу останнього коміту: + +`git checkout-index --all --force` + +- Відновлює усі файли, що були змінені з часу останнього коміту, ігноруючи файли, що були видалені: + +`git checkout-index --all --force --no-create` + +- Експортує копію робочої директорії, у стані останнього коміту, до вказаного каталогу (слеш наприкінці обов'язковий): + +`git checkout-index --all --force --prefix={{шлях/до/директорії_експорту/}}` diff --git a/pages.uk/common/git-checkout.md b/pages.uk/common/git-checkout.md new file mode 100644 index 00000000000000..f1f619a675f996 --- /dev/null +++ b/pages.uk/common/git-checkout.md @@ -0,0 +1,36 @@ +# git checkout + +> Перемикає на гілку чи шлях до робочої директорії. +> Більше інформації: . + +- Створює та перемикає на нову гілку: + +`git checkout -b {{назва_гілки}}` + +- Створює та перемикає на нову гілку спираючись на певне посилання (приклади посилань: гілка, віддалена/гілка, тег): + +`git checkout -b {{назва_гілки}} {{посилання}}` + +- Перемикає на локальну гілку, що вже існує: + +`git checkout {{назва_гілки}}` + +- Перемикає на попередню гілку: + +`git checkout -` + +- Перемикає на віддалену гілку, що вже існує: + +`git checkout --track {{назва_віддаленого_сховища}}/{{назва_гілки}}` + +- Відкидає усі неіндексовані зміни у поточній директорії (дізнайтесь більше про команди, як скасування, ознайомившись із `git reset`): + +`git checkout .` + +- Скасовує неіндексовані зміну у файлі: + +`git checkout {{ім'я_файлу}}` + +- Замінює файл у поточній директорії на його версію, яку було закомічено до вказаної гілки: + +`git checkout {{назва_гілки}} -- {{ім'я_файлу}}` diff --git a/pages.uk/common/git-clone.md b/pages.uk/common/git-clone.md new file mode 100644 index 00000000000000..172f6c7cbcb3c1 --- /dev/null +++ b/pages.uk/common/git-clone.md @@ -0,0 +1,36 @@ +# git clone + +> Клонує репозиторій, що існує. +> Більше інформації: . + +- Клонує репозиторій, що існує: + +`git clone {{шлях_до_віддаленого_репозиторію}}` + +- Клонує репозиторій, що існує, у задану директорію: + +`git clone {{шлях_до_віддаленого_репозиторію}} {{шлях/до/директорії}}` + +- Клонує репозиторій, що існує, та його підмодулі: + +`git clone --recursive {{шлях_до_віддаленого_репозиторію}}` + +- Клонує локальний репозиторій: + +`git clone -l {{шлях/до/локального/репозиторію}}` + +- Клонує тихо: + +`git clone -q {{шлях_до_віддаленого_репозиторію}}` + +- Клонує з репозиторію, що існує, тільки 10 останніх комітів з гілки по замовчанню (корисно для заощадження часу): + +`git clone --depth {{10}} {{шлях_до_віддаленого_репозиторію}}` + +- Клонує з репозиторію, що існує, тільки конкретну гілку: + +`git clone --branch {{ім'я}} --single-branch {{шлях_до_віддаленого_репозиторію}}` + +- Клонує репозиторій, що існує, використовуючи задану команду SSH: + +`git clone --config core.sshCommand="{{ssh -i шлях/до/приватного_ключа_ssh}}" {{шлях_до_віддаленого_репозиторію}}` diff --git a/pages.uk/common/git-commit-graph.md b/pages.uk/common/git-commit-graph.md new file mode 100644 index 00000000000000..666bdc75237072 --- /dev/null +++ b/pages.uk/common/git-commit-graph.md @@ -0,0 +1,16 @@ +# git commit-graph + +> Записує та перевіряє файл графіку комітів Git. +> Більше інформації: . + +- Записує файл графіку комітів для спакованих комітів у локальній директорії `.git`: + +`git commit-graph write` + +- Записує файл графіку комітів, що містить набір усіх досяжних комітів: + +`git show-ref --hash | git commit-graph write --stdin-commits` + +- Записує файл графіку комітів, що містить усі коміти у поточному файлі графіку комітів разом з тими, до яких можна отримати доступ з `HEAD`: + +`git rev-parse {{HEAD}} | git commit-graph write --stdin-commits --append` diff --git a/pages.uk/common/git-commit-tree.md b/pages.uk/common/git-commit-tree.md new file mode 100644 index 00000000000000..e3746787b59f48 --- /dev/null +++ b/pages.uk/common/git-commit-tree.md @@ -0,0 +1,21 @@ +# git commit-tree + +> Низькорівнева утиліта для створення об'єктів комітів. +> Дивись також: `git commit`. +> Більше інформації: . + +- Створює об'єкт коміту із певним повідомленням: + +`git commit-tree {{tree}} -m "{{повідомлення}}"` + +- Створює об'єкт коміту читаючи повідомлення з файлу (використовуй `-` для читання зі стандартного введення): + +`git commit-tree {{tree}} -F {{шлях/до/файлу}}` + +- Створює GPG-підписаний об'єкт коміту: + +`git commit-tree {{tree}} -m "{{повідомлення}}" --gpg-sign` + +- Створює об'єкт коміту із певним батьківським об'єктом коміту: + +`git commit-tree {{tree}} -m "{{повідомлення}}" -p {{sha_батьківського_коміту}}` diff --git a/pages.uk/common/git-commit.md b/pages.uk/common/git-commit.md new file mode 100644 index 00000000000000..c5192af2c8bc78 --- /dev/null +++ b/pages.uk/common/git-commit.md @@ -0,0 +1,32 @@ +# git commit + +> Комітить файли до репозиторію. +> Більше інформації: . + +- Комітить індексовані файли до репозиторію з повідомленням: + +`git commit -m "{{повідомлення}}"` + +- Комітить індексовані файли з повідомленням, що прочитано у файлі: + +`git commit --file {{шлях/до/файлу_з_повідомленням}}` + +- Автоматично індексує усі змінені файли і комітить їх з повідомленням: + +`git commit -a -m "{{повідомлення}}"` + +- Комітить індексовані файли та підписує ([S]ign) їх ключем GPG, що визначений у `~/.gitconfig`: + +`git commit -S -m "{{повідомлення}}"` + +- Оновлює останній коміт додаючи до нього щойно індексовані зміни, також змінює геш коміту: + +`git commit --amend` + +- Комітить тільки певні (вже індексовані) файли: + +`git commit {{шлях/до/файлу1}} {{шлях/до/файлу2}}` + +- Створює коміт, навіть якщо немає жодного індексованого файлу: + +`git commit -m "{{повідомлення}}" --allow-empty` diff --git a/pages.uk/common/git-commits-since.md b/pages.uk/common/git-commits-since.md new file mode 100644 index 00000000000000..9705c106e412e1 --- /dev/null +++ b/pages.uk/common/git-commits-since.md @@ -0,0 +1,21 @@ +# git commits-since + +> Виводить коміти починаючи з певного періоду часу або дати. +> Частина `git-extras`. +> Більше інформації: . + +- Виводить коміти починаючи зі вчора: + +`git commits-since {{yesterday}}` + +- Виводить коміти починаючи з минулого тижня: + +`git commits-since {{last week}}` + +- Виводить коміти починаючи з минулого місяця: + +`git commits-since {{last month}}` + +- Виводить коміти починаючи зі вчора з 14:00: + +`git commits-since {{yesterday 2pm}}` diff --git a/pages.uk/common/git-config.md b/pages.uk/common/git-config.md new file mode 100644 index 00000000000000..18db45722ecaca --- /dev/null +++ b/pages.uk/common/git-config.md @@ -0,0 +1,37 @@ +# git config + +> Керує спеціальними параметрами конфігурації для репозиторію Git. +> Конфігурації можуть бути локальні (для поточного репозиторію) або глобальні (для поточного користувача). +> Більше інформації: . + +- Надає перелік лише локальних налаштувань (що зберігаються у `.git/config` поточного репозиторію): + +`git config --list --local` + +- Надає перелік лише глобальних налаштувань (що зберігаються у `~/.gitconfig`): + +`git config --list --global` + +- Надає перелік усіх налаштувань незалежно від того, визначені вони локально чи глобально: + +`git config --list` + +- Отримує значення для наданого параметру конфігурації: + +`git config alias.unstage` + +- Встановлює глобальне значення для наданого параметру конфігурації: + +`git config --global alias.unstage "reset HEAD --"` + +- Повертає значення по замовчанню для наданого глобального параметру конфігурації: + +`git config --global --unset alias.unstage` + +- Відкриває для редагування файл конфігурацій поточного репозиторію у редакторі по замовчуванню: + +`git config --edit` + +- Відкриває для редагування файл з глобальними конфігураціями у редакторі по замовчанню: + +`git config --global --edit` diff --git a/pages.uk/common/git-merge.md b/pages.uk/common/git-merge.md new file mode 100644 index 00000000000000..c7a45612f8713d --- /dev/null +++ b/pages.uk/common/git-merge.md @@ -0,0 +1,20 @@ +# git merge + +> Злиття гілок разом. +> Більше інформації: . + +- Злиття гілки з поточною гілкою: + +`git merge {{назва_гілки}}` + +- Редагує повідомлення при злитті гілок: + +`git merge -e {{назва_гілки}}` + +- Зливає гілки і створює комміт злиття: + +`git merge --no-ff {{назва_гілки}}` + +- Перериває злиття у випадку конфлікту: + +`git merge --abort` diff --git a/pages.uk/common/git-pull.md b/pages.uk/common/git-pull.md new file mode 100644 index 00000000000000..690c07f24c78ed --- /dev/null +++ b/pages.uk/common/git-pull.md @@ -0,0 +1,16 @@ +# git pull + +> Отримує дані з віддаленого репозиторію та зливає їх із локальним. +> Більше інформації: . + +- Завантажити зміни із типового віддаленого репозиторію та злити їх: + +`git pull` + +- Завантажити зміни із типового віддаленого репозиторію та злити їх, використовуючи перемотання: + +`git pull --rebase` + +- Завантажити зміни із певної гілки вказаного віддаленого репозиторію, а потім злити їх у HEAD: + +`git pull {{назва_сховища}} {{назва_гілки}}` diff --git a/pages.uk/common/git-push.md b/pages.uk/common/git-push.md new file mode 100644 index 00000000000000..f7f9dd871c3104 --- /dev/null +++ b/pages.uk/common/git-push.md @@ -0,0 +1,36 @@ +# git push + +> Надсилає коміти до віддаленого репозиторію. +> Більше інформації: . + +- Надіслати локальні зміни у поточній гілці до її типового віддаленого відповідника: + +`git push` + +- Надіслати зміни із вказаної локальної гілки до її віддаленого відповідника: + +`git push {{назва_сховища}} {{локальна_гілка}}` + +- Надіслати зміни із вказаної локальної гілки до її віддаленого відповідника та встановити цю віддалену гілку як типову для дій надсилання і стягування: + +`git push -u {{назва_сховища}} {{локальна_гілка}}` + +- Надіслати зміни із вказаної локальної гілки до вказаної віддаленої: + +`git push {{назва_сховища}} {{локальна_гілка}}:{{віддалена_гілка}}` + +- Надіслати зміни з усіх локальних гілок до їх відповідників у вказаному віддаленому репозиторії: + +`git push --all {{назва_сховища}}` + +- Видалити гілку у віддаленому репозиторії: + +`git push {{назва_сховища}} --delete {{віддалена_гілка}}` + +- Видалити віддалену гілку, що не містить локального відповідника: + +`git push --prune {{назва_сховища}}` + +- Надіслати мітки, що відсутні у віддаленому репозиторії: + +`git push --tags` diff --git a/pages.uk/common/git-status.md b/pages.uk/common/git-status.md new file mode 100644 index 00000000000000..19f811a69fbda1 --- /dev/null +++ b/pages.uk/common/git-status.md @@ -0,0 +1,21 @@ +# git status + +> Показує зміни до файлів у Git-репозиторії. +> Списки змінених, доданих та видалених файлів в порівнянні до поточного зареєстрованого коміту. +> Більше інформації: . + +- Показує змінені файли які ще не додані до коміту: + +`git status` + +- Виводить інформацію у стислому ([s]hort) форматі: + +`git status -s` + +- Виводить інформацію без неконтрольованих файлів: + +`git status --untracked-files=no` + +- Виводить інформацію у стислому ([s]hort) форматі разом з інформацією про гілку ([b]ranch): + +`git status -sb` diff --git a/pages.uk/common/git.md b/pages.uk/common/git.md new file mode 100644 index 00000000000000..a8bc1208964e7e --- /dev/null +++ b/pages.uk/common/git.md @@ -0,0 +1,29 @@ +# git + +> Розподілена система контролю версій. +> Деякі команди, як от `git commit`, мають свою власну документацію. +> Більше інформації: . + +- Перевіряє версію Git: + +`git --version` + +- Показує базову допомогу: + +`git --help` + +- Показує допомогу з певної підкоманди Git (наприклад, `commit`, `log` чи іншої): + +`git help {{підкоманда}}` + +- Виконує підкоманду Git: + +`git {{підкоманда}}` + +- Виконує підкоманду Git у довільному репозиторії, вказавши шлях до нього: + +`git -C {{шлях/до/репозиторію}} {{підкоманда}}` + +- Виконує команду Git із вказаними параметрами: + +`git -c '{{config.key}}={{значення}}' {{підкоманда}}` diff --git a/pages.uk/common/gnmic-sub.md b/pages.uk/common/gnmic-sub.md new file mode 100644 index 00000000000000..6d6c3aab4777b9 --- /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 00000000000000..21f5258eacc1d3 --- /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 00000000000000..b4465888f67af1 --- /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 00000000000000..ce8b1b458c7715 --- /dev/null +++ b/pages.uk/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> Ця команда є псевдонімом для `kcat`. + +- Дивись документацію для оригінальної команди: + +`tldr kcat` diff --git a/pages.uk/common/llvm-ar.md b/pages.uk/common/llvm-ar.md new file mode 100644 index 00000000000000..024ee41db38143 --- /dev/null +++ b/pages.uk/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> Ця команда є псевдонімом для `ar`. + +- Дивись документацію для оригінальної команди: + +`tldr ar` diff --git a/pages.uk/common/llvm-g++.md b/pages.uk/common/llvm-g++.md new file mode 100644 index 00000000000000..cf2fa86ecbe2ef --- /dev/null +++ b/pages.uk/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> Ця команда є псевдонімом для `clang++`. + +- Дивись документацію для оригінальної команди: + +`tldr clang++` diff --git a/pages.uk/common/llvm-gcc.md b/pages.uk/common/llvm-gcc.md new file mode 100644 index 00000000000000..469c33b04923aa --- /dev/null +++ b/pages.uk/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> Ця команда є псевдонімом для `clang`. + +- Дивись документацію для оригінальної команди: + +`tldr clang` diff --git a/pages.uk/common/llvm-nm.md b/pages.uk/common/llvm-nm.md new file mode 100644 index 00000000000000..a0474f2d4ad944 --- /dev/null +++ b/pages.uk/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> Ця команда є псевдонімом для `nm`. + +- Дивись документацію для оригінальної команди: + +`tldr nm` diff --git a/pages.uk/common/llvm-objdump.md b/pages.uk/common/llvm-objdump.md new file mode 100644 index 00000000000000..b13bb4d9b7054a --- /dev/null +++ b/pages.uk/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> Ця команда є псевдонімом для `objdump`. + +- Дивись документацію для оригінальної команди: + +`tldr objdump` diff --git a/pages.uk/common/llvm-strings.md b/pages.uk/common/llvm-strings.md new file mode 100644 index 00000000000000..a9fbc6a3d1112d --- /dev/null +++ b/pages.uk/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> Ця команда є псевдонімом для `strings`. + +- Дивись документацію для оригінальної команди: + +`tldr strings` diff --git a/pages.uk/common/lzcat.md b/pages.uk/common/lzcat.md new file mode 100644 index 00000000000000..8ea37f07840211 --- /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 00000000000000..92ff0a1d817e15 --- /dev/null +++ b/pages.uk/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/mscore.md b/pages.uk/common/mscore.md new file mode 100644 index 00000000000000..91c9fde45490b5 --- /dev/null +++ b/pages.uk/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> Ця команда є псевдонімом для `musescore`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr musescore` diff --git a/pages.uk/common/nm-classic.md b/pages.uk/common/nm-classic.md new file mode 100644 index 00000000000000..2a45ff480296c9 --- /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 00000000000000..9d0d320698e012 --- /dev/null +++ b/pages.uk/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> Ця команда є псевдонімом для `netlify`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr netlify` diff --git a/pages.uk/common/openssl.md b/pages.uk/common/openssl.md new file mode 100644 index 00000000000000..f25fe7a8c514f7 --- /dev/null +++ b/pages.uk/common/openssl.md @@ -0,0 +1,17 @@ +# openssl + +> Набір кріптографічних інструментів OpenSSL. +> Деякі підкоманди, такі як `openssl req` мають власну документацію щодо використання. +> Більше інформації: . + +- Вивести список доступних підкоманд: + +`openssl help` + +- Вивести параметри для певної команди: + +`openssl help {{x509}}` + +- Вивести версію OpenSSL: + +`openssl version` diff --git a/pages.uk/common/pio-init.md b/pages.uk/common/pio-init.md new file mode 100644 index 00000000000000..7b397915639d12 --- /dev/null +++ b/pages.uk/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> Ця команда є псевдонімом для `pio project`. + +- Дивись документацію для оригінальної команди: + +`tldr pio project` diff --git a/pages.uk/common/piodebuggdb.md b/pages.uk/common/piodebuggdb.md new file mode 100644 index 00000000000000..289fa7c88a1ea9 --- /dev/null +++ b/pages.uk/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> Ця команда є псевдонімом для `pio debug`. + +- Дивись документацію для оригінальної команди: + +`tldr pio debug` diff --git a/pages.uk/common/platformio.md b/pages.uk/common/platformio.md new file mode 100644 index 00000000000000..9f94a6a86ea8e2 --- /dev/null +++ b/pages.uk/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> Ця команда є псевдонімом для `pio`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr pio` diff --git a/pages.uk/common/ptpython3.md b/pages.uk/common/ptpython3.md new file mode 100644 index 00000000000000..942f3b50f06a6f --- /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 00000000000000..24754fb7f72628 --- /dev/null +++ b/pages.uk/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> Ця команда є псевдонімом для `python`. + +- Дивись документацію для оригінальної команди: + +`tldr python` diff --git a/pages.uk/common/r2.md b/pages.uk/common/r2.md new file mode 100644 index 00000000000000..48c87953f26a15 --- /dev/null +++ b/pages.uk/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> Ця команда є псевдонімом для `radare2`. + +- Дивись документацію для оригінальної команди: + +`tldr radare2` diff --git a/pages.uk/common/rcat.md b/pages.uk/common/rcat.md new file mode 100644 index 00000000000000..4708a83cea3b62 --- /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 00000000000000..e660513f55ba79 --- /dev/null +++ b/pages.uk/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> Ця команда є псевдонімом для `rg`. + +- Дивись документацію для оригінальної команди: + +`tldr rg` diff --git a/pages.uk/common/tldr.md b/pages.uk/common/tldr.md new file mode 100644 index 00000000000000..c7e97b39459151 --- /dev/null +++ b/pages.uk/common/tldr.md @@ -0,0 +1,20 @@ +# tldr + +> Відображає прості сторінки допомоги для інструментів командного рядка з проекту tldr-pages. +> Більше інформації: . + +- Показує типове використання команди (підказка: це те, як ви потрапили сюди!): + +`tldr {{команда}}` + +- Показує tldr сторінку для команди `cd` на вказаній платформі: + +`tldr -p {{android|linux|osx|sunos|windows}} {{cd}}` + +- Показує tldr сторінку для підкоманди Git `git checkout`: + +`tldr {{git-checkout}}` + +- Оновлює локальні tldr сторінки (якщо клієнт підтримує кешування): + +`tldr -u` diff --git a/pages.uk/common/tldrl.md b/pages.uk/common/tldrl.md new file mode 100644 index 00000000000000..94d4bf4edaa0ce --- /dev/null +++ b/pages.uk/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> Ця команда є псевдонімом для `tldr-lint`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr tldr-lint` diff --git a/pages.uk/common/tlmgr-arch.md b/pages.uk/common/tlmgr-arch.md new file mode 100644 index 00000000000000..1586c3cc907832 --- /dev/null +++ b/pages.uk/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> Ця команда є псевдонімом для `tlmgr platform`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr tlmgr platform` diff --git a/pages.uk/common/todoman.md b/pages.uk/common/todoman.md new file mode 100644 index 00000000000000..2703fb99a365a5 --- /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 00000000000000..39dbf197921e1d --- /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 00000000000000..08f0621851fd39 --- /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 00000000000000..aaf3f10df18503 --- /dev/null +++ b/pages.uk/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> Ця команда є псевдонімом для `xz`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr xz` diff --git a/pages.uk/common/vi.md b/pages.uk/common/vi.md new file mode 100644 index 00000000000000..160bd63970b933 --- /dev/null +++ b/pages.uk/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> Ця команда є псевдонімом для `vim`. + +- Дивись документацію для оригінальної команди: + +`tldr vim` diff --git a/pages.uk/common/vim.md b/pages.uk/common/vim.md new file mode 100644 index 00000000000000..4630ed8f96800c --- /dev/null +++ b/pages.uk/common/vim.md @@ -0,0 +1,37 @@ +# vim + +> Vim (Vi IMproved), консольний текстовий редактор, надає різні режими для різних маніпуляцій над текстом. +> Натиснувши `i` потрапляємо в режим вставки (insert mode). `` повертає у нормальний режим (normal mode), який дозволяє користуватися командами Vim. +> Більше інформації: . + +- Відкрити файл: + +`vim {{шлях/до/файлу}}` + +- Відкрити файл на визначеноу рядку: + +`vim +{{номер_рядку}} {{шлях/до/файлу}}` + +- Подивитися допомогу Vim: + +`:help` + +- Зберегти і вийти: + +`:wq` + +- Анулювати (undo) останню операцію: + +`u` + +- Знайти паттерн у файлі (натисніть `n`/`N` щоб перейти до наступного/попереднього збігу): + +`/{{паттерн_для_пошуку}}` + +- Виконати регексп заміну в цілому файлі: + +`:%s/{{регексп_вираз}}/{{заміна}}/g` + +- Показати номери рядків: + +`:set nu` diff --git a/pages.uk/common/xzcat.md b/pages.uk/common/xzcat.md new file mode 100644 index 00000000000000..804710422319e2 --- /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 00000000000000..d1e4fe5877b801 --- /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-moo.md b/pages.uk/linux/apt-moo.md new file mode 100644 index 00000000000000..a9292b17d74325 --- /dev/null +++ b/pages.uk/linux/apt-moo.md @@ -0,0 +1,8 @@ +# apt moo + +> Пасхалка від менеджеру пакетів `APT`. +> Більше інформації: . + +- Друкує коров'ячу пасхалку: + +`apt moo` diff --git a/pages.uk/linux/batcat.md b/pages.uk/linux/batcat.md new file mode 100644 index 00000000000000..6a49ad48149d44 --- /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 00000000000000..9bc38565ee4f9a --- /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 00000000000000..8d3e2aa8616758 --- /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 00000000000000..4d7cdf0d782222 --- /dev/null +++ b/pages.uk/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> Ця команда є псевдонімом для `cgclassify`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr cgclassify` diff --git a/pages.uk/linux/cp.md b/pages.uk/linux/cp.md new file mode 100644 index 00000000000000..9ca1c76d6bec4a --- /dev/null +++ b/pages.uk/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> Скопіювати файли і папки. +> Більше інформації: . + +- Скопіювати файл в інше місце: + +`cp {{шлях/до/файлу_який_скопіювати.ext}} {{шлях/до/файлу_в_який_скопіювати.ext}}` + +- Скопіювати файл в іншу папку, зберугіючи назву файлу: + +`cp {{шлях/до/файлу_який_скопіювати.ext}} {{шлях/до/папки_в_яку_скопіювати}}` + +- Рекурсивно скопіювати вміст папки до іншого місця (якщо місце призначення існує, папка скопіюється всередину нього): + +`cp -r {{шлях/до/файлу_який_скопіювати}} {{шлях/до/папки_в_яку_скопіювати}}` + +- Скопіювати папку рекурсивно у докладнішому режимі (показує файли у міру їх копіювання): + +`cp -vr {{шлях/до/папки_яку_спопіювати}} {{шлях/до/папки_в_яку_скопіювати}}` + +- Скопіювати текстові файли в інше місце в інтерактивному режимі (запитує користувача перед перезаписом): + +`cp -i {{*.txt}} {{шлях/до/папки_в_яку_скопіювати}}` + +- Зберігає символічні посилання(symbolic link) перед копіюванням: + +`cp -L {{посилання}} {{шлях/до/папки_в_яку_скопіювати}}` + +- Використовує повний шлях файлу який потрібно скопіювати, створюючи будь-які відсутні проміжні папки під час копіювання: + +`cp --parents {{повний/шлях/до/файлу}} {{шлях/до/бажаного_файлу}}` diff --git a/pages.uk/linux/ip-route-list.md b/pages.uk/linux/ip-route-list.md new file mode 100644 index 00000000000000..8767b962e4e408 --- /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/megadl.md b/pages.uk/linux/megadl.md new file mode 100644 index 00000000000000..818e36866c1c8e --- /dev/null +++ b/pages.uk/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> Ця команда є псевдонімом для `megatools-dl`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr megatools-dl` diff --git a/pages.uk/linux/ncal.md b/pages.uk/linux/ncal.md new file mode 100644 index 00000000000000..81e68618fecf99 --- /dev/null +++ b/pages.uk/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> Ця команда є псевдонімом для `cal`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr cal` diff --git a/pages.uk/linux/ubuntu-bug.md b/pages.uk/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..73ef51975954ea --- /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/osx/aa.md b/pages.uk/osx/aa.md new file mode 100644 index 00000000000000..211917676da797 --- /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 00000000000000..e88a71f5a1cb07 --- /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 00000000000000..2547641ba5f518 --- /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 00000000000000..6dc7c9288120ba --- /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 00000000000000..bb0eca318876d9 --- /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 00000000000000..19d703f4815adb --- /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 00000000000000..8abd22357a5d7e --- /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 00000000000000..a9930ed5575bc1 --- /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 00000000000000..4891f5e8ae91de --- /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 00000000000000..e30e070b5e9f2a --- /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 00000000000000..54ad9d2ca67a64 --- /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 00000000000000..d006f25d95d39e --- /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 00000000000000..66dc83b25e823f --- /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 00000000000000..549edbb9ea5c2d --- /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 00000000000000..cafaad8d42b6b0 --- /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 00000000000000..6080068ee4fdbc --- /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 00000000000000..8fde3ae0f5d132 --- /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 00000000000000..c84ef6aceea723 --- /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 00000000000000..feadefe577c70e --- /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 00000000000000..2b5dbeb2824cf2 --- /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 00000000000000..a5e04c9aa6e713 --- /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 00000000000000..cbd5df96414dbe --- /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 00000000000000..108e00a80a7fe0 --- /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 00000000000000..552d61e46da31c --- /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 00000000000000..c190dc2474431d --- /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 00000000000000..eb71ea4a685831 --- /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 00000000000000..4016e3fee58819 --- /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 00000000000000..9a39d0cc507467 --- /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 00000000000000..2b3e3fd858885a --- /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 00000000000000..5d9340da4674c6 --- /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 00000000000000..7bdc795643141b --- /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 00000000000000..74732999b7301b --- /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 00000000000000..a0dd002a11292b --- /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 00000000000000..94ba3d470c250a --- /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 00000000000000..6789203b9cd7b5 --- /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 00000000000000..c41825e87eccdf --- /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 00000000000000..8f5ea5d302f68c --- /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 00000000000000..f1b716aa840a3f --- /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 00000000000000..92a973deff5cf1 --- /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 00000000000000..9436ca7f65a6fa --- /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 00000000000000..360c5dfea65b0c --- /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 00000000000000..964ec6e80d3a0c --- /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 00000000000000..304932f1099b2e --- /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 00000000000000..4394523e536dbc --- /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 00000000000000..9e725690615cc0 --- /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 00000000000000..4c05f800cabd4b --- /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 00000000000000..da5107c35c25b2 --- /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 00000000000000..35d343fb70e5cb --- /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 00000000000000..3b9eacc09b33e6 --- /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 00000000000000..ac69f07872ee41 --- /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 00000000000000..895bd108952a6e --- /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 00000000000000..d9bd89a117e3c6 --- /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 00000000000000..7fdfa1d5e2b453 --- /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 00000000000000..541f3f0864b78a --- /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 00000000000000..8493e6d9b6fbbd --- /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 00000000000000..240c50a0196752 --- /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 00000000000000..bcc1d46d1a2e22 --- /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 00000000000000..aad415ae9f5801 --- /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 00000000000000..78bc10cfd7165c --- /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 00000000000000..1c4ba41158215f --- /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 00000000000000..17592404ee513a --- /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 00000000000000..41acbc11191781 --- /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 00000000000000..24a410161201bc --- /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 00000000000000..a98c8a38e17ae3 --- /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 00000000000000..9ef7c26ed69889 --- /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 00000000000000..4a4c09bcd38ce5 --- /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 00000000000000..96c9c7b319f330 --- /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 00000000000000..f23f4ab088d27e --- /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 00000000000000..c2f64329cacf76 --- /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 00000000000000..0bd76b94fffcc3 --- /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 00000000000000..6f536396ddbb69 --- /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 00000000000000..3b943e2896e1b9 --- /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 00000000000000..bc637f67c4ab41 --- /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 00000000000000..38b5c43b9c6530 --- /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 00000000000000..dd94dd238fe063 --- /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 00000000000000..22d7c08814a599 --- /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 00000000000000..7572b9921f49a8 --- /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 00000000000000..eb00a358a5639f --- /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 00000000000000..770d9e1576a07f --- /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 00000000000000..064967c30d8c4c --- /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 00000000000000..171b0bf4929c36 --- /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 00000000000000..915c559fa40ff9 --- /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 00000000000000..16ba5977d75b75 --- /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 00000000000000..3cc3c02cb8803b --- /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 00000000000000..3c51c5ed4143d9 --- /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 00000000000000..d31d88fcf912f2 --- /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 00000000000000..4a041cf64ab8b2 --- /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 00000000000000..0930e3fd913b49 --- /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 00000000000000..38212cc7501671 --- /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 00000000000000..bf726ffd1dbccf --- /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 00000000000000..6aca70bf0a44f6 --- /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 00000000000000..d676956b84ca3f --- /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 00000000000000..e9e50137c73bfe --- /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 00000000000000..7c610bf2dfb77b --- /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 00000000000000..fe171ae48130ee --- /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 00000000000000..fde640181517cc --- /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 00000000000000..c0c74caed663d6 --- /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 00000000000000..0c85f3ed75bb33 --- /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 00000000000000..d25653ace0c332 --- /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 00000000000000..754a3ff9b29c3f --- /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 00000000000000..bbb8af1da80b72 --- /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 00000000000000..f3b9092301b8b4 --- /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 00000000000000..d0a7de65b391e6 --- /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 00000000000000..a05f44bb8dfabd --- /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 00000000000000..3bb5c46c0a4f2d --- /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 00000000000000..5dd268660062cd --- /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 00000000000000..e409252c4b6c1d --- /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 00000000000000..3fa4c30d446614 --- /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 00000000000000..633937a561a86b --- /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 00000000000000..9364c30b697dde --- /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 00000000000000..1f107649fc0617 --- /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 00000000000000..ab6436d6b22332 --- /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 00000000000000..4e8fe1961af2d3 --- /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 00000000000000..bab943b174e5fe --- /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 00000000000000..a1efe86cc4c39f --- /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 00000000000000..d6e33630c9f7be --- /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 00000000000000..08b327264868dd --- /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 00000000000000..d3006bbbda6608 --- /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 00000000000000..ca15918f1f2fb0 --- /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 00000000000000..110bcee9bcf0b5 --- /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 00000000000000..b1c81c853eb82a --- /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 00000000000000..81fa686dbf135a --- /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 00000000000000..a7046d9e5e01c6 --- /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 00000000000000..063a700dafd7de --- /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 00000000000000..45d64b525bdac2 --- /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 00000000000000..8bbb3674cce013 --- /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 00000000000000..de6aebda0e48f5 --- /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 00000000000000..6e5363611b50d2 --- /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 00000000000000..6eb457d0dae4cb --- /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 00000000000000..d150bfdc7629ee --- /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 00000000000000..5c9442df19cc3b --- /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 00000000000000..1b2efc3523b94d --- /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 00000000000000..9f73e417e18b65 --- /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 00000000000000..1d8781d5503c0f --- /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 00000000000000..dd49b935ef7b8e --- /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 00000000000000..6af3fbf27a1111 --- /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 00000000000000..d3b633ed0e3da1 --- /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 00000000000000..9144ecb3cc7db4 --- /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 00000000000000..de5ece1501969a --- /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 00000000000000..1a640cf1a32706 --- /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 00000000000000..a1ec489d35ab5f --- /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 00000000000000..ea9850d6a7f6f9 --- /dev/null +++ b/pages.uk/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> Ця команда є псевдонімом для `chromium`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr chromium` diff --git a/pages.uk/windows/cinst.md b/pages.uk/windows/cinst.md new file mode 100644 index 00000000000000..0318449732a0c0 --- /dev/null +++ b/pages.uk/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> Ця команда є псевдонімом для `choco install`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr choco install` diff --git a/pages.uk/windows/clist.md b/pages.uk/windows/clist.md new file mode 100644 index 00000000000000..bb77a32cc98408 --- /dev/null +++ b/pages.uk/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> Ця команда є псевдонімом для `choco list`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr choco list` diff --git a/pages.uk/windows/cpush.md b/pages.uk/windows/cpush.md new file mode 100644 index 00000000000000..e22822fa8a0673 --- /dev/null +++ b/pages.uk/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> Ця команда є псевдонімом для `choco-push`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr choco-push` diff --git a/pages.uk/windows/cuninst.md b/pages.uk/windows/cuninst.md new file mode 100644 index 00000000000000..b83c16057f056e --- /dev/null +++ b/pages.uk/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> Ця команда є псевдонімом для `choco uninstall`. +> Більше інформації: . + +- Дивись документацію для оригінальної команди: + +`tldr choco uninstall` diff --git a/pages.uk/windows/curl.md b/pages.uk/windows/curl.md new file mode 100644 index 00000000000000..ea9956fdd56267 --- /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 00000000000000..566cccbcc2024b --- /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 00000000000000..a5e2c9bbcedb66 --- /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 00000000000000..12f65c476c5836 --- /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 00000000000000..5a47de69debebf --- /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 00000000000000..670aaeeed8b646 --- /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/am.md b/pages.uz/android/am.md new file mode 100644 index 00000000000000..ea5e3c352ac35c --- /dev/null +++ b/pages.uz/android/am.md @@ -0,0 +1,20 @@ +# am + +> Android faoliyat boshqaruvi. +> Ko'proq malumot: . + +- Anniq bir faoliyatni boshlash: + +`am start -n {{com.android.settings/.Settings}}` + +- Faoliyatni boshlash va unga malumot o'tkazish: + +`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}` + +- Biron harakat va kategoriyaga mos keluvchi faoliyatni boshlash: + +`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}` + +- Intentni URI ga o'zgartirish: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.uz/android/bugreport.md b/pages.uz/android/bugreport.md new file mode 100644 index 00000000000000..e744d50383db12 --- /dev/null +++ b/pages.uz/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Android xatolik xisobotini ko'rsatish. +> Bu buyruq faqat `adb shell` orqali amalga oshiriladi. +> Ko'proq malumot: . + +- Android qurulmasida to'liq xatoliklar xabarini ko'rsatish: + +`bugreport` diff --git a/pages.uz/android/bugreportz.md b/pages.uz/android/bugreportz.md new file mode 100644 index 00000000000000..10d55f50796497 --- /dev/null +++ b/pages.uz/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Arxivlangan Android xatolik xisoboti. +> Bu buyruq faqat `adb shell` orqali amalga oshiriladi. +> Ko'proq malumot: . + +- Android qurulmasida to'liq arxivlangan xatoliklar xisobotini yaratish: + +`bugreportz` + +- Bajarilayotgan `bugreportz` jarayonni progresini ko'rsatish: + +`bugreportz -p` + +- `bugreportz` ni versiyasini ko'rsatish: + +`bugreportz -v` + +- Yordam ko'rsatish: + +`bugreportz -h` diff --git a/pages.uz/android/cmd.md b/pages.uz/android/cmd.md new file mode 100644 index 00000000000000..886d1fc5ad940f --- /dev/null +++ b/pages.uz/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Android xizmatlar boshqaruvchisi. +> Ko'proq malumot: . + +- Barcha bajarilayotgan xizmatlarni ko'rsatish: + +`cmd -l` + +- Biron xizmatni chaqirish: + +`cmd {{alarm}}` + +- Xizmatni argumentlar bilan ishlatish: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.uz/android/dalvikvm.md b/pages.uz/android/dalvikvm.md new file mode 100644 index 00000000000000..c2f6c3cc4d628d --- /dev/null +++ b/pages.uz/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Android Java virtual mashinasi. +> Ko'proq malumot: . + +- Java dasturini ishga tushirish: + +`dalvikvm -classpath {{fayl/uchun/yo_l.jar}} {{klassnomi}}` diff --git a/pages.uz/android/dumpsys.md b/pages.uz/android/dumpsys.md new file mode 100644 index 00000000000000..7bf6f0d0879288 --- /dev/null +++ b/pages.uz/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> Android tizimi xizmatlari to'g'risida malumot berish. +> Bu buyruq faqatgina `adb shell` bilan ishlatiladi. +> Ko'proq malumot: . + +- Tizimning barcha xizmatlari haqida tahliliy malumot: + +`dumpsys` + +- Biron xizmat to'g'risida tahliliy malumot olish: + +`dumpsys {{service}}` + +- `dumpsys` buyrug'idagi barcha xizmatlarni chiqaradi: + +`dumpsys -l` + +- Xizmatning argumentlarini chiqaradi: + +`dumpsys {{service}} -h` + +- Tahliliy malumotlar ro'yhatidan biron xizmatni qoldirish: + +`dumpsys --skip {{service}}` + +- Time out ni belgilash (sekundlarda): + +`dumpsys -t {{sekund}}` diff --git a/pages.zh/android/am.md b/pages.zh/android/am.md new file mode 100644 index 00000000000000..cba062feaf0fb7 --- /dev/null +++ b/pages.zh/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}}` + +- 将意图转换为 URI: + +`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages.zh/android/bugreport.md b/pages.zh/android/bugreport.md new file mode 100644 index 00000000000000..84aba802cc810b --- /dev/null +++ b/pages.zh/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> 显示安卓的 Bug 报告。 +> 该命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 显示 Android 设备的完整错误报告: + +`bugreport` diff --git a/pages.zh/android/bugreportz.md b/pages.zh/android/bugreportz.md new file mode 100644 index 00000000000000..4b0cde7be57855 --- /dev/null +++ b/pages.zh/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> 生成一个压缩的 Android 错误报告。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 生成一个完整的 Android 设备压缩错误报告: + +`bugreportz` + +- 显示正在运行的 `bugreportz` 操作的进度: + +`bugreportz -p` + +- 显示 `bugreportz` 的版本: + +`bugreportz -v` + +- 显示帮助信息: + +`bugreportz -h` diff --git a/pages.zh/android/cmd.md b/pages.zh/android/cmd.md new file mode 100644 index 00000000000000..d91d8781d5a769 --- /dev/null +++ b/pages.zh/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Android 服务管理器。 +> 更多信息:. + +- 列出所有正在运行的服务: + +`cmd -l` + +- 调用指定服务: + +`cmd {{alarm}}` + +- 调用服务同时传递参数: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.zh/android/dalvikvm.md b/pages.zh/android/dalvikvm.md new file mode 100644 index 00000000000000..e079bb5897990a --- /dev/null +++ b/pages.zh/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Android Java 虚拟机。 +> 更多信息:. + +- 启动一个 Java 程序: + +`dalvikvm -classpath {{path/to/file.jar}} {{classname}}` diff --git a/pages.zh/android/dumpsys.md b/pages.zh/android/dumpsys.md new file mode 100644 index 00000000000000..98d79301889d43 --- /dev/null +++ b/pages.zh/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> 提供关于 Android 系统服务的信息。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 获取所有系统服务的诊断输出: + +`dumpsys` + +- 获取指定系统服务的诊断输出: + +`dumpsys {{服务}}` + +- 列出 `dumpsys` 可以提供的所有服务信息: + +`dumpsys -l` + +- 列出服务的指定服务参数: + +`dumpsys {{服务}} -h` + +- 从诊断输出中排除指定服务: + +`dumpsys --skip {{服务}}` + +- 指定超时时间,以秒为单位(默认为 10s): + +`dumpsys -t {{秒数}}` diff --git a/pages.zh/android/getprop.md b/pages.zh/android/getprop.md new file mode 100644 index 00000000000000..4d793ec96be07a --- /dev/null +++ b/pages.zh/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> 显示关于 Android 系统属性的信息。 +> 更多信息:. + +- 显示关于 Android 系统属性的信息: + +`getprop` + +- 显示关于指定属性的信息: + +`getprop {{prop}}` + +- 显示 SDK API 级别: + +`getprop {{ro.build.version.sdk}}` + +- 显示 Android 版本: + +`getprop {{ro.build.version.release}}` + +- 显示 Android 设备型号: + +`getprop {{ro.vendor.product.model}}` + +- 显示 OEM 解锁状态: + +`getprop {{ro.oem_unlock_supported}}` + +- 显示 Android WiFi 卡的 MAC 地址: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.zh/android/input.md b/pages.zh/android/input.md new file mode 100644 index 00000000000000..67e9ac026924d1 --- /dev/null +++ b/pages.zh/android/input.md @@ -0,0 +1,25 @@ +# input + +> 将事件代码或触摸屏手势发送到 Android 设备。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 将单个字符的事件代码发送到 Android 设备: + +`input keyevent {{event_code}}` + +- 将文本发送到 Android 设备(`%s` 代表空格): + +`input text "{{text}}"` + +- 将轻触发送到 Android 设备: + +`input tap {{x_pos}} {{y_pos}}` + +- 将滑动手势发送到 Android 设备: + +`input swipe {{x_start}} {{y_start}} {{x_end}} {{y_end}} {{duration_in_ms}}` + +- 使用滑动手势将长按发送到 Android 设备: + +`input swipe {{x_pos}} {{y_pos}} {{x_pos}} {{y_pos}} {{duration_in_ms}}` diff --git a/pages.zh/android/logcat.md b/pages.zh/android/logcat.md new file mode 100644 index 00000000000000..b4b54cf093a452 --- /dev/null +++ b/pages.zh/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> 转储系统消息日志。 +> 更多信息:. + +- 显示系统日志: + +`logcat` + +- 将系统日志写入文件: + +`logcat -f {{文件路径}}` + +- 显示与正则表达式匹配的行: + +`logcat --regex {{正则表达式}}` diff --git a/pages.zh/android/pkg.md b/pages.zh/android/pkg.md new file mode 100644 index 00000000000000..837ef5dfc14bd4 --- /dev/null +++ b/pages.zh/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Termux 的包管理工具。 +> 更多信息:. + +- 升级所有已安装的包: + +`pkg upgrade` + +- 安装一个包: + +`pkg install {{包名}}` + +- 卸载一个包: + +`pkg uninstall {{包名}}` + +- 重新安装一个包: + +`pkg reinstall {{包名}}` + +- 搜索一个包: + +`pkg search {{包名}}` diff --git a/pages.zh/android/pm.md b/pages.zh/android/pm.md new file mode 100644 index 00000000000000..974196fb5aab0f --- /dev/null +++ b/pages.zh/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.zh/android/screencap.md b/pages.zh/android/screencap.md new file mode 100644 index 00000000000000..e2a1d4081571a9 --- /dev/null +++ b/pages.zh/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> 捕获移动设备显示器的屏幕截图。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 捕获屏幕截图: + +`screencap {{路径/到/文件}}` diff --git a/pages.zh/android/settings.md b/pages.zh/android/settings.md new file mode 100644 index 00000000000000..ce74613190351e --- /dev/null +++ b/pages.zh/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> 获取关于 Android OS 的信息。 +> 更多信息:. + +- 在 `全局` 命名空间中显示环境变量列表: + +`settings list {{global}}` + +- 获取指定环境变量的值: + +`settings get {{global}} {{airplane_mode_on}}` + +- 设置指定环境变量的值: + +`settings put {{system}} {{screen_brightness}} {{42}}` + +- 删除指定环境变量: + +`settings delete {{secure}} {{screensaver_enabled}}` diff --git a/pages.zh/android/wm.md b/pages.zh/android/wm.md new file mode 100644 index 00000000000000..676a13db8b59aa --- /dev/null +++ b/pages.zh/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> 显示关于 Android 设备屏幕的信息。 +> 此命令只能通过 `adb shell` 使用。 +> 更多信息:. + +- 显示 Android 设备屏幕的物理尺寸: + +`wm {{size}}` + +- 显示 Android 设备屏幕的物理密度: + +`wm {{density}}` diff --git a/pages.zh/common/2to3.md b/pages.zh/common/2to3.md new file mode 100644 index 00000000000000..4516189515c718 --- /dev/null +++ b/pages.zh/common/2to3.md @@ -0,0 +1,32 @@ +# 2to3 + +> 自动将 Python 2 代码转换成 Python 3. +> 更多信息:. + +- 显示将执行的变动但不执行(dry-run): + +`2to3 {{文件.py}}` + +- 将 Python 2 文件转化为 Python 3: + +`2to3 --write {{文件.py}}` + +- 将 Python 2 语言特性转化为 Python 3: + +`2to3 --write {{文件.py}} --fix={{raw_input}} --fix={{print}}` + +- 除了某个语言特性外将所有其他的 Python 2 语言特性转化为 Python 3: + +`2to3 --write {{文件.py}} --nofix={{has_key}} --nofix={{isinstance}}` + +- 列出 Python 2 所有可转化为 Python 3 的语言特性: + +`2to3 --list-fixes` + +- 将某一文件夹的所有 Python 2 文件转化为 Python 3: + +`2to3 --output-dir={{Python 3 文件夹}} --write-unchanged-files --nobackups {{Python 2 文件夹}}` + +- 使用多线程运行 2to3: + +`2to3 --processes={{4}} --output-dir={{Python 3 文件夹}} --write --nobackups --no-diff {{Python 2 文件夹}}` diff --git a/pages.zh/common/7z.md b/pages.zh/common/7z.md index a6e9a14f61bc6d..a3b1f47c71cb12 100644 --- a/pages.zh/common/7z.md +++ b/pages.zh/common/7z.md @@ -1,31 +1,36 @@ # 7z -> 一个高压缩率的文件归档器. +> 一个高压缩率的文件归档器。 +> 更多信息:. -- 归档一个文件或文件夹: +- 归档一个文件或目录: -`7z a {{归档文件.7z}} {{文件路径}}` +`7z a {{归档文件.7z}} {{文件或目录}}` -- 对已存在的归档文件加密(包括头部): +- 对已存在的归档文件加密(包括文件名): `7z a {{加密文件.7z}} -p{{密码}} -mhe=on {{归档文件.7z}}` -- 提取一个已存在的 7z 文件,并保持原来的目录结构: +- 提取一个已存在的 7z 文件,并保持原来的目录结构: `7z x {{归档文件.7z}}` -- 提取一个归档文件到自定义的输出目录: +- 提取一个归档文件到指定的输出目录: -`7z x {{归档文件.7z}} -o{{输出路径}}` +`7z x {{归档文件.7z}} -o{{输出目录}}` -- 使用指定的类型来归档文件: +- 提取一个归档文件到标准输出: -`7z a -t {{zip|gzip|bzip2|tar|...}} {{归档文件.7z}} {{文件路径}}` +`7z x {{归档文件.7z}} -so` -- 列出可用的归档文件类型: +- 使用指定的类型来归档文件: -`7z i` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{归档文件.7z}} {{文件或目录}}` -- 列出一个归档文件的内容: +- 列出一个归档文件的内容: `7z l {{归档文件.7z}}` + +- 列出可用的归档文件类型: + +`7z i` diff --git a/pages.zh/common/7za.md b/pages.zh/common/7za.md index 96c192b565586b..14ef9287479153 100644 --- a/pages.zh/common/7za.md +++ b/pages.zh/common/7za.md @@ -1,24 +1,37 @@ # 7za -> 一个高压缩率的文件归档器. -> `7z`的独立版本,支持的文档类型较少. +> 一个高压缩率的文件归档器。 +> 类似于 `7z`,支持的文档类型更少但跨平台。 +> 更多信息:. -- 归档一个文件或文件夹: +- 归档一个文件或目录: -`7za a {{归档文件.7z}} {{文件路径}}` +`7za a {{归档文件.7z}} {{文件或目录}}` -- 提取一个已存在的 7z 文件,并保持原来的目录结构: +- 加密一个已存在的归档文件(包括文件名): -`7za x {{归档文件文件}}` +`7za a {{加密文件.7z}} -p{{密码}} -mhe=on {{归档文件.7z}}` -- 使用指定的类型来归档文件: +- 提取一个已存在的 7z 文件,并保持原来的目录结构: -`7za a -t{{zip|gzip|bzip2|tar|...}} {{归档文件}} {{文件路径}}` +`7za x {{归档文件.7z}}` -- 列出可用的归档文件类型: +- 提取一个归档文件到指定目录: -`7za i` +`7za x {{归档文件.7z}} -o{{输出目录}}` + +- 提取一个归档文件到标准输出: + +`7za x {{归档文件.7z}} -so` + +- 使用指定的类型来归档文件: -- 列出一个归档文件的内容: +`7za a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{归档文件.7z}} {{文件或目录}}` -`7za l {{归档文件}}` +- 列出一个归档文件的内容: + +`7za l {{归档文件.7z}}` + +- 列出可用的归档文件类型: + +`7za i` diff --git a/pages.zh/common/7zr.md b/pages.zh/common/7zr.md index 7386c0cc596fbb..5df163df3f9126 100644 --- a/pages.zh/common/7zr.md +++ b/pages.zh/common/7zr.md @@ -1,16 +1,33 @@ # 7zr -> 一个高压缩率的文件归档器. -> `7z`的独立版本,只支持 .7z 文件. +> 一个高压缩率的文件归档器。 +> 类似于 `7z`,只支持 `.7z` 文件。 +> 更多信息:. -- 归档一个文件或文件夹: +- 归档一个文件或目录: -`7zr a {{归档文件.7z}} {{文件路径}}` +`7zr a {{归档文件.7z}} {{文件或目录}}` -- 提取一个已存在的 7z 文件,并保持原来的目录结构: +- 加密一个已存在的归档文件(包括文件名): + +`7zr a {{加密文件.7z}} -p{{密码}} -mhe=on {{归档文件.7z}}` + +- 提取一个已存在的 7z 文件,并保持原来的目录结构: `7zr x {{归档文件.7z}}` -- 列出一个归档文件的内容: +- 提取一个归档文件到指定的输出目录: + +`7zr x {{归档文件.7z}} -o{{输出目录}}` + +- 提取一个归档文件到标准输出: + +`7zr x {{归档文件.7z}} -so` + +- 列出一个归档文件的内容: `7zr l {{归档文件.7z}}` + +- 列出可用的归档文件类型: + +`7zr i` diff --git a/pages.zh/common/[.md b/pages.zh/common/[.md new file mode 100644 index 00000000000000..e3b5559adc01cf --- /dev/null +++ b/pages.zh/common/[.md @@ -0,0 +1,33 @@ +# [ + +> 检查文件类型,比较数值。 +> 如果条件计算结果为真返回 0,如果计算结果为假返回 1。 +> 更多信息:. + +- 测试一个给定的变量是否等于/不等于指定的字符串: + +`[ "${{变量}}" {{==|!=}} "{{字符串}}" ]` + +- 测试一个给定的变量是否等于/不等于/大于/小于/大于等于/小于等于指定的数字: + +`[ "${{变量}}" -{{eq|ne|gt|lt|ge|le}} {{数字}} ]` + +- 测试指定的变量的值是否非空: + +`[ -n "${{变量}}" ]` + +- 测试指定变量的值是否为空: + +`[ -z "${{变量}}" ]` + +- 测试指定文件是否存在: + +`[ -f {{路径/到/文件}} ]` + +- 测试指定目录是否存在: + +`[ -d {{路径/到/目录}} ]` + +- 测试指定文件或目录是否存在: + +`[ -e {{路径/到/文件或目录}} ]` diff --git a/pages.zh/common/[[.md b/pages.zh/common/[[.md new file mode 100644 index 00000000000000..220f8e4384db26 --- /dev/null +++ b/pages.zh/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> 检查文件类型,比较数值。 +> 如果条件计算结果为真返回 0,如果计算结果为假返回 1。 +> 更多信息:. + +- 测试一个给定的变量是否等于/不等于指定的字符串: + +`[[ ${{变量}} {{==|!=}} "{{字符串}}" ]]` + +- 测试一个给定的变量是否符合指定的通配符/正则表达式: + +`[[ ${{变量}} {{==|=~}} {{模式}} ]]` + +- 测试一个给定的变量是否等于/不等于/大于/小于/大于等于/小于等于指定的数字: + +`[[ ${{变量}} -{{eq|ne|gt|lt|ge|le}} {{数字}} ]]` + +- 测试指定的变量的值是否非空: + +`[[ -n ${{变量}} ]]` + +- 测试指定的变量的值是否为空: + +`[[ -z ${{变量}} ]]` + +- 测试指定文件是否存在: + +`[[ -f {{路径/到/文件}} ]]` + +- 测试指定目录是否存在: + +`[[ -d {{路径/到/目录}} ]]` + +- 测试指定文件或目录是否存在: + +`[[ -e {{路径/到/文件或目录}} ]]` diff --git a/pages.zh/common/aapt.md b/pages.zh/common/aapt.md index 8bb30652d76a03..bd72f6279d646c 100644 --- a/pages.zh/common/aapt.md +++ b/pages.zh/common/aapt.md @@ -1,16 +1,17 @@ # aapt -> 安卓资源包工具(Android Asset Packaging Tools). -> 该工具可以查看,创建, 更新资源压缩包(zip, jar, apk)。 +> 安卓资源包工具(Android Asset Packaging Tools)。 +> 该工具可以查看,创建,更新资源压缩包(zip, jar, apk)。 +> 更多信息:. -- 列出资源压缩包里的内容: +- 列出资源压缩包里的内容: `aapt list {{路径/到/应用.apk}}` -- 查看APK包内指定的内容 (版本, 权限许可等): +- 查看 APK 包内指定的内容(版本,权限许可等): `aapt dump badging {{路径/到/应用.apk}}` -- 打包生成资源压缩包: +- 打包生成资源压缩包: `aapt package -F {{路径/到/应用.apk}} {{路径/到/目录}}` diff --git a/pages.zh/common/ab.md b/pages.zh/common/ab.md index b90d7d75eecfa7..9c2608e2ee5968 100644 --- a/pages.zh/common/ab.md +++ b/pages.zh/common/ab.md @@ -1,19 +1,24 @@ # ab -> Apache 基准测试工具.最简单的压力测试工具. +> Apache 基准测试工具。 +> 更多信息:. -- 向目标 URL 执行 100 次 HTTP GET 请求: +- 向目标 URL 执行 100 次 HTTP GET 请求: `ab -n {{100}} {{url}}` -- 使用 10 个并发请求,同时向目标 URL 执行 100 次 HTTP GET 请求: +- 使用 10 个并发请求,同时向目标 URL 执行 100 次 HTTP GET 请求: `ab -n {{100}} -c {{10}} {{url}}` -- 使用 keep alive: +- 使用来自文件的 JSON 负载对 URL 执行 100 个 HTTP POST 请求: + +`ab -n {{100}} -T {{application/json}} -p {{path/to/file.json}} {{url}}` + +- 使用 HTTP [K]eep Alive,即在一个 HTTP 会话中执行多个请求: `ab -k {{url}}` -- 为基准测试设置最大的测试时间(单位:秒): +- 为基准测试设置最大的测试时间(单位:秒): `ab -t {{60}} {{url}}` diff --git a/pages.zh/common/abduco.md b/pages.zh/common/abduco.md index 85f516716b2f94..5f86bea67233c2 100644 --- a/pages.zh/common/abduco.md +++ b/pages.zh/common/abduco.md @@ -1,23 +1,24 @@ # abduco -> 终端会话管理器. +> 终端会话管理器。 +> 更多信息:. -- 列出会话: +- 列出会话: `abduco` -- 附加到一个会话,如果不存在则新建它: +- 附加到一个会话,如果不存在则新建它: `abduco -A {{会话名}} {{终端}}` -- 使用`dvtm`附加到一个会话,如果不存在则新建它: +- 使用`dvtm`附加到一个会话,如果不存在则新建它: `abduco -A {{会话名}}` -- 从一个会话中分离: +- 从一个会话中分离: `Ctrl + \` -- 以只读模式附加到一个会话: +- 以只读模式附加到一个会话: `abduco -Ar {{会话名}}` diff --git a/pages.zh/common/ac.md b/pages.zh/common/ac.md new file mode 100644 index 00000000000000..e765279bbde209 --- /dev/null +++ b/pages.zh/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> 打印用户连接时间的统计数据。 +> 更多信息:. + +- 打印当前用户连接的时间,以小时为单位: + +`ac` + +- 打印用户连接的时间,以小时为单位: + +`ac -p` + +- 打印一个特定用户的连接时间,以小时为单位: + +`ac -p {{用户名}}` + +- 打印一个特定用户每天连接的时间,以小时为单位(包括总数): + +`ac -dp {{用户名}}` diff --git a/pages.zh/common/ack.md b/pages.zh/common/ack.md index c4e342ed4e6735..20b220947be084 100644 --- a/pages.zh/common/ack.md +++ b/pages.zh/common/ack.md @@ -1,19 +1,37 @@ # ack -> 一个类似 grep 的搜索工具,为程序员优化. +> 一个类似 grep 的搜索工具,为程序员优化。 +> 另见 `rg`,它要快得多。 +> 更多信息:. -- 寻找包含"小明"的文件: +- 在当前目录下递归地搜索包含一个字符串或正则表达式的文件: -`ack {{小明}}` +`ack "{{search_pattern}}"` -- 在给定文件类型中寻找包含"小明"的文件: +- 不区分大小写搜索: -`ack --ruby {{小明}}` +`ack --ignore-case "{{search_pattern}}"` -- 计算匹配到"小明"的总次数: +- 搜索匹配模式的行,只打印匹配的文本,而不打印行的其他部分: -`ack -ch {{小明}}` +`ack -o "{{search_pattern}}"` -- 列出内容包含"小明"的文件的文件名,并显示在每个文件中匹配的次数: +- 限制搜索特定类型的文件: -`ack -cl {{小明}}` +`ack --type={{ruby}} "{{search_pattern}}"` + +- 不在特定类型的文件中搜索: + +`ack --type=no{{ruby}} "{{search_pattern}}"` + +- 计算找到的匹配文件的总数: + +`ack --count --no-filename "{{search_pattern}}"` + +- 只打印文件名和每个文件的匹配数: + +`ack --count --files-with-matches "{{search_pattern}}"` + +- 列出所有可与 `--type` 一起使用的值: + +`ack --help-types` diff --git a/pages.zh/common/acme.sh-dns.md b/pages.zh/common/acme.sh-dns.md new file mode 100644 index 00000000000000..82bbcb8826b0e6 --- /dev/null +++ b/pages.zh/common/acme.sh-dns.md @@ -0,0 +1,24 @@ +# acme.sh --dns + +> 使用 DNS-01 挑战来签发 TLS 证书。 +> 更多信息:. + +- 使用自动 DNS API 模式签发证书: + +`acme.sh --issue --dns {{gnd_gd}} --domain {{example.com}}` + +- 使用自动 DNS API 模式签发通配符证书(用星号表示): + +`acme.sh --issue --dns {{dns_namesilo}} --domain {{example.com}} --domain {{*.example.com}}` + +- 使用 DNS 别名模式签发证书: + +`acme.sh --issue --dns {{dns_cf}} --domain {{example.com}} --challenge-alias {{alias-for-example-validation.com}}` + +- 在添加 DNS 记录后,通过指定自定义的等待时间(秒),在禁用 Cloudflare / Google DNS 自动轮询的同时签发证书: + +`acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}` + +- 使用手动 DNS 模式签发证书: + +`acme.sh --issue --dns --domain {{example.com}} --yes-I-know-dns-manual-mode-enough-go-ahead-please` diff --git a/pages.zh/common/acme.sh.md b/pages.zh/common/acme.sh.md new file mode 100644 index 00000000000000..71b7632a14e1f8 --- /dev/null +++ b/pages.zh/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> 实现了 ACME 客户端协议的 shell 脚本,是 certbot 的替代品。 +> 另见 `acme.sh dns`。 +> 更多信息:. + +- 使用网站根目录模式签发证书: + +`acme.sh --issue --domain {{example.com}} --webroot {{/路径/到/网站根目录}}` + +- 使用独立模式和 80 端口为多个域名签发证书: + +`acme.sh --issue --standalone --domain {{example.com}} --domain {{www.example.com}}` + +- 使用独立 TLS 模式和 443 端口签发证书: + +`acme.sh --issue --alpn --domain {{example.com}}` + +- 使用运行中的 Nginx 的配置来签发证书: + +`acme.sh --issue --nginx --domain {{example.com}}` + +- 使用运行中的 Apache 的配置来签发证书: + +`acme.sh --issue --apache --domain {{example.com}}` + +- 使用自动 DNS API 模式签发一个通配符(\*)证书: + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.example.com}}` + +- 将证书文件安装到指定位置(对自动更新证书很有用): + +`acme.sh --install-cert -d {{example.com}} --key-file {{/路径/到/example.com.key}} --fullchain-file {{/路径/到/example.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages.zh/common/act.md b/pages.zh/common/act.md index dfd9d04aa96a52..efac6a15a94f93 100644 --- a/pages.zh/common/act.md +++ b/pages.zh/common/act.md @@ -1,28 +1,28 @@ # act -> 使用Docker本地运行GitHub Actions -> 更多信息: . +> 使用 Docker 本地运行 GitHub Actions. +> 更多信息:. -- 列出可用的actions清单: +- 列出可用的 actions 清单: `act -l` -- 运行默认event: +- 运行默认 event: `act` -- 运行指定event: +- 运行指定 event: `act {{事件类型}}` -- 运行指定action: +- 运行指定 action: `act -a {{action_id}}` -- 非实际运行actions (也就是dry-run模式): +- 非实际运行 actions(也就是 dry-run 模式): `act -n` -- 展示详细记录: +- 展示详细记录: `act -v` diff --git a/pages.zh/common/acyclic.md b/pages.zh/common/acyclic.md new file mode 100644 index 00000000000000..2197791b69311a --- /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-install.md b/pages.zh/common/adb-install.md index 1fa44edb52c71f..b2c7581a9c8f9e 100644 --- a/pages.zh/common/adb-install.md +++ b/pages.zh/common/adb-install.md @@ -1,20 +1,28 @@ # adb install -> 安卓调试桥-Install: 将应用安装包推送到Android模拟器或已连接的安卓设备. -> 更多信息: . +> 安卓调试桥 -Install: 将应用安装包推送到 Android 模拟器或已连接的安卓设备。 +> 更多信息:. -- 向模拟器/设备推送安卓app: +- 向模拟器/设备推送安卓 app: `adb install {{路径/到/应用.apk}}` -- 重装app, 保持原有数据: +- 向特定的模拟器/设备推送安卓 app(覆盖 `$ANDROID_SERIAL`): + +`adb -s {{序列号}} install {{路径/到/应用.apk}}` + +- 重装 app, 保持原有数据: `adb install -r {{路径/到/应用.apk}}` -- 授予app manifest中列举的所有权限许可: +- 推送一个允许版本代码降级的安卓 app(仅适用于可调试的软件包): + +`adb install -d {{路径/到/应用.apk}}` + +- 授予 app manifest 中列举的所有权限许可: `adb install -g {{路径/到/应用.apk}}` -- 快速部署模式,仅更新APK更改过的部分: +- 快速部署模式,仅更新 APK 更改过的部分: `adb install --fastdeploy {{路径/到/应用.apk}}` diff --git a/pages.zh/common/adb-logcat.md b/pages.zh/common/adb-logcat.md new file mode 100644 index 00000000000000..89f81f46dfeaa0 --- /dev/null +++ b/pages.zh/common/adb-logcat.md @@ -0,0 +1,28 @@ +# adb-logcat + +> 转储系统消息日志。 +> 更多信息:. + +- 显示系统日志: + +`adb logcat` + +- 显示符合正则表达式的行: + +`adb logcat -e {{正则表达式}}` + +- 显示特定优先级下(V:详细,D:调试,I:信息,W:警告,E:错误,F:严重错误,S:静默)标记的日志,过滤掉其他标记: + +`adb logcat {{标记}}:{{最低优先级}} *:S` + +- 在详细(V)模式下显示 React Native 应用程序的日志,静默(S)其他标记: + +`adb logcat ReactNative:V ReactNativeJS:V *:S` + +- 显示优先级为警告(W)及以上的所有标签的日志: + +`adb logcat *:W` + +- 给日志着色(通常与过滤器一起使用): + +`adb logcat -v color` diff --git a/pages.zh/common/adb-reverse.md b/pages.zh/common/adb-reverse.md index 4c9e9fb6dd6da9..e1b6cbcf11c489 100644 --- a/pages.zh/common/adb-reverse.md +++ b/pages.zh/common/adb-reverse.md @@ -1,20 +1,20 @@ # adb reverse -> 安卓调试桥-反射: 反向映射安卓模拟器实例或者已连接的实体设备的套接字连接. -> 更多信息: . +> 安卓调试桥-反射: 反向映射安卓模拟器实例或者已连接的实体设备的套接字连接。 +> 更多信息:. -- 列出所有来自模拟器和设备的映射连接 +- 列出所有来自模拟器和设备的映射连接: -`adb reverse —list` +`adb reverse --list` -- 将TCP端口从安卓模拟器或设备中映射到localhost: +- 将 TCP 端口从安卓模拟器或设备中映射到 localhost: `adb reverse tcp:{{远程端口}} tcp:{{本地端口}}` -- 从安卓模拟器或设备移除一个反向socket连接: +- 从安卓模拟器或设备移除一个反向 socket 连接: `adb reverse --remove tcp:{{远程端口}}` -- 从安卓模拟器或设备移除所有反向socket连接: +- 从安卓模拟器或设备移除所有反向 socket 连接: `adb reverse --remove-all` diff --git a/pages.zh/common/adb-shell.md b/pages.zh/common/adb-shell.md index 84e1c5c2fa2b9e..05d25401232d82 100644 --- a/pages.zh/common/adb-shell.md +++ b/pages.zh/common/adb-shell.md @@ -1,36 +1,36 @@ # adb shell > 安卓调试桥-Shell: 运行安卓模拟器或者连接设备上的远程终端命令。 -> 更多信息: . +> 更多信息:. -- 启动模拟器/设备上的远程终端: +- 启动模拟器/设备上的远程终端: `adb shell` -- 获取模拟器/设备全部属性: +- 获取模拟器/设备全部属性: `adb shell getprop` -- 重置所有运行时权限为它们的默认值: +- 重置所有运行时权限为它们的默认值: `adb shell pm reset-permissions` -- 撤销一个应用的危险权限: +- 撤销一个应用的危险权限: `adb shell pm revoke {{包名}} {{权限}}` -- 触发一个键盘敲击事件: +- 触发一个键盘敲击事件: `adb shell input keyevent {{键位码}}` -- 清除模拟器/设备上的数据: +- 清除模拟器/设备上的数据: `adb shell pm clear {{包名}}` -- 启动模拟器/设备上的一个行为: +- 启动模拟器/设备上的一个行为: `adb shell am start -n {{包名}}/{{活动名}}` -- 启动模拟器/设备上的首页活动: +- 启动模拟器/设备上的首页活动: `adb shell am start -W -c android.intent.category.HOME -a android.intent.action.MAIN` diff --git a/pages.zh/common/adb.md b/pages.zh/common/adb.md index b9c003b21e48cf..6f8be09ee72afb 100644 --- a/pages.zh/common/adb.md +++ b/pages.zh/common/adb.md @@ -1,32 +1,33 @@ # adb -> 安卓调试桥:与 Android 模拟器或已连接的 Android 设备通信. -> 更多信息: . +> 安卓调试桥:与 Android 模拟器或已连接的 Android 设备通信。 +> 此命令也有关于其子命令的文件,例如:`adb shell`. +> 更多信息:. -- 检查 adb server 进程的是否在运行,并开启它: +- 检查 adb server 进程的是否在运行,并开启它: `adb start-server` -- 终止 adb server 进程: +- 终止 adb server 进程: `adb kill-server` -- 在目标模拟器 / 设备实例上开启一个远程 shell: +- 在目标模拟器 / 设备实例上开启一个远程 shell: `adb shell` -- 将 Android 应用程序推送到模拟器 / 设备 : +- 将 Android 应用程序推送到模拟器 / 设备: `adb install -r {{路径/到/应用.apk}}` -- 从目标设备上拷贝一个文件 / 目录到本地: +- 从目标设备上拷贝一个文件 / 目录到本地: `adb pull {{路径/到/设备的文件或目录}} {{路径/到/本地上的目录}}` -- 从本地拷贝一个文件 / 目录到目标设备: +- 从本地拷贝一个文件 / 目录到目标设备: `adb push {{路径/到/本地文件或目录}} {{路径/到/设备上的目录}}` -- 列出已连接的设备: +- 列出已连接的设备: `adb devices` diff --git a/pages.zh/common/adguardhome.md b/pages.zh/common/adguardhome.md index 858c8cd51fcb5e..374928e82a7cd4 100644 --- a/pages.zh/common/adguardhome.md +++ b/pages.zh/common/adguardhome.md @@ -1,32 +1,32 @@ # AdGuardHome -> 一款全网广告拦截与反跟踪软件. -> 更多信息: . +> 一款全网广告拦截与反跟踪软件。 +> 更多信息:. -- 运行 AdGuard Home: +- 运行 AdGuard Home: `AdGuardHome` -- 使用给定的配置文件运行 AdGuard Home: +- 使用给定的配置文件运行 AdGuard Home: `AdGuardHome --config {{给定的/配置文件.yaml}}` -- 设置存储数据的工作目录: +- 设置存储数据的工作目录: `AdGuardHome --work-dir {{工作目录/路径}}` -- 安装或卸载 AdGuard Home 的服务: +- 安装或卸载 AdGuard Home 的服务: `AdGuardHome --service {{install|uninstall}}` -- 启动 AdGuard Home 的服务: +- 启动 AdGuard Home 的服务: `AdGuardHome --service start` -- 刷新 AdGuard Home 服务的设置项: +- 刷新 AdGuard Home 服务的设置项: `AdGuardHome --service reload` -- 停止或重启 AdGuard Home 的服务: +- 停止或重启 AdGuard Home 的服务: `AdGuardHome --service {{stop|restart}}` diff --git a/pages.zh/common/adscript.md b/pages.zh/common/adscript.md new file mode 100644 index 00000000000000..1bed6caa324187 --- /dev/null +++ b/pages.zh/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> 用于 Adscript 文件的编译器。 +> 更多信息:. + +- 将一个文件编译为一个对象文件: + +`adscript --output {{路径/到/文件.o}} {{路径/到/输入文件.adscript}}` + +- 编译并链接一个文件到一个独立的可执行文件: + +`adscript --executable --output {{路径/到/文件}} {{路径/到/输入文件.adscript}}` + +- 将文件编译成 LLVM IR 而不是本地机器码: + +`adscript --llvm-ir --output {{路径/到/文件.ll}} {{路径/到/输入文件.adscript}}` + +- 将一个文件交叉编译为一个其他 CPU 架构或操作系统的目标文件: + +`adscript --target-triple {{i386-linux-elf}} --output {{路径/到/文件.o}} {{路径/到/输入文件.adscript}}` diff --git a/pages.zh/common/afconvert.md b/pages.zh/common/afconvert.md new file mode 100644 index 00000000000000..34c0dff171d19a --- /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/ag.md b/pages.zh/common/ag.md index 3bec30349f28dc..aacd9e9cc6ff39 100644 --- a/pages.zh/common/ag.md +++ b/pages.zh/common/ag.md @@ -1,32 +1,32 @@ # ag -> The Silver Searcher. 类似 ack, 但是更快. -> 更多信息: . +> The Silver Searcher. 类似 ack, 但是更快。 +> 更多信息:. -- 寻找内容包含"小明"的文件,并列出所在的行数: +- 寻找内容包含"小明"的文件,并列出所在的行数: `ag {{小明}}` -- 在指定目录中寻找内容包含"foo"的文件: +- 在指定目录中寻找内容包含 "foo" 的文件: `ag {{小明}} {{指定的目录}}` -- 寻找内容包含"foo"的文件,但只列出文件名: +- 寻找内容包含 "foo" 的文件,但只列出文件名: `ag -l {{小明}}` -- 忽略大小写,寻找内容包含"ABC"的文件,并只输出匹配的内容,而非整行: +- 忽略大小写,寻找内容包含 "ABC" 的文件,并只输出匹配的内容,而非整行: `ag -i -o {{ABC}}` -- 在文件名包含"小红"的文件中寻找"小明": +- 在文件名包含"小红"的文件中寻找"小明": `ag {{小明}} -G {{小红}}` -- 使用正则表达式来匹配文件内容: +- 使用正则表达式来匹配文件内容: `ag '{{^ba(r|z)$}}'` -- 输出文件名包含"小明"的文件名: +- 输出文件名包含"小明"的文件名: `ag -g {{小明}}` diff --git a/pages.zh/common/agate.md b/pages.zh/common/agate.md new file mode 100644 index 00000000000000..3c036032b867ad --- /dev/null +++ b/pages.zh/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> 一个简单的 Gemini 网络协议的服务器。 +> 更多信息:. + +- 运行并生成一个私钥和证书: + +`agate --content {{路径/到/内容/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{example.com}} --lang {{en-US}}` + +- 启动服务器: + +`agate {{路径/到/文件}}` + +- 显示帮助: + +`agate -h` diff --git a/pages.zh/common/age.md b/pages.zh/common/age.md new file mode 100644 index 00000000000000..641eeafdb57532 --- /dev/null +++ b/pages.zh/common/age.md @@ -0,0 +1,28 @@ +# age + +> 一个简单、现代、安全的文件加密工具。 +> 更多信息:. + +- 生成一个可以用密码短语(passphrase)解密的加密文件: + +`age --passphrase --output {{路径/到/已加密文件}} {{路径/到/未加密文件}}` + +- 生成一个密钥对,将私钥保存到一个未加密的文件,并将公钥打印到标准输出: + +`age-keygen --output {{路径/到/文件}}` + +- 用一个或多个公钥加密一个文件,这些公钥以字面形式输入: + +`age --recipient {{公钥_1}} --recipient {{公钥_2}} {{路径/到/未加密文件}} --output {{路径/到/已加密文件}}` + +- 用收件人文件中指定的一个或多个公钥来加密一个文件: + +`age --recipients-file {{路径/到/收件人文件}} {{路径/到/未加密文件}} --output {{路径/到/已加密文件}}` + +- 用密码短语解密一个文件: + +`age --decrypt --output {{路径/到/已解密文件}} {{路径/到/已加密文件}}` + +- 用私钥文件解密一个文件: + +`age --decrypt --identity {{路径/到/私钥文件}} --output {{路径/到/已解密文件}} {{路径/到/已加密文件}}` diff --git a/pages.zh/common/aireplay-ng.md b/pages.zh/common/aireplay-ng.md new file mode 100644 index 00000000000000..111df719209db5 --- /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/airmon-ng.md b/pages.zh/common/airmon-ng.md new file mode 100644 index 00000000000000..25ea372397eef4 --- /dev/null +++ b/pages.zh/common/airmon-ng.md @@ -0,0 +1,20 @@ +# airmon-ng + +> 激活无线网络设备的监控模式。 +> 更多信息:. + +- 列出无线设备和它们的状态: + +`sudo airmon-ng` + +- 为一个特定的设备打开监控模式: + +`sudo airmon-ng start {{wlan0}}` + +- 关闭使用无线设备的干扰进程: + +`sudo airmon-ng check kill` + +- 关闭某个特定网络接口的监控模式: + +`sudo airmon-ng stop {{wlan0mon}}` diff --git a/pages.zh/common/airodump-ng.md b/pages.zh/common/airodump-ng.md new file mode 100644 index 00000000000000..4c14b02feb1cad --- /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/airpaste.md b/pages.zh/common/airpaste.md index 4785fd6d49f7ab..75550f76697456 100644 --- a/pages.zh/common/airpaste.md +++ b/pages.zh/common/airpaste.md @@ -1,24 +1,24 @@ # airpaste -> 在同一网络下共享信息和文件. -> 更多信息: . +> 在同一网络下共享信息和文件。 +> 更多信息:. -- 等待接收消息并显示接收到的信息: +- 等待接收消息并显示接收到的信息: `airpaste` -- 发送文本: +- 发送文本: `echo {{文本}} | airpaste` -- 发送文件: +- 发送文件: `airpaste < {{文件的路径}}` -- 接收文件: +- 接收文件: `airpaste > {{文件的路径}}` -- 创建 / 加入频道: +- 创建 / 加入频道: `airpaste {{频道名}}` diff --git a/pages.zh/common/ajson.md b/pages.zh/common/ajson.md new file mode 100644 index 00000000000000..4cb140329db307 --- /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/alacritty.md b/pages.zh/common/alacritty.md index 3434828554bb6f..e4bef929cf264e 100644 --- a/pages.zh/common/alacritty.md +++ b/pages.zh/common/alacritty.md @@ -1,9 +1,9 @@ # alacritty -> 跨平台,GPU 加速的终端模拟器. -> 更多信息: . +> 跨平台,GPU 加速的终端模拟器。 +> 更多信息:. -- 打开一个新的 alacritty 窗口: +- 打开一个新的 Alacritty 窗口: `alacritty` @@ -11,14 +11,14 @@ `alacritty --working-directory {{路径}}` -- 在新的 alacritty 窗口中运行命令: +- 在新的 Alacritty 窗口中运行命令: `alacritty -e {{命令}}` -- 指定备用配置文件 (默认在 $XDG_CONFIG_HOME/alacritty/alacritty.yml): +- 指定备用配置文件(默认在 `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): `alacritty --config-file {{路径/config.yml}}` -- 在启用实时配置重新加载的情况下运行(默认情况下也可以在 alacritty.yml 中启用): +- 在启用实时配置重新加载的情况下运行(默认情况下也可以在 `alacritty.yml` 中启用): `alacritty --live-config-reload --config-file {{路径/config.yml}}` diff --git a/pages.zh/common/alias.md b/pages.zh/common/alias.md index a92f4e5ce483ba..162ea3125e99fe 100644 --- a/pages.zh/common/alias.md +++ b/pages.zh/common/alias.md @@ -1,29 +1,29 @@ # alias -> 创建别名 -- 用给定的字符串指代特定的命令. +> 创建别名 -- 用给定的字符串指代特定的命令。 > 别名只会在当前的 shell 会话中生效,除非它们在 shell 的配置文件中被定义,例如`~/.bashrc`. -> 更多信息: . +> 更多信息:. -- 创建一个通用的别名: +- 创建一个通用的别名: `alias {{别名}}="{{命令}}"` -- 通过给定的别名查看它所指代的命令: +- 通过给定的别名查看它所指代的命令: `alias {{别名}}` -- 移除一个别名: +- 移除一个别名: `unalias {{别名}}` -- 列出所有的别名: +- 列出所有的别名: `alias -p` -- 将 rm 转换为交互式命令: +- 将 rm 转换为交互式命令: `alias {{rm}}="{{rm -i}}"` -- 创建别名`la`来指代`ls -a`: +- 创建别名 `la` 来指代 `ls -a`: `alias {{la}}="{{ls -a}}"` diff --git a/pages.zh/common/amass.md b/pages.zh/common/amass.md new file mode 100644 index 00000000000000..c465781cd4ecbb --- /dev/null +++ b/pages.zh/common/amass.md @@ -0,0 +1,21 @@ +# amass + +> 深度攻击面探测与资产发现工具。 +> 此命令也有关于其子命令的文件,例如:`amass db`. +> 更多信息:. + +- 执行 Amass 子命令: + +`amass {{子命令}}` + +- 展示帮助信息: + +`amass -help` + +- 展示子命令帮助信息(如 `intel`、`enum` 等): + +`amass -help {{子命令}}` + +- 查看 Amass 版本: + +`amass -version` diff --git a/pages.zh/common/androguard.md b/pages.zh/common/androguard.md index 7ee278460fe133..365c4645760e9f 100644 --- a/pages.zh/common/androguard.md +++ b/pages.zh/common/androguard.md @@ -1,16 +1,16 @@ # androguard -> 使用python编写的一款针对安卓应用的逆向工程工具. -> 更多信息: . +> 使用 python 编写的一款针对安卓应用的逆向工程工具。 +> 更多信息:. -- 展示Android manifest清单文件: +- 展示 Android manifest 清单文件: `androguard axml {{路径/至/应用.apk}}` -- 展示app元数据 (版本和app ID): +- 展示 app 元数据(版本和 app ID): `androguard apkid {{路径/至/应用.apk}}` -- 反编译Java代码: +- 反编译 Java 代码: `androguard decompile {{路径/至/应用.apk}} --output {{路径/至/目录}}` diff --git a/pages.zh/common/ani-cli.md b/pages.zh/common/ani-cli.md new file mode 100644 index 00000000000000..7e22f1668ae1ff --- /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 00000000000000..2a918f5dc563cd --- /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/ansible-galaxy.md b/pages.zh/common/ansible-galaxy.md index 7525c65772f283..c056474541086b 100644 --- a/pages.zh/common/ansible-galaxy.md +++ b/pages.zh/common/ansible-galaxy.md @@ -1,24 +1,24 @@ # ansible-galaxy -> 创建和管理 Ansible 角色. -> 主页:. +> 创建和管理 Ansible 角色。 +> 更多信息:. -- 安装一个角色: +- 安装一个角色: `ansible-galaxy install {{用户名.角色名}}` -- 移除一个角色: +- 移除一个角色: `ansible-galaxy remove {{用户名.角色名}}` -- 列出已安装的角色: +- 列出已安装的角色: `ansible-galaxy list` -- 搜索一个指定的角色: +- 搜索一个指定的角色: `ansible-galaxy search {{角色名}}` -- 创建一个新的角色: +- 创建一个新的角色: `ansible-galaxy init {{角色名}}` diff --git a/pages.zh/common/ansible-playbook.md b/pages.zh/common/ansible-playbook.md index 03f3510d059db1..7aefa4a199cdc7 100644 --- a/pages.zh/common/ansible-playbook.md +++ b/pages.zh/common/ansible-playbook.md @@ -1,20 +1,20 @@ # ansible-playbook -> 通过 SSH 协议在远程计算机上执行 playbook 中定义的任务. -> 主页:. +> 通过 SSH 协议在远程计算机上执行 playbook 中定义的任务。 +> 更多信息:. -- 执行 playbook 中的任务: +- 执行 playbook 中的任务: `ansible-playbook {{playbook}}` -- 在给定的主机清单文件中执行 playbook 中的命令: +- 在给定的主机清单文件中执行 playbook 中的命令: `ansible-playbook {{playbook}} -i {{清单文件}}` -- 通过定义在命令行中额外的变量执行 playbook 中的任务: +- 通过定义在命令行中额外的变量执行 playbook 中的任务: `ansible-playbook {{playbook}} -e "{{变量 1}}={{值 1}} {{变量 2}}={{值 2}}"` -- 通过定义在一个 json 格式的文件中额外的变量执行 playbook 中的任务: +- 通过定义在一个 json 格式的文件中额外的变量执行 playbook 中的任务: `ansible-playbook {{playbook}} -e "@{{variables.json}}"` diff --git a/pages.zh/common/ansible.md b/pages.zh/common/ansible.md index 52ed1fa9e065e1..1fea85e5b07558 100644 --- a/pages.zh/common/ansible.md +++ b/pages.zh/common/ansible.md @@ -1,29 +1,29 @@ # ansible -> 通过 SSH 协议远程管理计算机组. -> 使用 `/etc/ansible/hosts` 文件来添加组 / 主机. -> 主页:. +> 通过 SSH 协议远程管理计算机组。使用 `/etc/ansible/hosts` 文件来添加组 / 主机。 +> 此命令也有关于其子命令的文件,例如:`ansible galaxy`. +> 更多信息:. -- 列出给定组下的所有主机: +- 列出给定组下的所有主机: `ansible {{组}} --list-hosts` -- 调用 ping 模块来 ping 一组主机: +- 调用 ping 模块来 ping 一组主机: `ansible {{组}} -m ping` -- 通过调用安装模块来显示关于一组主机的信息: +- 通过调用安装模块来显示关于一组主机的信息: `ansible {{组}} -m setup` -- 调用命令模块并使用给定的参数来对一组主机执行命令: +- 调用命令模块并使用给定的参数来对一组主机执行命令: `ansible {{组}} -m command -a '{{命令}}'` -- 以管理员权限执行一个命令: +- 以管理员权限执行一个命令: `ansible {{组}} --become --ask-become-pass -m command -a '{{命令}}'` -- 使用自定义的清单文件执行一个命令: +- 使用自定义的清单文件执行一个命令: `ansible {{组}} -i {{清单文件}} -m command -a '{{命令}}'` diff --git a/pages.zh/common/ansiweather.md b/pages.zh/common/ansiweather.md index 1194766ec863fe..e01664fb6632c0 100644 --- a/pages.zh/common/ansiweather.md +++ b/pages.zh/common/ansiweather.md @@ -1,15 +1,16 @@ # ansiweather -> 一个 shell 脚本,用于在终端中显示当前的天气状况. +> 一个 shell 脚本,用于在终端中显示当前的天气状况。 +> 更多信息:. -- 使用公制单位显示 Rzeszow, Poland 接下来 5 天的天气预报: +- 使用公制单位显示 Rzeszow, Poland 接下来 5 天的天气预报: `ansiweather -u {{metric}} -f {{5}} -l {{Rzeszow,PL}}` -- 显示带符号和日光数据信息的天气预报: +- 显示带符号和日光数据信息的天气预报: `ansiweather -s {{true}} -d {{true}}` -- 显示带风力等级和湿度信息的天气预报: +- 显示带风力等级和湿度信息的天气预报: `ansiweather -w {{true}} -h {{true}}` diff --git a/pages.zh/common/ant.md b/pages.zh/common/ant.md new file mode 100644 index 00000000000000..e72542ef64172f --- /dev/null +++ b/pages.zh/common/ant.md @@ -0,0 +1,25 @@ +# ant + +> Apache Ant。 +> 用于构建和管理基于 Java 的项目的工具。 +> 更多信息:. + +- 用默认的构建文件 `build.xml` 构建一个项目: + +`ant` + +- 使用 `build.xml` 以外的构建文件构建项目: + +`ant -f {{构建文件.xml}}` + +- 打印该项目可能的目标信息: + +`ant -p` + +- 打印调试信息: + +`ant -d` + +- 执行所有不依赖失败目标的目标: + +`ant -k` diff --git a/pages.zh/common/apg.md b/pages.zh/common/apg.md index dafa41d36a3945..cf862e82513d29 100644 --- a/pages.zh/common/apg.md +++ b/pages.zh/common/apg.md @@ -1,24 +1,24 @@ # apg -> 生成任意复杂度的随机密码. -> 更多信息: . +> 生成任意复杂度的随机密码。 +> 更多信息:. -- 生成随机密码 (默认密码长度为 8 位): +- 生成随机密码(默认密码长度为 8 位): `apg` -- 生成密码,包含至少 1 个符号 (S), 1 个数字 (N), 1 个大写字母 (C), 1 个小写字母 (L): +- 生成密码,包含至少 1 个符号 (S), 1 个数字 (N), 1 个大写字母 (C), 1 个小写字母 (L): `apg -M SNCL` -- 生成 16 个字符的密码: +- 生成 16 个字符的密码: `apg -m {{16}}` -- 生成最大长度为 16 位的密码: +- 生成最大长度为 16 位的密码: `apg -x {{16}}` -- 生成未出现在字典中的密码(必须提供字典文件) +- 生成未出现在字典中的密码(必须提供字典文件): `apg -r {{字典文件}}` diff --git a/pages.zh/common/apktool.md b/pages.zh/common/apktool.md index 17b790c87ff7db..8a262668dd532a 100644 --- a/pages.zh/common/apktool.md +++ b/pages.zh/common/apktool.md @@ -1,16 +1,16 @@ # apktool -> APK文件反编译工具 -> 更多信息: . +> APK 文件反编译工具。 +> 更多信息:. -- 反编译: +- 反编译: `apktool d {{应用.apk}}` -- 将一个文件夹打包为apk文件: +- 将一个文件夹打包为 apk 文件: `apktool b {{路径/到/目录}}` -- 安装并存储框架: +- 安装并存储框架: `apktool if {{框架.apk}}` diff --git a/pages.zh/common/apm.md b/pages.zh/common/apm.md index a5e0e3284b5d46..b0407e041c8943 100644 --- a/pages.zh/common/apm.md +++ b/pages.zh/common/apm.md @@ -1,16 +1,17 @@ # apm -> Atom 编辑器的包管理工具. +> Atom 编辑器的包管理工具。 > 参见 `atom`. +> 更多信息:. -- 下载包:http://atom.io/packages 和主题 http://atom.io/themes: +- 下载包:http://atom.io/packages 和主题 http://atom.io/themes: `apm install {{包名}}` -- 移除包 / 主题: +- 移除包 / 主题: `apm remove {{包名}}` -- 升级包 / 主题: +- 升级包 / 主题: `apm upgrade {{包名}}` diff --git a/pages.zh/common/apropos.md b/pages.zh/common/apropos.md index 95908ef4c763c5..bab35346d71762 100644 --- a/pages.zh/common/apropos.md +++ b/pages.zh/common/apropos.md @@ -1,12 +1,12 @@ # apropos -> 在 manpages 中搜索,例如查找一个新命令. -> 更多信息: . +> 在 manpages 中搜索,例如查找一个新命令。 +> 更多信息:. -- 搜索关键字: +- 搜索关键字: `apropos {{正则表达式}}` -- 搜索时不限制输出到终端宽度: +- 搜索时不限制输出到终端宽度: `apropos -l {{正则表达式}}` diff --git a/pages.zh/common/ar.md b/pages.zh/common/ar.md index e73cb8d7b14ffc..eb291dc7b2f1a1 100644 --- a/pages.zh/common/ar.md +++ b/pages.zh/common/ar.md @@ -1,24 +1,24 @@ # ar -> 创建,修改,提取库文件 (`.a`, `.so`, `.o`). -> 更多信息: . +> 创建,修改,提取库文件(`.a`, `.so`, `.o`)。 +> 更多信息:. -- 从库文件中提取全部成员: +- 从库文件中提取全部成员: `ar -x {{a 文件}}` -- 列出库文件中的成员: +- 列出库文件中的成员: `ar -t {{a 文件}}` -- 替换或添加文件到库文件: +- 替换或添加文件到库文件: `ar -r {{要被添加内容的 a 文件}} {{o 文件 1}} {{o 文件 2}} {{o 文件 3}}` -- 插入对象文件索引(相当于使用`ranlib`): +- 插入对象文件索引(相当于使用`ranlib`): `ar -s {{a 文件}}` -- 使用文件和附带的目标文件索引创建存档: +- 使用文件和附带的目标文件索引创建存档: `ar -rs {{a 文件}} {{o 文件 1}} {{o 文件 2}} {{o 文件 3}}` diff --git a/pages.zh/common/arch.md b/pages.zh/common/arch.md index 93682487242941..d0f8f65091c662 100644 --- a/pages.zh/common/arch.md +++ b/pages.zh/common/arch.md @@ -1,9 +1,9 @@ # arch -> 展示系统架构的名称. +> 展示系统架构的名称。 > 另见`uname`. -> 更多信息: . +> 更多信息:. -- 展示系统架构. +- 展示系统架构: `arch` diff --git a/pages.zh/common/aria2.md b/pages.zh/common/aria2.md index 76dab0ee8fe932..0a7a76e44fedab 100644 --- a/pages.zh/common/aria2.md +++ b/pages.zh/common/aria2.md @@ -1,33 +1,7 @@ # aria2 -> 一个轻量级多协议和多源命令行下载工具 -> 支持 HTTP, HTTPS, FTP, SFTP, BitTorrent and Metalink. -> 主页:. +> 这是 `aria2c` 命令的一个别名。 -- 下载一个网络资源: +- 原命令的文档在: -`aria2c {{http://example.org/myLinux.iso}}` - -- 从多个源处下载一个资源: - -`aria2c {{http://mirror1.org/myLinux.iso}} {{http://mirror2.org/myLinux.iso}}` - -- 使用两个连接下载资源: - -`aria2c -x{{2}} {{http://example.org/myLinux.iso}}` - -- 从 Metalink URI 中下载资源: - -`aria2c {{http://example.org/myLinux.metalink}}` - -- 从 BitTorrent URI 中下载资源: - -`aria2c {{http://example.org/myLinux.torrent}}` - -- 从 BitTorrent Magnet URI 中下载资源: - -`aria2c {{'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'}}` - -- 从一个文件中下载资源: - -`aria2c -i {{uris.txt}}` +`tldr aria2c` diff --git a/pages.zh/common/aria2c.md b/pages.zh/common/aria2c.md index 5fa2a711de17ad..3428921eada5b6 100644 --- a/pages.zh/common/aria2c.md +++ b/pages.zh/common/aria2c.md @@ -1,28 +1,29 @@ # aria2c -> 快速下载工具. +> 快速下载工具。 > 支持 HTTP(S), FTP, SFTP, BitTorrent, and Metalink. +> 更多信息:. -- 下载一个 URI 到文件: +- 下载一个 URI 到文件: `aria2c {{url}}` -- 从多个源处下载一个资源: +- 从多个源处下载一个资源: `aria2c {{url_1}} {{url_2}}` -- 通过保存在一个文件中的 URL 列表来下载资源: +- 通过保存在一个文件中的 URL 列表来下载资源: `aria2c -i {{文件名}}` -- 使用多个连接下载资源: +- 使用多个连接下载资源: `aria2c -s {{连接数量}} {{url}}` -- 通过带用户名密码验证的 FTP 协议下载资源: +- 通过带用户名密码验证的 FTP 协议下载资源: `aria2c --ftp-user={{用户名}} --ftp-passwd={{密码}} {{url}}` -- 限制下载速度 (bytes/s): +- 限制下载速度(bytes/s): `aria2c --max-download-limit={{速度}} {{url}}` diff --git a/pages.zh/common/arp-scan.md b/pages.zh/common/arp-scan.md new file mode 100644 index 00000000000000..8e4503f33d8496 --- /dev/null +++ b/pages.zh/common/arp-scan.md @@ -0,0 +1,20 @@ +# arp-scan + +> 发送 ARP 数据包到特定主机(指定 IP 地址或主机名),来扫描本地网络。 +> 更多信息:. + +- 扫描当前本地网络: + +`arp-scan --localnet` + +- 扫描带有自定义位掩码的 IP 网络: + +`arp-scan {{192.168.1.1}}/{{24}}` + +- 扫描自定义范围内的 IP 网络: + +`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` + +- 扫描带有自定义子网掩码的 IP 网络: + +`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages.zh/common/arp.md b/pages.zh/common/arp.md index 2743409c212854..488510fa4e4acf 100644 --- a/pages.zh/common/arp.md +++ b/pages.zh/common/arp.md @@ -1,20 +1,16 @@ # arp -> 显示和操作系统的 ARP 缓存. -> 更多信息: . +> 显示和操作系统的 ARP 缓存。 +> 更多信息:. -- 显示当前的 ARP 表: +- 显示当前的 ARP 表: `arp -a` -- 清除整个缓存: - -`sudo arp -a -d` - -- 删除特定条目: +- 删除特定条目: `arp -d {{地址}}` -- 创建指定条目: +- 创建指定条目: `arp -s {{地址}} {{MAC 地址}}` diff --git a/pages.zh/common/asar.md b/pages.zh/common/asar.md index f1ea0bce827499..8a886dc26dbf32 100644 --- a/pages.zh/common/asar.md +++ b/pages.zh/common/asar.md @@ -1,19 +1,20 @@ # asar -> Electron 平台的文件打包工具. +> Electron 平台的文件打包工具。 +> 更多信息:. -- 打包一个文件或目录: +- 打包一个文件或目录: `asar pack {{文件或目录路径}} {{输出的 asar 文件}}` -- 解压一个 asar 文件: +- 解压一个 asar 文件: `asar extract {{asar 文件}}` -- 从 asar 文件中解压指定的文件: +- 从 asar 文件中解压指定的文件: `asar extract-file {{asar 文件}} {{文件}}` -- 列出一个 asar 文件中的内容: +- 列出一个 asar 文件中的内容: `asar list {{asar 文件}}` diff --git a/pages.zh/common/asciinema.md b/pages.zh/common/asciinema.md index f579c9a264ec55..417ebffebc0bc1 100644 --- a/pages.zh/common/asciinema.md +++ b/pages.zh/common/asciinema.md @@ -1,35 +1,36 @@ # asciinema > 录制和播放终端会话,也可以把他们分享到 asciinema.org. +> 更多信息:. -- 将本地安装的`asciinema`与 asciinema.org 账号关联: +- 将本地安装的`asciinema`与 asciinema.org 账号关联: `asciinema auth` -- 进行新的录制(完成后,将提示用户上传或在本地保存: +- 进行新的录制(完成后,将提示用户上传或在本地保存): `asciinema rec` -- 进行新的录制,保存到本地的文件中: +- 进行新的录制,保存到本地的文件中: `asciinema rec {{文件路径}}.cast` -- 从本地文件中播放终端录屏: +- 从本地文件中播放终端录屏: `asciinema play {{文件路径}}.cast` -- 在 asciinema.org 中播放终端录屏: +- 在 asciinema.org 中播放终端录屏: `asciinema play https://asciinema.org/a/{{文件 ID}}` -- 进行新的录制,将闲置时间设置为最多 2.5 秒: +- 进行新的录制,将闲置时间设置为最多 2.5 秒: `asciinema rec -i {{2.5}}` -- 打印本地保存的录像的完整输出: +- 打印本地保存的录像的完整输出: `asciinema cat {{文件路径}}.cast` -- 从本地上传一个录屏到 asciinema.org: +- 从本地上传一个录屏到 asciinema.org: `asciinema upload {{文件路径}}.cast` diff --git a/pages.zh/common/asdf.md b/pages.zh/common/asdf.md index 340e8a759fc784..f2e0d045d290c1 100644 --- a/pages.zh/common/asdf.md +++ b/pages.zh/common/asdf.md @@ -1,28 +1,28 @@ # asdf -> 可扩展的包版本管理器,支持Nodejs,Ruby,Elixir,Erlang等. -> 更多信息: . +> 可扩展的包版本管理器,支持 Nodejs、Ruby、Elixir 和 Erlang 等。 +> 更多信息:. -- 可用插件清单: +- 可用插件清单: `asdf plugin-list-all` -- 安装插件: +- 安装插件: `asdf plugin-add {{插件名}}` -- 软件包的可用版本清单: +- 软件包的可用版本清单: `asdf list-all {{软件包名}}` -- 安装指定版本的软件包: +- 安装指定版本的软件包: `asdf install {{软件包名}} {{版本}}` -- 设置软件包的全局安装版本: +- 设置软件包的全局安装版本: `asdf global {{软件包名}} {{版本}}` -- 设置软件包的本地版本: +- 设置软件包的本地版本: `asdf local {{软件包名}} {{版本}}` diff --git a/pages.zh/common/at.md b/pages.zh/common/at.md new file mode 100644 index 00000000000000..9416c7443dd745 --- /dev/null +++ b/pages.zh/common/at.md @@ -0,0 +1,17 @@ +# at + +> 在一段时间后,执行单次命令。 +> atd 服务(或 atrun)需要处于运行状态,以保证命令成功执行。 +> 更多信息:. + +- 5 分钟后,执行标准输入中的命令(命令输入完成后按 `Ctrl + D`): + +`at now + {{5 minutes}}` + +- 在今天上午 10:00 执行标准输入中的命令: + +`echo "{{./make_db_backup.sh}}" | at {{1000}}` + +- 下周二晚上 9:30 执行指定文件中包含的命令: + +`at -f {{path/to/file}} {{9:30 PM Tue}}` diff --git a/pages.zh/common/atom.md b/pages.zh/common/atom.md index dc325841589253..0053f834aae117 100644 --- a/pages.zh/common/atom.md +++ b/pages.zh/common/atom.md @@ -1,25 +1,25 @@ # atom -> 一个跨平台的,可插拔的文本编辑器. -> 由 `apm` 管理插件. +> 一个跨平台的,可插拔的文本编辑器。 +> 由 `apm` 管理插件。 > 更多信息:. -- 打开文件或目录: +- 打开文件或目录: `atom {{path/to/file_or_directory}}` -- 在新窗口中打开文件或目录: +- 在新窗口中打开文件或目录: `atom -n {{path/to/file_or_directory}}` -- 在已有窗口中打开文件或目录: +- 在已有窗口中打开文件或目录: `atom --add {{path/to/file_or_directory}}` -- 以安全模式启动 Atom (不加载额外插件): +- 以安全模式启动 Atom(不加载额外插件): `atom --safe` -- 在终端前台运行 Atom: +- 在终端前台运行 Atom: `atom --foreground` diff --git a/pages.zh/common/autoflake.md b/pages.zh/common/autoflake.md index 3e16b57caefeee..e3c44a2aca5657 100644 --- a/pages.zh/common/autoflake.md +++ b/pages.zh/common/autoflake.md @@ -1,20 +1,20 @@ # autoflake -> 一个工具,用于检查python代码中未被使用的引入和变量. -> 更多信息: . +> 一个工具,用于检查 Python 代码中未被使用的引入和变量。 +> 更多信息:. -- 移除指定文件中未使用的变量,并展示diff: +- 移除指定文件中未使用的变量,并展示 diff: -`autoflake --remove-unused-variables {{文件.py}}` +`autoflake --remove-unused-variables {{路径/到/文件.py}}` -- 移除多个文件中未使用的引入,并展示diffs: +- 移除多个文件中未使用的引入,并展示 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}}` -- 递归地移除指定文件夹下层所有文件中未使用的变量,并覆盖更新: +- 递归地移除指定文件夹下层所有文件中未使用的变量,并覆盖更新: `autoflake --remove-unused-variables --in-place --recursive {{路径/到/目录}}` diff --git a/pages.zh/common/autojump.md b/pages.zh/common/autojump.md index 4ecb92bf1a14b8..84cdc8c1d88773 100644 --- a/pages.zh/common/autojump.md +++ b/pages.zh/common/autojump.md @@ -1,25 +1,25 @@ # autojump -> 快速跳转,访问次数最多的文件夹优先. -> 使用j、jc、jo作为别名. -> 更多信息: . +> 快速跳转,访问次数最多的文件夹优先。 +> 使用 `j`、`jc`、和 `jo` 作为别名。 +> 更多信息:. -- 跳转到包含指定通配符的目录: +- 跳转到包含指定通配符的目录: `j {{通配符表达式}}` -- 跳转到包含指定通配符的目录的下一级: +- 跳转到包含指定通配符的目录的下一级: `jc {{通配符表达式}}` -- 使用系统文件管理器,打开指定的目录: +- 使用系统文件管理器,打开指定的目录: `jo {{通配符表达式}}` -- 从autojump数据库中删除不存在的目录: +- 从 autojump 数据库中删除不存在的目录: `j --purge` -- 展示autojump数据库数据: +- 展示 autojump 数据库数据: `j -s` diff --git a/pages.zh/common/awk.md b/pages.zh/common/awk.md new file mode 100644 index 00000000000000..ec021fa4c70d39 --- /dev/null +++ b/pages.zh/common/awk.md @@ -0,0 +1,36 @@ +# awk + +> 一种用于文件处理的通用编程语言。 +> 更多信息:. + +- 以空格为分隔符,打印文件每行第五列(也称作字段): + +`awk '{print $5}' {{文件名}}` + +- 以空格为分隔符,打印文件包含“foo” 的所有行的第二列: + +`awk '/{{foo}}/ {print $2}' {{文件名}}` + +- 以逗号而不是空格作为分隔符,打印文件每行的最后一列: + +`awk -F ',' '{print $NF}' {{文件名}}` + +- 计算文件的第一列数值之和并打印: + +`awk '{s+=$1} END {print s}' {{文件名}}` + +- 从第一行开始,每三行打印一行: + +`awk 'NR%3==1' {{文件名}}` + +- 根据条件不同,打印不同内容: + +`awk '{if ($1 == "foo") print "Exact match foo"; else if ($1 ~ "bar") print "Partial match bar"; else print "Baz"}' {{文件名}}` + +- 打印第 10 列等于指定值的所有行: + +`awk '($10 == 指定值)'` + +- 打印第 10 列介于最小值和最大值之间的所有行: + +`awk '($10 >= 最小值 && $10 <= 最大值)'` diff --git a/pages.zh/common/axel.md b/pages.zh/common/axel.md index 25e33e64d27b88..6b8af7eae0ef9b 100644 --- a/pages.zh/common/axel.md +++ b/pages.zh/common/axel.md @@ -1,25 +1,25 @@ # axel -> 一款下载加速器. -> 支持HTTP, HTTPS, 和 FTP. -> 更多信息: . +> 一款下载加速器。 +> 支持 HTTP、HTTPS 和 FTP. +> 更多信息:. -- 链接下载: +- 链接下载: `axel {{超链接}}` -- 链接下载,指定文件名: +- 链接下载,指定文件名: `axel {{超链接}} -o {{文件名称}}` -- 多连接数下载: +- 多连接数下载: `axel -n {{连接数量}} {{超链接}}` -- 查询镜像: +- 查询镜像: `axel -S {{镜像数量}} {{超链接}}` -- 限制下载速度 (字节bite每秒): +- 限制下载速度(字节 bite 每秒): `axel -s {{字节数}} {{超链接}}` diff --git a/pages.zh/common/babel.md b/pages.zh/common/babel.md index 673afec2aca6db..2b7c4087c0ab27 100644 --- a/pages.zh/common/babel.md +++ b/pages.zh/common/babel.md @@ -1,32 +1,36 @@ # babel -> 一款JavaScript的编译器,将下一代ES语法转换为兼容语法。 -> 更多信息: . +> 一款 JavaScript 的编译器,将下一代 ES 语法转换为兼容语法。 +> 更多信息:. -- 转编译指定文件到标准输出: +- 转编译指定文件到标准输出: `babel {{路径/到/文件}}` -- 转编译指定文件,输入为特定文件: +- 转编译指定文件,输入为特定文件: `babel {{路径/到/输入文件}} --out-file {{路径/到/输出文件}}` -- 监听文件变动触发转编译: +- 监听文件变动触发转编译: `babel {{路径/到/输入文件}} --watch` -- 转编译整个目录下的js文件: +- 转编译整个目录下的 js 文件: `babel {{路径/到/输入文件目录}}` -- 跳过指定目录下指定文件的编译(多文件使用英文逗号“,”分隔): +- 跳过指定目录下指定文件的编译(多文件使用英文逗号“,”分隔): `babel {{路径/到/输入文件目录}} --ignore {{被忽略文件}}` -- 转编译后,执行压缩: +- 转编译后,执行压缩: `babel {{路径/到/输入文件}} --minified` -- 使用预设值: +- 使用预设值: `babel {{路径/到/输入文件}} --presets {{预设项}}` + +- 输出所有可用的选项: + +`babel --help` diff --git a/pages.zh/common/banner.md b/pages.zh/common/banner.md index 97db172919a6c3..15da6da41ddf0a 100644 --- a/pages.zh/common/banner.md +++ b/pages.zh/common/banner.md @@ -1,16 +1,16 @@ # banner -> 将给定参数输出为大型 ASCII 文字. -> 更多信息: . +> 将给定参数输出为大型 ASCII 文字。 +> 更多信息:. -- 将文字信息打印为大横幅(引号是可选的): +- 将文字信息打印为大横幅(引号是可选的): `banner "{{Hello World}}"` -- 将文字信息打印为横幅,宽度为 50 个字: +- 将文字信息打印为横幅,宽度为 50 个字: `banner -w {{50}} "{{Hello World}}"` -- 从 stdin 中读取文本: +- 从 stdin 中读取文本: `banner` diff --git a/pages.zh/common/base32.md b/pages.zh/common/base32.md index 90df5cdcacebb2..22fd2ca65c886b 100644 --- a/pages.zh/common/base32.md +++ b/pages.zh/common/base32.md @@ -1,20 +1,20 @@ # base32 -> 将文件或标准输入编码到Base32或从Base32解码为标准输出。 -> 更多信息: . +> 将文件或标准输入编码到 Base32 或从 Base32 解码为标准输出。 +> 更多信息:. -- 编码一个文件: +- 编码一个文件: `base32 {{文件名}}` -- 解码一个文件: +- 解码一个文件: `base32 --decode {{文件名}}` -- 从标准输入编码: +- 从标准输入编码: `{{某指令}} | base32` -- 将标准输入解码: +- 将标准输入解码: `{{某指令}} | base32 --decode` diff --git a/pages.zh/common/base64.md b/pages.zh/common/base64.md index 9a26e12f2d419f..5883d40bd96865 100644 --- a/pages.zh/common/base64.md +++ b/pages.zh/common/base64.md @@ -1,20 +1,20 @@ # base64 -> 将文件或标准输入编码到Base64或从Base64解码为标准输出。 -> 更多信息: . +> 将文件或标准输入编码到 Base64 或从 Base64 解码为标准输出。 +> 更多信息:. -- 编码一个文件: +- 编码一个文件: `base64 {{文件名}}` -- 解码一个文件: +- 解码一个文件: `base64 --decode {{文件名}}` -- 从标准输入编码: +- 从标准输入编码: `{{某指令}} | base64` -- 将标准输入解码: +- 将标准输入解码: `{{某指令}} | base64 --decode` diff --git a/pages.zh/common/basename.md b/pages.zh/common/basename.md index f8074f108e992c..ed3f890bd82ecb 100644 --- a/pages.zh/common/basename.md +++ b/pages.zh/common/basename.md @@ -1,16 +1,16 @@ # basename -> 移除一个路径的目录部分字符. -> 更多信息: . +> 移除一个路径的目录部分字符。 +> 更多信息:. -- 仅显示文件名: +- 仅显示文件名: `basename {{路径/到/文件}}` -- 显示路径字符最右边表示目录的字符: +- 显示路径字符最右边表示目录的字符: `basename {{路径/到/目录/}}` -- 展示无后缀的文件名称: +- 展示无后缀的文件名称: `basename {{路径/到/文件}} {{后缀}}` diff --git a/pages.zh/common/bash.md b/pages.zh/common/bash.md index 162eb1623256f3..db1e0624873331 100644 --- a/pages.zh/common/bash.md +++ b/pages.zh/common/bash.md @@ -1,37 +1,37 @@ # bash > Bourne-Again SHell. -> 兼容`sh`的命令行解释器. -> 更多信息: . +> 兼容`sh`的命令行解释器。 +> 更多信息:. -- 启动交互式 shell: +- 启动交互式 shell: `bash` -- 执行命令: +- 执行命令: `bash -c "{{command}}"` -- 执行脚本文件: +- 执行脚本文件: `bash {{file.sh}}` -- 执行脚本文件,并将所有执行过的命令输出到终端: +- 执行脚本文件,并将所有执行过的命令输出到终端: `bash -x {{file.sh}}` -- 执行脚本文件,并在第一个错误处终止: +- 执行脚本文件,并在第一个错误处终止: `bash -e {{file.sh}}` -- 从输入 (stdin) 读取命令: +- 从输入(stdin)读取命令: `bash -s` -- 将跟随的所有选项原样传递到要执行的脚本文件(可与`-s`选项共用来将选项传递到来自输入的命令 / 脚本) +- 将跟随的所有选项原样传递到要执行的脚本文件(可与`-s`选项共用来将选项传递到来自输入的命令 / 脚本): `bash --` -- 打印 bash 的版本信息 (使用`echo $BASH_VERSION`来获得纯粹的版本字符串): +- 打印 bash 的版本信息(使用`echo $BASH_VERSION`来获得纯粹的版本字符串): `bash --version` diff --git a/pages.zh/common/bashmarks.md b/pages.zh/common/bashmarks.md index 0528d60c0f89c1..f20f5ef3fe4eaf 100644 --- a/pages.zh/common/bashmarks.md +++ b/pages.zh/common/bashmarks.md @@ -1,21 +1,21 @@ # bashmarks -> 使用一个字母的命令,保存或者跳转到常用的目录 -> 更多信息: . +> 使用一个字母的命令,保存或者跳转到常用的目录。 +> 更多信息:. -- 可访问书签清单: +- 可访问书签清单: `l` -- 保存当前目录到某书签里: +- 保存当前目录到某书签里: `s {{书签名}}` -- 跳转到指定书签 +- 跳转到指定书签: `g {{书签名}}` -- 打印书签目录内容 +- 打印书签目录内容: `p {{书签名}}` diff --git a/pages.zh/common/bat.md b/pages.zh/common/bat.md index 79a4e967dea268..61637f2e0f804b 100644 --- a/pages.zh/common/bat.md +++ b/pages.zh/common/bat.md @@ -1,29 +1,29 @@ # bat -> 可以打印并且合并文件的命令. -> `cat`的复制品,外加无法高亮和git集成. -> 更多信息: . +> 可以打印并且合并文件的命令。 +> `cat` 的复制品,外加语法高亮和 Git 集成。 +> 更多信息:. -- 文件内容打印: +- 文件内容打印: `bat {{文件}}` -- 多文件合并到目标文件: +- 多文件合并到目标文件: `bat {{文件1}} {{文件2}} > {{目标文件}}` -- 在指定文件后追加多个文件合并的内容: +- 在指定文件后追加多个文件合并的内容: `bat {{文件1}} {{文件2}} >> {{目标文件}}` -- 打印时,显示行号: +- 打印时,显示行号: `bat -n {{文件}}` -- 高亮一个json文件: +- 高亮一个 `json` 文件: `bat --language json {{文件.json}}` -- 受支持的语言清单: +- 受支持的语言清单: `bat --list-languages` diff --git a/pages.zh/common/bcomps.md b/pages.zh/common/bcomps.md new file mode 100644 index 00000000000000..e1c479557448c4 --- /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/common/behat.md b/pages.zh/common/behat.md index f155ec7456c3be..0af62125dc4ae6 100644 --- a/pages.zh/common/behat.md +++ b/pages.zh/common/behat.md @@ -1,28 +1,28 @@ # behat -> 基于Behaviour-Driven Development的自动化测试PHP框架 -> 更多信息: . +> 基于 Behaviour-Driven Development 的自动化测试 PHP 框架。 +> 更多信息:. -- 初始化一个PHP behat项目: +- 初始化一个 PHP behat 项目: `behat --init` -- 运行所有测试: +- 运行所有测试: `behat` -- 运行指定组所有的测试用例: +- 运行指定组所有的测试用例: `behat --suite={{组名}}` -- 运行所有测试,指定输入格式: +- 运行所有测试,指定输入格式: `behat --format {{pretty|progress}}` -- 将测试结果输出到指定文件: +- 将测试结果输出到指定文件: `behat --out {{路径/到/文件}}` -- 展示测试组所在的目录清单: +- 展示测试组所在的目录清单: `behat --definitions` diff --git a/pages.zh/common/bg.md b/pages.zh/common/bg.md index 4cfe232cad8a4a..87a5408be9aabf 100644 --- a/pages.zh/common/bg.md +++ b/pages.zh/common/bg.md @@ -1,12 +1,12 @@ # bg -> 恢复被挂起的任务 (如. 使用 `Ctrl + Z`), 使它们在后台运行. -> 更多信息: . +> 恢复被挂起的任务(如. 使用 Ctrl + Z),使它们在后台运行。 +> 更多信息:. -- 恢复最近被挂起的任务,在后台运行: +- 恢复最近被挂起的任务,在后台运行: `bg` -- 恢复特定的任务 (使用 `jobs -l` 可以获取任务ID) 并在后台运行: +- 恢复特定的任务(使用 `jobs -l` 可以获取任务 ID)并在后台运行: `bg %{{job_id}}` diff --git a/pages.zh/common/binwalk.md b/pages.zh/common/binwalk.md new file mode 100644 index 00000000000000..b9a284e3ac601b --- /dev/null +++ b/pages.zh/common/binwalk.md @@ -0,0 +1,28 @@ +# binwalk + +> 固件分析工具。 +> 更多信息:. + +- 扫描一个二进制文件: + +`binwalk {{二进制文件}}` + +- 解压一个二进制文件并指定输出目录: + +`binwalk --extract --directory {{输出目录}} {{二进制文件}}` + +- 递归解压一个二进制文件并限制递归深度为 2: + +`binwalk --extract --matryoshka --depth {{2}} {{二进制文件}}` + +- 解压一个二进制文件并指定文件签名: + +`binwalk --dd '{{png image:png}}' {{二进制文件}}` + +- 分析一个二进制文件的熵,用与文件相同的名字和 `.png` 后缀保存绘图: + +`binwalk --entropy --save {{二进制文件}}` + +- 在单条命令中组合熵、签名和操作码分析: + +`binwalk --entropy --signature --opcodes {{二进制文件}}` diff --git a/pages.zh/common/bmaptool.md b/pages.zh/common/bmaptool.md index 7b9a05762c3c3c..00bcf1098b6c13 100644 --- a/pages.zh/common/bmaptool.md +++ b/pages.zh/common/bmaptool.md @@ -1,20 +1,20 @@ # bmaptool -> 便捷地创建或复制块文件映射(被设计的比`cp`或`dd`更快). -> 更多信息: . +> 便捷地创建或复制块文件映射(被设计的比`cp`或`dd`更快)。 +> 更多信息:. -- 使用图片生成块图文件: +- 使用图片生成块图文件: -`bmaptool create -o {{blockmap格式文件.bmap}} {{图片文件}}` +`bmaptool create -o {{blockmap 格式文件.bmap}} {{图片文件}}` -- 复制图片到指定目录: +- 复制图片到指定目录: -`bmaptool copy --bmap {{blockmap格式文件}} {{图片文件}} {{/开发路径/sdb}}` +`bmaptool copy --bmap {{blockmap 格式文件}} {{图片文件}} {{/开发路径/sdb}}` -- 复制压缩后的图片到指定目录: +- 复制压缩后的图片到指定目录: -`bmaptool copy --bmap {{blockmap格式文件}} {{图片文件.gz}} {{/开发路径/sdb}}` +`bmaptool copy --bmap {{blockmap 格式文件}} {{图片文件.gz}} {{/开发路径/sdb}}` -- 复制图片的时候,不将图片转成块图: +- 复制图片的时候,不将图片转成块图: `bmaptool copy --nobmap {{图片文件}} {{/开发路径/sdb}}` diff --git a/pages.zh/common/bower.md b/pages.zh/common/bower.md index c79f2db807a7d8..2e4babf08f8e0f 100644 --- a/pages.zh/common/bower.md +++ b/pages.zh/common/bower.md @@ -1,33 +1,33 @@ # bower -> 前端web开发的包管理优化工具。 -> 一个包可以是GitHub中user/repo的缩写,一个Git端口,一个URL链接或者一个已注册的包。 -> 更多信息: . +> 前端 web 开发的包管理优化工具。 +> 一个包可以是 GitHub 中 user/repo 的缩写,一个 Git 端口,一个 URL 链接或者一个已注册的包。 +> 更多信息:. -- 安装列在项目下 的bower.json文件中的依赖: +- 安装列在项目下 的 `bower.json` 文件中的依赖: `bower install` -- 安装一个或者多个依赖到bower_components目录: +- 安装一个或者多个依赖到 `bower_components` 目录: `bower install {{包名1}} {{包名2}}` -- 从本地的bower_components目录卸载依赖 +- 从本地的 `bower_components` 目录卸载依赖: `bower uninstall {{包名1}} {{包名2}}` -- 列出本地包和可能的更新项: +- 列出本地包和可能的更新项: `bower list` -- 显示bower指令的帮助信息: +- 显示 bower 指令的帮助信息: `bower help {{指令}}` -- 创建你的项目的bower.json: +- 创建你的项目的 `bower.json`: `bower init` -- 安装时候指定依赖的版本号,并添加到bower.json: +- 安装时候指定依赖的版本号,并添加到 `bower.json`: `bower install {{local_name}}={{package}}#{{version}} --save` diff --git a/pages.zh/common/brew-cask.md b/pages.zh/common/brew-cask.md new file mode 100644 index 00000000000000..4aa706d860679b --- /dev/null +++ b/pages.zh/common/brew-cask.md @@ -0,0 +1,36 @@ +# brew cask + +> macOS 上的应用程序包管理工具。 +> 更多信息:. + +- 模糊搜索可用命令行工具和软件包: + +`brew search {{软件名}}` + +- 安装一个软件: + +`brew cask install {{软件名}}` + +- 列出全部已安装软件: + +`brew cask list` + +- 列出全部已安装的软件中,可以升级的: + +`brew cask outdated` + +- 将一个已安装的软件升级到最新的版本: + +`brew cask upgrade {{软件名}}` + +- 删除一个软件(仅通过 brew cask install 方式安装的): + +`brew cask uninstall {{软件名}}` + +- 卸载一个软件并删除相关的设置和文件: + +`brew cask zap {{软件名}}` + +- 显示指定软件的相关信息: + +`brew cask info {{软件名}}` diff --git a/pages.zh/common/brew.md b/pages.zh/common/brew.md new file mode 100644 index 00000000000000..276b3e5433e90d --- /dev/null +++ b/pages.zh/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> Linux 和 macOS 的包管理器。 +> 更多信息:. + +- 安装最新稳定版的配方(formula)或木桶(cask),使用 `--devel` 安装开发版: + +`brew install {{配方}}` + +- 列出所有已安装的配方和木桶: + +`brew list` + +- 升级已安装的配方或木桶(如果没有指定,则升级所有已安装的配方/木桶): + +`brew upgrade {{配方}}` + +- 从 Homebrew 源存储库中获取最新版本的 Homebrew 以及所有配方和木桶: + +`brew update` + +- 显示有新版本的配方和木桶: + +`brew outdated` + +- 搜索可用的配方(即包)和木桶(即原生包): + +`brew search {{包名}}` + +- 显示有关配方或木桶的信息(版本、安装路径、依赖等): + +`brew info {{配方}}` + +- 检查本地 Homebrew 安装包是否有潜在问题: + +`brew doctor` diff --git a/pages.zh/common/browser-sync.md b/pages.zh/common/browser-sync.md index 97203f6aaa90da..d4711c9b9ee9aa 100644 --- a/pages.zh/common/browser-sync.md +++ b/pages.zh/common/browser-sync.md @@ -1,20 +1,20 @@ # browser-sync -> 启动一个本地的服务,可以监听文件改动,刷新浏览器. -> 更多信息: . +> 启动一个本地的服务,可以监听文件改动,刷新浏览器。 +> 更多信息:. -- 将指定目录发成服务: +- 将指定目录发成服务: `browser-sync start --server {{路径/到/目录}} --files {{路径/到/目录}}` -- 启动当前目录服务,同时监听指定目录下css文件的变动 +- 启动当前目录服务,同时监听指定目录下 `css` 文件的变动: `browser-sync start --server --files '{{路径/到/目录/*.css}}'` -- 创建配置文件: +- 创建配置文件: `browser-sync init` -- 按指定配置文件中的配置启动服务: +- 按指定配置文件中的配置启动服务: `browser-sync start --config {{配置文件}}` diff --git a/pages.zh/common/btm.md b/pages.zh/common/btm.md index e45f493f24afed..cc4df577e8a4c7 100644 --- a/pages.zh/common/btm.md +++ b/pages.zh/common/btm.md @@ -1,25 +1,25 @@ # btm -> 命令行`top`的替代品. -> 比`top更轻便,支持跨平台、图表更丰富`. -> 更多信息: . +> 命令行`top`的替代品。 +> 比 `top` 更轻便,支持跨平台、图表更丰富。 +> 更多信息:. -- 展示默认布局 (cpu, 内存, 温度, 磁盘, 网络和 进程): +- 展示默认布局(cpu, 内存,温度,磁盘,网络和 进程): `btm` -- 开启基础模式,关闭图表和高亮(接近于 `top`): +- 开启基础模式,关闭图表和高亮(接近于 `top`): `btm --basic` -- 将图表中的小点换成大点: +- 将图表中的小点换成大点: `btm --dot_marker` -- 展示电池充电和健康状态: +- 展示电池充电和健康状态: `btm --battery` -- 设置图表刷新间隔和留存数据的时长: +- 设置图表刷新间隔和留存数据的时长: `btm --rate 250 --default_time_value 30000` diff --git a/pages.zh/common/buku.md b/pages.zh/common/buku.md index 015e60eae2979b..d4d2ab0aecad6a 100644 --- a/pages.zh/common/buku.md +++ b/pages.zh/common/buku.md @@ -1,24 +1,24 @@ # buku -> 命令行版本的书签管理器. -> 更多信息: . +> 命令行版本的书签管理器。 +> 更多信息:. -- 根据关键词和标签查找书签: +- 根据关键词和标签查找书签: `buku {{关键字}} --stag {{标签}}` -- 添加书签,并且打上标签: +- 添加书签,并且打上标签: `buku --add {{https://example.com}} {{搜索引擎}}, {{标签}}` -- 删除一个书签: +- 删除一个书签: -`buku --delete {{书签id}}` +`buku --delete "{{书签 id}}"` -- 打开编辑器,修改书签: +- 打开编辑器,修改书签: -`buku --write {{书签id}}` +`buku --write "{{书签 id}}"` -- 将指定标签移除: +- 将指定标签移除: -`buku --update {{书签id}} --tag {{-}} {{搜索引擎}}` +`buku --update "{{书签 id}}" --tag {{-}} {{搜索引擎}}` diff --git a/pages.zh/common/bundler.md b/pages.zh/common/bundler.md new file mode 100644 index 00000000000000..8f0668d4061d90 --- /dev/null +++ b/pages.zh/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> 这是 `bundle` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bundle` diff --git a/pages.zh/common/carbon-now.md b/pages.zh/common/carbon-now.md index b970e8eedf7419..baabf006bacac6 100644 --- a/pages.zh/common/carbon-now.md +++ b/pages.zh/common/carbon-now.md @@ -1,36 +1,36 @@ # carbon-now > 创建漂亮的代码图片。 -> 更多信息在 . +> 更多信息:. -- 使用默认设置从文件创建图片: +- 使用默认设置从文件创建图片: `carbon-now {{文件}}` -- 使用默认设置从剪贴板创建图片: +- 使用默认设置从剪贴板创建图片: `carbon-now --from-clipboard` -- 使用默认设置从标准输入创建图片: +- 使用默认设置从标准输入创建图片: `{{输入}} | carbon-now` -- 以交互方式创建图片以进行自定义设置,还可以选择保存预设: +- 以交互方式创建图片以进行自定义设置,还可以选择保存预设: `carbon-now -i {{文件}}` -- 从先前保存的预设创建图片: +- 从先前保存的预设创建图片: `carbon-now -p {{预设}} {{文件}}` -- 从指定的文本行开始: +- 从指定的文本行开始: `carbon-now -s {{行号}} {{文件}}` -- 结束于指定的文本行: +- 结束于指定的文本行: `carbon-now -e {{行号}} {{文件}}` -- 在浏览器中打开图片而不是保存: +- 在浏览器中打开图片而不是保存: `carbon-now --open {{文件}}` diff --git a/pages.zh/common/case.md b/pages.zh/common/case.md index 10217637bbdcdc..3f0e6f89e99f4d 100644 --- a/pages.zh/common/case.md +++ b/pages.zh/common/case.md @@ -1,12 +1,12 @@ # case -> case ... esac 与其他语言中的 switch ... case 语句类似,是一种多分枝选择结构. -> 更多信息: . +> case ... esac 与其他语言中的 switch ... case 语句类似,是一种多分枝选择结构。 +> 更多信息:. -- 通过字符串字面量判断执行分支: +- 通过字符串字面量判断执行分支: `case {{入参变量}} in {{字符字面量1}} {{执行语句块1}} ;; {{字符字面量2}}) {{执行语句块2}} ;; *) {{默认执行语句块}} ;; esac` -- 搭配通配符进行匹配,判断执行分支: +- 搭配通配符进行匹配,判断执行分支: `case {{入参变量}} in {{通配符或者字符字面量}}) {{执行语句块1}} ; ;; {{通配符或者字符字面量}}) {{执行语句块1}}; ;; *) {{echo "what?"}}; ;; esac` diff --git a/pages.zh/common/cat.md b/pages.zh/common/cat.md index 036cb3ebaca5c9..284564a4eb8c35 100644 --- a/pages.zh/common/cat.md +++ b/pages.zh/common/cat.md @@ -1,24 +1,24 @@ # cat -> 打印和拼接文件的工具. -> 更多信息: . +> 打印和拼接文件的工具。 +> 更多信息:. -- 以标准输出,打印文件内容: +- 以标准输出,打印文件内容: `cat {{file}}` -- 多文件合并到目标文件: +- 多文件合并到目标文件: `cat {{file1}} {{file2}} > {{target_file}}` -- 多文件合并,并追加到目标文件: +- 多文件合并,并追加到目标文件: `cat {{file1}} {{file2}} >> {{target_file}}` -- 显示行号: +- 显示行号: `cat -n {{file}}` -- 显示不可打印和空白的字符 (使用`M-` 前缀标记非ASCII字符): +- 显示不可打印和空白的字符(使用 `M-` 前缀标记非 ASCII 字符): `cat -v -t -e {{file}}` diff --git a/pages.zh/common/ccomps.md b/pages.zh/common/ccomps.md new file mode 100644 index 00000000000000..6dac9c092a8a16 --- /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/cd.md b/pages.zh/common/cd.md index ba7e30058110b5..0cbfaff94e3db8 100644 --- a/pages.zh/common/cd.md +++ b/pages.zh/common/cd.md @@ -1,20 +1,28 @@ # cd -> 更改当前工作目录. -> 更多信息: . +> 更改当前工作目录。 +> 更多信息:. -- 转到指定目录: +- 转到指定目录: -`cd {{路径}}` +`cd {{路径/到/目录}}` -- 转到当前用户的主(home)目录: +- 转到当前目录的父目录: + +`cd ..` + +- 转到当前用户的主(home)目录: `cd` -- 转到当前目录的父目录: +- 转到指定用户的主(home)目录: -`cd ..` +`cd ~{{用户名}}` -- 转到刚才选择的目录: +- 转到刚才选择的目录: `cd -` + +- 转到根目录: + +`cd /` diff --git a/pages.zh/common/chmod.md b/pages.zh/common/chmod.md new file mode 100644 index 00000000000000..578fa374c995dc --- /dev/null +++ b/pages.zh/common/chmod.md @@ -0,0 +1,36 @@ +# chmod + +> 修改文件或目录的访问权限。 +> 更多信息:. + +- 授予所有者[u]执行[x]文件的权限: + +`chmod u+x {{文件}}` + +- 授予所有者[u]读[r]和写[w]文件或目录的权限: + +`chmod u+rw {{文件或目录}}` + +- 移除用户组[g]的文件执行[x]权限: + +`chmod g-x {{文件}}` + +- 授予所有用户[a]读[r]以及执行[x]文件的权限: + +`chmod a+rx {{文件}}` + +- 授予其他用户[o](不在所有者用户组)和用户组[g]同样的权限: + +`chmod o=g {{文件}}` + +- 移除其他用户[o]的所有权限: + +`chmod o= {{文件}}` + +- 递归授予用户组[g]和其他用户[o]目录下所有文件和子目录的写[w]权限: + +`chmod -R g+w,o+w {{目录}}` + +- 递归授予所有用户[a]目录下文件的读[r]权限和子目录的执行[X]权限: + +`chmod -R a+rX {{目录}}` diff --git a/pages.zh/common/chown.md b/pages.zh/common/chown.md new file mode 100644 index 00000000000000..e5a6d9636911ad --- /dev/null +++ b/pages.zh/common/chown.md @@ -0,0 +1,24 @@ +# chown + +> 修改用户和用户组对文件或目录的所有权。 +> 更多信息:. + +- 修改文件或目录的所有者: + +`chown {{用户}}} {{路径/到/文件或目录}}` + +- 修改文件或目录的所有者及所属组: + +`chown {{用户}}:{{用户组}} {{路径/到/文件或目录}}` + +- 递归修改目录及其子目录和文件的所有者: + +`chown -R {{用户}} {{路径/到/目录}}` + +- 修改符号链接的所有者: + +`chown -h {{用户}} {{路径/到/符号链接}}` + +- 修改文件或目录的所有者与参考文件相同: + +`chown --reference={{路径/到/参考文件}} {{路径/到/文件或目录}}` diff --git a/pages.zh/common/clamav.md b/pages.zh/common/clamav.md new file mode 100644 index 00000000000000..b19d29b96761aa --- /dev/null +++ b/pages.zh/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 这是 `clamdscan` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr clamdscan` diff --git a/pages.zh/common/clang-cpp.md b/pages.zh/common/clang-cpp.md new file mode 100644 index 00000000000000..271f69cd93c71f --- /dev/null +++ b/pages.zh/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> 这是 `clang++` 命令的一个别名。 + +- 原命令的文档在: + +`tldr clang++` diff --git a/pages.zh/common/clear.md b/pages.zh/common/clear.md index 2a203804939e16..98b9d609715bf0 100644 --- a/pages.zh/common/clear.md +++ b/pages.zh/common/clear.md @@ -1,20 +1,20 @@ # clear -> 清空终端的屏幕. -> 更多信息: . +> 清空终端的屏幕。 +> 更多信息:. -- 清空屏幕(相当于在 Bash shell 中按 Control-L 键): +- 清空屏幕(相当于在 Bash shell 中按 Control-L 键): `clear` -- 清空屏幕但保留终端的回滚缓冲区: +- 清空屏幕但保留终端的回滚缓冲区: `clear -x` -- 指明要清空的终端类型(默认为环境变量 `TERM` 的值): +- 指明要清空的终端类型(默认为环境变量 `TERM` 的值): `clear -T {{type_of_terminal}}` -- 显示 `clear` 使用的 `ncurses` 版本: +- 显示 `clear` 使用的 `ncurses` 版本: `clear -V` diff --git a/pages.zh/common/clojure.md b/pages.zh/common/clojure.md new file mode 100644 index 00000000000000..e039e3de00922f --- /dev/null +++ b/pages.zh/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> 这是 `clj` 命令的一个别名。 + +- 原命令的文档在: + +`tldr clj` diff --git a/pages.zh/common/code.md b/pages.zh/common/code.md index 67be6e5ba9bc18..186f451458c473 100644 --- a/pages.zh/common/code.md +++ b/pages.zh/common/code.md @@ -1,28 +1,28 @@ # code > Visual Studio Code. -> 更多信息: . +> 更多信息:. -- 打开 VS Code: +- 打开 VS Code: `code` -- 在 VS Code 中打开当前目录: +- 在 VS Code 中打开当前目录: `code .` -- 在 VS Code 打开一个文件或目录: +- 在 VS Code 打开一个文件或目录: `code {{路径/文件或目录}}` -- 在当前打开的 VS Code 窗口中打开一个文件或目录: +- 在当前打开的 VS Code 窗口中打开一个文件或目录: `code --reuse-window {{路径/文件或目录}}` -- 在 VS Code 中对比两个文件: +- 在 VS Code 中对比两个文件: `code -d {{文件1}} {{文件2}}` -- 用超级用户 (sudo) 权限打开 VS Code: +- 用超级用户(sudo)权限打开 VS Code: `sudo code {{路径/文件或目录}} --user-data-dir` diff --git a/pages.zh/common/cola.md b/pages.zh/common/cola.md new file mode 100644 index 00000000000000..e1a3cbf3f8e13f --- /dev/null +++ b/pages.zh/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> 这是 `git-cola` 命令的一个别名。 + +- 原命令的文档在: + +`tldr git-cola` diff --git a/pages.zh/common/command.md b/pages.zh/common/command.md index 90f96ade31706f..1c26ce15f8300d 100644 --- a/pages.zh/common/command.md +++ b/pages.zh/common/command.md @@ -1,8 +1,12 @@ # command -> 命令强制 shell 执行命令程序,并忽略具有相同名称的任何函数、内置函数和别名(会忽略掉一切别名,执行命令本身). -> 更多信息: . +> Command 强制当前 shell 执行指定程序,并忽略具有相同名称的任何函数、内置函数和别名。 +> 更多信息:. -- 从字面上执行 `ls` 程序,即使存在 ls 别名: +- 从字面上执行 `ls` 程序,即使存在 `ls` 别名: `command {{ls}}` + +- 显示指定命令的可执行程序路径或别名定义: + +`command -v {{命令名}}` diff --git a/pages.zh/common/compgen.md b/pages.zh/common/compgen.md new file mode 100644 index 00000000000000..2649d7522d99a7 --- /dev/null +++ b/pages.zh/common/compgen.md @@ -0,0 +1,24 @@ +# compgen + +> 用于在 bash 中自动完成的内置命令,按两次 tab 键即可调用该命令。 +> 更多信息:. + +- 显示所有可以执行的命令: + +`compgen -c` + +- 列出所有别名: + +`compgen -a` + +- 列出所有可以运行的函数: + +`compgen -A function` + +- 列出所有 shell 的保留关键字: + +`compgen -k` + +- 查看以 'ls' 开头的所有可用命令和别名: + +`compgen -ac {{ls}}` diff --git a/pages.zh/common/cp.md b/pages.zh/common/cp.md new file mode 100644 index 00000000000000..47b62a63a79f57 --- /dev/null +++ b/pages.zh/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> 复制文件和文件夹。 +> 更多信息:. + +- 将文件复制到另一个位置: + +`cp {{某路径/源文件.ext}} {{某路径/目标文件.ext}}` + +- 将文件复制到另一个文件夹,并保留原来的文件名: + +`cp {{某路径/源文件.ext}} {{某路径/目标文件夹}}` + +- 以递归方式将文件夹内的内容复制到另一个位置(如果目标文件夹存在,则将此文件夹复制到目标文件夹中): + +`cp -R {{某路径/源文件夹}} {{某路径/目标文件夹}}` + +- 以详细模式递归复制目录(在复制文件时显示文件信息): + +`cp -vR {{某路径/源文件夹}} {{某路径/目标文件夹}}` + +- 以交互方式将文本文件复制到另一个位置(覆盖之前会提示用户): + +`cp -i {{*.txt}} {{某路径/目标文件夹}}` + +- 复制之前,请遵循符号链接: + +`cp -L {{符号文件}} {{某路径/目标文件夹}}` diff --git a/pages.zh/common/cron.md b/pages.zh/common/cron.md new file mode 100644 index 00000000000000..a8035bb6f83d59 --- /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 a5a79543620dbf..ebfd7187f3f9e7 100644 --- a/pages.zh/common/curl.md +++ b/pages.zh/common/curl.md @@ -1,37 +1,37 @@ # curl -> 向 / 从一个服务器传输数据. +> 向 / 从一个服务器传输数据。 > 支持大多数协议,包括 HTTP, FTP, 和 POP3. > 更多信息:. -- 将指定 URL 的内容下载到文件: +- 将指定 URL 的内容下载到文件: -`curl {{http://example.com}} -o {{文件名}}` +`curl {{http://example.com}} --output {{文件名}}` -- 将文件从 URL 保存到由 URL 指示的文件名中: +- 将文件从 URL 保存到由 URL 指示的文件名中: -`curl -O {{http://example.com/filename}}` +`curl --remote-name {{http://example.com/filename}}` -- 下载文件,跟随 [L] 重定向,并且自动 [C] 续传(恢复)前序文件传输: +- 下载文件,跟随 重定向,并且自动 续传(恢复)前序文件传输: -`curl -O -L -C - {{http://example.com/filename}}` +`curl --remote-name --location --continue-at - {{http://example.com/filename}}` -- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`): +- 发送表单编码数据(`application/x-www-form-urlencoded` 的 POST 请求): -`curl -d {{'name=bob'}} {{http://example.com/form}}` +`curl --data {{'name=bob'}} {{http://example.com/form}}` -- 发送带有额外请求头,使用自定义请求方法的请求: +- 发送带有额外请求头,使用自定义请求方法的请求: -`curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://example.com}}` +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}` -- 发送 JSON 格式的数据,并附加正确的 `Content-Type` 请求头: +- 发送 JSON 格式的数据,并附加正确的 `Content-Type` 请求头: -`curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/users/1234}}` +`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}` -- 使用用户名和密码,授权访问服务器: +- 使用用户名和密码,授权访问服务器: -`curl -u myusername:mypassword {{http://example.com}}` +`curl --user myusername:mypassword {{http://example.com}}` -- 为指定资源使用客户端证书和密钥,并且跳过证书验证: +- 为指定资源使用客户端证书和密钥,并且跳过证书验证: `curl --cert {{client.pem}} --key {{key.pem}} --insecure {{https://example.com}}` diff --git a/pages.zh/common/df.md b/pages.zh/common/df.md new file mode 100644 index 00000000000000..33bc9368da7b14 --- /dev/null +++ b/pages.zh/common/df.md @@ -0,0 +1,24 @@ +# df + +> 提供文件系统磁盘空间使用情况的概览。 +> 更多信息:. + +- 显示所有文件系统和它们的磁盘使用情况: + +`df` + +- 以人类可读的形式显示所有文件系统和它们的磁盘使用情况: + +`df -h` + +- 显示包含给定文件或目录的文件系统及其磁盘使用情况: + +`df {{路径/到/文件或目录}}` + +- 显示索引节点数量的统计数据: + +`df -i` + +- 显示不包括指定类型的文件系统及其磁盘使用情况: + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.zh/common/docker-build.md b/pages.zh/common/docker-build.md new file mode 100644 index 00000000000000..f111885bf37451 --- /dev/null +++ b/pages.zh/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 {{name:tag}} .` + +- 打包一个没有上下文的 docker 镜像: + +`docker build --tag {{name:tag}} - < {{Dockerfile}}` + +- 打包镜像时不使用缓存: + +`docker build --no-cache --tag {{name: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.zh/common/docker.md b/pages.zh/common/docker.md new file mode 100644 index 00000000000000..d08f9ca1c6c254 --- /dev/null +++ b/pages.zh/common/docker.md @@ -0,0 +1,37 @@ +# docker + +> 管理 Docker 容器和镜像。 +> 此命令也有关于其子命令的文件,例如:`docker run`. +> 更多信息:. + +- 列出目前正在运行的 docker 容器: + +`docker ps` + +- 列出所有 docker 容器(包括停止的容器): + +`docker ps -a` + +- 透过镜像启动容器,并为容器命名: + +`docker run --name {{容器名称}} {{镜像}}` + +- 启动或停止现有容器: + +`docker {{start|stop}} {{容器名称}}` + +- 从 docker registry 中拉取镜像: + +`docker pull {{镜像}}` + +- 从正在运行的容器内打开一个 shell: + +`docker exec -it {{容器名称}} {{sh}}` + +- 删除一个停止的容器: + +`docker rm {{容器名称}}` + +- 获取并查看容器的日志: + +`docker logs -f {{容器名称}}` diff --git a/pages.zh/common/echo.md b/pages.zh/common/echo.md index 0e5aa660f308aa..53529092269653 100644 --- a/pages.zh/common/echo.md +++ b/pages.zh/common/echo.md @@ -1,13 +1,13 @@ # echo -> 输出给定参数. -> 更多信息: . +> 输出给定参数。 +> 更多信息:. -- 输出文本信息. 注意: 引号是可选的: +- 输出文本信息. 注意: 引号是可选的: `echo "{{Hello World}}"` -- 输出带有环境变量的信息: +- 输出带有环境变量的信息: `echo "{{My path is $PATH}}"` @@ -15,10 +15,10 @@ `echo -n "{{Hello World}}"` -- 向文件添加信息: +- 向文件添加信息: `echo "{{Hello World}}" >> {{file.txt}}` -- 启用反斜杠转义的解释(特殊字符): +- 启用反斜杠转义的解释(特殊字符): `echo -e "{{Column 1\tColumn 2}}"` diff --git a/pages.zh/common/edgepaint.md b/pages.zh/common/edgepaint.md new file mode 100644 index 00000000000000..4e1203914b87c0 --- /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/espanso.md b/pages.zh/common/espanso.md new file mode 100644 index 00000000000000..577f5bda6915ea --- /dev/null +++ b/pages.zh/common/espanso.md @@ -0,0 +1,20 @@ +# espanso + +> 用 Rust 编写的跨平台文本扩展器。 +> 更多信息:. + +- 检查状态: + +`espanso status` + +- 编辑配置: + +`espanso edit config` + +- 从 hub 商店()安装一个软件包: + +`espanso install {{软件包的名字}}` + +- 重新启动(安装软件包后需要,在失败的情况下很有用): + +`espanso restart` diff --git a/pages.zh/common/etcd.md b/pages.zh/common/etcd.md new file mode 100644 index 00000000000000..a11b361657516f --- /dev/null +++ b/pages.zh/common/etcd.md @@ -0,0 +1,20 @@ +# etcd + +> 分布式,可靠的键值存储,用于分布式系统中存储最关键的数据。 +> 更多信息:. + +- 启动单节点 etcd 集群: + +`etcd` + +- 启动一个单节点 etcd 集群,在自定义 URL 上侦听客户端请求: + +`etcd --advertise-client-urls {{http://127.0.0.1:1234}} --listen-client-urls {{http://127.0.0.1:1234}}` + +- 使用自定义名称启动单节点 etcd 集群: + +`etcd --name {{my_etcd_cluster}}` + +- 启动单节点 etcd 集群,同时可以在这里看到大量监控指标 http://localhost:2379/debug/pprof/: + +`etcd --enable-pprof --metrics extensive` diff --git a/pages.zh/common/eval.md b/pages.zh/common/eval.md new file mode 100644 index 00000000000000..f8d5aba35c580c --- /dev/null +++ b/pages.zh/common/eval.md @@ -0,0 +1,12 @@ +# eval + +> 在当前 shell 中以单个命令的形式执行参数,并返回其结果。 +> 更多信息:. + +- 使用 'foo' 做为参数调用 `echo`: + +`eval "{{echo foo}}"` + +- 在当前 shell 程序中设置变量: + +`eval "{{foo=bar}}"` diff --git a/pages.zh/common/exit.md b/pages.zh/common/exit.md new file mode 100644 index 00000000000000..34154804ca5a9a --- /dev/null +++ b/pages.zh/common/exit.md @@ -0,0 +1,12 @@ +# exit + +> 退出终端程序。 +> 更多信息:. + +- 使用最后执行命令的退出代码,退出终端程序: + +`exit` + +- 使用指定的退出代码,退出终端程序: + +`exit {{exit_code}}` diff --git a/pages.zh/common/export.md b/pages.zh/common/export.md new file mode 100644 index 00000000000000..6a0f87b92b4546 --- /dev/null +++ b/pages.zh/common/export.md @@ -0,0 +1,16 @@ +# export + +> 命令为当前 shell 中的子进程进行环境变量设置。 +> 更多信息:. + +- 设置为新的环境变量: + +`export {{某变量名}}={{值}}` + +- 删除环境变量: + +`export -n {{某变量名}}` + +- 给 PATH 追加新的路径进去: + +`export PATH=$PATH:{{追加的 path 路径}}` diff --git a/pages.zh/common/fc-cache.md b/pages.zh/common/fc-cache.md new file mode 100644 index 00000000000000..5ca2b038f4cb91 --- /dev/null +++ b/pages.zh/common/fc-cache.md @@ -0,0 +1,16 @@ +# fc-cache + +> 扫描字体目录,以便建立字体缓存文件。 +> 更多信息:. + +- 生成字体缓存文件: + +`fc-cache` + +- 强制重建所有字体缓存文件,而不检查缓存是否为最新版本: + +`fc-cache -f` + +- 删除字体缓存文件,然后生成新的字体缓存文件: + +`fc-cache -r` diff --git a/pages.zh/common/fc-list.md b/pages.zh/common/fc-list.md new file mode 100644 index 00000000000000..635c8ef627a39f --- /dev/null +++ b/pages.zh/common/fc-list.md @@ -0,0 +1,16 @@ +# fc-list + +> 列出系统上安装的可用字体。 +> 更多信息:. + +- 返回系统中已安装字体的列表: + +`fc-list` + +- 返回具有给定名称的已安装字体的列表: + +`fc-list | grep '{{DejaVu Serif}}'` + +- 返回系统中已安装字体的数量: + +`fc-list | wc -l` diff --git a/pages.zh/common/fc.md b/pages.zh/common/fc.md new file mode 100644 index 00000000000000..e042c69b55d6d6 --- /dev/null +++ b/pages.zh/common/fc.md @@ -0,0 +1,16 @@ +# fc + +> 打开最近的命令并编辑它。 +> 更多信息:. + +- 在系统默认编辑器中打开: + +`fc` + +- 指定要使用的的编辑器: + +`fc -e {{'emacs'}}` + +- 从历史记录中列出最近的命令: + +`fc -l` diff --git a/pages.zh/common/feh.md b/pages.zh/common/feh.md new file mode 100644 index 00000000000000..0cb1bf11268bee --- /dev/null +++ b/pages.zh/common/feh.md @@ -0,0 +1,28 @@ +# feh + +> 轻量级图像查看工具。 +> 更多信息:. + +- 查看本地图像或使用 URL: + +`feh {{图片路径}}` + +- 递归查看图像: + +`feh --recursive {{图片路径}}` + +- 使用无边框窗口查看图像: + +`feh --borderless {{图片路径}}` + +- 在浏览完最后一个图像之后退出: + +`feh --cycle-once {{图片路径}}` + +- 设置幻灯片放映周期延迟时间(秒): + +`feh --slideshow-delay {{秒}} {{图片路径}}` + +- 设置墙纸(居中、填充、最大化、缩放或平铺): + +`feh --bg-{{center|fill|max|scale|tile}} {{图片路径}}` diff --git a/pages.zh/common/file.md b/pages.zh/common/file.md new file mode 100644 index 00000000000000..32bb342b3aa458 --- /dev/null +++ b/pages.zh/common/file.md @@ -0,0 +1,24 @@ +# file + +> 确定文件类型。 +> 更多信息:. + +- 提供指定文件类型的描述,对于没有文件扩展名的文件可以正常工作: + +`file {{文件名}}` + +- 查看压缩文件并确定其中的文件类型: + +`file -z {{xxx.zip}}` + +- 允许文件与特殊文件或设备文件一起使用: + +`file -s {{文件名}}` + +- 不要在第一个文件类型匹配时停止;继续执行直到文件结束: + +`file -k {{文件名}}` + +- 确定文件的 MIME 编码类型: + +`file -I {{文件名}}` diff --git a/pages.zh/common/find.md b/pages.zh/common/find.md new file mode 100644 index 00000000000000..3aaf654efadf6c --- /dev/null +++ b/pages.zh/common/find.md @@ -0,0 +1,36 @@ +# find + +> 在指定目录树下递归查找文件或目录。 +> 更多信息:. + +- 通过扩展名查找文件: + +`find {{指定目录}} -name '{{*.ext}}'` + +- 查找匹配多个路径或名称模式的文件: + +`find {{指定目录}} -path '{{**/path/**/*.ext}}' -or -name '{{*pattern*}}'` + +- 查找匹配指定名称的目录,不区分大小写: + +`find {{指定目录}} -type d -iname '{{*lib*}}'` + +- 查找匹配指定模式的文件,排除特定路径: + +`find {{指定目录}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'` + +- 查找符合指定大小范围的文件: + +`find {{指定目录}} -size {{+500k}} -size {{-10M}}` + +- 对每个文件运行命令(在命令中使用 `{}` 代表当前文件): + +`find {{指定目录}} -name '{{*.ext}}' -exec {{wc -l {} }}\;` + +- 查找最近 7 天修改的文件并删除: + +`find {{指定目录}} -daystart -mtime -{{7}} -delete` + +- 查找空(0 字节)的文件并删除: + +`find {{指定目录}} -type {{f}} -empty -delete` diff --git a/pages.zh/common/fossil-ci.md b/pages.zh/common/fossil-ci.md new file mode 100644 index 00000000000000..56f461d0d29bfc --- /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 00000000000000..6716215acc7e82 --- /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 00000000000000..576dfbcb0b4f19 --- /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 00000000000000..d918b27ac6de22 --- /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 00000000000000..df0dcab9f03613 --- /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/gh-gist.md b/pages.zh/common/gh-gist.md index 3572aa00e3ac5b..0c1809f34364ac 100644 --- a/pages.zh/common/gh-gist.md +++ b/pages.zh/common/gh-gist.md @@ -1,24 +1,24 @@ # gh gist > 在命令行上使用 GitHub Gists. -> 更多信息: . +> 更多信息:. -- 从一个以空格分隔的文件列表中创建一个新的 Gist: +- 从一个以空格分隔的文件列表中创建一个新的 Gist: `gh gist create {{路径/文件}}` -- 创建一个带有描述的新 Gist: +- 创建一个带有描述的新 Gist: `gh gist create {{文件名}} --desc "{{描述}}"` -- 编辑一个 Gist: +- 编辑一个 Gist: `gh gist edit {{id_或_url}}` -- 列出当前登录用户所拥有的 Gist: +- 列出当前登录用户所拥有的 Gist: `gh gist list --limit {{int}}` -- 在默认浏览器中查看 Gist,且不渲染 Markdown: +- 在默认浏览器中查看 Gist,且不渲染 Markdown: `gh gist view {{id_或_url}} --web --raw` diff --git a/pages.zh/common/gh-repo.md b/pages.zh/common/gh-repo.md index 091f4985256c1d..9d71077cb1c8e7 100644 --- a/pages.zh/common/gh-repo.md +++ b/pages.zh/common/gh-repo.md @@ -1,20 +1,20 @@ # gh repo -> 在命令行上操作 GitHub 仓库. -> 更多信息: . +> 在命令行上操作 GitHub 仓库。 +> 更多信息:. -- 创建一个新的仓库(如果没有设置仓库名称,默认将为当前目录的名称): +- 创建一个新的仓库(如果没有设置仓库名称,默认将为当前目录的名称): `gh repo create {{名称}}` -- 克隆一个仓库: +- 克隆一个仓库: `gh repo clone {{拥有者}}/{{仓库}}` -- 复刻并克隆一个仓库: +- 复刻并克隆一个仓库: `gh repo fork {{拥有者}}/{{仓库}} --clone` -- 在网络浏览器中查看仓库: +- 在网络浏览器中查看仓库: `gh repo view {{仓库}} --web` diff --git a/pages.zh/common/git-clone.md b/pages.zh/common/git-clone.md new file mode 100644 index 00000000000000..d9dafe2234c737 --- /dev/null +++ b/pages.zh/common/git-clone.md @@ -0,0 +1,36 @@ +# git clone + +> 克隆现有的代码库。 +> 更多信息:. + +- 克隆一个现有的代码库: + +`git clone {{远程代码库地址}}` + +- 克隆一个现有的代码库到指定文件夹: + +`git clone {{远程代码库地址}} {{路径/到/文件夹}}` + +- 克隆一个现有的代码库和它的子模块: + +`git clone --recursive {{远程代码库地址}}` + +- 克隆一个本地的代码库: + +`git clone -l {{路径/到/本地/代码库名}}` + +- 静默克隆,不打印任何日志: + +`git clone -q {{远程代码库地址}}` + +- 克隆一个现有的代码库,只获取默认分支上10个最新的提交(对节省时间很有用): + +`git clone --depth {{10}} {{远程代码库地址}}` + +- 克隆一个现有的、特定远程分支的代码库: + +`git clone --branch {{分支名称}} --single-branch {{远程代码库地址}}` + +- 使用 SSH 命令克隆一个现有的代码库: + +`git clone --config core.sshCommand="{{ssh -i 路径/到/ssh_私钥}}" {{远程代码库地址}}` diff --git a/pages.zh/common/git-config.md b/pages.zh/common/git-config.md new file mode 100644 index 00000000000000..e0c3d72ffb1ee3 --- /dev/null +++ b/pages.zh/common/git-config.md @@ -0,0 +1,37 @@ +# git config + +> 管理 Git 仓库的自定义设置项。 +> 这些设置可以分为局部设置(只对当前仓库生效)和全局设置(对当前用户生效)。 +> 更多信息:. + +- 列出局部设置项(存储在当前仓库的 `.git/config`): + +`git config --list --local` + +- 列出全局配置项(存储在 `~/.gitconfig`): + +`git config --list --global` + +- 列出所有被修改过的配置项,包含局部的以及全局的: + +`git config --list` + +- 获取某个配置项的值: + +`git config alias.unstage` + +- 设置某个全局配置项: + +`git config --global alias.unstage "reset HEAD --"` + +- 将某个全局配置项恢复为默认值: + +`git config --global --unset alias.unstage` + +- 使用默认编辑器修改本地设置: + +`git config --edit` + +- 使用默认编辑器修改全局设置: + +`git config --global --edit` diff --git a/pages.zh/common/git-log.md b/pages.zh/common/git-log.md new file mode 100644 index 00000000000000..6db814218bad17 --- /dev/null +++ b/pages.zh/common/git-log.md @@ -0,0 +1,36 @@ +# git log + +> 查看提交历史。 +> 更多信息:. + +- 按时间先后顺序列出当前仓库所有的提交,最近的更新排在最上面: + +`git log` + +- 查看指定文件或指定目录的历史,包括每次提交所引入的差异: + +`git log -p {{路径/到/文件或目录}}` + +- 显示每次提交的文件修改统计信息: + +`git log --stat` + +- 在日志旁以 ASCII 图形显示当前分支提交历史,并只展示提交消息的第一行: + +`git log --oneline --graph` + +- 在日志旁以 ASCII 图形显示整个仓库的所有提交、标签、分支: + +`git log --oneline --decorate --all --graph` + +- 查看提交消息中包含特定字符串(大小写敏感)的提交: + +`git log -i --grep {{字符串}}` + +- 查看特定作者的最近 N 条提交: + +`git log -n {{数字}} --author={{作者}}` + +- 查看两个日期之间的提交(yyyy-mm-dd): + +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages.zh/common/git-pull.md b/pages.zh/common/git-pull.md new file mode 100644 index 00000000000000..78bfd5c6b7c79d --- /dev/null +++ b/pages.zh/common/git-pull.md @@ -0,0 +1,16 @@ +# git pull + +> 从远程代码库拉取分支,并将其合并到本地代码库。 +> 更多信息:. + +- 从默认的远程分支中拉取代码并执行合并: + +`git pull` + +- 使用快进功能(快进到含义为:先清空暂存区,再执行合并,最后恢复暂存区),从默认的远程分支拉取代码并执行合并: + +`git pull --rebase` + +- 从给定的分支中拉取代码,并执行合并到对应分支: + +`git pull {{远程分支名}} {{本地分支名}}` diff --git a/pages.zh/common/git-rebase.md b/pages.zh/common/git-rebase.md new file mode 100644 index 00000000000000..485903a2a06817 --- /dev/null +++ b/pages.zh/common/git-rebase.md @@ -0,0 +1,37 @@ +# git rebase + +> 将 commits 从一个分支合并到另一个分支上。 +> 常用于跨分支的 commits 合并,在被合并分支的最头部构建新的 `commit`,表示合并完成。 +> 更多信息:. + +- 在另一个分支的头节点合并当前分支: + +`git rebase {{目标分支}}` + +- 启动交互式的合并任务,允许对提交的内容进行重新排序、省略、合并或修改: + +`git rebase -i {{目标分支或 commit 的 hash}}` + +- 处理完冲突文件后,继续执行合并任务: + +`git rebase --continue` + +- 跳过冲突文件,继续执行合并任务: + +`git rebase --skip` + +- 终止正在执行中的合并任务(例如:对于正处于解决冲突中的任务,将其打断,恢复到合并前的状态): + +`git rebase --abort` + +- 将分支的部分 commits 生成新的 `commit`,移动到新分支的头节点: + +`git rebase --onto {{目标分支}} {{当前分支}}` + +- 启动交互式的合并任务,对最近提交的 5 个 commits 进行重新排序、省略、合并或修改: + +`git rebase -i {{HEAD~5}}` + +- 以当前分支优先的策略,自动处理分支间的冲突,执行合并: + +`git rebase -X theirs {{分支名称}}` diff --git a/pages.zh/common/git-remote.md b/pages.zh/common/git-remote.md new file mode 100644 index 00000000000000..5f5a2de1e7a475 --- /dev/null +++ b/pages.zh/common/git-remote.md @@ -0,0 +1,28 @@ +# git remote + +> 管理跟踪的远程仓库(remotes)。 +> 更多信息:. + +- 列出已经存在的远程仓库,包括它们的名字和 URL: + +`git remote -v` + +- 查看某个远程仓库的信息: + +`git remote show {{远程仓库名字}}` + +- 添加远程仓库: + +`git remote add {{远程仓库名字}} {{远程仓库 URL}}` + +- 更改远程仓库地址链接(使用 `--add` 选项不会移除现有的 URL): + +`git remote set-url {{远程仓库名字}} {{新 URL}}` + +- 移除远程仓库: + +`git remote remove {{远程仓库名字}}` + +- 重命名远程仓库: + +`git remote rename {{旧名字}} {{新名字}}` diff --git a/pages.zh/common/git-rename-branch.md b/pages.zh/common/git-rename-branch.md new file mode 100644 index 00000000000000..36c9afdfed8f7e --- /dev/null +++ b/pages.zh/common/git-rename-branch.md @@ -0,0 +1,13 @@ +# git rename-branch + +> 重新命名一个 Git 分支。 +> 属于 `git-extras` 的一部分。 +> 更多信息:. + +- 重新命名你目前所在的分支: + +`git rename-branch {{新的分支名称}}` + +- 重新命名一个特定的分支: + +`git rename-branch {{旧的分支名称}} {{新的分支名称}}` diff --git a/pages.zh/common/git-switch.md b/pages.zh/common/git-switch.md new file mode 100644 index 00000000000000..1a1a65d99885a8 --- /dev/null +++ b/pages.zh/common/git-switch.md @@ -0,0 +1,29 @@ +# git switch + +> 切换 Git 分支。要求 Git 版本在 2.23 以上。 +> 另请参阅 `git checkout`。 +> 更多信息:. + +- 切换到一个已有的分支: + +`git switch {{分支名字}}` + +- 创建并切换到一个新分支: + +`git switch --create {{分支名字}}` + +- 创建并切换到基于某个提交的新分支: + +`git switch --create {{分支名字}} {{指定提交}}` + +- 切换到之前的分支: + +`git switch -` + +- 切换到一个分支,并更新所有匹配的子模块: + +`git switch --recurse-submodules {{分支名字}}` + +- 切换到一个分支,并和当前分支以及暂未提交的修改进行三方合并: + +`git switch --merge {{分支名字}}` diff --git a/pages.zh/common/git.md b/pages.zh/common/git.md new file mode 100644 index 00000000000000..ef57cb4b1fada0 --- /dev/null +++ b/pages.zh/common/git.md @@ -0,0 +1,29 @@ +# git + +> 分布式版本控制系统。 +> 类似如 `commit`、`add`、`branch`、`checkout`、`push` 等子命令都有自己的使用文档,可以通过 `tldr git {{子命令}}` 的形式查阅。 +> 更多信息:. + +- 检查 git 的版本号: + +`git --version` + +- 显示帮助文档: + +`git --help` + +- 显示 git 子命令的详细帮助文档(如 `clone`, `add`, `push`, `log` 等子命令): + +`git help {{子命令}}` + +- 执行 git 的子命令: + +`git {{子命令}}` + +- 在自定义的 git 仓库根路径下执行子命令: + +`git -C {{仓库地址}} {{子命令}}` + +- 在给定参数条件下,执行 git 的子命令: + +`git -c '{{配置项}}={{值}}' {{子命令}}` diff --git a/pages.zh/common/gnmic-sub.md b/pages.zh/common/gnmic-sub.md new file mode 100644 index 00000000000000..8a922afb4a9ab3 --- /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-bug.md b/pages.zh/common/go-bug.md new file mode 100644 index 00000000000000..19bb1f58a5a8b0 --- /dev/null +++ b/pages.zh/common/go-bug.md @@ -0,0 +1,8 @@ +# go bug + +> 报告一个错误。 +> 更多信息:. + +- 打开一个网页并开始报告错误: + +`go bug` diff --git a/pages.zh/common/go-build.md b/pages.zh/common/go-build.md new file mode 100644 index 00000000000000..d5deff860c541b --- /dev/null +++ b/pages.zh/common/go-build.md @@ -0,0 +1,20 @@ +# go build + +> 编译 Go 源代码。 +> 更多信息:. + +- 编译‘package main’文件(输出为不带扩展名的文件名): + +`go build {{路径/到/main.go}}` + +- 编译,并指定输出文件名: + +`go build -o {{路径/到/二进制文件}} {{路径/到/源文件.go}}` + +- 编译一个包: + +`go build -o {{路径/到/二进制文件}} {{路径/到/包}}` + +- 编译 main 包为可执行文件,并开启数据竞态检测: + +`go build -race -o {{路径/到/可执行文件}} {{路径/到/main/包}}` diff --git a/pages.zh/common/go-clean.md b/pages.zh/common/go-clean.md new file mode 100644 index 00000000000000..76c9cedc4123e2 --- /dev/null +++ b/pages.zh/common/go-clean.md @@ -0,0 +1,20 @@ +# go clean + +> 移除目标文件和缓存文件。 +> 更多信息:. + +- 只打印移除命令,而不会真正移除任何东西: + +`go clean -n` + +- 删除编译缓存: + +`go clean -cache` + +- 删除所有测试结果缓存: + +`go clean -testcache` + +- 删除模块缓存: + +`go clean -modcache` diff --git a/pages.zh/common/go-doc.md b/pages.zh/common/go-doc.md new file mode 100644 index 00000000000000..e191710bfa90ee --- /dev/null +++ b/pages.zh/common/go-doc.md @@ -0,0 +1,24 @@ +# go doc + +> 显示包或符号的文档。 +> 更多信息:. + +- 显示当前包的文档: + +`go doc` + +- 显示包文档及导出符号: + +`go doc {{encoding/json}}` + +- 同时显示符号的文档: + +`go doc -all {{encoding/json}}` + +- 同时显示源代码: + +`go doc -all -src {{encoding/json}}` + +- 显示指定的符号: + +`go doc -all -src {{encoding/json.Number}}` diff --git a/pages.zh/common/go-env.md b/pages.zh/common/go-env.md new file mode 100644 index 00000000000000..cf58f57e351585 --- /dev/null +++ b/pages.zh/common/go-env.md @@ -0,0 +1,20 @@ +# go env + +> 管理 Go 工具链使用的环境变量。 +> 更多信息:. + +- 显示所有环境变量: + +`go env` + +- 显示指定的环境变量: + +`go env {{GOPATH}}` + +- 设置某个环境变量为指定值: + +`go env -w {{GOBIN}}={{路径/到/目录}}` + +- 重置某个环境变量的值: + +`go env -u {{GOBIN}}` diff --git a/pages.zh/common/go.md b/pages.zh/common/go.md new file mode 100644 index 00000000000000..ecb2607423e140 --- /dev/null +++ b/pages.zh/common/go.md @@ -0,0 +1,33 @@ +# go + +> 管理 Go 源代码的工具。 +> 此命令也有关于其子命令的文件,例如:`go build`. +> 更多信息:. + +- 下载并安装由其路径指定的包: + +`go get {{路径/到/包}}` + +- 编译并运行一个源文件(它必须包含一个 `main` 包): + +`go run {{文件.go}}` + +- 将源文件编译为当前命名的可执行文件: + +`go build -o {{可执行文件}} {{文件.go}}` + +- 编译当前目录中的包: + +`go build` + +- 执行当前包中的所有测试用例(文件必须以 `_test.go` 结尾): + +`go test` + +- 编译并安装当前包: + +`go install` + +- 在当前目录下初始化一个新模块: + +`go mod init {{模块}}` diff --git a/pages.zh/common/google-chrome.md b/pages.zh/common/google-chrome.md new file mode 100644 index 00000000000000..9cfe4b100f63dc --- /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-zip.md b/pages.zh/common/gpg-zip.md index 35780efc11230b..6cfbd90839ccf7 100644 --- a/pages.zh/common/gpg-zip.md +++ b/pages.zh/common/gpg-zip.md @@ -1,7 +1,7 @@ # gpg-zip > 使用`GPG`加密存档中的文件和目录。 -> 更多信息: . +> 更多信息:. - 使用密码将一个目录加密为`archive.gpg`: diff --git a/pages.zh/common/gpg.md b/pages.zh/common/gpg.md index 8fa656be7acba4..bc04d79f1cc3e8 100644 --- a/pages.zh/common/gpg.md +++ b/pages.zh/common/gpg.md @@ -1,8 +1,8 @@ # gpg -> GNU Privacy Guard。 -> 请参阅`gpg2`了解 GNU Privacy Guard 2。 -> 更多信息:。 +> GNU Privacy Guard. +> 请参阅`gpg2`了解 GNU Privacy Guard 2. +> 更多信息:. - 不加密,仅对`doc.txt`进行签名(生成`doc.txt.asc`,格式为 ASCII 码形式): diff --git a/pages.zh/common/gpg2.md b/pages.zh/common/gpg2.md index 0e1420b93528d5..09d9d7ba10bc25 100644 --- a/pages.zh/common/gpg2.md +++ b/pages.zh/common/gpg2.md @@ -1,14 +1,14 @@ # gpg2 -> GNU Privacy Guard 2。 -> GNU Privacy Guard 1 请参见`gpg`。 -> 更多信息:。 +> GNU Privacy Guard 2. +> GNU Privacy Guard 1 请参见`gpg`. +> 更多信息:. - 列出导入的密钥(公钥): `gpg2 --list-keys` -- 为指定的接收者加密指定的文件,将输出结果写到一个新的文件中,并附加`.gpg`: +- 为指定的接收者加密指定的文件,将输出结果写到一个新的文件中,并附加 `.gpg`: `gpg2 --encrypt --recipient {{alice@example.com}} {{path/to/doc.txt}}` diff --git a/pages.zh/common/gpgv.md b/pages.zh/common/gpgv.md index 97e0fddfad3f3b..cacb40820773ae 100644 --- a/pages.zh/common/gpgv.md +++ b/pages.zh/common/gpgv.md @@ -1,7 +1,7 @@ # gpgv > 验证 OpenPGP 签名。 -> 更多信息:。 +> 更多信息:. - 验证签名文件: diff --git a/pages.zh/common/gunicorn.md b/pages.zh/common/gunicorn.md index 5698603f31c46e..2e4f5ea562bd26 100644 --- a/pages.zh/common/gunicorn.md +++ b/pages.zh/common/gunicorn.md @@ -1,27 +1,28 @@ # gunicorn -> Python 的 WSGI http 服务器. +> Python 的 WSGI http 服务器。 +> 更多信息:. -- 运行 python web 应用程序: +- 运行 python web 应用程序: `gunicorn {{导入路径:应用程序}}` -- 在 localhost 上监听 8080 端口: +- 在 localhost 上监听 8080 端口: `gunicorn --bind {{localhost}}:{{8080}} {{导入路径:应用程序}}` -- 启用实时自动加载: +- 启用实时自动加载: `gunicorn --reload {{导入路径:应用程序}}` -- 使用 4 个工作进程处理请求: +- 使用 4 个工作进程处理请求: `gunicorn --workers {{4}} {{导入路径:应用程序}}` -- 使用 4 个工作线程处理请求: +- 使用 4 个工作线程处理请求: `gunicorn --threads {{4}} {{导入路径:应用程序}}` -- 通过 https 运行应用程序: +- 通过 https 运行应用程序: `gunicorn --certfile {{cert.pem}} --keyfile {{key.pem}} {{导入路径:应用程序}}` diff --git a/pages.zh/common/gvcolor.md b/pages.zh/common/gvcolor.md new file mode 100644 index 00000000000000..03988948d639eb --- /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 00000000000000..b7d9b61a026dfd --- /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/heroku.md b/pages.zh/common/heroku.md index 41834c2fbf96c5..557050a16d258c 100644 --- a/pages.zh/common/heroku.md +++ b/pages.zh/common/heroku.md @@ -1,28 +1,28 @@ # heroku -> 从命令行创建和管理 Heroku 应用. -> 更多信息: . +> 从命令行创建和管理 Heroku 应用。 +> 更多信息:. -- 登录到你的 heroku 帐户: +- 登录到你的 heroku 帐户: `heroku login` -- 创建一个 heroku 应用: +- 创建一个 heroku 应用: `heroku create` -- 显示应用的日志: +- 显示应用的日志: `heroku logs --app {{app_name}}` -- 在 dyno(Heroku 虚拟机)中运行一次性进程: +- 在 dyno(Heroku 虚拟机)中运行一次性进程: `heroku run {{process_name}} --app {{app_name}}` -- 列出应用的 dyno(Heroku 虚拟机): +- 列出应用的 dyno(Heroku 虚拟机): `heroku ps --app {{app_name}}` -- 永久销毁应用: +- 永久销毁应用: `heroku destroy --app {{app_name}}` diff --git a/pages.zh/common/hexdump.md b/pages.zh/common/hexdump.md new file mode 100644 index 00000000000000..3b66fd4092f0ca --- /dev/null +++ b/pages.zh/common/hexdump.md @@ -0,0 +1,16 @@ +# hexdump + +> 一个 ASCII,十进制,十六进制,八进制转换查看工具。 +> 更多信息:. + +- 打印文件的十六进制表示形式: + +`hexdump {{路径/到/文件}}` + +- 以十六进制显示输入偏移量,并在最后两列中显示其 ASCII 表示形式: + +`hexdump -C {{路径/到/文件}}` + +- 显示文件的十六进制表示,但只解释输入的 N 个字节: + +`hexdump -C -n{{字节数}} {{路径/到/文件}}` diff --git a/pages.zh/common/hexo.md b/pages.zh/common/hexo.md index 59b5ffa5e6084c..1951794f556b48 100644 --- a/pages.zh/common/hexo.md +++ b/pages.zh/common/hexo.md @@ -1,28 +1,28 @@ # hexo -> 快速、简洁且高效的博客框架. -> 更多信息: . +> 快速、简洁且高效的博客框架。 +> 更多信息:. -- 初始化一个网站: +- 初始化一个网站: `hexo init {{path/to/directory}}` -- 创建一篇新文章: +- 创建一篇新文章: `hexo new {{layout}} {{title}}` -- 构建静态文件: +- 构建静态文件: `hexo generate` -- 启动本地服务器: +- 启动本地服务器: `hexo server` -- 部署网站: +- 部署网站: `hexo deploy` -- 清理缓存文件 (`db.json`) 和生成的文件 (`public/`): +- 清理缓存文件(`db.json`)和生成的文件(`public/`): `hexo clean` diff --git a/pages.zh/common/hostname.md b/pages.zh/common/hostname.md new file mode 100644 index 00000000000000..4fd2b6a6011826 --- /dev/null +++ b/pages.zh/common/hostname.md @@ -0,0 +1,12 @@ +# hostname + +> 显示或设置系统的主机名。 +> 更多信息:. + +- 显示本机的主机名: + +`hostname` + +- 设置本机主机名: + +`hostname {{新主机名}}` diff --git a/pages.zh/common/hx.md b/pages.zh/common/hx.md new file mode 100644 index 00000000000000..21c25781ab44b6 --- /dev/null +++ b/pages.zh/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> 这是 `helix` 命令的一个别名。 + +- 原命令的文档在: + +`tldr helix` diff --git a/pages.zh/common/jar.md b/pages.zh/common/jar.md new file mode 100644 index 00000000000000..e43891dcb5862f --- /dev/null +++ b/pages.zh/common/jar.md @@ -0,0 +1,20 @@ +# jar + +> Java 应用程序 / 类库打包程序。 +> 更多信息:. + +- 将当前目录中的所有文件递归归档到 `.jar` 文件中: + +`jar cf {{file.jar}} *` + +- 将 `.jar` / `.war` 文件解压缩到当前目录: + +`jar -xvf {{file.jar}}` + +- 列出 `.jar` / `.war` 文件内容: + +`jar tf {{path/to/file.jar}}` + +- 列出带有详细输出的 `.jar` / `.war` 文件内容: + +`jar tvf {{path/to/file.jar}}` diff --git a/pages.zh/common/jarsigner.md b/pages.zh/common/jarsigner.md new file mode 100644 index 00000000000000..44325d8a81cb21 --- /dev/null +++ b/pages.zh/common/jarsigner.md @@ -0,0 +1,16 @@ +# jarsigner + +> 签名并验证 Java 存档(JAR)文件。 +> 更多信息:. + +- 签名一个 `JAR` 文件: + +`jarsigner {{path/to/file.jar}} {{keystore_alias}}` + +- 使用特定算法对 `JAR` 文件进行签名: + +`jarsigner -sigalg {{algorithm}} {{path/to/file.jar}} {{keystore_alias}}` + +- 验证 `JAR` 文件的签名: + +`jarsigner -verify {{path/to/file.jar}}` diff --git a/pages.zh/common/java.md b/pages.zh/common/java.md index c0291c1042e677..85cac1ad3eeee8 100644 --- a/pages.zh/common/java.md +++ b/pages.zh/common/java.md @@ -1,24 +1,24 @@ # java -> Java 程序启动器. -> 更多信息: . +> Java 程序启动器。 +> 更多信息:. -- 通过提供类名称运行一个含有 main 函数的 java .class 程序: +- 通过提供类名称运行一个含有 main 函数的 java .class 程序: `java {{类名称}}` -- 运行一个 .jar 程序: +- 运行一个 .jar 程序: `java -jar {{文件名.jar}}` -- 运行一个 .jar 程序并且在端口5005等待调试器: +- 运行一个 .jar 程序并且在端口 5005 等待调试器: `java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{文件名.jar}}` -- 显示 JDK, JRE 和 HotSpot 的版本: +- 显示 JDK, JRE 和 HotSpot 的版本: `java -version` -- 显示详细的帮助: +- 显示详细的帮助: `java -help` diff --git a/pages.zh/common/javac.md b/pages.zh/common/javac.md index 5e502b26419a9f..5137e15f0a1801 100644 --- a/pages.zh/common/javac.md +++ b/pages.zh/common/javac.md @@ -1,19 +1,20 @@ # javac -> Java 程序编译器. +> Java 程序编译器。 +> 更多信息:. -- 编译一个 `.java` 文件: +- 编译一个 `.java` 文件: `javac {{文件名.java}}` -- 编译多个 `.java` 文件: +- 编译多个 `.java` 文件: `javac {{文件名1.java}} {{文件名2.java}} {{文件名3.java}}` -- 编译当前目录内所有 `.java` 文件: +- 编译当前目录内所有 `.java` 文件: `javac {{*.java}}` -- 编译一个 `.java` 文件并将生成的 class 字节码文件放入一个指定目录: +- 编译一个 `.java` 文件并将生成的 class 字节码文件放入一个指定目录: -`javac -d {{输出目录}} {{文件名.java}}` +`javac -d {{路径/到/目录}} {{文件名.java}}` diff --git a/pages.zh/common/javadoc.md b/pages.zh/common/javadoc.md new file mode 100644 index 00000000000000..4a1a9a499da41e --- /dev/null +++ b/pages.zh/common/javadoc.md @@ -0,0 +1,16 @@ +# javadoc + +> 从源代码以 HTML 格式生成 Java API 文档。 +> 更多信息:. + +- 生成 Java 源代码的文档并将结果保存在文件夹中: + +`javadoc -d {{path/to/directory/}} {{path/to/java_source_code}}` + +- 生成指定编码的文档: + +`javadoc -docencoding {{UTF-8}} {{path/to/java_source_code}}` + +- 生成文档时,排除掉某些软件包: + +`javadoc -exclude {{package_list}} {{path/to/java_source_code}}` diff --git a/pages.zh/common/jenv.md b/pages.zh/common/jenv.md new file mode 100644 index 00000000000000..5ad3c7fa303d7b --- /dev/null +++ b/pages.zh/common/jenv.md @@ -0,0 +1,28 @@ +# jenv + +> 管理”JAVA_HOME“环境变量的命令行工具。 +> 更多信息:. + +- 向 jEnv 添加一个 Java 版本: + +`jenv add {{Java Home 路径}}` + +- 显示当前使用的 JDK 版本: + +`jenv version` + +- 显示所有托管的 JDK: + +`jenv versions` + +- 设置全局JDK版本: + +`jenv global {{Java 版本}}` + +- 设置当前 shell 会话的 JDK 版本: + +`jenv shell {{Java 版本}}` + +- 启用 jEnv 插件: + +`jenv enable-plugin {{插件名称}}` diff --git a/pages.zh/common/jhat.md b/pages.zh/common/jhat.md new file mode 100644 index 00000000000000..ec175a900a2f9e --- /dev/null +++ b/pages.zh/common/jhat.md @@ -0,0 +1,16 @@ +# jhat + +> Java 堆分析工具。 +> 更多信息:. + +- 分析堆转储文件(来自 jmap),通过 http 端口 7000 进行查看: + +`jhat {{路径/堆转储文件}}` + +- 分析堆转储文件,为 http 服务指定备用端口: + +`jhat -p {{端口}} {{路径/堆转储文件}}` + +- 通过 jhat 分析转储文件,指定使用 8GB RAM(建议使用 2-4 倍的转储大小): + +`jhat -J-mx8G {{路径/堆转储文件}}` diff --git a/pages.zh/common/jmap.md b/pages.zh/common/jmap.md new file mode 100644 index 00000000000000..ffe5d2616c7868 --- /dev/null +++ b/pages.zh/common/jmap.md @@ -0,0 +1,20 @@ +# jmap + +> Java 内存映射工具。 +> 更多信息:. + +- 打印 Java 进程的共享对象映射(类似 pmap 的输出): + +`jmap {{Java 进程号}}` + +- 打印堆摘要信息: + +`jmap -heap {{Java 进程号}}` + +- 按类型打印堆使用的直方图: + +`jmap -histo {{Java 进程号}}` + +- 将堆的内容转储到二进制文件中以使用 jhat 进行分析: + +`jmap -dump:format=b,file={{导出文件名}} {{Java 进程号}}` diff --git a/pages.zh/common/jps.md b/pages.zh/common/jps.md new file mode 100644 index 00000000000000..841889d78bad83 --- /dev/null +++ b/pages.zh/common/jps.md @@ -0,0 +1,24 @@ +# jps + +> 显示当前用户的 JVM 进程状态。 +> 更多信息:. + +- 列出所有 JVM 进程: + +`jps` + +- 列出所有 JVM 进程,只打印进程号: + +`jps -q` + +- 显示传递给进程的参数: + +`jps -m` + +- 显示所有进程的完整软件包名称: + +`jps -l` + +- 显示传递给 JVM 的参数: + +`jps -v` diff --git a/pages.zh/common/kafkacat.md b/pages.zh/common/kafkacat.md new file mode 100644 index 00000000000000..389f850cc5d13b --- /dev/null +++ b/pages.zh/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 这是 `kcat` 命令的一个别名。 + +- 原命令的文档在: + +`tldr kcat` diff --git a/pages.zh/common/kitex.md b/pages.zh/common/kitex.md new file mode 100644 index 00000000000000..cd57366c84c577 --- /dev/null +++ b/pages.zh/common/kitex.md @@ -0,0 +1,21 @@ +# kitex + +> Kitex 是 Go RPC 框架 Kitex 框架提供的用于生成代码的一个命令行工具。 +> 目前,kitex 支持 thrift 和 protobuf 的 IDL,并支持生成一个服务端项目的骨架。 +> 更多信息:. + +- 生成客户端代码,项目在 `$GOPATH` 目录下: + +`kitex {{路径/到/IDL文件.thrift}}` + +- 生成客户端代码,项目不在 `$GOPATH` 目录下: + +` kitex -module {{github.com/xx-org/xx-name}} {{路径/到/IDL文件.thrift}}` + +- 根据 protobuf IDL 文件生成客户端代码: + +`kitex -type protobuf {{路径/到/IDL文件.proto}}` + +- 生成服务端代码: + +`kitex -service {{svc_name}} {{路径/到/IDL文件.thrift}}` diff --git a/pages.zh/common/llvm-ar.md b/pages.zh/common/llvm-ar.md new file mode 100644 index 00000000000000..0cceffd60bf173 --- /dev/null +++ b/pages.zh/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> 这是 `ar` 命令的一个别名。 + +- 原命令的文档在: + +`tldr ar` diff --git a/pages.zh/common/llvm-g++.md b/pages.zh/common/llvm-g++.md new file mode 100644 index 00000000000000..7c247bb37fce95 --- /dev/null +++ b/pages.zh/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> 这是 `clang++` 命令的一个别名。 + +- 原命令的文档在: + +`tldr clang++` diff --git a/pages.zh/common/llvm-gcc.md b/pages.zh/common/llvm-gcc.md new file mode 100644 index 00000000000000..956a019885e4e7 --- /dev/null +++ b/pages.zh/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> 这是 `clang` 命令的一个别名。 + +- 原命令的文档在: + +`tldr clang` diff --git a/pages.zh/common/llvm-nm.md b/pages.zh/common/llvm-nm.md new file mode 100644 index 00000000000000..0403cebe4770c0 --- /dev/null +++ b/pages.zh/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> 这是 `nm` 命令的一个别名。 + +- 原命令的文档在: + +`tldr nm` diff --git a/pages.zh/common/llvm-objdump.md b/pages.zh/common/llvm-objdump.md new file mode 100644 index 00000000000000..faec054d71cd56 --- /dev/null +++ b/pages.zh/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> 这是 `objdump` 命令的一个别名。 + +- 原命令的文档在: + +`tldr objdump` diff --git a/pages.zh/common/llvm-strings.md b/pages.zh/common/llvm-strings.md new file mode 100644 index 00000000000000..ae8204f6851f64 --- /dev/null +++ b/pages.zh/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> 这是 `strings` 命令的一个别名。 + +- 原命令的文档在: + +`tldr strings` diff --git a/pages.zh/common/ln.md b/pages.zh/common/ln.md new file mode 100644 index 00000000000000..d0493fec4ef132 --- /dev/null +++ b/pages.zh/common/ln.md @@ -0,0 +1,16 @@ +# ln + +> 创建指向文件和目录的链接。 +> 更多信息:. + +- 创建指向文件或目录的符号链接: + +`ln -s {{/路径/到/文件或目录}} {{路径/到/符号链接}}` + +- 覆盖现有的符号链接以指向其他文件: + +`ln -sf {{/路径/到/新文件}} {{路径/到/符号链接}}` + +- 创建文件的硬链接: + +`ln {{/路径/到/文件}} {{路径/到/硬链接}}` diff --git a/pages.zh/common/logger.md b/pages.zh/common/logger.md new file mode 100644 index 00000000000000..8ad39c2e1ca126 --- /dev/null +++ b/pages.zh/common/logger.md @@ -0,0 +1,24 @@ +# logger + +> 向系统日志增加记录(/var/log/syslog)。 +> 更多信息:. + +- 向系统日志增加记录: + +`logger {{消息内容}}` + +- 从 stdin 获取输入并记录到系统日志 syslog: + +`echo {{记录内容}} | logger` + +- 将输出发送到在给定端口上运行的远程系统日志服务器。默认端口为 514: + +`echo {{记录内容}} | logger -h {{服务器名}} -P {{端口}}` + +- 对记录的每一行使用特定的标签。默认值是登录用户的名: + +`echo {{记录内容}} | logger -t {{标签}}` + +- 以给定的错误等级记录消息。默认是 `user.notice`. 使用 `man logger` 查询所有可选等级: + +`echo {{记录内容}} | logger -p {{user.warning}}` diff --git a/pages.zh/common/ls.md b/pages.zh/common/ls.md new file mode 100644 index 00000000000000..cfc634b70769ce --- /dev/null +++ b/pages.zh/common/ls.md @@ -0,0 +1,36 @@ +# ls + +> 列出目录中的内容。 +> 更多信息:. + +- 列出目录中的文件,每个文件占一行: + +`ls -1` + +- 列出包含隐藏文件的所有文件: + +`ls -a` + +- 列出所有文件,如果是目录,则在目录名后面加上「/」: + +`ls -F` + +- 列出包含隐藏文件的所有文件信息,包括权限,所有者,大小和修改日期: + +`ls -la` + +- 列出所有文件信息,大小用人类可读的单位表示(KiB, MiB, GiB): + +`ls -lh` + +- 列出所有文件信息,按大小降序排序: + +`ls -lS` + +- 列出所有文件信息,按修改日期从旧到新排序: + +`ls -ltr` + +- 只列出目录: + +`ls -d */` diff --git a/pages.zh/common/lzcat.md b/pages.zh/common/lzcat.md new file mode 100644 index 00000000000000..40caeeb842b4eb --- /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 00000000000000..b01423cf619bee --- /dev/null +++ b/pages.zh/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/make.md b/pages.zh/common/make.md new file mode 100644 index 00000000000000..0f77f9f856bd67 --- /dev/null +++ b/pages.zh/common/make.md @@ -0,0 +1,33 @@ +# make + +> Makefile 文件描述目标的任务运行器。 +> 通常用于控制源代码中可执行文件的编译。 +> 更多信息:. + +- 调用 Makefile 中指定的第一个目标(通常命名为 "all"): + +`make` + +- 调用指定目标: + +`make {{目标}}` + +- 调用一个指定的目标,一次并行执行 4 个作业: + +`make -j{{4}} {{目标}}` + +- 使用指定的 Makefile 文件: + +`make --file {{文件}}` + +- 从另一个目录执行 make : + +`make --directory {{文件夹}}` + +- 即使源文件未更改,也强制执行目标: + +`make --always-make {{目标}}` + +- 覆盖在 Makefile 中定义的环境变量: + +`make --environment-overrides {{目标}}` diff --git a/pages.zh/common/matlab.md b/pages.zh/common/matlab.md index 98d7b121e5e1ed..c97cd7f2245682 100644 --- a/pages.zh/common/matlab.md +++ b/pages.zh/common/matlab.md @@ -1,16 +1,16 @@ # matlab > MathWorks 制作的数值计算环境。 -> 更多信息: . +> 更多信息:. -- 在启动过程中,运行时不出现闪屏: +- 在启动过程中,运行时不出现闪屏: `matlab -nosplash` -- 执行 MATLAB 语句: +- 执行 MATLAB 语句: `matlab -r "{{matlab_语句}}"` -- 运行 MATLAB 脚本: +- 运行 MATLAB 脚本: `matlab -r "run({{路径/script.m}})"` diff --git a/pages.zh/common/md5sum.md b/pages.zh/common/md5sum.md index 24a095bf52a593..8c3017eadb1f5d 100644 --- a/pages.zh/common/md5sum.md +++ b/pages.zh/common/md5sum.md @@ -1,16 +1,16 @@ # md5sum -> 计算 MD5 加密校验和. -> 更多信息: . +> 计算 MD5 加密校验和。 +> 更多信息:. -- 计算文件的 MD5 校验和: +- 计算文件的 MD5 校验和: -`md5sum {{filename1}}` +`md5sum {{path/to/file}}` -- 计算多个文件的 MD5 校验和: +- 计算多个文件的 MD5 校验和: -`md5sum {{filename1}} {{filename2}}` +`md5sum {{path/to/file1}} {{path/to/file2}}` -- 读取 MD5SUM 的文件并验证所有文件是否具有匹配的校验和: +- 读取 MD5SUM 的文件并验证所有文件是否具有匹配的校验和: -`md5sum -c {{filename.md5}}` +`md5sum -c {{path/to/file.md5}}` diff --git a/pages.zh/common/mingle.md b/pages.zh/common/mingle.md new file mode 100644 index 00000000000000..2c2820a862127a --- /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/mkdir.md b/pages.zh/common/mkdir.md new file mode 100644 index 00000000000000..0088a29bc0fc28 --- /dev/null +++ b/pages.zh/common/mkdir.md @@ -0,0 +1,16 @@ +# mkdir + +> 创建目录。 +> 更多信息:. + +- 在当前目录或给定路径下创建一个目录: + +`mkdir {{目录}}` + +- 在当前目录下创建多个目录: + +`mkdir {{目录_1 目录_2 ...}}` + +- 递归地创建目录(对创建嵌套目录很有用): + +`mkdir -p {{路径/到/目录}}` diff --git a/pages.zh/common/mkfile.md b/pages.zh/common/mkfile.md new file mode 100644 index 00000000000000..6300a722800759 --- /dev/null +++ b/pages.zh/common/mkfile.md @@ -0,0 +1,16 @@ +# mkfile + +> 创建一个或多个任意大小的空文件。 +> 更多信息:. + +- 创建一个 15 千字节的空文件: + +`mkfile -n {{15k}} {{文件名}}` + +- 创建给定大小和单位的文件(bytes, KB, MB, GB): + +`mkfile -n {{大小}}{{b|k|m|g}} {{文件名}}` + +- 创建两个 4 兆字节的文件: + +`mkfile -n {{4m}} {{文件名 1}} {{文件名 2}}` diff --git a/pages.zh/common/mongod.md b/pages.zh/common/mongod.md new file mode 100644 index 00000000000000..c53cd237550669 --- /dev/null +++ b/pages.zh/common/mongod.md @@ -0,0 +1,16 @@ +# mongod + +> MongoDB 数据库服务器。 +> 更多信息:. + +- 指定配置文件: + +`mongod --config {{filename}}` + +- 指定要监听的端口: + +`mongod --port {{port}}` + +- 指定数据库分析级别,用于性能调优分析。 0 - 关闭,1 - 仅是记录慢速操作,2 - 全部: + +`mongod --profile {{0|1|2}}` diff --git a/pages.zh/common/more.md b/pages.zh/common/more.md new file mode 100644 index 00000000000000..beb9ee62276d00 --- /dev/null +++ b/pages.zh/common/more.md @@ -0,0 +1,32 @@ +# more + +> 打开一个文件进行交互式阅读,允许滚动和搜索。 +> 更多信息:. + +- 打开一个文件: + +`more {{路径/到/文件}}` + +- 打开一个文件,从特定行开始显示: + +`more +{{行号}} {{路径/到/文件}}` + +- 显示帮助: + +`more --help` + +- 转到下一页: + +`<空格>` + +- 搜索一个字符串(按 `n` 键跳转到下一个匹配): + +`/{{字符串}}` + +- 退出: + +`q` + +- 显示关于交互式命令的帮助: + +`h` diff --git a/pages.zh/common/mpv.md b/pages.zh/common/mpv.md index 41b740b495f53c..356830baaf474a 100644 --- a/pages.zh/common/mpv.md +++ b/pages.zh/common/mpv.md @@ -1,32 +1,32 @@ # mpv -> 一个基于 MPlayer 的音频/视频播放器. -> 更多信息: . +> 一个基于 MPlayer 的音频/视频播放器。 +> 更多信息:. -- 播放一个音频或视频文件: +- 播放一个音频或视频文件: `mpv {{文件名}}` -- 往后/往前 跳跃5秒: +- 往后/往前 跳跃 5 秒: `LEFT RIGHT` -- 往后/往前 跳跃一分钟: +- 往后/往前 跳跃一分钟: `DOWN UP` -- 减少/增加 10% 播放速度: +- 减少/增加 10% 播放速度: `[ ]` -- 以指定速度播放文件 (0.01 到 100, 默认是 1): +- 以指定速度播放文件(0.01 到 100, 默认是 1): `mpv --speed {{速度}} {{文件名}}` -- 用 `mpv.conf` 中指定的一个用户配制播放文件: +- 用 `mpv.conf` 中指定的一个用户配制播放文件: `mpv --profile {{配制名称}} {{文件名}}` -- 播放摄像头或其他设备的输出: +- 播放摄像头或其他设备的输出: `mpv /dev/{{video0}}` diff --git a/pages.zh/common/mscore.md b/pages.zh/common/mscore.md new file mode 100644 index 00000000000000..e18aa34a59568a --- /dev/null +++ b/pages.zh/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> 这是 `musescore` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr musescore` diff --git a/pages.zh/common/mv.md b/pages.zh/common/mv.md new file mode 100644 index 00000000000000..d743b7a9d7b207 --- /dev/null +++ b/pages.zh/common/mv.md @@ -0,0 +1,28 @@ +# mv + +> 移动或重命名文件或目录。 +> 更多信息:. + +- 移动文件到任意位置: + +`mv {{来源}} {{目标}}` + +- 移动文件到其他目录,并保持文件名不变: + +`mv {{来源1}} {{来源2}} {{来源3}} {{目标目录}}` + +- 覆盖现有文件前无需确认: + +`mv -f {{来源}} {{目标}}` + +- 无论是否有文件权限,覆盖现有文件前均需要确认: + +`mv -i {{来源}} {{目标}}` + +- 不要覆盖现有的目标文件: + +`mv -n {{来源}} {{目标}}` + +- 详细模式,移动后打印文件名: + +`mv -v {{来源}} {{目标}}` diff --git a/pages.zh/common/mvn.md b/pages.zh/common/mvn.md new file mode 100644 index 00000000000000..e31c833a2d76ae --- /dev/null +++ b/pages.zh/common/mvn.md @@ -0,0 +1,37 @@ +# mvn + +> Apache Maven. +> 用于构建和管理基于 Java 的项目的工具。 +> 更多信息:. + +- 编译项目: + +`mvn compile` + +- 将编译后的代码打包成可分发格式,比如 `jar`: + +`mvn package` + +- 编译和打包,跳过单元测试: + +`mvn package -DskipTests` + +- 在本地 maven 存储库中安装构建的包(这也会调用 compile 和 package 命令): + +`mvn install` + +- 从目标目录中删除构建工件,通常用来清理之前的编译结果: + +`mvn clean` + +- 执行清理操作,然后进行编译打包: + +`mvn clean package` + +- 执行清理操作并使用给定的构建配置打包代码,比如 `profileId` 如果有 dev、test、pro,可以指定其中一个 `profileId` 用来选择具体执行环境: + +`mvn clean -P{{profileId}} package` + +- 使用 main 方法运行一个类: + +`mvn exec:java -Dexec.mainClass="{{com.example.Main}}" -Dexec.args="{{参数1 参数2}}"` diff --git a/pages.zh/common/n.md b/pages.zh/common/n.md new file mode 100644 index 00000000000000..4b90def3a523af --- /dev/null +++ b/pages.zh/common/n.md @@ -0,0 +1,24 @@ +# n + +> 用于管理多个节点版本的工具。 +> 更多信息:. + +- 安装给定版本的节点。如果版本已经安装,它将被激活: + +`n {{版本}}` + +- 显示已安装的版本并以交互方式激活其中一个版本: + +`n` + +- 删除一个版本: + +`n rm {{版本}}` + +- 使用给定版本执行文件: + +`n use {{版本}} {{文件.js}}` + +- 输出指定版本的二进制: + +`n bin {{版本}}` diff --git a/pages.zh/common/netstat.md b/pages.zh/common/netstat.md new file mode 100644 index 00000000000000..68b44f9862ff1f --- /dev/null +++ b/pages.zh/common/netstat.md @@ -0,0 +1,24 @@ +# netstat + +> 显示与网络相关的信息,如打开的连接、打开的套接字端口等。 +> 更多信息:. + +- 列出所有端口: + +`netstat -a` + +- 列出所有被侦听端口: + +`netstat -l` + +- 列出侦听的 TCP 端口: + +`netstat -t` + +- 显示监听给定协议监听的 PID 和程序名: + +`netstat -p {{协议}}` + +- 打印路由表: + +`netstat -nr` diff --git a/pages.zh/common/ninja.md b/pages.zh/common/ninja.md index 7fddf98fc140ef..1ac6c0b57f702a 100644 --- a/pages.zh/common/ninja.md +++ b/pages.zh/common/ninja.md @@ -1,20 +1,20 @@ # ninja -> 一个快速的构建系统. -> 更多信息: . +> 一个快速的构建系统。 +> 更多信息:. -- 在当前目录下构建: +- 在当前目录下构建: `ninja` -- 在指定的目录中构建一个程序: +- 在指定的目录中构建一个程序: `ninja -C {{路径}}` -- 查看 target(如 `install` 和 `uninstall`): +- 查看 target(如 `install` 和 `uninstall`): `ninja -t targets` -- 查看帮助: +- 查看帮助: `ninja -h` diff --git a/pages.zh/common/nm-classic.md b/pages.zh/common/nm-classic.md new file mode 100644 index 00000000000000..d709b730ecfec3 --- /dev/null +++ b/pages.zh/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> 这是 `nm` 命令的一个别名。 + +- 原命令的文档在: + +`tldr nm` diff --git a/pages.zh/common/nmap.md b/pages.zh/common/nmap.md index 837bdfc02923f3..05332d213d5aa5 100644 --- a/pages.zh/common/nmap.md +++ b/pages.zh/common/nmap.md @@ -2,9 +2,9 @@ > 网络探索工具和安全/端口扫描程序。 > 仅当以特权运行 Nmap 时,某些功能才激活。 -> 更多信息见: . +> 更多信息:. -- 检查IP地址是否可用,并猜测远程主机的操作系统: +- 检查 IP 地址是否可用,并猜测远程主机的操作系统: `nmap -O {{IP 或者 主机名}}` @@ -12,7 +12,7 @@ `nmap -sn {{IP 或者 主机名}} {{可选的其它地址}}` -- 像上面一样,如果主机启动了,还可以运行默认的1000端口TCP扫描: +- 像上面一样,如果主机启动了,还可以运行默认的 1000 端口 TCP 扫描: `nmap {{IP 或者 主机名}} {{可选的其它地址}}` diff --git a/pages.zh/common/node.md b/pages.zh/common/node.md index 5e33f0e67406ce..4fec8313ab245f 100644 --- a/pages.zh/common/node.md +++ b/pages.zh/common/node.md @@ -1,24 +1,24 @@ # node -> 服务器后端 JavaScript 平台 (Node.js). -> 更多信息: . +> 服务器后端 JavaScript 平台(Node.js)。 +> 更多信息:. -- 运行一个 JavaScript 文件: +- 运行一个 JavaScript 文件: `node {{文件名}}` -- 开始一个 REPL 交互式解释器: +- 开始一个 REPL 交互式解释器: `node` -- 执行输入的 JavaScript 代码: +- 执行输入的 JavaScript 代码: `node -e "{{代码}}"` -- 执行输入的 JavaScript 代码并显示结果: +- 执行输入的 JavaScript 代码并显示结果: `node -p "{{代码}}"` -- 启动检查器并在程序源码解析完成后等待调试器连接: +- 启动检查器并在程序源码解析完成后等待调试器连接: `node --no-lazy --inspect-brk {{文件名}}` diff --git a/pages.zh/common/nop.md b/pages.zh/common/nop.md new file mode 100644 index 00000000000000..6d7c753973a6b6 --- /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 00000000000000..ad42680c365f3f --- /dev/null +++ b/pages.zh/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> 这是 `netlify` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr netlify` diff --git a/pages.zh/common/pdfgrep.md b/pages.zh/common/pdfgrep.md new file mode 100644 index 00000000000000..2d48097e339feb --- /dev/null +++ b/pages.zh/common/pdfgrep.md @@ -0,0 +1,24 @@ +# pdfgrep + +> 在 PDF 文件中搜索文本。 +> 更多信息:. + +- 在 PDF 中查找与关键词匹配的行: + +`pdfgrep {{关键词}} {{文件.pdf}}` + +- 包含每个匹配行的文件名和页码: + +`pdfgrep --with-filename --page-number {{关键词}} {{文件.pdf}}` + +- 对以 "foo" 开头关键词搜索,返回前 3 个匹配项,不区分大小写: + +`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{文件.pdf}}` + +- 在当前目录中扩展名为.pdf 的文件中递归查找关键词: + +`pdfgrep --recursive {{关键词}}` + +- 在与当前目录中特定文件名 "*book.pdf" 匹配的文件上递归查找关键词: + +`pdfgrep --recursive --include {{'*book.pdf'}} {{关键词}}` diff --git a/pages.zh/common/pio-init.md b/pages.zh/common/pio-init.md new file mode 100644 index 00000000000000..0def2501c49e1e --- /dev/null +++ b/pages.zh/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> 这是 `pio project` 命令的一个别名。 + +- 原命令的文档在: + +`tldr pio project` diff --git a/pages.zh/common/piodebuggdb.md b/pages.zh/common/piodebuggdb.md new file mode 100644 index 00000000000000..1209071a303845 --- /dev/null +++ b/pages.zh/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> 这是 `pio debug` 命令的一个别名。 + +- 原命令的文档在: + +`tldr pio debug` diff --git a/pages.zh/common/platformio.md b/pages.zh/common/platformio.md new file mode 100644 index 00000000000000..3aa8a5916a48cc --- /dev/null +++ b/pages.zh/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> 这是 `pio` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr pio` diff --git a/pages.zh/common/protoc.md b/pages.zh/common/protoc.md new file mode 100644 index 00000000000000..38ce03fa1ed44f --- /dev/null +++ b/pages.zh/common/protoc.md @@ -0,0 +1,16 @@ +# protoc + +> 解析 Google Protobuf `.proto` 文件并生成指定语言的输出。 +> 更多信息:. + +- 从 `.proto` 文件生成 Python 代码: + +`protoc --python_out={{路径/到/输出目录}} {{输入文件.proto}}` + +- 从一个导入其他 `.proto` 文件的 `.proto` 文件生成 Java 代码: + +`protoc --java_out={{路径/到/输出目录}} --proto_path={{路径/到/导入搜索路径}} {{输入文件.proto}}` + +- 生成多种语言的代码: + +`protoc --csharp_out={{路径/到/c#_输出目录}} --js_out={{路径/到/js_输出目录}} {{输入文件.proto}}` diff --git a/pages.zh/common/ptpython3.md b/pages.zh/common/ptpython3.md new file mode 100644 index 00000000000000..c5a78346fa8413 --- /dev/null +++ b/pages.zh/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> 这是 `ptpython` 命令的一个别名。 + +- 原命令的文档在: + +`tldr ptpython` diff --git a/pages.zh/common/pwgen.md b/pages.zh/common/pwgen.md new file mode 100644 index 00000000000000..cf6e0499d954be --- /dev/null +++ b/pages.zh/common/pwgen.md @@ -0,0 +1,16 @@ +# pwgen + +> 生成可拼写发音的密码。 +> 更多信息:. + +- 生成指定长度的随机密码: + +`pwgen -y {{长度}}` + +- 生成安全、难以记忆的密码: + +`pwgen -s {{长度}}` + +- 生成至少包含一个大写字母的密码: + +`pwgen -c {{长度}}` diff --git a/pages.zh/common/pyenv.md b/pages.zh/common/pyenv.md new file mode 100644 index 00000000000000..4c6b670b0931ca --- /dev/null +++ b/pages.zh/common/pyenv.md @@ -0,0 +1,32 @@ +# pyenv + +> 在多个 Python 版本之间轻松切换。 +> 更多信息:. + +- 列出所有可用的命令: + +`pyenv commands` + +- 列出 `${PYENV_ROOT}/versions` 目录下的所有 Python 版本: + +`pyenv versions` + +- 列出所有可以从上游安装的 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.zh/common/python3.md b/pages.zh/common/python3.md new file mode 100644 index 00000000000000..71d0165e0606d5 --- /dev/null +++ b/pages.zh/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> 这是 `python` 命令的一个别名。 + +- 原命令的文档在: + +`tldr python` diff --git a/pages.zh/common/r2.md b/pages.zh/common/r2.md new file mode 100644 index 00000000000000..c774bc1d292998 --- /dev/null +++ b/pages.zh/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> 这是 `radare2` 命令的一个别名。 + +- 原命令的文档在: + +`tldr radare2` diff --git a/pages.zh/common/rcat.md b/pages.zh/common/rcat.md new file mode 100644 index 00000000000000..792c30ffdbd746 --- /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 00000000000000..3a9260ca7144ab --- /dev/null +++ b/pages.zh/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 这是 `rg` 命令的一个别名。 + +- 原命令的文档在: + +`tldr rg` diff --git a/pages.zh/common/rm.md b/pages.zh/common/rm.md new file mode 100644 index 00000000000000..f9de1a9f770a20 --- /dev/null +++ b/pages.zh/common/rm.md @@ -0,0 +1,24 @@ +# rm + +> 删除文件或目录。 +> 更多信息:. + +- 从任意位置删除文件: + +`rm {{路径/到/文件}} {{路径/到/另一个/文件}}` + +- 递归删除一个目录及其所有子目录: + +`rm -r {{路径/到/目录}}` + +- 强行删除一个目录,不提示确认或显示错误信息: + +`rm -rf {{路径/到/目录}}` + +- 交互式地删除多个文件,每次删除前都会有提示: + +`rm -i {{文件(们)}}` + +- 以粗略模式删除文件,为每个被删除的文件打印一条信息: + +`rm -v {{路径/到/目录/*}}` diff --git a/pages.zh/common/rmdir.md b/pages.zh/common/rmdir.md new file mode 100644 index 00000000000000..f583f9dd2ac9a4 --- /dev/null +++ b/pages.zh/common/rmdir.md @@ -0,0 +1,12 @@ +# rmdir + +> 删除一个目录。 +> 更多信息:. + +- 删除空目录,使用 `rm -r` 删除非空目录: + +`rmdir {{路径/到/目录}}` + +- 删除目标及其父目录(对嵌套的目录有用): + +`rmdir -p {{路径/到/目录}}` diff --git a/pages.zh/common/rsync.md b/pages.zh/common/rsync.md index 5f22ab582368f0..a01d0a1ab1b976 100644 --- a/pages.zh/common/rsync.md +++ b/pages.zh/common/rsync.md @@ -1,7 +1,7 @@ # rsync > 一种快速,通用,远程(和本地)文件复制工具。 -> 更多信息:。 +> 更多信息:. - 从本地传输文件到远程主机: diff --git a/pages.zh/common/rubocop.md b/pages.zh/common/rubocop.md new file mode 100644 index 00000000000000..717a86e2c35b08 --- /dev/null +++ b/pages.zh/common/rubocop.md @@ -0,0 +1,32 @@ +# rubocop + +> 格式化 Ruby 文件。 +> 更多信息:. + +- 检查当前目录中的所有文件(包括子目录): + +`rubocop` + +- 检查一个或多个指定文件或目录: + +`rubocop {{目录 / 文件名}} {{目录 /}}` + +- 将输出写入指定文件: + +`rubocop --out {{目录 / 文件名}}` + +- 查看规则列表(格式化规则): + +`rubocop --show-cops` + +- 排除格式规则: + +`rubocop --except {{规则 1}} {{规则 2}}` + +- 只运行指定的规则: + +`rubocop --only {{规则 1}} {{规则 2}}` + +- 自动更正文件(实验): + +`rubocop --auto-correct` diff --git a/pages.zh/common/runit.md b/pages.zh/common/runit.md index e27dd5f32b0d17..cbef6a4257abf8 100644 --- a/pages.zh/common/runit.md +++ b/pages.zh/common/runit.md @@ -1,12 +1,12 @@ # runit -> 三级初始化系统. -> 更多信息: . +> 三级初始化系统。 +> 更多信息:. -- 启动 runit 的三阶段初始化方案: +- 启动 runit 的三阶段初始化方案: `runit` -- 停止运行 runit: +- 停止运行 runit: `kill --CONT {{runit 进程 id}}` diff --git a/pages.zh/common/runsv.md b/pages.zh/common/runsv.md index 6a70fe87ff8551..ea78675b3cf2bb 100644 --- a/pages.zh/common/runsv.md +++ b/pages.zh/common/runsv.md @@ -1,12 +1,12 @@ # runsv -> 启动和管理 runit 服务. -> 更多信息: . +> 启动和管理 runit 服务。 +> 更多信息:. -- 以当前用户身份启动 runit 服务: +- 以当前用户身份启动 runit 服务: `runsv {{目录 / 服务文件}}` -- 以 root 用户身份启动 runit 服务: +- 以 root 用户身份启动 runit 服务: `sudo runsv {{目录 / 服务文件}}` diff --git a/pages.zh/common/runsvchdir.md b/pages.zh/common/runsvchdir.md index bca41fea646276..864a4732f54af7 100644 --- a/pages.zh/common/runsvchdir.md +++ b/pages.zh/common/runsvchdir.md @@ -1,8 +1,8 @@ # runsvchdir -> 更改默认使用的 `runsvdir` 目录. -> 更多信息: . +> 更改默认使用的 `runsvdir` 目录。 +> 更多信息:. -- 切换 `runsvdir` 目录: +- 切换 `runsvdir` 目录: `sudo runsvchdir {{指定 / 目录}}` diff --git a/pages.zh/common/runsvdir.md b/pages.zh/common/runsvdir.md index fe3b002d42d160..9419b3551199d4 100644 --- a/pages.zh/common/runsvdir.md +++ b/pages.zh/common/runsvdir.md @@ -1,16 +1,16 @@ # runsvdir -> 运行整个目录下的服务. -> 更多信息: . +> 运行整个目录下的服务。 +> 更多信息:. -- 以当前用户身份启动和管理目录中的所有服务: +- 以当前用户身份启动和管理目录中的所有服务: `runsvdir {{目录 / 服务文件}}` -- 以 root 用户身份启动和管理目录中的所有服务: +- 以 root 用户身份启动和管理目录中的所有服务: `sudo runsvdir {{目录 / 服务文件}}` -- 在单独会话中启动服务: +- 在单独会话中启动服务: `runsvdir -P {{目录 / 服务文件}}` diff --git a/pages.zh/common/rustfmt.md b/pages.zh/common/rustfmt.md index 157325fa57ec1f..46f6ecde3b6f12 100644 --- a/pages.zh/common/rustfmt.md +++ b/pages.zh/common/rustfmt.md @@ -1,16 +1,16 @@ # rustfmt -> 格式化 Rust 源代码的工具. -> 更多信息: . +> 格式化 Rust 源代码的工具。 +> 更多信息:. -- 格式化文件,就地覆盖原始文件: +- 格式化文件,就地覆盖原始文件: -`rustfmt {{source.rs}}` +`rustfmt {{路径/到/源文件.rs}}` -- 检查文件的格式并在控制台上显示所有更改: +- 检查文件的格式并在控制台上显示所有更改: -`rustfmt --check {{source.rs}}` +`rustfmt --check {{路径/到/源文件.rs}}` -- 格式化之前,备份所有修改过的文件(原始文件的扩展名为 `.bk`): +- 格式化之前,备份所有修改过的文件(原始文件的扩展名为 `.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 00000000000000..0877cd89b9de99 --- /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/shasum.md b/pages.zh/common/shasum.md index d28332f67c71ba..90bd134273ab1f 100644 --- a/pages.zh/common/shasum.md +++ b/pages.zh/common/shasum.md @@ -1,23 +1,24 @@ # shasum -> 计算或检查加密 SHA 校验值. +> 计算或检查加密 SHA 校验值。 +> 更多信息:. -- 计算文件的 SHA1 校验值: +- 计算文件的 SHA1 校验值: `shasum {{文件名}}` -- 计算文件的 SHA256 校验值: +- 计算文件的 SHA256 校验值: `shasum --algorithm 256 {{文件名}}` -- 计算多个文件的 SHA512 校验值: +- 计算多个文件的 SHA512 校验值: `shasum --algorithm 512 {{文件名 1}} {{文件名 2}}` -- 计算一个文件内列出的所有的目录文件的相对应的总数: +- 计算一个文件内列出的所有的目录文件的相对应的总数: `shasum --check {{列表文件}}` -- 从标准输入中获取并计算 SHA1 校验值: +- 从标准输入中获取并计算 SHA1 校验值: `{{其他命令}} | shasum` diff --git a/pages.zh/common/sort.md b/pages.zh/common/sort.md new file mode 100644 index 00000000000000..15a8cb06e18876 --- /dev/null +++ b/pages.zh/common/sort.md @@ -0,0 +1,36 @@ +# sort + +> 对文本文件的行进行排序。 +> 更多信息:. + +- 以升序对文件进行排序: + +`sort {{路径/到/文件}}` + +- 以降序对文件进行排序: + +`sort --reverse {{路径/到/文件}}` + +- 以不区分大小写的方式对文件进行排序: + +`sort --ignore-case {{路径/到/文件}}` + +- 用数字而不是字母顺序对文件进行排序: + +`sort --numeric-sort={{路径/到/文件}}` + +- 按每行的第 3 个字段对 `/etc/passwd` 进行数字排序,使用 “:” 作为字段分隔符: + +`sort --field-separator={{:}} --key={{3n}} {{/etc/passwd}}` + +- 对一个文件进行排序,只保留唯一的行: + +`sort --unique {{路径/到/文件}}` + +- 对一个文件进行排序,将输出结果打印到指定的输出文件中(可以用来对一个文件进行原地排序): + +`sort --output={{路径/到/文件}} {{路径/到/文件}}` + +- 对带有指数的数字进行排序: + +`sort --general-numeric-sort {{路径/到/文件}}` diff --git a/pages.zh/common/ssh-add.md b/pages.zh/common/ssh-add.md new file mode 100644 index 00000000000000..052fbfca26cb8a --- /dev/null +++ b/pages.zh/common/ssh-add.md @@ -0,0 +1,29 @@ +# ssh-add + +> 在 ssh 代理中管理加载的 ssh 密钥。 +> 需要确保 ssh 代理已启动并正在运行以加载其中的密钥。 +> 更多信息:. + +- 将 `~/.ssh` 中的默认 ssh 密钥添加到 `ssh` 代理: + +`ssh-add` + +- 向 ssh 代理添加指定密钥: + +`ssh-add {{目录 / 私钥文件}}` + +- 列出当前加载的密钥的指纹: + +`ssh-add -l` + +- 从 ssh 代理中删除密钥: + +`ssh-add -d {{目录 / 私钥文件}}` + +- 从 ssh 代理中删除所有当前已有的密钥: + +`ssh-add -D` + +- 向 ssh 代理和密钥链添加密钥: + +`ssh-add -K {{目录 / 私钥文件}}` diff --git a/pages.zh/common/sshuttle.md b/pages.zh/common/sshuttle.md new file mode 100644 index 00000000000000..c909093e59659e --- /dev/null +++ b/pages.zh/common/sshuttle.md @@ -0,0 +1,17 @@ +# sshuttle + +> 通过 ssh 连接传输流量的透明代理服务器。 +> 不需要管理员或远程 ssh 服务器上的任何特殊设置。 +> 更多信息:. + +- 通过远程 ssh 服务器转发所有 IPv4 TCP 流量: + +`sshuttle --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}}` + +- 转发所有 IPv4 TCP 和 DNS 流量: + +`sshuttle --dns --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}}` + +- 使用 tproxy 方法转发所有 IPv4 和 IPv6 流量: + +`sudo sshuttle --method=tproxy --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}} {{::/0}} --exclude={{你本地 IP 地址}} --exclude={{SSH 服务器的 IP 地址}}` diff --git a/pages.zh/common/stty.md b/pages.zh/common/stty.md index 9e340dd7240566..a5d53b7dabde17 100644 --- a/pages.zh/common/stty.md +++ b/pages.zh/common/stty.md @@ -1,24 +1,24 @@ # stty -> 设置终端设备接口的选项. -> 更多信息: . +> 设置终端设备接口的选项。 +> 更多信息:. -- 显示当前终端的所有设置: +- 显示当前终端的所有设置: `stty -a` -- 设置行数: +- 设置行数: `stty rows {{行数}}` -- 设置列数: +- 设置列数: `stty cols {{列数}}` -- 获取设备的实际传输速度: +- 获取设备的实际传输速度: -`stty -f {{目标 / 文件夹 / 驱动设备文件}} speed` +`stty -F {{目标 / 文件夹 / 驱动设备文件}} speed` -- 将当前终端的所有模式重置为合理值: +- 将当前终端的所有模式重置为合理值: `stty sane` diff --git a/pages.zh/common/sv.md b/pages.zh/common/sv.md index acb10df7fd8c90..7c43feb8471da3 100644 --- a/pages.zh/common/sv.md +++ b/pages.zh/common/sv.md @@ -1,16 +1,16 @@ # sv -> 控制正在运行的服务. -> 更多信息: . +> 控制正在运行的服务。 +> 更多信息:. -- 启动服务: +- 启动服务: `sudo sv up {{目标目录 / 服务文件}}` -- 停止服务: +- 停止服务: `sudo sv down {{目标目录 / 服务文件}}` -- 获取服务状态: +- 获取服务状态: `sudo sv status {{目标目录 / 服务文件}}` diff --git a/pages.zh/common/tar.md b/pages.zh/common/tar.md new file mode 100644 index 00000000000000..7c9bff7ec2170e --- /dev/null +++ b/pages.zh/common/tar.md @@ -0,0 +1,37 @@ +# tar + +> 归档实用程序。 +> 通常与压缩方法结合使用,例如 gzip 或 bzip2. +> 更多信息:. + +- 创建存档并将其写入文件: + +`tar cf {{target.tar}} {{file1}} {{file2}} {{file3}}` + +- 创建一个 gzip 压缩文件并将其写入文件: + +`tar czf {{target.tar.gz}} {{file1}} {{file2}} {{file3}}` + +- 使用相对路径从目录创建一个 gzip 压缩文件: + +`tar czf {{target.tar.gz}} --directory={{path/to/directory}} .` + +- 详细地将(压缩的)存档文件提取到当前目录中: + +`tar xvf {{source.tar[.gz|.bz2|.xz]}}` + +- 将(压缩的)存档文件解压缩到目标目录中: + +`tar xf {{source.tar[.gz|.bz2|.xz]}} --directory={{directory}}` + +- 创建压缩存档并将其写入文件,使用存档后缀确定压缩程序: + +`tar caf {{target.tar.xz}} {{file1}} {{file2}} {{file3}}` + +- 详细列出 tar 文件的内容: + +`tar tvf {{source.tar}}` + +- 从存档文件中提取与模式匹配的文件: + +`tar xf {{source.tar}} --wildcards "{{*.html}}"` diff --git a/pages.zh/common/tldr.md b/pages.zh/common/tldr.md index 3587b439d4bf6b..902cb07a7af98a 100644 --- a/pages.zh/common/tldr.md +++ b/pages.zh/common/tldr.md @@ -1,20 +1,20 @@ # tldr -> 简化过的 man 帮助手册. +> 简化过的 man 帮助手册。 > 更多信息:. -- 获取一个命令的用例 (提示:这就是你怎么得到本信息的): +- 获取一个命令的用例(提示:这就是你怎么得到本信息的): `tldr {{command}}` -- 展示 linux 下 tar 的 tldr 文档: +- 展示 Linux 下 tar 的 tldr 文档: `tldr -p {{linux}} {{tar}}` -- 获取一个 Git 子命令的帮助: +- 获取一个 Git 子命令的帮助: `tldr {{git checkout}}` -- 更新本地页面 (如果客户端支持缓存): +- 更新本地页面(如果客户端支持缓存): `tldr -u` diff --git a/pages.zh/common/tldrl.md b/pages.zh/common/tldrl.md new file mode 100644 index 00000000000000..49131b4ce5931d --- /dev/null +++ b/pages.zh/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> 这是 `tldr-lint` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr tldr-lint` diff --git a/pages.zh/common/tlmgr-arch.md b/pages.zh/common/tlmgr-arch.md new file mode 100644 index 00000000000000..72ed21a40fde92 --- /dev/null +++ b/pages.zh/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> 这是 `tlmgr platform` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr tlmgr platform` diff --git a/pages.zh/common/todoman.md b/pages.zh/common/todoman.md new file mode 100644 index 00000000000000..6e95322d7d60e2 --- /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 00000000000000..3f33805c807923 --- /dev/null +++ b/pages.zh/common/transmission.md @@ -0,0 +1,8 @@ +# transmission + +> 这是 `transmission-daemon` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr transmission-daemon` diff --git a/pages.zh/common/trap.md b/pages.zh/common/trap.md new file mode 100644 index 00000000000000..318d47fc03822d --- /dev/null +++ b/pages.zh/common/trap.md @@ -0,0 +1,21 @@ +# trap + +> 在进程或操作系统接收到信号后自动执行命令。 +> 可用于对用户中断或其他操作执行清理。 +> 更多信息:. + +- 列出设置 trap 的可用信号: + +`trap -l` + +- 列出当前 shell 程序的活动 trap 程序: + +`trap -p` + +- 设置 trap 以在检测到一个或多个信号时执行命令: + +`trap 'echo "检测到信号 {{SIGHUP}}"' {{SIGHUP}}` + +- 移除活动 trap: + +`trap - {{SIGHUP}} {{SIGINT}}` diff --git a/pages.zh/common/tred.md b/pages.zh/common/tred.md new file mode 100644 index 00000000000000..1fe33538575caf --- /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/tree.md b/pages.zh/common/tree.md new file mode 100644 index 00000000000000..cb8f957b94b6ce --- /dev/null +++ b/pages.zh/common/tree.md @@ -0,0 +1,32 @@ +# tree + +> 以树的形式显示当前目录的内容。 +> 更多信息:. + +- 显示深度达到 “级数” 级的文件和目录(其中 1 表示当前目录): + +`tree -L {{级数}}` + +- 只显示目录: + +`tree -d` + +- 同时显示隐藏文件: + +`tree -a` + +- 打印没有缩进行的树,显示完整路径(使用`-N`不转义空格和特殊字符): + +`tree -i -f` + +- 以可读格式打印每个文件节点的大小,目录显示其累积大小(类似在`du`命令中所示): + +`tree -s -h --du` + +- 使用通配符(glob)模式在树层次结构中查找文件,并删除不包含匹配文件的目录: + +`tree -P '{{*.txt}}' --prune` + +- 在树层次结构中查找目录,删除不属于所需目录的目录: + +`tree -P {{文件夹名}} --matchdirs --prune` diff --git a/pages.zh/common/unalias.md b/pages.zh/common/unalias.md new file mode 100644 index 00000000000000..a757c1b41d4431 --- /dev/null +++ b/pages.zh/common/unalias.md @@ -0,0 +1,12 @@ +# unalias + +> 移除别名。 +> 更多信息:. + +- 移除一个别名: + +`unalias {{别名}}` + +- 移除所有别名: + +`unalias -a` diff --git a/pages.zh/common/uname.md b/pages.zh/common/uname.md index 7bb3d942bcdfc0..4ed150407d6a3b 100644 --- a/pages.zh/common/uname.md +++ b/pages.zh/common/uname.md @@ -2,7 +2,7 @@ > 输出关于当前机器和运行在该机器上的操作系统的详细信息。 > 注意:如需了解操作系统的其他信息,请尝试使用 `lsb_release` 命令。 -> 更多信息: . +> 更多信息:. - 打印硬件相关信息:机器和处理器: diff --git a/pages.zh/common/unar.md b/pages.zh/common/unar.md new file mode 100644 index 00000000000000..7ab4c4980c76d3 --- /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 00000000000000..15016b570068a8 --- /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/units.md b/pages.zh/common/units.md index 7ed6adac72c513..98d1a7ed446660 100644 --- a/pages.zh/common/units.md +++ b/pages.zh/common/units.md @@ -1,28 +1,28 @@ # units -> 提供两个度量单位之间的转换. -> 更多信息: . +> 提供两个度量单位之间的转换。 +> 更多信息:. -- 以交互模式运行: +- 以交互模式运行: `units` -- 显示两个简单单位之间的转换: +- 显示两个简单单位之间的转换: -`units {{quarts(夸脱)}} {{tablespoons(大汤匙)}}` +`units {{quarts(夸脱)}} {{tablespoons(大汤匙)}}` -- 单位与数量之间的转换: +- 单位与数量之间的转换: -`units "{{15 pounds(磅)}}" {{kilograms(公斤)}}` +`units "{{15 pounds(磅)}}" {{kilograms(公斤)}}` -- 显示两个复合单位之间的转换: +- 显示两个复合单位之间的转换: -`units "{{meters(米) / second(秒)}}" "{{inches(英尺) / hour(小时)}}"` +`units "{{meters(米) / second(秒)}}" "{{inches(英尺) / hour(小时)}}"` -- 显示具有不同维度的单位之间的转换: +- 显示具有不同维度的单位之间的转换: -`units "{{acres(英亩)}}" "{{ft(英尺)^2(平方)}}"` +`units "{{acres(英亩)}}" "{{ft(英尺)^2(平方)}}"` -- 显示字节乘数的转换: +- 显示字节乘数的转换: -`units "{{15 megabytes(兆字节)}}" {{bytes(字节)}}` +`units "{{15 megabytes(兆字节)}}" {{bytes(字节)}}` diff --git a/pages.zh/common/unlzma.md b/pages.zh/common/unlzma.md new file mode 100644 index 00000000000000..ded8e38c9bc25e --- /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 00000000000000..bd097561a17aae --- /dev/null +++ b/pages.zh/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 这是 `xz` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr xz` diff --git a/pages.zh/common/vi.md b/pages.zh/common/vi.md new file mode 100644 index 00000000000000..37d467b2451e79 --- /dev/null +++ b/pages.zh/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> 这是 `vim` 命令的一个别名。 + +- 原命令的文档在: + +`tldr vim` diff --git a/pages.zh/common/view.md b/pages.zh/common/view.md index 0745b3f51c67b6..cda9f5bab11241 100644 --- a/pages.zh/common/view.md +++ b/pages.zh/common/view.md @@ -1,8 +1,9 @@ # view -> `vim` 的只读版本. +> `vim` 的只读版本。 > 等效于 `vim -R`. +> 更多信息:. -- 打开文件: +- 打开文件: `view {{file}}` diff --git a/pages.zh/common/vim.md b/pages.zh/common/vim.md index 74a5cc9306bf6a..ae8ed0e03febf3 100644 --- a/pages.zh/common/vim.md +++ b/pages.zh/common/vim.md @@ -1,38 +1,37 @@ # vim -> Vi IMproved, 一个程序员的文本编辑器,提供为不同类型的文档修改设计的多种模式 -> 在`vim`内使用任何命令时请确认未使用中文输入法,否则可能会出现奇怪的问题 -> 按下`i`来进入编辑模式,``回到标准模式 (不允许普通的字符输入) +> Vi IMproved,一个程序员的文本编辑器,提供为不同类型的文档修改设计的多种模式。 +> 按 `i` 进入插入模式。`` 返回正常模式,正常模式允许使用 Vim 命令。 > 更多信息:. -- 打开文档: +- 打开文档: -`vim {{file}}` +`vim {{文件}}` -- 进入编辑模式 (插入模式): +- 打开文件的指定行数: -`i` +`vim +{{行数}} {{文件}}` -- 复制 ("yank") 或剪切 ("delete") 当前行 (使用`P`来粘贴): +- 查看 Vim 的使用说明: -`{{yy|dd}}` +`:help` -- 撤销上一个操作: +- 保存并退出: -`u` +`:wq` -- 在文件中搜寻 (按下 `n`/`N` 来在上一个 / 下一个结果中切换): +- 撤销上一个操作: -`/{{search_pattern}}` +`u` -- 对整个文件使用正则表达式进行替换: +- 用特征(pattern)在文件中搜寻,按下 `n`/`N` 切换至上 / 下一个结果: -`:%s/{{pattern}}/{{replacement}}/g` +`/{{特征}}` -- 保存 (写入) 文件,然后退出: +- 对整个文件使用正则表达式进行替换: -`:wq` +`:%s/{{正则表达式}}/{{替换字}}/g` -- 不保存退出: +- 显示行号: -`:q!` +`:set nu` diff --git a/pages.zh/common/virtualenv.md b/pages.zh/common/virtualenv.md index 97d4eab0d53189..422b33bd5dd04e 100644 --- a/pages.zh/common/virtualenv.md +++ b/pages.zh/common/virtualenv.md @@ -1,24 +1,24 @@ # virtualenv -> 创建被隔离的的 Python 虚拟环境. +> 创建被隔离的的 Python 虚拟环境。 > 更多信息:. -- 创建新环境: +- 创建新环境: `virtualenv {{path/to/venv}}` -- 自定义提示符: +- 自定义提示符: `virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}` -- 为虚拟环境使用不同的 Python 版本: +- 为虚拟环境使用不同的 Python 版本: `virtualenv --python={{path/to/pythonbin}} {{path/to/venv}}` -- 启动 (选择) 环境: +- 启动(选择)环境: `source {{path/to/venv}}/bin/activate` -- 停止环境: +- 停止环境: `deactivate` diff --git a/pages.zh/common/vlc.md b/pages.zh/common/vlc.md index 0a66acb2d9a4a7..4e2e404f089c03 100644 --- a/pages.zh/common/vlc.md +++ b/pages.zh/common/vlc.md @@ -1,24 +1,24 @@ # vlc -> 跨平台多媒体播放器. -> 更多信息: . +> 跨平台多媒体播放器。 +> 更多信息:. -- 播放一个文件: +- 播放一个文件: `vlc {{文件名}}` -- 全屏播放: +- 全屏播放: `vlc --fullscreen {{文件名}}` -- 静音播放: +- 静音播放: `vlc --no-audio {{文件名}}` -- 循环播放: +- 循环播放: `vlc --loop {{文件名}}` -- 播放网络连接: +- 播放网络连接: `vlc {{连接}}` diff --git a/pages.zh/common/vue.md b/pages.zh/common/vue.md index 1c1594c8327cdc..1ddf563f3b71ad 100644 --- a/pages.zh/common/vue.md +++ b/pages.zh/common/vue.md @@ -1,18 +1,13 @@ -# vue-cli +# vue -> 用于初始化 Vue.js 项目的 CLI. -> 本帮助适用于旧的 `vue-cli@2` 和 `@vue/cli-init` 插件,新版 CLI 文档请参见更多信息 -> 官方模板包括:webpack, webpack-simple, browserify, browserify-simple, simple. +> 适用于 Vue.js 项目的多用途命令行接口。 +> 此命令也有关于其子命令的文件,例如:`vue build`。 > 更多信息:. -- 从模板创建新项目: +- 交互式地创建一个新的 Vue 项目: -`vue init {{template}} {{project_name}}` +`vue create {{项目名}}` -- 从本地模板创建新项目: +- 使用图形化界面创建一个新项目: -`vue init {{path/to/template_directory}} {{project_name}}` - -- 从 GitHub 上拉取模板并创建新项目: - -`vue init {{username}}/{{repo}} {{project_name}}` +`vue ui` diff --git a/pages.zh/common/w.md b/pages.zh/common/w.md index 87538e10211a40..b9731ac220a75a 100644 --- a/pages.zh/common/w.md +++ b/pages.zh/common/w.md @@ -1,12 +1,13 @@ # w -> 显示有哪些用户登录了本机以及他们当前的活动. -> 打印用户登录,TTY, 远程主机,登录时间,闲置时间,当前进程. +> 显示有哪些用户登录了本机以及他们当前的活动。 +> 打印用户登录,TTY, 远程主机,登录时间,闲置时间,当前进程。 +> 更多信息:. -- 获取已登录用户信息: +- 获取已登录用户信息: `w` -- 无标题栏模式: +- 无标题栏模式: `w -h` diff --git a/pages.zh/common/wc.md b/pages.zh/common/wc.md new file mode 100644 index 00000000000000..ec252f05c4f259 --- /dev/null +++ b/pages.zh/common/wc.md @@ -0,0 +1,24 @@ +# wc + +> 计数行、单词或字节。 +> 更多信息:. + +- 计数文件中的行数: + +`wc -l {{文件}}` + +- 计数文件中的单词数: + +`wc -w {{文件}}` + +- 计数文件中的字符(字节): + +`wc -c {{文件}}` + +- 计数文件中的字符数(考虑所有多字节的字符): + +`wc -m {{文件}}` + +- 使用标准输入,按顺序计数行、单词和字符(字节): + +`{{find .}} | wc` diff --git a/pages.zh/common/wget.md b/pages.zh/common/wget.md index 72b379c6dd7de1..7fd444fbd92a96 100644 --- a/pages.zh/common/wget.md +++ b/pages.zh/common/wget.md @@ -1,37 +1,37 @@ # wget -> 从网络上下载文件. +> 从网络上下载文件。 > 支持 HTTP, HTTPS, 和 FTP. > 更多信息:. -- 将该 URL 的内容下载到文件中 (在这个例子中文件名为 "foo"): +- 将该 URL 的内容下载到文件中(在这个例子中文件名为 "foo"): `wget {{https://example.com/foo}}` -- 将该 URL 的内容下载到文件中 (在这个例子中文件名为 "bar"): +- 将该 URL 的内容下载到文件中(在这个例子中文件名为 "bar"): -`wget -O {{bar}} {{https://example.com/foo}}` +`wget --output-document {{bar}} {{https://example.com/foo}}` -- 以每三秒一个请求的速度下载一个网页和其所有资源 (脚本,样式表,图片等等): +- 以每三秒一个请求的速度下载一个网页和其所有资源(脚本,样式表,图片等等): `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 服务器中下载文件: +- 使用基本授权来从 HTTP/FTP 服务器中下载文件: `wget --user={{username}} --password={{password}} {{https://example.com}}` -- 继续一个未完成的下载任务: +- 继续一个未完成的下载任务: -`wget -c {{https://example.com}}` +`wget --continue {{https://example.com}}` -- 将指定文件中所有列出的 URL 下载到一个目录中: +- 将指定文件中所有列出的 URL 下载到一个目录中: -`wget -P {{path/to/directory}} -i {{URLs.txt}}` +`wget --directory-prefix {{path/to/directory}} --input-file {{URLs.txt}}` diff --git a/pages.zh/common/where.md b/pages.zh/common/where.md index 5b9e1d994c4b0f..1ec10fdba629b5 100644 --- a/pages.zh/common/where.md +++ b/pages.zh/common/where.md @@ -1,8 +1,9 @@ # where -> 报告所有已知的命令入口. -> 它可以是一个在`PATH`中的可执行文件,一个别名,或者一个 shell 內建命令. +> 报告所有已知的命令入口。 +> 它可以是一个在`PATH`中的可执行文件,一个别名,或者一个 shell 內建命令。 +> 更多信息:. -- 报告所有已知命令入口: +- 报告所有已知命令入口: `where {{command}}` diff --git a/pages.zh/common/whereis.md b/pages.zh/common/whereis.md new file mode 100644 index 00000000000000..3beff1eab3d044 --- /dev/null +++ b/pages.zh/common/whereis.md @@ -0,0 +1,20 @@ +# whereis + +> 找到命令的二进制,源文件和手册文件。 +> 更多信息:. + +- 找到 `ssh` 命令的二进制、源文件和手册页: + +`whereis {{ssh}}` + +- 查找 `ls` 命令的二进制和手册页: + +`whereis -bm {{ls}}` + +- 找到 `gc` 的源文件和 `git` 的手册页: + +`whereis -s {{gcc}} -m {{git}}` + +- 仅在 /usr/bin/ 目录中查找 `gcc` 的二进制文件: + +`whereis -b -B {{/usr/bin/}} -f {{gcc}}` diff --git a/pages.zh/common/which.md b/pages.zh/common/which.md index 3c5be5e048071d..4b39414346ec56 100644 --- a/pages.zh/common/which.md +++ b/pages.zh/common/which.md @@ -1,11 +1,12 @@ # which -> 在用户的`PATH`中寻找可执行文件的路径 +> 在用户的`PATH`中寻找可执行文件的路径。 +> 更多信息:. -- 在`PATH`中寻找可执行文件并打印第一个匹配的结果: +- 在`PATH`中寻找可执行文件并打印第一个匹配的结果: `which {{executable}}` -- 如果有多个匹配结果则打印所有结果: +- 如果有多个匹配结果则打印所有结果: `which -a {{executable}}` diff --git a/pages.zh/common/whoami.md b/pages.zh/common/whoami.md new file mode 100644 index 00000000000000..0ff70960e781e7 --- /dev/null +++ b/pages.zh/common/whoami.md @@ -0,0 +1,12 @@ +# whoami + +> 打印当前有效用户 ID 的用户名。 +> 更多信息:. + +- 显示当前登录用户名: + +`whoami` + +- 修改用户 ID 后显示当前登录用户名: + +`sudo whoami` diff --git a/pages.zh/common/whois.md b/pages.zh/common/whois.md new file mode 100644 index 00000000000000..e1a03d8b60d947 --- /dev/null +++ b/pages.zh/common/whois.md @@ -0,0 +1,16 @@ +# whois + +> WHOIS(RFC 3912)协议的命令行客户端。 +> 更多信息:. + +- 获取域名信息: + +`whois {{example.com}}` + +- 获取 IP 地址信息: + +`whois {{8.8.8.8}}` + +- 获取 IP 地址用于报告滥用的联系方式: + +`whois -b {{8.8.8.8}}` diff --git a/pages.zh/common/write.md b/pages.zh/common/write.md index 617ae9d47f0b6d..669220d444a701 100644 --- a/pages.zh/common/write.md +++ b/pages.zh/common/write.md @@ -1,16 +1,17 @@ # write -> 向某个终端上的特定用户的屏幕写入信息 (Ctrl-C 来停止写入). +> 向某个终端上的特定用户的屏幕写入信息(Ctrl-C 来停止写入)。 > 使用 `who` 命令来获取所有活动用户的终端 id. 参见 `mesg`. +> 更多信息:. -- 向指定的终端 ID 上的指定用户写入信息: +- 向指定的终端 ID 上的指定用户写入信息: `write {{username}} {{terminal_id}}` -- 向终端 "/dev/tty/5" 上的用户 "testuser" 发送信息: +- 向终端 "/dev/tty/5" 上的用户 "testuser" 发送信息: `write {{testuser}} {{tty/5}}` -- 向伪终端 "/dev/pts/5" 上的用户 "jhondoe" 发送信息 : +- 向伪终端 "/dev/pts/5" 上的用户 "johndoe" 发送信息: -`write {{jhondoe}} {{pts/5}}` +`write {{johndoe}} {{pts/5}}` diff --git a/pages.zh/common/xzcat.md b/pages.zh/common/xzcat.md new file mode 100644 index 00000000000000..82cd7963f2a4a1 --- /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 new file mode 100644 index 00000000000000..fceaad2feb1eeb --- /dev/null +++ b/pages.zh/common/yank.md @@ -0,0 +1,20 @@ +# yank + +> 从 stdin 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板。 +> 更多信息:. + +- 使用默认分隔符(\f, \n, \r, \s, \t): + +`{{sudo dmesg}} | yank` + +- 输入单行: + +`{{sudo dmesg}} | yank -l` + +- 使用特定分 `=` 隔符输入: + +`{{echo hello=world}} | yank -d {{=}}` + +- 只有与特定正则表达式匹配的内容才输入: + +`{{ps ux}} | yank -g "{{[0-9]+}}"` diff --git a/pages.zh/common/yarn-why.md b/pages.zh/common/yarn-why.md index 51613e18aac2cc..797e523d6e5643 100644 --- a/pages.zh/common/yarn-why.md +++ b/pages.zh/common/yarn-why.md @@ -1,8 +1,8 @@ # yarn-why -> 确认安装这个 Yarn 软件包的原因. -> 更多信息:. +> 确认安装这个 Yarn 软件包的原因。 +> 更多信息:. -- 打印安装这个 Yarn 软件包的原因: +- 打印安装这个 Yarn 软件包的原因: `yarn-why {{package_name}}` diff --git a/pages.zh/common/yarn.md b/pages.zh/common/yarn.md index 4a09839cd71599..1ce8901dc9db17 100644 --- a/pages.zh/common/yarn.md +++ b/pages.zh/common/yarn.md @@ -1,28 +1,28 @@ # yarn -> JavaScript 和 Node.js package manager 的一个替代. +> JavaScript 和 Node.js package manager 的一个替代。 > 更多信息:. -- 全局安装一个模块: +- 全局安装一个模块: `yarn global add {{module_name}}` -- 安装 `package.json` 中指定的依赖 (`install` 命令是可选的 -- 你可以直接输入`yarn`): +- 安装 `package.json` 中指定的依赖(`install` 命令是可选的 -- 你可以直接输入`yarn`): `yarn install` -- 安装一个模块并将其写入 `package.json` 中的依赖项 (增加 `--dev` 来作为开发依赖写入): +- 安装一个模块并将其写入 `package.json` 中的依赖项(增加 `--dev` 来作为开发依赖写入): `yarn add {{module_name}}@{{version}}` -- 卸载一个模块并将其从 `package.json` 的依赖项中移除: +- 卸载一个模块并将其从 `package.json` 的依赖项中移除: `yarn remove {{module_name}}` -- 交互式地创建一个 `package.json` 文件: +- 交互式地创建一个 `package.json` 文件: `yarn init` -- 确认一个模块是否是一个依赖项并且列出依赖其的模块: +- 确认一个模块是否是一个依赖项并且列出依赖其的模块: `yarn why {{module_name}}` diff --git a/pages.zh/common/z.md b/pages.zh/common/z.md index 0dc926b5a5cd80..cf2310801915c6 100644 --- a/pages.zh/common/z.md +++ b/pages.zh/common/z.md @@ -1,28 +1,28 @@ # z -> 记录被使用次数最多的目录并允许在它们之间以字符串或正则表达式来进行匹配和跳转. +> 记录被使用次数最多的目录并允许在它们之间以字符串或正则表达式来进行匹配和跳转。 > 更多信息:. -- 跳转到一个名字带有 "foo" 的文件夹: +- 跳转到一个名字带有 "foo" 的文件夹: `z {{foo}}` -- 跳转到一个名字带有 "foo" 并且后面带有 "bar" 的文件夹(例:`fooesbar`): +- 跳转到一个名字带有 "foo" 并且后面带有 "bar" 的文件夹(例:`fooesbar`): `z {{foo}} {{bar}}` -- 跳转到名字带有 "foo" 并且拥有最高访问次数的文件夹: +- 跳转到名字带有 "foo" 并且拥有最高访问次数的文件夹: `z -r {{foo}}` -- 跳转到最近使用的名字带有 "foo" 的文件夹: +- 跳转到最近使用的名字带有 "foo" 的文件夹: `z -t {{foo}}` -- 列出在 `z` 的数据库中名字带有 "foo" 的文件夹: +- 列出在 `z` 的数据库中名字带有 "foo" 的文件夹: `z -l {{foo}}` -- 将当前文件夹从 `z`的数据库中移除: +- 将当前文件夹从 `z`的数据库中移除: `z -x .` diff --git a/pages.zh/common/zip.md b/pages.zh/common/zip.md new file mode 100644 index 00000000000000..f392c9ac97c3d7 --- /dev/null +++ b/pages.zh/common/zip.md @@ -0,0 +1,36 @@ +# zip + +> 将文件打包并压缩(存档)为 zip 文件。 +> 更多信息:. + +- 递归地打包和压缩文件和目录: + +`zip -r {{压缩文件.zip}} {{路径/到/文件}} {{路径/到/目录1}} {{路径/到/目录2}}` + +- 添加到压缩档案中并排除不需要的文件: + +`zip -r {{压缩文件.zip}} {{路径/到/目录}} -x {{路径/到/不需要的文件}}` + +- 使用最高压缩级别 9 压缩目录和内容: + +`zip -r -{{9}} {{压缩文件.zip}} {{路径/到/目录}}` + +- 创建一个加密压缩档案(将会提示输入密码): + +`zip -e -r {{压缩文件.zip}} {{路径/到/目录}}` + +- 将文件添加到现有的 zip 文件: + +`zip {{压缩文件.zip}} {{路径/到/文件}}` + +- 从现有 zip 文件中删除文件: + +`zip -d {{压缩文件.zip}} "{{foo/*.tmp}}"` + +- 将指定目录及其内容打包并拆分为多个 zip 文件(例如:若干个 3 GB 的 zip 包): + +`zip -r -s {{3g}} {{压缩文件.zip}} {{路径/到/目录}}` + +- 列出指定压缩档案中的文件(不提取文件): + +`zip -sf {{压缩文件.zip}}` diff --git a/pages.zh/common/zsh.md b/pages.zh/common/zsh.md index 71729cc7fd8cdf..8ab6541b388e04 100644 --- a/pages.zh/common/zsh.md +++ b/pages.zh/common/zsh.md @@ -1,21 +1,21 @@ # zsh > Z SHell. -> 与 `bash` 和 `sh` 兼容的命令行解释器. +> 与 `bash` 和 `sh` 兼容的命令行解释器。 > 更多信息:. -- 启动交互式解释器: +- 启动交互式解释器: `zsh` -- 执行从参数传入的命令: +- 执行从参数传入的命令: `zsh -c {{command}}` -- 从文件执行命令 (脚本): +- 从文件执行命令(脚本): `zsh {{file}}` -- 从文件执行命令并将执行过的命令打印到终端: +- 从文件执行命令并将执行过的命令打印到终端: `zsh -x {{file}}` diff --git a/pages.zh/common/zstd.md b/pages.zh/common/zstd.md index c5c10d325a9031..b9ae112e866983 100644 --- a/pages.zh/common/zstd.md +++ b/pages.zh/common/zstd.md @@ -1,24 +1,24 @@ # zstd -> 使用 Zstandard 压缩来压缩 / 解压文件. +> 使用 Zstandard 压缩来压缩 / 解压文件。 > 更多信息:. -- 将一个文件压缩到一个 `.zst` 后缀的压缩文件中: +- 将一个文件压缩到一个 `.zst` 后缀的压缩文件中: `zstd {{file}}` -- 解压缩一个文件: +- 解压缩一个文件: `zstd -d {{file}}.zst` -- 将文件解压缩到标准输出 (stdout): +- 将文件解压缩到标准输出(stdout): `zstd -dc {{file}}.zst` -- 使用指定的压缩等级来压缩一个文件.0 = 最差,19 = 最好 (默认等级是 3): +- 使用指定的压缩等级来压缩一个文件.0 = 最差,19 = 最好(默认等级是 3): `zstd -{{level}} {{file}}` -- 使用更多内存 (解压或压缩时) 来得到更高的压缩比: +- 使用更多内存(解压或压缩时)来得到更高的压缩比: `zstd --ultra -{{level}} {{file}}` diff --git a/pages.zh/linux/a2disconf.md b/pages.zh/linux/a2disconf.md index e00119d5597b98..6a67c9c58f401e 100644 --- a/pages.zh/linux/a2disconf.md +++ b/pages.zh/linux/a2disconf.md @@ -1,12 +1,12 @@ # a2disconf -> 在基于 Debian 的操作系统上禁用 Apache 配置文件. -> 更多信息: . +> 在基于 Debian 的操作系统上禁用 Apache 配置文件。 +> 更多信息:. -- 禁用配置文件: +- 禁用配置文件: `sudo a2disconf {{配置文件}}` -- 不显示信息性消息: +- 不显示信息性消息: `sudo a2disconf --quiet {{配置文件}}` diff --git a/pages.zh/linux/a2dismod.md b/pages.zh/linux/a2dismod.md new file mode 100644 index 00000000000000..254794fbf671b4 --- /dev/null +++ b/pages.zh/linux/a2dismod.md @@ -0,0 +1,12 @@ +# a2dismod + +> 在基于 Debian 的操作系统上禁用 Apache 模块。 +> 更多信息:. + +- 禁用模块: + +`sudo a2dismod {{模块路径}}` + +- 不显示信息性消息: + +`sudo a2dismod --quiet {{模块路径}}` diff --git a/pages.zh/linux/a2dissite.md b/pages.zh/linux/a2dissite.md new file mode 100644 index 00000000000000..2cf0a7ce2b5ac8 --- /dev/null +++ b/pages.zh/linux/a2dissite.md @@ -0,0 +1,12 @@ +# a2dissite + +> 在基于 Debian 的操作系统上禁用 Apache 虚拟主机。 +> 更多信息:. + +- 禁用虚拟主机: + +`sudo a2dissite {{虚拟主机名}}` + +- 不显示信息性消息: + +`sudo a2dissite --quiet {{虚拟主机名}}` diff --git a/pages.zh/linux/a2enconf.md b/pages.zh/linux/a2enconf.md new file mode 100644 index 00000000000000..257fb0eddd753b --- /dev/null +++ b/pages.zh/linux/a2enconf.md @@ -0,0 +1,12 @@ +# a2enconf + +> 在基于 Debian 的操作系统上启用 Apache 配置文件。 +> 更多信息:. + +- 启用配置文件: + +`sudo a2enconf {{配置文件}}` + +- 不显示信息性消息: + +`sudo a2enconf --quiet {{配置文件}}` diff --git a/pages.zh/linux/a2enmod.md b/pages.zh/linux/a2enmod.md new file mode 100644 index 00000000000000..279ba66859632c --- /dev/null +++ b/pages.zh/linux/a2enmod.md @@ -0,0 +1,12 @@ +# a2enmod + +> 在基于 Debian 的操作系统上启用 Apache 模块。 +> 更多信息:. + +- 启用模块: + +`sudo a2enmod {{模块名}}` + +- 不显示信息性消息: + +`sudo a2enmod --quiet {{模块名}}` diff --git a/pages.zh/linux/a2ensite.md b/pages.zh/linux/a2ensite.md new file mode 100644 index 00000000000000..114152c38d40d0 --- /dev/null +++ b/pages.zh/linux/a2ensite.md @@ -0,0 +1,12 @@ +# a2ensite + +> 在基于 Debian 的操作系统上启用 Apache 虚拟主机。 +> 更多信息:. + +- 启用虚拟主机: + +`sudo a2ensite {{虚拟主机名}}` + +- 不显示信息性消息: + +`sudo a2ensite --quiet {{虚拟主机名}}` diff --git a/pages.zh/linux/a2query.md b/pages.zh/linux/a2query.md new file mode 100644 index 00000000000000..3c743fbbbe34ca --- /dev/null +++ b/pages.zh/linux/a2query.md @@ -0,0 +1,24 @@ +# a2query + +> 在基于 Debian 的操作系统上查看 Apache 运行配置。 +> 更多信息:. + +- 列出启用的 Apache 模块: + +`sudo a2query -m` + +- 查看某个模块是否已安装: + +`sudo a2query -m {{模块名}}` + +- 列出已启用的虚拟主机: + +`sudo a2query -s` + +- 显示已启用的多进程模块: + +`sudo a2query -M` + +- 显示 Apache 版本: + +`sudo a2query -v` diff --git a/pages.zh/linux/abbr.md b/pages.zh/linux/abbr.md new file mode 100644 index 00000000000000..6baa018e5c7f1c --- /dev/null +++ b/pages.zh/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> 管理 fish shell 的缩写。 +> 用户定义的词在输入后会被较长的短语替换。 +> 更多信息:. + +- 添加一个新缩写: + +`abbr --add {{缩写名}} {{命令}} {{命令参数}}` + +- 重命名一个已有的缩写: + +`abbr --rename {{旧缩写名}} {{新缩写名}}` + +- 清除一个已有的缩写: + +`abbr --erase {{缩写名}}` + +- 用 SSH 导入另一台主机上定义的缩写: + +`ssh {{主机名}} abbr --show | source` diff --git a/pages.zh/linux/ac.md b/pages.zh/linux/ac.md new file mode 100644 index 00000000000000..b5994fa4c242fe --- /dev/null +++ b/pages.zh/linux/ac.md @@ -0,0 +1,24 @@ +# ac + +> 打印用户连接时长数据。 +> 更多信息:. + +- 以小时为单位打印当前用户连接时间: + +`ac` + +- 以小时为单位打印所有用户连接时间: + +`ac --individual-totals` + +- 以小时为单位打印特定用户连接时间: + +`ac --individual-totals {{用户名}}` + +- 以小时为单位打印特定用户每天连接时间: + +`ac --daily-totals --individual-totals {{用户名}}` + +- 显示附加明细: + +`ac --compatibility` diff --git a/pages.zh/linux/add-apt-repository.md b/pages.zh/linux/add-apt-repository.md index 99102797ac68b7..c2084159d85756 100644 --- a/pages.zh/linux/add-apt-repository.md +++ b/pages.zh/linux/add-apt-repository.md @@ -1,19 +1,20 @@ # add-apt-repository -> apt 仓库管理. +> apt 仓库管理。 +> 更多信息:. -- 添加一个新的 apt 仓库: +- 添加一个新的 apt 仓库: `add-apt-repository {{指定仓库}}` -- 移除一个 apt 仓库: +- 移除一个 apt 仓库: `add-apt-repository --remove {{指定仓库}}` -- 添加一个仓库并更新缓存: +- 添加一个仓库并更新缓存: `add-apt-repository --update {{指定仓库}}` -- 允许从指定仓库下载源码: +- 允许从指定仓库下载源码: `add-apt-repository --enable-source {{指定仓库}}` diff --git a/pages.zh/linux/addpart.md b/pages.zh/linux/addpart.md new file mode 100644 index 00000000000000..a773c5d024729c --- /dev/null +++ b/pages.zh/linux/addpart.md @@ -0,0 +1,9 @@ +# addpart + +> 将特定分区的存在告知 Linux 内核。 +> 这个命令是 `add partition` ioctl 的简单封装。 +> 更多信息:. + +- 将特定分区的存在告知 Linux 内核: + +`addpart {{设备名}} {{分区名}} {{起始点}} {{长度}}` diff --git a/pages.zh/linux/addr2line.md b/pages.zh/linux/addr2line.md new file mode 100644 index 00000000000000..18e5aca6ae47bb --- /dev/null +++ b/pages.zh/linux/addr2line.md @@ -0,0 +1,16 @@ +# addr2line + +> 将二进制文件地址转换成文件名和行数。 +> 更多信息:. + +- 显示可执行文件的指令地址对应源代码的文件名和行数: + +`addr2line --exe={{可执行文件路径}} {{地址}}` + +- 显示函数名、文件名和行数: + +`addr2line --exe={{可执行文件路径}} --functions {{地址}}` + +- 将 C++ 代码函数名符号重组: + +`addr2line --exe={{可执行文件地址}} --functions --demangle {{地址}}` diff --git a/pages.zh/linux/adduser.md b/pages.zh/linux/adduser.md index 77f0c520f114ae..07e0944de1510a 100644 --- a/pages.zh/linux/adduser.md +++ b/pages.zh/linux/adduser.md @@ -1,24 +1,24 @@ # adduser -> 添加用户的工具. -> 更多信息: . +> 添加用户的工具。 +> 更多信息:. -- 创建一个新用户,在默认路径创建 home 目录,并提示用户设置密码: +- 创建一个新用户,在默认路径创建 home 目录,并提示用户设置密码: `adduser {{用户名}}` -- 创建一个新用户,不生成 home 目录: +- 创建一个新用户,不生成 home 目录: `adduser --no-create-home {{用户名}}` -- 创建一个新用户,并在指定路径下创建 home 目录: +- 创建一个新用户,并在指定路径下创建 home 目录: `adduser --home {{home 路径}} {{用户名}}` -- 创建一个新用户,并指定登录 shell: +- 创建一个新用户,并指定登录 shell: `adduser --shell {{shell 路径}} {{用户名}}` -- 创建一个新用户,并指定其用户组: +- 创建一个新用户,并指定其用户组: `adduser --ingroup {{用户组}} {{用户名}}` diff --git a/pages.zh/linux/alpine.md b/pages.zh/linux/alpine.md index 8c227630642fd6..e1d47f00c4e260 100644 --- a/pages.zh/linux/alpine.md +++ b/pages.zh/linux/alpine.md @@ -1,16 +1,17 @@ # alpine -> 一个电子邮件客户端和 usenet 新闻组程序,具有 pico/nano 风格的界面 -> 通过 IMAP 支持大多数现代电子邮件服务 +> 一个电子邮件客户端和 usenet 新闻组程序,具有 pico/nano 风格的界面。 +> 通过 IMAP 支持大多数现代电子邮件服务。 +> 更多信息:. -- 正常打开 alpine: +- 正常打开 alpine: `alpine` -- 直接打开写信息界面,并指定电子邮件发送地址: +- 直接打开写信息界面,并指定电子邮件发送地址: `alpine {{邮箱地址}}` -- 退出 alpine: +- 退出 alpine: `'q' 然后 'y'` diff --git a/pages.zh/linux/alternatives.md b/pages.zh/linux/alternatives.md new file mode 100644 index 00000000000000..1c5f67ef0de659 --- /dev/null +++ b/pages.zh/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> 这是 `update-alternatives` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr update-alternatives` diff --git a/pages.zh/linux/amixer.md b/pages.zh/linux/amixer.md new file mode 100644 index 00000000000000..150c1a92943165 --- /dev/null +++ b/pages.zh/linux/amixer.md @@ -0,0 +1,12 @@ +# amixer + +> ALSA 声卡驱动程序的混合器。 +> 更多信息:. + +- 增加 10% 的主音量: + +`amixer -D pulse sset Master {{10%+}}` + +- 降低 10% 的主音量: + +`amixer -D pulse sset Master {{10%-}}` diff --git a/pages.zh/linux/anbox.md b/pages.zh/linux/anbox.md new file mode 100644 index 00000000000000..b77b4794890de5 --- /dev/null +++ b/pages.zh/linux/anbox.md @@ -0,0 +1,8 @@ +# anbox + +> 在任何 GNU/Linux 操作系统上运行安卓应用。 +> 更多信息:. + +- 在应用管理器中运行 Anbox: + +`anbox launch --package={{org.anbox.appmgr}} --component={{org.anbox.appmgr.AppViewActivity}}` diff --git a/pages.zh/linux/apache2ctl.md b/pages.zh/linux/apache2ctl.md new file mode 100644 index 00000000000000..09d6957758ad8e --- /dev/null +++ b/pages.zh/linux/apache2ctl.md @@ -0,0 +1,25 @@ +# apache2ctl + +> Apache HTTP web 服务器命令行管理工具。 +> 基于 Debian 的操作系统自带该命令,基于 RHEL 的查看 `httpd`。 +> 更多信息:. + +- 启动 Apache 守护进程。如果已运行则发送一个消息: + +`sudo apache2ctl start` + +- 关闭 Apache 守护进程: + +`sudo apache2ctl stop` + +- 重启 Apache 守护进程: + +`sudo apache2ctl restart` + +- 检查配置文件语法: + +`sudo apache2ctl -t` + +- 列出已加载模块: + +`sudo apache2ctl -M` diff --git a/pages.zh/linux/apk.md b/pages.zh/linux/apk.md index a4d9dfcd946186..019779f9e11a1e 100644 --- a/pages.zh/linux/apk.md +++ b/pages.zh/linux/apk.md @@ -1,27 +1,28 @@ # apk -> Alpine linux 的包管理工具. +> Alpine Linux 的包管理工具。 +> 更多信息:. -- 从所有的远程仓库中更新仓库索引: +- 从所有的远程仓库中更新仓库索引: `apk update` -- 安装一个新软件包: +- 安装一个新软件包: `apk add {{软件包}}` -- 移除一个软件包: +- 移除一个软件包: `apk del {{软件包}}` -- 修复或更新软件包而不修改主依赖项: +- 修复或更新软件包而不修改主依赖项: `apk fix {{软件包}}` -- 通过关键字查找软件包: +- 通过关键字查找软件包: `apk search {{关键字}}` -- 获取指定软件包的相关信息: +- 获取指定软件包的相关信息: `apk info {{软件包}}` diff --git a/pages.zh/linux/aplay.md b/pages.zh/linux/aplay.md new file mode 100644 index 00000000000000..be3228ec83ee80 --- /dev/null +++ b/pages.zh/linux/aplay.md @@ -0,0 +1,16 @@ +# aplay + +> ALSA 声卡驱动程序的命令行声音播放器。 +> 更多信息:. + +- 播放一个文件(会自动根据文件格式确定采样率、位深等): + +`aplay {{文件路径}}` + +- 以 2500 Hz 播放指定文件的前 10 秒: + +`aplay --duration={{10}} --rate={{2500}} {{文件路径}}` + +- 以 22050 Hz,mono,8-bit,Mu-Law 和 `.au` 格式来播放指定原始文件: + +`aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{文件路径}}` diff --git a/pages.zh/linux/apport-bug.md b/pages.zh/linux/apport-bug.md new file mode 100644 index 00000000000000..54d39589c82434 --- /dev/null +++ b/pages.zh/linux/apport-bug.md @@ -0,0 +1,20 @@ +# apport-bug + +> 在 Ubuntu 上提交错误报告。 +> 更多信息:. + +- 报告整个系统的错误: + +`apport-bug` + +- 报告某个软件包的错误: + +`apport-bug {{包名}}` + +- 报告某个可执行文件的错误: + +`apport-bug {{可执行文件路径}}` + +- 报告某个进程的错误: + +`apport-bug {{PID}}` diff --git a/pages.zh/linux/apt-add-repository.md b/pages.zh/linux/apt-add-repository.md new file mode 100644 index 00000000000000..dd2a4a68fb4c27 --- /dev/null +++ b/pages.zh/linux/apt-add-repository.md @@ -0,0 +1,20 @@ +# apt-add-repository + +> 管理 apt 仓库。 +> 更多信息:. + +- 添加一个 apt 仓库: + +`apt-add-repository {{repository_spec}}` + +- 移除一个 apt 仓库: + +`apt-add-repository --remove {{repository_spec}}` + +- 添加一个 apt 仓库之后更新包缓存: + +`apt-add-repository --update {{repository_spec}}` + +- 开启源码包: + +`apt-add-repository --enable-source {{repository_spec}}` diff --git a/pages.zh/linux/apt-cache.md b/pages.zh/linux/apt-cache.md index c3e736bac44509..a2b291b8c891ac 100644 --- a/pages.zh/linux/apt-cache.md +++ b/pages.zh/linux/apt-cache.md @@ -1,24 +1,24 @@ # apt-cache -> Debian 和 Ubuntu 的包查询工具. -> 更多信息: . +> Debian 和 Ubuntu 的包查询工具。 +> 更多信息:. -- 在当前的软件源中查找一个软件包: +- 在当前的软件源中查找一个软件包: `apt-cache search {{软件包}}` -- 显示指定软件包的相关信息: +- 显示指定软件包的相关信息: `apt-cache show {{软件包}}` -- 查看一个软件包是否安装或是否为最新: +- 查看一个软件包是否安装或是否为最新: `apt-cache policy {{软件包}}` -- 显示一个软件包的依赖项: +- 显示一个软件包的依赖项: `apt-cache depends {{软件包}}` -- 列出依赖指定软件包的所有软件包: +- 列出依赖指定软件包的所有软件包: `apt-cache rdepends {{软件包}}` diff --git a/pages.zh/linux/apt-file.md b/pages.zh/linux/apt-file.md index 36def9fa4e81b7..aba0df23de5794 100644 --- a/pages.zh/linux/apt-file.md +++ b/pages.zh/linux/apt-file.md @@ -1,16 +1,20 @@ # apt-file -> 在 apt 软件包中查找文件,其中也包括未安装的软件 -> 更多信息: . +> 在 apt 软件包中查找文件,其中也包括未安装的软件。 +> 更多信息:. -- 更新元数据的数据库: +- 更新元数据的数据库: `sudo apt update` -- 查找包含指定文件或路径的软件包: +- 查找包含指定文件或路径的软件包: -`apt-file search {{文件名或路径}}` +`apt-file {{search|find}} {{文件路径}}` -- 列出指定包的内容: +- 列出指定包的内容: -`apt-file list {{软件包名}}` +`apt-file {{show|list}} {{软件包名}}` + +- 查找符合给定 `pattern` 中正则表达式的软件包: + +`apt-file {{search|find}} --regexp {{正则表达式}}` diff --git a/pages.zh/linux/apt-get.md b/pages.zh/linux/apt-get.md index 6d4c46db10f074..f39eac4fe9a4bf 100644 --- a/pages.zh/linux/apt-get.md +++ b/pages.zh/linux/apt-get.md @@ -1,29 +1,37 @@ # apt-get -> Debian 和 Ubuntu 的软件包管理工具. -> 使用`apt-cache`查找包. -> 更多信息: . +> Debian 和 Ubuntu 的软件包管理工具。 +> 使用 `apt-cache` 查找包。 +> 更多信息:. -- 更新可用软件包及其版本列表(推荐在其他`apt-get`命令运行之前使用): +- 更新可用软件包及其版本列表(推荐在其他 `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`), 移除过时的软件包并安装额外的软件包以满足新的依赖: +- 升级已安装的软件包(类似于 `upgrade`),移除过时的软件包并安装额外的软件包以满足新的依赖: `apt-get dist-upgrade` diff --git a/pages.zh/linux/apt-key.md b/pages.zh/linux/apt-key.md index 497b89058242a6..1ca1e589359ba9 100644 --- a/pages.zh/linux/apt-key.md +++ b/pages.zh/linux/apt-key.md @@ -1,24 +1,24 @@ # apt-key -> Debian 和 Ubuntu 上的 APT 软件包管理器的密钥管理工具 -> 更多信息: . +> Debian 和 Ubuntu 上的 APT 软件包管理器的密钥管理工具。 +> 更多信息:. -- 列出可信密钥: +- 列出可信密钥: `apt-key list` -- 向可信密钥库中添加一个密钥: +- 向可信密钥库中添加一个密钥: `apt-key add {{密钥文件.asc}}` -- 从可信密钥库中移除一个密钥: +- 从可信密钥库中移除一个密钥: `apt-key del {{密钥 id}}` -- 向可信密钥库中添加一个远程密钥: +- 向可信密钥库中添加一个远程密钥: `wget -qO - {{https://host.tld/filename.key}} | apt-key add -` -- 指定密钥 ID, 从密钥服务器中添加一个密钥: +- 指定密钥 ID, 从密钥服务器中添加一个密钥: `apt-key adv --keyserver {{pgp.mit.edu}} --recv {{密钥 id}}` diff --git a/pages.zh/linux/apt-mark.md b/pages.zh/linux/apt-mark.md index 0ce4747b747961..745cf32aa86594 100644 --- a/pages.zh/linux/apt-mark.md +++ b/pages.zh/linux/apt-mark.md @@ -1,24 +1,24 @@ # apt-mark -> 修改已安装软件包状态的工具 -> 更多信息: . +> 修改已安装软件包状态的工具。 +> 更多信息:. -- 将一个软件包标记为自动安装: +- 将一个软件包标记为自动安装: `sudo apt-mark auto {{软件包名}}` -- 将一个软件包保持在当前版本,防止对其更新: +- 将一个软件包保持在当前版本,防止对其更新: `sudo apt-mark hold {{软件包名}}` -- 允许对一个软件包更新: +- 允许对一个软件包更新: `sudo apt-mark unhold {{软件包名}}` -- 列出手动安装的软件包: +- 列出手动安装的软件包: `apt-mark showmanual` -- 列出保持当前版本而不更新的软件包: +- 列出保持当前版本而不更新的软件包: `apt-mark showhold` diff --git a/pages.zh/linux/apt.md b/pages.zh/linux/apt.md index ac3c883447266a..1ec335891273aa 100644 --- a/pages.zh/linux/apt.md +++ b/pages.zh/linux/apt.md @@ -1,28 +1,37 @@ # apt -> 基于 Debian 的发行版上的软件包管理工具. -> 更多信息: . +> 基于 Debian 的发行版上的软件包管理工具。 +> 在 Ubuntu 16.04 及之后版本推荐用它代替 `apt-get` 。 +> 更多信息:. -- 更新可用软件包及其版本列表(推荐在运行其他 apt 命令前首先运行该命令): +- 更新可用软件包及其版本列表(推荐在运行其他 apt 命令前首先运行该命令): `sudo apt update` -- 查找指定软件包: +- 查找指定软件包: `apt search {{软件包}}` -- 显示关于指定软件包的信息: +- 显示关于指定软件包的信息: `apt show {{软件包}}` -- 安装指定软件包或将指定软件包更新到最新版本: +- 安装指定软件包或将指定软件包更新到最新版本: `sudo apt install {{软件包}}` -- 移除指定软件包(使用`purge`可以同时移除其配置文件): +- 移除指定软件包(使用 `purge` 同时移除其配置文件): `sudo apt remove {{软件包}}` -- 将所有已安装软件包更新到最新可用版本: +- 将所有已安装软件包更新到最新可用版本: `sudo apt upgrade` + +- 列出所有软件包: + +`apt list` + +- 列出已安装的软件包: + +`apt list --installed` diff --git a/pages.zh/linux/aptitude.md b/pages.zh/linux/aptitude.md index 505ba1bc7330fd..e3fc4bef46d631 100644 --- a/pages.zh/linux/aptitude.md +++ b/pages.zh/linux/aptitude.md @@ -1,28 +1,36 @@ # aptitude -> Debian 和 Ubuntu 上的软件包管理工具. -> 更多信息: . +> Debian 和 Ubuntu 上的软件包管理工具。 +> 更多信息:. -- 同步可用软件包及其版本列表,在运行后续 aptitude 命令前,应该首先运行该命令: +- 同步可用软件包及其版本列表,在运行后续 aptitude 命令前,应该首先运行该命令: `aptitude update` -- 安装一个新的软件包及其依赖项: +- 安装一个新的软件包及其依赖: `aptitude install {{软件包}}` -- 查找软件包: +- 查找一个软件包: `aptitude search {{软件包}}` -- 移除一个软件包并移除所有依赖它的软件包: +- 查找一个已安装的软件包(`?installed` 是一个 aptitude 搜索项): + +`aptitude search '?installed({{软件包}})'` + +- 移除一个软件包并移除所有依赖它的软件包: `aptitude remove {{软件包}}` -- 更新已安装软件包到最新版本: +- 更新已安装软件包到最新版本: `aptitude upgrade` -- 更新已安装的软件包(类似于`aptitude upgrade`命令), 移除过时的软件包并安装额外的软件包以满足新的软件包依赖项: +- 更新已安装的软件包(类似于 `aptitude upgrade` 命令),移除过时的软件包并安装额外的软件包以满足新的软件包依赖项: `aptitude full-upgrade` + +- 锁定一个已安装的软件包以便阻止它自动升级: + +`aptitude hold '?installed({{软件包}})'` diff --git a/pages.zh/linux/arch-chroot.md b/pages.zh/linux/arch-chroot.md new file mode 100644 index 00000000000000..73e157a8ac8e6f --- /dev/null +++ b/pages.zh/linux/arch-chroot.md @@ -0,0 +1,20 @@ +# arch-chroot + +> 辅助 Arch Linux 安装流程的更强 `chroot` 命令。 +> 更多信息:. + +- 在新的根目录下开启一个交互外壳程序(默认是 `bash`): + +`arch-chroot {{新根目录}}` + +- 指定除当前用户外的其他用户来运行外壳程序: + +`arch-chroot -u {{用户名}} {{新根目录}}` + +- 在新的根目录下运行一个自定义命令(取代默认的 `bash`): + +`arch-chroot {{新根目录}} {{命令}} {{命令参数}}` + +- 指定除默认的 `bash` 以外的外壳程序(以下例子需要现在目标系统中先安装 `zsh`): + +`arch-chroot {{新根目录}} {{zsh}}` diff --git a/pages.zh/linux/arch.md b/pages.zh/linux/arch.md deleted file mode 100644 index 4d51da0acda447..00000000000000 --- a/pages.zh/linux/arch.md +++ /dev/null @@ -1,8 +0,0 @@ -# arch - -> 显示当前系统架构名称. -> 参阅`uname`. - -- 显示当前系统架构名称: - -`arch` diff --git a/pages.zh/linux/archey.md b/pages.zh/linux/archey.md index d18db7c8fee174..418807b4dbb07e 100644 --- a/pages.zh/linux/archey.md +++ b/pages.zh/linux/archey.md @@ -1,7 +1,8 @@ # archey -> 一个可以以新颖的方式显示系统信息的简单工具. +> 一个可以以新颖的方式显示系统信息的简单工具。 +> 更多信息:. -- 显示系统信息: +- 显示系统信息: `archey` diff --git a/pages.zh/linux/archinstall.md b/pages.zh/linux/archinstall.md new file mode 100644 index 00000000000000..34dcf2179d58e5 --- /dev/null +++ b/pages.zh/linux/archinstall.md @@ -0,0 +1,12 @@ +# archinstall + +> Arch Linux 引导安装程序。 +> 更多信息:. + +- 启动交互式的安装程序: + +`archinstall` + +- 启动一个预设的安装程序: + +`archinstall {{minimal|unattended}}` diff --git a/pages.zh/linux/archlinux-java.md b/pages.zh/linux/archlinux-java.md new file mode 100644 index 00000000000000..86430233adb37d --- /dev/null +++ b/pages.zh/linux/archlinux-java.md @@ -0,0 +1,20 @@ +# archlinux-java + +> 提供 Java 环境设置功能的一个帮助脚本。 +> 更多信息:. + +- 列出已安装的 Java 环境: + +`archlinux-java status` + +- 设置默认的 Java 环境: + +`archlinux-java set {{java_environment}}` + +- 取消默认的 Java 环境: + +`archlinux-java unset` + +- 自动设置默认的 Java 环境: + +`archlinux-java fix` diff --git a/pages.zh/linux/arecord.md b/pages.zh/linux/arecord.md new file mode 100644 index 00000000000000..9e7987ab4dc3a5 --- /dev/null +++ b/pages.zh/linux/arecord.md @@ -0,0 +1,24 @@ +# arecored + +> ALSA 声卡驱动的声音录制器。 +> 更多信息:. + +- 以 "CD" 质量录制一段声音(录制结束以 Ctrl-C 停止): + +`arecord -vv --format=cd {{路径/文件名.wav}}` + +- 以 "CD" 质量录制 10 秒钟声音: + +`arecord -vv --format=cd --duration={{10}} {{路径/文件名.wav}}` + +- 录制一段声音并以 mp3 格式保存(录制结束以 Ctrl-C 停止): + +`arecord -vv --format=cd --file-type raw | lame -r - {{路径/文件名.mp3}}` + +- 列出所有的声卡和数字音频设备: + +`arecord --list-devices` + +- 允许交互式界面(例如使用空格键或回车键来播放或暂停): + +`arecord --interactive` diff --git a/pages.zh/linux/arithmetic.md b/pages.zh/linux/arithmetic.md new file mode 100644 index 00000000000000..8fe61a33b4436e --- /dev/null +++ b/pages.zh/linux/arithmetic.md @@ -0,0 +1,16 @@ +# arithmetic + +> 测试见到你的算术问题。 +> 更多信息:. + +- 开始算术测试: + +`arithmetic` + +- 指定一个或多个算术运算符来设计问题: + +`arithmetic -o {{+|-|x|/}}` + +- 指定范围。加法和乘法问题限定 0 到指定范围之间的数字,包含上区间。减法和除法问题限制结果和运算数字必须在 0 到指定范围之间: + +`arithmetic -r {{7}}` diff --git a/pages.zh/linux/ark.md b/pages.zh/linux/ark.md new file mode 100644 index 00000000000000..a0f27a4e86a501 --- /dev/null +++ b/pages.zh/linux/ark.md @@ -0,0 +1,16 @@ +# ark + +> KDE 归档工具。 +> 更多信息:. + +- 将存档解压缩到当前目录: + +`ark --batch {{存档名}}` + +- 改变解压缩目录: + +`ark --batch --destination {{解压缩目录路径}} {{存档名}}` + +- 创建一个原本不存在的存档并向它添加文件: + +`ark --add-to {{存档名}} {{文件1}} {{文件2}}` diff --git a/pages.zh/linux/arp-scan.md b/pages.zh/linux/arp-scan.md deleted file mode 100644 index dc4b62d18cfbb7..00000000000000 --- a/pages.zh/linux/arp-scan.md +++ /dev/null @@ -1,19 +0,0 @@ -# arp-scan - -> 发送 ARP 数据包到特定主机(指定 IP 地址或主机名),来扫描本地网络. - -- 扫描当前本地网络: - -`arp-scan --localnet` - -- 扫描带有自定义位掩码的 IP 网络: - -`arp-scan {{192.168.1.1}}/{{24}}` - -- 扫描自定义范围内的 IP 网络: - -`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` - -- 扫描带有自定义子网掩码的 IP 网络: - -`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages.zh/linux/as.md b/pages.zh/linux/as.md index fd010f470b5a48..0211d09de8986e 100644 --- a/pages.zh/linux/as.md +++ b/pages.zh/linux/as.md @@ -1,20 +1,21 @@ # as -> 一个可移植的 GUN 汇编器. -> 主要用于汇编`gcc`的输出,以供链接器`ld`使用. +> 一个可移植的 GUN 汇编器。 +> 主要用于汇编`gcc`的输出,以供链接器`ld`使用。 +> 更多信息:. -- 汇编一个文件,输出为 a.out: +- 汇编一个文件,输出为 a.out: `as {{文件.s}}` -- 汇编文件,并指定输出文件: +- 汇编文件,并指定输出文件: `as {{文件.s}} -o {{输出.o}}` -- 通过跳过空格和注释的预处理过程来更快的产生输出文件(只应该用于可信任的编译器的输出): +- 通过跳过空格和注释的预处理过程来更快的产生输出文件(只应该用于可信任的编译器的输出): `as -f {{文件.s}}` -- 将给定路径添加到目录列表,来搜索.include 指令指定的文件: +- 将给定路径添加到目录列表,来搜索.include 指令指定的文件: `as -I {{目录路径}} {{文件.s}}` diff --git a/pages.zh/linux/ascii.md b/pages.zh/linux/ascii.md new file mode 100644 index 00000000000000..0714a939994b8c --- /dev/null +++ b/pages.zh/linux/ascii.md @@ -0,0 +1,36 @@ +# ascii + +> 显示 ASCII 字符的别名。 +> 更多信息:. + +- 显示一个 ASCII 字符的别名: + +`ascii {{a}}` + +- 以较短和脚本友好模式显示 ASCII 字符的别名: + +`ascii -t {{a}}` + +- 显示多个 ASCII 字符的别名: + +`ascii -s {{tldr}}` + +- 显示十进制 ASCII 字符表: + +`ascii -d` + +- 显示十六进制 ASCII 字符表: + +`ascii -x` + +- 显示八进制 ASCII 字符表: + +`ascii -o` + +- 显示二进制 ASCII 字符表: + +`ascii -b` + +- 显示选项总结和整个 ASCII 字符表: + +`ascii` diff --git a/pages.zh/linux/asciiart.md b/pages.zh/linux/asciiart.md index f0c7d290788269..8f6050cb0a7392 100644 --- a/pages.zh/linux/asciiart.md +++ b/pages.zh/linux/asciiart.md @@ -1,28 +1,28 @@ # asciiart > 将图像转换为 ASCII. -> 更多信息: . +> 更多信息:. -- 从文件中读取图像并以 ASCII 打印: +- 从文件中读取图像并以 ASCII 打印: -`asciiart {{路径/image.jpg}}` +`asciiart {{路径/到/图片.jpg}}` -- 从 URL 中读取图像并以 ASCII 打印: +- 从 URL 中读取图像并以 ASCII 打印: `asciiart {{www.example.com/image.jpg}}` -- 选择输出宽度 (默认为 100): +- 选择输出宽度(默认为 100): -`asciiart -width {{50}} {{路径/image.jpg}}` +`asciiart -width {{50}} {{路径/到/图片.jpg}}` -- 对 ASCII 输出进行着色: +- 对 ASCII 输出进行着色: -`asciiart --color {{路径/image.jpg}}` +`asciiart --color {{路径/到/图片.jpg}}` -- 选择输出格式 (默认格式为文本): +- 选择输出格式(默认格式为文本): -`asciiart --format {{text|html}} {{路径/image.jpg}}` +`asciiart --format {{text|html}} {{路径/到/图片.jpg}}` -- 反转字符映射: +- 反转字符映射: -`asciiart --invert-chars {{路径/image.jpg}}` +`asciiart --invert-chars {{路径/到/图片.jpg}}` diff --git a/pages.zh/linux/aspell.md b/pages.zh/linux/aspell.md index 383a1b85fd2927..9fcb18a254d88b 100644 --- a/pages.zh/linux/aspell.md +++ b/pages.zh/linux/aspell.md @@ -1,23 +1,24 @@ # aspell -> 交互式拼写检查工具. +> 交互式拼写检查工具。 +> 更多信息:. -- 为一个文件做拼写检查: +- 为一个文件做拼写检查: `aspell check {{文件路径}}` -- 列出来自标准输入的拼写错误单词: +- 列出来自标准输入的拼写错误单词: `cat {{文件}} | aspell list` -- 列出可用的字典语言: +- 列出可用的字典语言: `aspell dicts` -- 指定不同的语言(取 ISO 639 语言代码的 2 个字母)来运行 aspell: +- 指定不同的语言(取 ISO 639 语言代码的 2 个字母)来运行 `aspell`: `aspell --lang={{cs}}` -- 列出来自标准输入的拼写错误单词,并且忽略个人单词列表中的单词: +- 列出来自标准输入的拼写错误单词,并且忽略个人单词列表中的单词: -`cat {{文件}} | aspell --personal={{个人单词列表.pws}} {{列表}}` +`cat {{文件}} | aspell --personal={{个人单词列表.pws}} list` diff --git a/pages.zh/linux/asterisk.md b/pages.zh/linux/asterisk.md new file mode 100644 index 00000000000000..40637ba3f909e9 --- /dev/null +++ b/pages.zh/linux/asterisk.md @@ -0,0 +1,33 @@ +# asterisk + +> 电话和交换(手机)服务器。 +> 用于管理服务器自身和管理已经在运行的实例。 +> 更多信息:. + +- 重新连接一个正在运行的服务器,并打开 3 级的日志详细度: + +`asterisk -r -vvv` + +- 重新连接一个正在运行的服务器,执行一个命令,然后返回: + +`asterisk -r -x "{{命令}}"` + +- 显示 chan_SIP 客户端(手机): + +`asterisk -r -x "sip show peers"` + +- 显示激活的通话和频道: + +`asterisk -r -x "core show channels"` + +- 显示语音邮箱: + +`asterisk -r -x "voicemail show users"` + +- 终止一个频道: + +`asterisk -r -x "hangup request {{频道 ID}}"` + +- 重新载入 chan_SIP 设置: + +`asterisk -r -x "sip reload"` diff --git a/pages.zh/linux/at.md b/pages.zh/linux/at.md index 8d537300799345..b335bce262ede8 100644 --- a/pages.zh/linux/at.md +++ b/pages.zh/linux/at.md @@ -1,16 +1,20 @@ # at -> 在指定时间执行命令. -> 更多信息: . +> 在指定时间执行命令。 +> 更多信息:. -- 打开`at`提示符创建一组新的定时命令,按`Ctrl + D`保存并退出: +- 打开 `at` 提示符创建一组新的定时命令,按 `Ctrl + D` 保存并退出: -`at {{hh:mm:ss}}` +`at {{hh:mm}}` -- 运行命令并通过本地电子邮件程序(例如 sendmail) 发送运行结果: +- 运行命令并通过本地电子邮件程序(例如 sendmail)发送运行结果: -`at {{hh:mm:ss}} -m` +`at {{hh:mm}} -m` -- 在指定时间执行一个脚本: +- 在指定时间执行一个脚本: -`at {{hh:mm:ss}} -f {{文件路径}}` +`at {{hh:mm}} -f {{文件路径}}` + +- 在二月十八号下午十一点发送系统通知: + +`echo "notify-send '{{Wake up!}}'" | at {{11pm}} {{Feb 18}}` diff --git a/pages.zh/linux/aura.md b/pages.zh/linux/aura.md new file mode 100644 index 00000000000000..1959c4c3b1cc21 --- /dev/null +++ b/pages.zh/linux/aura.md @@ -0,0 +1,36 @@ +# aura + +> Aura 包管理器:一个安全且支持多语言的 Arch Linux 和 AUR 的包管理器。 +> 更多信息:. + +- 从官方仓库和 AUR 检索包: + +`aura --aursync --both --search {{包名|正则}}` + +- 从 AUR 安装一个软件包: + +`aura --aursync {{包名}}` + +- 以详细模式升级所有的 AUR 包并移除所有的编译依赖: + +`aura --aursync --diff --sysupgrade --delmakedeps --unsuppress` + +- 从官方仓库安装一个软件包: + +`aura --sync {{包名}}` + +- 同步并更新官方仓库的所有软件包: + +`aura --sync --refresh --sysupgrade` + +- 使用包缓存降级一个软件包: + +`aura --downgrade {{包名}}` + +- 移除一个软件包及其依赖: + +`aura --remove --recursive --unneeded {{包名}}` + +- 移除孤儿包(作为依赖安装但现在不被任何包依赖): + +`aura --orphans --abandon` diff --git a/pages.zh/linux/auracle.md b/pages.zh/linux/auracle.md new file mode 100644 index 00000000000000..4c0ad59b33be5e --- /dev/null +++ b/pages.zh/linux/auracle.md @@ -0,0 +1,20 @@ +# auracle + +> 用来和 Arch Linux 用户仓库交互的命令行工具,这个仓库通常被称作 AUR. +> 更多信息:. + +- 显示符合一个正则表达式的 AUR 包: + +`auracle search '{{regular_expression}}'` + +- 显示 AUR 包列表的包信息,包名以一个单独的空格分隔: + +`auracle info {{package1}} {{package2}}` + +- 显示 AUR 包列表的 `PKGBUILD` 文件(编译信息),包名以一个单独的空格分隔: + +`auracle show {{package1}} {{package2}}` + +- 显示已安装 AUR 包的更新: + +`auracle outdated` diff --git a/pages.zh/linux/aurman.md b/pages.zh/linux/aurman.md new file mode 100644 index 00000000000000..294a04bbc0a0e6 --- /dev/null +++ b/pages.zh/linux/aurman.md @@ -0,0 +1,37 @@ +# aurman + +> 用来构建和安装 AUR 包的 Arch Linux 实用工具。 +> 参见 `pacman`. +> 更多信息:. + +- 同步并更新所有包: + +`aurman --sync --refresh --sysupgrade` + +- 同步并更新所有包但不显示 `PKGBUILD` 文件的变动: + +`aurman --sync --refresh --sysupgrade --noedit` + +- 安装一个新包: + +`aurman --sync {{包名}}` + +- 安装一个新包但不显示 `PKGBUILD` 文件的变动: + +`aurman --sync --noedit {{包名}}` + +- 无确认提示安装一个新包: + +`aurman --sync --noedit --noconfirm {{包名}}` + +- 在官方仓库和 AUR 的包数据库中查找关键字: + +`aurman --sync --search {{关键字}}` + +- 移除一个包及其依赖: + +`aurman --remove --recursive --nosave {{包名}}` + +- 清除包缓存(用两次 `--clean` 参数清除所有包缓存): + +`aurman --sync --clean` diff --git a/pages.zh/linux/aurvote.md b/pages.zh/linux/aurvote.md new file mode 100644 index 00000000000000..3e1e00cccc9e91 --- /dev/null +++ b/pages.zh/linux/aurvote.md @@ -0,0 +1,25 @@ +# aurvote + +> 为 AUR 中的包投票。 +> 为了投票成功,文件 `~/.config/aurvote` 必须存在并包含你的 AUR 身份凭证。 +> 更多信息:. + +- 交互式创建包含你的 AUR 用户名和密码的 `~/.config/aurvote` 文件: + +`aurvote --configure` + +- 为一个或多个 AUR 包投票: + +`aurvote {{package1 package2 ...}}` + +- 为一个或多个 AUR 包取消投票: + +`aurvote --unvote {{package1 package2 ...}}` + +- 检查一个或多个 AUR 包是否已投票: + +`aurvote --check {{package1 package2 ...}}` + +- 查看 `aurvote` 的帮助信息: + +`aurvote --help` diff --git a/pages.zh/linux/authconfig.md b/pages.zh/linux/authconfig.md new file mode 100644 index 00000000000000..c5b0fa81c45eb9 --- /dev/null +++ b/pages.zh/linux/authconfig.md @@ -0,0 +1,36 @@ +# authconfig + +> 用于设置系统认证资源的命令行界面。 +> 更多信息:. + +- 显示当前的配置(或空运行): + +`authconfig --test` + +- 设置服务器使用另一种不同的密码散列算法: + +`authconfig --update --passalgo={{算法名}}` + +- 启用 LDAP 认证: + +`authconfig --update --enableldapauth` + +- 关闭 LDAP 认证: + +`authconfig --update --disableldapauth` + +- 开启网络信息服务(NIS): + +`authconfig --update --enablenis` + +- 开启 Kerberos: + +`authconfig --update --enablekrb5` + +- 开启 Winbind(活动目录)认证: + +`authconfig --update --enablewinbindauth` + +- 开启本地认证: + +`authconfig --update --enablelocauthorize` diff --git a/pages.zh/linux/autorandr.md b/pages.zh/linux/autorandr.md new file mode 100644 index 00000000000000..94265c0d8df99c --- /dev/null +++ b/pages.zh/linux/autorandr.md @@ -0,0 +1,20 @@ +# autorandr + +> 自动调节屏幕布局。 +> 更多信息:. + +- 保存当前屏幕布局: + +`autorandr -s {{配置文件名}}` + +- 显示保存的配置: + +`autorandr` + +- 切换设置: + +`autorandr -l {{配置文件名}}` + +- 设置默认设置: + +`autorandr -d {{配置文件名}}` diff --git a/pages.zh/linux/avahi-browse.md b/pages.zh/linux/avahi-browse.md new file mode 100644 index 00000000000000..9335e2229a3a95 --- /dev/null +++ b/pages.zh/linux/avahi-browse.md @@ -0,0 +1,17 @@ +# avahi-browse + +> 显示通过 mDNS/DNS-SD 暴露在本地网络的服务和主机。 +> Avahi 与苹果设备的 Bonjour(Zeroconf)兼容。 +> 更多信息:. + +- 列出本地网络中的所有服务和他们的地址与端口,忽略他们本地的地址和端口: + +`avahi-browse --all --resolve --ignore-local` + +- 列出所有的域名: + +`avahi-browse --browse-domains` + +- 只搜索一个特定的域名: + +`avahi-browse --all --domain={{domain}}` diff --git a/pages.zh/linux/balooctl.md b/pages.zh/linux/balooctl.md new file mode 100644 index 00000000000000..8a7567f8f5730f --- /dev/null +++ b/pages.zh/linux/balooctl.md @@ -0,0 +1,36 @@ +# balooctl + +> KDE Plasma 的文件索引和搜索框架。 +> 更多信息:. + +- 查看帮助: + +`balooctl` + +- 显示索引器状态: + +`balooctl status` + +- 开启或关闭文件索引器: + +`balooctl {{enable|disable}}` + +- 清除索引数据库: + +`balooctl purge` + +- 挂起文件索引器: + +`balooctl suspend` + +- 恢复文件索引器: + +`balooctl resume` + +- 显示 Baloo 占用的磁盘空间大小: + +`balooctl indexSize` + +- 检查未索引的文件并索引它们: + +`balooctl check` diff --git a/pages.zh/linux/batcat.md b/pages.zh/linux/batcat.md new file mode 100644 index 00000000000000..84f46921f90b72 --- /dev/null +++ b/pages.zh/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> 这是 `bat` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bat` diff --git a/pages.zh/linux/beep.md b/pages.zh/linux/beep.md new file mode 100644 index 00000000000000..5ef820daa06202 --- /dev/null +++ b/pages.zh/linux/beep.md @@ -0,0 +1,24 @@ +# beep + +> 让电脑扬声器发出哔哔声的实用程序。 +> 更多信息:. + +- 播放哔哔声: + +`beep` + +- 重复播放哔哔声: + +`beep -r {{重复次数}}` + +- 指定频率(Hz)和持续时间(毫秒)播放哔哔声: + +`beep -f {{频率}} -l {{持续时间}}` + +- 将每个新的频率和持续时间作为单独的哔哔声播放: + +`beep -f {{频率}} -l {{持续时间}} -n -f {{频率}} -l {{持续时间}}` + +- 播放 C 大调: + +`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.zh/linux/betterlockscreen.md b/pages.zh/linux/betterlockscreen.md new file mode 100644 index 00000000000000..16d7b8c5853be8 --- /dev/null +++ b/pages.zh/linux/betterlockscreen.md @@ -0,0 +1,20 @@ +# betterlockscreen + +> 简洁的锁屏程序。 +> 更多信息:. + +- 锁定屏幕: + +`betterlockscreen --lock` + +- 更换锁屏背景: + +`betterlockscreen -u {{图片.png}}` + +- 锁屏并显示一些自定义文本: + +`betterlockscreen -l pixel -t "{{自定义锁屏文本}}"` + +- 锁屏并自定义显示屏关闭超时秒数: + +`betterlockscreen --off {{5}} -l` diff --git a/pages.zh/linux/bitwise.md b/pages.zh/linux/bitwise.md new file mode 100644 index 00000000000000..11d8fa25deae35 --- /dev/null +++ b/pages.zh/linux/bitwise.md @@ -0,0 +1,20 @@ +# bitwise + +> 支持动态基数转换和位操作的多基数交互式计算器。 +> 更多信息:. + +- 使用交互模式运行: + +`bitwise` + +- 从十进制转换: + +`bitwise {{12345}}` + +- 从十六进制转换: + +`bitwise {{0x563d}}` + +- 转换 C 风格的计算: + +`bitwise "{{0x123 + 0x20 - 30 / 50}}"` diff --git a/pages.zh/linux/blkdiscard.md b/pages.zh/linux/blkdiscard.md new file mode 100644 index 00000000000000..fa4cf420764392 --- /dev/null +++ b/pages.zh/linux/blkdiscard.md @@ -0,0 +1,16 @@ +# blkdiscard + +> 丢弃存储设备上的设备扇区。对 SSD 有用。 +> 更多信息:. + +- 丢弃设备上的所有扇区,删除所有数据: + +`blkdiscard /dev/{{设备名}}` + +- 安全地丢弃设备上的所有块,删除所有数据: + +`blkdiscard --secure /dev/{{设备名}}` + +- 丢弃设备的前 100 MB: + +`blkdiscard --length {{100MB}} /dev/{{设备名}}` diff --git a/pages.zh/linux/blkid.md b/pages.zh/linux/blkid.md new file mode 100644 index 00000000000000..fff5dd3e13eb19 --- /dev/null +++ b/pages.zh/linux/blkid.md @@ -0,0 +1,12 @@ +# blkid + +> 列出所有已识别的分区及其通用唯一标识符 (UUID)。 +> 更多信息:. + +- 列出所有分区: + +`sudo blkid` + +- 列出表中的所有分区,包括当前挂载点: + +`sudo blkid -o list` diff --git a/pages.zh/linux/bluetoothctl.md b/pages.zh/linux/bluetoothctl.md new file mode 100644 index 00000000000000..b7c819850d4937 --- /dev/null +++ b/pages.zh/linux/bluetoothctl.md @@ -0,0 +1,28 @@ +# bluetoothctl + +> 从命令行管理蓝牙设备。 +> 更多信息:. + +- 进入 bluetoothctl 外壳程序: + +`bluetoothctl` + +- 列出设备: + +`bluetoothctl -- devices` + +- 与一个设备配对: + +`bluetoothctl -- pair {{mac 地址}}` + +- 移除一个设备: + +`bluetoothctl -- remove {{mac 地址}}` + +- 连接一个已配对的设备: + +`bluetoothctl -- connect {{mac 地址}}` + +- 断开一个已配对的设备: + +`bluetoothctl -- disconnect {{mac 地址}}` diff --git a/pages.zh/linux/bluetoothd.md b/pages.zh/linux/bluetoothd.md new file mode 100644 index 00000000000000..4f5d0dda4fd663 --- /dev/null +++ b/pages.zh/linux/bluetoothd.md @@ -0,0 +1,24 @@ +# bluetoothd + +> 管理蓝牙设备的守护进程。 +> 更多信息:. + +- 启动守护进程: + +`bluetoothd` + +- 启动守护进程,日志输出到标准输出: + +`bluetoothd --nodetach` + +- 指定一个配置文件启动守护进程(默认是 `/etc/bluetooth/main.conf`): + +`bluetoothd --configfile {{配置文件}}` + +- 启动守护进程并将详细信息输出到标准错误: + +`bluetoothd --debug` + +- 使用来自 bluetoothd 或插件源中特定文件启动守护进程并输出详细信息: + +`bluetoothd --debug={{文件一}}:{{文件二}}:{{文件三}}` diff --git a/pages.zh/linux/bmon.md b/pages.zh/linux/bmon.md new file mode 100644 index 00000000000000..bd98619bcc102e --- /dev/null +++ b/pages.zh/linux/bmon.md @@ -0,0 +1,20 @@ +# bmon + +> 监控带宽并捕获网络相关统计信息。 +> 更多信息:. + +- 显示所有接口的列表: + +`bmon -a` + +- 以每秒位数显示数据传输速率: + +`bmon -b` + +- 设置策略以定义显示哪些网络接口: + +`bmon -p {{interface_1,interface_2,interface_3}}` + +- 设置计算每个计数器速率的间隔(以秒为单位): + +`bmon -R {{2.0}}` diff --git a/pages.zh/linux/boltctl.md b/pages.zh/linux/boltctl.md new file mode 100644 index 00000000000000..93c6f82fc111d4 --- /dev/null +++ b/pages.zh/linux/boltctl.md @@ -0,0 +1,28 @@ +# boltctl + +> 控制雷电(thunderbolt)设备。 +> 更多信息:. + +- 列出已连接并授权的设备: + +`boltctl` + +- 列出已连接的设备,且包含未授权的设备: + +`boltctl list` + +- 临时授权一个设备: + +`boltctl authorize {{设备uuid}}` + +- 授权并记住一个设备: + +`boltctl enroll {{设备uuid}}` + +- 取消一个设备的授权: + +`boltctl forget {{设备uuid}}` + +- 显示一个设备的详细信息: + +`boltctl info {{设备uuid}}` diff --git a/pages.zh/linux/bpftrace.md b/pages.zh/linux/bpftrace.md new file mode 100644 index 00000000000000..411d753c2550be --- /dev/null +++ b/pages.zh/linux/bpftrace.md @@ -0,0 +1,28 @@ +# bpftrace + +> Linux eBPF 的高级跟踪语言。 +> 更多信息:. + +- 显示 bpftrace 版本: + +`bpftrace -V` + +- 列出所有可用的探针: + +`sudo bpftrace -l` + +- 运行单行程序(例如按程序进行系统调用计数): + +`sudo bpftrace -e '{{tracepoint:raw_syscalls:sys_enter { @[comm] = count(); }}}'` + +- 从文件运行程序: + +`sudo bpftrace {{文件}}` + +- 通过 PID 跟踪程序: + +`sudo bpftrace -e '{{tracepoint:raw_syscalls:sys_enter /pid == 123/ { @[comm] = count(); }}}'` + +- 进行试运行并以 eBPF 格式显示输出: + +`sudo bpftrace -d -e '{{单行程序}}'` diff --git a/pages.zh/linux/bpytop.md b/pages.zh/linux/bpytop.md new file mode 100644 index 00000000000000..680d989ad998e0 --- /dev/null +++ b/pages.zh/linux/bpytop.md @@ -0,0 +1,28 @@ +# bpytop + +> 用图形显示有关正在运行的进程的动态实时信息。类似于 `gtop` 和 `htop`. +> 更多信息:. + +- 运行 bpytop: + +`bpytop` + +- 以最小模式启动,无需内存和网络盒: + +`bpytop -m` + +- 显示版本: + +`bpytop -v` + +- 切换最小模式: + +`m` + +- 搜索正在运行的程序或进程: + +`f` + +- 改变设置: + +`M` diff --git a/pages.zh/linux/brctl.md b/pages.zh/linux/brctl.md new file mode 100644 index 00000000000000..b4d7e3f271c5b2 --- /dev/null +++ b/pages.zh/linux/brctl.md @@ -0,0 +1,24 @@ +# brctl + +> 以太网桥管理。 +> 更多信息:. + +- 显示有关当前现有以太网网桥信息的列表: + +`sudo brctl show` + +- 创建新的以太网桥接接口: + +`sudo brctl add {{网桥名}}` + +- 删除一个已存在的以太网桥接接口: + +`sudo brctl del {{网桥名}}` + +- 向现有网桥添加接口: + +`sudo brctl addif {{网桥名}} {{接口名}}` + +- 从现有网桥中删除接口: + +`sudo brctl delif {{网桥名}} {{接口名}}` diff --git a/pages.zh/linux/brightnessctl.md b/pages.zh/linux/brightnessctl.md new file mode 100644 index 00000000000000..c452810f1e6e07 --- /dev/null +++ b/pages.zh/linux/brightnessctl.md @@ -0,0 +1,24 @@ +# brightnessctl + +> GUN/Linux 操作系统上用来读取和控制设备亮度的实用工具。 +> 更多信息:. + +- 列出亮度可变的设备: + +`brightnessctl --list` + +- 打印显示器当前亮度: + +`brightnessctl get` + +- 将显示器背光的亮度设置为指定的百分比: + +`brightnessctl set {{50%}}` + +- 按指定的增量增加亮度: + +`brightnessctl set {{+10%}}` + +- 将亮度降低指定的递减量: + +`brightnessctl set {{10%-}}` diff --git a/pages.zh/linux/bspwm.md b/pages.zh/linux/bspwm.md new file mode 100644 index 00000000000000..70730047f81823 --- /dev/null +++ b/pages.zh/linux/bspwm.md @@ -0,0 +1,8 @@ +# bspwm + +> 这是 `bspc` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr bspc` diff --git a/pages.zh/linux/btrfs-device.md b/pages.zh/linux/btrfs-device.md new file mode 100644 index 00000000000000..93ef9c27a2bc9d --- /dev/null +++ b/pages.zh/linux/btrfs-device.md @@ -0,0 +1,24 @@ +# btrfs device + +> 管理 btrfs 文件系统中的设备。 +> 更多信息:. + +- 将一个或多个设备添加到 btrfs 文件系统中: + +`sudo btrfs device add {{指向设备1的路径}} [{{指向设备2的路径}}] {{指向 btrfs 文件系统的路径}}` + +- 从 btrfs 文件系统中删除设备: + +`sudo btrfs device remove {{指向设备的路径|设备 ID}} [{{...}}]` + +- 显示错误统计: + +`sudo btrfs device stats {{指向 btrfs 文件系统的路径}}` + +- 扫描所有磁盘并将所有检测到的 btrfs 文件系统通知内核: + +`sudo btrfs device scan --all-devices` + +- 显示详细的每个磁盘的空间分配统计信息: + +`sudo btrfs device usage {{指向 btrfs 文件系统的路径}}` diff --git a/pages.zh/linux/btrfs-filesystem.md b/pages.zh/linux/btrfs-filesystem.md new file mode 100644 index 00000000000000..699f86b105c0b5 --- /dev/null +++ b/pages.zh/linux/btrfs-filesystem.md @@ -0,0 +1,28 @@ +# btrfs filesystem + +> 管理 btrfs 文件系统。 +> 更多信息:. + +- 显示文件系统使用情况(可以选择以 root 身份运行以显示详细信息): + +`btrfs filesystem usage {{指向挂载点的路径}}` + +- 显示各个设备的使用情况: + +`sudo btrfs filesystem show {{指向挂载点的路径}}` + +- 对 btrfs 文件系统上的单个文件进行碎片整理(避免在运行数据去重的同时运行): + +`sudo btrfs filesystem defragment -v {{指向文件的路径}}` + +- 递归对目录进行碎片整理(不跨越子卷边界): + +`sudo btrfs filesystem defragment -v -r {{指向目录的路径}}` + +- 强制将未写入的数据块同步到磁盘: + +`sudo btrfs filesystem sync {{指向挂载点的路径}}` + +- 递归总结目录中文件的磁盘使用情况: + +`sudo btrfs filesystem du --summarize {{指向目录的路径}}` diff --git a/pages.zh/linux/btrfs-scrub.md b/pages.zh/linux/btrfs-scrub.md new file mode 100644 index 00000000000000..b510526e0533a3 --- /dev/null +++ b/pages.zh/linux/btrfs-scrub.md @@ -0,0 +1,29 @@ +# btrfs scrub + +> 清理 btrfs 文件系统以验证数据完整性。 +> 建议每月运行一次 scrub. +> 更多信息:. + +- 开始 scrub: + +`sudo btrfs scrub start {{指向挂载点的路径}}` + +- 显示正在进行或上次完成的 scrub 的状态: + +`sudo btrfs scrub status {{指向挂载点的路径}}` + +- 取消正在进行的 scrub: + +`sudo btrfs scrub cancel {{指向挂载点的路径}}` + +- 恢复先前取消的 scrub: + +`sudo btrfs scrub resume {{指向挂载点的路径}}` + +- 开始擦洗,但要等到 scrub 完成后才能退出: + +`sudo btrfs scrub start -B {{指向挂载点的路径}}` + +- 在安静模式下启动 scrub(不打印错误或统计信息): + +`sudo btrfs scrub start -q {{指向挂载点的路径}}` diff --git a/pages.zh/linux/btrfs-subvolume.md b/pages.zh/linux/btrfs-subvolume.md new file mode 100644 index 00000000000000..83ac2fa51320ac --- /dev/null +++ b/pages.zh/linux/btrfs-subvolume.md @@ -0,0 +1,28 @@ +# btrfs subvolume + +> 管理 btrfs 子卷和快照。 +> 更多信息:. + +- 创建一个新的空子卷: + +`sudo btrfs subvolume create {{指向新子卷的路径}}` + +- 列出指定文件系统中的所有子卷和快照: + +`sudo btrfs subvolume list {{指向 btrfs 文件系统的路径}}` + +- 删除一个子卷: + +`sudo btrfs subvolume delete {{指向子卷的路径}}` + +- 创建现有子卷的只读快照: + +`sudo btrfs subvolume snapshot -r {{指向源子卷的路径}} {{指向目标的路径}}` + +- 创建现有子卷的读写快照: + +`sudo btrfs subvolume snapshot {{指向源子卷的路径}} {{指向目标的路径}}` + +- 显示有关子卷的详细信息: + +`sudo btrfs subvolume show {{指向子卷的路径}}` diff --git a/pages.zh/linux/btrfs.md b/pages.zh/linux/btrfs.md new file mode 100644 index 00000000000000..fb9955e1d4427e --- /dev/null +++ b/pages.zh/linux/btrfs.md @@ -0,0 +1,25 @@ +# btrfs + +> 一种基于写时复制(COW)原理的 Linux 文件系统。 +> 此命令也有关于其子命令的文件,例如:`btrfs device`. +> 更多信息:. + +- 创建子卷: + +`sudo btrfs subvolume create {{指向子卷的路径}}` + +- 列出子卷: + +`sudo btrfs subvolume list {{指向挂载点的路径}}` + +- 显示空间使用情况信息: + +`sudo btrfs filesystem df {{指向挂载点的路径}}` + +- 启用配额(quota): + +`sudo btrfs quota enable {{指向子卷的路径}}` + +- 显示配额(quota): + +`sudo btrfs qgroup show {{指向子卷的路径}}` diff --git a/pages.zh/linux/cal.md b/pages.zh/linux/cal.md new file mode 100644 index 00000000000000..cc436d6a9ec5cd --- /dev/null +++ b/pages.zh/linux/cal.md @@ -0,0 +1,24 @@ +# cal + +> 打印日历信息,高亮显示当前日期。 +> 更多信息:. + +- 显示当前月份的日历: + +`cal` + +- 显示上个月、当前月和下个月: + +`cal -3` + +- 使用星期一作为一周的第一天: + +`cal --monday` + +- 显示特定年份的日历(4位数字): + +`cal {{年份}}` + +- 显示特定月份和年份的日历: + +`cal {{月份}} {{年份}}` diff --git a/pages.zh/linux/cc.md b/pages.zh/linux/cc.md new file mode 100644 index 00000000000000..d33f0f56c48e4b --- /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 00000000000000..d22a372c5794e0 --- /dev/null +++ b/pages.zh/linux/cgroups.md @@ -0,0 +1,8 @@ +# cgroups + +> 这是 `cgclassify` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr cgclassify` diff --git a/pages.zh/linux/chage.md b/pages.zh/linux/chage.md new file mode 100644 index 00000000000000..01c4e1fbb52922 --- /dev/null +++ b/pages.zh/linux/chage.md @@ -0,0 +1,24 @@ +# chage + +> 更改用户账户和密码到期信息。 +> 更多信息:. + +- 列出用户的密码信息: + +`chage --list {{用户名}}` + +- 启用密码在 10 天内过期: + +`sudo chage --maxdays {{10}} {{用户名}}` + +- 关闭密码过期: + +`sudo chage --maxdays {{-1}} {{用户名}}` + +- 设置账户到期日期: + +`sudo chage --expiredate {{YYYY-MM-DD}} {{用户名}}` + +- 强制用户在下次登录时更改密码: + +`sudo chage --lastday {{0}} {{用户名}}` diff --git a/pages.zh/linux/cp.md b/pages.zh/linux/cp.md new file mode 100644 index 00000000000000..1eaada7da7546d --- /dev/null +++ b/pages.zh/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> 复制文件和目录。 +> 更多信息:. + +- 复制一个文件到另外一个地方: + +`cp {{文件的原始路径}} {{文件的目标路径}}` + +- 复制一个文件到另外一个目录, 保持文件名不变: + +`cp {{文件的原始路径}} {{目标目录路径}}` + +- 递归的复制一个目录内的内容到另外一个地方(如果目标目录存在,目录被复制到目标目标内部): + +`cp -r {{目录的原始路径}} {{目标目录路径}}` + +- 以详细模式递归的复制一个目录 (当文件被复制的时候显示): + +`cp -vr {{文件的原始路径}} {{目标目录路径}}` + +- 以交互模式复制文本文件到另外一个地方(在覆盖之前提示用户): + +`cp -i {{*.txt}} {{目标目录路径}}` + +- 跟踪软连接复制: + +`cp -L {{链接}} {{目标目录路径}}` + +- 使用原始文件的全路径,在复制的时候目录不存在则离开创建: + +`cp --parents {{文件的原始路径}} {{文件的目标路径}}` diff --git a/pages.zh/linux/cpuid.md b/pages.zh/linux/cpuid.md index 5165b67da1c7cf..0aee761776751c 100644 --- a/pages.zh/linux/cpuid.md +++ b/pages.zh/linux/cpuid.md @@ -1,15 +1,16 @@ # cpuid -> 显示有关所有 CPU 的详细信息. +> 显示有关所有 CPU 的详细信息。 +> 更多信息:. -- 显示所有 CPU 的信息: +- 显示所有 CPU 的信息: `cpuid` -- 仅显示当前 CPU 的信息: +- 仅显示当前 CPU 的信息: `cpuid -1` -- 显示原始十六进制信息,不进行解码: +- 显示原始十六进制信息,不进行解码: `cpuid -r` diff --git a/pages.zh/linux/debootstrap.md b/pages.zh/linux/debootstrap.md new file mode 100644 index 00000000000000..157b1c5bbe9909 --- /dev/null +++ b/pages.zh/linux/debootstrap.md @@ -0,0 +1,20 @@ +# debootstrap + +> 创建一个基本的 `Debian` 系统。 +> 更多信息:. + +- 在 `debian-root` 目录中创建一个 `Debian` 稳定分支系统: + +`sudo debootstrap stable {{path/to/debian-root/}} http://deb.debian.org/debian` + +- 使用本地镜像在 `focal-root` 目录中创建一个 `Ubuntu 20.04` 系统: + +`sudo debootstrap focal {{path/to/focal-root/}} {{file:///path/to/mirror/}}` + +- 切换到可引导系统: + +`sudo chroot {{path/to/root}}` + +- 列出可用的版本: + +`ls /usr/share/debootstrap/scripts/` diff --git a/pages.zh/linux/debuild.md b/pages.zh/linux/debuild.md new file mode 100644 index 00000000000000..fa53aa52835ce2 --- /dev/null +++ b/pages.zh/linux/debuild.md @@ -0,0 +1,16 @@ +# debuild + +> 从源代码构建 `Debian` 软件包的工具。 +> 更多信息:. + +- 在当前目录中生成软件包: + +`debuild` + +- 仅构建二进制包: + +`debuild -b` + +- 生成软件包后,不运行 `lintian`(检查常见打包错误): + +`debuild --no-lintian` diff --git a/pages.zh/linux/diff3.md b/pages.zh/linux/diff3.md new file mode 100644 index 00000000000000..cd5287992e33c5 --- /dev/null +++ b/pages.zh/linux/diff3.md @@ -0,0 +1,12 @@ +# diff3 + +> 逐行比较三个文件。 +> 更多信息:. + +- 比较文件: + +`diff3 {{文件1}} {{文件2}} {{文件3}}` + +- 展示所有的变化,同时列出冲突: + +`diff3 --show-all {{文件1}} {{文件2}} {{文件3}}` diff --git a/pages.zh/linux/dmenu.md b/pages.zh/linux/dmenu.md new file mode 100644 index 00000000000000..8bf30fc85ad9f9 --- /dev/null +++ b/pages.zh/linux/dmenu.md @@ -0,0 +1,25 @@ +# dmenu + +> 动态菜单。 +> 根据文本输入创建菜单,其中每一项都在新行中。 +> 更多信息:. + +- 显示 `ls` 命令输出的菜单: + +`{{ls}} | dmenu` + +- 显示包含自定义项目的菜单,并用新行(`\n`)分隔: + +`echo -e "{{red}}\n{{green}}\n{{blue}}" | dmenu` + +- 让用户在多个项目之间进行选择,然后将所选项目保存到文件中: + +`echo -e "{{red}}\n{{green}}\n{{blue}}" | dmenu > {{color.txt}}` + +- 在特定的监视器上启动 `dmenu`: + +`ls | dmenu -m {{1}}` + +- 在屏幕底部显示 `dmenu`: + +`ls | dmenu -b` diff --git a/pages.zh/linux/dmesg.md b/pages.zh/linux/dmesg.md new file mode 100644 index 00000000000000..c36057bc12812b --- /dev/null +++ b/pages.zh/linux/dmesg.md @@ -0,0 +1,36 @@ +# dmesg + +> 显示或控制内核环形缓冲区。 +> 更多信息:. + +- 显示来自内核环形缓冲区的所有消息: + +`dmesg` + +- 只显示严重错误级别的消息: + +`dmesg --level err` + +- 等待新消息。仅在具有可读性的系统上支持此功能,类似于 `tail -f`(从内核 3.5.0 版本开始): + +`dmesg -w` + +- 显示此系统上有多少物理内存可用: + +`dmesg | grep -i memory` + +- 以分页方式显示内核缓冲区的所有消息: + +`dmesg | less` + +- 打印人类可读的时间戳(从内核 3.5.0 版本开始): + +`dmesg -T` + +- 启用人类可读的输出: + +`dmesg -H` + +- 着色输出: + +`dmesg -L` diff --git a/pages.zh/linux/dos2unix.md b/pages.zh/linux/dos2unix.md index e167c8e6b9bfda..edcaf89a9d3ec3 100644 --- a/pages.zh/linux/dos2unix.md +++ b/pages.zh/linux/dos2unix.md @@ -1,12 +1,13 @@ # dos2unix -> 将 DOS 样式的行尾更改为 Unix 样式. -> 用 CR 替换 CRLF. +> 将 DOS 样式的行尾更改为 Unix 样式。 +> 用 LF 替换 CRLF. +> 更多信息:. -- 更改文件的行尾: +- 更改文件的行尾: `dos2unix {{文件名}}` -- 使用 Unix 样式的行尾创建副本: +- 使用 Unix 样式的行尾创建副本: `dos2unix -n {{文件名}} {{文件名}}` diff --git a/pages.zh/linux/fc-cache.md b/pages.zh/linux/fc-cache.md deleted file mode 100644 index 9b8644a96e7ea4..00000000000000 --- a/pages.zh/linux/fc-cache.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc-cache - -> 扫描字体目录,以便建立字体缓存文件。 - -- 生成字体缓存文件: - -`fc-cache` - -- 强制重建所有字体缓存文件,而不检查缓存是否为最新版本: - -`fc-cache -f` - -- 删除字体缓存文件,然后生成新的字体缓存文件: - -`fc-cache -r` diff --git a/pages.zh/linux/fc-list.md b/pages.zh/linux/fc-list.md deleted file mode 100644 index 1aca9f45a48bab..00000000000000 --- a/pages.zh/linux/fc-list.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc-list - -> 列出系统上安装的可用字体。 - -- 返回系统中已安装字体的列表: - -`fc-list` - -- 返回具有给定名称的已安装字体的列表: - -`fc-list | grep '{{DejaVu Serif}}'` - -- 返回系统中已安装字体的数量: - -`fc-list | wc -l` diff --git a/pages.zh/linux/flameshot.md b/pages.zh/linux/flameshot.md index de01f0de0e2fbf..976b17297c0cfb 100644 --- a/pages.zh/linux/flameshot.md +++ b/pages.zh/linux/flameshot.md @@ -1,24 +1,37 @@ # flameshot -> 带有gui界面的Screenshot工具,支持基本的图像编辑,例如文本,形状,颜色和imgur. -> 更多信息: . +> 带有 GUI 界面的 Screenshot 工具。 +> 支持基本的图像编辑,例如文本,形状,颜色和 imgur。 +> 更多信息:. -- 在GUI模式下启动Flameshot: +- 全屏截图: -`flameshot launcher` +`flameshot full` -- 通过单击并拖动来截取屏幕截图: +- 交互式截图: `flameshot gui` -- 全屏截图: +- 截图并保存到特定的路径: -`flameshot full` +`flameshot gui --path {{路径/到/目录}}` + +- 简单模式下交互式截图: + +`flameshot launcher` + +- 指定屏幕截图: + +`flameshot screen --number {{2}}` + +- 截图并打印到标准输出: + +`flameshot gui --raw` -- 将保存屏幕快照的路径设置为: +- 截图并复制到剪切板: -`flameshot full --path {{path/to/directory}}` +`flameshot gui --clipboard` -- 将屏幕截图延迟N毫秒,然后输出到剪贴板: +- 延迟指定毫秒时间截图: -`flameshot full --delay {{2000}} --clipboard` +`flameshot full --delay {{5000}}` diff --git a/pages.zh/linux/flatpak.md b/pages.zh/linux/flatpak.md index 596851bdca4527..41ffa6f3de0f6b 100644 --- a/pages.zh/linux/flatpak.md +++ b/pages.zh/linux/flatpak.md @@ -1,6 +1,7 @@ # flatpak > 构建、安装和运行 Flatpak 应用和运行时。 +> 更多信息:. - 运行已安装应用: @@ -25,3 +26,11 @@ - 列出所有已配置的远程源: `flatpak remote-list` + +- 移除一个已安装的应用程序: + +`flatpak remove {{应用名}}` + +- 显示一个已安装的应用程序的信息: + +`flatpak info {{应用名}}` diff --git a/pages.zh/linux/grub-install.md b/pages.zh/linux/grub-install.md new file mode 100644 index 00000000000000..8f685f009b6b15 --- /dev/null +++ b/pages.zh/linux/grub-install.md @@ -0,0 +1,16 @@ +# grub-install + +> 安装 GRUB 到设备。 +> 更多信息:. + +- 安装 GRUB 到基于 BIOS 的系统: + +`grub-install --target={{i386-pc}} {{/dev/sdX}}` + +- 安装 GRUB 到基于 UEFI 的系统: + +`grub-install --target={{x86_64-efi}} --efi-directory={{path/to/efi_directory}} --bootloader-id={{GRUB}}` + +- 安装预置指定模块的 GRUB: + +`grub-install --target={{x86_64-efi}} --efi-directory={{path/to/efi_directory}} --modules="{{part_gpt part_msdos}}"` diff --git a/pages.zh/linux/grub-mkconfig.md b/pages.zh/linux/grub-mkconfig.md new file mode 100644 index 00000000000000..2e4f9fde1d3f9a --- /dev/null +++ b/pages.zh/linux/grub-mkconfig.md @@ -0,0 +1,16 @@ +# grub-mkconfig + +> 生成GRUB配置文件。 +> 更多信息:. + +- 模拟运行并打印配置到标准输出: + +`sudo grub-mkconfig` + +- 生成配置文件: + +`sudo grub-mkconfig --output={{/boot/grub/grub.cfg}}` + +- 打印帮助页面: + +`grub-mkconfig --help` diff --git a/pages.zh/linux/i3.md b/pages.zh/linux/i3.md index f3a1a4e87069f8..ea04aae143a98d 100644 --- a/pages.zh/linux/i3.md +++ b/pages.zh/linux/i3.md @@ -1,7 +1,7 @@ # i3 > 一款动态平铺窗口管理器。 -> 更多信息:https://i3wm.org/docs/userguide.html>. +> 更多信息:. - 启动 i3(注意在此命令运行前,务必关闭其它先前存在的窗口管理器): diff --git a/pages.zh/linux/ip-route-list.md b/pages.zh/linux/ip-route-list.md new file mode 100644 index 00000000000000..930ed6d8bd7143 --- /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/iptables.md b/pages.zh/linux/iptables.md index d164e4404bb42c..a60440ce210548 100644 --- a/pages.zh/linux/iptables.md +++ b/pages.zh/linux/iptables.md @@ -1,7 +1,7 @@ # iptables > 可用于配置 Linux 内核防火墙提供的过滤表、规则链和规则的程序。 -> 更多信息: . +> 更多信息:. - 查看过滤表的规则链、规则以及数据包/字节计数器: diff --git a/pages.zh/linux/konsole.md b/pages.zh/linux/konsole.md index 9716c7b53d3ff7..7646142971491d 100644 --- a/pages.zh/linux/konsole.md +++ b/pages.zh/linux/konsole.md @@ -1,24 +1,24 @@ # konsole -> Konsole: KDE 终端模拟器. -> 更多信息: . +> Konsole: KDE 终端模拟器。 +> 更多信息:. -- 在特定目录中打开一个新的 Konsole: +- 在特定目录中打开一个新的 Konsole: `konsole --workdir {{path/to/directory}}` -- 运行特定命令,退出窗口后不要关闭窗口: +- 运行特定命令,退出窗口后不要关闭窗口: `konsole --noclose -e {{命令}}` -- 打开新标签页: +- 打开新标签页: `konsole --new-tab` -- 在后台打开 Konsole 并在按下 Ctrl+Shift+F12 (默认) 时显示在最前面: +- 在后台打开 Konsole 并在按下 Ctrl+Shift+F12(默认)时显示在最前面: `konsole --background-mode` -- 使用紧急备冗配置文件打开 Konsole: +- 使用紧急备冗配置文件打开 Konsole: `konsole --fallback-profile` diff --git a/pages.zh/linux/line.md b/pages.zh/linux/line.md new file mode 100644 index 00000000000000..a9ee295c01ccb1 --- /dev/null +++ b/pages.zh/linux/line.md @@ -0,0 +1,8 @@ +# line + +> 读取单行输入。 +> 更多信息:. + +- 读取输入: + +`line` diff --git a/pages.zh/linux/logsave.md b/pages.zh/linux/logsave.md index d0071e1935c699..46dc2e83b38cde 100644 --- a/pages.zh/linux/logsave.md +++ b/pages.zh/linux/logsave.md @@ -1,20 +1,20 @@ # logsave -> 将一个命令的输出保存在日志文件中. -> 更多信息: . +> 将一个命令的输出保存在日志文件中。 +> 更多信息:. -- 使用指定的参数执行命令并将其输出保存到日志文件中: +- 使用指定的参数执行命令并将其输出保存到日志文件中: `logsave {{path/to/logfile}} {{command}}` -- 从标准输入中获取输入并将其保存在日志文件中: +- 从标准输入中获取输入并将其保存在日志文件中: `logsave {{logfile}} -` -- 将输出追加到日志文件,而不是替换其当前内容: +- 将输出追加到日志文件,而不是替换其当前内容: `logsave -a {{logfile}} {{command}}` -- 显示详细输出: +- 显示详细输出: `logsave -v {{logfile}} {{command}}` diff --git a/pages.zh/linux/lsattr.md b/pages.zh/linux/lsattr.md new file mode 100644 index 00000000000000..4d18e10f0277e1 --- /dev/null +++ b/pages.zh/linux/lsattr.md @@ -0,0 +1,24 @@ +# lsattr + +> 列出 Linux 系统下的文件属性。 +> 更多信息:. + +- 显示当前目录下文件的属性: + +`lsattr` + +- 列出指定路径下的文件属性: + +`lsattr {{path}}` + +- 递归列出当前目录及其子目录中所有文件属性: + +`lsattr -R` + +- 显示当前目录下所有文件的属性,包括隐藏文件: + +`lsattr -a` + +- 显示当前目录下的目录属性: + +`lsattr -d` diff --git a/pages.zh/linux/lvs.md b/pages.zh/linux/lvs.md new file mode 100644 index 00000000000000..8c522f99e76e25 --- /dev/null +++ b/pages.zh/linux/lvs.md @@ -0,0 +1,33 @@ +# lvs + +> 显示逻辑卷信息。 +> 另见:`lvm`. +> 更多信息:. + +- 显示逻辑卷信息: + +`lvs` + +- 显示所有逻辑卷: + +`lvs -a` + +- 改变默认显示以显示更多细节: + +`lvs -v` + +- 只显示特定字段: + +`lvs -o {{域名 1}},{{域名 2}}` + +- 将字段附加到显示: + +`lvs -o +{{域名}}` + +- 抑制标题行: + +`lvs --noheadings` + +- 使用特殊分隔符分隔特定字段: + +`lvs --separator {{=}}` diff --git a/pages.zh/linux/mac2unix.md b/pages.zh/linux/mac2unix.md index 74a7d1b82bac0e..986c8922624a23 100644 --- a/pages.zh/linux/mac2unix.md +++ b/pages.zh/linux/mac2unix.md @@ -1,12 +1,13 @@ # mac2unix -> 将 macOS 样式的行尾更改为 Unix 样式. -> 用 CR 替换 LF. +> 将 macOS 样式的行尾更改为 Unix 样式。 +> 用 LF 替换 CR. +> 更多信息:. -- 更改文件的行尾: +- 更改文件的行尾: `mac2unix {{文件名}}` -- 使用 Unix 样式的行尾创建副本: +- 使用 Unix 样式的行尾创建副本: `mac2unix -n {{文件名}} {{新文件名}}` diff --git a/pages.zh/linux/megadl.md b/pages.zh/linux/megadl.md new file mode 100644 index 00000000000000..bc764ae2e5ffcd --- /dev/null +++ b/pages.zh/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> 这是 `megatools-dl` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr megatools-dl` diff --git a/pages.zh/linux/ncal.md b/pages.zh/linux/ncal.md new file mode 100644 index 00000000000000..3595e41548f645 --- /dev/null +++ b/pages.zh/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> 这是 `cal` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr cal` diff --git a/pages.zh/linux/openvpn3.md b/pages.zh/linux/openvpn3.md new file mode 100644 index 00000000000000..53b05269b1833d --- /dev/null +++ b/pages.zh/linux/openvpn3.md @@ -0,0 +1,24 @@ +# openvpn3 + +> OpenVPN 3 Linux 客户端。 +> 更多信息:. + +- 打开一个新的 VPN 会话: + +`openvpn3 session-start --config {{路径/到/config.conf}}` + +- 列出已建立的会话: + +`openvpn3 sessions-list` + +- 断开当前建立的以给定配置开始的会话: + +`openvpn3 session-manage --config {{路径/到/config.conf}} --disconnect` + +- 导入 VPN 配置: + +`openvpn3 config-import --config {{路径/到/config.conf}}` + +- 列出导入的配置: + +`openvpn3 configs-list` diff --git a/pages.zh/linux/pacman.md b/pages.zh/linux/pacman.md index e80ceefb57c82e..103a5bfeaddd81 100644 --- a/pages.zh/linux/pacman.md +++ b/pages.zh/linux/pacman.md @@ -1,19 +1,19 @@ # pacman > Arch Linux 的软件包管理器工具。 -> 更多信息: . +> 更多信息:. - 同步并更新所有软件包: -`pacman -Syu` +`sudo pacman -Syu` - 安装一个新的软件包: -`pacman -S {{软件包}}` +`sudo pacman -S {{软件包}}` - 删除一个软件包及其依赖: -`pacman -Rs {{软件包}}` +`sudo pacman -Rs {{软件包}}` - 在软件包数据库中搜索正则表达式或关键字: @@ -33,4 +33,4 @@ - 清空软件包缓存以释放空间: -`pacman -Scc` +`sudo pacman -Scc` diff --git a/pages.zh/linux/poweroff.md b/pages.zh/linux/poweroff.md index c9fae1ff5bdba5..72ed7b764a5c1d 100644 --- a/pages.zh/linux/poweroff.md +++ b/pages.zh/linux/poweroff.md @@ -1,7 +1,8 @@ # poweroff -> 关闭系统. +> 关闭系统。 +> 更多信息:. -- 关闭系统电源: +- 关闭系统电源: `sudo poweroff` diff --git a/pages.zh/linux/readelf.md b/pages.zh/linux/readelf.md new file mode 100644 index 00000000000000..ec13133dca5923 --- /dev/null +++ b/pages.zh/linux/readelf.md @@ -0,0 +1,20 @@ +# readelf + +> 显示 EFI 文件信息。 +> 更多信息:. + +- 显示 ELF 所有文件信息: + +`readelf -all {{path/to/binary}}` + +- 显示 ELF 文件的所有头信息: + +`readelf --headers {{path/to/binary}}` + +- 如果存在符号表项,则显示 ELF 文件内的符号表项: + +`readelf --symbols {{path/to/binary}}` + +- 显示 ELF 文件头信息: + +`readelf --file-header {{path/to/binary}}` diff --git a/pages.zh/linux/reboot.md b/pages.zh/linux/reboot.md index 9e2932e313a8a1..96e686027f360f 100644 --- a/pages.zh/linux/reboot.md +++ b/pages.zh/linux/reboot.md @@ -1,11 +1,12 @@ # reboot -> 重新启动系统. +> 重新启动系统。 +> 更多信息:. -- 立即重新启动: +- 立即重新启动: `reboot` -- 立即重启,而无需正常关闭: +- 立即重启,而无需正常关闭: `reboot -f` diff --git a/pages.zh/linux/sacctmgr.md b/pages.zh/linux/sacctmgr.md new file mode 100644 index 00000000000000..1c05aaa293a82f --- /dev/null +++ b/pages.zh/linux/sacctmgr.md @@ -0,0 +1,20 @@ +# sacctmgr + +> 查看、配置、管理 Slurm 账户。 +> 更多信息:. + +- 显示现有配置: + +`sacctmgr show configuration` + +- 向 Slurm 数据库添加集群: + +`sacctmgr add cluster {{集群名}}` + +- 向 Slurm 数据库添加账户: + +`sacctmgr add account {{账户名}} cluster={{账户所在集群}}` + +- 以指定格式显示用户、账户资源关联、集群、账户的详细信息: + +`sacctmgr show {{user|association|cluster|account}} format="Accout%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 00000000000000..8a8e7066558629 --- /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/ul.md b/pages.zh/linux/ul.md new file mode 100644 index 00000000000000..97a9bba70befae --- /dev/null +++ b/pages.zh/linux/ul.md @@ -0,0 +1,13 @@ +# ul + +> 执行文本的下划线。 +> 给定字符串中的每个字符必须单独加下划线。 +> 更多信息:. + +- 在适用的情况下用下划线显示文件的内容: + +`ul {{文件路径}}` + +- 用由破折号组成的下划线显示文件的内容 `-`: + +`ul -i {{文件路径}}` diff --git a/pages.zh/linux/unix2dos.md b/pages.zh/linux/unix2dos.md index 42691692ae811a..241767fbcc2458 100644 --- a/pages.zh/linux/unix2dos.md +++ b/pages.zh/linux/unix2dos.md @@ -1,12 +1,13 @@ # unix2dos -> 将 Unix 样式的行尾更改为 DOS 样式. -> 用 CRLF 替换 CR. +> 将 Unix 样式的行尾更改为 DOS 样式。 +> 用 CRLF 替换 LF. +> 更多信息:. -- 更改文件的行尾: +- 更改文件的行尾: `unix2dos {{文件名}}` -- 使用 DOS 样式的行尾创建副本: +- 使用 DOS 样式的行尾创建副本: `unix2dos -n {{文件名}} {{新文件名}}` diff --git a/pages.zh/linux/unix2mac.md b/pages.zh/linux/unix2mac.md index c52fee02556b8d..1b2613a25ed505 100644 --- a/pages.zh/linux/unix2mac.md +++ b/pages.zh/linux/unix2mac.md @@ -1,12 +1,13 @@ # unix2mac -> 将 Unix 样式的行尾更改为 macOS 样式. -> 用 LF 替换 CR. +> 将 Unix 样式的行尾更改为 macOS 样式。 +> 用 CR 替换 LF. +> 更多信息:. -- 更改文件的行尾: +- 更改文件的行尾: `unix2mac {{文件名}}` -- 使用 macOS 样式的行尾创建副本: +- 使用 macOS 样式的行尾创建副本: `unix2mac -n {{文件名}} {{新文件名}}` diff --git a/pages.zh/linux/w.md b/pages.zh/linux/w.md new file mode 100644 index 00000000000000..358b999d974da0 --- /dev/null +++ b/pages.zh/linux/w.md @@ -0,0 +1,20 @@ +# w + +> 显示登录者及其进程。 +> 更多信息:. + +- 显示当前登录的所有用户的信息: + +`w` + +- 显示有关特定用户的信息: + +`w {{用户}}` + +- 显示信息而不包括标题: + +`w --no-header` + +- 显示信息不包括登录、JCPU 和 PCPU 列: + +`w --short` diff --git a/pages.zh/linux/xcowsay.md b/pages.zh/linux/xcowsay.md new file mode 100644 index 00000000000000..cc81ea7a20b567 --- /dev/null +++ b/pages.zh/linux/xcowsay.md @@ -0,0 +1,29 @@ +# xcowsay + +> 在您的 Linux 桌面上显示一头可爱的牛和指定的消息。 +> 牛的显示时间是固定的或则是根据文本大小计算得出的。 点击牛即马上关闭。 +> 更多信息:. + +- 显示一头说 “hello, world” 的牛: + +`xcowsay "{{hello, world}}"` + +- 显示一头牛和消息,该消息是另一个命令的输出: + +`ls | xcowsay` + +- 显示一头有指定 X 和 Y 坐标的牛: + +`xcowsay --at={{X}},{{Y}}` + +- 显示一头不同大小的牛: + +`xcowsay --cow-size={{small|med|large}}` + +- 显示思想泡泡而不是说话泡泡: + +`xcowsay --think` + +- 用指定的照片来代替默认的牛: + +`xcowsay --image={{路径/到/文件}}` diff --git a/pages.zh/linux/yaourt.md b/pages.zh/linux/yaourt.md index 863d97de505527..1b9c105e6ffbf7 100644 --- a/pages.zh/linux/yaourt.md +++ b/pages.zh/linux/yaourt.md @@ -1,6 +1,7 @@ # yaourt > Arch Linux 中用于从 Arch User Repository 中构建软件包的工具。 +> 更多信息:. - 同步并更新所有软件包(包括 AUR): @@ -18,6 +19,6 @@ `yaourt -Ss {{软件包}}` -- 列出已安装的软件包、版本和仓库(AUR 软件包将被列在 'local' 仓库下): +- 列出已安装的软件包、版本和仓库(AUR 软件包将被列在 'local' 仓库下): `yaourt -Q` diff --git a/pages.zh/linux/yay.md b/pages.zh/linux/yay.md index 6bd6ce4f312c06..1b04287e80cc1f 100644 --- a/pages.zh/linux/yay.md +++ b/pages.zh/linux/yay.md @@ -2,7 +2,7 @@ > Yet Another Yogurt: 一个用于 Arch Linux 的工具,用于从 Arch User Repository 中构建和安装软件包。 > 另见 `pacman`。 -> 更多信息: . +> 更多信息:. - 从仓库和 AUR 中交互式搜索和安装软件包: @@ -16,7 +16,7 @@ `yay -Sua` -- 从仓库和 AUR 中安装一个新的软件包。 +- 从仓库和 AUR 中安装一个新的软件包: `yay -S {{软件包}}` diff --git a/pages.zh/linux/zypper.md b/pages.zh/linux/zypper.md index d8cb93beaf8d72..aab167a9d4c8f2 100644 --- a/pages.zh/linux/zypper.md +++ b/pages.zh/linux/zypper.md @@ -1,6 +1,7 @@ # zypper > SUSE & openSUSE 的软件包管理工具。 +> 更多信息:. - 同步可用的软件包和版本列表: diff --git a/pages.zh/osx/aa.md b/pages.zh/osx/aa.md new file mode 100644 index 00000000000000..dee2f422315ad6 --- /dev/null +++ b/pages.zh/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> 这是 `yaa` 命令的一个别名。 + +- 原命令的文档在: + +`tldr yaa` diff --git a/pages.zh/osx/afinfo.md b/pages.zh/osx/afinfo.md index c8282430c138d4..215c780b71ec5f 100644 --- a/pages.zh/osx/afinfo.md +++ b/pages.zh/osx/afinfo.md @@ -1,28 +1,29 @@ # afinfo -> 显示音频文件元数据 (Metadata) 详细信息 (OS X). -> OS X 自带命令. +> 显示音频文件元数据(Metadata)详细信息(OS X)。 +> OS X 自带命令。 +> 更多信息:. -- 显示给定音频文件的详细信息: +- 显示给定音频文件的详细信息: `afinfo {{目标 / 路径 / 文件}}` -- 显示简化的音频文件信息 (单行): +- 显示简化的音频文件信息(单行): `afinfo -b {{目标 / 路径 / 文件}}` -- 显示音频文件的元数据信息以及其 InfoDictionary 词典: +- 显示音频文件的元数据信息以及其 InfoDictionary 词典: `afinfo -i {{目标 / 路径 / 文件}}` -- 以 xml 格式显示音频文件信息: +- 以 xml 格式显示音频文件信息: `afinfo -x {{目标 / 路径 / 文件}}` -- 显示警告信息 (如存在): +- 显示警告信息(如存在): `afinfo --warnings {{目标 / 路径 / 文件}}` -- 显示完整用法帮助: +- 显示完整用法帮助: `afinfo -h` diff --git a/pages.zh/osx/airport.md b/pages.zh/osx/airport.md index 80b7bbd8ba43fc..e6aa408962b6b6 100644 --- a/pages.zh/osx/airport.md +++ b/pages.zh/osx/airport.md @@ -1,19 +1,20 @@ # airport -> 无线网络配置工具. +> 无线网络配置工具。 +> 更多信息:. -- 显示当前的无线状态信息: +- 显示当前的无线状态信息: `airport -I` -- 在通道 1 上监察(嗅探)无线流量: +- 在通道 1 上监察(嗅探)无线流量: `airport sniff {{1}}` -- 扫描可用的无线网络: +- 扫描可用的无线网络: `airport -s` -- 与当前的 Airport 网络脱离连接: +- 与当前的 Airport 网络脱离连接: `sudo airport -z` diff --git a/pages.zh/osx/apachectl.md b/pages.zh/osx/apachectl.md index e3460c837254cd..010c2a655b9f2b 100644 --- a/pages.zh/osx/apachectl.md +++ b/pages.zh/osx/apachectl.md @@ -1,15 +1,16 @@ # apachectl -> 用于 macOS 的 Apache HTTP Server 控制接口(工具). +> 用于 macOS 的 Apache HTTP Server 控制接口(工具)。 +> 更多信息:. -- 启动 org.apache.httpd 服务: +- 启动 org.apache.httpd 服务: `apachectl start` -- 停止已启动的服务: +- 停止已启动的服务: `apachectl stop` -- 重新启动服务: +- 重新启动服务: `apachectl restart` diff --git a/pages.zh/osx/arch.md b/pages.zh/osx/arch.md new file mode 100644 index 00000000000000..41322e54405243 --- /dev/null +++ b/pages.zh/osx/arch.md @@ -0,0 +1,13 @@ +# arch + +> 显示系统架构的名称,或者在不同的架构下运行命令。 +> 另见 `uname`. +> 更多信息:. + +- 显示系统的架构: + +`arch` + +- 使用 x86_64 来运行一个命令: + +`arch -x86_64 {{命令}}` diff --git a/pages.zh/osx/archey.md b/pages.zh/osx/archey.md index ab41454e1926c6..a7ec30c715f169 100644 --- a/pages.zh/osx/archey.md +++ b/pages.zh/osx/archey.md @@ -1,19 +1,20 @@ # archey -> 漂亮地显示简单系统信息工具. +> 漂亮地显示简单系统信息工具。 +> 更多信息:. -- 显示系统信息(彩色的): +- 显示系统信息(彩色的): `archey` -- 显示系统信息(单色的): +- 显示系统信息(单色的): `archey --nocolor` -- 显示系统信息,使用 MacPorts(命令行软件安装管理工具 port) 来替代 Homebrew(另一种更常用的 mac 命令行软件安装管理工具): +- 显示系统信息,使用 MacPorts(命令行软件安装管理工具 port)来替代 Homebrew(另一种更常用的 mac 命令行软件安装管理工具): `archey --macports` -- 显示系统信息,但不进行 IP 地址获取和验证: +- 显示系统信息,但不进行 IP 地址获取和验证: `archey --offline` diff --git a/pages.zh/osx/as.md b/pages.zh/osx/as.md index 51a4b73da41eed..e100547e28f6b5 100644 --- a/pages.zh/osx/as.md +++ b/pages.zh/osx/as.md @@ -1,20 +1,21 @@ # as -> 便携式 GNU 汇编程序. -> 主要用于汇编 `gcc` 的输出以供 `ld` 使用 +> 便携式 GNU 汇编程序。 +> 主要用于汇编 `gcc` 的输出以供 `ld` 使用。 +> 更多信息:. -- 汇编文件,将输出写入 a.out: +- 汇编文件,将输出写入 a.out: `as {{文件.s}}` -- 将输出汇编到给定文件: +- 将输出汇编到给定文件: `as {{文件.s}} -o {{输出.o}}` -- 通过跳过空白和注释预处理来更快地生成输出.(应该只用于受信任的编译器): +- 通过跳过空白和注释预处理来更快地生成输出.(应该只用于受信任的编译器): `as -f {{文件.s}}` -- 在目录列表中包含一个给定路径,以搜索 .include 指令中指定的文件: +- 在目录列表中包含一个给定路径,以搜索 .include 指令中指定的文件: `as -I {{目标文件夹}} {{文件.s}}` diff --git a/pages.zh/osx/asr.md b/pages.zh/osx/asr.md index 692a0c47a7b3e9..6c0513fa545463 100644 --- a/pages.zh/osx/asr.md +++ b/pages.zh/osx/asr.md @@ -1,20 +1,21 @@ # asr -> 将磁盘映像还原(复制)到卷上. -> 命令名称是 Apple Software Restore 的缩写. +> 将磁盘映像还原(复制)到卷上。 +> 命令名称是 Apple Software Restore 的缩写。 +> 更多信息:. -- 将磁盘映像复制到目标卷: +- 将磁盘映像复制到目标卷: `sudo asr restore --source {{映像名}}.dmg --target {{卷路径}}` -- 在复制之前擦除目标卷: +- 在复制之前擦除目标卷: `sudo asr restore --source {{映像名}}.dmg --target {{卷路径}} --erase` -- 恢复后跳过验证步骤: +- 恢复后跳过验证步骤: `sudo asr restore --source {{映像名}}.dmg --target {{卷路径}} --noverify` -- 不使用中间磁盘映像直接复制卷中的数据: +- 不使用中间磁盘映像直接复制卷中的数据: `sudo asr restore --source {{卷路径}} --target {{复制卷路径}}` diff --git a/pages.zh/osx/base64.md b/pages.zh/osx/base64.md index 9b017d2c6e8d54..76a6ec03b36362 100644 --- a/pages.zh/osx/base64.md +++ b/pages.zh/osx/base64.md @@ -1,19 +1,20 @@ # base64 -> 使用 Base64 来进行编码和解码. +> 使用 Base64 来进行编码和解码。 +> 更多信息:. -- 编码目标文件: +- 编码目标文件: `base64 --input={{目标文件}}` -- 解码目标文件: +- 解码目标文件: `base64 --decode --input={{base64 编码文件}}` -- 通过标准输入管道进行解码: +- 通过标准输入管道进行解码: `echo -n {{目标字符串}} | base64` -- 解码标准输入管道内容: +- 解码标准输入管道内容: `echo -n {{base64 字符串}} | base64 --decode` diff --git a/pages.zh/osx/brew-cask.md b/pages.zh/osx/brew-cask.md deleted file mode 100644 index 55d2aebfc46836..00000000000000 --- a/pages.zh/osx/brew-cask.md +++ /dev/null @@ -1,35 +0,0 @@ -# brew cask - -> macOS 上的应用程序包管理工具. - -- 模糊搜索可用命令行工具和软件包: - -`brew search {{软件名}}` - -- 安装一个软件: - -`brew cask install {{软件名}}` - -- 列出全部已安装软件: - -`brew cask list` - -- 列出全部已安装的软件中,可以升级的: - -`brew cask outdated` - -- 将一个已安装的软件升级到最新的版本: - -`brew cask upgrade {{软件名}}` - -- 删除一个软件(仅通过 brew cask install 方式安装的): - -`brew cask uninstall {{软件名}}` - -- 卸载一个软件并删除相关的设置和文件: - -`brew cask zap {{软件名}}` - -- 显示指定软件的相关信息: - -`brew cask info {{软件名}}` diff --git a/pages.zh/osx/brew-mas.md b/pages.zh/osx/brew-mas.md deleted file mode 100644 index b339eca311d1e8..00000000000000 --- a/pages.zh/osx/brew-mas.md +++ /dev/null @@ -1,27 +0,0 @@ -# brew mas - -> Mas 是一个简单的 Mac App Store 命令行界面. - -- 按应用名称搜索 Mac App Store 并返回匹配的标识符: - -`mas search {{应用名}}` - -- 安装或更新以前购买的应用程序: - -`mas install {{应用名}} {{应用 ID}}` - -- 显示所有已安装的应用程序及其应用 ID: - -`mas list` - -- 列出等待更新的已安装应用: - -`mas outdated` - -- 升级所有可升级的应用: - -`mas upgrade` - -- 升级指定的应用: - -`mas upgrade {{应用 ID}}` diff --git a/pages.zh/osx/brew.md b/pages.zh/osx/brew.md deleted file mode 100644 index 69c6d93414d564..00000000000000 --- a/pages.zh/osx/brew.md +++ /dev/null @@ -1,35 +0,0 @@ -# brew - -> macOS 上的软件包管理工具. - -- 搜索可用的命令行和软件安装包: - -`brew search {{软件名}}` - -- 安装最新版本的命令行软件 (使用 `--devel` 可以指定安装更新的开发版): - -`brew install {{软件名}}` - -- 列出已(通过 brew) 安装的命令行工具: - -`brew list` - -- 升级已安装的命令行软件(如果未给出命令行软件名称,则升级所有已安装的软件): - -`brew upgrade {{软件名}}` - -- 从 GitHub 上升级 brew 和软件库到最新: - -`brew update` - -- 显示有关指定软件的信息(版本,安装路径,依赖关系等): - -`brew info {{软件名}}` - -- 检查本地 Homebrew 安装是否存在潜在问题,并给出一些解决建议: - -`brew doctor` - -- 启动通过 brew 安装的服务,如 nginx,mysql 等。启动后还会自动随开机启动,直到你选择 stop 停止.(缺点是如果发生错误,它也会返回成功,而不是报错): - -`brew services {{start|stop|restart}} {{软件名}}` diff --git a/pages.zh/osx/brightness.md b/pages.zh/osx/brightness.md index 745351f2210725..d3f81a3175a587 100644 --- a/pages.zh/osx/brightness.md +++ b/pages.zh/osx/brightness.md @@ -1,15 +1,16 @@ # brightness -> 获取或设置所有显示设备的亮度等级. +> 获取或设置所有显示设备的亮度等级。 +> 更多信息:. -- 显示当前亮度: +- 显示当前亮度: `brightness -l` -- 设置亮度到 100%:: +- 设置亮度到 100%:: `brightness {{1}}` -- 设置亮度到 50%:: +- 设置亮度到 50%:: `brightness {{0.5}}` diff --git a/pages.zh/osx/caffeinate.md b/pages.zh/osx/caffeinate.md index 7728c2b6f1c08b..c7afa04cd759b3 100644 --- a/pages.zh/osx/caffeinate.md +++ b/pages.zh/osx/caffeinate.md @@ -1,15 +1,16 @@ # caffeinate -> 防止 Mac 进入休眠模式. +> 防止 Mac 进入休眠模式。 +> 更多信息:. -- 防止进入休眠模式 , 1 小时内 (3600 秒): +- 防止进入休眠模式 , 1 小时内(3600 秒): `caffeinate -u -t {{3600}}` -- 在指定命令执行完前,禁止进入休眠: +- 在指定命令执行完前,禁止进入休眠: `caffeinate -s {{命令}}` -- 在你按 Ctrl-C 之前禁止进入休眠模式: +- 在你按 Ctrl-C 之前禁止进入休眠模式: `caffeinate -i` diff --git a/pages.zh/osx/cal.md b/pages.zh/osx/cal.md index 5e19b18b533f9b..bf522134fc1048 100644 --- a/pages.zh/osx/cal.md +++ b/pages.zh/osx/cal.md @@ -1,31 +1,32 @@ # cal -> 打印日历信息. +> 打印日历信息。 +> 更多信息:. -- 打印本月日历: +- 打印本月日历: `cal` -- 显示上个月,当前月,下个月的日历: +- 显示上个月,当前月,下个月的日历: `cal -3` -- 显示指定月份的日历(月份为 1-12 月): +- 显示指定月份的日历(月份为 1-12 月): `cal -m {{月}}` -- 显示全年日历: +- 显示全年日历: `cal -y` -- 显示指定某年的日历(年份为 4 个数字): +- 显示指定某年的日历(年份为 4 个数字): `cal {{年}}` -- 显示特定年和月的日历: +- 显示特定年和月的日历: `cal {{月}} {{年}}` -- 显示指定年的复活节日期: +- 显示指定年的复活节日期: `ncal -e {{年}}` diff --git a/pages.zh/osx/carthage.md b/pages.zh/osx/carthage.md index 0561f95e5e327b..edf883c59cafe0 100644 --- a/pages.zh/osx/carthage.md +++ b/pages.zh/osx/carthage.md @@ -1,23 +1,24 @@ # carthage -> Cocoa 应用程序的依赖性管理工具 +> Cocoa 应用程序的依赖性管理工具。 +> 更多信息:. -- 下载 Cartfile 中提到的所有依赖项的最新版本,并编译它们: +- 下载 Cartfile 中提到的所有依赖项的最新版本,并编译它们: `carthage update` -- 仅针对 IOS 平台,升级依赖文件 : +- 仅针对 IOS 平台,升级依赖文件: `carthage update --platform ios` -- 仅更新依赖,但不编译它们 : +- 仅更新依赖,但不编译它们: `carthage update --no-build` -- 下载并重新生成依赖项的当前版本(不更新它们): +- 下载并重新生成依赖项的当前版本(不更新它们): `carthage bootstrap` -- 重新编译特定依赖项 : +- 重新编译特定依赖项: `carthage build {{依赖包}}` diff --git a/pages.zh/osx/chflags.md b/pages.zh/osx/chflags.md index f49ed78d93fc74..cf6d301617c0bf 100644 --- a/pages.zh/osx/chflags.md +++ b/pages.zh/osx/chflags.md @@ -1,19 +1,20 @@ # chflags -> 更改文件或文件夹的标志. +> 更改文件或文件夹的标志。 +> 更多信息:. -- 给文件设置 hidden(隐藏) 标签: +- 给文件设置 hidden(隐藏)标签: `chflags {{hidden}} {{文件路径}}` -- 取消文件的 hidden 标签: +- 取消文件的 hidden 标签: `chflags {{hidden}} {{文件路径}}` -- 递归地给文件夹中每个文件设置 uchg 标志: +- 递归地给文件夹中每个文件设置 uchg 标志: `chflags -R {{uchg}} {{文件夹路径}}` -- 递归地撤销文件夹中每个文件设置的 uchg 标志: +- 递归地撤销文件夹中每个文件设置的 uchg 标志: `chflags -R {{nouchg}} {{文件夹路径}}` diff --git a/pages.zh/osx/codesign.md b/pages.zh/osx/codesign.md index c28404b5d2cd19..0493b9c059e449 100644 --- a/pages.zh/osx/codesign.md +++ b/pages.zh/osx/codesign.md @@ -1,11 +1,12 @@ # codesign -> 为 macOS 的应用程序签名. +> 为 macOS 的应用程序签名。 +> 更多信息:. -- 用证书签名: +- 用证书签名: `codesign -s "{{公司名称}}" {{路径 / 应用名.app}}` -- 验证应用程序的签名: +- 验证应用程序的签名: `codesign -v {{路径 / 应用名.app}}` diff --git a/pages.zh/osx/compgen.md b/pages.zh/osx/compgen.md deleted file mode 100644 index 608868bb67b960..00000000000000 --- a/pages.zh/osx/compgen.md +++ /dev/null @@ -1,23 +0,0 @@ -# compgen - -> 用于在 bash 中自动完成的内置命令,按两次 tab 键即可调用该命令. - -- 显示所有可以执行的命令: - -`compgen -c` - -- 列出所有别名: - -`compgen -a` - -- 列出所有可以运行的函数: - -`compgen -A function` - -- 列出所有 shell 的保留关键字: - -`compgen -k` - -- 查看以 'ls' 开头的所有可用命令和别名: - -`compgen -ac {{ls}}` diff --git a/pages.zh/osx/dark-mode.md b/pages.zh/osx/dark-mode.md new file mode 100644 index 00000000000000..86fd3087f50517 --- /dev/null +++ b/pages.zh/osx/dark-mode.md @@ -0,0 +1,20 @@ +# dark-mode + +> 从命令行控制 macOS 的深色模式。 +> 更多信息:. + +- 切换深色模式(如果目前是关闭的,就把它打开,如果目前是打开的,就把它关闭): + +`dark-mode` + +- 打开深色模式: + +`dark-mode on` + +- 关闭深色模式: + +`dark-mode off` + +- 检查深色模式是否开启: + +`dark-mode status` diff --git a/pages.zh/osx/date.md b/pages.zh/osx/date.md index f7f253eb46f733..8aa312d5a64e9c 100644 --- a/pages.zh/osx/date.md +++ b/pages.zh/osx/date.md @@ -1,19 +1,20 @@ # date -> 设置或显示系统日期. +> 设置或显示系统日期。 +> 更多信息:. -- 使用默认区域设置的格式显示当前日期 : +- 使用默认区域设置的格式显示当前日期: `date +"%c"` -- 以 UTC 和 ISO 8601 格式显示当前日期: +- 以 UTC 和 ISO 8601 格式显示当前日期: -`date -u +"%Y-%m-%dT%H:%M:%S%Z"` +`date -u +"%Y-%m-%dT%H:%M:%SZ"` -- 将当前日期显示为 unix 时间戳(自 1970-01-01 00:00:00 以来的秒数) +- 将当前日期显示为 unix 时间戳(自 1970-01-01 00:00:00 以来的秒数): `date +%s` -- 使用默认格式显示特定日期(格式化指定 UNIX 时间戳): +- 使用默认格式显示特定日期(格式化指定 UNIX 时间戳): `date -r 1473305798` diff --git a/pages.zh/osx/dd.md b/pages.zh/osx/dd.md index 49a4a589fd7393..914097af2ac31b 100644 --- a/pages.zh/osx/dd.md +++ b/pages.zh/osx/dd.md @@ -1,19 +1,20 @@ # dd -> 转换并复制文件. +> 转换并复制文件。 +> 更多信息:. -- 从 isohybrid 文件(如 archlinux-xxx.iso)制作可用于引导系统启动的 USB 驱动器. +- 从 isohybrid 文件(如 archlinux-xxx.iso)制作可用于引导系统启动的 USB 驱动器: `dd if={{文件.iso}} of=/dev/{{usb 设备}}` -- 将驱动器克隆到具有 4MB 块的另一个驱动器并忽略错误: +- 将驱动器克隆到具有 4MB 块的另一个驱动器并忽略错误: `dd if=/dev/{{源设备}} of=/dev/{{目标设备}} bs=4m conv=noerror` -- 使用内核随机驱动程序生成 100 个随机字节的文件: +- 使用内核随机驱动程序生成 100 个随机字节的文件: `dd if=/dev/urandom of={{目标驱动器,接收随机数据文件名}} bs=100 count=1` -- 对磁盘的写入性能进行基准测试: +- 对磁盘的写入性能进行基准测试: `dd if=/dev/zero of={{1GB 的文件名}} bs=1024 count=1000000` diff --git a/pages.zh/osx/defaults.md b/pages.zh/osx/defaults.md index b8cde8919ef007..608ec6d9604fc8 100644 --- a/pages.zh/osx/defaults.md +++ b/pages.zh/osx/defaults.md @@ -1,23 +1,24 @@ # defaults -> 读取和写入 macOS 应用程序的用户配置. +> 读取和写入 macOS 应用程序的用户配置。 +> 更多信息:. -- 读取应用程序选项的系统默认值: +- 读取应用程序选项的系统默认值: `defaults read {{应用名}} {{选项}}` -- 读取应用程序选项的默认值: +- 读取应用程序选项的默认值: `defaults read -app {{应用名}} {{选项}}` -- 写入应用程序选项的默认值: +- 写入应用程序选项的默认值: `defaults write {{应用名}} {{选项}} {{- 类型}} {{值}}` -- 加速任务控制界面弹出动画 (时间设置为 0.1): +- 加速任务控制界面弹出动画(时间设置为 0.1): `defaults write com.apple.Dock expose-animation-duration -float 0.1` -- 删除应用程序的所有默认值: +- 删除应用程序的所有默认值: `defaults delete {{应用名}}` diff --git a/pages.zh/osx/diskutil.md b/pages.zh/osx/diskutil.md index 5677d8d3fe5381..3f6af9be7c1e65 100644 --- a/pages.zh/osx/diskutil.md +++ b/pages.zh/osx/diskutil.md @@ -1,19 +1,20 @@ # diskutil -> 用于管理本地磁盘和卷的实用程序. +> 用于管理本地磁盘和卷的实用程序。 +> 更多信息:. -- 列出所有当前可用的磁盘、分区和已装入的卷: +- 列出所有当前可用的磁盘、分区和已装入的卷: `diskutil list` -- 修复卷的文件系统数据结构: +- 修复卷的文件系统数据结构: `diskutil repairVolume {{目标卷文件}}` -- 卸载卷: +- 卸载卷: `diskutil unmountDisk {{目标卷文件}}` -- 弹出 CD/DVD (先卸载): +- 弹出 CD/DVD(先卸载): `diskutil eject {{/dev/ 光驱文件名}}` diff --git a/pages.zh/osx/ditto.md b/pages.zh/osx/ditto.md index a35be3a843226c..80307ed8fcc3c2 100644 --- a/pages.zh/osx/ditto.md +++ b/pages.zh/osx/ditto.md @@ -1,15 +1,16 @@ # ditto -> 复制文件和目录. +> 复制文件和目录。 +> 更多信息:. -- 用源目录的内容覆盖目标目录的内容: +- 用源目录的内容覆盖目标目录的内容: `ditto {{源文件路径}} {{目标文件路径}}` -- 为复制的每个文件打印一行到终端窗口: +- 为复制的每个文件打印一行到终端窗口: `ditto -V {{源文件路径}} {{目标文件路径}}` -- 复制给定的文件或目录,同时保留原始文件权限: +- 复制给定的文件或目录,同时保留原始文件权限: `ditto -rsrc {{源文件路径}} {{目标文件路径}}` diff --git a/pages.zh/osx/dmesg.md b/pages.zh/osx/dmesg.md index d8a3ea793a1c4e..171de09a0d60f7 100644 --- a/pages.zh/osx/dmesg.md +++ b/pages.zh/osx/dmesg.md @@ -1,15 +1,16 @@ # dmesg -> 将内核消息写入标准输出. +> 将内核消息写入标准输出。 +> 更多信息:. -- 显示内核消息: +- 显示内核消息: `dmesg` -- 显示此系统上有多少可用的物理内存: +- 显示此系统上有多少可用的物理内存: `dmesg | grep -i memory` -- 一次显示一页内核消息: +- 一次显示一页内核消息: `dmesg | less` diff --git a/pages.zh/osx/drutil.md b/pages.zh/osx/drutil.md index 48ae474969534b..3c246885a7fb14 100644 --- a/pages.zh/osx/drutil.md +++ b/pages.zh/osx/drutil.md @@ -1,11 +1,12 @@ # drutil -> 与 DVD 刻录机交互. +> 与 DVD 刻录机交互。 +> 更多信息:. -- 从驱动器中弹出磁盘: +- 从驱动器中弹出磁盘: `drutil eject` -- 将目录作为 iso9660 文件系统刻录到 DVD 上。完成后不验证和弹出: +- 将目录作为 iso9660 文件系统刻录到 DVD 上。完成后不验证和弹出: `drutil burn -noverify -eject -iso9660` diff --git a/pages.zh/osx/du.md b/pages.zh/osx/du.md index 34379f65a123b0..0711244456c8b4 100644 --- a/pages.zh/osx/du.md +++ b/pages.zh/osx/du.md @@ -1,27 +1,28 @@ # du -> 磁盘使用率:估计和汇总文件和目录空间使用率. +> 磁盘使用率:估计和汇总文件和目录空间使用率。 +> 更多信息:. -- 以给定单位(kb/mb/gb)列出目录和所有子目录的大小: +- 以给定单位(KiB/MiB/GiB)列出目录和所有子目录的大小: `du -{{k|m|g}} {{目标文件夹}}` -- 以可读形式列出目录和任何子目录的大小(即自动为转换为选择的适当单位 kb|mb|gb): +- 以可读形式列出目录和任何子目录的大小(即自动为转换为选择的适当单位 kb|mb|gb): `du -h {{目标文件夹}}` -- 以可读单位显示目录大小: +- 以可读单位显示目录大小: `du -sh {{目标文件夹}}` -- 列出目录以及其中所有文件和目录的可读大小: +- 列出目录以及其中所有文件和目录的可读大小: `du -ah {{目标文件夹}}` -- 列出一个目录和任何子目录的可读大小,最深可达 n 级: +- 列出一个目录和任何子目录的可读大小,最深可达 n 级: `du -h -d {{N}} {{目标文件夹}}` -- 列出当前目录子目录中所有.jpg 文件的可读大小,并在末尾显示累计总数: +- 列出当前目录子目录中所有.jpg 文件的可读大小,并在末尾显示累计总数: `du -ch */*.jpg` diff --git a/pages.zh/osx/duti.md b/pages.zh/osx/duti.md index 603ddbdba3db2f..b6bfab7ecdcd1c 100644 --- a/pages.zh/osx/duti.md +++ b/pages.zh/osx/duti.md @@ -1,27 +1,28 @@ # duti -> 在 MacOS 上为文档类型和网页设置默认打开的应用程序. +> 在 macOS 上为文档类型和网页设置默认打开的应用程序。 +> 更多信息:. -- 将 Safari 设置为 HTML 文档的默认打开程序: +- 将 Safari 设置为 HTML 文档的默认打开程序: `duti -s {{com.apple.Safari}} {{public.html}} all` -- 将 vlc 设置为扩展名为.m4v 的文件的默认查看器: +- 将 vlc 设置为扩展名为.m4v 的文件的默认查看器: `duti -s {{org.videolan.vlc}} {{m4v}} viewer` -- 将 Finder 设置为 ftp:// URL 访问的应用: +- 将 Finder 设置为 ftp:// URL 访问的应用: `duti -s {{com.apple.Finder}} {{ftp}}` -- 显示有关给定扩展名的默认应用程序的信息: +- 显示有关给定扩展名的默认应用程序的信息: `duti -x {{ext}}` -- 显示给定的 UTI 对应默认的处理程序: +- 显示给定的 UTI 对应默认的处理程序: `duti -d {{uti}}` -- 显示给定 UTI 对应所有的处理程序: +- 显示给定 UTI 对应所有的处理程序: `duti -l {{uti}}` diff --git a/pages.zh/osx/eval.md b/pages.zh/osx/eval.md deleted file mode 100644 index f6cffd60bbcaa5..00000000000000 --- a/pages.zh/osx/eval.md +++ /dev/null @@ -1,11 +0,0 @@ -# eval - -> 在当前 shell 中以单个命令的形式执行参数,并返回其结果. - -- 使用 'foo' 做为参数调用 `echo`: - -`eval "{{echo foo}}"` - -- 在当前 shell 程序中设置变量: - -`eval "{{foo=bar}}"` diff --git a/pages.zh/osx/export.md b/pages.zh/osx/export.md deleted file mode 100644 index 7e25b85264160e..00000000000000 --- a/pages.zh/osx/export.md +++ /dev/null @@ -1,15 +0,0 @@ -# export - -> 命令为当前 shell 中的子进程进行环境变量设置. - -- 设置为新的环境变量: - -`export {{某变量名}}={{值}}` - -- 删除环境变量: - -`export -n {{某变量名}}` - -- 给 PATH 追加新的路径进去: - -`export PATH=$PATH:{{追加的 path 路径}}` diff --git a/pages.zh/osx/fc.md b/pages.zh/osx/fc.md deleted file mode 100644 index 354bae30eb3387..00000000000000 --- a/pages.zh/osx/fc.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc - -> 打开最近的命令并编辑它. - -- 在系统默认编辑器中打开: - -`fc` - -- 指定要使用的的编辑器: - -`fc -e {{'emacs'}}` - -- 从历史记录中列出最近的命令: - -`fc -l` diff --git a/pages.zh/osx/feh.md b/pages.zh/osx/feh.md deleted file mode 100644 index 08ce708a1d0ac1..00000000000000 --- a/pages.zh/osx/feh.md +++ /dev/null @@ -1,27 +0,0 @@ -# feh - -> 轻量级图像查看工具. - -- 查看本地图像或使用 URL: - -`feh {{图片路径}}` - -- 递归查看图像: - -`feh --recursive {{图片路径}}` - -- 使用无边框窗口查看图像: - -`feh --borderless {{图片路径}}` - -- 在浏览完最后一个图像之后退出: - -`feh --cycle-once {{图片路径}}` - -- 设置幻灯片放映周期延迟时间(秒): - -`feh --slideshow-delay {{秒}} {{图片路径}}` - -- 设置墙纸(居中、填充、最大化、缩放或平铺): - -`feh --bg-{{center|fill|max|scale|tile}} {{图片路径}}` diff --git a/pages.zh/osx/file.md b/pages.zh/osx/file.md deleted file mode 100644 index 342667c04f50e8..00000000000000 --- a/pages.zh/osx/file.md +++ /dev/null @@ -1,23 +0,0 @@ -# file - -> 确定文件类型. - -- 提供指定文件类型的描述,对于没有文件扩展名的文件可以正常工作: - -`file {{文件名}}` - -- 查看压缩文件并确定其中的文件类型: - -`file -z {{xxx.zip}}` - -- 允许文件与特殊文件或设备文件一起使用: - -`file -s {{文件名}}` - -- 不要在第一个文件类型匹配时停止;继续执行直到文件结束: - -`file -k {{文件名}}` - -- 确定文件的 mime 编码类型: - -`file -I {{文件名}}` diff --git a/pages.zh/osx/fsck.md b/pages.zh/osx/fsck.md index 8eee03cbf65da7..eb0df7ab880f20 100644 --- a/pages.zh/osx/fsck.md +++ b/pages.zh/osx/fsck.md @@ -1,20 +1,21 @@ # fsck -> 检查或修复文件系统的完整性,运行命令时应卸载文件系统. -> 它是一个包装器,包含 `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, `fsck_udf` 作为可选. +> 检查或修复文件系统的完整性,运行命令时应卸载文件系统。 +> 它是一个包装器,包含 `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, `fsck_udf` 作为可选。 +> 更多信息:. -- 检查文件系统 /dev/sda,报告损坏的块: +- 检查文件系统 /dev/sda,报告损坏的块: `fsck {{/dev/sda}}` -- 仅当文件系统 /dev/sda 是干净的时才检查它,报告任何损坏的块并以交互方式让用户选择修复每个块: +- 仅当文件系统 /dev/sda 是干净的时才检查它,报告任何损坏的块并以交互方式让用户选择修复每个块: `fsck -f {{/dev/sda}}` -- 仅当文件系统 /dev/sda 干净时才检查它,报告任何损坏的块并自动修复它们: +- 仅当文件系统 /dev/sda 干净时才检查它,报告任何损坏的块并自动修复它们: `fsck -fy {{/dev/sda}}` -- 检查文件系统 /dev/sda, 报告是否已完全卸载: +- 检查文件系统 /dev/sda, 报告是否已完全卸载: `fsck -q {{/dev/sda}}` diff --git a/pages.zh/osx/g[.md b/pages.zh/osx/g[.md new file mode 100644 index 00000000000000..5141bce8557551 --- /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 00000000000000..88cbb8f46f1995 --- /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 00000000000000..f58ddafa90cd0b --- /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 00000000000000..ff8be68392e0f9 --- /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 00000000000000..597e0994b75f96 --- /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 00000000000000..143f0576c4d9a3 --- /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 00000000000000..6fb344010c75cf --- /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 00000000000000..7ecf7d160b054e --- /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 00000000000000..0498e76b1a5087 --- /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 00000000000000..447961da2bd9af --- /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 00000000000000..1e7938cc404edd --- /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 00000000000000..29898e72db3c60 --- /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 00000000000000..0ea2b047c6a14a --- /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 00000000000000..0f99fbcec50098 --- /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 00000000000000..b6e421ff36fc80 --- /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 00000000000000..2a3216357733a9 --- /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 00000000000000..fde56576942445 --- /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 00000000000000..3acfcd4567b5ca --- /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 00000000000000..e013f4ddf772dc --- /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 00000000000000..adcb28c5b702ab --- /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 00000000000000..42ef436e60cb93 --- /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 00000000000000..7208efe7d94730 --- /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 00000000000000..8c550bc017b0b0 --- /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 00000000000000..6c3293b78202b7 --- /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 00000000000000..3f0d1740aa796f --- /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 00000000000000..c7a4def6030ca7 --- /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 00000000000000..3dc1e4d19ddf3b --- /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 00000000000000..d89ef1745472a8 --- /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 00000000000000..a801bd69acb801 --- /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/getfileinfo.md b/pages.zh/osx/getfileinfo.md index 6af44d9158529e..dacbd172e82402 100644 --- a/pages.zh/osx/getfileinfo.md +++ b/pages.zh/osx/getfileinfo.md @@ -1,19 +1,20 @@ # GetFileInfo -> 获取有关 HFS+ 目录中文件的信息. +> 获取有关 HFS+ 目录中文件的信息。 +> 更多信息:. -- 显示有关给定文件的信息: +- 显示有关给定文件的信息: `GetFileInfo {{路径/文件名}}` -- 显示给定文件的创建日期和时间: +- 显示给定文件的创建日期和时间: `GetFileInfo -d {{路径/文件名}}` -- 显示给定文件的上次修改日期和时间: +- 显示给定文件的上次修改日期和时间: `GetFileInfo -m {{路径/文件名}}` -- 显示给定文件的创建者: +- 显示给定文件的创建者: `GetFileInfo -c {{路径/文件名}}` diff --git a/pages.zh/osx/gexpand.md b/pages.zh/osx/gexpand.md new file mode 100644 index 00000000000000..5babd8740ee5ca --- /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 00000000000000..e3d27afe40ef01 --- /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 00000000000000..d744dbc864bff6 --- /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 00000000000000..22aa709a2f75eb --- /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 00000000000000..73f140e3f89c98 --- /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 00000000000000..2edee07668a7d0 --- /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 00000000000000..5d5083700f2982 --- /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 00000000000000..bcdbf9b9197112 --- /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 00000000000000..d88bfc08eed068 --- /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 00000000000000..32333973d97bc3 --- /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 00000000000000..99caa58b9a0fd3 --- /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 00000000000000..743fe08bf588ba --- /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 00000000000000..b61828665f6629 --- /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 00000000000000..0d4b8492240df1 --- /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 00000000000000..e40b749b7b5496 --- /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 00000000000000..3ef2eea615c1f0 --- /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 00000000000000..51fabcbf51a23f --- /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 00000000000000..bd627f38150692 --- /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 00000000000000..e3cca805c7c03c --- /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 00000000000000..162c1c2cd7345b --- /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 00000000000000..88dc502dc9f5ec --- /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 00000000000000..ef34e1ce9e4097 --- /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 00000000000000..d2001118b5b458 --- /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 00000000000000..3183d548c0c68d --- /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 00000000000000..299f22785fb6f6 --- /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 00000000000000..bbd61cee727216 --- /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 00000000000000..46f5ad8f916a43 --- /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 00000000000000..f57589660b6121 --- /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 00000000000000..17cf6f8ddf97b0 --- /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 00000000000000..9af13991d84903 --- /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 00000000000000..7cb5e23f4df4e2 --- /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 00000000000000..ca8acb7b045daa --- /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 00000000000000..d2217def67442f --- /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 00000000000000..3b18f77b79ef52 --- /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 00000000000000..16f7130476fba4 --- /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 00000000000000..0edf9b7075c466 --- /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 00000000000000..0776c12d959f79 --- /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 00000000000000..5d760c973cd2f1 --- /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 00000000000000..6f79960ba9ba19 --- /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 00000000000000..e11a25ab0d4eb1 --- /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 00000000000000..098986596dd4ab --- /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 00000000000000..d87ecbc2a4b5d3 --- /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 00000000000000..d2490604edd287 --- /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 00000000000000..2225027ccf71d4 --- /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 00000000000000..2009daf66d1341 --- /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 00000000000000..10a1830a486444 --- /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 00000000000000..acaec33bc7b4e3 --- /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 00000000000000..1ed7b2ae724419 --- /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 00000000000000..ca05c64bae3ab6 --- /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 00000000000000..8cec9aa9b9b9c6 --- /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 00000000000000..9718b0f3d7cb06 --- /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 00000000000000..fb26d7eb0828b8 --- /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 00000000000000..4a7b67cb202b68 --- /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 00000000000000..51d7a18bbdb3fb --- /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 00000000000000..c340a309f10be0 --- /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 00000000000000..cd5f4f86cec74f --- /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 00000000000000..da14b8dd87e3a1 --- /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 00000000000000..b5b07d7d17da55 --- /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 00000000000000..3f55b072032d2a --- /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 00000000000000..22f2c86015980e --- /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 00000000000000..5e831a3844fcc4 --- /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 00000000000000..bfb9733bdc25b3 --- /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 00000000000000..4bfb1d9acc2aa6 --- /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 00000000000000..5ace7263a277c1 --- /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 00000000000000..0465d186b8c57e --- /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 00000000000000..94d5efc2d9fe3b --- /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 00000000000000..ac09121a6978a4 --- /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 00000000000000..0fa2f4fec8f427 --- /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 00000000000000..66fb5c45c1da04 --- /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 00000000000000..4375d6b9468772 --- /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 00000000000000..e15da263696742 --- /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 00000000000000..07346d791eb7f3 --- /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 00000000000000..79e2ba01a3aaa7 --- /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 00000000000000..ffac3b6ab7c3b1 --- /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 00000000000000..7eb64891536301 --- /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 00000000000000..faac9f72f7690d --- /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 00000000000000..9b27c537eadc86 --- /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 00000000000000..8a822915c7f8ed --- /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 00000000000000..bbc4f2fb958abd --- /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 00000000000000..6d4909351cff62 --- /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 00000000000000..b73fb01a4e74cb --- /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 00000000000000..147e95e64e9ba5 --- /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 00000000000000..ebd144375511df --- /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 00000000000000..87e42a8df388a1 --- /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 00000000000000..1cb05616d3b323 --- /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 00000000000000..ee15b33627d94e --- /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 00000000000000..b035a28e348a40 --- /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 00000000000000..1dd53e479f5624 --- /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 00000000000000..9081e3cf2556dc --- /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 00000000000000..88fa7392cd12b1 --- /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 00000000000000..66839d346bd931 --- /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 00000000000000..b65343df14c1aa --- /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 00000000000000..a3039b33cea1c6 --- /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 00000000000000..9bb8f531844d56 --- /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 00000000000000..2f91336037d1b0 --- /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 00000000000000..81f6d52ea90579 --- /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 00000000000000..7166cf5bf65a9d --- /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 00000000000000..8d08dba6bcb9a9 --- /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 00000000000000..3c66739c6112a4 --- /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 00000000000000..008198f9e653f6 --- /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 00000000000000..527028ec4c825a --- /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 00000000000000..ef2a36ebee56fc --- /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 00000000000000..987e12afb80519 --- /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 00000000000000..7f87e76069ce34 --- /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 00000000000000..4b29bab940a6e5 --- /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 00000000000000..3ce716142473c1 --- /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 00000000000000..6adee6d4597d3c --- /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 00000000000000..4bddcbb5b14cd7 --- /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 00000000000000..74b1968c5f2a02 --- /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 00000000000000..a1c17dc4e17877 --- /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/head.md b/pages.zh/osx/head.md index 34d5d4d5010ebd..efa8e00eb4a812 100644 --- a/pages.zh/osx/head.md +++ b/pages.zh/osx/head.md @@ -1,11 +1,12 @@ # head -> 输出文件的开头部分. +> 输出文件的开头部分。 +> 更多信息:. -- 输出文件的前几行: +- 输出文件的前几行: `head -n {{行数}} {{文件名}}` -- 输出文件的前几个字节: +- 输出文件的前几个字节: `head -c {{字节数}} {{文件名}}` diff --git a/pages.zh/osx/hexdump.md b/pages.zh/osx/hexdump.md deleted file mode 100644 index 94289f07827fb1..00000000000000 --- a/pages.zh/osx/hexdump.md +++ /dev/null @@ -1,15 +0,0 @@ -# hexdump - -> 一个 ASCII、十进制、十六进制、八进制转换查看工具. - -- 打印文件的十六进制表示形式: - -`hexdump {{文件}}` - -- 以十六进制显示输入偏移量,并在最后两列中显示其 ASCII 表示形式: - -`hexdump -C {{文件}}` - -- 显示文件的十六进制表示,但只解释输入的 N 个字节: - -`hexdump -C -n{{字节数}} {{文件}}` diff --git a/pages.zh/osx/hostname.md b/pages.zh/osx/hostname.md deleted file mode 100644 index 66b571e8f0849c..00000000000000 --- a/pages.zh/osx/hostname.md +++ /dev/null @@ -1,11 +0,0 @@ -# hostname - -> 显示或设置系统的主机名. - -- 显示本机的主机名: - -`hostname` - -- 设置本机主机名: - -`hostname {{新主机名}}` diff --git a/pages.zh/osx/imgcat.md b/pages.zh/osx/imgcat.md index 3fcaf7df29c83d..7c76d368f8adad 100644 --- a/pages.zh/osx/imgcat.md +++ b/pages.zh/osx/imgcat.md @@ -1,8 +1,9 @@ # imgcat -> 直接在命令行上显示图像的实用程序. +> 直接在命令行上显示图像的实用程序。 > 需要兼容的终端软件,如 ITerm2. +> 更多信息:. -- 在命令行上显示图像: +- 在命令行上显示图像: `imgcat {{文件名}}` diff --git a/pages.zh/osx/istats.md b/pages.zh/osx/istats.md new file mode 100644 index 00000000000000..e9e7bef47023ac --- /dev/null +++ b/pages.zh/osx/istats.md @@ -0,0 +1,20 @@ +# istats + +> 一个显示 CPU 温度、风扇速度和电池状态等统计数据的命令行工具。 +> 更多信息:. + +- 显示所有的统计数据: + +`istats` + +- 显示所有 CPU 的统计数据: + +`istats cpu` + +- 显示所有风扇的统计数据: + +`istats fan` + +- 扫描和打印温度: + +`istats scan` diff --git a/pages.zh/osx/launchctl.md b/pages.zh/osx/launchctl.md index 4ddb11d8c1a114..0f1599e7f3afb5 100644 --- a/pages.zh/osx/launchctl.md +++ b/pages.zh/osx/launchctl.md @@ -1,32 +1,33 @@ # launchctl -> 用于启动守护程序(系统范围的服务)和启动代理程序(每个用户程序)的命令行界面,该界面指向苹果的`launchd` 管理工具. -> `launchd`加载放置在适当位置的基于 XML 的`*.plist`文件,并根据其定义的计划运行相应的命令. +> 用于启动守护程序(系统范围的服务)和启动代理程序(每个用户程序)的命令行界面,该界面指向苹果的`launchd` 管理工具。 +> `launchd`加载放置在适当位置的基于 XML 的`*.plist`文件,并根据其定义的计划运行相应的命令。 +> 更多信息:. -- 每当用户登录时,自动将 plist 文件加载到 `launchd` : +- 每当用户登录时,自动将 plist 文件加载到 `launchd`: `launchctl load ~/Library/LaunchAgents/{{我的脚本}}.plist` -- 激活需要 root 权限才能运行和 / 或在任何用户登录时都应加载的脚本(注意路径中不能有`~`): +- 激活需要 root 权限才能运行和 / 或在任何用户登录时都应加载的脚本(注意路径中不能有`~`): `sudo launchctl load /Library/LaunchAgents/{{root 脚本}}.plist` -- 激活一个系统范围的守护程序,以便在系统启动时加载(即使没有用户登录也会加载): +- 激活一个系统范围的守护程序,以便在系统启动时加载(即使没有用户登录也会加载): `sudo launchctl load /Library/LaunchDaemons/{{系统脚本}}.plist` -- 显示所有加载的代理 / 守护进程,如果它们指定的进程当前正在运行,则显示 pid,如果停止那么返回了它们上次运行的时间和退出代码: +- 显示所有加载的代理 / 守护进程,如果它们指定的进程当前正在运行,则显示 pid,如果停止那么返回了它们上次运行的时间和退出代码: `launchctl list` -- 卸载当前加载的脚本,例如进行更改(注意:重新启动和 / 或登录后,plist 文件将自动加载到`launchd`): +- 卸载当前加载的脚本,例如进行更改(注意:重新启动和 / 或登录后,plist 文件将自动加载到`launchd`): `launchctl unload ~/Library/LaunchAgents/{{我的脚本}}.plist` -- 手动运行一个已知的(已加载的)脚本 / 守护进程,即使它不是正确的时间(注意:此命令使用脚本的标签,而不是文件名): +- 手动运行一个已知的(已加载的)脚本 / 守护进程,即使它不是正确的时间(注意:此命令使用脚本的标签,而不是文件名): `launchctl start {{我的脚本}}` -- 手动终止与已知脚本 / 守护进程关联的进程(如果该进程正在运行): +- 手动终止与已知脚本 / 守护进程关联的进程(如果该进程正在运行): `launchctl stop {{我的脚本}}` diff --git a/pages.zh/osx/launchd.md b/pages.zh/osx/launchd.md new file mode 100644 index 00000000000000..09f6d6a136627d --- /dev/null +++ b/pages.zh/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> 这是 `launchctl` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr launchctl` diff --git a/pages.zh/osx/lldb.md b/pages.zh/osx/lldb.md index 595f441c6a2f34..90a322b5cbb997 100644 --- a/pages.zh/osx/lldb.md +++ b/pages.zh/osx/lldb.md @@ -1,15 +1,16 @@ # lldb -> LLVM 低级调试器. +> LLVM 低级调试器。 +> 更多信息:. -- 调试可执行文件: +- 调试可执行文件: `lldb {{可执行的命令}}` -- 将 `lldb` 附加到具有给定 PID 的正在运行的进程: +- 将 `lldb` 附加到具有给定 PID 的正在运行的进程: `lldb -p {{进程号 PID}}` -- 等待使用给定名称的进程启动,然后附加到该进程上: +- 等待使用给定名称的进程启动,然后附加到该进程上: `lldb -w -n {{进程名}}` diff --git a/pages.zh/osx/locate.md b/pages.zh/osx/locate.md index 8608b556857856..ecb593176197fc 100644 --- a/pages.zh/osx/locate.md +++ b/pages.zh/osx/locate.md @@ -1,15 +1,16 @@ # locate -> 快速查找文件名. +> 快速查找文件名。 +> 更多信息:. -- 在数据库中查找关键字。注意:数据库定期重新更新(通常每周或每天): +- 在数据库中查找关键字。注意:数据库定期重新更新(通常每周或每天): `locate {{关键字}}` -- 按文件名查找文件(不包含填充字符的模式被解释为 `*关键字*`): +- 按文件名查找文件(不包含填充字符的模式被解释为 `*关键字*`): `locate */{{文件名}}` -- 重新建立文件数据索引数据库。如果要查找最近添加的文件,则需要执行此操作: +- 重新建立文件数据索引数据库。如果要查找最近添加的文件,则需要执行此操作: `sudo /usr/libexec/locate.updatedb` diff --git a/pages.zh/osx/logger.md b/pages.zh/osx/logger.md deleted file mode 100644 index d339b57fe343e1..00000000000000 --- a/pages.zh/osx/logger.md +++ /dev/null @@ -1,23 +0,0 @@ -# logger - -> 向系统日志增加记录 (/var/log/syslog). - -- 向系统日志增加记录: - -`logger {{消息内容}}` - -- 从 stdin 获取输入并记录到系统日志 syslog: - -`echo {{记录内容}} | logger` - -- 将输出发送到在给定端口上运行的远程系统日志服务器。默认端口为 514: - -`echo {{记录内容}} | logger -h {{服务器名}} -P {{端口}}` - -- 对记录的每一行使用特定的标签。默认值是登录用户的名: - -`echo {{记录内容}} | logger -t {{标签}}` - -- 以给定的错误等级记录消息。默认是 `user.notice`. 使用 `man logger` 查询所有可选等级: - -`echo {{记录内容}} | logger -p {{user.warning}}` diff --git a/pages.zh/osx/look.md b/pages.zh/osx/look.md index 02178528172e18..3552d3dd5fc354 100644 --- a/pages.zh/osx/look.md +++ b/pages.zh/osx/look.md @@ -1,11 +1,12 @@ # look -> 查找已排序的文件行(注意,必须是已排序的文件). +> 查找已排序的文件行(注意,必须是已排序的文件)。 +> 更多信息:. -- 它开始寻找一个给定的前缀: +- 它开始寻找一个给定的前缀: `look {{前缀}} {{文件}}` -- 查找行,忽略大小写: +- 查找行,忽略大小写: `look -f {{前缀}} {{文件}}` diff --git a/pages.zh/osx/m.md b/pages.zh/osx/m.md index ef387bb74550dd..a00827e1f4a534 100644 --- a/pages.zh/osx/m.md +++ b/pages.zh/osx/m.md @@ -1,23 +1,24 @@ # m -> macOS 上的瑞士军刀. +> macOS 上的瑞士军刀。 +> 更多信息:. -- 获取电池状态: +- 获取电池状态: `m battery status` -- 关闭蓝牙: +- 关闭蓝牙: `m bluetooth off` -- 列出可用于格式化的文件系统: +- 列出可用于格式化的文件系统: `m disk filesystems` -- 启用 Dock(桌面程序坞) 的自动隐藏功能: +- 启用 Dock(桌面程序坞)的自动隐藏功能: `m dock autohide YES` -- 禁用防火墙: +- 禁用防火墙: `m firewall disable` diff --git a/pages.zh/osx/mas.md b/pages.zh/osx/mas.md new file mode 100644 index 00000000000000..8048083af10901 --- /dev/null +++ b/pages.zh/osx/mas.md @@ -0,0 +1,24 @@ +# mas + +> Mac 应用商店的命令行界面。 +> 更多信息:. + +- 首次登录 Mac 应用商店: + +`mas signin {{user@example.com}}` + +- 显示所有已安装的应用程序和它们的产品标识符: + +`mas list` + +- 搜索一个应用程序,在结果旁边显示价格: + +`mas search {{应用程序}} --price` + +- 安装或更新一个应用程序: + +`mas install {{产品标识符}}` + +- 安装所有待定的更新: + +`mas upgrade` diff --git a/pages.zh/osx/md5.md b/pages.zh/osx/md5.md index 8389a91bde39f6..0893f2576698bf 100644 --- a/pages.zh/osx/md5.md +++ b/pages.zh/osx/md5.md @@ -1,19 +1,20 @@ # md5 -> 计算 MD5 加密和校验. +> 计算 MD5 加密和校验。 +> 更多信息:. -- 计算一个文件的 MD5 校验值: +- 计算一个文件的 MD5 校验值: `md5 {{文件名}}` -- 计算多个文件的 MD5 校验值: +- 计算多个文件的 MD5 校验值: `md5 {{文件名 1}} {{文件名 2}}` -- 仅输出 MD5 校验值(无文件名): +- 仅输出 MD5 校验值(无文件名): `md5 -q {{文件名}}` -- 打印给定字符串的 MD5 校验值: +- 打印给定字符串的 MD5 校验值: `md5 -s {{字符串}}` diff --git a/pages.zh/osx/mdfind.md b/pages.zh/osx/mdfind.md index fdbbb34518f7dd..62deee53e99ebf 100644 --- a/pages.zh/osx/mdfind.md +++ b/pages.zh/osx/mdfind.md @@ -1,15 +1,16 @@ # mdfind -> 列出与给定查询匹配的文件. +> 列出与给定查询匹配的文件。 +> 更多信息:. -- 按文件名查找文件: +- 按文件名查找文件: `mdfind -name {{文件}}` -- 按内容查找文件: +- 按内容查找文件: `mdfind {{查找的字符串}}` -- 在给定目录中查找包含字符串的文件: +- 在给定目录中查找包含字符串的文件: `mdfind -onlyin {{目录}} {{字符串}}` diff --git a/pages.zh/osx/mdutil.md b/pages.zh/osx/mdutil.md index 1e9bb747da1166..7cbb2a0f5fdd10 100644 --- a/pages.zh/osx/mdutil.md +++ b/pages.zh/osx/mdutil.md @@ -1,15 +1,16 @@ # mdutil -> 管理 Spotlight(聚焦搜索) 用于搜索的索引数据. +> 管理 Spotlight(聚焦搜索)用于搜索的索引数据。 +> 更多信息:. -- 显示指定卷 ('/') 的索引状态: +- 显示指定卷('/')的索引状态: `mdutil -s {{/}}` -- 打开 / 关闭给定卷的 Spotlight 索引: +- 打开 / 关闭给定卷的 Spotlight 索引: `mdutil -i {{on|off}} {{指定卷文件夹}}` -- 清除索引数据并重新建立索引: +- 清除索引数据并重新建立索引: `mdutil -E {{指定卷文件夹}}` diff --git a/pages.zh/osx/mkfile.md b/pages.zh/osx/mkfile.md deleted file mode 100644 index e59f26fb25e6cf..00000000000000 --- a/pages.zh/osx/mkfile.md +++ /dev/null @@ -1,15 +0,0 @@ -# mkfile - -> 创建一个或多个任意大小的空文件. - -- 创建一个 15 千字节的空文件: - -`mkfile -n {{15k}} {{文件名}}` - -- 创建给定大小和单位的文件 (bytes, KB, MB, GB): - -`mkfile -n {{大小}}{{b|k|m|g}} {{文件名}}` - -- 创建两个 4 兆字节的文件: - -`mkfile -n {{4m}} {{文件名 1}} {{文件名 2}}` diff --git a/pages.zh/osx/n.md b/pages.zh/osx/n.md deleted file mode 100644 index 088e463080f81b..00000000000000 --- a/pages.zh/osx/n.md +++ /dev/null @@ -1,23 +0,0 @@ -# n - -> 用于管理多个节点版本的工具. - -- 安装给定版本的节点。如果版本已经安装,它将被激活: - -`n {{版本}}` - -- 显示已安装的版本并以交互方式激活其中一个版本: - -`n` - -- 删除一个版本: - -`n rm {{版本}}` - -- 使用给定版本执行文件: - -`n use {{版本}} {{文件.js}}` - -- 输出指定版本的二进制: - -`n bin {{版本}}` diff --git a/pages.zh/osx/netstat.md b/pages.zh/osx/netstat.md deleted file mode 100644 index 53f5809333c763..00000000000000 --- a/pages.zh/osx/netstat.md +++ /dev/null @@ -1,24 +0,0 @@ -# netstat - -> 显示与网络相关的信息,如打开的连接、打开的套接字端口等. -> 更多信息: . - -- 列出所有端口: - -`netstat -a` - -- 列出所有被侦听端口: - -`netstat -l` - -- 列出侦听的 TCP 端口: - -`netstat -t` - -- 显示监听给定协议监听的 PID 和程序名: - -`netstat -p {{协议}}` - -- 打印路由表: - -`netstat -nr` diff --git a/pages.zh/osx/networksetup.md b/pages.zh/osx/networksetup.md index 0ac3a6a653cdb7..05fe964ef895ed 100644 --- a/pages.zh/osx/networksetup.md +++ b/pages.zh/osx/networksetup.md @@ -1,19 +1,20 @@ # networksetup -> 网络系统首选项配置工具. +> 网络系统首选项配置工具。 +> 更多信息:. -- 列出可用的网络服务源(以太网、Wi-Fi、蓝牙等): +- 列出可用的网络服务源(以太网、Wi-Fi、蓝牙等): `networksetup -listallnetworkservices` -- 显示特定网络设备的配置信息: +- 显示特定网络设备的配置信息: `networksetup -getinfo "{{Wi-Fi}}"` -- 获取当前连接的 Wi-Fi 网络名称(Wi-Fi 设备通常为 en0 或 en1): +- 获取当前连接的 Wi-Fi 网络名称(Wi-Fi 设备通常为 en0 或 en1): `networksetup -getairportnetwork {{en0}}` -- 连接到给定的 Wi-Fi 网络 Connect to a particular Wi-Fi network: +- 连接到给定的 Wi-Fi 网络 Connect to a particular Wi-Fi network: `networksetup -setairportnetwork {{en0}} "{{无线网 SSID}}" {{密码}}` diff --git a/pages.zh/osx/oathtool.md b/pages.zh/osx/oathtool.md index 573ef940267739..5b36ca47b88864 100644 --- a/pages.zh/osx/oathtool.md +++ b/pages.zh/osx/oathtool.md @@ -1,15 +1,15 @@ # oathtool -> OATH 一次性密码工具. +> OATH 一次性密码工具。 -- 生成 TOTP 令牌(行为类似于 Google Authenticator): +- 生成 TOTP 令牌(行为类似于 Google Authenticator): `oathtool --totp --base32 {{密码}}` -- 根据给定时间产生特定的 TOTP 令牌: +- 根据给定时间产生特定的 TOTP 令牌: `oathtool --totp --now {{2004-02-29 16:21:42}} --base32 {{密码}}` -- 验证 TOTP 令牌: +- 验证 TOTP 令牌: `oathtool --totp --base32 {{密码}} {{令牌}}` diff --git a/pages.zh/osx/open.md b/pages.zh/osx/open.md index bed58eda6be7b7..395852ddc406aa 100644 --- a/pages.zh/osx/open.md +++ b/pages.zh/osx/open.md @@ -1,27 +1,28 @@ # open -> 打开文件、目录和应用程序. +> 打开文件、目录和应用程序。 +> 更多信息:. -- 使用系统关联的应用程序打开文件: +- 使用系统关联的应用程序打开文件: `open {{filename.extension}}` -- 运行图形化的 MacOS 应用程序: +- 运行图形化的 macOS 应用程序: `open -a {{应用程序名}}` -- 运行指定 包名 的图形化 MacOS 应用程序(请参阅`OSascript`命令,查询如何获取应用程序的 包名): +- 运行指定 包名 的图形化 macOS 应用程序(请参阅`OSascript`命令,查询如何获取应用程序的 包名): `open -b {{com.domain.application 应用程序包名}}` -- 在"访达 (finder)"中打开当前文件夹: +- 在"访达(finder)"中打开当前文件夹: `open .` -- 打开"访达 (finder)", 并且给出指定文件: +- 打开"访达(finder)", 并且给出指定文件: `open -R {{文件路径}}` -- 使用系统默认应用程序,打开当前目录中所有给定扩展名的文件: +- 使用系统默认应用程序,打开当前目录中所有给定扩展名的文件: `open {{*.extension}}` diff --git a/pages.zh/osx/opensnoop.md b/pages.zh/osx/opensnoop.md index 354694fbc895c4..04a22550047fb9 100644 --- a/pages.zh/osx/opensnoop.md +++ b/pages.zh/osx/opensnoop.md @@ -1,19 +1,20 @@ # opensnoop -> 跟踪系统中打开的文件标识符. +> 跟踪系统中打开的文件标识符。 +> 更多信息:. -- 输出当前系统内被打开的所有文件: +- 输出当前系统内被打开的所有文件: `sudo opensnoop` -- 跟踪给定进程名,打开的所有文件: +- 跟踪给定进程名,打开的所有文件: `sudo opensnoop -n {{进程名}}` -- 跟踪给定 PID(进程号), 打开的所有文件: +- 跟踪给定 PID(进程号),打开的所有文件: `sudo opensnoop -p {{PID 进程号}}` -- 跟踪打开了指定文件的继承: +- 跟踪打开了指定文件的继承: `sudo opensnoop -f {{路径 / 文件}}` diff --git a/pages.zh/osx/osascript.md b/pages.zh/osx/osascript.md index 44bbd6dd63b479..8f52abc9402132 100644 --- a/pages.zh/osx/osascript.md +++ b/pages.zh/osx/osascript.md @@ -1,27 +1,28 @@ # osascript -> 在命令行中运行指定的 AppleScript 或 JavaScript 脚本程序. +> 在命令行中运行指定的 AppleScript 或 JavaScript 脚本程序。 +> 更多信息:. -- 运行一个 AppleScript 命令: +- 运行一个 AppleScript 命令: `osascript -e '{{say "你好世界"}}'` -- 运行多条 AppleScript 命令: +- 运行多条 AppleScript 命令: `osascript -e '{{say "你好"}}' -e '{{say "世界"}}'` -- 运行一个已编译的脚本 (`*.scpt`), 包脚本 (`*.scptd`), 或明文的 (`*.applescript`) AppleScript 文件: +- 运行一个已编译的脚本(`*.scpt`),包脚本(`*.scptd`),或明文的(`*.applescript`)AppleScript 文件: `osascript {{目录 / 脚本文件.scpt}}` -- 获取应用程序的包名 (这个包名,可以用在命令 `open -b` 中): +- 获取应用程序的包名(这个包名,可以用在命令 `open -b` 中): `osascript -e 'id of app "{{应用程序名}}"'` -- 运行一个 JavaScript 命令: +- 运行一个 JavaScript 命令: `osascript -l JavaScript -e '{{console.log("你好世界!");}}'` -- 运行 JavaScript 文件: +- 运行 JavaScript 文件: `osascript -l JavaScript {{路径 / 文件名.js}}` diff --git a/pages.zh/osx/pbcopy.md b/pages.zh/osx/pbcopy.md index 0274bbc2d1c851..245a6ddf17ed1f 100644 --- a/pages.zh/osx/pbcopy.md +++ b/pages.zh/osx/pbcopy.md @@ -1,11 +1,12 @@ # pbcopy -> 将标准输出放入剪贴板(命令行里的 cmd + C). +> 将标准输出放入剪贴板(命令行里的 cmd + C)。 +> 更多信息:. -- 将文件的内容放入剪贴板: +- 将文件的内容放入剪贴板: `pbcopy < {{文件}}` -- 将命令的执行结果放入剪贴板: +- 将命令的执行结果放入剪贴板: `find . -type t -name "*.png" | pbcopy` diff --git a/pages.zh/osx/pbpaste.md b/pages.zh/osx/pbpaste.md index 5383d28eb102fe..c7f140ef3571dd 100644 --- a/pages.zh/osx/pbpaste.md +++ b/pages.zh/osx/pbpaste.md @@ -1,11 +1,12 @@ # pbpaste -> 将剪贴板的内容发送到标准输出(命令行). +> 将剪贴板的内容发送到标准输出(命令行)。 +> 更多信息:. -- 将剪贴板的内容写入文件: +- 将剪贴板的内容写入文件: `pbpaste > {{文件}}` -- 将剪贴板的内容用作命令的输入: +- 将剪贴板的内容用作命令的输入: `pbpaste | grep foo` diff --git a/pages.zh/osx/pdfgrep.md b/pages.zh/osx/pdfgrep.md deleted file mode 100644 index 55db1b66b1c48a..00000000000000 --- a/pages.zh/osx/pdfgrep.md +++ /dev/null @@ -1,23 +0,0 @@ -# pdfgrep - -> 在 PDF 文件中搜索文本. - -- 在 PDF 中查找与关键词匹配的行: - -`pdfgrep {{关键词}} {{文件.pdf}}` - -- 包含每个匹配行的文件名和页码: - -`pdfgrep --with-filename --page-number {{关键词}} {{文件.pdf}}` - -- 对以 "foo" 开头关键词搜索,返回前 3 个匹配项,不区分大小写: - -`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{文件.pdf}}` - -- 在当前目录中扩展名为.pdf 的文件中递归查找关键词: - -`pdfgrep --recursive {{关键词}}` - -- 在与当前目录中特定文件名 "*book.pdf" 匹配的文件上递归查找关键词: - -`pdfgrep --recursive --include {{'*book.pdf'}} {{关键词}}` diff --git a/pages.zh/osx/ping.md b/pages.zh/osx/ping.md index 365fceb8c8c9ca..dd2af3ea12fd5e 100644 --- a/pages.zh/osx/ping.md +++ b/pages.zh/osx/ping.md @@ -1,27 +1,28 @@ # ping -> 向网络主机发送 ICMP 回显请求数据包. +> 向网络主机发送 ICMP 回显请求数据包。 +> 更多信息:. -- Ping 指定的主机: +- Ping 指定的主机: `ping {{主机}}` -- 对主机执行指定定次数的 ping 操作: +- 对主机执行指定定次数的 ping 操作: `ping -c {{次数}} {{主机}}` -- ping `主机` , 指定请求之间的间隔(以`秒`为单位)(默认为 1 秒): +- ping `主机` , 指定请求之间的间隔(以`秒`为单位)(默认为 1 秒): `ping -i {{秒}} {{主机}}` -- Ping `主机`, 但不尝试查找地址的符号名: +- Ping `主机`, 但不尝试查找地址的符号名: `ping -n {{主机}}` -- ping `主机` 并在收到数据包时响铃(如果您的终端支持): +- ping `主机` 并在收到数据包时响铃(如果您的终端支持): `ping -a {{主机}}` -- ping `主机` 并打印接收数据包的时间(此选项是 Apple 的附加项): +- ping `主机` 并打印接收数据包的时间(此选项是 Apple 的附加项): `ping --apple-time {{主机}}` diff --git a/pages.zh/osx/pmset.md b/pages.zh/osx/pmset.md index ad9e6e4adceb15..d4908b9acab88f 100644 --- a/pages.zh/osx/pmset.md +++ b/pages.zh/osx/pmset.md @@ -1,28 +1,33 @@ # pmset -> 配置 MacOS 电源管理设置,就像在系统首选项 > 节能程序中一样. -> 修改设置的命令必须以 `sudo` 开头. +> 配置 macOS 电源管理设置,就像在系统首选项 > 节能程序中一样。 +> 修改设置的命令必须以 `sudo` 开头。 +> 更多信息:. -- 显示当前电源管理设置: +- 显示当前电源管理设置: `pmset -g` -- 显示当前电源和电池电量: +- 显示当前电源和电池电量: `pmset -g batt` -- 当充电器通电时,将显示器设置为从不休眠: +- 立即让显示器进入休眠状态: + +`pmset displaysleepnow` + +- 当充电器通电时,将显示器设置为从不休眠: `sudo pmset -c displaysleep 0` -- 使用电池电源 15 分钟后将显示器设置为休眠: +- 使用电池电源 15 分钟后将显示器设置为休眠: `sudo pmset -b displaysleep 15` -- 安排计算机在每个工作日上午 9 点自动唤醒: +- 安排计算机在每个工作日上午 9 点自动唤醒: `sudo pmset repeat wake MTWRF 09:00:00` -- 还原为系统默认值: +- 还原为系统默认值: `sudo pmset -a displaysleep 10 disksleep 10 sleep 30 womp 1` diff --git a/pages.zh/osx/pod.md b/pages.zh/osx/pod.md index f91a06c5e42e29..33de49884ddaec 100644 --- a/pages.zh/osx/pod.md +++ b/pages.zh/osx/pod.md @@ -1,31 +1,32 @@ # pod -> Swift 和 Objective-C Cocoa 项目的依赖关系管理. +> Swift 和 Objective-C Cocoa 项目的依赖关系管理。 +> 更多信息:. -- 为当前项目初始化包含默认内容的 podfile: +- 为当前项目初始化包含默认内容的 podfile: `pod init` -- 下载并安装 pod 文件中定义的所有 pod(以前未安装): +- 下载并安装 pod 文件中定义的所有 pod(以前未安装): `pod install` -- 列出所有可用的 pod: +- 列出所有可用的 pod: `pod list` -- 显示过时的 pod(当前安装的 pod): +- 显示过时的 pod(当前安装的 pod): `pod outdated` -- 将当前安装的所有 pod 更新到其最新版本: +- 将当前安装的所有 pod 更新到其最新版本: `pod update` -- 将特定(以前安装的)pod 更新为其最新版本: +- 将特定(以前安装的)pod 更新为其最新版本: `pod update {{pod_名}}` -- 从 Xcode 项目中删除 CocoaPods: +- 从 Xcode 项目中删除 CocoaPods: `pod deintegrate {{xcode_项目}}` diff --git a/pages.zh/osx/popd.md b/pages.zh/osx/popd.md index 19709875b564ed..6b4c2bf598fae7 100644 --- a/pages.zh/osx/popd.md +++ b/pages.zh/osx/popd.md @@ -1,15 +1,15 @@ # popd -> 通过 pushd shell 内置程序删除目录堆栈中的目录. +> 通过 pushd shell 内置程序删除目录堆栈中的目录。 -- 从堆栈中删除顶部目录,并用 `cd` 跳转到该目录: +- 从堆栈中删除顶部目录,并用 `cd` 跳转到该目录: `popd` -- 删除第 n 个目录(从零开始,以用 `dirs` 打印的列表左侧开始): +- 删除第 n 个目录(从零开始,以用 `dirs` 打印的列表左侧开始): `popd +N` -- 删除第 n 个目录(从零开始,以用 `dirs` 打印的列表右侧开始): +- 删除第 n 个目录(从零开始,以用 `dirs` 打印的列表右侧开始): `popd -N` diff --git a/pages.zh/osx/port.md b/pages.zh/osx/port.md index e9c527b7f9587b..e8eab5295fcf15 100644 --- a/pages.zh/osx/port.md +++ b/pages.zh/osx/port.md @@ -1,27 +1,28 @@ # port -> MacOS 包管理器软件(类似 brew). +> macOS 包管理器软件(类似 brew)。 +> 更多信息:. -- 搜索包: +- 搜索包: `port search {{搜索的包名}}` -- 安装软件包: +- 安装软件包: `sudo port install {{报名}}` -- 列出已安装的软件包: +- 列出已安装的软件包: `port installed` -- 更新 port 自身,并获取可用包的最新列表: +- 更新 port 自身,并获取可用包的最新列表: `sudo port selfupdate` -- 升级过时的软件包: +- 升级过时的软件包: `sudo port upgrade outdated` -- 删除已安装的软件包的旧版本: +- 删除已安装的软件包的旧版本: `sudo port uninstall inactive` diff --git a/pages.zh/osx/pushd.md b/pages.zh/osx/pushd.md index 7c1269c339af5a..321fb571cba71a 100644 --- a/pages.zh/osx/pushd.md +++ b/pages.zh/osx/pushd.md @@ -1,16 +1,16 @@ # pushd -> 将目录放在堆栈上,以便以后访问. -> 另请参阅 `popd` 命令说明,以切换回原始目录. +> 将目录放在堆栈上,以便以后访问。 +> 另请参阅 `popd` 命令说明,以切换回原始目录。 -- 切换到目录并将其添加到堆栈上: +- 切换到目录并将其添加到堆栈上: `pushd {{directory}}` -- 切换堆栈上的第一个和第二个目录: +- 切换堆栈上的第一个和第二个目录: `pushd` -- 通过使第 5 个元素成为堆栈的顶部来旋转堆栈: +- 通过使第 5 个元素成为堆栈的顶部来旋转堆栈: `pushd +4` diff --git a/pages.zh/osx/pwgen.md b/pages.zh/osx/pwgen.md deleted file mode 100644 index 51c82d69aede24..00000000000000 --- a/pages.zh/osx/pwgen.md +++ /dev/null @@ -1,15 +0,0 @@ -# pwgen - -> 生成可拼写发音的密码. - -- 生成指定长度的随机密码: - -`pwgen -y {{长度}}` - -- 生成安全、难以记忆的密码: - -`pwgen -s {{长度}}` - -- 生成至少包含一个大写字母的密码: - -`pwgen -c {{长度}}` diff --git a/pages.zh/osx/qlmanage.md b/pages.zh/osx/qlmanage.md index 6a23af79aeacfd..d61cfae0f26d21 100644 --- a/pages.zh/osx/qlmanage.md +++ b/pages.zh/osx/qlmanage.md @@ -1,15 +1,16 @@ # qlmanage -> QuickLook 服务器工具. +> QuickLook 服务器工具。 +> 更多信息:. -- 快速显示一个或多个文件: +- 快速显示一个或多个文件: `qlmanage -p {{文件名}} {{文件名 2}}` -- 计算生成当前目录中所有 jpeg 文件的缩略图,300px 宽 png 格式,并将它们放在一个指定目录中: +- 计算生成当前目录中所有 jpeg 文件的缩略图,300px 宽 png 格式,并将它们放在一个指定目录中: `qlmanage {{*.jpg}} -t -s {{300}} {{指定目录}}` -- 重置快速查看: +- 重置快速查看: `qlmanage -r` diff --git a/pages.zh/osx/reboot.md b/pages.zh/osx/reboot.md index fd51abd6e9367c..6534a47be57708 100644 --- a/pages.zh/osx/reboot.md +++ b/pages.zh/osx/reboot.md @@ -1,11 +1,12 @@ # reboot -> 重启系统. +> 重启系统。 +> 更多信息:. -- 立刻重启: +- 立刻重启: `sudo reboot` -- 立即重启,而无需正常关机: +- 立即重启,而无需正常关机: `sudo reboot -q` diff --git a/pages.zh/osx/route.md b/pages.zh/osx/route.md index 69459afef96d9b..4ebbcc11555a2f 100644 --- a/pages.zh/osx/route.md +++ b/pages.zh/osx/route.md @@ -1,28 +1,29 @@ # route -> 手动操作路由表. -> 需要 root 权限. +> 手动操作路由表。 +> 需要 root 权限。 +> 更多信息:. -- 通过网关向目标添加路由: +- 通过网关向目标添加路由: `sudo route add {{路由 ip 地址}} {{网关地址}}` -- 通过网关向 子网 / 24 添加路由: +- 通过网关向 子网 / 24 添加路由: `sudo route add {{子网 ip}}/24 {{网关地址}}` -- 在测试模式下运行(不做任何操作,只打印): +- 在测试模式下运行(不做任何操作,只打印): `sudo route -t add {{路由 ip 地址}}/24 {{网关地址}}` -- 删除所有路由: +- 删除所有路由: `sudo route flush` -- 删除特定路由: +- 删除特定路由: `sudo route delete {{路由 ip 地址}}/24` -- 查找并显示目标的路由(主机名或 IP 地址): +- 查找并显示目标的路由(主机名或 IP 地址): `sudo route get {{目标}}` diff --git a/pages.zh/osx/rubocop.md b/pages.zh/osx/rubocop.md deleted file mode 100644 index c93a997a1610fe..00000000000000 --- a/pages.zh/osx/rubocop.md +++ /dev/null @@ -1,31 +0,0 @@ -# rubocop - -> 格式化 Ruby 文件. - -- 检查当前目录中的所有文件(包括子目录): - -`rubocop` - -- 检查一个或多个指定文件或目录: - -`rubocop {{目录 / 文件名}} {{目录 /}}` - -- 将输出写入指定文件: - -`rubocop --out {{目录 / 文件名}}` - -- 查看规则列表(格式化规则): - -`rubocop --show-cops` - -- 排除格式规则: - -`rubocop --except {{规则 1}} {{规则 2}}` - -- 只运行指定的规则: - -`rubocop --only {{规则 1}} {{规则 2}}` - -- 自动更正文件(实验): - -`rubocop --auto-correct` diff --git a/pages.zh/osx/say.md b/pages.zh/osx/say.md index 627ec437e85a6a..d16df0e68664d0 100644 --- a/pages.zh/osx/say.md +++ b/pages.zh/osx/say.md @@ -1,23 +1,24 @@ # say -> 将文本转换为语音. +> 将文本转换为语音。 +> 更多信息:. -- 大声说出一个句子: +- 大声说出一个句子: `say "{{你好,世界!}}"` -- 播放文本文件内容音频: +- 播放文本文件内容音频: `say -f {{文件名.txt}}` -- 用自定义的语音和语音速率说出一个句子: +- 用自定义的语音和语音速率说出一个句子: `say -v {{语音库名}} -r {{每分钟多少词}} "{{你好,我可以说中文.}}"` -- 列出可用的语音库: +- 列出可用的语音库: `say --voice="?"` -- 创建文本的音频文件: +- 创建文本的音频文件: `say -o {{文件名.aiff}} "{{你好,请将录音内容输出到文件.}}"` diff --git a/pages.zh/osx/scutil.md b/pages.zh/osx/scutil.md index 4fd77d6a872ae5..840b0bfe10afad 100644 --- a/pages.zh/osx/scutil.md +++ b/pages.zh/osx/scutil.md @@ -1,28 +1,29 @@ # scutil -> 管理系统配置参数. -> 设置配置时必须是 root 权限. +> 管理系统配置参数。 +> 设置配置时必须是 root 权限。 +> 更多信息:. -- 显示 DNS 配置: +- 显示 DNS 配置: `scutil --dns` -- 显示代理配置: +- 显示代理配置: `scutil --proxy` -- 获取计算机名称: +- 获取计算机名称: `scutil --get ComputerName` -- 设置计算机名称: +- 设置计算机名称: `sudo scutil --set ComputerName {{我的计算机名}}` -- 获取主机名 ( HostName ): +- 获取主机名(HostName): `scutil --get HostName` -- 设置主机名: +- 设置主机名: `scutil --set HostName {{hostname}}` diff --git a/pages.zh/osx/sed.md b/pages.zh/osx/sed.md index 08c403c8e18057..184df2d06abc27 100644 --- a/pages.zh/osx/sed.md +++ b/pages.zh/osx/sed.md @@ -1,32 +1,32 @@ # sed -> 以可用脚本的来批量编辑文本. -> 更多信息: . +> 以可用脚本的来批量编辑文本。 +> 更多信息:. -- 替换文件中第一个出现的字符串,并打印结果: +- 替换文件中第一个出现的字符串,并打印结果: `sed 's/{{查找内容}}/{{替换内容}}/' {{文件名}}` -- 替换文件中所有符合正则表达式的部分: +- 替换文件中所有符合正则表达式的部分: `sed -E 's/{{正则表达式}}/{{替换内容}}/g' {{文件名}}` -- 替换文件中所有出现的字符串,覆盖文件(直接覆盖文件): +- 替换文件中所有出现的字符串,覆盖文件(直接覆盖文件): `sed --in-place='' 's/{{查找内容}}/{{替换内容}}/g' {{文件名}}` -- 仅替换与行模式(一种搜索条件)匹配的行内容: +- 仅替换与行模式(一种搜索条件)匹配的行内容: `sed '/{{行模式}}/s/{{查找内容}}/{{替换内容}}/' {{文件名}}` -- 只打印第 n 行到下一行之间的文本: +- 只打印第 n 行到下一行之间的文本: `sed -n '{{行号}},/^$/p' {{文件名}}` -- 将多个查找替换表达式应用于文件: +- 将多个查找替换表达式应用于文件: `sed -e 's/{{查找内容}}/{{替换内容}}/' -e 's/{{查找内容}}/{{替换内容}}/' {{文件名}}` -- 将分隔符 / 替换为查找或替换模式中没有用到的的任何其他字符,例如 # (用于查找或替换内容中使用了 / 的情况): +- 将分隔符 / 替换为查找或替换模式中没有用到的的任何其他字符,例如 #(用于查找或替换内容中使用了 / 的情况): `sed 's#{{查找内容}}#{{替换内容}}#' {{文件名}}` diff --git a/pages.zh/osx/shuf.md b/pages.zh/osx/shuf.md index 673d920c6d1141..f19ee6211b0cc2 100644 --- a/pages.zh/osx/shuf.md +++ b/pages.zh/osx/shuf.md @@ -1,19 +1,20 @@ # shuf -> 生成随机排列. +> 生成随机排列。 +> 更多信息:. -- 随机化文件中的行顺序并输出结果: +- 随机化文件中的行顺序并输出结果: `shuf {{文件名}}` -- 只输出结果的前 5 条: +- 只输出结果的前 5 条: `shuf -n {{5}} {{文件名}}` -- 将结果输出写入另一个文件: +- 将结果输出写入另一个文件: `shuf {{文件名}} -o {{输出_文件名}}` -- 生成范围 (1-10) 内的随机数: +- 生成范围(1-10)内的随机数: `shuf -i {{1-10}}` diff --git a/pages.zh/osx/shutdown.md b/pages.zh/osx/shutdown.md index 589d220511c5f1..270252826c7704 100644 --- a/pages.zh/osx/shutdown.md +++ b/pages.zh/osx/shutdown.md @@ -1,19 +1,28 @@ # shutdown -> 关闭并重新启动系统. +> 关闭并重新启动系统。 +> 更多信息:. -- 立即关机: +- 立即关机: `shutdown -h now` -- 立即休眠: +- 立即休眠: `shutdown -s now` -- 立即重启: +- 立即重启: `shutdown -r now` -- 倒计时 5 分钟重启: +- 倒计时 5 分钟重启: `shutdown -r +{{5}}` + +- 在下午 1:00(使用 24 小时时钟)关机: + +`shutdown -h {{1300}}` + +- 在 2042 年 5 月 10 日上午 11:30 重新启动(输入格式:年年月月日日时时分分): + +`shutdown -r {{4205101130}}` diff --git a/pages.zh/osx/sips.md b/pages.zh/osx/sips.md index af60f00f843479..5dea73ff50ad5c 100644 --- a/pages.zh/osx/sips.md +++ b/pages.zh/osx/sips.md @@ -1,28 +1,29 @@ # sips -> 苹果的处理文件脚本系统. -> 光栅 / 查询图像 和 颜色同步 ICC 配置文件. +> 苹果的处理文件脚本系统。 +> 光栅 / 查询图像 和 颜色同步 ICC 配置文件。 +> 更多信息:. -- S 指定一个输出目录,这样原始文件就不会被修改: +- S 指定一个输出目录,这样原始文件就不会被修改: `sips --out {{目标 / 文件夹 / 输出文件夹}}` -- 以指定的大小对图像重新采样,图像纵横比可能会更改: +- 以指定的大小对图像重新采样,图像纵横比可能会更改: `sips -z {{1920}} {{300}} {{图片文件。扩展名}}` -- 对图像重新取样,使高度和宽度不大于指定的大小(注意大写 Z): +- 对图像重新取样,使高度和宽度不大于指定的大小(注意大写 Z): `sips -Z {{1920}} {{300}} {{图片文件。扩展名}}` -- 对目录中的所有图像重新取样,以适应 960px 的宽度(保持纵横比): +- 对目录中的所有图像重新取样,以适应 960px 的宽度(保持纵横比): `sips --resampleWidth {{960}} {{目标 / 文件夹 / 所有图片文件}}` -- 将图像从 CMYK 转换为 RGB: +- 将图像从 CMYK 转换为 RGB: `sips --matchTo '/System/Library/ColorSync/Profiles/Generic RGB Profile.icc' {{目标 / 文件夹 / 图片。扩展}} {{目标 / 文件夹 / 输出文件夹}}` -- 从图像中删除 ColorSync ICC 配置: +- 从图像中删除 ColorSync ICC 配置: `sips -d profile --deleteColorManagementProperties {{目标 / 文件夹 / 图片。扩展}}` diff --git a/pages.zh/osx/softwareupdate.md b/pages.zh/osx/softwareupdate.md index 920983585d7f43..3ea61bf24fb2a2 100644 --- a/pages.zh/osx/softwareupdate.md +++ b/pages.zh/osx/softwareupdate.md @@ -1,19 +1,20 @@ # softwareupdate -> 通过命令行更新 MacOS 应用商店中应用程序的工具. +> 通过命令行更新 macOS 应用商店中应用程序的工具。 +> 更多信息:. -- 列出所有可用的更新: +- 列出所有可用的更新: `softwareupdate -l` -- 下载并安装所有更新: +- 下载并安装所有更新: `softwareupdate -ia` -- 下载并安装所有推荐的更新: +- 下载并安装所有推荐的更新: `softwareupdate -ir` -- 下载并安装特定的应用程序: +- 下载并安装特定的应用程序: `softwareupdate -i {{更新应用程序名}}` diff --git a/pages.zh/osx/split.md b/pages.zh/osx/split.md index 88fd3711067846..818372737320a6 100644 --- a/pages.zh/osx/split.md +++ b/pages.zh/osx/split.md @@ -1,15 +1,16 @@ # split -> 把一个文件拆分成几块. +> 把一个文件拆分成几块。 +> 更多信息:. -- 分割一个文件,每个分割部分有 10 行(除了最后一个): +- 分割一个文件,每个分割部分有 10 行(除了最后一个): `split -l {{10}} {{文件名}}` -- 用正则表达式拆分文件。匹配行将是下一个输出文件的第一行: +- 用正则表达式拆分文件。匹配行将是下一个输出文件的第一行: `split -p {{cat|^[dh]og}} {{文件名}}` -- 拆分一个文件,每个拆分中有 512 个字节(除了最后一个文件,使用 512K 表示 Kb,512M 表示 Mb): +- 拆分一个文件,每个拆分中有 512 个字节(除了最后一个文件,使用 512K 表示 Kb,512M 表示 Mb): `split -b {{512}} {{文件名}}` diff --git a/pages.zh/osx/ssh-add.md b/pages.zh/osx/ssh-add.md deleted file mode 100644 index 71076e47b048c5..00000000000000 --- a/pages.zh/osx/ssh-add.md +++ /dev/null @@ -1,28 +0,0 @@ -# ssh-add - -> 在 ssh 代理中管理加载的 ssh 密钥. -> 需要确保 ssh 代理已启动并正在运行以加载其中的密钥. - -- 将 `~/.ssh` 中的默认 ssh 密钥添加到 `ssh` 代理: - -`ssh-add` - -- 向 ssh 代理添加指定密钥: - -`ssh-add {{目录 / 私钥文件}}` - -- 列出当前加载的密钥的指纹: - -`ssh-add -l` - -- 从 ssh 代理中删除密钥: - -`ssh-add -d {{目录 / 私钥文件}}` - -- 从 ssh 代理中删除所有当前已有的密钥: - -`ssh-add -D` - -- 向 ssh 代理和密钥链添加密钥: - -`ssh-add -K {{目录 / 私钥文件}}` diff --git a/pages.zh/osx/sshuttle.md b/pages.zh/osx/sshuttle.md deleted file mode 100644 index b2eebe8fd3e398..00000000000000 --- a/pages.zh/osx/sshuttle.md +++ /dev/null @@ -1,16 +0,0 @@ -# sshuttle - -> 通过 ssh 连接传输流量的透明代理服务器. -> 不需要管理员或远程 ssh 服务器上的任何特殊设置. - -- 通过远程 ssh 服务器转发所有 IPv4 TCP 流量: - -`sshuttle --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}}` - -- 转发所有 IPv4 TCP 和 DNS 流量: - -`sshuttle --dns --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}}` - -- 使用 tproxy 方法转发所有 IPv4 和 IPv6 流量: - -`sudo sshuttle --method=tproxy --remote={{用户名}}@{{服务器名}} {{0.0.0.0/0}} {{::/0}} --exclude={{你本地 IP 地址}} --exclude={{SSH 服务器的 IP 地址}}` diff --git a/pages.zh/osx/stat.md b/pages.zh/osx/stat.md index 9909f061bdf3de..d96bee15114bf4 100644 --- a/pages.zh/osx/stat.md +++ b/pages.zh/osx/stat.md @@ -1,23 +1,24 @@ # stat -> 显示文件状态. +> 显示文件状态。 +> 更多信息:. -- 显示文件属性,如大小、权限、创建和访问日期等: +- 显示文件属性,如大小、权限、创建和访问日期等: `stat {{文件}}` -- 与上面相同,但更详细(更类似于 Linux 的 `stat`): +- 与上面相同,但更详细(更类似于 Linux 的 `stat`): `stat -x {{文件}}` -- 只显示文件权限: +- 只显示文件权限: `stat -f %Mp%Lp {{文件}}` -- 显示文件的所有者和所属组: +- 显示文件的所有者和所属组: `stat -f "%Su %Sg" {{文件}}` -- 以字节为单位显示文件的大小: +- 以字节为单位显示文件的大小: `stat -f "%z %N" {{文件}}` diff --git a/pages.zh/osx/sw_vers.md b/pages.zh/osx/sw_vers.md index a76ee69f6f877a..ceef0e3676c2ac 100644 --- a/pages.zh/osx/sw_vers.md +++ b/pages.zh/osx/sw_vers.md @@ -1,11 +1,16 @@ # sw_vers -> 打印 MacOS 软件版本信息. +> 打印 macOS 操作系统的版本信息。 +> 更多信息:. -- 打印 MacOS 版本: +- 打印所有可用信息(操作系统名称、版本号和构建版本): + +`sw_vers` + +- 只打印操作系统的版本号: `sw_vers -productVersion` -- 打印 MacOS 构建版本: +- 只打印构建版本的标识符: `sw_vers -buildVersion` diff --git a/pages.zh/osx/sysctl.md b/pages.zh/osx/sysctl.md index e5f203e710db46..ec9fa9d1b67a88 100644 --- a/pages.zh/osx/sysctl.md +++ b/pages.zh/osx/sysctl.md @@ -1,23 +1,24 @@ # sysctl -> 访问内核状态信息. +> 访问内核状态信息。 +> 更多信息:. -- 显示所有可用变量及其值: +- 显示所有可用变量及其值: `sysctl -a` -- 显示 Apple 型号标识符: +- 显示 Apple 型号标识符: `sysctl -n hw.model` -- 显示 CPU 模型: +- 显示 CPU 模型: `sysctl -n machdep.cpu.brand_string` -- 显示可用的 CPU 功能 (MMX, SSE, SSE2, SSE3, AES, 等): +- 显示可用的 CPU 功能(MMX, SSE, SSE2, SSE3, AES, 等): `sysctl -n machdep.cpu.features` -- 设置一个可更改的内核状态变量: +- 设置一个可更改的内核状态变量: `sysctl -w {{部分。可修改的变量}}={{值}}` diff --git a/pages.zh/osx/system_profiler.md b/pages.zh/osx/system_profiler.md index ad86347194e641..2a07fe3da09883 100644 --- a/pages.zh/osx/system_profiler.md +++ b/pages.zh/osx/system_profiler.md @@ -1,15 +1,16 @@ # system_profiler -> 报告系统硬件和软件配置. +> 报告系统硬件和软件配置。 +> 更多信息:. -- 显示可由 System Profiler.app 打开的完整系统资源报告: +- 显示可由 System Profiler.app 打开的完整系统资源报告: `system_profiler -xml > MyReport.spx` -- 显示硬件概述(型号、CPU、内存、串行等): +- 显示硬件概述(型号、CPU、内存、串行等): `system_profiler SPHardwareDataType` -- 打印系统序列号: +- 打印系统序列号: `system_profiler SPHardwareDataType|grep "Serial Number (system)" |awk '{print $4}'` diff --git a/pages.zh/osx/systemsetup.md b/pages.zh/osx/systemsetup.md index dbac41ab431525..66c8008a767c2f 100644 --- a/pages.zh/osx/systemsetup.md +++ b/pages.zh/osx/systemsetup.md @@ -1,23 +1,24 @@ # systemsetup -> 配置系统首选项计算机设置. +> 配置系统首选项计算机设置。 +> 更多信息:. -- 启用远程登录 (SSH): +- 启用远程登录(SSH): `systemsetup -setremotelogin on` -- 指定时区、NTP 服务器并启用网络时间: +- 指定时区、NTP 服务器并启用网络时间: `systemsetup -settimezone {{美国 / 太平洋}} -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime on` -- 使机器从不休眠,并在电源故障或内核死机时自动重新启动: +- 使机器从不休眠,并在电源故障或内核死机时自动重新启动: `systemsetup -setsleep off -setrestartpowerfailure on -setrestartfreeze on` -- disks 选择启动: +- disks 选择启动: `systemsetup -liststartupdisks` -- 指定新的启动盘: +- 指定新的启动盘: `systemsetup -setstartupdisk {{路径}}` diff --git a/pages.zh/osx/textutil.md b/pages.zh/osx/textutil.md index bd321b03ce2c83..eb9b96229f9f59 100644 --- a/pages.zh/osx/textutil.md +++ b/pages.zh/osx/textutil.md @@ -1,23 +1,24 @@ # textutil -> 用于操作各种格式的文本文件. +> 用于操作各种格式的文本文件。 +> 更多信息:. -- 显示有关 `foo.rtf` 的信息: +- 显示有关 `foo.rtf` 的信息: `textutil -info {{foo.rtf}}` -- 将 `foo.rtf` 转换为 `foo.html`: +- 将 `foo.rtf` 转换为 `foo.html`: `textutil -convert {{html}} {{foo.rtf}}` -- 将带格式的 rtf 文本转换为普通 txt 文本: +- 将带格式的 rtf 文本转换为普通 txt 文本: `textutil {{foo.rtf}} -convert {{txt}}` -- 将 `foo.txt` 转换为 `foo.rtf`, 字体使用 Times 字号 10: +- 将 `foo.txt` 转换为 `foo.rtf`, 字体使用 Times 字号 10: `textutil -convert {{rtf}} -font {{Times}} -fontsize {{10}} {{foo.txt}}` -- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果作为 `index.html` 写入,HTML 标题设置为"多个文件": +- 加载当前目录中的所有 RTF 文件,连接其内容,并将结果作为 `index.html` 写入,HTML 标题设置为"多个文件": `textutil -cat {{html}} -title "多个文件" -output {{index.html}} *.rtf` diff --git a/pages.zh/osx/top.md b/pages.zh/osx/top.md index 5728ea2a61c995..9559cbc5d78b5e 100644 --- a/pages.zh/osx/top.md +++ b/pages.zh/osx/top.md @@ -1,23 +1,24 @@ # top -> 显示运行进程的动态实时信息. +> 显示运行进程的动态实时信息。 +> 更多信息:. -- 执行 top 命令,界面中提供所有选项: +- 执行 top 命令,界面中提供所有选项: `top` -- 按内部内存大小排序进程(默认顺序 - 进程 ID): +- 按内部内存大小排序进程(默认顺序 - 进程 ID): `top -o mem` -- 首先按 CPU 启动顺序排序进程,然后按运行时间排序: +- 首先按 CPU 启动顺序排序进程,然后按运行时间排序: `top -o cpu -O time` -- 只显示给定用户拥有的进程: +- 只显示给定用户拥有的进程: `top -user {{用户名}}` -- 获取有关交互式命令的帮助(我测试并没看到这个功能): +- 获取有关交互式命令的帮助(我测试并没看到这个功能): `?` diff --git a/pages.zh/osx/trap.md b/pages.zh/osx/trap.md deleted file mode 100644 index 064aaabf7fdcc5..00000000000000 --- a/pages.zh/osx/trap.md +++ /dev/null @@ -1,20 +0,0 @@ -# trap - -> 在进程或操作系统接收到信号后自动执行命令. -> 可用于对用户中断或其他操作执行清理. - -- 列出设置 trap 的可用信号: - -`trap -l` - -- 列出当前 shell 程序的活动 trap 程序: - -`trap -p` - -- 设置 trap 以在检测到一个或多个信号时执行命令: - -`trap 'echo "检测到信号 {{SIGHUP}}"' {{SIGHUP}}` - -- 移除活动 trap: - -`trap - {{SIGHUP}} {{SIGINT}}` diff --git a/pages.zh/osx/tree.md b/pages.zh/osx/tree.md deleted file mode 100644 index c647baaeabb572..00000000000000 --- a/pages.zh/osx/tree.md +++ /dev/null @@ -1,31 +0,0 @@ -# tree - -> 以树的形式显示当前目录的内容. - -- 显示深度达到 “级数” 级的文件和目录(其中 1 表示当前目录): - -`tree -L {{级数}}` - -- 只显示目录: - -`tree -d` - -- 同时显示隐藏文件: - -`tree -a` - -- 打印没有缩进行的树,显示完整路径(使用`-N`不转义空格和特殊字符): - -`tree -i -f` - -- 以可读格式打印每个文件节点的大小,目录显示其累积大小(类似在`du`命令中所示): - -`tree -s -h --du` - -- 使用通配符(glob)模式在树层次结构中查找文件,并删除不包含匹配文件的目录: - -`tree -P '{{*.txt}}' --prune` - -- 在树层次结构中查找目录,删除不属于所需目录的目录: - -`tree -P {{文件夹名}} --matchdirs --prune` diff --git a/pages.zh/osx/uname.md b/pages.zh/osx/uname.md index dff966afc9e513..50813e6e879220 100644 --- a/pages.zh/osx/uname.md +++ b/pages.zh/osx/uname.md @@ -1,20 +1,25 @@ # uname -> 打印当前计算机及其上运行的操作系统的详细信息. -> 注意:有关操作系统的其他信息,请尝试使用 `sw-vers` 命令. +> 打印当前计算机及其上运行的操作系统的详细信息。 +> 注意:有关操作系统的其他信息,请尝试使用 `sw-vers` 命令。 +> 更多信息:. -- 打印硬件相关:架构信息和处理器: +- 打印内核名称: + +`uname` + +- 打印系统架构和处理器信息: `uname -mp` -- 打印软件相关信息:操作系统、版本号和版本: +- 打印内核名称、内核版本号和内核版本详细信息: `uname -srv` -- 打印系统的节点名称(主机名): +- 打印系统主机名: `uname -n` -- 打印所有可用的系统信息(硬件、软件、节点名): +- 打印所有可用的系统信息: `uname -a` diff --git a/pages.zh/osx/w.md b/pages.zh/osx/w.md index 02c932a36f26d3..d3d41d899ca02d 100644 --- a/pages.zh/osx/w.md +++ b/pages.zh/osx/w.md @@ -1,16 +1,17 @@ # w -> 显示谁登录以及他们在做什么. -> 打印用户登录、tty、远程主机、登录时间、空闲时间、当前进程. +> 显示谁登录以及他们在做什么。 +> 打印用户登录、tty、远程主机、登录时间、空闲时间、当前进程。 +> 更多信息:. -- 显示登录用户信息: +- 显示登录用户信息: `w` -- 显示没有标题的登录用户信息: +- 显示没有标题的登录用户信息: `w -h` -- 显示有关已登录用户的信息,按其空闲时间排序: +- 显示有关已登录用户的信息,按其空闲时间排序: `w -i` diff --git a/pages.zh/osx/wacaw.md b/pages.zh/osx/wacaw.md index 297a522090e7d6..bcf620bca14147 100644 --- a/pages.zh/osx/wacaw.md +++ b/pages.zh/osx/wacaw.md @@ -1,23 +1,24 @@ # wacaw -> 一个用于 MacOS 的小命令行工具,允许您从连接的摄像头捕获静止图片和视频 +> 一个用于 macOS 的小命令行工具,允许您从连接的摄像头捕获静止图片和视频。 +> 更多信息:. -- 从网络摄像机拍照: +- 从网络摄像机拍照: `wacaw {{文件名}}` -- 录制视频: +- 录制视频: `wacaw --video {{文件名}} -D {{录制多少秒}}` -- 用自定义分辨率拍照: +- 用自定义分辨率拍照: `wacaw -x {{宽}} -y {{高}} {{文件名}}` -- 将刚拍摄的图像复制到剪贴板: +- 将刚拍摄的图像复制到剪贴板: `wacaw --to-clipboard` -- 可用设备列表: +- 可用设备列表: `wacaw -L` diff --git a/pages.zh/osx/whereis.md b/pages.zh/osx/whereis.md deleted file mode 100644 index 1cae10f6120e62..00000000000000 --- a/pages.zh/osx/whereis.md +++ /dev/null @@ -1,19 +0,0 @@ -# whereis - -> 找到命令的二进制,源文件和手册文件. - -- 找到 `ssh` 命令的二进制、源文件和手册页: - -`whereis {{ssh}}` - -- 查找 `ls` 命令的二进制和手册页: - -`whereis -bm {{ls}}` - -- 找到 `gc` 的源文件和 `git` 的手册页: - -`whereis -s {{gcc}} -m {{git}}` - -- 仅在 /usr/bin/ 目录中查找 `gcc` 的二进制文件: - -`whereis -b -B {{/usr/bin/}} -f {{gcc}}` diff --git a/pages.zh/osx/wifi-password.md b/pages.zh/osx/wifi-password.md index 60a941ef6489ad..a44cb79b805c8b 100644 --- a/pages.zh/osx/wifi-password.md +++ b/pages.zh/osx/wifi-password.md @@ -1,16 +1,16 @@ # wifi-password -> 获取 wifi 的密码. -> 更多信息: . +> 获取 wifi 的密码。 +> 更多信息:. -- 获取你当前登录的 wifi 的密码: +- 获取你当前登录的 wifi 的密码: `wifi-password` -- 获取特定 SSID 的 wifi 的密码: +- 获取特定 SSID 的 wifi 的密码: `wifi-password {{ssid}}` -- 仅输出密码: +- 仅输出密码: `wifi-password -q` diff --git a/pages.zh/osx/xattr.md b/pages.zh/osx/xattr.md index 34c5c81ffe8d03..f415715d025233 100644 --- a/pages.zh/osx/xattr.md +++ b/pages.zh/osx/xattr.md @@ -1,23 +1,24 @@ # xattr -> 用于扩展文件系统属性的实用程序. +> 用于扩展文件系统属性的实用程序。 +> 更多信息:. -- 列出 键:值 列表,显示指定文件的值扩展属性: +- 列出 键:值 列表,显示指定文件的值扩展属性: `xattr -l {{文件名}}` -- 为给定文件写入属性: +- 为给定文件写入属性: `xattr -w {{属性键名}} {{属性值}} {{文件名}}` -- 从给定文件中删除属性: +- 从给定文件中删除属性: `xattr -d {{com.apple.quarantine}} {{文件名}}` -- 从给定文件中删除所有扩展属性: +- 从给定文件中删除所有扩展属性: `xattr -c {{文件名}}` -- 递归删除给定目录中文件的属性: +- 递归删除给定目录中文件的属性: `xattr -rd {{属性键名}} {{目录}}` diff --git a/pages.zh/osx/xcodebuild.md b/pages.zh/osx/xcodebuild.md index d07f304e10073d..0619c9a897ba11 100644 --- a/pages.zh/osx/xcodebuild.md +++ b/pages.zh/osx/xcodebuild.md @@ -1,15 +1,16 @@ # xcodebuild -> 构建 Xcode 项目. +> 构建 Xcode 项目。 +> 更多信息:. -- 构建工作区: +- 构建工作区: `xcodebuild -workspace {{工作区名.工作区}} -scheme {{主题名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}` -- 构建项目: +- 构建项目: `xcodebuild -target {{目标名}} -configuration {{配置名}} clean build SYMROOT={{SYMROOT_路径}}` -- 显示 SDK: +- 显示 SDK: `xcodebuild -showsdks` diff --git a/pages.zh/osx/xctool.md b/pages.zh/osx/xctool.md index 8120b2df2cd7b1..a56d99f6eac68a 100644 --- a/pages.zh/osx/xctool.md +++ b/pages.zh/osx/xctool.md @@ -1,15 +1,16 @@ # xctool -> 用于构建 Xcode 项目的工具. +> 用于构建 Xcode 项目的工具。 +> 更多信息:. -- 在没有任何工作区的情况下生成单个项目: +- 在没有任何工作区的情况下生成单个项目: `xctool -project {{你的项目.名称}} -scheme {{方案}} build` -- 构建属于工作区的项目: +- 构建属于工作区的项目: `xctool -workspace {{你的工作区.名字}} -scheme {{方案}} build` -- 清理、构建和执行所有测试: +- 清理、构建和执行所有测试: `xctool -workspace {{你的工作区.名字}} -scheme {{方案}} clean build test` diff --git a/pages.zh/osx/xed.md b/pages.zh/osx/xed.md index ef3e5733ab5b59..c89feb08b79a4e 100644 --- a/pages.zh/osx/xed.md +++ b/pages.zh/osx/xed.md @@ -1,15 +1,16 @@ # xed -> 用 Xcode 打开要编辑的文件. +> 用 Xcode 打开要编辑的文件。 +> 更多信息:. -- 用 XCode 打开文件 : +- 用 Xcode 打开文件: `xed {{文件名}}` -- 在 Xcode 中打开文件,如果不存在则创建: +- 在 Xcode 中打开文件,如果不存在则创建: `xed -c {{文件名}}` -- 在 Xcode 中打开一个文件并跳转到第 75 行: +- 在 Xcode 中打开一个文件并跳转到第 75 行: `xed -l 75 {{文件名}}` diff --git a/pages.zh/osx/xsltproc.md b/pages.zh/osx/xsltproc.md index 2cdb5a9633e80f..6848d0e24af89f 100644 --- a/pages.zh/osx/xsltproc.md +++ b/pages.zh/osx/xsltproc.md @@ -1,11 +1,12 @@ # xsltproc -> 用 XSLT 转换 XML 以生成输出(通常是 HTML 或 XML ). +> 用 XSLT 转换 XML 以生成输出(通常是 HTML 或 XML)。 +> 更多信息:. -- 使用特定的 XSLT 样式表转换 XML 文件: +- 使用特定的 XSLT 样式表转换 XML 文件: `xsltproc --output {{输出.html}} {{样式表.xslt}} {{xml 文件.xml}}` -- 将值传递给样式表中的参数: +- 将值传递给样式表中的参数: `xsltproc --output {{输出.html}} --stringparam {{键名}} {{值}} {{样式表.xslt}} {{xml 文件.xml}}` diff --git a/pages.zh/osx/yank.md b/pages.zh/osx/yank.md deleted file mode 100644 index f0a6d5d4a75f25..00000000000000 --- a/pages.zh/osx/yank.md +++ /dev/null @@ -1,19 +0,0 @@ -# yank - -> 从 stdin 读取输入并显示一个选择界面,该界面允许选择一个字段并将其复制到剪贴板. - -- 使用默认分隔符 (\f, \n, \r, \s, \t): - -`{{sudo dmesg}} | yank` - -- 输入单行: - -`{{sudo dmesg}} | yank -l` - -- 使用特定分 `=` 隔符输入: - -`{{echo hello=world}} | yank -d {{=}}` - -- 只有与特定正则表达式匹配的内容才输入: - -`{{ps ux}} | yank -g "{{[0-9]+}}"` diff --git a/pages.zh/sunos/dmesg.md b/pages.zh/sunos/dmesg.md index 71cdc1e019ca03..36df6a9c656aaf 100644 --- a/pages.zh/sunos/dmesg.md +++ b/pages.zh/sunos/dmesg.md @@ -1,16 +1,16 @@ # dmesg -> 将内核消息写入标准输出. -> 更多信息: . +> 将内核消息写入标准输出。 +> 更多信息:. -- 显示内核消息: +- 显示内核消息: `dmesg` -- 显示此系统上可用的物理内存: +- 显示此系统上可用的物理内存: `dmesg | grep -i memory` -- 一次显示一页内核消息: +- 一次显示一页内核消息: `dmesg | less` diff --git a/pages.zh/windows/assoc.md b/pages.zh/windows/assoc.md index 3d599ec912cde3..65966dc3066d37 100644 --- a/pages.zh/windows/assoc.md +++ b/pages.zh/windows/assoc.md @@ -1,15 +1,16 @@ # assoc -> 显示或修改文件扩展名关联. +> 显示或修改文件扩展名关联。 +> 更多信息:. -- 显示所有当前文件扩展名关联的列表: +- 显示所有当前文件扩展名关联的列表: `assoc` -- 显示指定扩展名的关联文件类型: +- 显示指定扩展名的关联文件类型: `assoc {{.txt}}` -- 将文件扩展名与特定的文件类型关联: +- 将文件扩展名与特定的文件类型关联: `assoc {{.txt}}={{txtfile}}` diff --git a/pages.zh/windows/attrib.md b/pages.zh/windows/attrib.md index 60bec0a5998311..f7455c59edff1e 100644 --- a/pages.zh/windows/attrib.md +++ b/pages.zh/windows/attrib.md @@ -1,27 +1,28 @@ # attrib -> 显示或修改文件和目录的属性. +> 显示或修改文件和目录的属性。 +> 更多信息:. -- 显示当前目录下所有文件的属性: +- 显示当前目录下所有文件的属性: `attrib` -- 显示当前目录和其子目录下所有文件的属性: +- 显示当前目录和其子目录下所有文件的属性: `attrib /S` -- 显示当前目录和其子目录下所有文件和目录的属性: +- 显示当前目录和其子目录下所有文件和目录的属性: `attrib /S /D` -- 为一个文件增加只读属性: +- 为一个文件增加只读属性: `attrib +R {{document.txt}}` -- 删除一个文件的系统和隐藏属性: +- 删除一个文件的系统和隐藏属性: `attrib -S -H {{document.txt}}` -- 为一个目录增加隐藏属性: +- 为一个目录增加隐藏属性: `attrib +H {{目录的路径}}` diff --git a/pages.zh/windows/choco-feature.md b/pages.zh/windows/choco-feature.md index 5c7f320647e5c5..873f975ef117bd 100644 --- a/pages.zh/windows/choco-feature.md +++ b/pages.zh/windows/choco-feature.md @@ -1,15 +1,16 @@ # choco feature -> Chocolatey 的交互功能. +> Chocolatey 的交互功能。 +> 更多信息:. -- 显示可用的功能列表: +- 显示可用的功能列表: `choco feature list` -- 启用一个功能: +- 启用一个功能: `choco feature enable --name {{功能名称}}` -- 禁用一个功能: +- 禁用一个功能: `choco feature disable --name {{功能名称}}` diff --git a/pages.zh/windows/choco-info.md b/pages.zh/windows/choco-info.md index fdfdccd5c3345b..a64cf492e47210 100644 --- a/pages.zh/windows/choco-info.md +++ b/pages.zh/windows/choco-info.md @@ -1,19 +1,20 @@ # choco info -> 显示有关 Chocolatey 包的详细信息. +> 显示有关 Chocolatey 包的详细信息。 +> 更多信息:. -- 显示指定包的信息: +- 显示指定包的信息: `choco info {{包名}}` -- 显示一个本地已安装包的信息: +- 显示一个本地已安装包的信息: `choco info {{包名}} --local-only` -- 从一个自定义的源来获取包的信息: +- 从一个自定义的源来获取包的信息: `choco info {{包名}} --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco info {{包名}} --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco-install.md b/pages.zh/windows/choco-install.md index 90143c5ef221b4..c76e76b5a342f1 100644 --- a/pages.zh/windows/choco-install.md +++ b/pages.zh/windows/choco-install.md @@ -1,35 +1,36 @@ # choco install -> 使用 Chocolatey 下载一个或多个包. +> 使用 Chocolatey 下载一个或多个包。 +> 更多信息:. -- 安装一个或多个用空格分隔的软件包: +- 安装一个或多个用空格分隔的软件包: `choco install {{包名 包名 ..}}` -- 从一个自定义的配置文件中安装包: +- 从一个自定义的配置文件中安装包: `choco install {{配置文件的路径}}` -- 安装一个特定的"nuspec"或"nupkg"文件: +- 安装一个特定的 "nuspec" 或 "nupkg" 文件: `choco install {{文件的路径}}` -- 安装一个指定版本的包: +- 安装一个指定版本的包: `choco install {{包名}} --version {{版本号}}` -- 允许安装一个包的多个版本: +- 允许安装一个包的多个版本: `choco install {{包名}} --allow-multiple` -- 自动确认所有提示: +- 自动确认所有提示: `choco install {{包名}} --yes` -- 从自定义的源处获取包: +- 从自定义的源处获取包: `choco install {{包名}} --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco install {{包名}} --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco-list.md b/pages.zh/windows/choco-list.md index 694d851c7df24e..af5928321f8672 100644 --- a/pages.zh/windows/choco-list.md +++ b/pages.zh/windows/choco-list.md @@ -1,27 +1,28 @@ # choco list -> 使用 Chocolatey 显示包列表. +> 使用 Chocolatey 显示包列表。 +> 更多信息:. -- 列出所有可用的包: +- 列出所有可用的包: `choco list` -- 列出所有本地已安装的包: +- 列出所有本地已安装的包: `choco list --local-only` -- 显示包含本地程序的列表: +- 显示包含本地程序的列表: `choco list --include-programs` -- 只显示已批准的包: +- 只显示已批准的包: `choco list --approved-only` -- Specify a custom source to display packages from 指定一个源来显示包列表: +- Specify a custom source to display packages from 指定一个源来显示包列表: `choco list --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco list --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco-new.md b/pages.zh/windows/choco-new.md index a5411afcaa7abb..77454d9f051255 100644 --- a/pages.zh/windows/choco-new.md +++ b/pages.zh/windows/choco-new.md @@ -1,23 +1,24 @@ # choco new -> 使用 Chocolatey 生成新的包规范文件. +> 使用 Chocolatey 生成新的包规范文件。 +> 更多信息:. -- 创建一个新的包框架: +- 创建一个新的包框架: `choco new {{包名}}` -- 创建一个新的指定版本的包: +- 创建一个新的指定版本的包: `choco new {{包名}} --version {{版本号}}` -- 创建一个新的包并指定维护者的名字: +- 创建一个新的包并指定维护者的名字: `choco new {{包名}} --maintainer {{维护者名字}}` -- 在指定目录下创建新的包: +- 在指定目录下创建新的包: `choco new {{包名}} --output-directory {{指定的目录路径}}` -- 创建一个新的包并指定其 32 位版和 64 位版的安装 URL: +- 创建一个新的包并指定其 32 位版和 64 位版的安装 URL: `choco new {{package_name}} url="{{url}}" url64="{{url}}"` diff --git a/pages.zh/windows/choco-outdated.md b/pages.zh/windows/choco-outdated.md index e555d1ceff9b4b..ff9d4bc707c27c 100644 --- a/pages.zh/windows/choco-outdated.md +++ b/pages.zh/windows/choco-outdated.md @@ -1,19 +1,20 @@ # choco outdated -> 使用 Chocolatey 检查过时的包. +> 使用 Chocolatey 检查过时的包。 +> 更多信息:. -- 用表格的形式列出过时的包: +- 用表格的形式列出过时的包: `choco outdated` -- 忽略输出中的固定包: +- 忽略输出中的固定包: `choco outdated --ignore-pinned` -- 从自定义的源处检查过时的包: +- 从自定义的源处检查过时的包: `choco outdated --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco outdated --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco-pack.md b/pages.zh/windows/choco-pack.md index 5fdbc9448be6c1..7ccaf15f9a0a9b 100644 --- a/pages.zh/windows/choco-pack.md +++ b/pages.zh/windows/choco-pack.md @@ -1,15 +1,16 @@ # choco pack > 将 nuspec 打包到已编译的 nupkg. +> 更多信息:. -- 将 nuspec 打包到已编译的 nupkg: +- 将 nuspec 打包到已编译的 nupkg: `choco pack {{nuspec 的路径}}` -- 将 nuspec 打包到已编译的 nupkg, 并指定生成的版本: +- 将 nuspec 打包到已编译的 nupkg, 并指定生成的版本: `choco pack {{nuspec 的路径}} --version {{版本号}}` -- 将 nuspec 打包到已编译的 nupkg, 并输出到指定的目录: +- 将 nuspec 打包到已编译的 nupkg, 并输出到指定的目录: `choco pack {{nuspec 的路径}} --output-directory {{输出目录的路径}}` diff --git a/pages.zh/windows/choco-pin.md b/pages.zh/windows/choco-pin.md index f9c56f9a4961f8..d01b8a4d612115 100644 --- a/pages.zh/windows/choco-pin.md +++ b/pages.zh/windows/choco-pin.md @@ -1,20 +1,21 @@ # choco pin -> 使用 Chocolatey 将一个包固定到指定的版本. -> 被固定版本的包会在更新时自动忽略. +> 使用 Chocolatey 将一个包固定到指定的版本。 +> 被固定版本的包会在更新时自动忽略。 +> 更多信息:. -- 显示被固定的包以及他们对应的版本号: +- 显示被固定的包以及他们对应的版本号: `choco pin list` -- 将一个包固定至当前版本: +- 将一个包固定至当前版本: `choco pin add --name {{包名}}` -- 将一个包固定直指定的版本: +- 将一个包固定直指定的版本: `choco pin add --name {{包名}} --version {{版本号}}` -- 移除指定包的固定状态: +- 移除指定包的固定状态: `choco pin remove --name {{包名}}` diff --git a/pages.zh/windows/choco-search.md b/pages.zh/windows/choco-search.md index 0fe072f193024f..f33ecf9f35b658 100644 --- a/pages.zh/windows/choco-search.md +++ b/pages.zh/windows/choco-search.md @@ -1,27 +1,28 @@ # choco search -> 使用 Chocolatey 搜索一个本地或远程的包. +> 使用 Chocolatey 搜索一个本地或远程的包。 +> 更多信息:. -- 搜索一个包: +- 搜索一个包: `choco search {{查询语句}}` -- 搜索一个本地的包: +- 搜索一个本地的包: `choco search {{查询语句}} --local-only` -- 只显示包含完全匹配的结果: +- 只显示包含完全匹配的结果: `choco search {{查询语句}} --exact` -- 自动确认所有提示: +- 自动确认所有提示: `choco search {{查询语句}} --yes` -- 从自定义的源处搜索包: +- 从自定义的源处搜索包: `choco search {{查询语句}} --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco search {{查询语句}} --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco-source.md b/pages.zh/windows/choco-source.md index a9dd661d674a1a..993b2d146677c5 100644 --- a/pages.zh/windows/choco-source.md +++ b/pages.zh/windows/choco-source.md @@ -1,31 +1,32 @@ # choco source -> 使用 Chocolatey 管理包的源. +> 使用 Chocolatey 管理包的源。 +> 更多信息:. -- 列出当前可用的源: +- 列出当前可用的源: `choco source list` -- 添加一个新的包源: +- 添加一个新的包源: `choco source add --name {{名称}} --source {{url}}` -- 添加包含凭据的新包源: +- 添加包含凭据的新包源: `choco source add --name {{名称}} --source {{url}} --user {{用户名}} --password {{密码}}` -- 使用客户端证书添加新的包源: +- 使用客户端证书添加新的包源: `choco source add --name {{名称}} --source {{url}} --cert {{证书的路径}}` -- 启用一个包源: +- 启用一个包源: `choco source enable --name {{名称}}` -- 禁用一个包源: +- 禁用一个包源: `choco source disable --name {{名称}}` -- 移除一个包源: +- 移除一个包源: `choco source remove --name {{名称}}` diff --git a/pages.zh/windows/choco-uninstall.md b/pages.zh/windows/choco-uninstall.md index 0bf5cc290a6f62..09c6c7daafd6b3 100644 --- a/pages.zh/windows/choco-uninstall.md +++ b/pages.zh/windows/choco-uninstall.md @@ -1,23 +1,24 @@ # choco uninstall -> 使用 Chocolatey 卸载一个或多个包. +> 使用 Chocolatey 卸载一个或多个包。 +> 更多信息:. -- 卸载一个或多个用空格分隔的软件包: +- 卸载一个或多个用空格分隔的软件包: `choco uninstall {{包名 『包名』 ..}}` -- 卸载一个指定版本的包: +- 卸载一个指定版本的包: `choco uninstall {{包名}} --version {{版本号}}` -- 自动确认所有提示: +- 自动确认所有提示: `choco uninstall {{包名}} --yes` -- 卸载时同时删除其所有的依赖: +- 卸载时同时删除其所有的依赖: `choco uninstall {{包名}} --remove-dependencies` -- 卸载全部包: +- 卸载全部包: `choco uninstall all` diff --git a/pages.zh/windows/choco-upgrade.md b/pages.zh/windows/choco-upgrade.md index bcbcf8117d3738..a7ad0d25eccb54 100644 --- a/pages.zh/windows/choco-upgrade.md +++ b/pages.zh/windows/choco-upgrade.md @@ -1,31 +1,32 @@ # choco upgrade -> 使用 Chocolatey 升级一个或多个包. +> 使用 Chocolatey 升级一个或多个包。 +> 更多信息:. -- 升级一个或多个用空格分隔的软件包: +- 升级一个或多个用空格分隔的软件包: `choco upgrade {{包名 包名 ..}}` -- 将一个包升级到指定版本: +- 将一个包升级到指定版本: `choco upgrade {{包名}} --version {{版本号}}` -- 升级全部包: +- 升级全部包: `choco upgrade all` -- 升级除指定的用逗号分隔的包之外的所有包: +- 升级除指定的用逗号分隔的包之外的所有包: `choco upgrade all --except "{{包名 , 包名 ..}}"` -- 自动确认所有提示: +- 自动确认所有提示: `choco upgrade {{包名}} --yes` -- 从自定义源处升级包: +- 从自定义源处升级包: `choco upgrade {{包名}} --source {{源 URL|别名}}` -- 提供一个用户名和密码来进行验证: +- 提供一个用户名和密码来进行验证: `choco upgrade {{包}} --user {{用户名}} --password {{密码}}` diff --git a/pages.zh/windows/choco.md b/pages.zh/windows/choco.md index 768543203e06c7..717a821afaa0f4 100644 --- a/pages.zh/windows/choco.md +++ b/pages.zh/windows/choco.md @@ -1,20 +1,21 @@ # choco -> Chocolatey 包管理器的命令行界面. -> 参见 `choco install`, `choco upgrade` 和其他的页面来获取额外的信息. +> Chocolatey 包管理器的命令行界面。 +> 此命令也有关于其子命令的文件,例如:`choco install`. +> 更多信息:. -- 执行 Chocolatey 命令: +- 执行 Chocolatey 命令: `choco {{命令}}` -- 显示基本的帮助页面: +- 显示基本的帮助页面: `choco -?` -- 显示指定命令的帮助页面: +- 显示指定命令的帮助页面: `choco {{命令}} -?` -- 显示 Chocolatey 的版本: +- 显示 Chocolatey 的版本: `choco --version` diff --git a/pages.zh/windows/chrome.md b/pages.zh/windows/chrome.md new file mode 100644 index 00000000000000..880439337d65d7 --- /dev/null +++ b/pages.zh/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> 这是 `chromium` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr chromium` diff --git a/pages.zh/windows/cinst.md b/pages.zh/windows/cinst.md new file mode 100644 index 00000000000000..5655e0f70fc1d5 --- /dev/null +++ b/pages.zh/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> 这是 `choco install` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr choco install` diff --git a/pages.zh/windows/cipher.md b/pages.zh/windows/cipher.md index 3f546c6a071cf3..360a5e4cb251fa 100644 --- a/pages.zh/windows/cipher.md +++ b/pages.zh/windows/cipher.md @@ -1,15 +1,16 @@ # cipher -> 加密或解密 NTFS 驱动器上的文件. +> 加密或解密 NTFS 驱动器上的文件。 +> 更多信息:. -- 加密文件或目录: +- 加密文件或目录: `cipher /e:{{路径/文件或目录}}` -- 解密文件或目录: +- 解密文件或目录: `cipher /d:{{路径/文件或目录}}` -- 安全地删除文件或目录: +- 安全地删除文件或目录: `cipher /w:{{路径/文件或目录}}` diff --git a/pages.zh/windows/clip.md b/pages.zh/windows/clip.md index 63b10b9cdb6a58..eb19960a7bfccf 100644 --- a/pages.zh/windows/clip.md +++ b/pages.zh/windows/clip.md @@ -1,11 +1,12 @@ # clip -> 将输入的内容复制到 Windows 的剪贴板. +> 将输入的内容复制到 Windows 的剪贴板。 +> 更多信息:. -- 用管道将命令的输出内容复制到 Windows 剪贴板: +- 用管道将命令的输出内容复制到 Windows 剪贴板: `{{dir}} | clip` -- 将一个文件中的内容复制到 Windows 剪贴板: +- 将一个文件中的内容复制到 Windows 剪贴板: `clip < {{文件的路径}}` diff --git a/pages.zh/windows/clist.md b/pages.zh/windows/clist.md new file mode 100644 index 00000000000000..ea599756ebe061 --- /dev/null +++ b/pages.zh/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> 这是 `choco list` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr choco list` diff --git a/pages.zh/windows/cls.md b/pages.zh/windows/cls.md index 0b37606cf81287..21c26f1098578e 100644 --- a/pages.zh/windows/cls.md +++ b/pages.zh/windows/cls.md @@ -1,7 +1,8 @@ # cls -> 清屏. +> 清屏。 +> 更多信息:. -- 清屏: +- 清屏: `cls` diff --git a/pages.zh/windows/cmd.md b/pages.zh/windows/cmd.md index a8d2c5df1da9c8..4ed424839304ce 100644 --- a/pages.zh/windows/cmd.md +++ b/pages.zh/windows/cmd.md @@ -1,35 +1,36 @@ # cmd -> Windows 命令解释器. +> Windows 命令解释器。 +> 更多信息:. -- 开启一个新的命令行实例: +- 开启一个新的命令行实例: `cmd` -- 运行指定的命令然后退出: +- 运行指定的命令然后退出: `cmd /c "{{命令}}"` -- 执行一个指定的命令,之后进入一个交互式 shell: +- 执行一个指定的命令,之后进入一个交互式 shell: `cmd /k "{{命令}}"` -- 不显示命令的输出结果: +- 不显示命令的输出结果: `cmd /q` -- 启用或禁用命令扩展: +- 启用或禁用命令扩展: `cmd /e:{{on|off}}` -- 启用或禁用文件和目录名的自动补全: +- 启用或禁用文件和目录名的自动补全: `cmd /f:{{on|off}}` -- 启用或禁用环境变量扩展: +- 启用或禁用环境变量扩展: `cmd /v:{{on|off}}` -- 强制输出内容使用 Unicode 编码: +- 强制输出内容使用 Unicode 编码: `cmd /u` diff --git a/pages.zh/windows/cmstp.md b/pages.zh/windows/cmstp.md index 7f4aebec45a4ba..fd1142be4dc5f2 100644 --- a/pages.zh/windows/cmstp.md +++ b/pages.zh/windows/cmstp.md @@ -1,35 +1,36 @@ # cmstp -> 用于管理连接服务配置文件的命令行工具. +> 用于管理连接服务配置文件的命令行工具。 +> 更多信息:. -- 安装指定的配置文件: +- 安装指定的配置文件: `cmstp "{{配置文件的路径}}"` -- 安装时不创建桌面快捷方式: +- 安装时不创建桌面快捷方式: `cmstp /ns "{{配置文件的路径}}"` -- 安装时不检查依赖: +- 安装时不检查依赖: `cmstp /nf "{{配置文件的路径}}"` -- 仅为当前用户安装: +- 仅为当前用户安装: `cmstp /su "{{配置文件的路径}}"` -- 为所有用户安装 (需要管理员权限): +- 为所有用户安装(需要管理员权限): `cmstp /au "{{配置文件的路径}}"` -- 静默安装: +- 静默安装: `cmstp /s "{{配置文件的路径}}"` -- 卸载一个指定的配置文件: +- 卸载一个指定的配置文件: `cmstp /u "{{配置文件的路径}}"` -- 静默删除: +- 静默删除: `cmstp /u /s "{{配置文件的路径}}"` diff --git a/pages.zh/windows/color.md b/pages.zh/windows/color.md index 5c9417c8f97369..bd6a6263a0af0f 100644 --- a/pages.zh/windows/color.md +++ b/pages.zh/windows/color.md @@ -1,15 +1,16 @@ # color -> 设置控制台的前景色和背景色. +> 设置控制台的前景色和背景色。 +> 更多信息:. -- 将控制台颜色恢复至默认值: +- 将控制台颜色恢复至默认值: `color` -- 列出可用的颜色值和详细信息: +- 列出可用的颜色值和详细信息: `color /?` -- 将控制台前景色和背景色设置为指定颜色: +- 将控制台前景色和背景色设置为指定颜色: `color {{前景色值}}{{背景色值}}` diff --git a/pages.zh/windows/comp.md b/pages.zh/windows/comp.md index b06934e642f2fd..abaf8d58fb7e38 100644 --- a/pages.zh/windows/comp.md +++ b/pages.zh/windows/comp.md @@ -1,36 +1,37 @@ # comp -> 比较两个文件或文件集的内容. -> 使用通配符 (*) 来比较文件集. +> 比较两个文件或文件集的内容。 +> 使用通配符(*)来比较文件集。 +> 更多信息:. -- 交互式比较文件: +- 交互式比较文件: `comp` -- 比较两个指定的文件: +- 比较两个指定的文件: `comp {{文件 1 的路径}} {{文件 2 的路径}}` -- 比较两个文件集: +- 比较两个文件集: `comp {{目录 1/*}} {{目录 2/*}}` -- 以十进制格式显示差异: +- 以十进制格式显示差异: `comp /d {{文件 1 的路径}} {{文件 2 的路径}}` -- 以 ASCII 字符显示差异: +- 以 ASCII 字符显示差异: `comp /a {{文件 1 的路径}} {{文件 2 的路径}}` -- 显示不同的行数: +- 显示不同的行数: `comp /l {{文件 1 的路径}} {{文件 2 的路径}}` -- 比较文件时不区分大小写: +- 比较文件时不区分大小写: `comp /c {{文件 1 的路径}} {{文件 2 的路径}}` -- 只比较每个文件前 5 行的内容: +- 只比较每个文件前 5 行的内容: `comp /n={{5}} {{文件 1 的路径}} {{文件 2 的路径}}` diff --git a/pages.zh/windows/cpush.md b/pages.zh/windows/cpush.md new file mode 100644 index 00000000000000..a226ae46c8120d --- /dev/null +++ b/pages.zh/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> 这是 `choco-push` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr choco-push` diff --git a/pages.zh/windows/cuninst.md b/pages.zh/windows/cuninst.md new file mode 100644 index 00000000000000..b07014074c7989 --- /dev/null +++ b/pages.zh/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> 这是 `choco uninstall` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr choco uninstall` diff --git a/pages.zh/windows/curl.md b/pages.zh/windows/curl.md new file mode 100644 index 00000000000000..8c11ed0d8cafbd --- /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/del.md b/pages.zh/windows/del.md index 0983449350f1b1..4fee6933ee9ff0 100644 --- a/pages.zh/windows/del.md +++ b/pages.zh/windows/del.md @@ -1,31 +1,32 @@ # del -> 删除一个或多个文件. +> 删除一个或多个文件。 +> 更多信息:. -- 删除一个或多个以空格分隔的文件: +- 删除一个或多个以空格分隔的文件: `del {{文件 文件 ..}}` -- 在删除每个文件之前提示确认: +- 在删除每个文件之前提示确认: `del {{文件}} /p` -- 强制删除只读文件: +- 强制删除只读文件: `del {{文件}} /f` -- 递归删除所有子目录中的文件: +- 递归删除所有子目录中的文件: `del {{文件}} /s` -- 在基于全局通配符删除文件时不提示确认: +- 在基于全局通配符删除文件时不提示确认: `del {{文件}} /q` -- 显示帮助和所有的属性列表: +- 显示帮助和所有的属性列表: `del /?` -- 根据指定的属性删除文件: +- 根据指定的属性删除文件: `del {{文件}} /a {{属性}}` diff --git a/pages.zh/windows/dir.md b/pages.zh/windows/dir.md index 1afe8c1117ec4b..c9c593a0df0e85 100644 --- a/pages.zh/windows/dir.md +++ b/pages.zh/windows/dir.md @@ -1,19 +1,20 @@ # dir -> 列出目录的内容. +> 列出目录的内容。 +> 更多信息:. -- 显示当前目录的内容: +- 显示当前目录的内容: `dir` -- 显示指定目录的内容: +- 显示指定目录的内容: `dir {{目录的路径}}` -- 显示当前目录的内容,包括隐藏的文件: +- 显示当前目录的内容,包括隐藏的文件: `dir /A` -- 显示指定目录的内容,包括隐藏的文件: +- 显示指定目录的内容,包括隐藏的文件: `dir {{目录的路径}} /A` diff --git a/pages.zh/windows/doskey.md b/pages.zh/windows/doskey.md index e27df46472bdee..769237fbb24ff2 100644 --- a/pages.zh/windows/doskey.md +++ b/pages.zh/windows/doskey.md @@ -1,31 +1,32 @@ # doskey -> 管理宏,Windows 命令和命令行. +> 管理宏,Windows 命令和命令行。 +> 更多信息:. -- 列出可用的宏: +- 列出可用的宏: `doskey /macros` -- 创建一个新的宏: +- 创建一个新的宏: `doskey {{宏的名称}} = "{{命令}}"` -- 为指定可执行文件创建新的宏: +- 为指定可执行文件创建新的宏: `doskey /exename={{可执行文件名}} {{宏的名称}} = "{{命令}}"` -- 删除一个宏: +- 删除一个宏: `doskey {{宏的名称}} =` -- 列出所有储存在内存中的命令: +- 列出所有储存在内存中的命令: `doskey /history` -- 将宏保存到文件以便于移植: +- 将宏保存到文件以便于移植: `doskey /macros > {{保存宏的文件名}}` -- 从文件中加载宏: +- 从文件中加载宏: `doskey /macrofile = {{保存宏的文件名}}` diff --git a/pages.zh/windows/driverquery.md b/pages.zh/windows/driverquery.md index bce46129dc46eb..973cf5f156dad5 100644 --- a/pages.zh/windows/driverquery.md +++ b/pages.zh/windows/driverquery.md @@ -1,31 +1,32 @@ # driverquery -> 显示已安装设备驱动程序的信息. +> 显示已安装设备驱动程序的信息。 +> 更多信息:. -- 显示所有已安装设备驱动程序的列表: +- 显示所有已安装设备驱动程序的列表: `driverquery` -- 以指定格式显示驱动程序的列表: +- 以指定格式显示驱动程序的列表: `driverquery /fo {{table|list|csv}}` -- 显示带有列的驱动程序列表,以表明它们是否已签名: +- 显示带有列的驱动程序列表,以表明它们是否已签名: `driverquery /si` -- 排除输出列表中的标题: +- 排除输出列表中的标题: `driverquery /nh` -- 显示远程计算机的驱动程序列表: +- 显示远程计算机的驱动程序列表: `driverquery /s {{主机名}} /u {{用户名}} /p {{密码}}` -- 显示详细信息的驱动程序列表 +- 显示详细信息的驱动程序列表: `driverquery /v` -- 显示详细的使用信息: +- 显示详细的使用信息: `driverquery /?` diff --git a/pages.zh/windows/eventcreate.md b/pages.zh/windows/eventcreate.md index 7e4b2a1e73f7a3..bb3fe83bebf900 100644 --- a/pages.zh/windows/eventcreate.md +++ b/pages.zh/windows/eventcreate.md @@ -1,20 +1,21 @@ # eventcreate -> 在事件日志中创建自定义条目. -> 事件 ID 可以是 1 到 1000 之间的任意数值. +> 在事件日志中创建自定义条目。 +> 事件 ID 可以是 1 到 1000 之间的任意数值。 +> 更多信息:. -- 在日志中创建一个具有给定 id(1-1000)的新事件: +- 在日志中创建一个具有给定 id(1-1000)的新事件: `eventcreate /t {{success|error|warning|information}} /id {{id}} /d "{{消息}}"` -- 在特定事件日志中创建事件: +- 在特定事件日志中创建事件: `eventcreate /l {{日志名}} /t {{类型}} /id {{id}} /d "{{消息}}"` -- 为新创建的事件指定来源: +- 为新创建的事件指定来源: `eventcreate /so {{来源名}} /t {{类型}} /id {{id}} /d "{{消息}}"` -- 在远程计算机的事件日志中创建事件: +- 在远程计算机的事件日志中创建事件: `eventcreate /s {{主机名}} /u {{用户名}} /p {{密码}} /t {{类型}} /id {{id}} /d "{{消息}}"` diff --git a/pages.zh/windows/exit.md b/pages.zh/windows/exit.md index 9e4ea6855fbcb1..1667e8876a5cec 100644 --- a/pages.zh/windows/exit.md +++ b/pages.zh/windows/exit.md @@ -1,15 +1,16 @@ # exit -> 退出当前的命令行实例或 bat 脚本. +> 退出当前的命令行实例或 bat 脚本。 +> 更多信息:. -- 退出当前的命令行实例: +- 退出当前的命令行实例: `exit` -- 退出当前的 bat 脚本: +- 退出当前的 bat 脚本: `exit /b` -- 使用一个指定的退出码退出: +- 使用一个指定的退出码退出: `exit {{退出码}}` diff --git a/pages.zh/windows/expand.md b/pages.zh/windows/expand.md index e6856c9d887480..ea41a3c4eb12f5 100644 --- a/pages.zh/windows/expand.md +++ b/pages.zh/windows/expand.md @@ -1,23 +1,24 @@ # expand -> 解压一个或多个 cab 文件. +> 解压一个或多个 cab 文件。 +> 更多信息:. -- 将单文件 cab 文件解压到指定目录: +- 将单文件 cab 文件解压到指定目录: `expand {{cab 文件路径}} {{指定的目录}}` -- 列出 cab 文件中的所有文件: +- 列出 cab 文件中的所有文件: `expand {{cab 文件路径}} {{指定的目录}} -d` -- 从 cab 文件中解压所有的文件: +- 从 cab 文件中解压所有的文件: `expand {{cab 文件路径}} {{指定的目录}} -f:*` -- 从 cab 文件中解压一个特定的文件: +- 从 cab 文件中解压一个特定的文件: `expand {{cab 文件路径}} {{指定的目录}} -f:{{文件名}}` -- 解压缩时忽略目录结构,并将它们添加到单个目录中: +- 解压缩时忽略目录结构,并将它们添加到单个目录中: `expand {{cab 文件路径}} {{指定的目录}} -i` diff --git a/pages.zh/windows/explorer.md b/pages.zh/windows/explorer.md index f9d68426dfd65d..5e4a3e57a78179 100644 --- a/pages.zh/windows/explorer.md +++ b/pages.zh/windows/explorer.md @@ -1,15 +1,16 @@ # explorer -> Windows 文件资源管理器. +> Windows 文件资源管理器。 +> 更多信息:. -- 打开 Windows 文件资源管理器: +- 打开 Windows 文件资源管理器: `explorer` -- 在当前目录打开 Windows 文件资源管理器: +- 在当前目录打开 Windows 文件资源管理器: `explorer .` -- 在指定目录打开 Windows 文件资源管理器: +- 在指定目录打开 Windows 文件资源管理器: `explorer {{path/to/directory}}` diff --git a/pages.zh/windows/fc.md b/pages.zh/windows/fc.md index b771935a7be82b..1ae408130ee9c7 100644 --- a/pages.zh/windows/fc.md +++ b/pages.zh/windows/fc.md @@ -1,32 +1,33 @@ # fc -> 比较两个文件或文件集之间的差异. -> 使用通配符 (*) 来比较文件集. +> 比较两个文件或文件集之间的差异。 +> 使用通配符(*)来比较文件集。 +> 更多信息:. -- 比较两个指定的文件: +- 比较两个指定的文件: `fc {{文件 1 的路径}} {{文件 2 的路径}}` -- 比较时不区分大小写: +- 比较时不区分大小写: `fc /c {{文件 1 的路径}} {{文件 2 的路径}}` -- 将文件作为 Unicode 文本来进行比较: +- 将文件作为 Unicode 文本来进行比较: `fc /u {{文件 1 的路径}} {{文件 2 的路径}}` -- 将文件作为 ASCII 文本来进行比较: +- 将文件作为 ASCII 文本来进行比较: `fc /l {{文件 1 的路径}} {{文件 2 的路径}}` -- 将文件作为二进制来比较: +- 将文件作为二进制来比较: `fc /b {{文件 1 的路径}} {{文件 2 的路径}}` -- 禁用制表符到空格的扩展: +- 禁用制表符到空格的扩展: `fc /t {{文件 1 的路径}} {{文件 2 的路径}}` -- 压缩空格(制表符和空格)进行比较: +- 压缩空格(制表符和空格)进行比较: `fc /w {{文件 1 的路径}} {{文件 2 的路径}}` diff --git a/pages.zh/windows/find.md b/pages.zh/windows/find.md index 94db4b54563086..6eb74f51d5efe3 100644 --- a/pages.zh/windows/find.md +++ b/pages.zh/windows/find.md @@ -1,19 +1,20 @@ # find -> 在一个或多个文件里查找指定字符串. +> 在一个或多个文件里查找指定字符串。 +> 更多信息:. -- 查找包含指定字符串的行: +- 查找包含指定字符串的行: `find {{字符串}} {{文件或目录的路径}}` -- 查找不包含指定字符串的行: +- 查找不包含指定字符串的行: `find {{字符串}} {{文件或目录的路径}} /v` -- 显示包含指定字符串的行的总数: +- 显示包含指定字符串的行的总数: `find {{字符串}} {{文件或目录的路径}} /c` -- 显示匹配的行的行数: +- 显示匹配的行的行数: `find {{字符串}} {{文件或目录的路径}} /n` diff --git a/pages.zh/windows/findstr.md b/pages.zh/windows/findstr.md index fe7b259dc81a24..2e9de2239dd6cf 100644 --- a/pages.zh/windows/findstr.md +++ b/pages.zh/windows/findstr.md @@ -1,35 +1,36 @@ # findstr -> 在一个或多个文件中查找指定的文本. +> 在一个或多个文件中查找指定的文本。 +> 更多信息:. -- 在所有文件中查找以空格分隔的字符串: +- 在所有文件中查找以空格分隔的字符串: `findstr "{{查询语句 查询语句 ..}}" *` -- 以递归方式在所有文件中查找以空格分隔的字符串: +- 以递归方式在所有文件中查找以空格分隔的字符串: `findstr /s "{{查询语句 查询语句 ..}}" *` -- 查找时不区分大小写: +- 查找时不区分大小写: `findstr /i "{{查询语句}}" *"` -- 使用正则表达式搜索: +- 使用正则表达式搜索: `findstr /r "{{正则表达式}}" *` -- 在所有文本文件中查找文字字符串(包含空格): +- 在所有文本文件中查找文字字符串(包含空格): `findstr /c:"{{查询语句}}" *.txt` -- 只查找完全匹配的行: +- 只查找完全匹配的行: `findstr /x "{{查询语句}}" *` -- 显示匹配的行的行数: +- 显示匹配的行的行数: `findstr /n "{{查询语句}}" *` -- 只显示匹配的文件名: +- 只显示匹配的文件名: `findstr /m "{{查询语句}}" *` diff --git a/pages.zh/windows/finger.md b/pages.zh/windows/finger.md index 2b6cfda1201ba6..eeb17c64648ba4 100644 --- a/pages.zh/windows/finger.md +++ b/pages.zh/windows/finger.md @@ -1,20 +1,21 @@ # finger -> 返回有关指定系统上的一个或多个用户的信息. -> 远程系统必须运行 Finger 服务. +> 返回有关指定系统上的一个或多个用户的信息。 +> 远程系统必须运行 Finger 服务。 +> 更多信息:. -- 显示有关特定用户的信息: +- 显示有关特定用户的信息: `finger {{用户名}}@{{主机名}}` -- 在指定的主机上显示所有用户的信息: +- 在指定的主机上显示所有用户的信息: `finger @{{主机名}}` -- 以更长的格式显示信息: +- 以更长的格式显示信息: `finger {{用户名}}@{{主机名}} -l` -- 显示帮助信息: +- 显示帮助信息: `finger /?` diff --git a/pages.zh/windows/fondue.md b/pages.zh/windows/fondue.md index 7e9c0f861be484..478d0676f4ac12 100644 --- a/pages.zh/windows/fondue.md +++ b/pages.zh/windows/fondue.md @@ -1,15 +1,16 @@ # fondue -> 可选 Windows 功能的命令行安装程序. +> 可选 Windows 功能的命令行安装程序。 +> 更多信息:. -- 启用一个指定的 Windows 功能: +- 启用一个指定的 Windows 功能: `fondue /enable-feature:{{功能}}` -- 向用户隐藏所有输出信息: +- 向用户隐藏所有输出信息: `fondue /enable-feature:{{功能}} /hide-ux:all` -- 为错误报告指定调用者进程名称: +- 为错误报告指定调用者进程名称: `fondue /enable-feature:{{功能}} /caller-name:{{名称}}` diff --git a/pages.zh/windows/forfiles.md b/pages.zh/windows/forfiles.md index b52e41ade27b26..7060b990adf26a 100644 --- a/pages.zh/windows/forfiles.md +++ b/pages.zh/windows/forfiles.md @@ -1,27 +1,28 @@ # forfiles -> 选择一个或多个文件以执行指定的命令. +> 选择一个或多个文件以执行指定的命令。 +> 更多信息:. -- 在当前的目录中寻找文件: +- 在当前的目录中寻找文件: `forfiles` -- 在一个指定目录中寻找文件: +- 在一个指定目录中寻找文件: `forfiles /p {{目录的路径}}` -- 为每个文件执行指定的命令: +- 为每个文件执行指定的命令: `forfiles /c "{{命令}}"` -- 使用通配符来寻找指定的文件: +- 使用通配符来寻找指定的文件: `forfiles /m {{通配符}}` -- 递归寻找文件: +- 递归寻找文件: `forfiles /s` -- 搜索超过 5 天的文件: +- 搜索超过 5 天的文件: `forfiles /d {{+5}}` diff --git a/pages.zh/windows/ftp.md b/pages.zh/windows/ftp.md index 8ef07a95b846eb..dbd041d0999b8c 100644 --- a/pages.zh/windows/ftp.md +++ b/pages.zh/windows/ftp.md @@ -1,35 +1,36 @@ # ftp -> 在本地和远程 FTP 服务器之间交互式传输文件. +> 在本地和远程 FTP 服务器之间交互式传输文件。 +> 更多信息:. -- 交互式连接一个远程的 FTP 服务: +- 交互式连接一个远程的 FTP 服务: `ftp {{主机名}}` -- 匿名登录: +- 匿名登录: `ftp -A {{主机名}}` -- 初始连接时禁用自动登录: +- 初始连接时禁用自动登录: `ftp -n {{主机名}}` -- 运行包含 FTP 命令列表的文件: +- 运行包含 FTP 命令列表的文件: `ftp -s:{{文件的路径}} {{主机名}}` -- 下载多个文件 (通配符表达式): +- 下载多个文件(通配符表达式): `mget {{*.png}}` -- 上传多个文件 (通配符表达式): +- 上传多个文件(通配符表达式): `mput {{*.zip}}` -- 在远程服务器上删除多个文件: +- 在远程服务器上删除多个文件: `mdelete {{*.txt}}` -- 显示详细的帮助: +- 显示详细的帮助: `ftp --help` diff --git a/pages.zh/windows/ftype.md b/pages.zh/windows/ftype.md index bfdd6035536967..9ee2df5b083b0b 100644 --- a/pages.zh/windows/ftype.md +++ b/pages.zh/windows/ftype.md @@ -1,15 +1,16 @@ # ftype -> 显示或修改用于文件扩展名关联的文件类型. +> 显示或修改用于文件扩展名关联的文件类型。 +> 更多信息:. -- 显示所有文件类型的列表: +- 显示所有文件类型的列表: `ftype` -- 显示特定文件类型的关联程序: +- 显示特定文件类型的关联程序: `ftype {{文件类型}}` -- 设置特定文件类型的关联程序: +- 设置特定文件类型的关联程序: `ftype {{文件类型}}="{{可执行命令的路径}}"` diff --git a/pages.zh/windows/get-filehash.md b/pages.zh/windows/get-filehash.md new file mode 100644 index 00000000000000..c8ce2b9bedd9e1 --- /dev/null +++ b/pages.zh/windows/get-filehash.md @@ -0,0 +1,12 @@ +# Get-FileHash + +> 计算一个文件的 HASH 值。 +> 更多信息:. + +- 使用 SHA256 算法计算给定文件的哈希值: + +`Get-FileHash {{文件路径}}` + +- 使用指定的哈希算法计算给定文件的哈希值: + +`Get-FileHash {{文件路径}} -Algorithm {{SHA1|SHA384|SHA256|SHA512|MD5}}` diff --git a/pages.zh/windows/getmac.md b/pages.zh/windows/getmac.md index 6de529ada2bd42..f102da58d64367 100644 --- a/pages.zh/windows/getmac.md +++ b/pages.zh/windows/getmac.md @@ -1,27 +1,28 @@ # getmac -> 显示系统的 MAC 地址. +> 显示系统的 MAC 地址。 +> 更多信息:. -- 显示当前系统的 MAC 地址: +- 显示当前系统的 MAC 地址: `getmac` -- 以特定格式显示详细信息: +- 以特定格式显示详细信息: `getmac /fo {{table|list|csv}}` -- 排除输出列表中的标题: +- 排除输出列表中的标题: `getmac /nh` -- 显示一个远程主机的 MAC 地址: +- 显示一个远程主机的 MAC 地址: `getmac /s {{主机名}} /u {{用户名}} /p {{密码}}` -- 详细显示 MAC 地址信息: +- 详细显示 MAC 地址信息: `getmac /v` -- 显示详细的帮助信息: +- 显示详细的帮助信息: `getmac /?` diff --git a/pages.zh/windows/ipconfig.md b/pages.zh/windows/ipconfig.md index 638366b07831ad..45106a6d75f20b 100644 --- a/pages.zh/windows/ipconfig.md +++ b/pages.zh/windows/ipconfig.md @@ -1,23 +1,24 @@ # ipconfig -> 显示和管理 Windows 的网络配置. +> 显示和管理 Windows 的网络配置。 +> 更多信息:. -- 显示网络适配器列表: +- 显示网络适配器列表: `ipconfig` -- 显示网络适配器的详细列表: +- 显示网络适配器的详细列表: `ipconfig /all` -- 为一个网络适配器重新获取 IP 地址: +- 为一个网络适配器重新获取 IP 地址: `ipconfig /renew {{适配器}}` -- 为一个网络适配器释放 IP 地址: +- 为一个网络适配器释放 IP 地址: `ipconfig /release {{适配器}}` -- 清除所有 DNS 缓存: +- 清除所有 DNS 缓存: `ipconfig /flushdns` diff --git a/pages.zh/windows/iscc.md b/pages.zh/windows/iscc.md index 57e1ea17d6aee5..973c320a50cd0f 100644 --- a/pages.zh/windows/iscc.md +++ b/pages.zh/windows/iscc.md @@ -1,16 +1,17 @@ # iscc -> Inno Setup 安装程序的编译器. -> 它将 Inno Setup 脚本编译为 Windows 安装程序可执行文件. +> Inno Setup 安装程序的编译器。 +> 它将 Inno Setup 脚本编译为 Windows 安装程序可执行文件。 +> 更多信息:. -- 编译一个 Inno Setup 脚本: +- 编译一个 Inno Setup 脚本: `iscc {{脚本路径.iss}}` -- 静默编译一个 Inno Setup 安装程序: +- 静默编译一个 Inno Setup 安装程序: `iscc /Q {{脚本路径.iss}}` -- 编译已签名的 Inno Setup 安装程序: +- 编译已签名的 Inno Setup 安装程序: `iscc /S={{名称}}={{命令}} {{脚本路径.iss}}` diff --git a/pages.zh/windows/iwr.md b/pages.zh/windows/iwr.md new file mode 100644 index 00000000000000..1ad3ec1056a8c7 --- /dev/null +++ b/pages.zh/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> 这是 `invoke-webrequest` 命令的一个别名。 + +- 原命令的文档在: + +`tldr invoke-webrequest` diff --git a/pages.zh/windows/logoff.md b/pages.zh/windows/logoff.md index e251fc6281835d..8e18a386be16c3 100644 --- a/pages.zh/windows/logoff.md +++ b/pages.zh/windows/logoff.md @@ -1,15 +1,16 @@ # logoff -> 注销登录会话. +> 注销登录会话。 +> 更多信息:. -- 注销当前会话: +- 注销当前会话: `logoff` -- 通过名称和 id 注销会话: +- 通过名称和 id 注销会话: `logoff {{会话名|会话 id}}` -- 在通过 RDP 连接的特定服务器上注销会话: +- 在通过 RDP 连接的特定服务器上注销会话: `logoff {{会话名|会话 id}} /server:{{服务器名}}` diff --git a/pages.zh/windows/mkdir.md b/pages.zh/windows/mkdir.md index 22009907a537b7..18bd4755818865 100644 --- a/pages.zh/windows/mkdir.md +++ b/pages.zh/windows/mkdir.md @@ -1,11 +1,12 @@ # mkdir -> 创建一个目录. +> 创建一个目录。 +> 更多信息:. -- 创建一个目录: +- 创建一个目录: `mkdir {{目录名}}` -- 递归创建目录及子目录: +- 递归创建目录及子目录: `mkdir {{子目录名}}` diff --git a/pages.zh/windows/mklink.md b/pages.zh/windows/mklink.md index f81758d00db914..294798c8f16513 100644 --- a/pages.zh/windows/mklink.md +++ b/pages.zh/windows/mklink.md @@ -1,19 +1,20 @@ # mklink -> 创建符号链接. +> 创建符号链接。 +> 更多信息:. -- 创建指向文件的符号链接: +- 创建指向文件的符号链接: `mklink {{链接文件的路径}} {{源文件路径}}` -- 创建指向目录的符号链接: +- 创建指向目录的符号链接: `mklink /d {{链接文件的路径}} {{源目录路径}}` -- 创建指向文件的硬链接: +- 创建指向文件的硬链接: `mklink /h {{链接文件的路径}} {{源目录路径}}` -- 创建目录链接: +- 创建目录链接: `mklink /j {{链接文件的路径}} {{源目录路径}}` diff --git a/pages.zh/windows/more.md b/pages.zh/windows/more.md index c6f6dbe2a805ae..e9426fcf24732c 100644 --- a/pages.zh/windows/more.md +++ b/pages.zh/windows/more.md @@ -1,31 +1,32 @@ # more -> 分页显示标准输入或文件的输出. +> 分页显示标准输入或文件的输出。 +> 更多信息:. -- 分页显示标准输入的输出: +- 分页显示标准输入的输出: `{{echo test}} | more` -- 分页显示一个或多个文件的内容: +- 分页显示一个或多个文件的内容: `more {{文件的路径}}` -- 将制表符转换为指定的空格数: +- 将制表符转换为指定的空格数: `more {{文件的路径}} /t{{空格数}}` -- 显示内容前先清屏: +- 显示内容前先清屏: `more {{文件的路径}} /c` -- 从第 5 行开始显示输出: +- 从第 5 行开始显示输出: `more {{文件的路径}} +{{5}}` -- 启用扩展交互模式(请参阅使用帮助): +- 启用扩展交互模式(请参阅使用帮助): `more {{文件的路径}} /e` -- 显示全部帮助信息: +- 显示全部帮助信息: `more /?` diff --git a/pages.zh/windows/msg.md b/pages.zh/windows/msg.md index b5318f4fc50c96..ef6ef5c0e38b0c 100644 --- a/pages.zh/windows/msg.md +++ b/pages.zh/windows/msg.md @@ -1,23 +1,24 @@ # msg -> 向指定的用户或会话发送信息. +> 向指定的用户或会话发送信息。 +> 更多信息:. -- 向指定的用户或会话发送信息: +- 向指定的用户或会话发送信息: `msg {{用户名|会话名|会话 id}} {{信息}}` -- 从标准输入发送信息: +- 从标准输入发送信息: `echo "{{信息}}" | msg {{用户名|会话名|会话 id}}` -- 向指定的服务器发送消息: +- 向指定的服务器发送消息: `msg /server:{{服务器名称}} {{用户名|会话名|会话 id}}` -- 向当前计算机的所有用户发送消息: +- 向当前计算机的所有用户发送消息: `msg *` -- 设置发送消息的延迟: +- 设置发送消息的延迟: `msg /time:{{秒}}` diff --git a/pages.zh/windows/path.md b/pages.zh/windows/path.md index 12d755829491d4..74f3e29b52f2c7 100644 --- a/pages.zh/windows/path.md +++ b/pages.zh/windows/path.md @@ -1,19 +1,20 @@ # path -> 显示或设置可执行文件的搜索路径. +> 显示或设置可执行文件的搜索路径。 +> 更多信息:. -- 显示当前的路径: +- 显示当前的路径: `path` -- 将路径设置为一个或多个以分号分隔的目录: +- 将路径设置为一个或多个以分号分隔的目录: `path {{目录的路径 1[; 目录的路径 2]}}` -- 将新的目录添加到源路径后: +- 将新的目录添加到源路径后: `path {{目录的路径}};%path%` -- 将命令提示符设置为仅搜索当前目录中的可执行文件: +- 将命令提示符设置为仅搜索当前目录中的可执行文件: `path ;` diff --git a/pages.zh/windows/pathping.md b/pages.zh/windows/pathping.md index cf524ae51b5dbf..f970831f402eb0 100644 --- a/pages.zh/windows/pathping.md +++ b/pages.zh/windows/pathping.md @@ -1,35 +1,36 @@ # pathping -> 一种结合了`ping`和`tracert`功能的跟踪路由工具. +> 一种结合了`ping`和`tracert`功能的跟踪路由工具。 +> 更多信息:. -- Ping 并追踪主机的路由: +- Ping 并追踪主机的路由: `pathping {{主机名}}` -- 不要对主机名执行 IP 地址的反向查找: +- 不要对主机名执行 IP 地址的反向查找: `pathping {{主机名}} -n` -- 指定要搜索目标的最大跃点数(默认值为 30): +- 指定要搜索目标的最大跃点数(默认值为 30): `pathping {{主机名}} -h {{最大跃点数}}` -- 指定 ping 之间等待的毫秒数(默认值为 240): +- 指定 ping 之间等待的毫秒数(默认值为 240): `pathping {{主机名}} -p {{时间}}` -- 指定每跳的查询数(默认值为 100): +- 指定每跳的查询数(默认值为 100): `pathping {{主机名}} -q {{查询语句}}` -- 强制使用 IPV4: +- 强制使用 IPV4: `pathping {{主机名}} -4` -- 强制使用 IPV6: +- 强制使用 IPV6: `pathping {{主机名}} -6` -- 显示详细的使用帮助: +- 显示详细的使用帮助: `pathping /?` diff --git a/pages.zh/windows/popd.md b/pages.zh/windows/popd.md index a0c1d89efdea01..ee79fd15063bdb 100644 --- a/pages.zh/windows/popd.md +++ b/pages.zh/windows/popd.md @@ -1,7 +1,8 @@ # popd -> 将当前目录切换到`pushd`命令存储的目录. +> 将当前目录切换到`pushd`命令存储的目录。 +> 更多信息:. -- 切换到储存在栈顶的目录: +- 切换到储存在栈顶的目录: `popd` diff --git a/pages.zh/windows/powershell.md b/pages.zh/windows/powershell.md index d30f7eae71b3a4..7718528f606899 100644 --- a/pages.zh/windows/powershell.md +++ b/pages.zh/windows/powershell.md @@ -1,32 +1,32 @@ # powershell -> 专为系统管理而设计的命令行 shell 和脚本语言. -> 更多信息: . +> 专为系统管理而设计的命令行 shell 和脚本语言。 +> 更多信息:. -- 在命令提示符窗口中启动 Windows PowerShell 会话: +- 在命令提示符窗口中启动 Windows PowerShell 会话: `powershell` -- 加载一个特定的 PowerShell 控制台文件: +- 加载一个特定的 PowerShell 控制台文件: `powershell -PSConsoleFile {{路径/file}}` -- 用指定版本的 PowerShell 启动会话: +- 用指定版本的 PowerShell 启动会话: `powershell -Version {{版本}}` -- 防止运行启动命令后 shell 退出: +- 防止运行启动命令后 shell 退出: `powershell -NoExit` -- 描述发送到 PowerShell 的数据格式: +- 描述发送到 PowerShell 的数据格式: `powershell -InputFormat {{Text|XML}}` -- 设定 PowerShell 输出的格式: +- 设定 PowerShell 输出的格式: `powershell -OutputFormat {{Text|XML}}` -- 显示帮助: +- 显示帮助: `powershell -Help` diff --git a/pages.zh/windows/print.md b/pages.zh/windows/print.md index 244faad8322c40..d0394009e89d67 100644 --- a/pages.zh/windows/print.md +++ b/pages.zh/windows/print.md @@ -1,11 +1,12 @@ # print -> 将文本文件打印到打印机. +> 将文本文件打印到打印机。 +> 更多信息:. -- 将文本文件打印到默认的打印机: +- 将文本文件打印到默认的打印机: `print {{文件的路径}}` -- 将文本文件打印到指定的打印机: +- 将文本文件打印到指定的打印机: `print /d:{{打印机}} {{文件的路径}}` diff --git a/pages.zh/windows/pushd.md b/pages.zh/windows/pushd.md index 8b5269465c50a3..3d92420f51b6bf 100644 --- a/pages.zh/windows/pushd.md +++ b/pages.zh/windows/pushd.md @@ -1,8 +1,9 @@ # pushd -> 将目录储存在栈顶以便稍后访问. -> 参考`popd`命令来切换到原目录. +> 将目录储存在栈顶以便稍后访问。 +> 参考`popd`命令来切换到原目录。 +> 更多信息:. -- 切换目录并将它放至栈: +- 切换目录并将它放至栈: `pushd {{目录}}` diff --git a/pages.zh/windows/pwlauncher.md b/pages.zh/windows/pwlauncher.md index bef759bf556325..84abb21cf4d0bb 100644 --- a/pages.zh/windows/pwlauncher.md +++ b/pages.zh/windows/pwlauncher.md @@ -1,11 +1,12 @@ # pwlauncher -> 用于管理 Windows To Go 启动选项的命令行工具. +> 用于管理 Windows To Go 启动选项的命令行工具。 +> 更多信息:. -- 显示当前 Windows To Go 的状态: +- 显示当前 Windows To Go 的状态: `pwlauncher` -- 启用或禁用 Windows To Go 的启动选项: +- 启用或禁用 Windows To Go 的启动选项: `pwlauncher /{{enable|disable}}` diff --git a/pages.zh/windows/pwsh-where.md b/pages.zh/windows/pwsh-where.md new file mode 100644 index 00000000000000..a1d6c6545004f1 --- /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 00000000000000..40efcc572d91eb --- /dev/null +++ b/pages.zh/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> 这是 `rmdir` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr rmdir` diff --git a/pages.zh/windows/rdpsign.md b/pages.zh/windows/rdpsign.md index ef45de0f47839f..c1434947ac8cab 100644 --- a/pages.zh/windows/rdpsign.md +++ b/pages.zh/windows/rdpsign.md @@ -1,23 +1,24 @@ # rdpsign -> 用于签名远程桌面协议(RDP)文件的工具. +> 用于签名远程桌面协议(RDP)文件的工具。 +> 更多信息:. -- 为一个 RDP 文件签名: +- 为一个 RDP 文件签名: `rdpsign {{文件路径.rdp}}` -- 使用一个指定的 sha256 哈希值为 RDP 文件签名: +- 使用一个指定的 sha256 哈希值为 RDP 文件签名: `rdpsign {{文件路径.rdp}} /sha265 {{哈希值}}` -- 启用静默输出: +- 启用静默输出: `rdpsign {{文件路径.rdp}} /q` -- 显示详细的信息、警告和状态: +- 显示详细的信息、警告和状态: `rdpsign {{文件路径.rdp}} /v` -- 在不更新文件的情况下将输出显示到标准输出来测试签名: +- 在不更新文件的情况下将输出显示到标准输出来测试签名: `rdpsign {{文件路径.rdp}} /l` diff --git a/pages.zh/windows/reg-add.md b/pages.zh/windows/reg-add.md index 29e15739a8acca..bbf439931061fe 100644 --- a/pages.zh/windows/reg-add.md +++ b/pages.zh/windows/reg-add.md @@ -1,23 +1,24 @@ # reg add -> 将新的键值添加到注册表中. +> 将新的键值添加到注册表中。 +> 更多信息:. -- 添加一个新的注册表键: +- 添加一个新的注册表键: `reg add {{键名}}` -- 在指定的键下添加新值: +- 在指定的键下添加新值: `reg add {{键名}} /v {{值}}` -- Add a new value with specific data: +- Add a new value with specific data: `reg add {{键名}} /d {{数据}}` -- 向具有特定数据类型的键添加新值: +- 向具有特定数据类型的键添加新值: `reg add {{键名}} /t {{类型}}` -- 在没有提示的情况下强制覆盖现有的注册表值: +- 在没有提示的情况下强制覆盖现有的注册表值: `reg add {{键名}} /f` diff --git a/pages.zh/windows/reg-compare.md b/pages.zh/windows/reg-compare.md index 246d93003518ef..9ea4828dbe1a20 100644 --- a/pages.zh/windows/reg-compare.md +++ b/pages.zh/windows/reg-compare.md @@ -1,23 +1,24 @@ # reg compare -> 比较注册表中的键和值. +> 比较注册表中的键和值。 +> 更多信息:. -- 比较两个键中的所有值: +- 比较两个键中的所有值: `reg compare {{第一个键名}} {{第二个键名}}` -- 比较两个键中指定的值: +- 比较两个键中指定的值: `reg compare {{第一个键名}} {{第二个键名}} /v {{值}}` -- 比较两个键中的所有子键和值: +- 比较两个键中的所有子键和值: `reg compare {{第一个键名}} {{第二个键名}} /s` -- 仅输出指定键之间匹配的结果: +- 仅输出指定键之间匹配的结果: `reg compare {{第一个键名}} {{第二个键名}} /os` -- 输出两个键之间的匹配和差异: +- 输出两个键之间的匹配和差异: `reg compare {{第一个键名}} {{第二个键名}} /oa` diff --git a/pages.zh/windows/reg-copy.md b/pages.zh/windows/reg-copy.md index 9520a542e2d085..90306453d135db 100644 --- a/pages.zh/windows/reg-copy.md +++ b/pages.zh/windows/reg-copy.md @@ -1,15 +1,16 @@ # reg copy -> 复制注册表中的键和值. +> 复制注册表中的键和值。 +> 更多信息:. -- 将注册表键复制到新的注册表位置: +- 将注册表键复制到新的注册表位置: `reg copy {{旧键名}} {{新键名}}` -- 递归将注册表键复制到新的注册表位置: +- 递归将注册表键复制到新的注册表位置: `reg copy {{旧键名}} {{新键名}} /s` -- 在没有提示的情况下强制复制注册表键: +- 在没有提示的情况下强制复制注册表键: `reg copy {{旧键名}} {{新键名}} /f` diff --git a/pages.zh/windows/reg-delete.md b/pages.zh/windows/reg-delete.md index aea8e3bd42ceac..d368800c7693eb 100644 --- a/pages.zh/windows/reg-delete.md +++ b/pages.zh/windows/reg-delete.md @@ -1,19 +1,20 @@ # reg delete -> 从注册表中删除键和值. +> 从注册表中删除键和值。 +> 更多信息:. -- 删除一个指定的键: +- 删除一个指定的键: `reg delete {{键名}}` -- 删除键中指定的值: +- 删除键中指定的值: `reg delete {{键名}} /v {{值}}` -- 递归删除指定键下所有的值: +- 递归删除指定键下所有的值: `reg delete {{键名}} /va` -- 在没有提示的情况下递归删除键中所有的值: +- 在没有提示的情况下递归删除键中所有的值: `reg delete {{键名}} /f /va` diff --git a/pages.zh/windows/reg-export.md b/pages.zh/windows/reg-export.md index ae3a12093bc1b5..75c18e6b98d0b8 100644 --- a/pages.zh/windows/reg-export.md +++ b/pages.zh/windows/reg-export.md @@ -1,11 +1,12 @@ # reg export -> 将指定的子键和值导出到文件中. +> 将指定的子键和值导出到文件中。 +> 更多信息:. -- 导出指定键下所有的子键和值: +- 导出指定键下所有的子键和值: `reg export {{键名}} {{导出文件的路径.reg}}` -- 在没有提示的情况下强制覆盖现有文件: +- 在没有提示的情况下强制覆盖现有文件: `reg export {{键名}} {{导出文件的路径.reg}} /y` diff --git a/pages.zh/windows/reg-flags.md b/pages.zh/windows/reg-flags.md index 354f0f693a0b86..476356d91ce182 100644 --- a/pages.zh/windows/reg-flags.md +++ b/pages.zh/windows/reg-flags.md @@ -1,19 +1,20 @@ # reg flags -> 显示或设置注册表键的标志. +> 显示或设置注册表键的标志。 +> 更多信息:. -- 显示当前指定键的标志: +- 显示当前指定键的标志: `reg flags {{键名}} query` -- 显示帮助和可用的标志类型: +- 显示帮助和可用的标志类型: `reg flags /?` -- 为特定键设置指定以空格分隔的标志,并取消设置未提及的标志: +- 为特定键设置指定以空格分隔的标志,并取消设置未提及的标志: `reg flags {{键名}} set {{标志 1 标志 2 ..}}` -- 为指定的键和其子键设置标志: +- 为指定的键和其子键设置标志: `reg flags {{键名}} set {{标志}} /s` diff --git a/pages.zh/windows/reg-import.md b/pages.zh/windows/reg-import.md index d9328f39e9b3f6..d11ddfd01925cd 100644 --- a/pages.zh/windows/reg-import.md +++ b/pages.zh/windows/reg-import.md @@ -1,7 +1,8 @@ # reg import -> 从一个文件导入所有可用的键、子键和值. +> 从一个文件导入所有可用的键、子键和值。 +> 更多信息:. -- 从一个文件导入所有可用的键、子键和值: +- 从一个文件导入所有可用的键、子键和值: `reg import {{reg 文件的路径}}` diff --git a/pages.zh/windows/reg-load.md b/pages.zh/windows/reg-load.md index a1a8ad713418a6..14fd1357a82c1f 100644 --- a/pages.zh/windows/reg-load.md +++ b/pages.zh/windows/reg-load.md @@ -1,8 +1,9 @@ # reg load -> 将保存的子键加载到不同的子键中. +> 将保存的子键加载到不同的子键中。 > This is intended for troubleshooting and temporary keys. +> 更多信息:. -- 将备份文件加载到指定的键中: +- 将备份文件加载到指定的键中: `reg load {{键名}} {{文件的路径}}` diff --git a/pages.zh/windows/reg-query.md b/pages.zh/windows/reg-query.md index 050f5043dfd66b..f99de7eb0194ee 100644 --- a/pages.zh/windows/reg-query.md +++ b/pages.zh/windows/reg-query.md @@ -1,23 +1,24 @@ # reg query -> 显示注册表中键和子键的值. +> 显示注册表中键和子键的值。 +> 更多信息:. -- 显示一个键中的所有值: +- 显示一个键中的所有值: `reg query {{键名}}` -- 显示键中指定的值: +- 显示键中指定的值: `reg query {{键名}} /v {{值}}` -- 显示指定键和其子键中的所有的值: +- 显示指定键和其子键中的所有的值: `reg query {{键名}} /s` -- 搜索与特定模式匹配的键和值: +- 搜索与特定模式匹配的键和值: `reg query {{键名}} /f "{{查询语句}}"` -- 显示与指定数据类型匹配的键的值: +- 显示与指定数据类型匹配的键的值: `reg query {{键名}} /t {{类型}}` diff --git a/pages.zh/windows/reg-restore.md b/pages.zh/windows/reg-restore.md index bcc96d1ffe3ab0..805c20873116cd 100644 --- a/pages.zh/windows/reg-restore.md +++ b/pages.zh/windows/reg-restore.md @@ -1,8 +1,9 @@ # reg restore -> 从备份文件中恢复键和值. -> 参见 `reg-save` 来获取更多的信息. +> 从备份文件中恢复键和值。 +> 参见 `reg-save` 来获取更多的信息。 +> 更多信息:. -- 使用备份文件中的数据覆盖指定的键: +- 使用备份文件中的数据覆盖指定的键: `reg restore {{键名}} {{文件路径}}` diff --git a/pages.zh/windows/reg-save.md b/pages.zh/windows/reg-save.md index ec63fdd1ca44b6..3618e6aca6e939 100644 --- a/pages.zh/windows/reg-save.md +++ b/pages.zh/windows/reg-save.md @@ -1,11 +1,12 @@ # reg save -> 将注册表键、子键的所有值保存到一个文件中. +> 将注册表键、子键的所有值保存到一个文件中。 +> 更多信息:. -- 将注册表键、子键的所有值保存到一个文件中: +- 将注册表键、子键的所有值保存到一个文件中: `reg save {{键名}} {{文件的路径}}` -- 在没有提示的情况下强制覆盖现有文件: +- 在没有提示的情况下强制覆盖现有文件: `reg save {{键名}} {{文件的路径}} /y` diff --git a/pages.zh/windows/reg-unload.md b/pages.zh/windows/reg-unload.md index 115be50c06c029..8c9ddf2f486c8b 100644 --- a/pages.zh/windows/reg-unload.md +++ b/pages.zh/windows/reg-unload.md @@ -1,7 +1,8 @@ # reg unload -> 从使用`reg load`命令加载的注册表中删除数据. +> 从使用`reg load`命令加载的注册表中删除数据。 +> 更多信息:. -- 从使用`reg load`命令加载的注册表中删除数据: +- 从使用`reg load`命令加载的注册表中删除数据: `reg unload {{键名}}` diff --git a/pages.zh/windows/reg.md b/pages.zh/windows/reg.md index 0a794c7f72a01d..ad6d9a6c685bf9 100644 --- a/pages.zh/windows/reg.md +++ b/pages.zh/windows/reg.md @@ -1,16 +1,17 @@ # reg -> 用于在 Windows 注册表中管理键及其值的命令行界面. -> 参见 `reg-query`, `reg-add` 和其他的页面来获取额外的信息. +> 用于在 Windows 注册表中管理键及其值的命令行界面。 +> 此命令也有关于其子命令的文件,例如:`reg add`. +> 更多信息:. -- 执行注册表命令: +- 执行注册表命令: `reg {{命令}}` -- 显示常规信息并列出所有可用命令: +- 显示常规信息并列出所有可用命令: `reg /?` -- 显示指定命令的帮助信息: +- 显示指定命令的帮助信息: `reg {{命令}} /?` diff --git a/pages.zh/windows/repair-bde.md b/pages.zh/windows/repair-bde.md index 55788db1424cef..53c64434e8a336 100644 --- a/pages.zh/windows/repair-bde.md +++ b/pages.zh/windows/repair-bde.md @@ -1,35 +1,36 @@ # repair-bde -> 尝试修复或解密损坏的 BitLocker 加密卷. +> 尝试修复或解密损坏的 BitLocker 加密卷。 +> 更多信息:. -- 尝试修复一个指定的卷: +- 尝试修复一个指定的卷: `repair-bde {{C:}}` -- 尝试修复指定的卷并输出到另一个卷: +- 尝试修复指定的卷并输出到另一个卷: `repair-bde {{C:}} {{D:}}` -- 尝试使用提供的恢复密钥文件修复指定的卷: +- 尝试使用提供的恢复密钥文件修复指定的卷: `repair-bde {{C:}} -RecoveryKey {{bek 文件的路径}}` -- 尝试使用提供的数字恢复密码修复指定的卷: +- 尝试使用提供的数字恢复密码修复指定的卷: `repair-bde {{C:}} -RecoveryPassword {{密码}}` -- 尝试使用提供的密码修复指定的卷: +- 尝试使用提供的密码修复指定的卷: `repair-bde {{C:}} -Password {{密码}}` -- 尝试使用提供的密钥包修复指定的卷: +- 尝试使用提供的密钥包修复指定的卷: `repair-bde {{C:}} -KeyPackage {{目录的路径}}` -- 将日志输出到指定的文件: +- 将日志输出到指定的文件: `repair-bde {{C:}} -LogFile {{文件的路径}}` -- 显示所有可用的选项: +- 显示所有可用的选项: `repair-bde /?` diff --git a/pages.zh/windows/rmdir.md b/pages.zh/windows/rmdir.md index a6191870bf0a56..75dbe59b112b9d 100644 --- a/pages.zh/windows/rmdir.md +++ b/pages.zh/windows/rmdir.md @@ -1,15 +1,16 @@ # rmdir -> 删除一个目录和其中的内容. +> 删除一个目录和其中的内容。 +> 更多信息:. -- 删除一个空目录: +- 删除一个空目录: `rmdir {{目录的路径}}` -- 递归删除一个目录及其中的内容: +- 递归删除一个目录及其中的内容: `rmdir {{目录的路径}} /s` -- 在没有提示的情况下递归删除目录及其内容: +- 在没有提示的情况下递归删除目录及其内容: `rmdir {{path/to/directory}} /s /q` diff --git a/pages.zh/windows/scoop-bucket.md b/pages.zh/windows/scoop-bucket.md index c4693b6d144124..8e3e80368d1a95 100644 --- a/pages.zh/windows/scoop-bucket.md +++ b/pages.zh/windows/scoop-bucket.md @@ -2,24 +2,24 @@ > 管理 bucket: 包含描述 scoop 应如何安装应用程序的文件的 Git 存储库。 > 如果 Scoop 不知道 bucket 在哪里,则必须指定其存储库位置。 -> 更多信息: . +> 更多信息:. -- 列出所有正在使用的 bucket: +- 列出所有正在使用的 bucket: `scoop bucket list` -- 列出所有已知 bucket: +- 列出所有已知 bucket: `scoop bucket known` -- 按名称添加一个已知 bucket: +- 按名称添加一个已知 bucket: `scoop bucket add {{名称}}` -- 通过名称和 Git 存储库 URL 添加未知 bucket: +- 通过名称和 Git 存储库 URL 添加未知 bucket: `scoop bucket add {{名称}} {{https://example.com/repository.git}}` -- 按名称删除 bucket: +- 按名称删除 bucket: `scoop bucket rm {{名称}}` diff --git a/pages.zh/windows/scoop.md b/pages.zh/windows/scoop.md index ec886ebbb7b2fa..9f7ab4f7b05a4f 100644 --- a/pages.zh/windows/scoop.md +++ b/pages.zh/windows/scoop.md @@ -1,35 +1,32 @@ # scoop -> Windows 的命令行安装程序. +> Windows 的命令行安装程序。 +> 更多信息:. -- 安装一个包: +- 安装一个包: `scoop install {{包名}}` -- 删除一个包: +- 删除一个包: `scoop uninstall {{包名}}` -- 更新所有已安装的包: +- 更新所有已安装的包: `scoop update *` -- 列出所有已安装的包: +- 列出所有已安装的包: `scoop list` -- 显示一个包的信息: +- 显示一个包的信息: `scoop info {{包名}}` -- 搜索一个包: +- 搜索一个包: `scoop search {{包名}}` -- 列出所有已知的桶 (“桶”代表程序的仓库): +- 移除所有包的旧版本并清理下载缓存: -`scoop bucket known` - -- 通过别名或 Git 存储库 URL 添加存储桶: - -`scoop bucket add {{bucket}}` +`scoop cleanup -k *` diff --git a/pages.zh/windows/set.md b/pages.zh/windows/set.md index a10434d823e05b..8e2ed3dd6b56a5 100644 --- a/pages.zh/windows/set.md +++ b/pages.zh/windows/set.md @@ -1,19 +1,20 @@ # set -> 显示或设置当前命令行实例的环境变量. +> 显示或设置当前命令行实例的环境变量。 +> 更多信息:. -- 列出当前所有环境变量: +- 列出当前所有环境变量: `set` -- 为一个环境变量设置指定的值: +- 为一个环境变量设置指定的值: `set {{变量名}}={{值}}` -- 列出以指定字符串开头的环境变量: +- 列出以指定字符串开头的环境变量: `set {{变量名}}` -- 提示用户输入指定变量的值: +- 提示用户输入指定变量的值: `set /p {{变量名}}={{提示信息}}` diff --git a/pages.zh/windows/sfc.md b/pages.zh/windows/sfc.md index 105e3cebc0096f..cc15be8e2f5529 100644 --- a/pages.zh/windows/sfc.md +++ b/pages.zh/windows/sfc.md @@ -1,31 +1,32 @@ # sfc -> 扫描 Windows 系统文件的完整性. +> 扫描 Windows 系统文件的完整性。 +> 更多信息:. -- 显示命令的使用方法: +- 显示命令的使用方法: `sfc` -- 扫描所有的系统文件,如果可能的话,修复所有出现的问题: +- 扫描所有的系统文件,如果可能的话,修复所有出现的问题: `sfc /scannow` -- 扫描系统文件,但不修复出现的问题: +- 扫描系统文件,但不修复出现的问题: `sfc /verifyonly` -- 扫描指定的文件,如果可能的话,修复所有出现的问题: +- 扫描指定的文件,如果可能的话,修复所有出现的问题: `sfc /scanfile={{文件的路径}}` -- 扫描指定的文件,但不修复出现的问题: +- 扫描指定的文件,但不修复出现的问题: `sfc /verifyfile={{文件的路径}}` -- 当离线修复时,指定引导目录: +- 当离线修复时,指定引导目录: `sfc /offbootdir={{目录的路径}}` -- 当离线修复时,指定 Windows 目录: +- 当离线修复时,指定 Windows 目录: `sfc /offwindir={{文件的路径}}` diff --git a/pages.zh/windows/shutdown.md b/pages.zh/windows/shutdown.md index cd828b7c539ff8..212d09594803c2 100644 --- a/pages.zh/windows/shutdown.md +++ b/pages.zh/windows/shutdown.md @@ -1,35 +1,36 @@ # shutdown -> 用于关闭,重新启动或注销计算机的工具. +> 用于关闭,重新启动或注销计算机的工具。 +> 更多信息:. -- 关闭当前的计算机: +- 关闭当前的计算机: `shutdown /s` -- 重启当前的计算机: +- 重启当前的计算机: `shutdown /r` -- 休眠当前的计算机: +- 休眠当前的计算机: `shutdown /h` -- 注销当前的计算机: +- 注销当前的计算机: `shutdown /l` -- 指定在关闭之前等待的时间(以秒为单位): +- 指定在关闭之前等待的时间(以秒为单位): `shutdown /s /t {{秒}}` -- 指定一个关机的理由: +- 指定一个关机的理由: `shutdown /s /c "{{理由}}"` -- 在超时之前取消关机指令: +- 在超时之前取消关机指令: `shutdown /a` -- 关闭远程的计算机: +- 关闭远程的计算机: `shutdown /m {{\\ 主机名}}` diff --git a/pages.zh/windows/sigverif.md b/pages.zh/windows/sigverif.md deleted file mode 100644 index def5c3fe79f949..00000000000000 --- a/pages.zh/windows/sigverif.md +++ /dev/null @@ -1,7 +0,0 @@ -# sigverif - -> 用于检查系统文件的 GUI 签名验证工具. - -- 打开文件签名验证界面: - -`sigverif` diff --git a/pages.zh/windows/sls.md b/pages.zh/windows/sls.md new file mode 100644 index 00000000000000..2753fa0ab4fe8a --- /dev/null +++ b/pages.zh/windows/sls.md @@ -0,0 +1,8 @@ +# sls + +> 这是 `where-object` 命令的一个别名。 +> 更多信息:. + +- 原命令的文档在: + +`tldr where-object` diff --git a/pages.zh/windows/subst.md b/pages.zh/windows/subst.md index 97eefab8c90aa2..0913349e1609cb 100644 --- a/pages.zh/windows/subst.md +++ b/pages.zh/windows/subst.md @@ -1,15 +1,16 @@ # subst -> 将路径与虚拟驱动器号关联. +> 将路径与虚拟驱动器号关联。 +> 更多信息:. -- 列出已激活的关联: +- 列出已激活的关联: `subst` -- 添加一个关联: +- 添加一个关联: `subst {{Z:}} {{C:\Python2.7}}` -- 删除一个关联: +- 删除一个关联: `subst {{Z:}} /d` diff --git a/pages.zh/windows/systeminfo.md b/pages.zh/windows/systeminfo.md index 4a0a21330d47f2..221506f0eef7a3 100644 --- a/pages.zh/windows/systeminfo.md +++ b/pages.zh/windows/systeminfo.md @@ -1,19 +1,20 @@ # systeminfo -> 显示本地或远程计算机的操作系统配置. +> 显示本地或远程计算机的操作系统配置。 +> 更多信息:. -- 显示本地计算机的操作系统配置: +- 显示本地计算机的操作系统配置: `systeminfo` -- 以指定的输出格式显示系统配置: +- 以指定的输出格式显示系统配置: `systeminfo /fo {{table|list|csv}}` -- 显示远程计算机的系统配置: +- 显示远程计算机的系统配置: `systeminfo /s {{远程主机名}} /u {{用户名}} /p {{密码}}` -- 显示详细的帮助信息: +- 显示详细的帮助信息: `systeminfo /?` diff --git a/pages.zh/windows/takeown.md b/pages.zh/windows/takeown.md index 69cf3fe752b91c..9ea776b628696c 100644 --- a/pages.zh/windows/takeown.md +++ b/pages.zh/windows/takeown.md @@ -1,20 +1,20 @@ # takeown -> 取得文件或目录的所有权. -> 更多信息: . +> 取得文件或目录的所有权。 +> 更多信息:. -- 取得指定文件的所有权: +- 取得指定文件的所有权: `takeown /f {{路径/文件}}` -- 取得指定目录的所有权: +- 取得指定目录的所有权: `takeown /d {{路径/目录}}` -- 取得指定目录和所有子目录的所有权: +- 取得指定目录和所有子目录的所有权: `takeown /r /d {{路径/目录}}` -- 将所有权更改为管理员组,而不是当前用户: +- 将所有权更改为管理员组,而不是当前用户: `takeown /a /f {{路径/文件}}` diff --git a/pages.zh/windows/taskkill.md b/pages.zh/windows/taskkill.md index f47bd09beb3410..d2102e1effc221 100644 --- a/pages.zh/windows/taskkill.md +++ b/pages.zh/windows/taskkill.md @@ -1,27 +1,28 @@ # taskkill -> 按进程 id 或进程名终止进程. +> 按进程 id 或进程名终止进程。 +> 更多信息:. -- 通过进程 id 终止进程: +- 通过进程 id 终止进程: `taskkill /pid {{进程 id}}` -- 通过进程名终止进程: +- 通过进程名终止进程: `taskkill /im {{进程名}}` -- 强制终止一个指定的进程: +- 强制终止一个指定的进程: `taskkill /pid {{进程名}} /f` -- 终止一个进程及其子进程: +- 终止一个进程及其子进程: `taskkill /im {{进程名}} /t` -- 终止远程计算机上的进程: +- 终止远程计算机上的进程: `taskkill /pid {{进程 id}} /s {{远程主机名}}` -- 显示命令的帮助信息: +- 显示命令的帮助信息: `taskkill /?` diff --git a/pages.zh/windows/tasklist.md b/pages.zh/windows/tasklist.md index ab911f1255c736..6b7a4a37da3815 100644 --- a/pages.zh/windows/tasklist.md +++ b/pages.zh/windows/tasklist.md @@ -1,23 +1,24 @@ # tasklist -> 显示本地或远程计算机上当前正在运行的进程的列表. +> 显示本地或远程计算机上当前正在运行的进程的列表。 +> 更多信息:. -- 显示当前正在运行的进程: +- 显示当前正在运行的进程: `tasklist` -- 使用指定的格式显示当前进程列表: +- 使用指定的格式显示当前进程列表: `tasklist /fo {{table|list|csv}}` -- 已匹配的方式 (.exe, .dll) 显示当前运行的进程: +- 已匹配的方式(.exe, .dll)显示当前运行的进程: `tasklist /m {{匹配模式}}` -- 显示在远程计算机上运行的进程: +- 显示在远程计算机上运行的进程: `tasklist /s {{远程主机名}} /u {{用户名}} /p {{密码}}` -- 显示每个进程中的服务信息: +- 显示每个进程中的服务信息: `tasklist /svc` diff --git a/pages.zh/windows/title.md b/pages.zh/windows/title.md index 5ae715943ca931..a9e918601471e0 100644 --- a/pages.zh/windows/title.md +++ b/pages.zh/windows/title.md @@ -1,7 +1,8 @@ # title -> 设置命令提示符窗口的标题. +> 设置命令提示符窗口的标题。 +> 更多信息:. -- 设置当前的命令提示符窗口的标题: +- 设置当前的命令提示符窗口的标题: `title {{新标题}}` diff --git a/pages.zh/windows/tree.md b/pages.zh/windows/tree.md index bed5f949dc5c82..c582937a1ca82f 100644 --- a/pages.zh/windows/tree.md +++ b/pages.zh/windows/tree.md @@ -1,19 +1,20 @@ # tree -> 以目录树的形式显示指定目录的所有文件夹和文件. +> 以目录树的形式显示指定目录的所有文件夹和文件。 +> 更多信息:. -- 显示当前目录的目录树: +- 显示当前目录的目录树: `tree` -- 显示指定目录的目录树: +- 显示指定目录的目录树: `tree {{目录的路径}}` -- 显示目录中文件的目录树: +- 显示目录中文件的目录树: `tree {{目录的路径}} /f` -- 使用 ASCII 字符而不是扩展字符显示目录树: +- 使用 ASCII 字符而不是扩展字符显示目录树: `tree {{目录的路径}} /a` diff --git a/pages.zh/windows/type.md b/pages.zh/windows/type.md index d66e1d5f21ce65..e096275d6b3ddc 100644 --- a/pages.zh/windows/type.md +++ b/pages.zh/windows/type.md @@ -1,7 +1,8 @@ # type -> 显示文件的内容. +> 显示文件的内容。 +> 更多信息:. -- 显示特定文件的内容: +- 显示特定文件的内容: `type {{文件的路径}}` diff --git a/pages.zh/windows/tzutil.md b/pages.zh/windows/tzutil.md index 30c06169c5c8ff..7c05828743d8ac 100644 --- a/pages.zh/windows/tzutil.md +++ b/pages.zh/windows/tzutil.md @@ -1,15 +1,16 @@ # tzutil -> 用于显示或配置系统时区的工具. +> 用于显示或配置系统时区的工具。 +> 更多信息:. -- 获取当前的时区: +- 获取当前的时区: `tzutil /g` -- 显示可用的时区列表: +- 显示可用的时区列表: `tzutil /l` -- 将系统时区设置为特定值: +- 将系统时区设置为特定值: `tzutil /s {{时区 id}}` diff --git a/pages.zh/windows/ver.md b/pages.zh/windows/ver.md index a3c290e645e9a7..e6f5679f97273c 100644 --- a/pages.zh/windows/ver.md +++ b/pages.zh/windows/ver.md @@ -1,7 +1,8 @@ # ver -> 显示当前 Windows 或 MS-DOS 的版本号. +> 显示当前 Windows 或 MS-DOS 的版本号。 +> 更多信息:. -- Display the current version number: +- Display the current version number: `ver` diff --git a/pages.zh/windows/vol.md b/pages.zh/windows/vol.md index 4c00069547c4ca..25690e7e2824e0 100644 --- a/pages.zh/windows/vol.md +++ b/pages.zh/windows/vol.md @@ -1,11 +1,12 @@ # vol -> 显示有关卷的信息. +> 显示有关卷的信息。 +> 更多信息:. -- 显示当前驱动器的标签和序列号: +- 显示当前驱动器的标签和序列号: `vol` -- 显示指定驱动器的标签和序列号: +- 显示指定驱动器的标签和序列号: `vol {{D:}}` diff --git a/pages.zh/windows/wget.md b/pages.zh/windows/wget.md new file mode 100644 index 00000000000000..d071a1a13f8c43 --- /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/windows/where.md b/pages.zh/windows/where.md index 4a1bf083511fca..b21fb4bb5f8cf9 100644 --- a/pages.zh/windows/where.md +++ b/pages.zh/windows/where.md @@ -1,20 +1,21 @@ # where -> 显示与搜索模式匹配的文件的位置. -> 在默认情况下,搜索是在当前目录和 PATH 环境变量指定的路径中执行的. +> 显示与搜索模式匹配的文件的位置。 +> 在默认情况下,搜索是在当前目录和 PATH 环境变量指定的路径中执行的。 +> 更多信息:. -- 显示匹配的文件的位置: +- 显示匹配的文件的位置: `where {{文件模式}}` -- 显示匹配的文件的位置、大小和日期: +- 显示匹配的文件的位置、大小和日期: `where /T {{文件模式}}` -- 在指定的路径下递归搜索要匹配的文件: +- 在指定的路径下递归搜索要匹配的文件: `where /R {{目录的路径}} {{文件模式}}` -- 只返回退出代码,不显示匹配文件列表: +- 只返回退出代码,不显示匹配文件列表: `where /Q {{文件模式}}` diff --git a/pages.zh/windows/whoami.md b/pages.zh/windows/whoami.md index 69abfa8080f992..28b8b1a52c4df9 100644 --- a/pages.zh/windows/whoami.md +++ b/pages.zh/windows/whoami.md @@ -1,23 +1,24 @@ # whoami -> 显示有关当前用户的详细信息. +> 显示有关当前用户的详细信息。 +> 更多信息:. -- 显示当前用户的用户名: +- 显示当前用户的用户名: `whoami` -- 显示当前用户所属的组: +- 显示当前用户所属的组: `whoami /groups` -- 显示当前用户的权限: +- 显示当前用户的权限: `whoami /priv` -- 显示当前用户的用户主体名称 (UPN): +- 显示当前用户的用户主体名称(UPN): `whoami /upn` -- 显示当前用户的登录 id: +- 显示当前用户的登录 id: `whoami /logonid` diff --git a/pages.zh/windows/winget.md b/pages.zh/windows/winget.md index 43af9beefcd0f8..21d4f3911e6b7c 100644 --- a/pages.zh/windows/winget.md +++ b/pages.zh/windows/winget.md @@ -1,16 +1,16 @@ # winget -> Windows 软件包管理器命令行工具. -> 更多信息: . +> Windows 软件包管理器命令行工具。 +> 更多信息:. -- 安装一个软件包: +- 安装一个软件包: `winget install {{package}}` -- 显示关于一个软件包的信息: +- 显示关于一个软件包的信息: `winget show {{package}}` -- 查找一个软件包: +- 查找一个软件包: `winget search {{package}}` diff --git a/pages.zh/windows/wsl.md b/pages.zh/windows/wsl.md index 5b91f37d6cd9c8..26764e11d6bb1e 100644 --- a/pages.zh/windows/wsl.md +++ b/pages.zh/windows/wsl.md @@ -1,36 +1,36 @@ # wsl -> 从命令行管理适用于 Linux 的 Windows 子系统. -> 更多信息: . +> 从命令行管理适用于 Linux 的 Windows 子系统。 +> 更多信息:. -- 启动 Linux Shell(在默认发行版中): +- 启动 Linux Shell(在默认发行版中): `wsl {{shell_命令}}` -- 在不使用 Shell 的情况下运行 Linux 命令: +- 在不使用 Shell 的情况下运行 Linux 命令: `wsl --exec {{命令}} {{命令参数}}` -- 指定特定的发行版: +- 指定特定的发行版: `wsl --distribution {{发行版}} {{shell_命令}}` -- 列出所有可用发行版: +- 列出所有可用发行版: `wsl --list` -- 将发行版导出到 .tar 文件: +- 将发行版导出到 .tar 文件: `wsl --export {{发行版}} {{路径/distro_fs.tar}}` -- 从 .tar 文件导入发行版: +- 从 .tar 文件导入发行版: `wsl --import {{发行版}} {{路径/安装位置}} {{路径/distro_fs.tar}}` -- 更改指定发行版的版本: +- 更改指定发行版的版本: `wsl --set-version {{发行版}} {{版本}}` -- 关闭适用于 Linux 的 Windows 子系统: +- 关闭适用于 Linux 的 Windows 子系统: `wsl --shutdown` diff --git a/pages.zh/windows/xcopy.md b/pages.zh/windows/xcopy.md index 668874df51e649..f500ca080064bb 100644 --- a/pages.zh/windows/xcopy.md +++ b/pages.zh/windows/xcopy.md @@ -1,35 +1,36 @@ # xcopy -> 复制文件和目录树. +> 复制文件和目录树。 +> 更多信息:. -- 复制文件到指定的路径: +- 复制文件到指定的路径: `xcopy {{被复制的目录路径}} {{目标路径}}` -- 列出在复制前将要被复制的文件: +- 列出在复制前将要被复制的文件: `xcopy {{文件或目录的路径}} {{目标路径}} /p` -- 仅复制目录结构,不包括文件: +- 仅复制目录结构,不包括文件: `xcopy {{文件或目录的路径}} {{目标路径}} /t` -- 复制时包含空目录: +- 复制时包含空目录: `xcopy {{文件或目录的路径}} {{目标路径}} /e` -- 复制文件时保留 ACL 信息: +- 复制文件时保留 ACL 信息: `xcopy {{文件或目录的路径}} {{目标路径}} /o` -- 网络连接丢失时允许恢复: +- 网络连接丢失时允许恢复: `xcopy {{文件或目录的路径}} {{目标路径}} /z` -- 当文件存在于目标路径中时禁用提示 +- 当文件存在于目标路径中时禁用提示: `xcopy {{文件或目录的路径}} {{目标路径}} /y` -- 显示详细的使用帮助: +- 显示详细的使用帮助: `xcopy /?` diff --git a/pages.zh_TW/android/am.md b/pages.zh_TW/android/am.md new file mode 100644 index 00000000000000..abac0ca2c49ce7 --- /dev/null +++ b/pages.zh_TW/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.zh_TW/android/bugreport.md b/pages.zh_TW/android/bugreport.md new file mode 100644 index 00000000000000..596ccdc0bde186 --- /dev/null +++ b/pages.zh_TW/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> 顯示安卓的 Bug 報告。 +> 該命令只能透過 `adb shell` 使用。 +> 更多資訊:. + +- 顯示 Android 裝置的完整錯誤報告: + +`bugreport` diff --git a/pages.zh_TW/android/bugreportz.md b/pages.zh_TW/android/bugreportz.md new file mode 100644 index 00000000000000..e31b09cbc0b766 --- /dev/null +++ b/pages.zh_TW/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> 生成一個壓縮的 Android 錯誤報告。 +> 此命令只能透過 `adb shell` 使用。 +> 更多資訊:. + +- 生成一個完整的 Android 裝置壓縮錯誤報告: + +`bugreportz` + +- 顯示正在執行的 `bugreportz` 的作業進度: + +`bugreportz -p` + +- 顯示 `bugreportz` 的版本: + +`bugreportz -v` + +- 顯示幫助資訊: + +`bugreportz -h` diff --git a/pages.zh_TW/android/cmd.md b/pages.zh_TW/android/cmd.md new file mode 100644 index 00000000000000..4354f22fde91d8 --- /dev/null +++ b/pages.zh_TW/android/cmd.md @@ -0,0 +1,16 @@ +# cmd + +> Android 服務管理器。 +> 更多資訊:. + +- 列出所有正在執行的服務: + +`cmd -l` + +- 呼叫指定服務: + +`cmd {{alarm}}` + +- 呼叫服務同時傳遞參數: + +`cmd {{vibrator}} {{vibrate 300}}` diff --git a/pages.zh_TW/android/dalvikvm.md b/pages.zh_TW/android/dalvikvm.md new file mode 100644 index 00000000000000..1f2581b47aace7 --- /dev/null +++ b/pages.zh_TW/android/dalvikvm.md @@ -0,0 +1,8 @@ +# dalvikvm + +> Android Java 虛擬機。 +> 更多資訊:. + +- 啟動一個 Java 程序: + +`dalvikvm -classpath {{檔案.jar}} {{類別名稱}}` diff --git a/pages.zh_TW/android/dumpsys.md b/pages.zh_TW/android/dumpsys.md new file mode 100644 index 00000000000000..207e9b6c4cd2b9 --- /dev/null +++ b/pages.zh_TW/android/dumpsys.md @@ -0,0 +1,29 @@ +# dumpsys + +> 提供關於 Android 系統服務的資訊。 +> 此命令只能透過 `adb shell` 使用。 +> 更多資訊:. + +- 獲取所有系統服務的診斷輸出: + +`dumpsys` + +- 獲取指定系統服務的診斷輸出: + +`dumpsys {{服務}}` + +- 列出 `dumpsys` 可以提供的所有服務資訊: + +`dumpsys -l` + +- 列出服務的指定服務引數: + +`dumpsys {{服務}} -h` + +- 從診斷輸出中排除指定服務: + +`dumpsys --skip {{服務}}` + +- 指定超時時間,以秒為單位(預設為 10 秒): + +`dumpsys -t {{秒數}}` diff --git a/pages.zh_TW/android/getprop.md b/pages.zh_TW/android/getprop.md new file mode 100644 index 00000000000000..56efe8666dbbee --- /dev/null +++ b/pages.zh_TW/android/getprop.md @@ -0,0 +1,32 @@ +# getprop + +> 顯示關於 Android 系統屬性的資訊。 +> 更多資訊:. + +- 顯示關於 Android 系統屬性的資訊: + +`getprop` + +- 顯示關於指定屬性的資訊: + +`getprop {{屬性}}` + +- 顯示 SDK API 級別: + +`getprop {{ro.build.version.sdk}}` + +- 顯示 Android 版本: + +`getprop {{ro.build.version.release}}` + +- 顯示 Android 裝置型號: + +`getprop {{ro.vendor.product.model}}` + +- 顯示 OEM 解鎖狀態: + +`getprop {{ro.oem_unlock_supported}}` + +- 顯示 Android WiFi 卡的 MAC 地址: + +`getprop {{ro.boot.wifimacaddr}}` diff --git a/pages.zh_TW/android/input.md b/pages.zh_TW/android/input.md new file mode 100644 index 00000000000000..ad286e06b62610 --- /dev/null +++ b/pages.zh_TW/android/input.md @@ -0,0 +1,25 @@ +# input + +> 將事件代碼或觸控螢幕手勢傳送到 Android 裝置。 +> 此命令只能透過 `adb shell` 使用。 +> 更多資訊:. + +- 將單個字元的事件代碼傳送到 Android 裝置: + +`input keyevent {{事件代碼}}` + +- 將文字傳送到 Android 裝置(`%s` 代表空格): + +`input text "{{文字}}"` + +- 將輕觸發送到 Android 裝置: + +`input tap {{x 值}} {{y 值}}` + +- 將滑動手勢傳送到 Android 裝置: + +`input swipe {{x 開始值}} {{y 開始值}} {{x 結束值}} {{y 結束值}} {{持續時間(微秒)}}` + +- 使用滑動手勢將長按傳送到 Android 裝置: + +`input swipe {{x 值}} {{y 值}} {{x 值}} {{y 值}} {{持續時間(微秒)}}` diff --git a/pages.zh_TW/android/logcat.md b/pages.zh_TW/android/logcat.md new file mode 100644 index 00000000000000..357116f56eb675 --- /dev/null +++ b/pages.zh_TW/android/logcat.md @@ -0,0 +1,16 @@ +# logcat + +> 轉存系統訊息日誌。 +> 更多資訊:. + +- 顯示系統日誌: + +`logcat` + +- 將系統日誌寫入檔案: + +`logcat -f {{文件路径}}` + +- 顯示與正規表示式匹配的列: + +`logcat --regex {{正規表示式}}` diff --git a/pages.zh_TW/android/pm.md b/pages.zh_TW/android/pm.md new file mode 100644 index 00000000000000..8592f0ee99afb0 --- /dev/null +++ b/pages.zh_TW/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.zh_TW/android/settings.md b/pages.zh_TW/android/settings.md new file mode 100644 index 00000000000000..cc9b607d272685 --- /dev/null +++ b/pages.zh_TW/android/settings.md @@ -0,0 +1,20 @@ +# settings + +> 獲取關於 Android OS 的資訊。 +> 更多資訊:. + +- 在 `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.zh_TW/android/wm.md b/pages.zh_TW/android/wm.md new file mode 100644 index 00000000000000..a13564840af63f --- /dev/null +++ b/pages.zh_TW/android/wm.md @@ -0,0 +1,13 @@ +# wm + +> 顯示關於 Android 裝置的螢幕的資訊。 +> 此命令只能透過 `adb shell` 使用。 +> 更多資訊:. + +- 顯示 Android 裝置的螢幕的物理尺寸: + +`wm {{size}}` + +- 顯示 Android 裝置的螢幕的物理密度: + +`wm {{density}}` diff --git a/pages.zh_TW/common/az.md b/pages.zh_TW/common/az.md new file mode 100644 index 00000000000000..213680505c5aa1 --- /dev/null +++ b/pages.zh_TW/common/az.md @@ -0,0 +1,29 @@ +# az + +> Microsoft Azure 的官方客戶端工具。 +> 此命令也有關於其子命令的文件,例如:`az login`. +> 更多資訊:. + +- 登錄到 Azure: + +`az login` + +- 管理 Azure 訂閱資訊: + +`az account` + +- 列出所有 Azure 託管磁碟: + +`az disk list` + +- 列出所有 Azure 虛擬機: + +`az vm list` + +- 管理 Azure Kubernetes 服務: + +`az aks` + +- 管理 Azure 網路資源: + +`az network` diff --git a/pages.zh_TW/common/bash.md b/pages.zh_TW/common/bash.md new file mode 100644 index 00000000000000..ca0a5ad9566c49 --- /dev/null +++ b/pages.zh_TW/common/bash.md @@ -0,0 +1,33 @@ +# bash + +> Bourne-Again SHell. 一個與 `sh` 相容的命令列。 +> 參照 `histexpand` 以使用 history expansion 特性。 +> 更多資訊:. + +- 開啟互動式 shell: + +`bash` + +- 執行指令然後退出: + +`bash -c "{{指令}}"` + +- 執行腳本: + +`bash {{sh檔}}` + +- 執行腳本,每個指令執行之前先在命令列印出該指令: + +`bash -x {{sh檔}}` + +- 執行腳本,執行錯誤時,終止執行該腳本: + +`bash -e {{sh檔}}` + +- 從標準輸入 (stdin) 讀取並執行指令: + +`bash -s` + +- 在終端機印出 bash 的版本資訊 (`$BASH_VERSION` 只包含版本號): + +`bash --version` diff --git a/pages.zh_TW/common/brew.md b/pages.zh_TW/common/brew.md new file mode 100644 index 00000000000000..4985a376c1cfa7 --- /dev/null +++ b/pages.zh_TW/common/brew.md @@ -0,0 +1,36 @@ +# brew + +> Linux 和 macOS 的套件管理工具。 +> 更多資訊:. + +- 安裝最新穩定版的配方(formula)或木桶(cask),使用 `--devel` 安裝開發版: + +`brew install {{配方}}` + +- 列出所有已安裝的配方和木桶: + +`brew list` + +- 更新已安裝的配方或木桶(如果沒有指定,則更新所有已安裝的配方/木桶): + +`brew upgrade {{配方}}` + +- 從 Homebrew 源倉庫中獲取最新版本的 Homebrew 以及所有配方和木桶: + +`brew update` + +- 顯示有新版本的配方和木桶: + +`brew outdated` + +- 搜尋可用的配方(即套件)和木桶(即原生套件): + +`brew search {{套件名}}` + +- 顯示有關配方或木桶的資訊(版本、安裝路徑、相依套件等): + +`brew info {{配方}}` + +- 檢查本機 Homebrew 套件是否有潛在問題: + +`brew doctor` diff --git a/pages.zh_TW/common/bundler.md b/pages.zh_TW/common/bundler.md new file mode 100644 index 00000000000000..36b58cea9878c6 --- /dev/null +++ b/pages.zh_TW/common/bundler.md @@ -0,0 +1,8 @@ +# bundler + +> 這是 `bundle` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr bundle` diff --git a/pages.zh_TW/common/cat.md b/pages.zh_TW/common/cat.md index 0d0bdc5b968290..be279963e46990 100644 --- a/pages.zh_TW/common/cat.md +++ b/pages.zh_TW/common/cat.md @@ -1,7 +1,7 @@ # cat > 連接檔案並印出檔案的內容。 -> 更多資訊: . +> 更多資訊:. - 將檔案的內容印在標準輸出: diff --git a/pages.zh_TW/common/cd.md b/pages.zh_TW/common/cd.md index 88dc29f4ec7dd0..957944b3be7bfa 100644 --- a/pages.zh_TW/common/cd.md +++ b/pages.zh_TW/common/cd.md @@ -1,7 +1,7 @@ # cd > 改變工作目錄。 -> 更多資訊: . +> 更多資訊:. - 前往指定目錄: diff --git a/pages.zh_TW/common/chezmoi.md b/pages.zh_TW/common/chezmoi.md new file mode 100644 index 00000000000000..f24d5cbc7e840d --- /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/clamav.md b/pages.zh_TW/common/clamav.md new file mode 100644 index 00000000000000..1d2ba878c3a806 --- /dev/null +++ b/pages.zh_TW/common/clamav.md @@ -0,0 +1,8 @@ +# clamav + +> 這是 `clamdscan` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr clamdscan` diff --git a/pages.zh_TW/common/clang-cpp.md b/pages.zh_TW/common/clang-cpp.md new file mode 100644 index 00000000000000..fcf2a4c6c3cd95 --- /dev/null +++ b/pages.zh_TW/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> 這是 `clang++` 命令的一個別名。 + +- 原命令的文件在: + +`tldr clang++` diff --git a/pages.zh_TW/common/clojure.md b/pages.zh_TW/common/clojure.md new file mode 100644 index 00000000000000..94a42747f2078b --- /dev/null +++ b/pages.zh_TW/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> 這是 `clj` 命令的一個別名。 + +- 原命令的文件在: + +`tldr clj` diff --git a/pages.zh_TW/common/code.md b/pages.zh_TW/common/code.md new file mode 100644 index 00000000000000..9ac41b6c7f9c92 --- /dev/null +++ b/pages.zh_TW/common/code.md @@ -0,0 +1,28 @@ +# code + +> Visual Studio Code. +> 更多資訊:. + +- 執行 VS Code: + +`code` + +- 在 VS Code 開啟當前目錄: + +`code .` + +- 在 VS Code 開啟檔案或目錄: + +`code {{檔案或目錄/完整/路徑}}` + +- 在目前開啟的 VS Code 視窗中開啟一個檔案或目錄: + +`code --reuse-window {{檔案或目錄/完整/路徑}}` + +- 在 VS Code 中比較兩個檔案: + +`code -d {{檔案一}} {{檔案二}}` + +- 用超級使用者 (sudo) 權限執行 VS Code: + +`sudo code {{檔案或目錄/完整/路徑}} --user-data-dir` diff --git a/pages.zh_TW/common/cola.md b/pages.zh_TW/common/cola.md new file mode 100644 index 00000000000000..71c3d520931e71 --- /dev/null +++ b/pages.zh_TW/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> 這是 `git-cola` 命令的一個別名。 + +- 原命令的文件在: + +`tldr git-cola` diff --git a/pages.zh_TW/common/cp.md b/pages.zh_TW/common/cp.md new file mode 100644 index 00000000000000..1a77e18c1880ab --- /dev/null +++ b/pages.zh_TW/common/cp.md @@ -0,0 +1,28 @@ +# cp + +> 複製檔案或整個目錄。 +> 更多資訊:. + +- 將檔案複製到另一個位置: + +`cp {{檔案一/完整/路徑}} {{檔案二/完整/路徑}}` + +- 將檔案複製到另一個目錄下,並保留原本的檔名: + +`cp {{檔案/完整/路徑}} {{目錄/完整/路徑}}` + +- 以遞迴方式將目錄一的內容複製到目錄二(如果目錄二存在,則目錄一複製為目錄二的子目錄): + +`cp -R {{目錄一/完整/路徑}} {{目錄二/完整/路徑}}` + +- 以詳細模式遞迴複製目錄(複製時逐一顯示檔案信息): + +`cp -vR {{目錄一/完整/路徑}} {{目錄二/完整/路徑}}` + +- 以互動模式將 txt 檔複製到另一個目錄下(在覆寫之前提示使用者): + +`cp -i {{*.txt}} {{目錄/完整/路徑}}` + +- 複製前遵循符號連結: + +`cp -L {{符號連結}} {{目錄/完整/路徑}}` diff --git a/pages.zh_TW/common/cron.md b/pages.zh_TW/common/cron.md new file mode 100644 index 00000000000000..90cefb5062b5b4 --- /dev/null +++ b/pages.zh_TW/common/cron.md @@ -0,0 +1,7 @@ +# cron + +> 這是 `crontab` 命令的一個別名。 + +- 原命令的文件在: + +`tldr crontab` diff --git a/pages.zh_TW/common/curl.md b/pages.zh_TW/common/curl.md new file mode 100644 index 00000000000000..8b59a2bafa80e6 --- /dev/null +++ b/pages.zh_TW/common/curl.md @@ -0,0 +1,37 @@ +# curl + +> 向 / 從一個伺服器傳輸數據。 +> 支持大多數協議,包括 HTTP、FTP 和 POP3. +> 更多資訊:. + +- 將指定 URL 的內容下載到檔案: + +`curl {{http://example.com}} --output {{檔案/完整/路徑}}` + +- 將檔案從 URL 保存到由 URL 指示的檔名: + +`curl --remote-name {{http://example.com/filename}}` + +- 下載檔案,跟隨重新導向,並且自動續傳(恢復)前序檔案傳輸: + +`curl --remote-name --location --continue-at - {{http://example.com/filename}}` + +- 發送表單編碼數據(`application/x-www-form-urlencoded` 的 POST 請求): + +`curl --data {{'name=bob'}} {{http://example.com/form}}` + +- 發送帶有額外請求頭,使用自定義請求方法: + +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}` + +- 發送 JSON 格式的數據,並附加正確的 `Content-Type` 請求頭: + +`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.zh_TW/common/df.md b/pages.zh_TW/common/df.md new file mode 100644 index 00000000000000..56ee7ea4755aa4 --- /dev/null +++ b/pages.zh_TW/common/df.md @@ -0,0 +1,24 @@ +# df + +> 概述檔案系統的磁碟空間的使用情況。 +> 更多資訊:. + +- 顯示所有檔案系統及磁碟使用情況: + +`df` + +- 以人類可讀的形式顯示所有檔案系統及磁碟使用情況: + +`df -h` + +- 顯示包含給定檔案或目錄的檔案系統及其磁碟的使用情況: + +`df {{檔案或目錄/完整/路徑}}` + +- 顯示未被使用的 inode 數量的統計資訊: + +`df -i` + +- 顯示檔案系統但排除指定類型: + +`df -x {{squashfs}} -x {{tmpfs}}` diff --git a/pages.zh_TW/common/diff.md b/pages.zh_TW/common/diff.md new file mode 100644 index 00000000000000..5d8610b2ab2088 --- /dev/null +++ b/pages.zh_TW/common/diff.md @@ -0,0 +1,32 @@ +# diff + +> 比較兩個檔案或目錄間的差異。 +> 更多資訊:. + +- 比較兩檔案,列出 `舊檔案` 相異於 `新檔案` 而需更改之處,以讓兩者相同: + +`diff {{舊檔案}} {{新檔案}}` + +- 忽略空格下,比較兩檔案: + +`diff --ignore-all-space {{舊檔案}} {{新檔案}}` + +- 比較兩檔案,並排顯示差異: + +`diff --side-by-side {{舊檔案}} {{新檔案}}` + +- 比較兩檔案,並以統一格式 (unified format) 顯示差異(為 `git diff` 預設格式): + +`diff --unified {{舊檔案}} {{新檔案}}` + +- 遞迴比較兩目錄,顯示相異的檔名或目錄名,與檔案內更動: + +`diff --recursive {{舊目錄}} {{新目錄}}` + +- 比較兩目錄,只顯示相異檔案的檔名: + +`diff --recursive --brief {{舊目錄}} {{新目錄}}` + +- 由兩個文字檔之間差異建立一個補丁 (patch) 檔給 Git,不存在的檔案視為空白文件: + +`diff --text --unified --new-file {{舊檔案}} {{新檔案}} > {{diff.patch}}` diff --git a/pages.zh_TW/common/docker.md b/pages.zh_TW/common/docker.md new file mode 100644 index 00000000000000..af733a9ce9971c --- /dev/null +++ b/pages.zh_TW/common/docker.md @@ -0,0 +1,37 @@ +# docker + +> 管理 Docker 容器和映像檔。 +> 此命令也有關於其子命令的文件,例如:`docker run`. +> 更多資訊:. + +- 列出目前正在運行的 docker 容器: + +`docker ps` + +- 列出所有 docker 容器(包括停止的容器): + +`docker ps -a` + +- 透過映像檔啟動容器,並為容器命名: + +`docker run --name {{容器名稱}} {{映像檔}}` + +- 啟動或停止現有容器: + +`docker {{start|stop}} {{容器名稱}}` + +- 從 docker registry 中拉取映像檔: + +`docker pull {{映像檔}}` + +- 從正在運行的容器內打開一個 shell: + +`docker exec -it {{容器名稱}} {{sh}}` + +- 刪除一個停止的容器: + +`docker rm {{容器名稱}}` + +- 獲取並查看容器的日誌: + +`docker logs -f {{容器名稱}}` diff --git a/pages.zh_TW/common/dotnet.md b/pages.zh_TW/common/dotnet.md new file mode 100644 index 00000000000000..cea06c058120eb --- /dev/null +++ b/pages.zh_TW/common/dotnet.md @@ -0,0 +1,21 @@ +# dotnet + +> 適用於 .NET Core 的跨平台 .NET 命令列工具。 +> 此命令也有關於其子命令的文件,例如:`dotnet build`. +> 更多資訊:. + +- 初始化一個新的 .NET 專案: + +`dotnet new {{模板名稱}}` + +- 還原 NuGet 套件: + +`dotnet restore` + +- 在當前目錄中構建並執行 .NET 項目: + +`dotnet run` + +- 運行 .NET 應用程式(只需要執行環境,其餘命令需要 .NET Core SDK): + +`dotnet {{路徑/到/應用程式.dll}}` diff --git a/pages.zh_TW/common/echo.md b/pages.zh_TW/common/echo.md index 5824a2b22e023a..c767e447665267 100644 --- a/pages.zh_TW/common/echo.md +++ b/pages.zh_TW/common/echo.md @@ -1,7 +1,7 @@ # echo > 印出文字。 -> 更多資訊: . +> 更多資訊:. - 印出一行文字(如果文字中沒有連續的空格,可以不加引號): diff --git a/pages.zh_TW/common/fossil-ci.md b/pages.zh_TW/common/fossil-ci.md new file mode 100644 index 00000000000000..826beb6469c821 --- /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 00000000000000..b277c20008ba51 --- /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 00000000000000..c539cea453fbcf --- /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 00000000000000..92a4dec43c8544 --- /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 00000000000000..c9dd4dff5f9a3c --- /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 00000000000000..009229d25ff5d3 --- /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 00000000000000..9dbc6d85303717 --- /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 00000000000000..3f6e69bed03f76 --- /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 00000000000000..2c97797949a4e3 --- /dev/null +++ b/pages.zh_TW/common/kafkacat.md @@ -0,0 +1,7 @@ +# kafkacat + +> 這是 `kcat` 命令的一個別名。 + +- 原命令的文件在: + +`tldr kcat` diff --git a/pages.zh_TW/common/llvm-ar.md b/pages.zh_TW/common/llvm-ar.md new file mode 100644 index 00000000000000..62b42d44916cff --- /dev/null +++ b/pages.zh_TW/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> 這是 `ar` 命令的一個別名。 + +- 原命令的文件在: + +`tldr ar` diff --git a/pages.zh_TW/common/llvm-g++.md b/pages.zh_TW/common/llvm-g++.md new file mode 100644 index 00000000000000..e9de5737c2c02f --- /dev/null +++ b/pages.zh_TW/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> 這是 `clang++` 命令的一個別名。 + +- 原命令的文件在: + +`tldr clang++` diff --git a/pages.zh_TW/common/llvm-gcc.md b/pages.zh_TW/common/llvm-gcc.md new file mode 100644 index 00000000000000..e8a5b78f7f5472 --- /dev/null +++ b/pages.zh_TW/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> 這是 `clang` 命令的一個別名。 + +- 原命令的文件在: + +`tldr clang` diff --git a/pages.zh_TW/common/llvm-nm.md b/pages.zh_TW/common/llvm-nm.md new file mode 100644 index 00000000000000..7692bf7da35ed9 --- /dev/null +++ b/pages.zh_TW/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> 這是 `nm` 命令的一個別名。 + +- 原命令的文件在: + +`tldr nm` diff --git a/pages.zh_TW/common/llvm-objdump.md b/pages.zh_TW/common/llvm-objdump.md new file mode 100644 index 00000000000000..426aed341352df --- /dev/null +++ b/pages.zh_TW/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> 這是 `objdump` 命令的一個別名。 + +- 原命令的文件在: + +`tldr objdump` diff --git a/pages.zh_TW/common/llvm-strings.md b/pages.zh_TW/common/llvm-strings.md new file mode 100644 index 00000000000000..4e8be53ca5d77a --- /dev/null +++ b/pages.zh_TW/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> 這是 `strings` 命令的一個別名。 + +- 原命令的文件在: + +`tldr strings` diff --git a/pages.zh_TW/common/ls.md b/pages.zh_TW/common/ls.md index 1efd13fa11830e..1566c3a14f6d4a 100644 --- a/pages.zh_TW/common/ls.md +++ b/pages.zh_TW/common/ls.md @@ -1,7 +1,7 @@ # ls > 列出目錄內容。 -> 更多資訊: . +> 更多資訊:. - 列出目錄中的檔案,其中每個檔案佔一行: diff --git a/pages.zh_TW/common/lzcat.md b/pages.zh_TW/common/lzcat.md new file mode 100644 index 00000000000000..93b82469786c29 --- /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 00000000000000..217a102eb7ffcd --- /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 3a8678f001e665..f0a7a6a87272b4 100644 --- a/pages.zh_TW/common/mkdir.md +++ b/pages.zh_TW/common/mkdir.md @@ -1,7 +1,7 @@ # mkdir > 建立目錄。 -> 更多資訊: . +> 更多資訊:. - 在目前所在目錄或指定路徑中建立新目錄: diff --git a/pages.zh_TW/common/mscore.md b/pages.zh_TW/common/mscore.md new file mode 100644 index 00000000000000..87747a8c20f57c --- /dev/null +++ b/pages.zh_TW/common/mscore.md @@ -0,0 +1,8 @@ +# mscore + +> 這是 `musescore` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr musescore` diff --git a/pages.zh_TW/common/nm-classic.md b/pages.zh_TW/common/nm-classic.md new file mode 100644 index 00000000000000..e42787bf0def7c --- /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/ntl.md b/pages.zh_TW/common/ntl.md new file mode 100644 index 00000000000000..bdaacef0ea4ebe --- /dev/null +++ b/pages.zh_TW/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> 這是 `netlify` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr netlify` diff --git a/pages.zh_TW/common/pio-init.md b/pages.zh_TW/common/pio-init.md new file mode 100644 index 00000000000000..b4809a7cc4efba --- /dev/null +++ b/pages.zh_TW/common/pio-init.md @@ -0,0 +1,7 @@ +# pio-init + +> 這是 `pio project` 命令的一個別名。 + +- 原命令的文件在: + +`tldr pio project` diff --git a/pages.zh_TW/common/piodebuggdb.md b/pages.zh_TW/common/piodebuggdb.md new file mode 100644 index 00000000000000..59727038041526 --- /dev/null +++ b/pages.zh_TW/common/piodebuggdb.md @@ -0,0 +1,7 @@ +# piodebuggdb + +> 這是 `pio debug` 命令的一個別名。 + +- 原命令的文件在: + +`tldr pio debug` diff --git a/pages.zh_TW/common/platformio.md b/pages.zh_TW/common/platformio.md new file mode 100644 index 00000000000000..7a2ae83bf30682 --- /dev/null +++ b/pages.zh_TW/common/platformio.md @@ -0,0 +1,8 @@ +# platformio + +> 這是 `pio` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr pio` diff --git a/pages.zh_TW/common/ptpython3.md b/pages.zh_TW/common/ptpython3.md new file mode 100644 index 00000000000000..a7063f86353083 --- /dev/null +++ b/pages.zh_TW/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> 這是 `ptpython` 命令的一個別名。 + +- 原命令的文件在: + +`tldr ptpython` diff --git a/pages.zh_TW/common/pwd.md b/pages.zh_TW/common/pwd.md index 35a30945767763..7b19d9dacce7c6 100644 --- a/pages.zh_TW/common/pwd.md +++ b/pages.zh_TW/common/pwd.md @@ -1,7 +1,7 @@ # pwd > 印出目前目錄的名稱。 -> 更多資訊: . +> 更多資訊:. - 印出目前所在的目錄名稱: diff --git a/pages.zh_TW/common/python3.md b/pages.zh_TW/common/python3.md new file mode 100644 index 00000000000000..5d076df84401f2 --- /dev/null +++ b/pages.zh_TW/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> 這是 `python` 命令的一個別名。 + +- 原命令的文件在: + +`tldr python` diff --git a/pages.zh_TW/common/r2.md b/pages.zh_TW/common/r2.md new file mode 100644 index 00000000000000..67e7c92e7c08b7 --- /dev/null +++ b/pages.zh_TW/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> 這是 `radare2` 命令的一個別名。 + +- 原命令的文件在: + +`tldr radare2` diff --git a/pages.zh_TW/common/rcat.md b/pages.zh_TW/common/rcat.md new file mode 100644 index 00000000000000..0e5c1429866303 --- /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 00000000000000..139cbcb985f045 --- /dev/null +++ b/pages.zh_TW/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> 這是 `rg` 命令的一個別名。 + +- 原命令的文件在: + +`tldr rg` diff --git a/pages.zh_TW/common/rm.md b/pages.zh_TW/common/rm.md index d873a2b44b5c2e..314d01799edd10 100644 --- a/pages.zh_TW/common/rm.md +++ b/pages.zh_TW/common/rm.md @@ -1,7 +1,7 @@ # rm > 移除檔案或目錄。 -> 更多資訊: . +> 更多資訊:. - 移除位於指定路徑的檔案: diff --git a/pages.zh_TW/common/rmdir.md b/pages.zh_TW/common/rmdir.md index fe23549af2c585..3bde3267a6b8e2 100644 --- a/pages.zh_TW/common/rmdir.md +++ b/pages.zh_TW/common/rmdir.md @@ -1,7 +1,7 @@ # rmdir > 移除目錄。 -> 更多資訊: . +> 更多資訊:. - 若為空目錄則移除目錄(如果目錄非空,可用 `rm -r` 移除目錄及其所包含的檔案): diff --git a/pages.zh_TW/common/tldrl.md b/pages.zh_TW/common/tldrl.md new file mode 100644 index 00000000000000..363e908c34f0c7 --- /dev/null +++ b/pages.zh_TW/common/tldrl.md @@ -0,0 +1,8 @@ +# tldrl + +> 這是 `tldr-lint` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr tldr-lint` diff --git a/pages.zh_TW/common/tlmgr-arch.md b/pages.zh_TW/common/tlmgr-arch.md new file mode 100644 index 00000000000000..fa2405ab6ac3cd --- /dev/null +++ b/pages.zh_TW/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr-arch + +> 這是 `tlmgr platform` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr tlmgr platform` diff --git a/pages.zh_TW/common/todoman.md b/pages.zh_TW/common/todoman.md new file mode 100644 index 00000000000000..6c6f6184f782b3 --- /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 3f810f1f7f8771..c5271284bc8708 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 00000000000000..e1deb05536e9fb --- /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 00000000000000..ba55c9ad801c8f --- /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 00000000000000..694ceb05ce6ba2 --- /dev/null +++ b/pages.zh_TW/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> 這是 `xz` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr xz` diff --git a/pages.zh_TW/common/vi.md b/pages.zh_TW/common/vi.md new file mode 100644 index 00000000000000..342b98d8d58db2 --- /dev/null +++ b/pages.zh_TW/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> 這是 `vim` 命令的一個別名。 + +- 原命令的文件在: + +`tldr vim` diff --git a/pages.zh_TW/common/w.md b/pages.zh_TW/common/w.md new file mode 100644 index 00000000000000..26b4504bc6b6e9 --- /dev/null +++ b/pages.zh_TW/common/w.md @@ -0,0 +1,20 @@ +# w + +> 顯示目前的登錄者以及他們正在進行的動作。 +> 更多資訊:. + +- 顯示目前的登錄者的訊息: + +`w` + +- 顯示特定登錄者的訊息: + +`w {{使用者名稱}}` + +- 顯示目前的登錄者的訊息,並隱藏標題: + +`w --no-header` + +- 顯示 login、JCPU、PCPU 以外的資訊: + +`w --short` diff --git a/pages.zh_TW/common/xzcat.md b/pages.zh_TW/common/xzcat.md new file mode 100644 index 00000000000000..fe852fa4215b89 --- /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 00000000000000..401cf8c709a7cf --- /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 00000000000000..4bb2e2f215827f --- /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 00000000000000..a8c689c5c4fa59 --- /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 00000000000000..234b0078247b4d --- /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 00000000000000..22dc4b36abca27 --- /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 new file mode 100644 index 00000000000000..09ca9d86243bce --- /dev/null +++ b/pages.zh_TW/linux/cp.md @@ -0,0 +1,32 @@ +# cp + +> 複製檔案與資料夾。 +> 更多資訊:. + +- 複製一個檔案到新位置,並重新命名: + +`cp {{檔案/完整/檔案.副檔名}} {{檔案/完整/新檔案.副檔名}}` + +- 複製一個檔案到目錄內,但保留檔案名稱: + +`cp {{檔案/完整/檔案.副檔名}} {{目錄/完整/路徑}}` + +- 遞迴的複製目錄的所有內容到新位置(若目標路徑已存在,將複製到該目錄的內部): + +`cp -r {{目錄/完整/路徑}} {{目錄/完整/目標路徑}}` + +- 遞迴的複製目錄的所有內容到新位置,並透過 `-v` 參數在複製過程中顯示被複製的內容: + +`cp -vr {{目錄/完整/路徑}} {{目錄/完整/目標路徑}}` + +- 透過「互動模式」複製文字檔到新位置(當新位置有相同名稱的檔案時,需要先經過使用者的同意,方能複製到新位置): + +`cp -i {{*.txt}} {{目錄/完整/目標路徑}}` + +- 複製檔案或「捷徑」指向的「真實」檔案或資料夾: + +`cp -L {{捷徑}} {{目錄/完整/目標路徑}}` + +- 使用完整的檔案路徑與檔案名稱,來創建跟原本目錄結構相同的目錄與檔案: + +`cp --parents {{檔案/完整/路徑}} {{檔案/完整/路徑}}` 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 00000000000000..e5e8d16eb21170 --- /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 00000000000000..fdf3e63eecbd74 --- /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/ncal.md b/pages.zh_TW/linux/ncal.md new file mode 100644 index 00000000000000..b4299ea3ba4edd --- /dev/null +++ b/pages.zh_TW/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> 這是 `cal` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr cal` diff --git a/pages.zh_TW/linux/ubuntu-bug.md b/pages.zh_TW/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..8094b8eb38d0f8 --- /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 00000000000000..1f7bffa59a80d8 --- /dev/null +++ b/pages.zh_TW/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> 這是 `yaa` 命令的一個別名。 + +- 原命令的文件在: + +`tldr yaa` diff --git a/pages.zh_TW/osx/g[.md b/pages.zh_TW/osx/g[.md new file mode 100644 index 00000000000000..1b67c6767f0545 --- /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 00000000000000..01291de4805d31 --- /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 00000000000000..6c1a4353f418de --- /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 00000000000000..b13c5c1813cd72 --- /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 00000000000000..47f609d1b86c72 --- /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 00000000000000..b68e412a932200 --- /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 00000000000000..b7280a7138f89d --- /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 00000000000000..e2a78a99067f59 --- /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 00000000000000..2af17aa567704f --- /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 00000000000000..6e43accbc2594e --- /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 00000000000000..7218146f041357 --- /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 00000000000000..8137b8a1094f2b --- /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 00000000000000..2fbddb34e8afc4 --- /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 00000000000000..b7cec88cd2a415 --- /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 00000000000000..5e0fbdc1adb64c --- /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 00000000000000..f4afdd19319ce7 --- /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 00000000000000..e07357a4b33286 --- /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 00000000000000..911aa864dfa68a --- /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 00000000000000..d5035d55431d0b --- /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 00000000000000..b214684eef32a4 --- /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 00000000000000..289f9bf30f7f18 --- /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 00000000000000..f8366f384c84d8 --- /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 00000000000000..94d0b8b0b4d48f --- /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 00000000000000..4c36950d53f183 --- /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 00000000000000..d16879f64a3cd0 --- /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 00000000000000..1efdea2136fedc --- /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 00000000000000..a6522ffd2640fe --- /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 00000000000000..4bad436e55d634 --- /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 00000000000000..bd64acde4f95a2 --- /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 00000000000000..0e0ef77c1d9255 --- /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 00000000000000..26f6dde63426bf --- /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 00000000000000..a4d8431159f5cc --- /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 00000000000000..be8bf0ce51a247 --- /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 00000000000000..549fc0125abdc1 --- /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 00000000000000..925516e8cadb4c --- /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 00000000000000..1404cae9e537a4 --- /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 00000000000000..d2cc9e398fa35e --- /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 00000000000000..87c08c181c735c --- /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 00000000000000..4f6bcda37b084d --- /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 00000000000000..69c328f4d11de9 --- /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 00000000000000..1aab5f300a874a --- /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 00000000000000..51272c370fba63 --- /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 00000000000000..af702758106841 --- /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 00000000000000..b05c17aca87286 --- /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 00000000000000..cea6b47101f07d --- /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 00000000000000..94436b965c2314 --- /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 00000000000000..4823f5e736fd5d --- /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 00000000000000..21526489b23c0d --- /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 00000000000000..76a564f33cb06d --- /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 00000000000000..bf0cd50df46da4 --- /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 00000000000000..1614a92e63659d --- /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 00000000000000..99ae2ac47870f2 --- /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 00000000000000..40e89c09145570 --- /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 00000000000000..18f000a2606d09 --- /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 00000000000000..2505208097ff70 --- /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 00000000000000..d17b831848f03a --- /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 00000000000000..f7313a5876c933 --- /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 00000000000000..d4bec9f531c9b3 --- /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 00000000000000..4492d639e57984 --- /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 00000000000000..c910b2699615d2 --- /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 00000000000000..f990c74d6d7db6 --- /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 00000000000000..58d434c3c17d75 --- /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 00000000000000..f9537d0d1248cf --- /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 00000000000000..08a7c943fcc1cc --- /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 00000000000000..07b2f1977584de --- /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 00000000000000..898877bd3089a8 --- /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 00000000000000..c67371eeda1c46 --- /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 00000000000000..4018f9847007fa --- /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 00000000000000..b098a1a8750cff --- /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 00000000000000..1e07281466afaf --- /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 00000000000000..b2a5a92aad8d62 --- /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 00000000000000..cc8616ca8f368f --- /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 00000000000000..764ec6f81bf261 --- /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 00000000000000..1f792d3eb89209 --- /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 00000000000000..1946f418568b53 --- /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 00000000000000..38a0cf0c5f148f --- /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 00000000000000..1a2cc2decf57a4 --- /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 00000000000000..0d916a451eccb1 --- /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 00000000000000..d1f4a10bca4d2a --- /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 00000000000000..8653475da40246 --- /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 00000000000000..82326f1cf1b8b9 --- /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 00000000000000..8164f79137aa13 --- /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 00000000000000..3f6fe2af321c03 --- /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 00000000000000..ef179f0d129f5d --- /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 00000000000000..a6d32745445c0a --- /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 00000000000000..68b33e7b35be0a --- /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 00000000000000..760085cd52520d --- /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 00000000000000..74f2bbb98ecc27 --- /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 00000000000000..f55707c9806acd --- /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 00000000000000..adc77a5aec92b0 --- /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 00000000000000..0717ab348fd393 --- /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 00000000000000..caf2a780563581 --- /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 00000000000000..d45cc7b2cef4ef --- /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 00000000000000..e779322cb06846 --- /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 00000000000000..609321ef637b86 --- /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 00000000000000..dce77f63604711 --- /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 00000000000000..4da2e5c44cb633 --- /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 00000000000000..18d28750dc52ce --- /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 00000000000000..fa9f05eca9dba4 --- /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 00000000000000..c77d3b71ded1fe --- /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 00000000000000..6e428ed58239c6 --- /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 00000000000000..47570c75affa66 --- /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 00000000000000..ac311aa2fe1a0c --- /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 00000000000000..d3df9155e7ce53 --- /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 00000000000000..79546a0ab921ad --- /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 00000000000000..2f53ecc0cbf27b --- /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 00000000000000..f3efc469cea474 --- /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 00000000000000..9439ee9d8339c5 --- /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 00000000000000..2a59d346015e44 --- /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 00000000000000..391685b9c8e3c3 --- /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 00000000000000..0c543c7d410b5c --- /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 00000000000000..862b936fa630c4 --- /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 00000000000000..907aec67539359 --- /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 00000000000000..b3dd412ad04224 --- /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 00000000000000..caa66f90c49bac --- /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 00000000000000..1148905dfd0481 --- /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 00000000000000..0c26b7f795bda7 --- /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 00000000000000..e60d2eaca98099 --- /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 00000000000000..a1bdbcd84a8528 --- /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 00000000000000..15add9ac35a030 --- /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 00000000000000..1ad851accade8e --- /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 00000000000000..e5cf281088f518 --- /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 00000000000000..1e757ffba806e2 --- /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 00000000000000..f08fd314bd9bdd --- /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 00000000000000..4197b618329e8c --- /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 00000000000000..2a2f20ffd05e25 --- /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 00000000000000..54f934e34176f3 --- /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 00000000000000..222a14ccf66f63 --- /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 00000000000000..a05a9bcde06377 --- /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 00000000000000..832367d7280a43 --- /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 00000000000000..93dab36aa3df7d --- /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 00000000000000..d4ad92825fad76 --- /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 00000000000000..fa815a4c4f11bc --- /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 00000000000000..4ce3680fa5fd02 --- /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 00000000000000..e692f47433ff37 --- /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 00000000000000..b36fd130a653fb --- /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 00000000000000..7ddd7ae6c30914 --- /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 00000000000000..d5f6dcb38baad7 --- /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 00000000000000..e8109b221ec6b6 --- /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 00000000000000..d6233445e09927 --- /dev/null +++ b/pages.zh_TW/osx/launchd.md @@ -0,0 +1,8 @@ +# launchd + +> 這是 `launchctl` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr launchctl` diff --git a/pages.zh_TW/windows/choco.md b/pages.zh_TW/windows/choco.md new file mode 100644 index 00000000000000..c22012853cc3c9 --- /dev/null +++ b/pages.zh_TW/windows/choco.md @@ -0,0 +1,21 @@ +# choco + +> 「Chocolatey package manager」軟體套件管理器。 +> 執行命令由兩個單字「組合」成,例如 `choco install`,請參考使用文檔。 +> 更多資訊:. + +- 執行「組合」命令: + +`choco {{命令}}` + +- 顯示 `choco` 幫助文檔: + +`choco -?` + +- 顯示「組合」命令幫助文檔: + +`choco {{命令}} -?` + +- 顯示 Chocolatey 版本: + +`choco --version` diff --git a/pages.zh_TW/windows/chrome.md b/pages.zh_TW/windows/chrome.md new file mode 100644 index 00000000000000..609cb52e6b9239 --- /dev/null +++ b/pages.zh_TW/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> 這是 `chromium` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr chromium` diff --git a/pages.zh_TW/windows/cinst.md b/pages.zh_TW/windows/cinst.md new file mode 100644 index 00000000000000..0dbb13f329bf73 --- /dev/null +++ b/pages.zh_TW/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> 這是 `choco install` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr choco install` diff --git a/pages.zh_TW/windows/clist.md b/pages.zh_TW/windows/clist.md new file mode 100644 index 00000000000000..c201628d87f11f --- /dev/null +++ b/pages.zh_TW/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> 這是 `choco list` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr choco list` diff --git a/pages.zh_TW/windows/cls.md b/pages.zh_TW/windows/cls.md new file mode 100644 index 00000000000000..5fa64283a0f486 --- /dev/null +++ b/pages.zh_TW/windows/cls.md @@ -0,0 +1,8 @@ +# cls + +> 清除命令提示字元中的輸出文字。 +> 更多資訊:. + +- 清除輸出: + +`cls` diff --git a/pages.zh_TW/windows/cmd.md b/pages.zh_TW/windows/cmd.md new file mode 100644 index 00000000000000..776c7e25801bd8 --- /dev/null +++ b/pages.zh_TW/windows/cmd.md @@ -0,0 +1,36 @@ +# cmd + +> Windows 命令解釋器。 +> 更多資訊:. + +- 開啟一個新的命令列執行個體: + +`cmd` + +- 執行指定的命令然後退出: + +`cmd /c "{{命令}}"` + +- 執行一個指定的命令,之後進入一個互動式 shell: + +`cmd /k "{{命令}}"` + +- 不顯示命令的輸出結果: + +`cmd /q` + +- 啟用或禁用命令擴展: + +`cmd /e:{{on|off}}` + +- 啟用或禁用文件和目錄名的自動補全: + +`cmd /f:{{on|off}}` + +- 啟用或禁用環境變數擴展: + +`cmd /v:{{on|off}}` + +- 使用 Unicode 編碼強制輸出內容: + +`cmd /u` diff --git a/pages.zh_TW/windows/cpush.md b/pages.zh_TW/windows/cpush.md new file mode 100644 index 00000000000000..4a3bb6b76b9533 --- /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/cuninst.md b/pages.zh_TW/windows/cuninst.md new file mode 100644 index 00000000000000..4e6343a322d07f --- /dev/null +++ b/pages.zh_TW/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> 這是 `choco uninstall` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr choco uninstall` diff --git a/pages.zh_TW/windows/curl.md b/pages.zh_TW/windows/curl.md new file mode 100644 index 00000000000000..1b92d06c4ac115 --- /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/dir.md b/pages.zh_TW/windows/dir.md new file mode 100644 index 00000000000000..6eaabdbcd212b5 --- /dev/null +++ b/pages.zh_TW/windows/dir.md @@ -0,0 +1,20 @@ +# dir + +> 列出目錄的內容。 +> 更多資訊:. + +- 顯示當前目錄的內容: + +`dir` + +- 顯示指定目錄的內容: + +`dir {{目錄/完整/路徑}}` + +- 顯示當前目錄的內容,包括隱藏的文件: + +`dir /A` + +- 顯示指定目錄的內容,包括隱藏的文件: + +`dir {{目錄/完整/路徑}} /A` diff --git a/pages.zh_TW/windows/exit.md b/pages.zh_TW/windows/exit.md new file mode 100644 index 00000000000000..25ea58ae708fab --- /dev/null +++ b/pages.zh_TW/windows/exit.md @@ -0,0 +1,16 @@ +# exit + +> 退出當前的命令解釋器實例或批次檔。 +> 更多資訊:. + +- 退出當前的命令解釋器實例: + +`exit` + +- 退出當前的批次檔: + +`exit /b` + +- 使用一個指定的退出碼退出: + +`exit {{退出碼}}` diff --git a/pages.zh_TW/windows/explorer.md b/pages.zh_TW/windows/explorer.md new file mode 100644 index 00000000000000..b27bb9f9d32cfa --- /dev/null +++ b/pages.zh_TW/windows/explorer.md @@ -0,0 +1,16 @@ +# explorer + +> Windows 檔案總管。 +> 更多資訊:. + +- 打開 Windows 檔案總管: + +`explorer` + +- 在當前目錄打開 Windows 檔案總管: + +`explorer .` + +- 在指定目錄打開 Windows 檔案總管: + +`explorer {{目錄/完整/路徑}}` diff --git a/pages.zh_TW/windows/fc.md b/pages.zh_TW/windows/fc.md new file mode 100644 index 00000000000000..df2d8528cf52cc --- /dev/null +++ b/pages.zh_TW/windows/fc.md @@ -0,0 +1,33 @@ +# fc + +> 比較兩個檔案或一組檔案間的差異。 +> 以萬用字元 (*) 比較一組檔案。 +> 更多資訊:. + +- 比較兩個指定檔案: + +`fc {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 比較檔案且忽略大小寫差異: + +`fc /c {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 以 Unicode 文字檔方式比較檔案: + +`fc /u {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 以 ASCII 文字形式比較檔案: + +`fc /l {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 以二進位方式比較檔案: + +`fc /b {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 禁止將定位字元 (tab) 展開成空格: + +`fc /t {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` + +- 壓縮空白字元(定位字元與空格)後,再進行比較: + +`fc /w {{檔案/完整/路徑1}} {{檔案/完整/路徑2}}` diff --git a/pages.zh_TW/windows/find.md b/pages.zh_TW/windows/find.md new file mode 100644 index 00000000000000..65ecc89658d415 --- /dev/null +++ b/pages.zh_TW/windows/find.md @@ -0,0 +1,20 @@ +# find + +> 在一個或多個文件中查詢指定字串。 +> 更多資訊:. + +- 查詢包含指定字串的行: + +`find {{字串}} {{檔案或目錄/完整/路徑}}` + +- 查詢不包含指定字串的行: + +`find {{字串}} {{檔案或目錄/完整/路徑}} /v` + +- 顯示包含指定字串的行總數: + +`find {{字串}} {{檔案或目錄/完整/路徑}} /c` + +- 顯示符合的行號: + +`find {{字串}} {{檔案或目錄/完整/路徑}} /n` diff --git a/pages.zh_TW/windows/ipconfig.md b/pages.zh_TW/windows/ipconfig.md new file mode 100644 index 00000000000000..1e33981d66d810 --- /dev/null +++ b/pages.zh_TW/windows/ipconfig.md @@ -0,0 +1,24 @@ +# ipconfig + +> 顯示和管理 Windows 的網路設定值。 +> 更多資訊:. + +- 顯示網路介面卡列表: + +`ipconfig` + +- 顯示網路介面卡的詳細列表: + +`ipconfig /all` + +- 為一個網路介面卡重新獲取 IP 地址: + +`ipconfig /renew {{介面卡}}` + +- 為一個網路介面卡釋放 IP 地址: + +`ipconfig /release {{介面卡}}` + +- 清除所有 DNS 快取: + +`ipconfig /flushdns` diff --git a/pages.zh_TW/windows/iwr.md b/pages.zh_TW/windows/iwr.md new file mode 100644 index 00000000000000..c0875c0fd764b9 --- /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/logoff.md b/pages.zh_TW/windows/logoff.md new file mode 100644 index 00000000000000..5c94ad4020ed11 --- /dev/null +++ b/pages.zh_TW/windows/logoff.md @@ -0,0 +1,16 @@ +# logoff + +> 終止登入的工作階段。 +> 更多資訊:. + +- 終止當前工作階段: + +`logoff` + +- 通過名稱和 ID 終止工作階段: + +`logoff {{工作階段名稱|工作階段 ID}}` + +- 終止通過 RDP 連接到指定伺服器的工作階段: + +`logoff {{工作階段名稱|工作階段 ID}} /server:{{伺服器}}` diff --git a/pages.zh_TW/windows/mkdir.md b/pages.zh_TW/windows/mkdir.md new file mode 100644 index 00000000000000..b4f69574bd16a7 --- /dev/null +++ b/pages.zh_TW/windows/mkdir.md @@ -0,0 +1,12 @@ +# mkdir + +> 建立一個資料夾。 +> 更多資訊:. + +- 建立一個資料夾: + +`mkdir {{資料夾名稱}}` + +- 遞迴建立資料夾及子資料夾: + +`mkdir {{資料夾/子資料夾名稱}}` diff --git a/pages.zh_TW/windows/more.md b/pages.zh_TW/windows/more.md new file mode 100644 index 00000000000000..cbdf96c4b678a6 --- /dev/null +++ b/pages.zh_TW/windows/more.md @@ -0,0 +1,32 @@ +# more + +> 分頁顯示標準輸入或文件的輸出。 +> 更多資訊:. + +- 分頁顯示標準輸入的輸出: + +`{{echo test}} | more` + +- 分頁顯示一個或多個文件的內容: + +`more {{檔案/完整/路徑}}` + +- 將製表符(tab)轉換為指定的空格數(space): + +`more {{檔案/完整/路徑}} /t{{空格數}}` + +- 顯示內容前先清除輸出: + +`more {{檔案/完整/路徑}} /c` + +- 從第 5 行開始顯示輸出: + +`more {{檔案/完整/路徑}} +{{5}}` + +- 啟用擴展交互模式(請參閱使用幫助): + +`more {{檔案/完整/路徑}} /e` + +- 顯示全部幫助資訊: + +`more /?` diff --git a/pages.zh_TW/windows/nvm.md b/pages.zh_TW/windows/nvm.md new file mode 100644 index 00000000000000..64e21913da1700 --- /dev/null +++ b/pages.zh_TW/windows/nvm.md @@ -0,0 +1,21 @@ +# nvm + +> 安裝、解除安裝,或切換不同 Node.js 版本。 +> 支援版本號如「12.8」或「v16.13.1」,以及像是「stable」、「system」等標籤。 +> 更多資訊:. + +- 安裝特定版本的 Node.js: + +`nvm install {{node 版本}}` + +- 設定系統預設使用的 Node.js 版本(必須以系統管理員身分執行): + +`nvm use {{node 版本}}` + +- 列出所有已安裝的 Node.js 版本,並標註當前系統使用的版本: + +`nvm list` + +- 解除安裝指定的 Node.js 版本: + +`nvm uninstall {{node 版本}}` diff --git a/pages.zh_TW/windows/path.md b/pages.zh_TW/windows/path.md new file mode 100644 index 00000000000000..0f43c49ef422b9 --- /dev/null +++ b/pages.zh_TW/windows/path.md @@ -0,0 +1,20 @@ +# path + +> 顯示或設定可執行檔的搜尋路徑。 +> 更多資訊:. + +- 顯示當前的 PATH 環境變數的設定: + +`path` + +- 將路徑設定為一個或多個以分號分隔的路徑目錄: + +`path {{檔案/完整/路徑}};{{檔案/完整/路徑]}}` + +- 將新的路徑目錄附加到到原始路徑: + +`path {{檔案/完整/路徑}};%path%` + +- 將命令提示字元設定為僅在當前目錄中搜尋可執行檔: + +`path ;` diff --git a/pages.zh_TW/windows/pwsh-where.md b/pages.zh_TW/windows/pwsh-where.md new file mode 100644 index 00000000000000..6a0a4b5d079e69 --- /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 00000000000000..5abc0d3d29db50 --- /dev/null +++ b/pages.zh_TW/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> 這是 `rmdir` 命令的一個別名。 +> 更多資訊:. + +- 原命令的文件在: + +`tldr rmdir` diff --git a/pages.zh_TW/windows/rmdir.md b/pages.zh_TW/windows/rmdir.md new file mode 100644 index 00000000000000..292bf10d0bcdd8 --- /dev/null +++ b/pages.zh_TW/windows/rmdir.md @@ -0,0 +1,16 @@ +# rmdir + +> 刪除一個目錄和裡面的內容。 +> 更多資訊:. + +- 刪除一個空目錄: + +`rmdir {{目錄/完整/路徑}}` + +- 遞迴刪除一個目錄和裡面的內容: + +`rmdir {{目錄/完整/路徑}} /s` + +- 在沒有提示的情況下遞迴刪除目錄和裡面的內容: + +`rmdir {{目錄/完整/路徑}} /s /q` diff --git a/pages.zh_TW/windows/set.md b/pages.zh_TW/windows/set.md new file mode 100644 index 00000000000000..c1a69ff03a3ae0 --- /dev/null +++ b/pages.zh_TW/windows/set.md @@ -0,0 +1,20 @@ +# set + +> 顯示或設定當前 CMD 執行個體的環境變數。 +> 更多資訊:. + +- 列出當前所有環境變數: + +`set` + +- 為一個環境變數設定指定的值: + +`set {{變數名}}={{值}}` + +- 列出以指定字串開頭的環境變數: + +`set {{變數名}}` + +- 提示使用者輸入指定變數的值: + +`set /p {{變數名}}={{使用提示字串}}` diff --git a/pages.zh_TW/windows/sls.md b/pages.zh_TW/windows/sls.md new file mode 100644 index 00000000000000..ed09319ac7d94b --- /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/taskkill.md b/pages.zh_TW/windows/taskkill.md new file mode 100644 index 00000000000000..8f859fd7d6ad49 --- /dev/null +++ b/pages.zh_TW/windows/taskkill.md @@ -0,0 +1,28 @@ +# taskkill + +> 經由處理程序識別碼 (PID) 或映像名稱終止程序。 +> 更多資訊:. + +- 經由處理程序識別碼終止程序: + +`taskkill /pid {{處理程序識別碼}}` + +- 經由映像名稱終止程序: + +`taskkill /im {{映像名稱}}` + +- 強制終止特定程序: + +`taskkill /pid {{處理程序識別碼}} /f` + +- 終止程序與其子程序: + +`taskkill /im {{映像名稱}} /t` + +- 終止遠端電腦上的程序: + +`taskkill /pid {{處理程序識別碼}} /s {{遠端名稱}}` + +- 顯示此命令的使用資訊: + +`taskkill /?` diff --git a/pages.zh_TW/windows/title.md b/pages.zh_TW/windows/title.md new file mode 100644 index 00000000000000..5d1fd3b550fb8e --- /dev/null +++ b/pages.zh_TW/windows/title.md @@ -0,0 +1,8 @@ +# title + +> 設定命令提示字元視窗的標題。 +> 更多資訊:. + +- 設定當前命令提示字元的視窗標題: + +`title {{新標題}}` diff --git a/pages.zh_TW/windows/tree.md b/pages.zh_TW/windows/tree.md new file mode 100644 index 00000000000000..ab00fc575bd29c --- /dev/null +++ b/pages.zh_TW/windows/tree.md @@ -0,0 +1,20 @@ +# tree + +> 以樹狀結構的形式顯示指定目錄的所有資料夾和文件。 +> 更多資訊:. + +- 顯示當前目錄的樹狀結構: + +`tree` + +- 顯示指定目錄的樹狀結構: + +`tree {{目錄/完整/路徑}}` + +- 顯示目錄中文件的樹狀結構: + +`tree {{目錄/完整/路徑}} /f` + +- 使用 ASCII 字符而不是擴展字符顯示樹狀結構: + +`tree {{目錄/完整/路徑}} /a` diff --git a/pages.zh_TW/windows/type.md b/pages.zh_TW/windows/type.md new file mode 100644 index 00000000000000..2dc3f11297403f --- /dev/null +++ b/pages.zh_TW/windows/type.md @@ -0,0 +1,8 @@ +# type + +> 顯示文件的內容。 +> 更多資訊:. + +- 顯示指定文件的內容: + +`type {{檔案/完整/路徑}}` diff --git a/pages.zh_TW/windows/ver.md b/pages.zh_TW/windows/ver.md new file mode 100644 index 00000000000000..c485ca18d45c95 --- /dev/null +++ b/pages.zh_TW/windows/ver.md @@ -0,0 +1,8 @@ +# ver + +> 顯示當前 Windows 或 MS-DOS 的版本號。 +> 更多資訊:. + +- 顯示當前系統版本號: + +`ver` diff --git a/pages.zh_TW/windows/wget.md b/pages.zh_TW/windows/wget.md new file mode 100644 index 00000000000000..baa0a986018643 --- /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/whoami.md b/pages.zh_TW/windows/whoami.md new file mode 100644 index 00000000000000..4cb09b4b5f401f --- /dev/null +++ b/pages.zh_TW/windows/whoami.md @@ -0,0 +1,24 @@ +# whoami + +> 顯示關於當前使用者的詳細資訊。 +> 更多資訊:. + +- 顯示當前使用者的名稱: + +`whoami` + +- 顯示當前使用者所屬的群組: + +`whoami /groups` + +- 顯示當前使用者的權限: + +`whoami /priv` + +- 顯示當前使用者的使用者主體名稱(UPN): + +`whoami /upn` + +- 顯示當前使用者的登錄 ID: + +`whoami /logonid` diff --git a/pages.zh_TW/windows/winget.md b/pages.zh_TW/windows/winget.md new file mode 100644 index 00000000000000..ee7d3729fd941d --- /dev/null +++ b/pages.zh_TW/windows/winget.md @@ -0,0 +1,16 @@ +# winget + +> Windows 套件管理員的命令列工具。 +> 更多資訊:. + +- 安裝一個套件: + +`winget install {{套件}}` + +- 顯示指定套件的相關資訊: + +`winget show {{套件}}` + +- 搜尋指定套件: + +`winget search {{套件}}` diff --git a/pages.zh_TW/windows/wsl.md b/pages.zh_TW/windows/wsl.md new file mode 100644 index 00000000000000..4cc45630d78279 --- /dev/null +++ b/pages.zh_TW/windows/wsl.md @@ -0,0 +1,36 @@ +# wsl + +> 透過命令行管理 Windows 子系統 Linux 版 (WSL)。 +> 更多資訊:. + +- 在預設發行版下,開啟 Linux shell: + +`wsl {{shell 命令}}` + +- 不使用 shell 執行 Linux 命令: + +`wsl --exec {{命令}} {{命令參數}}` + +- 指定發行版: + +`wsl --distribution {{發行版}} {{shell 命令}}` + +- 列出可用的發行版: + +`wsl --list` + +- 將發行版匯出至 `.tar` 檔: + +`wsl --export {{發行版}} {{檔案/完整/distro_fs.tar}}` + +- 從 `.tar` 檔匯入發行版: + +`wsl --import {{發行版}} {{檔案/完整/安裝位置}} {{檔案/完整/distro_fs.tar}}` + +- 變更執行特定發行版的 Windows 子系統 Linux 版本 + +`wsl --set-version {{發行版}} {{WSL 版本}}` + +- 終止執行 Windows 子系統 Linux 版 + +`wsl --shutdown` diff --git a/pages/android/am.md b/pages/android/am.md index 2689e2965686c3..760357c9cc0973 100644 --- a/pages/android/am.md +++ b/pages/android/am.md @@ -7,14 +7,14 @@ `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}}` -- Convert an intent to an URI: +- Convert an intent to a URI: `am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}` diff --git a/pages/android/bugreport.md b/pages/android/bugreport.md new file mode 100644 index 00000000000000..ff3910d45da5af --- /dev/null +++ b/pages/android/bugreport.md @@ -0,0 +1,9 @@ +# bugreport + +> Show an Android bug report. +> This command can only be used through `adb shell`. +> More information: . + +- Display a complete bug report of an Android device: + +`bugreport` diff --git a/pages/android/bugreportz.md b/pages/android/bugreportz.md new file mode 100644 index 00000000000000..903a5d452422a6 --- /dev/null +++ b/pages/android/bugreportz.md @@ -0,0 +1,21 @@ +# bugreportz + +> Generate a zipped Android bug report. +> This command can only be used through `adb shell`. +> More information: . + +- Generate a complete zipped bug report of an Android device: + +`bugreportz` + +- Show the progress of a running `bugreportz` operation: + +`bugreportz -p` + +- Show the version of `bugreportz`: + +`bugreportz -v` + +- Display help: + +`bugreportz -h` diff --git a/pages/android/cmd.md b/pages/android/cmd.md index fc18cf7c358a40..0a4d259472592e 100644 --- a/pages/android/cmd.md +++ b/pages/android/cmd.md @@ -3,14 +3,14 @@ > Android service manager. > 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}} {{arg1 arg2 ...}}` diff --git a/pages/android/dalvikvm.md b/pages/android/dalvikvm.md index e1edf23ed4866e..fbb7ffd9cd0e85 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 308e35df49ab3b..f28e27a0e50613 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 ef0cbc66b5c2f0..5a87b7ec7fde90 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: @@ -27,6 +27,6 @@ `getprop {{ro.oem_unlock_supported}}` -- Display the MAC address of the Android's WiFi card: +- Display the MAC address of the Android's Wi-Fi card: `getprop {{ro.boot.wifimacaddr}}` diff --git a/pages/android/input.md b/pages/android/input.md index 323e67da5dab63..74568ea7f096fa 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 8b769223503a5f..5dfb010df38cc1 100644 --- a/pages/android/logcat.md +++ b/pages/android/logcat.md @@ -1,6 +1,6 @@ # logcat -> Dump a log of system messages. +> Dump a log of system messages, including stack traces when an error occurred, and information messages logged by applications. > More information: . - Display system logs: @@ -11,6 +11,14 @@ `logcat -f {{path/to/file}}` -- Display lines that match a regex: +- Display lines that match a regular expression: -`logcat --regex {{regex}}` +`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/pkg.md b/pages/android/pkg.md new file mode 100644 index 00000000000000..d368958e158733 --- /dev/null +++ b/pages/android/pkg.md @@ -0,0 +1,24 @@ +# pkg + +> Package management utility for Termux. +> More information: . + +- Upgrade all installed packages: + +`pkg upgrade` + +- Install a package: + +`pkg install {{package}}` + +- Uninstall a package: + +`pkg uninstall {{package}}` + +- Reinstall a package: + +`pkg reinstall {{package}}` + +- Search for a package: + +`pkg search {{package}}` diff --git a/pages/android/pm.md b/pages/android/pm.md index 4310dcba8af313..3e0059b53c07b7 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/screencap.md b/pages/android/screencap.md new file mode 100644 index 00000000000000..6904fb485dc9a3 --- /dev/null +++ b/pages/android/screencap.md @@ -0,0 +1,9 @@ +# screencap + +> Take a screenshot of a mobile display. +> This command can only be used through `adb shell`. +> More information: . + +- Take a screenshot: + +`screencap {{path/to/file}}` diff --git a/pages/android/settings.md b/pages/android/settings.md index 747ae5b6a5eb1f..8b482c71776f0f 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/android/wm.md b/pages/android/wm.md index 7cfbcd4fc7e9cc..db8ccfdc2dacca 100644 --- a/pages/android/wm.md +++ b/pages/android/wm.md @@ -2,6 +2,7 @@ > Show information about the screen of an Android device. > This command can only be used through `adb shell`. +> More information: . - Display the physical size of an Android device's screen: diff --git a/pages/common/7z.md b/pages/common/7z.md index 1e23fc92f1d789..7bb6e2f6eb5a6d 100644 --- a/pages/common/7z.md +++ b/pages/common/7z.md @@ -1,36 +1,36 @@ # 7z -> A file archiver with high compression ratio. -> More information: . +> File archiver with a high compression ratio. +> More information: . -- Archive a file or directory: +- [a]dd a file or directory to a new or existing archive: -`7z a {{archived.7z}} {{path/to/file_or_directory}}` +`7z a {{path/to/archive.7z}} {{path/to/file_or_directory}}` -- Encrypt an existing archive (including headers): +- Encrypt an existing archive (including filenames): -`7z a {{encrypted.7z}} -p{{password}} -mhe=on {{archived.7z}}` +`7z a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}` -- Extract an existing 7z file with original directory structure: +- E[x]tract an archive preserving the original directory structure: -`7z x {{archived.7z}}` +`7z x {{path/to/archive.7z}}` -- Extract an archive with user-defined output path: +- E[x]tract an archive to a specific directory: -`7z x {{archived.7z}} -o{{path/to/output}}` +`7z x {{path/to/archive.7z}} -o{{path/to/output}}` -- Extract an archive to stdout: +- E[x]tract an archive to `stdout`: -`7z x {{archived.7z}} -so` +`7z x {{path/to/archive.7z}} -so` -- Archive using a specific archive type: +- [a]rchive using a specific archive type: -`7z a -t{{zip|gzip|bzip2|tar}} {{archived.7z}} {{path/to/file_or_directory}}` +`7z a -t{{7z|bzip2|gzip|lzip|tar|zip}} {{path/to/archive.7z}} {{path/to/file_or_directory}}` -- List available archive types: +- [l]ist the contents of an archive: -`7z i` +`7z l {{path/to/archive.7z}}` -- List the contents of an archive file: +- List available archive types: -`7z l {{archived.7z}}` +`7z i` diff --git a/pages/common/7za.md b/pages/common/7za.md index d098488e38df1a..c8b433aba202a5 100644 --- a/pages/common/7za.md +++ b/pages/common/7za.md @@ -1,25 +1,37 @@ # 7za -> A file archiver with high compression ratio. -> A standalone version of `7z` with support for fewer archive types. -> More information: . +> File archiver with a high compression ratio. +> Similar to `7z` except that it supports fewer file types but is cross-platform. +> More information: . -- Archive a file or directory: +- [a]rchive a file or directory: -`7za a {{archived.7z}} {{path/to/file_or_directory}}` +`7za a {{path/to/archive.7z}} {{path/to/file_or_directory}}` -- Extract an existing 7z file with original directory structure: +- Encrypt an existing archive (including file names): -`7za x {{archived}}` +`7za a {{path/to/encrypted.7z}} -p{{password}} -mhe={{on}} {{path/to/archive.7z}}` -- Archive using a specific archive type: +- E[x]tract an archive preserving the original directory structure: -`7za a -t{{zip|gzip|bzip2|tar}} {{archived}} {{path/to/file_or_directory}}` +`7za x {{path/to/archive.7z}}` -- List available archive types: +- E[x]tract an archive to a specific directory: -`7za i` +`7za x {{path/to/archive.7z}} -o{{path/to/output}}` + +- E[x]tract an archive to `stdout`: + +`7za x {{path/to/archive.7z}} -so` + +- [a]rchive using a specific archive type: -- List the contents of an archive file: +`7za a -t{{7z|bzip2|gzip|lzip|tar|...}} {{path/to/archive.7z}} {{path/to/file_or_directory}}` -`7za l {{archived}}` +- [l]ist the contents of an archive: + +`7za l {{path/to/archive.7z}}` + +- List available archive types: + +`7za i` diff --git a/pages/common/7zr.md b/pages/common/7zr.md index 25393ba317f4d8..0306b15fc4e2aa 100644 --- a/pages/common/7zr.md +++ b/pages/common/7zr.md @@ -1,17 +1,33 @@ # 7zr -> A file archiver with high compression ratio. -> A standalone version of `7z` that only supports .7z files. -> More information: . +> File archiver with a high compression ratio. +> Similar to `7z` except that it only supports `.7z` files. +> More information: . -- Archive a file or directory: +- [a]rchive a file or directory: -`7zr a {{archived.7z}} {{path/to/file_or_directory}}` +`7zr a {{path/to/archive.7z}} {{path/to/file_or_directory}}` -- Extract an existing 7z file with original directory structure: +- Encrypt an existing archive (including file names): -`7zr x {{archived.7z}}` +`7zr a {{path/to/encrypted.7z}} -p{{password}} -mhe=on {{path/to/archive.7z}}` -- List the contents of an archive file: +- E[x]tract an archive preserving the original directory structure: -`7zr l {{archived.7z}}` +`7zr x {{path/to/archive.7z}}` + +- E[x]tract an archive to a specific directory: + +`7zr x {{path/to/archive.7z}} -o{{path/to/output}}` + +- E[x]tract an archive to `stdout`: + +`7zr x {{path/to/archive.7z}} -so` + +- [l]ist the contents of an archive: + +`7zr l {{path/to/archive.7z}}` + +- List available archive types: + +`7zr i` diff --git a/pages/common/[.md b/pages/common/[.md index d64abb1eb17a8e..a6847e1665d7e6 100644 --- a/pages/common/[.md +++ b/pages/common/[.md @@ -1,25 +1,33 @@ # [ -> Evaluate condition. +> Check file types and compare values. > Returns 0 if the condition evaluates to true, 1 if it evaluates to false. -> More information: . +> More information: . -- Test if a given variable is equal to a given string: +- Test if a given variable is equal/not equal to the specified string: -`[ "{{$MY_VAR}}" == "{{/bin/zsh}}" ]` +`[ "${{variable}}" {{==|!=}} "{{string}}" ]` -- Test if a given variable is empty: +- Test if a given variable is [eq]ual/[n]ot [e]qual/[g]reater [t]han/[l]ess [t]han/[g]reater than or [e]qual/[l]ess than or [e]qual to the specified number: -`[ -z "{{$GIT_BRANCH}}" ]` +`[ "${{variable}}" -{{eq|ne|gt|lt|ge|le}} {{integer}} ]` -- Test if a file exists: +- Test if the specified variable has a [n]on-empty value: -`[ -f "{{path/to/file_or_directory}}" ]` +`[ -n "${{variable}}" ]` -- Test if a directory does not exist: +- Test if the specified variable has an empty value: -`[ ! -d "{{path/to/directory}}" ]` +`[ -z "${{variable}}" ]` -- If-else statement: +- Test if the specified [f]ile exists: -`[ {{condition}} ] && {{echo "true"}} || {{echo "false"}}` +`[ -f {{path/to/file}} ]` + +- Test if the specified [d]irectory exists: + +`[ -d {{path/to/directory}} ]` + +- Test if the specified file or directory [e]xists: + +`[ -e {{path/to/file_or_directory}} ]` diff --git a/pages/common/[[.md b/pages/common/[[.md new file mode 100644 index 00000000000000..6fd9cad23107a1 --- /dev/null +++ b/pages/common/[[.md @@ -0,0 +1,37 @@ +# [[ + +> Check file types and compare values. +> Returns 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: + +`[[ ${{variable}} {{==|!=}} "{{string}}" ]]` + +- Test if a given string conforms the specified glob/regex: + +`[[ ${{variable}} {{==|=~}} {{pattern}} ]]` + +- Test if a given variable is [eq]ual/[n]ot [e]qual/[g]reater [t]han/[l]ess [t]han/[g]reater than or [e]qual/[l]ess than or [e]qual to the specified number: + +`[[ ${{variable}} -{{eq|ne|gt|lt|ge|le}} {{integer}} ]]` + +- Test if the specified variable has a [n]on-empty value: + +`[[ -n ${{variable}} ]]` + +- Test if the specified variable has an empty value: + +`[[ -z ${{variable}} ]]` + +- Test if the specified [f]ile exists: + +`[[ -f {{path/to/file}} ]]` + +- Test if the specified [d]irectory exists: + +`[[ -d {{path/to/directory}} ]]` + +- Test if the specified file or directory [e]xists: + +`[[ -e {{path/to/file_or_directory}} ]]` diff --git a/pages/common/ac.md b/pages/common/ac.md new file mode 100644 index 00000000000000..13cbb5e5a28cc8 --- /dev/null +++ b/pages/common/ac.md @@ -0,0 +1,20 @@ +# ac + +> Print statistics on how long users have been connected. +> More information: . + +- Print how long the current user has been connected in hours: + +`ac` + +- Print how long users have been connected in hours: + +`ac -p` + +- Print how long a particular user has been connected in hours: + +`ac -p {{username}}` + +- Print how long a particular user has been connected in hours per day (with total): + +`ac -dp {{username}}` diff --git a/pages/common/ack.md b/pages/common/ack.md index eef7e86e0aa4f5..f63e55af377a76 100644 --- a/pages/common/ack.md +++ b/pages/common/ack.md @@ -18,11 +18,11 @@ - Limit search to files of a specific type: -`ack --type={{ruby}} "{{search_pattern}}` +`ack --type={{ruby}} "{{search_pattern}}"` - Do not search in files of a specific type: -`ack --type=no{{ruby}} "{{search_pattern}}` +`ack --type=no{{ruby}} "{{search_pattern}}"` - Count the total number of matches found: @@ -32,6 +32,6 @@ `ack --count --files-with-matches "{{search_pattern}}"` -- List all values that can be used with `--type`: +- List all the values that can be used with `--type`: `ack --help-types` diff --git a/pages/common/acme.sh-dns.md b/pages/common/acme.sh-dns.md new file mode 100644 index 00000000000000..c0df64944ceb0c --- /dev/null +++ b/pages/common/acme.sh-dns.md @@ -0,0 +1,24 @@ +# acme.sh --dns + +> Use a DNS-01 challenge to issue a TLS certificate. +> More information: . + +- Issue a certificate using an automatic DNS API mode: + +`acme.sh --issue --dns {{gnd_gd}} --domain {{example.com}}` + +- Issue a wildcard certificate (denoted by an asterisk) using an automatic DNS API mode: + +`acme.sh --issue --dns {{dns_namesilo}} --domain {{example.com}} --domain {{*.example.com}}` + +- Issue a certificate using a DNS alias mode: + +`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: + +`acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}` + +- Issue a certificate using a manual DNS mode: + +`acme.sh --issue --dns --domain {{example.com}} --yes-I-know-dns-manual-mode-enough-go-ahead-please` diff --git a/pages/common/acme.sh.md b/pages/common/acme.sh.md new file mode 100644 index 00000000000000..a875f77d880a46 --- /dev/null +++ b/pages/common/acme.sh.md @@ -0,0 +1,33 @@ +# acme.sh + +> Shell script implementing ACME client protocol, an alternative to certbot. +> See also `acme.sh dns`. +> More information: . + +- Issue a certificate using webroot mode: + +`acme.sh --issue --domain {{example.com}} --webroot {{/path/to/webroot}}` + +- Issue a certificate for multiple domains using standalone mode using port 80: + +`acme.sh --issue --standalone --domain {{example.com}} --domain {{www.example.com}}` + +- Issue a certificate using standalone TLS mode using port 443: + +`acme.sh --issue --alpn --domain {{example.com}}` + +- Issue a certificate using a working Nginx configuration: + +`acme.sh --issue --nginx --domain {{example.com}}` + +- Issue a certificate using a working Apache configuration: + +`acme.sh --issue --apache --domain {{example.com}}` + +- Issue a wildcard (\*) certificate using an automatic DNS API mode: + +`acme.sh --issue --dns {{dns_cf}} --domain {{*.example.com}}` + +- Install certificate files into the specified locations (useful for automatic certificate renewal): + +`acme.sh --install-cert -d {{example.com}} --key-file {{/path/to/example.com.key}} --fullchain-file {{/path/to/example.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}` diff --git a/pages/common/act.md b/pages/common/act.md index 7abcfef2305512..1f4fb45bf33dde 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/acyclic.md b/pages/common/acyclic.md new file mode 100644 index 00000000000000..6d3c8a431bb822 --- /dev/null +++ b/pages/common/acyclic.md @@ -0,0 +1,17 @@ +# acyclic + +> Make a directed graph acyclic by reversing some edges. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Make a directed graph acyclic by reversing some edges: + +`acyclic {{path/to/input.gv}} > {{path/to/output.gv}}` + +- Print if a graph is acyclic, has a cycle, or is undirected, producing no output graph: + +`acyclic -v -n {{path/to/input.gv}}` + +- Display help for `acyclic`: + +`acyclic -?` diff --git a/pages/common/adb-install.md b/pages/common/adb-install.md index 5c40da6190e7c2..1cca5bd85ac951 100644 --- a/pages/common/adb-install.md +++ b/pages/common/adb-install.md @@ -7,10 +7,18 @@ `adb install {{path/to/file.apk}}` +- Push an Android application to a specific emulator/device (overrides `$ANDROID_SERIAL`): + +`adb -s {{serial_number}} install {{path/to/file.apk}}` + - Reinstall an existing app, keeping its data: `adb install -r {{path/to/file.apk}}` +- Push an Android application allowing version code downgrade (debuggable packages only): + +`adb install -d {{path/to/file.apk}}` + - Grant all permissions listed in the app manifest: `adb install -g {{path/to/file.apk}}` diff --git a/pages/common/adb-logcat.md b/pages/common/adb-logcat.md new file mode 100644 index 00000000000000..1703e725b3bb05 --- /dev/null +++ b/pages/common/adb-logcat.md @@ -0,0 +1,36 @@ +# adb logcat + +> Dump a log of system messages. +> More information: . + +- Display system logs: + +`adb logcat` + +- Display lines that match a regular expression: + +`adb logcat -e {{regular_expression}}` + +- Display logs for a tag in a specific mode ([V]erbose, [D]ebug, [I]nfo, [W]arning, [E]rror, [F]atal, [S]ilent), filtering other tags: + +`adb logcat {{tag}}:{{mode}} *:S` + +- Display logs for React Native applications in [V]erbose mode [S]ilencing other tags: + +`adb logcat ReactNative:V ReactNativeJS:V *:S` + +- Display logs for all tags with priority level [W]arning and higher: + +`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 b109da600b263b..7e422d1cd74293 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/adb.md b/pages/common/adb.md index 68f97d9281eaac..d89ff948d15289 100644 --- a/pages/common/adb.md +++ b/pages/common/adb.md @@ -1,6 +1,7 @@ # adb > Android Debug Bridge: communicate with an Android emulator instance or connected Android devices. +> Some subcommands such as `adb shell` have their own usage documentation. > More information: . - Check whether the adb server process is running and start it: diff --git a/pages/common/adscript.md b/pages/common/adscript.md new file mode 100644 index 00000000000000..f45f5aa5bc7893 --- /dev/null +++ b/pages/common/adscript.md @@ -0,0 +1,20 @@ +# adscript + +> Compiler for Adscript files. +> More information: . + +- Compile a file to an object file: + +`adscript --output {{path/to/file.o}} {{path/to/input_file.adscript}}` + +- Compile and link a file to a standalone executable: + +`adscript --executable --output {{path/to/file}} {{path/to/input_file.adscript}}` + +- Compile a file to LLVM IR instead of native machine code: + +`adscript --llvm-ir --output {{path/to/file.ll}} {{path/to/input_file.adscript}}` + +- Cross-compile a file to an object file for a foreign CPU architecture or operating system: + +`adscript --target-triple {{i386-linux-elf}} --output {{path/to/file.o}} {{path/to/input_file.adscript}}` diff --git a/pages/common/afconvert.md b/pages/common/afconvert.md new file mode 100644 index 00000000000000..d2b3ba8a9a82d6 --- /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/agate.md b/pages/common/agate.md new file mode 100644 index 00000000000000..230a25fb19a988 --- /dev/null +++ b/pages/common/agate.md @@ -0,0 +1,16 @@ +# agate + +> A simple server for the Gemini network protocol. +> More information: . + +- Run and generate a private key and certificate: + +`agate --content {{path/to/content/}} --addr {{[::]:1965}} --addr {{0.0.0.0:1965}} --hostname {{example.com}} --lang {{en-US}}` + +- Run server: + +`agate {{path/to/file}}` + +- Display help: + +`agate -h` diff --git a/pages/common/age.md b/pages/common/age.md index fc83e2a572ca11..202da0c7385bad 100644 --- a/pages/common/age.md +++ b/pages/common/age.md @@ -1,13 +1,13 @@ # age > A simple, modern and secure file encryption tool. -> More information: . +> 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: +- Generate a key pair, saving the private key to an unencrypted file and printing the public key to `stdout`: `age-keygen --output {{path/to/file}}` diff --git a/pages/common/aircrack-ng.md b/pages/common/aircrack-ng.md new file mode 100644 index 00000000000000..7cb82f22bce1e4 --- /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/aireplay-ng.md b/pages/common/aireplay-ng.md new file mode 100644 index 00000000000000..ee972ccf627426 --- /dev/null +++ b/pages/common/aireplay-ng.md @@ -0,0 +1,9 @@ +# aireplay-ng + +> Inject packets into a wireless network. +> Part of `aircrack-ng`. +> More information: . + +- Send a specific number of disassociate packets given an access point's MAC address, a client's MAC address and an interface: + +`sudo aireplay-ng --deauth {{count}} --bssid {{ap_mac}} --dmac {{client_mac}} {{interface}}` diff --git a/pages/common/airmon-ng.md b/pages/common/airmon-ng.md index 6b3b1c5878fdcc..492ec04ca2c62c 100644 --- a/pages/common/airmon-ng.md +++ b/pages/common/airmon-ng.md @@ -1,6 +1,7 @@ # airmon-ng > Activate monitor mode on wireless network devices. +> Part of `aircrack-ng`. > More information: . - List wireless devices and their statuses: diff --git a/pages/common/airodump-ng.md b/pages/common/airodump-ng.md new file mode 100644 index 00000000000000..8f0ebb723b776c --- /dev/null +++ b/pages/common/airodump-ng.md @@ -0,0 +1,13 @@ +# airodump-ng + +> Capture packets and display information about wireless networks. +> Part of `aircrack-ng`. +> More information: . + +- Capture packets and display information about a wireless network: + +`sudo airodump-ng {{interface}}` + +- Capture packets and display information about a wireless network given the MAC address and channel, and save the output to a file: + +`sudo airodump-ng --channel {{channel}} --write {{path/to/file}} --bssid {{mac}} {{interface}}` diff --git a/pages/common/ajson.md b/pages/common/ajson.md index cf060c3203f171..54da01cf0df4b7 100644 --- a/pages/common/ajson.md +++ b/pages/common/ajson.md @@ -7,7 +7,7 @@ `ajson '{{$..json[?(@.path)]}}' {{path/to/file.json}}` -- Read JSON from stdin and execute a specified JSONPath expression: +- Read JSON from `stdin` and execute a specified JSONPath expression: `cat {{path/to/file.json}} | ajson '{{$..json[?(@.path)]}}'` diff --git a/pages/common/alacritty.md b/pages/common/alacritty.md index 788b16a5c00d77..652c52ee2c475a 100644 --- a/pages/common/alacritty.md +++ b/pages/common/alacritty.md @@ -1,9 +1,9 @@ # alacritty > Cross-platform, GPU-accelerated terminal emulator. -> More information: . +> More information: . -- Open a new alacritty window: +- Open a new Alacritty window: `alacritty` @@ -11,14 +11,14 @@ `alacritty --working-directory {{path/to/directory}}` -- Run a command in a new alacritty window: +- Run a command in a new Alacritty window: `alacritty -e {{command}}` -- Specify alternative configuration file (defaults to $XDG_CONFIG_HOME/alacritty/alacritty.yml): +- Specify alternative configuration file (defaults to `$XDG_CONFIG_HOME/alacritty/alacritty.yml`): `alacritty --config-file {{path/to/config.yml}}` -- Run with live config reload enabled (can also be enabled by default in alacritty.yml): +- Run with live config reload enabled (can also be enabled by default in `alacritty.yml`): `alacritty --live-config-reload --config-file {{path/to/config.yml}}` diff --git a/pages/common/alex.md b/pages/common/alex.md index 89bb46a1be7dd6..eadc8c5e0799be 100644 --- a/pages/common/alex.md +++ b/pages/common/alex.md @@ -4,7 +4,7 @@ > It helps you find gender favouring, polarising, race related, religion inconsiderate, or other unequal phrasing in text. > More information: . -- Analyze text from stdin: +- Analyze text from `stdin`: `echo {{His network looks good}} | alex --stdin` diff --git a/pages/common/alias.md b/pages/common/alias.md index ef1bb447d1232f..af01ccf83f0522 100644 --- a/pages/common/alias.md +++ b/pages/common/alias.md @@ -22,8 +22,8 @@ - Turn `rm` into an interactive command: -`alias {{rm}}="{{rm -i}}"` +`alias {{rm}}="{{rm --interactive}}"` -- Create `la` as a shortcut for `ls -a`: +- Create `la` as a shortcut for `ls --all`: -`alias {{la}}="{{ls -a}}"` +`alias {{la}}="{{ls --all}}"` diff --git a/pages/common/amass.md b/pages/common/amass.md index e12c8819b0cda2..51dd792c2a4b29 100644 --- a/pages/common/amass.md +++ b/pages/common/amass.md @@ -1,11 +1,12 @@ # amass > In-depth Attack Surface Mapping and Asset Discovery tool. +> 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: @@ -15,6 +16,6 @@ `amass -help {{subcommand}}` -- Execute an Amass subcommand: +- Display version: -`amass {{subcommand}}` +`amass -version` diff --git a/pages/common/ani-cli.md b/pages/common/ani-cli.md new file mode 100644 index 00000000000000..b5a7404af8bf35 --- /dev/null +++ b/pages/common/ani-cli.md @@ -0,0 +1,28 @@ +# ani-cli + +> A cli to browse and watch anime. +> More information: . + +- Search anime by name: + +`ani-cli "{{anime_name}}"` + +- Download episode: + +`ani-cli -d "{{anime_name}}"` + +- Use VLC as the media player: + +`ani-cli -v "{{anime_name}}"` + +- Specify episode to watch: + +`ani-cli -a {{episode_number}} "{{anime_name}}"` + +- Continue watching anime from history: + +`ani-cli -c` + +- Update `ani-cli`: + +`ani-cli -U` diff --git a/pages/common/anki.md b/pages/common/anki.md new file mode 100644 index 00000000000000..f5ef777b3e50f8 --- /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 e7ff4cff64bec9..babc8dc305d354 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/ansible-galaxy.md b/pages/common/ansible-galaxy.md index 5f422e3f96ccfd..31f4b5983e737b 100644 --- a/pages/common/ansible-galaxy.md +++ b/pages/common/ansible-galaxy.md @@ -5,11 +5,11 @@ - Install a role: -`ansible-galaxy install {{username.role_name}}` +`ansible-galaxy install {{username}}.{{role_name}}` - Remove a role: -`ansible-galaxy remove {{username.role_name}}` +`ansible-galaxy remove {{username}}.{{role_name}}` - List installed roles: @@ -22,3 +22,11 @@ - Create a new role: `ansible-galaxy init {{role_name}}` + +- Get information about a user role: + +`ansible-galaxy role info {{username}}.{{role_name}}` + +- Get information about a collection: + +`ansible-galaxy collection info {{username}}.{{collection_name}}` diff --git a/pages/common/ansible-playbook.md b/pages/common/ansible-playbook.md index f8bdfb49b93674..567fcafe72717a 100644 --- a/pages/common/ansible-playbook.md +++ b/pages/common/ansible-playbook.md @@ -11,11 +11,11 @@ `ansible-playbook {{playbook}} -i {{inventory_file}}` -- Run tasks in playbook with extra variables defined via the command line: +- Run tasks in playbook with extra variables defined via the command-line: `ansible-playbook {{playbook}} -e "{{variable1}}={{value1}} {{variable2}}={{value2}}"` -- Run tasks in playbook with extra variables defined in a json file: +- Run tasks in playbook with extra variables defined in a JSON file: `ansible-playbook {{playbook}} -e "@{{variables.json}}"` diff --git a/pages/common/ansible.md b/pages/common/ansible.md index 0895b536006cd4..17704c227eae9a 100644 --- a/pages/common/ansible.md +++ b/pages/common/ansible.md @@ -1,7 +1,7 @@ # ansible -> Manage groups of computers remotely over SSH. -> Use the `/etc/ansible/hosts` file to add new groups/hosts. +> Manage groups of computers remotely over SSH. (use the `/etc/ansible/hosts` file to add new groups/hosts). +> Some subcommands such as `ansible galaxy` have their own usage documentation. > More information: . - List hosts belonging to a group: diff --git a/pages/common/antibody.md b/pages/common/antibody.md new file mode 100644 index 00000000000000..5eeccd93a6064f --- /dev/null +++ b/pages/common/antibody.md @@ -0,0 +1,16 @@ +# antibody + +> "The fastest" shell plugin manager. +> More information: . + +- Bundle all plugins for static loading: + +`antibody bundle < {{~/.zsh_plugins.txt}} > {{~/.zsh_plugins.sh}}` + +- Update all bundles: + +`antibody update` + +- List all installed plugins: + +`antibody list` diff --git a/pages/common/apktool.md b/pages/common/apktool.md index 77afb83f3dd4e2..908d2540582ca8 100644 --- a/pages/common/apktool.md +++ b/pages/common/apktool.md @@ -5,12 +5,12 @@ - Decode an APK file: -`apktool d {{file.apk}}` +`apktool d {{path/to/file.apk}}` - Build an APK file from a directory: `apktool b {{path/to/directory}}` -- Install and store frameworks: +- 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 dd2ac8484f0340..0ffc95a9ca776d 100644 --- a/pages/common/apm.md +++ b/pages/common/apm.md @@ -4,14 +4,14 @@ > See `atom`. > More information: . -- Install packages from http://atom.io/packages and themes from http://atom.io/themes: +- Install a package from http://atom.io/packages or a theme from http://atom.io/themes: `apm install {{package_name}}` -- Remove packages/themes: +- Remove a package/theme: `apm remove {{package_name}}` -- Upgrade packages/themes: +- Upgrade a package/theme: `apm upgrade {{package_name}}` diff --git a/pages/common/apropos.md b/pages/common/apropos.md index 431205e19f44e6..aacfbd5d048a03 100644 --- a/pages/common/apropos.md +++ b/pages/common/apropos.md @@ -11,6 +11,6 @@ `apropos -l {{regular_expression}}` -- Search for pages that contain all of the expressions given: +- Search for pages that contain all the expressions given: `apropos {{regular_expression_1}} -a {{regular_expression_2}} -a {{regular_expression_3}}` diff --git a/pages/common/ar.md b/pages/common/ar.md index f2264a63af7572..522eaf3d9cbe7b 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 5a0e16435b0e80..c1fd4ac50a360a 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. +> A command-line tool for compiling arduino sketches. > DEPRECATION WARNING: This tool is being phased out in favor of `arduino`. > More information: . @@ -8,9 +8,9 @@ `arduino-builder -compile {{path/to/sketch.ino}}` -- Specify the debug level (1 to 10, defaults to 5): +- Specify the debug level (default: 5): -`arduino-builder -debug-level {{level}}` +`arduino-builder -debug-level {{1..10}}` - Specify a custom build directory: diff --git a/pages/common/arduino.md b/pages/common/arduino.md index 35fec8cae57b9a..b71e5a3ed33f42 100644 --- a/pages/common/arduino.md +++ b/pages/common/arduino.md @@ -26,3 +26,11 @@ - Save any (changed) preferences to `preferences.txt`: `arduino --save-prefs` + +- Install the latest SAM board: + +`arduino --install-boards "{{arduino:sam}}"` + +- Install Bridge and Servo libraries: + +`arduino --install-library "{{Bridge:1.0.0,Servo:1.2.0}}"` diff --git a/pages/common/argocd-app.md b/pages/common/argocd-app.md new file mode 100644 index 00000000000000..1a6a6ba6a4e527 --- /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 00000000000000..d36773beb566e9 --- /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/argon2.md b/pages/common/argon2.md new file mode 100644 index 00000000000000..b1f535bfd5d5d0 --- /dev/null +++ b/pages/common/argon2.md @@ -0,0 +1,20 @@ +# argon2 + +> Calculate Argon2 cryptographic hashes. +> More information: . + +- Calculate a hash with a password and a salt with the default parameters: + +`echo "{{password}}" | argon2 "{{salt_text}}"` + +- Calculate a hash with the specified algorithm: + +`echo "{{password}}" | argon2 "{{salt_text}}" -{{d|i|id}}` + +- Display the output hash without additional information: + +`echo "{{password}}" | argon2 "{{salt_text}}" -e` + +- Calculate a hash with given iteration [t]imes, [m]emory usage, and [p]arallelism parameters: + +`echo "{{password}}" | argon2 "{{salt_text}}" -t {{5}} -m {{20}} -p {{7}}` diff --git a/pages/common/aria2.md b/pages/common/aria2.md index 0132a2f13abe28..d4136f79e4a72a 100644 --- a/pages/common/aria2.md +++ b/pages/common/aria2.md @@ -1,33 +1,7 @@ # aria2 -> A lightweight multi-protocol & multi-source command-line download utility. -> Supports HTTP, HTTPS, FTP, SFTP, BitTorrent and Metalink. -> More information: . +> This command is an alias of `aria2c`. -- Download a web resource: +- View documentation for the updated command: -`aria2c {{http://example.org/myLinux.iso}}` - -- Download a resource from multiple sources: - -`aria2c {{http://mirror1.org/myLinux.iso}} {{http://mirror2.org/myLinux.iso}}` - -- Download using 2 connections per host: - -`aria2c -x{{2}} {{http://example.org/myLinux.iso}}` - -- Download from a Metalink URI: - -`aria2c {{http://example.org/myLinux.metalink}}` - -- Download from a BitTorrent URI: - -`aria2c {{http://example.org/myLinux.torrent}}` - -- Download from a BitTorrent Magnet URI: - -`aria2c {{'magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C'}}` - -- Download URIs from a file: - -`aria2c -i {{uris.txt}}` +`tldr aria2c` diff --git a/pages/common/aria2c.md b/pages/common/aria2c.md index 260fa88cb1725c..a9c4833f4a7da3 100644 --- a/pages/common/aria2c.md +++ b/pages/common/aria2c.md @@ -4,30 +4,34 @@ > Supports HTTP(S), FTP, SFTP, BitTorrent, and Metalink. > More information: . -- Download a URI to a file: +- Download a specific URI to a file: -`aria2c {{url}}` +`aria2c "{{url}}"` -- Download the contents of an URL to a file: +- Download a file from a URI with a specific output name: -`aria2c -o {{filename}} {{url}}` +`aria2c --out={{path/to/file}} "{{url}}"` -- Download from multiple sources: +- Download multiple different files in parallel: -`aria2c {{url_1}} {{url_2}}` +`aria2c --force-sequential {{false}} "{{url1 url2 ...}}"` -- Download the URIs listed in a file: +- Download from multiple sources with each URI pointing to the same file: -`aria2c -i {{filename}}` +`aria2c "{{url1 url2 ...}}"` + +- Download the URIs listed in a file with a specific number of parallel downloads: + +`aria2c --input-file={{path/to/file}} --max-concurrent-downloads={{number_of_downloads}}` - Download with multiple connections: -`aria2c -s {{connections_num}} {{url}}` +`aria2c --split={{number_of_connections}} "{{url}}"` - FTP download with username and password: -`aria2c --ftp-user={{username}} --ftp-passwd={{password}} {{url}}` +`aria2c --ftp-user={{username}} --ftp-passwd={{password}} "{{url}}"` - Limit download speed in bytes/s: -`aria2c --max-download-limit={{speed}} {{url}}` +`aria2c --max-download-limit={{speed}} "{{url}}"` diff --git a/pages/common/arp-scan.md b/pages/common/arp-scan.md new file mode 100644 index 00000000000000..25cbcbba46c387 --- /dev/null +++ b/pages/common/arp-scan.md @@ -0,0 +1,20 @@ +# arp-scan + +> Send ARP packets to hosts (specified as IP addresses or hostnames) to scan the local network. +> More information: . + +- Scan the current local network: + +`arp-scan --localnet` + +- Scan an IP network with a custom bitmask: + +`arp-scan {{192.168.1.1}}/{{24}}` + +- Scan an IP network within a custom range: + +`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` + +- Scan an IP network with a custom net mask: + +`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages/common/arp.md b/pages/common/arp.md index 75acd74d307064..e69e77988afc25 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/arping.md b/pages/common/arping.md index ebbd2ffaacc065..a6723e20cfefb6 100644 --- a/pages/common/arping.md +++ b/pages/common/arping.md @@ -24,6 +24,6 @@ `arping -U {{ip_to_broadcast}}` -- Detect duplicated IP addresses in the network by sending ARP requests with a 3 seconds timeout: +- Detect duplicated IP addresses in the network by sending ARP requests with a 3 second timeout: `arping -D -w {{3}} {{ip_to_check}}` diff --git a/pages/common/asar.md b/pages/common/asar.md index 9b6d00dc511525..3c332e9b64aabe 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/asciidoctor.md b/pages/common/asciidoctor.md new file mode 100644 index 00000000000000..b071f9d7b49302 --- /dev/null +++ b/pages/common/asciidoctor.md @@ -0,0 +1,20 @@ +# asciidoctor + +> A processor that converts AsciiDoc files to a publishable format. +> More information: . + +- Convert a specific `.adoc` file to HTML (the default output format): + +`asciidoctor {{path/to/file.adoc}}` + +- Convert a specific `.adoc` file to HTML and link a CSS stylesheet: + +`asciidoctor -a stylesheet={{path/to/stylesheet.css}} {{path/to/file.adoc}}` + +- Convert a specific `.adoc` file to embeddable HTML, removing everything except the body: + +`asciidoctor --embedded {{path/to/file.adoc}}` + +- Convert a specific `.adoc` file to a PDF using the `asciidoctor-pdf` library: + +`asciidoctor --backend={{pdf}} --require={{asciidoctor-pdf}} {{path/to/file.adoc}}` diff --git a/pages/common/asciinema.md b/pages/common/asciinema.md index 7e3bc3cf3b2521..1a52f4722d5e53 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/asdf.md b/pages/common/asdf.md index 3c23716a14b84d..f8981c94f7e2e0 100644 --- a/pages/common/asdf.md +++ b/pages/common/asdf.md @@ -1,19 +1,19 @@ # asdf -> Command line interface for managing versions of different packages. +> Command-line interface for managing versions of different packages. > More information: . - List all available plugins: -`asdf plugin-list-all` +`asdf plugin list all` - Install a plugin: -`asdf plugin-add {{name}}` +`asdf plugin add {{name}}` - List all available versions for a package: -`asdf list-all {{name}}` +`asdf list all {{name}}` - Install a specific version of a package: diff --git a/pages/common/assimp.md b/pages/common/assimp.md index c0f92246f5dbda..ecebb3992b2ca4 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 c85440c3004ad1..04241a164ea85e 100644 --- a/pages/common/astyle.md +++ b/pages/common/astyle.md @@ -8,7 +8,7 @@ `astyle {{source_file}}` -- Apply the java style with attached braces: +- Apply the Java style with attached braces: `astyle --style=java {{path/to/file}}` diff --git a/pages/common/at.md b/pages/common/at.md index 1f9ab4a470f218..e59375ef497914 100644 --- a/pages/common/at.md +++ b/pages/common/at.md @@ -2,7 +2,7 @@ > Execute commands once at a later time. > Service atd (or atrun) should be running for the actual executions. -> More information: . +> More information: . - Execute commands from standard input in 5 minutes (press `Ctrl + D` when done): diff --git a/pages/common/atoum.md b/pages/common/atoum.md index 426b10dbe52d68..78db1cd84e369a 100644 --- a/pages/common/atoum.md +++ b/pages/common/atoum.md @@ -3,7 +3,7 @@ > A simple, modern and intuitive unit testing framework for PHP. > More information: . -- Initialise a configuration file: +- Initialize a configuration file: `atoum --init` diff --git a/pages/common/atq.md b/pages/common/atq.md index 8efa034d73ca2d..fde6743d7ef137 100644 --- a/pages/common/atq.md +++ b/pages/common/atq.md @@ -1,7 +1,7 @@ # atq > Show jobs scheduled by `at` or `batch` commands. -> More information: . +> More information: . - Show the current user's scheduled jobs: @@ -11,6 +11,6 @@ `atq -q {{a}}` -- Show jobs of all users (run as super user): +- Show jobs of all users (run as superuser): `sudo atq` diff --git a/pages/common/atrm.md b/pages/common/atrm.md index fca34c82b38540..9bf0a71f785cd0 100644 --- a/pages/common/atrm.md +++ b/pages/common/atrm.md @@ -2,7 +2,7 @@ > Remove jobs scheduled by `at` or `batch` commands. > To find job numbers use `atq`. -> More information: . +> More information: . - Remove job number 10: diff --git a/pages/common/atuin.md b/pages/common/atuin.md new file mode 100644 index 00000000000000..848ebf81ec9cac --- /dev/null +++ b/pages/common/atuin.md @@ -0,0 +1,29 @@ +# atuin + +> Store your shell history in a searchable database. +> Optionally sync your encrypted history between machines. +> More information: . + +- Install atuin into your shell: + +`eval "$(atuin init {{bash|zsh|fish}})"` + +- Import history from the shell default history file: + +`atuin import auto` + +- Search shell history for a specific command: + +`atuin search {{command}}` + +- Register an account on the default sync server: + +`atuin register -u {{username}} -e {{email}} -p {{password}}` + +- Login to the default sync server: + +`atuin login -u {{username}} -p {{password}}` + +- Sync history with the sync server: + +`atuin sync` diff --git a/pages/common/audacious.md b/pages/common/audacious.md new file mode 100755 index 00000000000000..0aa8b1aa282fce --- /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/auditd.md b/pages/common/auditd.md new file mode 100644 index 00000000000000..53a16c5440c4f3 --- /dev/null +++ b/pages/common/auditd.md @@ -0,0 +1,17 @@ +# auditd + +> This responds to requests from the audit utility and notifications from the kernel. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`auditd` + +- Start the daemon in debug mode: + +`auditd -d` + +- Start the daemon on-demand from launchd: + +`auditd -l` diff --git a/pages/common/autoconf.md b/pages/common/autoconf.md new file mode 100644 index 00000000000000..701d007d509a2a --- /dev/null +++ b/pages/common/autoconf.md @@ -0,0 +1,16 @@ +# autoconf + +> Generate configuration scripts to automatically configure software source code packages. +> More information: . + +- Generate a configuration script from `configure.ac` (if present) or `configure.in` and save this script to `configure`: + +`autoconf` + +- Generate a configuration script from the specified template; output to `stdout`: + +`autoconf {{template-file}}` + +- Generate a configuration script from the specified template (even if the input file has not changed) and write the output to a file: + +`autoconf --force --output={{outfile}} {{template-file}}` diff --git a/pages/common/autoflake.md b/pages/common/autoflake.md index 29c72f44dea63d..67fa13681375f6 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/autopep8.md b/pages/common/autopep8.md index 571efd295c262d..06a59ef930a375 100644 --- a/pages/common/autopep8.md +++ b/pages/common/autopep8.md @@ -3,7 +3,7 @@ > Format Python code according to the PEP 8 style guide. > More information: . -- Format a file to stdout, with a custom maximum line length: +- Format a file to `stdout`, with a custom maximum line length: `autopep8 {{path/to/file.py}} --max-line-length {{length}}` @@ -11,7 +11,7 @@ `autopep8 --diff {{path/to/file}}` -- Format a file in-pace and save the changes: +- Format a file in-place and save the changes: `autopep8 --in-place {{path/to/file.py}}` diff --git a/pages/common/avo.md b/pages/common/avo.md new file mode 100644 index 00000000000000..89da6c5dfe8a95 --- /dev/null +++ b/pages/common/avo.md @@ -0,0 +1,36 @@ +# avo + +> The official command-line interface for Avo. +> More information: . + +- Initialize a workspace in the current directory: + +`avo init` + +- Log into the Avo platform: + +`avo login` + +- Switch to an existing Avo branch: + +`avo checkout {{branch_name}}` + +- Pull analytics wrappers for the current path: + +`avo pull` + +- Display the status of the Avo implementation: + +`avo status` + +- Resolve Git conflicts in Avo files: + +`avo conflict` + +- Open the current Avo workspace in the default web browser: + +`avo edit` + +- Display help for a subcommand: + +`avo {{subcommand}} --help` diff --git a/pages/common/awk.md b/pages/common/awk.md index d77ac4dd6c0f0f..79a89ecd814d82 100644 --- a/pages/common/awk.md +++ b/pages/common/awk.md @@ -5,32 +5,32 @@ - 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 : +- Print all lines where the 10th column value equals the specified value: `awk '($10 == value)'` -- Print all the lines which the 10th column value is between a min and a max : +- Print all the lines which the 10th column value is between a min and a max: `awk '($10 >= min_value && $10 <= max_value)'` diff --git a/pages/common/aws-backup.md b/pages/common/aws-backup.md new file mode 100644 index 00000000000000..fce058982bcb53 --- /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-codecommit.md b/pages/common/aws-codecommit.md new file mode 100644 index 00000000000000..5449b4f5764f7d --- /dev/null +++ b/pages/common/aws-codecommit.md @@ -0,0 +1,12 @@ +# aws codecommit + +> AWS CodeCommit is a managed source control service that hosts private Git repositories. +> More information: . + +- Display help for a specific command: + +`aws codecommit {{command}} help` + +- Display help: + +`aws codecommit help` diff --git a/pages/common/aws-cognito-idp.md b/pages/common/aws-cognito-idp.md new file mode 100644 index 00000000000000..00aa1978cb10bc --- /dev/null +++ b/pages/common/aws-cognito-idp.md @@ -0,0 +1,28 @@ +# aws cognito-idp + +> Manage Amazon Cognito user pool and its users and groups using the CLI. +> More information: . + +- Create a new Cognito user pool: + +`aws cognito-idp create-user-pool --pool-name {{name}}` + +- List all user pools: + +`aws cognito-idp list-user-pools --max-results {{10}}` + +- Delete a specific user pool: + +`aws cognito-idp delete-user-pool --user-pool-id {{user_pool_id}}` + +- Create a user in a specific pool: + +`aws cognito-idp admin-create-user --username {{username}} --user-pool-id {{user_pool_id}}` + +- List the users of a specific pool: + +`aws cognito-idp list-users --user-pool-id {{user_pool_id}}` + +- Delete a user from a specific pool: + +`aws cognito-idp admin-delete-user --username {{username}} --user-pool-id {{user_pool_id}}` diff --git a/pages/common/aws-configure.md b/pages/common/aws-configure.md new file mode 100644 index 00000000000000..1e1f4e1b834643 --- /dev/null +++ b/pages/common/aws-configure.md @@ -0,0 +1,36 @@ +# aws configure + +> Manage configuration for the AWS CLI. +> More information: . + +- Configure AWS CLI interactively (creates a new configuration or updates the default): + +`aws configure` + +- Configure a named profile for AWS CLI interactively (creates a new profile or updates an existing one): + +`aws configure --profile {{profile_name}}` + +- Display the value from a specific configuration variable: + +`aws configure get {{name}}` + +- Display the value for a configuration variable in a specific profile: + +`aws configure get {{name}} --profile {{profile_name}}` + +- Set the value of a specific configuration variable: + +`aws configure set {{name}} {{value}}` + +- Set the value of a configuration variable in a specific profile: + +`aws configure set {{name}} {{value}} --profile {{profile_name}}` + +- List the configuration entries: + +`aws configure list` + +- List the configuration entries for a specific profile: + +`aws configure list --profile {{profile_name}}` diff --git a/pages/common/aws-cur.md b/pages/common/aws-cur.md new file mode 100644 index 00000000000000..a6a2fccb49affc --- /dev/null +++ b/pages/common/aws-cur.md @@ -0,0 +1,16 @@ +# aws cur + +> Create, query, and delete AWS usage report definitions. +> More information: . + +- Create an AWS cost and usage report definition from a JSON file: + +`aws cur put-report-definition --report-definition file://{{path/to/report_definition.json}}` + +- List usage report definitions defined for the logged in account: + +`aws cur describe-report-definitions` + +- Delete a usage report definition: + +`aws cur --region {{aws_region}} delete-report-definition --report-name {{report}}` diff --git a/pages/common/aws-ec2.md b/pages/common/aws-ec2.md index ad1cf83674c67e..abf192436b03bc 100644 --- a/pages/common/aws-ec2.md +++ b/pages/common/aws-ec2.md @@ -4,14 +4,6 @@ > Provides secure and resizable computing capacity in the AWS cloud to enable faster development and deployment of applications. > More information: . -- Show list of all available EC2 commands: - -`aws ec2 help` - -- Show help for specific EC2 subcommand: - -`aws ec2 {{subcommand}} help` - - Display information about a specific instance: `aws ec2 describe-instances --instance-ids {{instance_id}}` @@ -35,3 +27,11 @@ - List available AMIs (Amazon Machine Images): `aws ec2 describe-images` + +- Show list of all available EC2 commands: + +`aws ec2 help` + +- Show help for specific EC2 subcommand: + +`aws ec2 {{subcommand}} help` diff --git a/pages/common/aws-ecr.md b/pages/common/aws-ecr.md new file mode 100644 index 00000000000000..0fe1f3913dbe0f --- /dev/null +++ b/pages/common/aws-ecr.md @@ -0,0 +1,36 @@ +# aws ecr + +> Push, pull, and manage container images. +> More information: . + +- Authenticate Docker with the default registry (username is AWS): + +`aws ecr get-login-password --region {{region}} | {{docker login}} --username AWS --password-stdin {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com` + +- Create a repository: + +`aws ecr create-repository --repository-name {{repository}} --image-scanning-configuration scanOnPush={{true|false}} --region {{region}}` + +- Tag a local image for ECR: + +`docker tag {{container_name}}:{{tag}} {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{container_name}}:{{tag}}` + +- Push an image to a repository: + +`docker push {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{container_name}}:{{tag}}` + +- Pull an image from a repository: + +`docker pull {{aws_account_id}}.dkr.ecr.{{region}}.amazonaws.com/{{container_name}}:{{tag}}` + +- Delete an image from a repository: + +`aws ecr batch-delete-image --repository-name {{repository}} --image-ids imageTag={{latest}}` + +- Delete a repository: + +`aws ecr delete-repository --repository-name {{repository}} --force` + +- List images within a repository: + +`aws ecr list-images --repository-name {{repository}}` diff --git a/pages/common/aws-google-auth.md b/pages/common/aws-google-auth.md index 17698ad8e9992d..1456940b37daed 100644 --- a/pages/common/aws-google-auth.md +++ b/pages/common/aws-google-auth.md @@ -1,13 +1,13 @@ # aws-google-auth -> Command line tool to acquire AWS temporary (STS) credentials using Google Apps as a federated (Single Sign-On) provider. +> Command-line tool to acquire AWS temporary (STS) credentials using Google Apps as a federated (Single Sign-On) provider. > More information: . -- Login with Google SSO using the IDP and SP identifiers and set the credentials duration to one hour: +- Log in with Google SSO using the IDP and SP identifiers and set the credentials duration to one hour: `aws-google-auth -u {{example@example.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}}` -- Login [a]sking which role to use (in case of several available SAML roles): +- Log in [a]sking which role to use (in case of several available SAML roles): `aws-google-auth -u {{example@example.com}} -I {{$GOOGLE_IDP_ID}} -S {{$GOOGLE_SP_ID}} -d {{3600}} -a` diff --git a/pages/common/aws-help.md b/pages/common/aws-help.md new file mode 100644 index 00000000000000..18e11edd134aa8 --- /dev/null +++ b/pages/common/aws-help.md @@ -0,0 +1,16 @@ +# aws help + +> Display help information about the AWS CLI. +> More information: . + +- Display help: + +`aws help` + +- List all available topics: + +`aws help topics` + +- Display help about a specific topic: + +`aws help {{topic_name}}` diff --git a/pages/common/aws-history.md b/pages/common/aws-history.md new file mode 100644 index 00000000000000..121899cce87411 --- /dev/null +++ b/pages/common/aws-history.md @@ -0,0 +1,12 @@ +# aws history + +> Print the command-line history for AWS CLI commands (the record of history of AWS CLI commands must be enabled). +> More information: . + +- List commands history with command IDs: + +`aws history list` + +- Display events related to a specific command given a command ID: + +`aws history show {{command_id}}` diff --git a/pages/common/aws-lightsail.md b/pages/common/aws-lightsail.md new file mode 100644 index 00000000000000..c079917400cdd7 --- /dev/null +++ b/pages/common/aws-lightsail.md @@ -0,0 +1,32 @@ +# aws lightsail + +> Manage Amazon Lightsail resources using the CLI. +> More information: . + +- List all virtual private servers, or instances: + +`aws lightsail get-instances` + +- List all bundles (instance plans): + +`aws lightsail list-bundles` + +- List all available instance images, or blueprints: + +`aws lightsail list-blueprints` + +- Create an instance: + +`aws lightsail create-instances --instance-names {{name}} --availability-zone {{region}} --bundle-id {{nano_2_0}} --blueprint-id {{blueprint_id}}` + +- Print the state of a specific instance: + +`aws lightsail get-instance-state --instance-name {{name}}` + +- Stop a specific instance: + +`aws lightsail stop-instance --instance-name {{name}}` + +- Delete a specific instance: + +`aws lightsail delete-instance --instance-name {{name}}` diff --git a/pages/common/aws-pricing.md b/pages/common/aws-pricing.md new file mode 100644 index 00000000000000..c14e026161619c --- /dev/null +++ b/pages/common/aws-pricing.md @@ -0,0 +1,24 @@ +# aws pricing + +> Query services, products, and pricing information from Amazon Web Services. +> More information: . + +- List service codes of a specific region: + +`aws pricing describe-services --region {{us-east-1}}` + +- List attributes for a given service code in a specific region: + +`aws pricing describe-services --service-code {{AmazonEC2}} --region {{us-east-1}}` + +- Print pricing information for a service code in a specific region: + +`aws pricing get-products --service-code {{AmazonEC2}} --region {{us-east-1}}` + +- List values for a specific attribute for a service code in a specific region: + +`aws pricing get-attribute-values --service-code {{AmazonEC2}} --attribute-name {{instanceType}} --region {{us-east-1}}` + +- Print pricing information for a service code using filters for instance type and location: + +`aws pricing get-products --service-code {{AmazonEC2}} --filters "{{Type=TERM_MATCH,Field=instanceType,Value=m5.xlarge}}" "{{Type=TERM_MATCH,Field=location,Value=US East (N. Virginia)}}" --region {{us-east-1}}` diff --git a/pages/common/aws-rds.md b/pages/common/aws-rds.md new file mode 100644 index 00000000000000..5982acd290319a --- /dev/null +++ b/pages/common/aws-rds.md @@ -0,0 +1,37 @@ +# aws rds + +> CLI for AWS Relational Database Service. +> Create and manage relational databases. +> More information: . + +- Show help for specific RDS subcommand: + +`aws rds {{subcommand}} help` + +- Stop instance: + +`aws rds stop-db-instance --db-instance-identifier {{instance_identifier}}` + +- Start instance: + +`aws rds start-db-instance --db-instance-identifier {{instance_identifier}}` + +- Modify an RDS instance: + +`aws rds modify-db-instance --db-instance-identifier {{instance_identifier}} {{parameters}} --apply-immediately` + +- Apply updates to an RDS instance: + +`aws rds apply-pending-maintenance-action --resource-identifier {{database_arn}} --apply-action {{system-update}} --opt-in-type {{immediate}}` + +- Change an instance identifier: + +`aws rds modify-db-instance --db-instance-identifier {{old_instance_identifier}} --new-db-instance-identifier {{new_instance_identifier}}` + +- Reboot an instance: + +`aws rds reboot-db-instance --db-instance-identifier {{instance_identifier}}` + +- Delete an instance: + +`aws rds delete-db-instance --db-instance-identifier {{instance_identifier}} --final-db-snapshot-identifier {{snapshot_identifier}} --delete-automated-backups` diff --git a/pages/common/aws-route53.md b/pages/common/aws-route53.md new file mode 100644 index 00000000000000..6f3927ea91ebc0 --- /dev/null +++ b/pages/common/aws-route53.md @@ -0,0 +1,24 @@ +# aws route53 + +> CLI for AWS Route53 - Route 53 is a highly available and scalable Domain Name System (DNS) web service. +> More information: . + +- List all hosted zones, private and public: + +`aws route53 list-hosted-zones` + +- Show all records in a zone: + +`aws route53 list-resource-record-sets --hosted-zone-id {{zone_id}}` + +- Create a new, public zone using a request identifier to retry the operation safely: + +`aws route53 create-hosted-zone --name {{name}} --caller-reference {{request_identifier}}` + +- Delete a zone (if the zone has non-defaults SOA and NS records the command will fail): + +`aws route53 delete-hosted-zone --id {{zone_id}}` + +- 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}}` diff --git a/pages/common/aws-s3-cp.md b/pages/common/aws-s3-cp.md new file mode 100644 index 00000000000000..dbeadcb38d7e4a --- /dev/null +++ b/pages/common/aws-s3-cp.md @@ -0,0 +1,24 @@ +# aws s3 cp + +> Copy local files or S3 objects to another location locally or in S3. +> More information: . + +- Copy a file from local to a specific bucket: + +`aws s3 cp {{path/to/file}} s3://{{bucket_name}}/{{path/to/remote_file}}` + +- Copy a specific S3 object into another bucket: + +`aws s3 cp s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}/{{path/to/target}}` + +- Copy a specific S3 object into another bucket keeping the original name: + +`aws s3 cp s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}` + +- Copy S3 objects to a local directory recursively: + +`aws s3 cp s3://{{bucket_name}} . --recursive` + +- Display help: + +`aws s3 cp help` diff --git a/pages/common/aws-s3-ls.md b/pages/common/aws-s3-ls.md new file mode 100644 index 00000000000000..eb8ab6c6c9f8e8 --- /dev/null +++ b/pages/common/aws-s3-ls.md @@ -0,0 +1,28 @@ +# aws s3 ls + +> List AWS S3 buckets, folders (prefixes), and files (objects). +> More information: . + +- List all buckets: + +`aws s3 ls` + +- List files and folders in the root of a bucket (`s3://` is optional): + +`aws s3 ls s3://{{bucket_name}}` + +- List files and folders directly inside a directory: + +`aws s3 ls {{bucket_name}}/{{path/to/directory}}/` + +- List all files in a bucket: + +`aws s3 ls --recursive {{bucket_name}}` + +- List all files in a path with a given prefix: + +`aws s3 ls --recursive {{bucket_name}}/{{path/to/directory/}}{{prefix}}` + +- Display help: + +`aws s3 ls help` diff --git a/pages/common/aws-s3-mb.md b/pages/common/aws-s3-mb.md new file mode 100644 index 00000000000000..d00170e9f48de4 --- /dev/null +++ b/pages/common/aws-s3-mb.md @@ -0,0 +1,16 @@ +# aws s3 mb + +> Create S3 buckets. +> More information: . + +- Create an S3 bucket: + +`aws s3 mb s3://{{bucket_name}}` + +- Create an S3 bucket in a specific region: + +`aws s3 mb s3://{{bucket_name}} --region {{region}}` + +- Display help: + +`aws s3 mb help` diff --git a/pages/common/aws-s3-mv.md b/pages/common/aws-s3-mv.md new file mode 100644 index 00000000000000..b3ecf2e5befd37 --- /dev/null +++ b/pages/common/aws-s3-mv.md @@ -0,0 +1,20 @@ +# aws s3 mv + +> Move local files or S3 objects to another location locally or in S3. +> More information: . + +- Move a file from local to a specified bucket: + +`aws s3 mv {{path/to/local_file}} s3://{{bucket_name}}/{{path/to/remote_file}}` + +- Move a specific S3 object into another bucket: + +`aws s3 mv s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}/{{path/to/target}}` + +- Move a specific S3 object into another bucket keeping the original name: + +`aws s3 mv s3://{{bucket_name1}}/{{path/to/file}} s3://{{bucket_name2}}` + +- Display help: + +`aws s3 mv help` diff --git a/pages/common/aws-s3-presign.md b/pages/common/aws-s3-presign.md new file mode 100644 index 00000000000000..99089fb9e90b58 --- /dev/null +++ b/pages/common/aws-s3-presign.md @@ -0,0 +1,16 @@ +# aws s3 presign + +> Generate pre-signed URLs for Amazon S3 objects. +> More information: . + +- Generate a pre-signed URL for a specific S3 object that is valid for one hour: + +`aws s3 presign s3://{{bucket_name}}/{{path/to/file}}` + +- Generate a pre-signed URL valid for a specific lifetime: + +`aws s3 presign s3://{{bucket_name}}/{{path/to/file}} --expires-in {{duration_in_seconds}}` + +- Display help: + +`aws s3 presign help` diff --git a/pages/common/aws-s3-rm.md b/pages/common/aws-s3-rm.md new file mode 100644 index 00000000000000..f0e621505d07a7 --- /dev/null +++ b/pages/common/aws-s3-rm.md @@ -0,0 +1,20 @@ +# aws s3 rm + +> Delete S3 objects. +> More information: . + +- Delete a specific S3 object: + +`aws s3 rm s3://{{bucket_name}}/{{path/to/file}}` + +- Preview the deletion of a specific S3 object without deleting it (dry-run): + +`aws s3 rm s3://{{bucket_name}}/{{path/to/file}} --dryrun` + +- Delete an object from a specific S3 access point: + +`aws s3 rm s3://arn:aws:s3:{{region}}:{{account_id}}:{{access_point}}/{{access_point_name}}/{{object_key}}` + +- Display help: + +`aws s3 rm help` diff --git a/pages/common/aws-s3.md b/pages/common/aws-s3.md index a924ec8059bffb..c4b69b2eee4114 100644 --- a/pages/common/aws-s3.md +++ b/pages/common/aws-s3.md @@ -1,7 +1,7 @@ # aws s3 > CLI for AWS S3 - provides storage through web services interfaces. -> More information: . +> More information: . - Show files in a bucket: diff --git a/pages/common/aws-s3api.md b/pages/common/aws-s3api.md new file mode 100644 index 00000000000000..3f32c0a65aac32 --- /dev/null +++ b/pages/common/aws-s3api.md @@ -0,0 +1,36 @@ +# aws s3api + +> Create and delete Amazon S3 buckets and edit bucket properties. +> More information: . + +- Create bucket in a specific region: + +`aws s3api create-bucket --bucket {{bucket_name}} --region {{region}} --create-bucket-configuration LocationConstraint={{region}}` + +- Delete a bucket: + +`aws s3api delete-bucket --bucket {{bucket_name}}` + +- List buckets: + +`aws s3api list-buckets` + +- List the objects inside of a bucket and only show each object's key and size: + +`aws s3api list-objects --bucket {{bucket_name}} --query '{{Contents[].{Key: Key, Size: Size}}}'` + +- Add an object to a bucket: + +`aws s3api put-object --bucket {{bucket_name}} --key {{object_key}} --body {{path/to/file}}` + +- Download object from a bucket (The output file is always the last argument): + +`aws s3api get-object --bucket {{bucket_name}} --key {{object_key}} {{path/to/output_file}}` + +- Apply an Amazon S3 bucket policy to a specified bucket: + +`aws s3api put-bucket-policy --bucket {{bucket_name}} --policy file://{{path/to/bucket_policy.json}}` + +- Download the Amazon S3 bucket policy from a specified bucket: + +`aws s3api get-bucket-policy --bucket {{bucket_name}} --query Policy --output {{json|table|text|yaml|yaml-stream}} > {{path/to/bucket_policy}}` diff --git a/pages/common/aws-secretsmanager.md b/pages/common/aws-secretsmanager.md new file mode 100644 index 00000000000000..9f1f9d5712c809 --- /dev/null +++ b/pages/common/aws-secretsmanager.md @@ -0,0 +1,32 @@ +# aws secretsmanager + +> Store, manage, and retrieve secrets. +> More information: . + +- Show secrets stored by the secrets manager in the current account: + +`aws secretsmanager list-secrets` + +- Create a secret: + +`aws secretsmanager create-secret --name {{name}} --description "{{secret_description}}" --secret-string {{secret}}` + +- Delete a secret: + +`aws secretsmanager delete-secret --secret-id {{name_or_arn}}` + +- View details of a secret except for secret text: + +`aws secretsmanager describe-secret --secret-id {{name_or_arn}}` + +- Retrieve the value of a secret (to get the latest version of the secret omit `--version-stage`): + +`aws secretsmanager get-secret-value --secret-id {{name_or_arn}} --version-stage {{version_of_secret}}` + +- Rotate the secret immediately using a Lambda function: + +`aws secretsmanager rotate-secret --secret-id {{name_or_arn}} --rotation-lambda-arn {{arn_of_lambda_function}}` + +- Rotate the secret automatically every 30 days using a Lambda function: + +`aws secretsmanager rotate-secret --secret-id {{name_or_arn}} --rotation-lambda-arn {{arn_of_lambda_function}} --rotation-rules AutomaticallyAfterDays={{30}}` diff --git a/pages/common/aws-ses.md b/pages/common/aws-ses.md new file mode 100644 index 00000000000000..fad7d92fbc9b1e --- /dev/null +++ b/pages/common/aws-ses.md @@ -0,0 +1,37 @@ +# aws ses + +> CLI for AWS Simple Email Service. +> High-scale inbound and outbound cloud email service. +> More information: . + +- Create a new receipt rule set: + +`aws ses create-receipt-rule-set --rule-set-name {{rule_set_name}} --generate-cli-skeleton` + +- Describe the active receipt rule set: + +`aws ses describe-active-receipt-rule-set --generate-cli-skeletion` + +- Describe a specific receipt rule: + +`aws ses describe-receipt-rule --rule-set-name {{rule_set_name}} --rule-name {{rule_name}} --generate-cli-skeleton` + +- List all receipt rule sets: + +`aws ses list-receipt-rule-sets --starting-token {{token_string}} --max-items {{integer}} --generate-cli-skeleton` + +- Delete a specific receipt rule set (the currently active rule set cannot be deleted): + +`aws ses delete-receipt-rule-set --rule-set-name {{rule_set_name}} --generate-cli-skeleton` + +- Delete a specific receipt rule: + +`aws ses delete-receipt-rule --rule-set-name {{rule_set_name}} --rule-name {{rule_name}} --generate-cli-skeleton` + +- Send an email: + +`aws ses send-email --from {{from_address}} --destination "ToAddresses={{addresses}}" --message "Subject={Data={{subject_text}},Charset=utf8},Body={Text={Data={{body_text}},Charset=utf8},Html={Data={{message_body_containing_html}},Charset=utf8}}"` + +- Show help for a specific SES subcommand: + +`aws ses {{subcommand}} help` diff --git a/pages/common/aws-sqs.md b/pages/common/aws-sqs.md new file mode 100644 index 00000000000000..f27e79e4886bbe --- /dev/null +++ b/pages/common/aws-sqs.md @@ -0,0 +1,36 @@ +# aws sqs + +> Create, delete, and send messages to queues for the AWS SQS service. +> More information: . + +- List all availables queues: + +`aws sqs list-queues` + +- Display the URL of a specific queue: + +`aws sqs get-queue-url --queue-name {{queue_name}}` + +- Create a queue with specific attributes from a file in JSON format: + +`aws sqs create-queue --queue-name {{queue_name}} --attributes {{file://path/to/attributes_file.json}}` + +- Send a specific message to a queue: + +`aws sqs send-message --queue-url https://sqs.{{region}}.amazonaws.com/{{queue_name}} --message-body "{{message_body}}" --delay-seconds {{delay}} --message-attributes {{file://path/to/attributes_file.json}}` + +- Delete the specified message from a queue: + +`aws sqs delete-message --queue-url {{https://queue_url}} --receipt-handle {{receipt_handle}}` + +- Delete a specific queue: + +`aws sqs delete-queue --queue-url https://sqs.{{region}}.amazonaws.com/{{queue_name}}` + +- Delete all messages from the specified queue: + +`aws sqs purge-queue --queue-url https://sqs.{{region}}.amazonaws.com/{{queue_name}}` + +- Enable a specific AWS account to send messages to queue: + +`aws sqs add-permission --queue-url https://sqs.{{region}}.amazonaws.com/{{queue_name}} --label {{permission_name}} --aws-account-ids {{account_id}} --actions SendMessage` diff --git a/pages/common/aws-sts.md b/pages/common/aws-sts.md new file mode 100644 index 00000000000000..6fed36b4e1faeb --- /dev/null +++ b/pages/common/aws-sts.md @@ -0,0 +1,12 @@ +# aws sts + +> Security Token Service (STS) allows to request temporary credentials for (IAM) users or federated users. +> More information: . + +- Get temporary security credentials to access specific AWS resources: + +`aws sts assume-role --role-arn {{aws_role_arn}}` + +- Get an IAM user or role whose credentials are used to call the operation: + +`aws sts get-caller-identity` diff --git a/pages/common/aws-workmail.md b/pages/common/aws-workmail.md new file mode 100644 index 00000000000000..8039ca03b7ee1b --- /dev/null +++ b/pages/common/aws-workmail.md @@ -0,0 +1,36 @@ +# aws workmail + +> Manage Amazon WorkMail using the CLI. +> More information: . + +- List all WorkMail organizations: + +`aws workmail list-organizations` + +- List all users of a specific organization: + +`aws workmail list-users --organization-id {{organization_id}}` + +- Create a WorkMail user in a specific organization: + +`aws workmail create-user --name {{username}} --display-name {{name}} --password {{password}} --organization-id {{organization_id}}` + +- Register and enable a group/user to WorkMail: + +`aws workmail register-to-work-mail --entity-id {{entity_id}} --email {{email}} --organization-id {{organization_id}}` + +- Create a WorkMail group in a specific organization: + +`aws workmail create-group --name {{group_name}} --organization-id {{organization_id}}` + +- Associate a member to a specific group: + +`aws workmail associate-member-to-group --group-id {{group_id}} --member-id {{member_id}} --organization-id {{organization_id}}` + +- Deregister and disable a user/group from WorkMail: + +`aws workmail deregister-from-work-mail --entity-id {{entity_id}} --organization-id {{organization_id}}` + +- Delete a user from an organization: + +`aws workmail delete-user --user-id {{user_id}} --organization-id {{organization_id}}` diff --git a/pages/common/aws.md b/pages/common/aws.md index b0b2decc39c3ac..d18fe19813a161 100644 --- a/pages/common/aws.md +++ b/pages/common/aws.md @@ -1,14 +1,14 @@ # aws > The official CLI tool for Amazon Web Services. -> Wizard, SSO, Resource Autocompletion, and YAML options are v2 only. +> Some subcommands such as `aws s3` have their own usage documentation. > More information: . -- Configure the AWS Command Line: +- Configure the AWS Command-line: `aws configure wizard` -- Configure the AWS Command Line using SSO: +- Configure the AWS Command-line using SSO: `aws configure sso` @@ -20,7 +20,7 @@ `aws sts get-caller-identity` -- List AWS resources in a region and output in yaml: +- List AWS resources in a region and output in YAML: `aws dynamodb list-tables --region {{us-east-1}} --output yaml` diff --git a/pages/common/awslogs.md b/pages/common/awslogs.md index 183547cd1ce82e..0f77f809fa84a6 100644 --- a/pages/common/awslogs.md +++ b/pages/common/awslogs.md @@ -1,6 +1,6 @@ # awslogs -> Queries groups, streams and events from Amazon Cloudwatch logs. +> Queries groups, streams and events from Amazon CloudWatch logs. > More information: . - List log groups: @@ -15,7 +15,7 @@ `awslogs get {{/var/log/syslog}} --start='{{2h ago}}' --end='{{1h ago}}'` -- Get logs that match a specific Cloudwatch Logs Filter pattern: +- Get logs that match a specific CloudWatch Logs Filter pattern: `awslogs get {{/aws/lambda/my_lambda_group}} --filter-pattern='{{ERROR}}'` diff --git a/pages/common/axel.md b/pages/common/axel.md index e919fa2982128a..b494915683a263 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 new file mode 100644 index 00000000000000..f0c91645940eb5 --- /dev/null +++ b/pages/common/az-account.md @@ -0,0 +1,25 @@ +# az account + +> Manage Azure subscription information. +> Part of `az`, the command-line client for Microsoft Azure. +> More information: . + +- Print a list of subscriptions for the logged in account: + +`az account list` + +- Set a `subscription` to be the currently active subscription: + +`az account set --subscription {{subscription_id}}` + +- List supported regions for the currently active subscription: + +`az account list-locations` + +- Print an access token to be used with `MS Graph API`: + +`az account get-access-token --resource-type {{ms-graph}}` + +- Print details of the currently active subscription in a specific format: + +`az account show --output {{json|tsv|table|yaml}}` diff --git a/pages/common/az-appconfig.md b/pages/common/az-appconfig.md new file mode 100644 index 00000000000000..18b27de83e156c --- /dev/null +++ b/pages/common/az-appconfig.md @@ -0,0 +1,29 @@ +# az appconfig + +> Manage App configurations on Azure. +> Part of `az`, the command-line client for Microsoft Azure. +> More information: . + +- Create an App Configuration: + +`az appconfig create --name {{name}} --resource-group {{group_name}} --location {{location}}` + +- Delete a specific App Configuration: + +`az appconfig delete --resource-group {{rg_name}} --name {{appconfig_name}}` + +- List all App Configurations under the current subscription: + +`az appconfig list` + +- List all App Configurations under a specific resource group: + +`az appconfig list --resource-group {{rg_name}}` + +- Show properties of an App Configuration: + +`az appconfig show --name {{appconfig_name}}` + +- Update a specific App Configuration: + +`az appconfig update --resource-group {{rg_name}} --name {{appconfig_name}}` diff --git a/pages/common/az-bicep.md b/pages/common/az-bicep.md new file mode 100644 index 00000000000000..ec5a2266332429 --- /dev/null +++ b/pages/common/az-bicep.md @@ -0,0 +1,33 @@ +# az bicep + +> Bicep CLI command group. +> Part of `azure-cli`. +> More information: . + +- Install Bicep CLI: + +`az bicep install` + +- Build a Bicep file: + +`az bicep build --file {{path/to/file.bicep}}` + +- Attempt to decompile an ARM template file to a Bicep file: + +`az bicep decompile --file {{path/to/template_file.json}}` + +- Upgrade Bicep CLI to the latest version: + +`az bicep upgrade` + +- Display the installed version of Bicep CLI: + +`az bicep version` + +- List all available versions of Bicep CLI: + +`az bicep list-versions` + +- Uninstall Bicep CLI: + +`az bicep uninstall` diff --git a/pages/common/az-config.md b/pages/common/az-config.md new file mode 100644 index 00000000000000..54bec7b5b2796d --- /dev/null +++ b/pages/common/az-config.md @@ -0,0 +1,21 @@ +# az config + +> Manage Azure CLI configuration. +> Part of `azure-cli`. +> More information: . + +- Print all configurations: + +`az config get` + +- Print configurations for a specific section: + +`az config get {{section_name}}` + +- Set a configuration: + +`az config set {{configuration_name}}={{value}}` + +- Unset a configuration: + +`az config unset {{configuration_name}}` diff --git a/pages/common/az-devops.md b/pages/common/az-devops.md new file mode 100644 index 00000000000000..b7a36695e53a3d --- /dev/null +++ b/pages/common/az-devops.md @@ -0,0 +1,25 @@ +# az devops + +> Manage Azure DevOps organizations. +> Part of `azure-cli`. +> 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 new file mode 100644 index 00000000000000..9c92ada7c78e2f --- /dev/null +++ b/pages/common/az-feedback.md @@ -0,0 +1,9 @@ +# az feedback + +> Send feedback to the Azure CLI Team. +> Part of `azure-cli`. +> More information: . + +- Send feedback to the Azure CLI Team: + +`az feedback` diff --git a/pages/common/az-group.md b/pages/common/az-group.md new file mode 100644 index 00000000000000..a262c837370162 --- /dev/null +++ b/pages/common/az-group.md @@ -0,0 +1,21 @@ +# az group + +> Manage resource groups and template deployments. +> Part of `azure-cli`. +> More information: . + +- Create a new resource group: + +`az group create --name {{name}} --location {{location}}` + +- Check if a resource group exists: + +`az group exists --name {{name}}` + +- Delete a resource group: + +`az group delete --name {{name}}` + +- Wait until a condition of the resource group is met: + +`az group wait --name {{name}} --{{created|deleted|exists|updated}}` diff --git a/pages/common/az-lock.md b/pages/common/az-lock.md new file mode 100644 index 00000000000000..caf574b40a157c --- /dev/null +++ b/pages/common/az-lock.md @@ -0,0 +1,29 @@ +# az lock + +> Manage Azure locks. +> Part of `azure-cli`. +> More information: . + +- Create a read-only subscription level lock: + +`az lock create --name {{lock_name}} --lock-type ReadOnly` + +- Create a read-only resource group level lock: + +`az lock create --name {{lock_name}} --resource-group {{group_name}} --lock-type ReadOnly` + +- Delete a subscription level lock: + +`az lock delete --name {{lock_name}}` + +- Delete a resource group level lock: + +`az lock delete --name {{lock_name}} --resource-group {{group_name}}` + +- List out all locks on the subscription level: + +`az lock list` + +- Show a subscription level lock: + +`az lock show -n {{lock_name}}` diff --git a/pages/common/az-login.md b/pages/common/az-login.md new file mode 100644 index 00000000000000..44c61a4a126964 --- /dev/null +++ b/pages/common/az-login.md @@ -0,0 +1,25 @@ +# az login + +> Log in to Azure. +> Part of `az`, the command-line client for Microsoft Azure. +> More information: . + +- Log in interactively: + +`az login` + +- 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}}` + +- Log in with a service principal using a client certificate: + +`az login --service-principal --username {{http://azure-cli-service-principal}} --password {{path/to/cert.pem}} --tenant {{someone.onmicrosoft.com}}` + +- Log in using a VM's system assigned identity: + +`az login --identity` + +- Log in using a VM's user assigned identity: + +`az login --identity --username /subscriptions/{{subscription_id}}/resourcegroups/{{my_rg}}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{{my_id}}` diff --git a/pages/common/az-logout.md b/pages/common/az-logout.md new file mode 100644 index 00000000000000..d69db3e485fab3 --- /dev/null +++ b/pages/common/az-logout.md @@ -0,0 +1,13 @@ +# az logout + +> Log out from an Azure subscription. +> Part of `azure-cli`. +> More information: . + +- Log out from the active account: + +`az logout` + +- Log out a specific username: + +`az logout --username {{alias@somedomain.com}}` diff --git a/pages/common/az-network.md b/pages/common/az-network.md new file mode 100644 index 00000000000000..34d255a588acb9 --- /dev/null +++ b/pages/common/az-network.md @@ -0,0 +1,21 @@ +# az network + +> Manage Azure Network resources. +> Part of `azure-cli`. +> More information: . + +- List network resources in a region that are used against a subscription quota: + +`az network list-usages` + +- List all virtual networks in a subscription: + +`az network vnet list` + +- Create a virtual network: + +`az network vnet create --address-prefixes {{10.0.0.0/16}} --name {{vnet}} --resource_group {{group_name}} --submet-name {{subnet}} --subnet-prefixes {{10.0.0.0/24}}` + +- Enable accelerated networking for a network interface card: + +`az network nic update --accelerated-networking true --name {{nic}} --resource-group {{resource_group}}` diff --git a/pages/common/az-pipelines.md b/pages/common/az-pipelines.md new file mode 100644 index 00000000000000..2048d11a36f556 --- /dev/null +++ b/pages/common/az-pipelines.md @@ -0,0 +1,33 @@ +# az pipelines + +> Manage Azure Pipelines resources. +> Part of `azure-cli`. +> More information: . + +- Create a new Azure Pipeline (YAML based): + +`az pipelines create --org {{organization_url}} --project {{project_name}} --name {{pipeline_name}} --description {{description}} --repository {{repository_name}} --branch {{branch_name}}` + +- Delete a specific pipeline: + +`az pipelines delete --org {{organization_url}} --project {{project_name}} --id {{pipeline_id}}` + +- List pipelines: + +`az pipelines list --org {{organization_url}} --project {{project_name}}` + +- Enqueue a specific pipeline to run: + +`az pipelines run --org {{organization_url}} --project {{project_name}} --name {{pipeline_name}}` + +- Get the details of a specific pipeline: + +`az pipelines show --org {{organization_url}} --project {{project_name}} --name {{pipeline_name}}` + +- Update a specific pipeline: + +`az pipelines update --org {{organization_url}} --project {{project_name}} --name {{pipeline_name}} --new-name {{pipeline_new_name}} --new-folder-path {{user1/production_pipelines}}` + +- Get a list of agents in a pool: + +`az pipelines agent list --org {{organization_url}} --pool-id {{agent_pool}}` diff --git a/pages/common/az-provider.md b/pages/common/az-provider.md new file mode 100644 index 00000000000000..877d1eead6a629 --- /dev/null +++ b/pages/common/az-provider.md @@ -0,0 +1,25 @@ +# az provider + +> Manage resource providers. +> Part of `azure-cli`. +> More information: . + +- Register a provider: + +`az provider register --namespace {{Microsoft.PolicyInsights}}` + +- Unregister a provider: + +`az provider unregister --namespace {{Microsoft.Automation}}` + +- List all providers for a subscription: + +`az provider list` + +- Show information about a specific provider: + +`az provider show --namespace {{Microsoft.Storage}}` + +- List all resource types for a specific provider: + +`az provider list --query "[?namespace=='{{Microsoft.Network}}'].resourceTypes[].resourceType"` diff --git a/pages/common/az-redis.md b/pages/common/az-redis.md new file mode 100644 index 00000000000000..c590441b26024c --- /dev/null +++ b/pages/common/az-redis.md @@ -0,0 +1,21 @@ +# az redis + +> Manage Redis caches. +> Part of `azure-cli`. +> More information: . + +- Create a new Redis cache instance: + +`az redis create --location {{location}} --name {{name}} --resource-group {{resource_group}} --sku {{Basic|Premium|Standard}} --vm-size {{c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5}}` + +- Update a Redis cache: + +`az redis update --name {{name}} --resource-group {{resource_group}} --sku {{Basic|Premium|Standard}} --vm-size {{c0|c1|c2|c3|c4|c5|c6|p1|p2|p3|p4|p5}}` + +- Export data stored in a Redis cache: + +`az redis export --container {{container}} --file-format {{file-format}} --name {{name}} --prefix {{prefix}} --resource-group {{resource_group}}` + +- Delete a Redis cache: + +`az redis delete --name {{name}} --resource-group {{resource_group}} --yes` diff --git a/pages/common/az-repos.md b/pages/common/az-repos.md new file mode 100644 index 00000000000000..dd58f361e4fef5 --- /dev/null +++ b/pages/common/az-repos.md @@ -0,0 +1,21 @@ +# az repos + +> Manage Azure DevOps repos. +> Part of `azure-cli`. +> 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 new file mode 100644 index 00000000000000..25f2a6906ed8b6 --- /dev/null +++ b/pages/common/az-sshkey.md @@ -0,0 +1,21 @@ +# az sshkey + +> Manage ssh public keys with virtual machines. +> Part of `azure-cli`. +> More information: . + +- Create a new SSH key: + +`az sshkey create --name {{name}} --resource-group {{resource_group}}` + +- Upload an existing SSH key: + +`az sshkey create --name {{name}} --resource-group {{resource_group}} --public-key "{{@path/to/key.pub}}"` + +- List all SSH public keys: + +`az sshkey list` + +- Show information about an SSH public key: + +`az sshkey show --name {{name}} --resource-group {{resource_group}}` diff --git a/pages/common/az-storage-account.md b/pages/common/az-storage-account.md new file mode 100644 index 00000000000000..8672e5b27203f1 --- /dev/null +++ b/pages/common/az-storage-account.md @@ -0,0 +1,21 @@ +# az storage account + +> Manage storage accounts in Azure. +> Part of `azure-cli`. +> More information: . + +- Create an storage account: + +`az storage account create --name {{storage_account_name}} --resource-group {{azure_resource_group}} --location {{azure_location}} --sku {{storage_account_sku}}` + +- Generate a shared access signature for a specific storage account: + +`az storage account generate-sas --account-name {{storage_account_name}} --name {{account_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --services {{storage_services}} --resource-types {{resource_types}}` + +- List storage accounts: + +`az storage account list --resource-group {{azure_resource_group}}` + +- Delete a specific storage account: + +`az storage account delete --name {{storage_account_name}} --resource-group {{azure_resource_group}}` diff --git a/pages/common/az-storage-blob.md b/pages/common/az-storage-blob.md new file mode 100644 index 00000000000000..86f7ea4482e339 --- /dev/null +++ b/pages/common/az-storage-blob.md @@ -0,0 +1,25 @@ +# az storage blob + +> Manage blob storage containers and objects in Azure. +> Part of `azure-cli`. +> More information: . + +- Download a blob to a file path: + +`az storage blob download --account-name {{storage_account_name}} --account-key {{storage_account_key}} -c {{container_name}} -n {{path/to/blob}} -f {{path/to/local_file}}` + +- Download blobs from a blob container recursively: + +`az storage blob download-batch --account-name {{storage_account_name}} --account-key {{storage_account_key}} -s {{container_name}} -d {{path/to/remote}} --pattern {{filename_regex}} --destination {{path/to/destination}}` + +- Upload a local file to blob storage: + +`az storage blob upload --account-name {{storage_account_name}} --account-key {{storage_account_key}} -c {{container_name}} -n {{path/to/blob}} -f {{path/to/local_file}}` + +- Delete a blob object: + +`az storage blob delete --account-name {{storage_account_name}} --account-key {{storage_account_key}} -c {{container_name}} -n {{path/to/blob}}` + +- Generate a shared access signature for a blob: + +`az storage blob generate-sas --account-name {{storage_account_name}} --account-key {{storage_account_key}} -c {{container_name}} -n {{path/to/blob}} --permissions {{permission_set}} --expiry {{Y-m-d'T'H:M'Z'}} --https-only` diff --git a/pages/common/az-storage-container.md b/pages/common/az-storage-container.md new file mode 100644 index 00000000000000..e751451c78c425 --- /dev/null +++ b/pages/common/az-storage-container.md @@ -0,0 +1,21 @@ +# az storage container + +> Manage blob storage containers in Azure. +> Part of `azure-cli`. +> More information: . + +- Create a container in a storage account: + +`az storage container create --account-name {{storage_account_name}} --name {{container_name}} --public-access {{access_level}} --fail-on-exist` + +- Generate a shared access signature for the container: + +`az storage container generate-sas --account-name {{storage_account_name}} --name {{container_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --https-only` + +- List containers in a storage account: + +`az storage container list --account-name {{storage_account_name}} --prefix {{filter_prefix}}` + +- Mark the specified container for deletion: + +`az storage container delete --account-name {{storage_account_name}} --name {{container_name}} --fail-not-exist` diff --git a/pages/common/az-storage-entity.md b/pages/common/az-storage-entity.md new file mode 100644 index 00000000000000..335fd760642818 --- /dev/null +++ b/pages/common/az-storage-entity.md @@ -0,0 +1,25 @@ +# az storage entity + +> Manage Azure Table storage entities. +> Part of `azure-cli`. +> More information: . + +- Insert an entity into a table: + +`az storage entity insert --entity {{space_separated_key_value_pairs}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}` + +- Delete an existing entity from a table: + +`az storage entity delete --partition-key {{partition_key}} --row-key {{row_key}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}` + +- Update an existing entity by merging its properties: + +`az storage entity merge --entity {{space_separated_key_value_pairs}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}` + +- List entities which satisfy a query: + +`az storage entity query --filter {{query_filter}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}` + +- Get an entity from the specified table: + +`az storage entity show --partition-key {{partition_key}} --row-key {{row_key}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}` diff --git a/pages/common/az-storage-queue.md b/pages/common/az-storage-queue.md new file mode 100644 index 00000000000000..e9fc6d4885dcb5 --- /dev/null +++ b/pages/common/az-storage-queue.md @@ -0,0 +1,21 @@ +# az storage queue + +> Manage storage queues in Azure. +> Part of `azure-cli`. +> More information: . + +- Create a queue: + +`az storage queue create --account-name {{storage_account_name}} --name {{queue_name}} --metadata {{queue_metadata}}` + +- Generate a shared access signature for the queue: + +`az storage queue generate-sas --account-name {{storage_account_name}} --name {{queue_name}} --permissions {{queue_permissions}} --expiry {{expiry_date}} --https-only` + +- List queues in a storage account: + +`az storage queue list --prefix {{filter_prefix}} --account-name {{storage_account_name}}` + +- Delete the specified queue and any messages it contains: + +`az storage queue delete --account-name {{storage_account_name}} --name {{queue_name}} --fail-not-exist` diff --git a/pages/common/az-storage-table.md b/pages/common/az-storage-table.md new file mode 100644 index 00000000000000..57b7ae141ff45b --- /dev/null +++ b/pages/common/az-storage-table.md @@ -0,0 +1,21 @@ +# az storage table + +> Manage NoSQL key-value storage in Azure. +> Part of `azure-cli`. +> More information: . + +- Create a new table in the storage account: + +`az storage table create --account-name {{storage_account_name}} --name {{table_name}} --fail-on-exist` + +- Generate a shared access signature for the table: + +`az storage table generate-sas --account-name {{storage_account_name}} --name {{table_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --https-only` + +- List tables in a storage account: + +`az storage table list --account-name {{storage_account_name}}` + +- Delete the specified table and any data it contains: + +`az storage table delete --account-name {{storage_account_name}} --name {{table_name}} --fail-not-exist` diff --git a/pages/common/az-storage.md b/pages/common/az-storage.md new file mode 100644 index 00000000000000..3350501c7b3e0d --- /dev/null +++ b/pages/common/az-storage.md @@ -0,0 +1,25 @@ +# az storage + +> Manage Azure Cloud Storage resources. +> Part of `azure-cli`. +> More information: . + +- Create a storage account: + +`az storage account create -g {{group_name}} -n {{account_name}} -l {{location}} --sku {{account_sku}}` + +- List all storage accounts in a resource group: + +`az storage account list -g {{group_name}}` + +- List the access keys for a storage account: + +`az storage account keys list -g {{group_name}} -n {{account_name}}` + +- Delete a storage account: + +`az storage account delete -g {{group_name}} -n {{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}}` diff --git a/pages/common/az-tag.md b/pages/common/az-tag.md new file mode 100644 index 00000000000000..3e28d018cd144d --- /dev/null +++ b/pages/common/az-tag.md @@ -0,0 +1,25 @@ +# az tag + +> Manage tags on a resource. +> Part of `azure-cli`. +> More information: . + +- Create a tag value: + +`az tag add-value --name {{tag_name}} --value {{tag_value}}` + +- Create a tag in the subscription: + +`az tag create --name {{tag_name}}` + +- Delete a tag from the subscription: + +`az tag delete --name {{tag_name}}` + +- List all tags on a subscription: + +`az tag list --resource-id /subscriptions/{{subscription_id}}` + +- Delete a tag value for a specific tag name: + +`az tag remove-value --name {{tag_name}} --value {{tag_value}}` diff --git a/pages/common/az-term.md b/pages/common/az-term.md new file mode 100644 index 00000000000000..97010d4d92df0a --- /dev/null +++ b/pages/common/az-term.md @@ -0,0 +1,13 @@ +# az term + +> Manage marketplace agreement with marketplaceordering. +> Part of `azure-cli`. +> More information: . + +- Print marketplace terms: + +`az term show --product "{{product_identifier}}" --plan "{{plan_identifier}}" --publisher "{{publisher_identifier}}"` + +- Accept marketplace terms: + +`az term accept --product "{{product_identifier}}" --plan "{{plan_identifier}}" --publisher "{{publisher_identifier}}"` diff --git a/pages/common/az-upgrade.md b/pages/common/az-upgrade.md new file mode 100644 index 00000000000000..02be2ca9c73eaf --- /dev/null +++ b/pages/common/az-upgrade.md @@ -0,0 +1,17 @@ +# az upgrade + +> Upgrade Azure CLI and Extensions. +> Part of `az`, the command-line client for Microsoft Azure. +> More information: . + +- Upgrade Azure CLI: + +`az upgrade` + +- Upgrade Azure CLI and Extensions: + +`az upgrade --all` + +- Upgrade Azure CLI and Extensions without prompting for confirmation: + +`az version --all --yes` diff --git a/pages/common/az-version.md b/pages/common/az-version.md new file mode 100644 index 00000000000000..c28c0ec397612c --- /dev/null +++ b/pages/common/az-version.md @@ -0,0 +1,13 @@ +# az version + +> Shows the current version of Azure CLI modules and extensions. +> Part of `az`, the command-line client for Microsoft Azure. +> More information: . + +- Show the current version of Azure CLI modules and extensions in JSON format: + +`az version` + +- Show the current version of Azure CLI modules and extensions in a given format: + +`az version --output {{json|table|tsv}}` diff --git a/pages/common/az-vm.md b/pages/common/az-vm.md new file mode 100644 index 00000000000000..97736fe44079e4 --- /dev/null +++ b/pages/common/az-vm.md @@ -0,0 +1,33 @@ +# az vm + +> Manage virtual machines in Azure. +> Part of `azure-cli`. +> More information: . + +- List details of available Virtual Machines: + +`az vm list` + +- Create a virtual machine using the default Ubuntu image and generate ssh keys: + +`az vm create --resource-group {{rg}} --name {{vm_name}} --image {{UbuntuLTS}} --admin-user {{azureuser}} --generate-ssh-keys` + +- Stop a Virtual Machine: + +`az vm stop --resource-group {{rg}} --name {{vm_name}}` + +- Deallocate a Virtual Machine: + +`az vm deallocate --resource-group {{rg}} --name {{vm_name}}` + +- Start a Virtual Machine: + +`az vm start --resource-group {{rg}} --name {{vm_name}}` + +- Restart a Virtual Machine: + +`az vm restart --resource-group {{rg}} --name {{vm_name}}` + +- List VM images available in the Azure Marketplace: + +`az vm image list` diff --git a/pages/common/az-webapp.md b/pages/common/az-webapp.md new file mode 100644 index 00000000000000..3f27c79ab4f556 --- /dev/null +++ b/pages/common/az-webapp.md @@ -0,0 +1,21 @@ +# az webapp + +> Manage Web Applications hosted in Azure Cloud Services. +> Part of `azure-cli`. +> Mode information: . + +- List available runtimes for a web application: + +`az webapp list-runtimes --os-type {{windows|linux}}` + +- Create a web application: + +`az webapp up --name {{name}} --location {{location}} --runtime {{runtime}}` + +- List all web applications: + +`az webapp list` + +- Delete a specific web application: + +`az webapp delete --name {{name}} --resource-group {{resource_group}}` diff --git a/pages/common/az.md b/pages/common/az.md index 479fc4152591c1..f8e11fcce52799 100644 --- a/pages/common/az.md +++ b/pages/common/az.md @@ -1,7 +1,8 @@ # az > The official CLI tool for Microsoft Azure. -> More information: . +> Some subcommands such as `az login` have their own usage documentation. +> More information: . - Log in to Azure: diff --git a/pages/common/azurite.md b/pages/common/azurite.md new file mode 100644 index 00000000000000..d2a7d2ca0313aa --- /dev/null +++ b/pages/common/azurite.md @@ -0,0 +1,24 @@ +# azurite + +> Azure Storage API compatible server (emulator) in local environment. +> More information: . + +- Use an existing [l]ocation as workspace path: + +`azurite {{-l|--location}} {{path/to/directory}}` + +- Disable access log displayed in console: + +`azurite {{-s|--silent}}` + +- Enable [d]ebug log by providing a file path as log destination: + +`azurite {{-d|--debug}} {{path/to/debug.log}}` + +- Customize the listening address of Blob/Queue/Table service: + +`azurite {{--blobHost|--queueHost|--tableHost}} {{0.0.0.0}}` + +- Customize the listening port of Blob/Queue/Table service: + +`azurite {{--blobPort|--queuePort|--tablePort}} {{8888}}` diff --git a/pages/common/b2sum.md b/pages/common/b2sum.md index 0ac95317919c3c..118d3b60bedc3b 100644 --- a/pages/common/b2sum.md +++ b/pages/common/b2sum.md @@ -5,16 +5,24 @@ - Calculate the BLAKE2 checksum for a file: -`b2sum {{filename1}}` +`b2sum {{path/to/file}}` - Calculate BLAKE2 checksums for multiple files: -`b2sum {{filename1}} {{filename2}}` +`b2sum {{path/to/file1}} {{path/to/file2}}` + +- Calculate the BLAKE2 checksum from `stdin`: + +`{{some_command}} | b2sum` - Read a file of BLAKE2 sums and filenames and verify all files have matching checksums: -`b2sum -c {{filename.b2}}` +`b2sum --check {{path/to/file.b2}}` + +- Only show a message for missing files or when verification fails: + +`b2sum --check --quiet {{path/to/file.b2}}` -- Calculate the BLAKE2 checksum from stdin: +- Only show a message for files for which verification fails, ignoring missing files: -`{{somecommand}} | b2sum` +`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 00000000000000..14ef8d5f5a48bc --- /dev/null +++ b/pages/common/b3sum.md @@ -0,0 +1,25 @@ +# b3sum + +> Command line utility for calculating BLAKE3 hashes. +> It is similar to Coreutils tools like b2sum or md5sum. +> More information: . + +- Calculate the BLAKE3 checksum for a file: + +`b3sum {{path/to/file}}` + +- Calculate BLAKE3 checksums for multiple files: + +`b3sum {{path/to/file1}} {{path/to/file2}}` + +- Calculate the BLAKE3 checksum from `stdin`: + +`{{some_command}} | b3sum` + +- Create a file of BLAKE3 checksums: + +`b3sum {{path/to/file}} > {{path/to/file.b3}}` + +- Read and verify a file of BLAKE3 checksums: + +`b3sum --check {{path/to/file.b3}}` diff --git a/pages/common/babel.md b/pages/common/babel.md index efafa49d837908..e86bf5ca821c56 100644 --- a/pages/common/babel.md +++ b/pages/common/babel.md @@ -3,7 +3,7 @@ > A transpiler which converts code from JavaScript ES6/ES7 syntax to ES5 syntax. > More information: . -- Transpile a specified input file and output to stdout: +- Transpile a specified input file and output to `stdout`: `babel {{path/to/file}}` diff --git a/pages/common/babeld.md b/pages/common/babeld.md new file mode 100644 index 00000000000000..17b84d3a090bc8 --- /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 0a2bb9a1dc3862..786888b7a0f90e 100644 --- a/pages/common/balena.md +++ b/pages/common/balena.md @@ -1,9 +1,9 @@ # balena -> Interact with the balenaCloud, openBalena and the balena API from the command line. +> Interact with the balenaCloud, openBalena and the balena API from the command-line. > More information: . -- Login to the balenaCloud account: +- Log in to the balenaCloud account: `balena login` diff --git a/pages/common/banner.md b/pages/common/banner.md index e00cf9de7de9f3..2925e0754ea71d 100644 --- a/pages/common/banner.md +++ b/pages/common/banner.md @@ -1,7 +1,7 @@ # banner > Print the given argument as a large ASCII art. -> More information: . +> More information: . - Print the text message as a large banner (quotes are optional): @@ -11,6 +11,6 @@ `banner -w {{50}} "{{Hello World}}"` -- Read text from stdin: +- Read text from `stdin`: `banner` diff --git a/pages/common/base32.md b/pages/common/base32.md index 263dd3fb620cd9..9b10f0e0ac7251 100644 --- a/pages/common/base32.md +++ b/pages/common/base32.md @@ -5,16 +5,16 @@ - Encode a file: -`base32 {{filename}}` +`base32 {{path/to/file}}` - Decode a file: -`base32 --decode {{filename}}` +`base32 --decode {{path/to/file}}` -- Encode from stdin: +- Encode from `stdin`: `{{somecommand}} | base32` -- Decode from stdin: +- Decode from `stdin`: `{{somecommand}} | base32 --decode` diff --git a/pages/common/base64.md b/pages/common/base64.md index fbb6faadba1380..008e44dbac514b 100644 --- a/pages/common/base64.md +++ b/pages/common/base64.md @@ -3,18 +3,18 @@ > Encode or decode file or standard input to/from Base64, to standard output. > More information: . -- Encode the contents of a file as base64 and write the result to stdout: +- 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: +- Decode the base64 contents of a file and write the result to `stdout`: -`base64 --decode {{filename}}` +`base64 --decode {{path/to/file}}` -- Encode from stdin: +- Encode from `stdin`: `{{somecommand}} | base64` -- Decode from stdin: +- Decode from `stdin`: `{{somecommand}} | base64 --decode` diff --git a/pages/common/bash-it.md b/pages/common/bash-it.md new file mode 100644 index 00000000000000..0bd9cada0d0a72 --- /dev/null +++ b/pages/common/bash-it.md @@ -0,0 +1,32 @@ +# bash-it + +> A collection of community contributed Bash commands and scripts for Bash 3.2+. +> More information: . + +- Update Bash-it to the latest stable/development version: + +`bash-it update {{stable|dev}}` + +- Reload Bash profile (set `BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE` to non-empty value for an automatic reload): + +`bash-it reload` + +- Restart Bash: + +`bash-it restart` + +- Reload Bash profile with enabled error and warning logging: + +`bash-it doctor` + +- Reload Bash profile with enabled error/warning/entire logging: + +`bash-it doctor {{errors|warnings|all}}` + +- Search for Bash-it aliases/plugins/completions: + +`bash-it search {{alias|plugin|completion}}` + +- Search for Bash-it aliases/plugins/completions and enable/disable all found items: + +`bash-it search --{{enable|disable}} {{alias|plugin|completion}}` diff --git a/pages/common/bash.md b/pages/common/bash.md index 2e6d7657de9f1f..2eb1dbdf93f94e 100644 --- a/pages/common/bash.md +++ b/pages/common/bash.md @@ -1,33 +1,33 @@ # bash -> Bourne-Again SHell, an `sh`-compatible command line interpreter. -> See also `histexpand` for history expansion. +> Bourne-Again SHell, an `sh`-compatible command-line interpreter. +> See also: `zsh`, `histexpand` (history expansion). > More information: . - Start an interactive shell session: `bash` -- Execute a command and then exit: +- Start an interactive shell session without loading startup configs: -`bash -c "{{command}}"` +`bash --norc` -- Execute a script: +- Execute specific [c]ommands: + +`bash -c "{{echo 'bash is executed'}}"` + +- Execute a specific script: `bash {{path/to/script.sh}}` -- Execute a script, printing each command before executing it: +- Execute a specific script while printing each command before executing it: `bash -x {{path/to/script.sh}}` -- Execute commands from a script, stopping at the first error: +- Execute a specific script and stop at the first [e]rror: `bash -e {{path/to/script.sh}}` -- Read and execute commands from stdin: - -`bash -s` - -- Print the Bash version (`$BASH_VERSION` contains the version without license information): +- Execute specific commands from `stdin`: -`bash --version` +`{{echo "echo 'bash is executed'"}} | bash` diff --git a/pages/common/bastet.md b/pages/common/bastet.md index 94f0d07792fb03..71bd160ba90584 100644 --- a/pages/common/bastet.md +++ b/pages/common/bastet.md @@ -3,7 +3,7 @@ > Clone of the game Tetris in the terminal. > More information: . -- Start a tetris game: +- Start a Tetris game: `bastet` diff --git a/pages/common/bat.md b/pages/common/bat.md index 549078b5f42b1e..7c7a483e543991 100644 --- a/pages/common/bat.md +++ b/pages/common/bat.md @@ -6,7 +6,7 @@ - Print the contents of a file to the standard output: -`bat {{file}}` +`bat {{path/to/file}}` - Concatenate several files into the target file: @@ -18,9 +18,9 @@ - Number all output lines: -`bat -n {{file}}` +`bat --number {{path/to/file}}` -- Syntax highlight a json file: +- Syntax highlight a JSON file: `bat --language json {{file.json}}` diff --git a/pages/common/batch.md b/pages/common/batch.md index d424b3e4068faa..b3a81f310d52c2 100644 --- a/pages/common/batch.md +++ b/pages/common/batch.md @@ -2,7 +2,7 @@ > Execute commands at a later time when the system load levels permit. > Service atd (or atrun) should be running for the actual executions. -> More information: . +> More information: . - Execute commands from standard input (press `Ctrl + D` when done): diff --git a/pages/common/bazel.md b/pages/common/bazel.md new file mode 100644 index 00000000000000..193f937d52a512 --- /dev/null +++ b/pages/common/bazel.md @@ -0,0 +1,28 @@ +# bazel + +> Open-source build and test tool similar to Make, Maven, and Gradle. +> More information: . + +- Build the specified target in the workspace: + +`bazel build {{target}}` + +- Remove output files and stop the server if running: + +`bazel clean` + +- Stop the bazel server: + +`bazel shutdown` + +- Display runtime info about the bazel server: + +`bazel info` + +- Display help: + +`bazel help` + +- Display version: + +`bazel version` diff --git a/pages/common/bb.md b/pages/common/bb.md new file mode 100644 index 00000000000000..70503326ab3e93 --- /dev/null +++ b/pages/common/bb.md @@ -0,0 +1,20 @@ +# bb + +> Native Clojure interpreter for scripting. +> More information: . + +- [e]valuate an expression: + +`bb -e "(+ 1 2 3)"` + +- Evaluate a script [f]ile: + +`bb -f {{path/to/script.clj}}` + +- 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: + +`echo "{:key 'val}" | bb -I "(:key (first *input*))"` diff --git a/pages/common/bc.md b/pages/common/bc.md index 9a7f0915997a11..e6abc6992bc284 100644 --- a/pages/common/bc.md +++ b/pages/common/bc.md @@ -1,20 +1,29 @@ # bc > An arbitrary precision calculator language. -> More information: . +> See also: `dc`. +> More information: . -- Start `bc` in interactive mode using the standard math library: +- Start an interactive session: -`bc -l` +`bc` -- Calculate the result of an expression: +- Start an interactive session with the standard math library enabled: -`bc <<< "(1 + 2) * 2 ^ 2"` +`bc --mathlib` -- Calculate the result of an expression and force the number of decimal places to 10: +- Calculate an expression: -`bc <<< "scale=10; 5 / 3"` +`echo '{{5 / 3}}' | bc` -- Calculate the result of an expression with sine and cosine using `mathlib`: +- Execute a script: -`bc -l <<< "s(1) + c(1)"` +`bc {{path/to/script.bc}}` + +- Calculate an expression with the specified scale: + +`echo 'scale = {{10}}; {{5 / 3}}' | bc` + +- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`: + +`echo '{{s|c|a|l|e}}({{1}})' | bc --mathlib` diff --git a/pages/common/bcomps.md b/pages/common/bcomps.md new file mode 100644 index 00000000000000..32e604bb6e3f59 --- /dev/null +++ b/pages/common/bcomps.md @@ -0,0 +1,21 @@ +# bcomps + +> Decompose graphs into their biconnected components. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Decompose one or more graphs into their biconnected components: + +`bcomps {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Print the number of blocks and cutvertices in one or more graphs: + +`bcomps -v -s {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Write each block and block-cutvertex tree to multiple numbered filenames based on `output.gv`: + +`bcomps -x -o {{path/to/output.gv}} {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Display help for `bcomps`: + +`bcomps -?` diff --git a/pages/common/bedtools.md b/pages/common/bedtools.md index 2c455c9d24ef5f..1d5a0ff947eacd 100644 --- a/pages/common/bedtools.md +++ b/pages/common/bedtools.md @@ -2,9 +2,9 @@ > A swiss-army knife of tools for genomic-analysis tasks. > Used to intersect, group, convert and count data in BAM, BED, GFF/GTF, VCF format. -> More information: . +> More information: . -- Intersect two files with respect to the sequences' strand and save the result to {{`path/to/output_file`}}: +- Intersect two files regarding the sequences' strand and save the result to the specified file: `bedtools intersect -a {{path/to/file_1}} -b {{path/to/file_2}} -s > {{path/to/output_file}}` diff --git a/pages/common/behat.md b/pages/common/behat.md index 14d88b17e0f217..2613e06a258a7b 100644 --- a/pages/common/behat.md +++ b/pages/common/behat.md @@ -3,7 +3,7 @@ > A PHP framework for Behaviour-Driven Development. > More information: . -- Initialise a new Behat project: +- Initialize a new Behat project: `behat --init` diff --git a/pages/common/betty.md b/pages/common/betty.md index 4680736a6119d3..9cb5f22d8864db 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,9 +19,9 @@ `betty {{unzip}} {{archive.tar.gz}}` -- Extract an archive into a directory: +- Extract an archive into a specific directory: -`betty unarchive {{archive.tar.gz}} to {{directory}}` +`betty unarchive {{archive.tar.gz}} to {{path/to/directory}}` - Play Spotify: @@ -34,3 +30,7 @@ - Drive Betty to madness: `betty go crazy` + +- Display version: + +`betty version` diff --git a/pages/common/bfg.md b/pages/common/bfg.md new file mode 100644 index 00000000000000..e8cc722e7a8abe --- /dev/null +++ b/pages/common/bfg.md @@ -0,0 +1,13 @@ +# bfg + +> Remove large files or passwords from Git history like git-filter-branch. +> Note: if your repository is connected to a remote, you will need to force push to it. +> More information: . + +- Remove a file with sensitive data but leave the latest commit untouched: + +`bfg --delete-files {{file_with_sensitive_data}}` + +- Remove all text mentioned in the specified file wherever it can be found in the repository's history: + +`bfg --replace-text {{path/to/file.txt}}` diff --git a/pages/common/bindkey.md b/pages/common/bindkey.md new file mode 100644 index 00000000000000..ec79950dc1e3f7 --- /dev/null +++ b/pages/common/bindkey.md @@ -0,0 +1,20 @@ +# bindkey + +> Add keybindings to Z-Shell. +> More information: . + +- Bind a hotkey to a specific command: + +`bindkey "{{^k}}" {{kill-line}}` + +- Bind a hotkey to a specific key sequence: + +`bindkey -s '^o' 'cd ..\n'` + +- View keymaps: + +`bindkey -l` + +- View the hotkey in a keymap: + +`bindkey -M main` 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/bird.md b/pages/common/bird.md new file mode 100644 index 00000000000000..61d97ee58da796 --- /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 00000000000000..10fe38511b3986 --- /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 active 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/black.md b/pages/common/black.md index 17469017e50028..3135b79a4e3bb4 100644 --- a/pages/common/black.md +++ b/pages/common/black.md @@ -1,7 +1,7 @@ # black > A Python auto code formatter. -> More information: . +> More information: . - Auto-format a file or entire directory: @@ -9,16 +9,20 @@ - Format the code passed in as a string: -`black -c {{path/to/file_or_directory}}` +`black -c "{{code}}"` -- Output a diff for each file on stdout: +- Output whether a file or a directory would have changes made to them if they were to be formatted: -`black --diff {{path/to/file_or_directory}}` +`black --check {{path/to/file_or_directory}}` -- Return the status without writing the files back: +- Output changes that would be made to a file or a directory without performing them (dry-run): -`black --check {{path/to/file_or_directory}}` +`black --diff {{path/to/file_or_directory}}` -- Auto-format a file or directory emitting exclusively error messages to stderr: +- Auto-format a file or directory, emitting exclusively error messages to `stderr`: `black --quiet {{path/to/file_or_directory}}` + +- Auto-format a file or directory without replacing single quotes with double quotes (adoption helper, avoid using this for new projects): + +`black --skip-string-normalization {{path/to/file_or_directory}}` diff --git a/pages/common/blackfire.md b/pages/common/blackfire.md index 6ad612cc25a936..ae4d7df53c0ade 100644 --- a/pages/common/blackfire.md +++ b/pages/common/blackfire.md @@ -1,9 +1,9 @@ # blackfire -> A command line profiling tool for PHP. +> A command-line profiling tool for PHP. > More information: . -- Initialise and configure the Blackfire client: +- Initialize and configure the Blackfire client: `blackfire config` diff --git a/pages/common/blender.md b/pages/common/blender.md index f85186113d4537..0e27437f91f30a 100644 --- a/pages/common/blender.md +++ b/pages/common/blender.md @@ -2,32 +2,32 @@ > 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 -b {{filename}}.blend -a` +`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 -b {{filename}}.blend -o //{{render/frame_###.png}} -a` +`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 -b {{filename}}.blend -o {{/path/to/output_directory}} -f {{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 -b {{filename}}.blend -o //{{output_directory}} -F {{JPEG}} -f {{-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 -b {{filename}}.blend -S {{scene_name}} -s {{10}} -e {{500}} -a` +`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 -b {{filename}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' -a` +`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): -`blender -b --python-console` +`blender --background --python-console` diff --git a/pages/common/bootctl.md b/pages/common/bootctl.md index bbd146c2623878..ac674d8d1c4df7 100644 --- a/pages/common/bootctl.md +++ b/pages/common/bootctl.md @@ -1,7 +1,7 @@ # bootctl > Control EFI firmware boot settings and manage boot loader. -> More information: . +> More information: . - Show information about the system firmware and the bootloaders: diff --git a/pages/common/borg.md b/pages/common/borg.md index 48fc311a860997..b9829f78d680c0 100644 --- a/pages/common/borg.md +++ b/pages/common/borg.md @@ -4,7 +4,7 @@ > Creates local or remote backups that are mountable as filesystems. > More information: . -- Initialise a (local) repository: +- Initialize a (local) repository: `borg init {{path/to/repo_directory}}` diff --git a/pages/common/bosh.md b/pages/common/bosh.md index 945c1fea6782a7..135b48b776e96e 100644 --- a/pages/common/bosh.md +++ b/pages/common/bosh.md @@ -1,6 +1,6 @@ # bosh -> Command line tool to deploy and manage the bosh director. +> Command-line tool to deploy and manage the bosh director. > More information: . - Create local alias for director: @@ -11,7 +11,7 @@ `bosh environments` -- Login to the director: +- Log in to the director: `bosh login -e {{environment}} ` diff --git a/pages/common/bq.md b/pages/common/bq.md new file mode 100644 index 00000000000000..fe5cd602de3896 --- /dev/null +++ b/pages/common/bq.md @@ -0,0 +1,32 @@ +# bq + +> The bq command-line tool is a Python-based command-line tool for BigQuery. +> More information: . + +- Run query against a BigQuery table using standard SQL, add `--dry_run` flag to estimate the number of bytes read by the query: + +`bq query --nouse_legacy_sql 'SELECT COUNT(*) FROM {{DATASET_NAME}}.{{TABLE_NAME}}'` + +- Run a parameterized query: + +`bq query --use_legacy_sql=false --parameter='ts_value:TIMESTAMP:2016-12-07 08:00:00' 'SELECT TIMESTAMP_ADD(@ts_value, INTERVAL 1 HOUR)'` + +- Create a new dataset or table in the US location: + +`bq mk --location=US {{dataset_name}}.{{table_name}}` + +- List all datasets in a project: + +`bq ls --filter labels.{{key}}:{{value}} --max_results {{integer}} --format=prettyjson --project_id {{project_id}}` + +- Batch load data from a specific file in formats such as CSV, JSON, Parquet, and Avro to a table: + +`bq load --location={{location}} --source_format={{CSV|JSON|PARQUET|AVRO}} {{dataset}}.{{table}} {{path_to_source}}` + +- Copy one table to another: + +`bq cp {{dataset}}.{{OLD_TABLE}} {{dataset}}.{{new_table}}` + +- Print help: + +`bq help` diff --git a/pages/osx/brew-bundle.md b/pages/common/brew-bundle.md similarity index 100% rename from pages/osx/brew-bundle.md rename to pages/common/brew-bundle.md diff --git a/pages/common/brew-cask.md b/pages/common/brew-cask.md new file mode 100644 index 00000000000000..ad1ed223bb28ed --- /dev/null +++ b/pages/common/brew-cask.md @@ -0,0 +1,37 @@ +# brew --cask + +> CLI workflow for the administration of macOS applications distributed as binaries. +> This command was previously called `brew cask`, it has been deprecated in favor of the `brew --cask` flag. +> More information: . + +- Search for formulas and casks: + +`brew search {{text}}` + +- Install a cask: + +`brew install --cask {{cask_name}}` + +- List all installed casks: + +`brew list --cask` + +- List installed casks that have newer versions available: + +`brew outdated --cask` + +- Upgrade an installed cask (if no cask name is given, all installed casks are upgraded): + +`brew upgrade --cask {{cask_name}}` + +- Uninstall a cask: + +`brew uninstall --cask {{cask_name}}` + +- Uninstall a cask and remove related settings and files: + +`brew zap --cask {{cask_name}}` + +- Display information about a given cask: + +`brew info --cask {{cask_name}}` diff --git a/pages/common/brittany.md b/pages/common/brittany.md new file mode 100644 index 00000000000000..e6d64902582ed8 --- /dev/null +++ b/pages/common/brittany.md @@ -0,0 +1,24 @@ +# brittany + +> Pretty-print Haskell source files. +> More information: . + +- Format a Haskell source file and print the result to `stdout`: + +`brittany {{path/to/file.hs}}` + +- Format all Haskell source files in the current directory in-place: + +`brittany --write-mode=inplace {{*.hs}}` + +- Check whether a Haskell source file needs changes and indicate the result through the programme's exit code: + +`brittany --check-mode {{path/to/file.hs}}` + +- Format a Haskell source file using the specified amount of spaces per indentation level and line length: + +`brittany --indent {{4}} --columns {{100}} {{path/to/file.hs}}` + +- Format a Haskell source file according to the style defined in the specified config file: + +`brittany --config-file {{path/to/config.yaml}} {{path/to/file.hs}}` diff --git a/pages/common/brotli.md b/pages/common/brotli.md index 7edada2bd534b9..84b26e3686c2ba 100644 --- a/pages/common/brotli.md +++ b/pages/common/brotli.md @@ -1,24 +1,24 @@ -# Brotli +# brotli -> Compress/uncompress files with brotli compression. +> Compress/uncompress files with Brotli compression. > More information: . - 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: +- 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 cd3bcff0499e63..2b45d057aaa18c 100644 --- a/pages/common/browser-sync.md +++ b/pages/common/browser-sync.md @@ -7,7 +7,7 @@ `browser-sync start --server {{path/to/directory}} --files {{path/to/directory}}` -- Start a server from local directory, watching all css files in some directory: +- Start a server from local directory, watching all CSS files in a directory: `browser-sync start --server --files '{{path/to/directory/*.css}}'` diff --git a/pages/common/btm.md b/pages/common/btm.md index 43d13b8faa604c..a34ab0500e3625 100644 --- a/pages/common/btm.md +++ b/pages/common/btm.md @@ -4,7 +4,7 @@ > Aims to be lightweight, cross-platform and more graphical than `top`. > More information: . -- Show the default layout (cpu, memory, temperatures, disk, network, and processes): +- Show the default layout (CPU, memory, temperatures, disk, network, and processes): `btm` diff --git a/pages/common/bundler.md b/pages/common/bundler.md new file mode 100644 index 00000000000000..1f31e0f611971a --- /dev/null +++ b/pages/common/bundler.md @@ -0,0 +1,9 @@ +# bundler + +> Dependency manager for the Ruby programming language. +> `bundler` is a common name for the command `bundle`, but not a command itself. +> More information: . + +- View documentation for the original command: + +`tldr bundle` diff --git a/pages/common/bundletool.md b/pages/common/bundletool.md index 9ff8bce98ea4c4..52f3e978480f18 100644 --- a/pages/common/bundletool.md +++ b/pages/common/bundletool.md @@ -1,6 +1,7 @@ # bundletool > Command-line tool to manipulate Android Application Bundles. +> Some subcommands such as `bundletool validate` have their own usage documentation. > More information: . - Display help for a subcommand: diff --git a/pages/common/buzzphrase.md b/pages/common/buzzphrase.md index fe570b62cfb27d..dc96c30744da6d 100644 --- a/pages/common/buzzphrase.md +++ b/pages/common/buzzphrase.md @@ -1,6 +1,6 @@ # buzzphrase -> Node.js command line tool to output a random buzzphrase. +> Node.js command-line tool to output a random buzzphrase. > More information: . - Generate a string of three random phrases containing an adjective, a past tense verb and a plural noun: diff --git a/pages/common/bzegrep.md b/pages/common/bzegrep.md new file mode 100644 index 00000000000000..52d0659f379a39 --- /dev/null +++ b/pages/common/bzegrep.md @@ -0,0 +1,28 @@ +# bzegrep + +> Find extended regular expression patterns in bzip2 compressed files using egrep. +> More information: . + +- Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-sensitive): + +`bzegrep "{{search_pattern}}" {{path/to/file}}` + +- Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-insensitive): + +`bzegrep --ignore-case "{{search_pattern}}" {{path/to/file}}` + +- Search for lines that do not match a pattern: + +`bzegrep --invert-match "{{search_pattern}}" {{path/to/file}}` + +- Print file name and line number for each match: + +`bzegrep --with-filename --line-number "{{search_pattern}}" {{path/to/file}}` + +- Search for lines matching a pattern, printing only the matched text: + +`bzegrep --only-matching "{{search_pattern}}" {{path/to/file}}` + +- Recursively search files in a bzip2 compressed tar archive for a pattern: + +`bzegrep --recursive "{{search_pattern}}" {{path/to/file}}` diff --git a/pages/common/bzfgrep.md b/pages/common/bzfgrep.md new file mode 100644 index 00000000000000..d28e990c7c1bf3 --- /dev/null +++ b/pages/common/bzfgrep.md @@ -0,0 +1,28 @@ +# bzfgrep + +> Find any fixed strings separated by new lines in bzip2 compressed files using fgrep. +> More information: . + +- Search for lines matching the list of search strings separated by new lines in a compressed file (case-sensitive): + +`bzfgrep "{{search_string}}" {{path/to/file}}` + +- Search for lines matching the list of search strings separated by new lines in a compressed file (case-insensitive): + +`bzfgrep --ignore-case "{{search_string}}" {{path/to/file}}` + +- Search for lines that do not match the list of search strings separated by new lines in a compressed file: + +`bzfgrep --invert-match "{{search_string}}" {{path/to/file}}` + +- Print file name and line number for each match: + +`bzfgrep --with-filename --line-number "{{search_string}}" {{path/to/file}}` + +- Search for lines matching a pattern, printing only the matched text: + +`bzfgrep --only-matching "{{search_string}}" {{path/to/file}}` + +- Recursively search files in a bzip2 compressed tar archive for the given list of strings: + +`bzfgrep --recursive "{{search_string}}" {{path/to/file}}` diff --git a/pages/common/bzgrep.md b/pages/common/bzgrep.md new file mode 100644 index 00000000000000..3ad7ab7f10813c --- /dev/null +++ b/pages/common/bzgrep.md @@ -0,0 +1,32 @@ +# bzgrep + +> Find patterns in bzip2 compressed files using grep. +> More information: . + +- Search for a pattern within a compressed file: + +`bzgrep "{{search_pattern}}" {{path/to/file}}` + +- Use extended regular expressions (supports `?`, `+`, `{}`, `()` and `|`), in case-insensitive mode: + +`bzgrep --extended-regexp --ignore-case "{{search_pattern}}" {{path/to/file}}` + +- Print 3 lines of context around, before, or after each match: + +`bzgrep --{{context|before-context|after-context}}={{3}} "{{search_pattern}}" {{path/to/file}}` + +- Print file name and line number for each match: + +`bzgrep --with-filename --line-number "{{search_pattern}}" {{path/to/file}}` + +- Search for lines matching a pattern, printing only the matched text: + +`bzgrep --only-matching "{{search_pattern}}" {{path/to/file}}` + +- Recursively search files in a bzip2 compressed tar archive for a pattern: + +`bzgrep --recursive "{{search_pattern}}" {{path/to/tar/file}}` + +- Search `stdin` for lines that do not match a pattern: + +`cat {{/path/to/bz/compressed/file}} | bzgrep --invert-match "{{search_pattern}}"` diff --git a/pages/common/bzip2.md b/pages/common/bzip2.md index cd07a3c72da439..f9d4eb28b8b6f3 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: @@ -14,3 +14,19 @@ - Decompress a file to standard output: `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/cabal.md b/pages/common/cabal.md index cdce2c21489a47..8c018aea844aea 100644 --- a/pages/common/cabal.md +++ b/pages/common/cabal.md @@ -1,6 +1,6 @@ # cabal -> Command line interface to the Haskell package infrastructure (Cabal). +> Command-line interface to the Haskell package infrastructure (Cabal). > Manage Haskell projects and Cabal packages from the Hackage package repository. > More information: . diff --git a/pages/common/caddy.md b/pages/common/caddy.md new file mode 100644 index 00000000000000..776f77d7c13130 --- /dev/null +++ b/pages/common/caddy.md @@ -0,0 +1,28 @@ +# caddy + +> An enterprise-ready open source web server with automatic HTTPS, written in Go. +> More information: . + +- Start Caddy in the foreground: + +`caddy run` + +- Start Caddy with the specified Caddyfile: + +`caddy run --config {{path/to/Caddyfile}}` + +- Start Caddy in the background: + +`caddy start` + +- Stop a background Caddy process: + +`caddy stop` + +- Run a simple file server on the specified port with a browsable interface: + +`caddy file-server --listen :{{8000}} --browse` + +- Run a reverse proxy server: + +`caddy reverse-proxy --from :{{80}} --to localhost:{{8000}}` diff --git a/pages/common/cake.md b/pages/common/cake.md index e135c993845a3c..b95a9f63066f2b 100644 --- a/pages/common/cake.md +++ b/pages/common/cake.md @@ -1,6 +1,6 @@ # cake -> The command line processor for the CakePHP framework. +> The command-line processor for the CakePHP framework. > More information: . - Display basic information about the current app and available commands: @@ -31,6 +31,6 @@ `cake server` -- Start a REPL interactive shell instance: +- Start a REPL (interactive shell): `cake console` diff --git a/pages/common/calc.md b/pages/common/calc.md new file mode 100644 index 00000000000000..49f327b33d0c71 --- /dev/null +++ b/pages/common/calc.md @@ -0,0 +1,36 @@ +# calc + +> An interactive arbitrary-precision calculator in the terminal. +> More information: . + +- Start `calc` in interactive mode: + +`calc` + +- Perform a calculation in non-interactive mode: + +`calc '{{85 * (36 / 4)}}'` + +- Perform a calculation without any output formatting (for use with pipes): + +`calc -p '{{4/3 * pi() * 5^3}}'` + +- Perform a calculation and then switch to [i]nteractive mode: + +`calc -i '{{sqrt(2)}}'` + +- Start `calc` in a specific permission [m]ode (0 to 7, defaults to 7): + +`calc -m {{mode}}` + +- View an introduction to `calc`: + +`calc help intro` + +- View an overview of `calc`: + +`calc help overview` + +- Open the `calc` manual: + +`calc help` diff --git a/pages/common/calibre-server.md b/pages/common/calibre-server.md index 6fa458927aad7a..f0f0b94159142d 100644 --- a/pages/common/calibre-server.md +++ b/pages/common/calibre-server.md @@ -1,11 +1,10 @@ # calibre-server -> A server application that can be used to distribute ebooks over a network. -> Ebooks must be imported into the library using the GUI or calibredb before. -> Part of the Calibre ebook library. +> A server application that can be used to distribute e-books over a network. +> Note: e-books must already be imported into the library using the GUI or the `calibredb` CLI. > More information: . -- Start a server to distribute ebooks. Access at http://localhost:8080: +- Start a server to distribute e-books. Access at http://localhost:8080: `calibre-server` diff --git a/pages/common/calibredb.md b/pages/common/calibredb.md index 5528a65542443b..91c000fb5bb2a3 100644 --- a/pages/common/calibredb.md +++ b/pages/common/calibredb.md @@ -1,29 +1,29 @@ # calibredb -> Tool to manipulate the your ebook database. -> Part of the Calibre ebook library. +> Tool to manipulate the your e-book database. +> Part of the Calibre e-book library. > More information: . -- List ebooks in the library with additional information: +- List e-books in the library with additional information: `calibredb list` -- Search for ebooks displaying additional information: +- Search for e-books displaying additional information: `calibredb list --search {{search_term}}` -- Search for just ids of ebooks: +- Search for just ids of e-books: `calibredb search {{search_term}}` -- Add one or more ebooks to the library: +- Add one or more e-books to the library: `calibredb add {{file1 file2 …}}` -- Recursively add all ebooks under a directory to the library: +- Recursively add all e-books under a directory to the library: `calibredb add -r {{path/to/directory}}` -- Remove one or more ebooks from the library. You need ebook-ids (see above): +- Remove one or more e-books from the library. You need the e-book IDs (see above): `calibredb remove {{id1 id2 …}}` diff --git a/pages/common/calligraflow.md b/pages/common/calligraflow.md new file mode 100644 index 00000000000000..8acfeed5d1f413 --- /dev/null +++ b/pages/common/calligraflow.md @@ -0,0 +1,17 @@ +# calligraflow + +> Calligra's flowchart and diagram application. +> See also: `calligrastage`, `calligrawords`, `calligrasheets`. +> More information: . + +- Launch the flowchart and diagram application: + +`calligraflow` + +- Open a specific file: + +`calligraflow {{path/to/file}}` + +- Display help or version: + +`calligraflow --{{help|version}}` diff --git a/pages/common/calligrasheets.md b/pages/common/calligrasheets.md new file mode 100644 index 00000000000000..52ca7b795ba135 --- /dev/null +++ b/pages/common/calligrasheets.md @@ -0,0 +1,17 @@ +# calligrasheets + +> Calligra's spreadsheet application. +> See also: `calligraflow`, `calligrastage`, `calligrawords`. +> More information: . + +- Launch the spreadsheet application: + +`calligrasheets` + +- Open a specific spreadsheet: + +`calligrasheets {{path/to/spreadsheet}}` + +- Display help or version: + +`calligrasheets --{{help|version}}` diff --git a/pages/common/calligrastage.md b/pages/common/calligrastage.md new file mode 100644 index 00000000000000..caf8007d47f4bd --- /dev/null +++ b/pages/common/calligrastage.md @@ -0,0 +1,17 @@ +# calligrastage + +> Calligra's presentation application. +> See also: `calligraflow`, `calligrawords`, `calligrasheets`. +> More information: . + +- Launch the presentation application: + +`calligrastage` + +- Open a specific presentation: + +`calligrastage {{path/to/presentation}}` + +- Display help or version: + +`calligrastage --{{help|version}}` diff --git a/pages/common/calligrawords.md b/pages/common/calligrawords.md new file mode 100644 index 00000000000000..36c7339c0f1b9c --- /dev/null +++ b/pages/common/calligrawords.md @@ -0,0 +1,17 @@ +# calligrawords + +> Calligra's word processor application. +> See also: `calligraflow`, `calligrastage`, `calligrasheets`. +> More information: . + +- Launch the word processor application: + +`calligrawords` + +- Open a specific document: + +`calligrawords {{path/to/document}}` + +- Display help or version: + +`calligrawords --{{help|version}}` diff --git a/pages/common/carbon-now.md b/pages/common/carbon-now.md index a275e65b48939b..68e9a398e09243 100644 --- a/pages/common/carbon-now.md +++ b/pages/common/carbon-now.md @@ -5,7 +5,7 @@ - Create an image from a file using default settings: -`carbon-now {{file}}` +`carbon-now {{path/to/file}}` - Create an image from a text in clipboard using default settings: @@ -17,20 +17,20 @@ - Create images interactively for custom settings and optionally save a preset: -`carbon-now -i {{file}}` +`carbon-now -i {{path/to/file}}` - Create images from previously saved preset: -`carbon-now -p {{preset}} {{file}}` +`carbon-now -p {{preset}} {{path/to/file}}` - Start at a specified line of text: -`carbon-now -s {{line}} {{file}}` +`carbon-now -s {{line}} {{path/to/file}}` - End at a specific line of text: -`carbon-now -e {{line}} {{file}}` +`carbon-now -e {{line}} {{path/to/file}}` - Open image in a browser instead of saving: -`carbon-now --open {{file}}` +`carbon-now --open {{path/to/file}}` diff --git a/pages/common/cargo-add.md b/pages/common/cargo-add.md new file mode 100644 index 00000000000000..021d0654a4f410 --- /dev/null +++ b/pages/common/cargo-add.md @@ -0,0 +1,32 @@ +# cargo add + +> Add dependencies to a Rust project's `Cargo.toml` file. +> More information: . + +- Add the latest version of a dependency to the current project: + +`cargo add {{dependency}}` + +- Add a specific version of a dependency: + +`cargo add {{dependency}}@{{version}}` + +- Add a dependency and enable one or more specific features: + +`cargo add {{dependency}} --features {{feature_1}},{{feature_2}}` + +- Add an optional dependency, which then gets exposed as a feature of the crate: + +`cargo add {{dependency}} --optional` + +- Add a local crate as a dependency: + +`cargo add --path {{path/to/crate}}` + +- Add a development or build dependency: + +`cargo add {{dependency}} --{{dev|build}}` + +- Add a dependency with all default features disabled: + +`cargo add {{dependency}} --no-default-features` diff --git a/pages/common/cargo-clippy.md b/pages/common/cargo-clippy.md index c37b0f6a9070f4..ca361ed62cc6b6 100644 --- a/pages/common/cargo-clippy.md +++ b/pages/common/cargo-clippy.md @@ -21,12 +21,12 @@ - Treat warnings as errors: -`RUSTFLAGS="-Dwarnings" cargo clippy -- -D warnings` +`cargo clippy -- --deny warnings` - Run checks and ignore warnings: -`cargo clippy -- -A warnings` +`cargo clippy -- --allow warnings` -- Apply Clippy suggestion automatically (experimental and only supported on the nightly channel): +- Apply Clippy suggestions automatically: -`cargo clippy --fix -Z unstable-options` +`cargo clippy --fix` diff --git a/pages/common/cargo-test.md b/pages/common/cargo-test.md index 813237e31579f6..3b6c3222f638df 100644 --- a/pages/common/cargo-test.md +++ b/pages/common/cargo-test.md @@ -26,3 +26,7 @@ - Run tests for a package: `cargo test --package {{package}}` + +- Run tests without hiding output from test executions: + +`cargo test -- --nocapture` diff --git a/pages/common/cargo.md b/pages/common/cargo.md index e06dde8041f7d5..a997c1baf731c8 100644 --- a/pages/common/cargo.md +++ b/pages/common/cargo.md @@ -1,8 +1,8 @@ # cargo -> Rust package manager. > Manage Rust projects and their module dependencies (crates). -> More information: . +> Some subcommands such as `cargo build` have their own usage documentation. +> More information: . - Search for crates: @@ -28,6 +28,10 @@ `cargo build` +- Build the rust project in the current directory using the nightly compiler: + +`cargo +nightly build` + - Build using a specific number of threads (default is the number of CPU cores): -`cargo build -j {{jobs}}` +`cargo build --jobs {{number_of_threads}}` diff --git a/pages/common/carp.md b/pages/common/carp.md new file mode 100644 index 00000000000000..d20cf42c5d8f1a --- /dev/null +++ b/pages/common/carp.md @@ -0,0 +1,28 @@ +# carp + +> REPL and build tool for Carp. +> More information: . + +- Start a REPL (interactive shell): + +`carp` + +- Start a REPL with a custom prompt: + +`carp --prompt "{{> }}"` + +- Build a `carp` file: + +`carp -b {{path/to/file.carp}}` + +- Build and run a file: + +`carp -x {{path/to/file.carp}}` + +- Build a file with optimizations enabled: + +`carp -b --optimize {{path/to/file.carp}}` + +- Transpile a file to C code: + +`carp --generate-only {{path/to/file.carp}}` diff --git a/pages/common/cat.md b/pages/common/cat.md index 7a1ca1191b6543..a60d4175bce5fb 100644 --- a/pages/common/cat.md +++ b/pages/common/cat.md @@ -5,20 +5,20 @@ - Print the contents of a file to the standard output: -`cat {{file}}` +`cat {{path/to/file}}` -- Concatenate several files into the target file: +- Concatenate several files into an output file: -`cat {{file1}} {{file2}} > {{target_file}}` +`cat {{path/to/file1 path/to/file2 ...}} > {{path/to/output_file}}` -- Append several files into the target file: +- Append several files to an output file: -`cat {{file1}} {{file2}} >> {{target_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 {{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 {{file}}` +`cat - > {{path/to/file}}` diff --git a/pages/common/catimg.md b/pages/common/catimg.md new file mode 100644 index 00000000000000..0b9261a698b35e --- /dev/null +++ b/pages/common/catimg.md @@ -0,0 +1,21 @@ +# catimg + +> Image printing in the terminal. +> See also: `pixterm`, `chafa`. +> More information: . + +- Print a JPEG, PNG, or GIF to the terminal: + +`catimg {{path/to/file}}` + +- Double the [r]esolution of an image: + +`catimg -r 2 {{path/to/file}}` + +- Disable 24-bit color for better [t]erminal support: + +`catimg -t {{path/to/file}}` + +- Specify a custom [w]idth or [H]eight: + +`catimg {{-w|-H}} {{40}} {{path/to/file}}` diff --git a/pages/common/cbonsai.md b/pages/common/cbonsai.md new file mode 100644 index 00000000000000..55c3745fa5cc54 --- /dev/null +++ b/pages/common/cbonsai.md @@ -0,0 +1,24 @@ +# cbonsai + +> Cbonsai is a beautifully random bonsai tree CLI generator. +> More information: . + +- Generate a bonsai in live mode: + +`cbonsai -l` + +- Generate a bonsai in infinite mode: + +`cbonsai -i` + +- Append a message to the bonsai: + +`cbonsai -m "{{message}}"` + +- Display extra information about the bonsai: + +`cbonsai -v` + +- Display cbonsai help: + +`cbonsai -h` diff --git a/pages/common/cbt.md b/pages/common/cbt.md new file mode 100644 index 00000000000000..2ddd2efec7bd41 --- /dev/null +++ b/pages/common/cbt.md @@ -0,0 +1,28 @@ +# cbt + +> Utility for reading data from Google Cloud's Bigtable. +> More information: . + +- List tables in the current project: + +`cbt ls` + +- Print count of rows in a specific table in the current project: + +`cbt count "{{table_name}}"` + +- Display a single row from a specific table with only 1 (most recent) cell revision per column in the current project: + +`cbt lookup "{{table_name}}" "{{row_key}}" cells-per-column={{1}}` + +- Display a single row with only specific column(s) (omit qualifier to return entire family) in the current project: + +`cbt lookup "{{table_name}}" "{{row_key}}" columns="{{family1:qualifier1,family2:qualifier2,...}}"` + +- Search up to 5 rows in the current project by a specific regex pattern and print them: + +`cbt read "{{table_name}}" regex="{{row_key_pattern}}" count={{5}}` + +- Read a specific range of rows and print only returned row keys in the current project: + +`cbt read {{table_name}} start={{start_row_key}} end={{end_row_key}} keys-only=true` diff --git a/pages/common/ccomps.md b/pages/common/ccomps.md new file mode 100644 index 00000000000000..dc3f566637efd8 --- /dev/null +++ b/pages/common/ccomps.md @@ -0,0 +1,21 @@ +# ccomps + +> Decompose graphs into their connected components. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Decompose one or more graphs into their connected components: + +`ccomps {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Print the number of nodes, edges, and connected components in one or more graphs: + +`ccomps -v -s {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Write each connected component to numbered filenames based on `output.gv`: + +`ccomps -x -o {{path/to/output.gv}} {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Display help for `ccomps`: + +`ccomps -?` diff --git a/pages/common/cd.md b/pages/common/cd.md index 645733df582707..16a0894e486956 100644 --- a/pages/common/cd.md +++ b/pages/common/cd.md @@ -1,20 +1,28 @@ # cd > Change the current working directory. -> More information: . +> More information: . -- Go to the given directory: +- Go to the specified directory: `cd {{path/to/directory}}` -- Go to home directory of current user: +- Go up to the parent of the current directory: + +`cd ..` + +- Go to the home directory of the current user: `cd` -- Go up to the parent of the current directory: +- Go to the home directory of the specified user: -`cd ..` +`cd ~{{username}}` - Go to the previously chosen directory: `cd -` + +- Go to the root directory: + +`cd /` diff --git a/pages/common/cdk.md b/pages/common/cdk.md index 64790c387f331d..a8b7678ea5f108 100644 --- a/pages/common/cdk.md +++ b/pages/common/cdk.md @@ -29,4 +29,4 @@ - Open the CDK API reference in your browser: -`cdk doc` +`cdk docs` diff --git a/pages/common/certutil.md b/pages/common/certutil.md new file mode 100644 index 00000000000000..903a0aa862b43a --- /dev/null +++ b/pages/common/certutil.md @@ -0,0 +1,24 @@ +# certutil + +> Manage keys and certificates in both NSS databases and other NSS tokens. +> More information: . + +- Create a new certificate database: + +`certutil -N -d .` + +- List all certificates in a database: + +`certutil -L -d .` + +- List all private keys in a database: + +`certutil -K -d . -f {{path/to/password_file.txt}}` + +- Import the signed certificate into the requesters database: + +`certutil -A -n "{{server_certificate}}" -t ",," -i {{path/to/file.crt}} -d .` + +- Add subject alternative names to a given certificate: + +`certutil -S -f {{path/to/password_file.txt}} -d . -t ",," -c "{{server_certificate}}" -n "{{server_name}}" -g {{2048}} -s "CN={{common_name}},O={{organization}}"` diff --git a/pages/common/cf.md b/pages/common/cf.md index e2395732a9ec42..dff760d4c0363f 100644 --- a/pages/common/cf.md +++ b/pages/common/cf.md @@ -1,8 +1,12 @@ # cf -> Command line tool to manage apps and services on Cloud Foundry. +> Command-line tool to manage apps and services on Cloud Foundry. > More information: . +- Log in to the Cloud Foundry API: + +`cf login -a {{api_url}}` + - Push an app using the default settings: `cf push {{app_name}}` diff --git a/pages/common/chafa.md b/pages/common/chafa.md new file mode 100644 index 00000000000000..3721792ac18ce1 --- /dev/null +++ b/pages/common/chafa.md @@ -0,0 +1,25 @@ +# chafa + +> Image printing in the terminal. +> See also: `catimg`, `pixterm`. +> More information: . + +- Render an image directly in the terminal: + +`chafa {{path/to/file}}` + +- Render an image with 24-bit [c]olor: + +`chafa -c full {{path/to/file}}` + +- Improve image rendering with small color palettes using dithering: + +`chafa -c 16 --dither ordered {{path/to/file}}` + +- Render an image, making it appear pixelated: + +`chafa --symbols vhalf {{path/to/file}}` + +- Render a monochrome image with only braille characters: + +`chafa -c none --symbols braille {{path/to/file}}` diff --git a/pages/common/charm.md b/pages/common/charm.md new file mode 100644 index 00000000000000..9cc074fd0001ca --- /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/chmod.md b/pages/common/chmod.md index f14e2b72f32aa4..e80ca9fb30cb43 100644 --- a/pages/common/chmod.md +++ b/pages/common/chmod.md @@ -5,28 +5,32 @@ - Give the [u]ser who owns a file the right to e[x]ecute it: -`chmod u+x {{file}}` +`chmod u+x {{path/to/file}}` - Give the [u]ser rights to [r]ead and [w]rite to a file/directory: -`chmod u+rw {{file_or_directory}}` +`chmod u+rw {{path/to/file_or_directory}}` - Remove e[x]ecutable rights from the [g]roup: -`chmod g-x {{file}}` +`chmod g-x {{path/to/file}}` - Give [a]ll users rights to [r]ead and e[x]ecute: -`chmod a+rx {{file}}` +`chmod a+rx {{path/to/file}}` - Give [o]thers (not in the file owner's group) the same rights as the [g]roup: -`chmod o=g {{file}}` +`chmod o=g {{path/to/file}}` - Remove all rights from [o]thers: -`chmod o= {{file}}` +`chmod o= {{path/to/file}}` - Change permissions recursively giving [g]roup and [o]thers the ability to [w]rite: -`chmod -R g+w,o+w {{directory}}` +`chmod -R g+w,o+w {{path/to/directory}}` + +- Recursively give [a]ll users [r]ead permissions to files and e[X]ecute permissions to sub-directories within a directory: + +`chmod -R a+rX {{path/to/directory}}` diff --git a/pages/common/choose.md b/pages/common/choose.md new file mode 100644 index 00000000000000..67d27e9181c6af --- /dev/null +++ b/pages/common/choose.md @@ -0,0 +1,36 @@ +# choose + +> A human-friendly and fast alternative to cut and (sometimes) awk. +> More information: . + +- Print the 5th item from a line (starting from 0): + +`choose {{4}}` + +- Print the first, 3rd, and 5th item from a line, where items are separated by ':' instead of whitespace: + +`choose --field-separator '{{:}}' {{0}} {{2}} {{4}}` + +- Print everything from the 2nd to 5th item on the line, including the 5th: + +`choose {{1}}:{{4}}` + +- Print everything from the 2nd to 5th item on the line, excluding the 5th: + +`choose --exclusive {{1}}:{{4}}` + +- Print the beginning of the line to the 3rd item: + +`choose :{{2}}` + +- Print all items from the beginning of the line until the 3rd item (exclusive): + +`choose --exclusive :{{2}}` + +- Print all items from the 3rd to the end of the line: + +`choose {{2}}:` + +- Print the last item from a line: + +`choose {{-1}}` diff --git a/pages/common/chroma.md b/pages/common/chroma.md index 827eb11b8a88b5..30fab87adb39c5 100644 --- a/pages/common/chroma.md +++ b/pages/common/chroma.md @@ -7,10 +7,10 @@ `chroma --lexer="{{python}}" {{source_file}}` -- Highlight a source file with Go lexer and output to a HTML file: +- Highlight a source file with the Go lexer and output to an HTML file: `chroma --lexer="{{go}}" --formatter="{{html}}" {{source_file}} > {{html_file}}` -- Highlight a source file with C++ lexer and output to an SVG image, using the Monokai style: +- Highlight a source file with the C++ lexer and output to an SVG, using the Monokai style: `chroma --lexer="{{c++}}" --formatter="{{svg}}" --syle="{{monokai}}" {{source_file}} > {{svg_file}}` diff --git a/pages/common/chromium.md b/pages/common/chromium.md index 7647337d1f8e6f..73c7a96c23efb6 100644 --- a/pages/common/chromium.md +++ b/pages/common/chromium.md @@ -1,15 +1,11 @@ # chromium -> Open-source web browser from Google. -> More information: . +> Open-source web browser principally developed and maintained by Google. +> More information: . -- Open a file: +- Open a specific URL or file: -`chromium {{path/to/file.html}}` - -- Open an URL: - -`chromium {{example.com}}` +`chromium {{https://example.com|path/to/file.html}}` - Open in incognito mode: @@ -19,10 +15,22 @@ `chromium --new-window {{example.com}}` -- Open in app mode (without toolbars, URL bar, buttons, etc.): +- Open in application mode (without toolbars, URL bar, buttons, etc.): -`chromium --app='{{https://example.com}}'` +`chromium --app={{https://example.com}}` - Use a proxy server: `chromium --proxy-server="{{socks5://hostname:66}}" {{example.com}}` + +- Open with a custom profile directory: + +`chromium --user-data-dir={{path/to/directory}}` + +- Open without CORS validation (useful to test an API): + +`chromium --user-data-dir={{path/to/directory}} --disable-web-security` + +- Open with a DevTools window for each tab opened: + +`chromium --auto-open-devtools-for-tabs` diff --git a/pages/common/chsh.md b/pages/common/chsh.md index 34e794cd39fad2..36a6bc9a41f67d 100644 --- a/pages/common/chsh.md +++ b/pages/common/chsh.md @@ -1,8 +1,20 @@ # chsh -> Change the user's login shell. +> Change user's login shell. > More information: . -- Change the user's login shell: +- Set a specific login shell for the current user interactively: -`chsh -s {{path/to/shell_binary}} {{username}}` +`chsh` + +- Set a specific login [s]hell for the current user: + +`chsh -s {{path/to/shell}}` + +- Set a login [s]hell for a specific user: + +`chsh -s {{path/to/shell}} {{username}}` + +- [l]ist available shells: + +`chsh -l` diff --git a/pages/common/circo.md b/pages/common/circo.md new file mode 100644 index 00000000000000..19ec88dbf901e2 --- /dev/null +++ b/pages/common/circo.md @@ -0,0 +1,25 @@ +# circo + +> Render an image of a `circular` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`circo -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`circo -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`circo -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | circo -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`circo -?` diff --git a/pages/common/circup.md b/pages/common/circup.md new file mode 100644 index 00000000000000..2dd807a0e7b6c5 --- /dev/null +++ b/pages/common/circup.md @@ -0,0 +1,24 @@ +# circup + +> The CircuitPython library updater. +> More information: . + +- Interactively update modules on a device: + +`circup update` + +- Install a new library: + +`circup install {{library_name}}` + +- Search for a library: + +`circup show {{partial_name}}` + +- List all libraries on a connected device in `requirements.txt` format: + +`circup freeze` + +- Save all libraries on a connected device in the current directory: + +`circup freeze -r` diff --git a/pages/common/cksum.md b/pages/common/cksum.md index 81b2ed37734351..e328b46c29376d 100644 --- a/pages/common/cksum.md +++ b/pages/common/cksum.md @@ -4,6 +4,6 @@ > Note, on old UNIX systems the CRC implementation may differ. > More information: . -- Display a 32 bit checksum, size in bytes and filename: +- Display a 32-bit checksum, size in bytes and filename: -`cksum {{filename}}` +`cksum {{path/to/file}}` diff --git a/pages/common/clamav.md b/pages/common/clamav.md new file mode 100644 index 00000000000000..c71256af3cc32d --- /dev/null +++ b/pages/common/clamav.md @@ -0,0 +1,17 @@ +# ClamAV + +> Open-source anti-virus program. +> ClamAV isn't a command, but a set of commands. +> More information: . + +- Show the tldr page for scan files using the `clamd` daemon: + +`tldr clamdscan` + +- Show the tldr page for scan files without the `clamd` daemon running: + +`tldr clamscan` + +- Show the tldr page for update the virus definitions: + +`tldr freshclam` diff --git a/pages/common/clamdscan.md b/pages/common/clamdscan.md new file mode 100644 index 00000000000000..74e8221dd0b163 --- /dev/null +++ b/pages/common/clamdscan.md @@ -0,0 +1,36 @@ +# clamdscan + +> A command-line virus scanner using the ClamAV Daemon. +> More information: . + +- Scan a file or directory for vulnerabilities: + +`clamdscan {{path/to/file_or_directory}}` + +- Scan data from `stdin`: + +`{{command}} | clamdscan -` + +- Scan the current directory and output only infected files: + +`clamdscan --infected` + +- Output the scan report to a log file: + +`clamdscan --log {{path/to/log_file}}` + +- Move infected files to a specific directory: + +`clamdscan --move {{path/to/quarantine_directory}}` + +- Remove infected files: + +`clamdscan --remove` + +- Use multiple threads to scan a directory: + +`clamdscan --multiscan` + +- Pass the file descriptor instead of streaming the file to the daemon: + +`clamdscan --fdpass` diff --git a/pages/common/clamscan.md b/pages/common/clamscan.md index e33daa4630ee61..d4e8f3fac4dd31 100644 --- a/pages/common/clamscan.md +++ b/pages/common/clamscan.md @@ -1,6 +1,6 @@ # clamscan -> A command line virus scanner. +> A command-line virus scanner. > More information: . - Scan a file for vulnerabilities: @@ -11,7 +11,7 @@ `clamscan -r {{path/to/directory}}` -- Scan data from stdin: +- Scan data from `stdin`: `{{command}} | clamscan -` diff --git a/pages/common/clang++.md b/pages/common/clang++.md new file mode 100644 index 00000000000000..4d43cfce959a81 --- /dev/null +++ b/pages/common/clang++.md @@ -0,0 +1,25 @@ +# clang++ + +> Compiles C++ source files. +> Part of LLVM. +> More information: . + +- Compile a source code file into an executable binary: + +`clang++ {{path/to/source.cpp}} -o {{path/to/output_executable}}` + +- Display (almost) all errors and warnings: + +`clang++ {{path/to/source.cpp}} -Wall -o {{path/to/output_executable}}` + +- Choose a language standard to compile with: + +`clang++ {{path/to/source.cpp}} -std={{c++20}} -o {{path/to/output_executable}}` + +- Include libraries located at a different path than the source file: + +`clang++ {{path/to/source.cpp}} -o {{path/to/output_executable}} -I{{path/to/header_path}} -L{{path/to/library_path}} -l{{path/to/library_name}}` + +- Compile source code into LLVM Intermediate Representation (IR): + +`clang++ -S -emit-llvm {{path/to/source.cpp}} -o {{path/to/output.ll}}` diff --git a/pages/common/clang-cpp.md b/pages/common/clang-cpp.md new file mode 100644 index 00000000000000..8cf0f9203df48a --- /dev/null +++ b/pages/common/clang-cpp.md @@ -0,0 +1,7 @@ +# clang-cpp + +> This command is an alias of `clang++`. + +- View documentation for the original command: + +`tldr clang++` diff --git a/pages/common/clang-format.md b/pages/common/clang-format.md index 715671e135fd6d..7607d8680d6b2c 100644 --- a/pages/common/clang-format.md +++ b/pages/common/clang-format.md @@ -3,7 +3,7 @@ > Tool to auto-format C/C++/Java/JavaScript/Objective-C/Protobuf/C# code. > More information: . -- Format a file and print the result to stdout: +- Format a file and print the result to `stdout`: `clang-format {{path/to/file}}` @@ -13,7 +13,7 @@ - Format a file using a predefined coding style: -`clang-format --style={{LLVM|Google|Chromium|Mozilla|WebKit}} {{path/to/file}}` +`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} {{path/to/file}}` - Format a file using the `.clang-format` file in one of the parent directories of the source file: @@ -21,4 +21,4 @@ - Generate a custom `.clang-format` file: -`clang-format --style={{LLVM|Google|Chromium|Mozilla|WebKit}} --dump-config > {{.clang-format}}` +`clang-format --style={{LLVM|GNU|Google|Chromium|Microsoft|Mozilla|WebKit}} --dump-config > {{.clang-format}}` diff --git a/pages/common/clang-tidy.md b/pages/common/clang-tidy.md new file mode 100644 index 00000000000000..8655d677587151 --- /dev/null +++ b/pages/common/clang-tidy.md @@ -0,0 +1,20 @@ +# clang-tidy + +> An LLVM-based C/C++ linter to find style violations, bugs and security flaws through static analysis. +> More information: . + +- Run default checks on a source file: + +`clang-tidy {{path/to/file.cpp}}` + +- Don't run any checks other than the `cppcoreguidelines` checks on a file: + +`clang-tidy {{path/to/file.cpp}} -checks={{-*,cppcoreguidelines-*}}` + +- List all available checks: + +`clang-tidy -checks={{*}} -list-checks` + +- Specify defines and includes as compilation options (after `--`): + +`clang-tidy {{path/to/file.cpp}} -- -I{{my_project/include}} -D{{definitions}}` diff --git a/pages/common/clang.md b/pages/common/clang.md index 0a139371d509b1..cb99409e0e8ac5 100644 --- a/pages/common/clang.md +++ b/pages/common/clang.md @@ -18,3 +18,7 @@ - Compile source code into LLVM Intermediate Representation (IR): `clang -S -emit-llvm {{file.c}} -o {{file.ll}}` + +- Compile source code without linking: + +`clang -c {{input_source.c}}` diff --git a/pages/common/clangd.md b/pages/common/clangd.md new file mode 100644 index 00000000000000..54c59a9da3cef1 --- /dev/null +++ b/pages/common/clangd.md @@ -0,0 +1,17 @@ +# clangd + +> Language server that provides IDE-like features to editors. +> It should be used via an editor plugin rather than invoked directly. +> More information: . + +- Display available options: + +`clangd --help` + +- List of available options: + +`clangd --help-list` + +- Display version: + +`clangd --version` diff --git a/pages/common/clash.md b/pages/common/clash.md new file mode 100644 index 00000000000000..922c19c23554bf --- /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/clifm.md b/pages/common/clifm.md new file mode 100644 index 00000000000000..a8b779fa42df52 --- /dev/null +++ b/pages/common/clifm.md @@ -0,0 +1,36 @@ +# clifm + +> The command line file manager. +> More information: . + +- Start CliFM: + +`clifm` + +- Open the file or directory whose ELN (entry list number) is 12: + +`12` + +- Create a new file and a new directory: + +`n file dir/` + +- Search for PDF files in the current directory: + +`/*.pdf` + +- Select all PNG files in the current directory: + +`s *.png` + +- Remove the previously selected files (use `t` to send the files to the recycle bin instead): + +`r sel` + +- Display detailed help: + +`?` + +- Exit CliFM: + +`q` diff --git a/pages/common/clip-view.md b/pages/common/clip-view.md new file mode 100644 index 00000000000000..941c4108772a16 --- /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 051b176ff2f189..52103a192f1323 100644 --- a/pages/common/clj.md +++ b/pages/common/clj.md @@ -4,7 +4,7 @@ > All options can be defined in a `deps.edn` file. > More information: . -- Start a REPL: +- Start a REPL (interactive shell): `clj` diff --git a/pages/common/clockwork-cli.md b/pages/common/clockwork-cli.md index a2099da70910f6..81f56852d0c639 100644 --- a/pages/common/clockwork-cli.md +++ b/pages/common/clockwork-cli.md @@ -1,6 +1,6 @@ # clockwork-cli -> A command line interface for the Clockwork PHP debugging framework. +> A command-line interface for the Clockwork PHP debugging framework. > More information: . - Monitor Clockwork logs for the current project: diff --git a/pages/common/clojure.md b/pages/common/clojure.md new file mode 100644 index 00000000000000..abab34d0429ed5 --- /dev/null +++ b/pages/common/clojure.md @@ -0,0 +1,7 @@ +# clojure + +> This command is an alias of `clj`. + +- View documentation for the original command: + +`tldr clj` diff --git a/pages/common/cloudflared.md b/pages/common/cloudflared.md index a5c5d1e7e37dcf..61ea4939729dcf 100644 --- a/pages/common/cloudflared.md +++ b/pages/common/cloudflared.md @@ -1,6 +1,6 @@ # cloudflared -> Command line tool to create a persistent connection to the Cloudflare network. +> Command-line tool to create a persistent connection to the Cloudflare network. > More information: . - Authenticate and associate the connection to a domain in the Cloudflare account: diff --git a/pages/common/cmake.md b/pages/common/cmake.md index cd809d7967a95d..2ca22f9e9bc1f1 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 aa28757073ba56..239445c1b47725 100644 --- a/pages/common/cmark.md +++ b/pages/common/cmark.md @@ -3,7 +3,7 @@ > Converts CommonMark Markdown formatted text to other formats. > More information: . -- Render a Commonmark Markdown file to HTML: +- Render a CommonMark Markdown file to HTML: `cmark --to html {{filename.md}}` @@ -15,6 +15,6 @@ `cmark --smart --to html {{filename.md}}` -- Validate utf8 characters: +- Validate UTF-8 characters: `cmark --validate-utf8 {{filename.md}}` diff --git a/pages/common/cmatrix.md b/pages/common/cmatrix.md index bce9bd3716bc2b..029798a33d565f 100644 --- a/pages/common/cmatrix.md +++ b/pages/common/cmatrix.md @@ -15,6 +15,6 @@ `cmatrix -r` -- Set screen update delay to 2 centiseconds: +- Set screen update delay to 2 centiseconds (20 milliseconds): `cmatrix -u {{2}}` diff --git a/pages/common/cmctl.md b/pages/common/cmctl.md new file mode 100644 index 00000000000000..b65fc894d77b26 --- /dev/null +++ b/pages/common/cmctl.md @@ -0,0 +1,21 @@ +# cmctl + +> A CLI tool that can help you to manage cert-manager resources inside your cluster. +> Check cert signing status, approve/deny requests, and issue new certificate requests. +> More information: . + +- Check if the cert-manager API is ready: + +`cmctl check api` + +- Check the status of a certificate: + +`cmctl status certificate {{cert_name}}` + +- Create a new certificate request based on an existing certificate: + +`cmctl create certificaterequest my-cr --from-certificate-file {{cert.yaml}}` + +- Create a new certificate request, fetch the signed certificate, and set a maximum wait time: + +`cmctl create certificaterequest my-cr --from-certificate-file {{cert.yaml}} --fetch-certificate --timeout {{20m}}` diff --git a/pages/common/cmp.md b/pages/common/cmp.md index 13af1072bdea7e..cc42117f1676d4 100644 --- a/pages/common/cmp.md +++ b/pages/common/cmp.md @@ -3,10 +3,18 @@ > Compare two files byte by byte. > More information: . -- Find the byte and line number of the first difference between two files: +- Output char and line number of the first difference between two files: `cmp {{path/to/file1}} {{path/to/file2}}` -- Find the byte number and differing bytes of every difference: +- Output info of the first difference: char, line number, bytes, and values: -`cmp -l {{path/to/file1}} {{path/to/file2}}` +`cmp --print-bytes {{path/to/file1}} {{path/to/file2}}` + +- Output the byte numbers and values of every difference: + +`cmp --verbose {{path/to/file1}} {{path/to/file2}}` + +- Compare files but output nothing, yield only the exit status: + +`cmp --quiet {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/code.md b/pages/common/code.md index 129252f929c6f4..d3b988150bd204 100644 --- a/pages/common/code.md +++ b/pages/common/code.md @@ -1,28 +1,36 @@ # code -> Visual Studio Code. +> Cross platform and extensible code editor. > More information: . -- Open VS Code: +- Start Visual Studio Code: `code` -- Open the current directory in VS Code: +- Open specific files/directories: -`code .` +`code {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Open a file or directory in VS Code: +- Compare two specific files: -`code {{path/to/file_or_directory}}` +`code --diff {{path/to/file1}} {{path/to/file2}}` -- Open a file or directory in the currently open VS Code window: +- Open specific files/directories in a new window: -`code --reuse-window {{path/to/file_or_directory}}` +`code --new-window {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Compare two files in VS Code: +- Install/uninstall a specific extension: -`code -d {{file1}} {{file2}}` +`code --{{install|uninstall}}-extension {{publisher.extension}}` -- Open VS Code with super user (sudo) permissions: +- Print installed extensions: -`sudo code {{path/to/file_or_directory}} --user-data-dir` +`code --list-extensions` + +- Print installed extensions with their versions: + +`code --list-extensions --show-versions` + +- Start the editor as a superuser (root) while storing user data in a specific directory: + +`sudo code --user-data-dir {{path/to/directory}}` diff --git a/pages/common/coffee.md b/pages/common/coffee.md index 94ee1b0e77b890..40e367f5ed9ecf 100644 --- a/pages/common/coffee.md +++ b/pages/common/coffee.md @@ -15,7 +15,7 @@ `coffee --compile {{path/to/file.coffee}} --output {{path/to/file.js}}` -- Run interactive REPL: +- Start a REPL (interactive shell): `coffee --interactive` diff --git a/pages/common/cola.md b/pages/common/cola.md new file mode 100644 index 00000000000000..68fc41522faf0a --- /dev/null +++ b/pages/common/cola.md @@ -0,0 +1,7 @@ +# cola + +> This command is an alias of `git-cola`. + +- View documentation for the original command: + +`tldr git-cola` diff --git a/pages/common/colordiff.md b/pages/common/colordiff.md index cf5e3eb41f5d73..e8d86eade5536a 100644 --- a/pages/common/colordiff.md +++ b/pages/common/colordiff.md @@ -1,7 +1,7 @@ # colordiff > A tool to colorize diff output. -> The Perl script colordiff is a wrapper for `diff` and produces the same output but with pretty syntax highlighting. Colour schemes can be customized. +> The Perl script colordiff is a wrapper for `diff` and produces the same output but with pretty syntax highlighting. Color schemes can be customized. > More information: . - Compare files: diff --git a/pages/common/colorls.md b/pages/common/colorls.md new file mode 100644 index 00000000000000..ac6b371dc1006d --- /dev/null +++ b/pages/common/colorls.md @@ -0,0 +1,20 @@ +# colorls + +> A Ruby gem that beautifies the terminal's ls command, with color and font-awesome icons. +> More information: . + +- List files one per line: + +`colorls -1` + +- List all files, including hidden files: + +`colorls --all` + +- Long format list (permissions, ownership, size, and modification date) of all files: + +`colorls --long --all` + +- Only list directories: + +`colorls --dirs` diff --git a/pages/common/colorpicker.md b/pages/common/colorpicker.md new file mode 100644 index 00000000000000..e76aa014993b70 --- /dev/null +++ b/pages/common/colorpicker.md @@ -0,0 +1,25 @@ +# colorpicker + +> A minimalist X11 colorpicker. +> Any mouse gesture except left click will exit the program. +> More information: . + +- Launch colorpicker and print the hexadecimal and RGB value of each clicked pixel to `stdout`: + +`colorpicker` + +- Only print the color of one clicked pixel and then exit: + +`colorpicker --one-shot` + +- Print the color of each clicked pixel and quit when a key is pressed: + +`colorpicker --quit-on-keypress` + +- Only print the RGB value: + +`colorpicker --rgb` + +- Only print the hexadecimal value: + +`colorpicker --hex` diff --git a/pages/common/column.md b/pages/common/column.md index 0b51f58f7fd446..220940e91b275d 100644 --- a/pages/common/column.md +++ b/pages/common/column.md @@ -12,7 +12,7 @@ `printf "header1 header2\nbar foo\n" | column --table` -- Specify the column delimiter character for the `--table` option (e.g. "," for csv) (defaults to whitespace): +- Specify the column delimiter character for the `--table` option (e.g. "," for CSV) (defaults to whitespace): `printf "header1,header2\nbar,foo\n" | column --table --separator {{,}}` diff --git a/pages/common/comby.md b/pages/common/comby.md new file mode 100644 index 00000000000000..0d214ecd3e3c89 --- /dev/null +++ b/pages/common/comby.md @@ -0,0 +1,20 @@ +# comby + +> Tool for structural code search and replace that supports many languages. +> More information: . + +- Match and rewrite templates, and print changes: + +`comby '{{assert_eq!(:[a], :[b])}}' '{{assert_eq!(:[b], :[a])}}' {{.rs}}` + +- Match and rewrite with rewrite properties: + +`comby '{{assert_eq!(:[a], :[b])}}' '{{assert_eq!(:[b].Capitalize, :[a])}}' {{.rs}}` + +- Match and rewrite in-place: + +`comby -in-place '{{match_pattern}}' '{{rewrite_pattern}}'` + +- Only perform matching and print matches: + +`comby -match-only '{{match_pattern}}' ""` diff --git a/pages/common/comm.md b/pages/common/comm.md index faba6071abf393..d68b0dd99d3846 100644 --- a/pages/common/comm.md +++ b/pages/common/comm.md @@ -11,7 +11,7 @@ `comm -12 {{file1}} {{file2}}` -- Print only lines common to both files, reading one file from stdin: +- Print only lines common to both files, reading one file from `stdin`: `cat {{file1}} | comm -12 - {{file2}}` diff --git a/pages/common/compgen.md b/pages/common/compgen.md new file mode 100644 index 00000000000000..047afcdba0d4b1 --- /dev/null +++ b/pages/common/compgen.md @@ -0,0 +1,24 @@ +# compgen + +> A built-in command for auto-completion in Bash, which is called on pressing TAB key twice. +> More information: . + +- List all commands that you could run: + +`compgen -c` + +- List all aliases: + +`compgen -a` + +- List all functions that you could run: + +`compgen -A function` + +- Show shell reserved keywords: + +`compgen -k` + +- See all available commands/aliases starting with 'ls': + +`compgen -ac {{ls}}` diff --git a/pages/common/composer-require-checker.md b/pages/common/composer-require-checker.md index 3fcb9455c92184..0a747013365106 100644 --- a/pages/common/composer-require-checker.md +++ b/pages/common/composer-require-checker.md @@ -1,12 +1,12 @@ # composer-require-checker -> A CLI tool to analyse Composer dependencies for soft dependencies. +> A CLI tool to analyze Composer dependencies for soft dependencies. > More information: . -- Analyse a Composer JSON file: +- Analyze a Composer JSON file: `composer-require-checker check {{path/to/composer.json}}` -- Analyse a Composer JSON file with a specific configuration: +- Analyze a Composer JSON file with a specific configuration: `composer-require-checker check --config-file {{path/to/config.json}} {{path/to/composer.json}}` diff --git a/pages/common/conan.md b/pages/common/conan.md index 7c2ece0db5a90d..6f0b269e181ccf 100644 --- a/pages/common/conan.md +++ b/pages/common/conan.md @@ -1,6 +1,7 @@ # conan -> The open source, decentralized and multi-platform package manager to create and share all your native binaries. +> The open source, decentralized and cross-platform package manager to create and share all your native binaries. +> Some subcommands such as `conan frogarian` have their own usage documentation. > More information: . - Install packages based on `conanfile.txt`: @@ -25,4 +26,4 @@ - List remotes: -`conan remote --list` +`conan remote list` diff --git a/pages/common/conda-create.md b/pages/common/conda-create.md new file mode 100644 index 00000000000000..133531b3cbe98c --- /dev/null +++ b/pages/common/conda-create.md @@ -0,0 +1,16 @@ +# conda create + +> Create new conda environments. +> More information: . + +- Create a new environment named `py39`, and install Python 3.9 and NumPy v1.11 or above in it: + +`conda create --yes --name {{py39}} python={{3.9}} "{{numpy>=1.11}}"` + +- Make exact copy of an environment: + +`conda create --clone {{py39}} --name {{py39-copy}}` + +- Create a new environment with a specified name and install a given package: + +`conda create --name {{env_name}} {{package_name}}` diff --git a/pages/common/conda.md b/pages/common/conda.md index 61886fa93ae853..59d0caae823e16 100644 --- a/pages/common/conda.md +++ b/pages/common/conda.md @@ -1,27 +1,28 @@ # conda > Package, dependency and environment management for any programming language. +> Some subcommands such as `conda create` have their own usage documentation. > More information: . - Create a new environment, installing named packages into it: -`conda create --name {{environment_name}} {{python=2.7 matplotlib}}` +`conda create --name {{environment_name}} {{python=3.9 matplotlib}}` - List all environments: `conda info --envs` -- Load or unload an environment: +- Load an environment: -`conda {{activate|deactivate}} {{environment_name}}` +`conda activate {{environment_name}}` -- Delete an environment (remove all packages): +- Unload an environment: -`conda remove --name {{environment_name}} --all` +`conda deactivate` -- Search conda channels for a package by name: +- Delete an environment (remove all packages): -`conda search {{package_name}}` +`conda remove --name {{environment_name}} --all` - Install packages into the current environment: diff --git a/pages/common/consul.md b/pages/common/consul.md index 8f6f2d429f3601..ab879e29746f6c 100644 --- a/pages/common/consul.md +++ b/pages/common/consul.md @@ -1,6 +1,7 @@ # consul > Distributed key-value store with health checking and service discovery. +> Some subcommands such as `consul kv` have their own usage documentation. > More information: . - Check the Consul version: diff --git a/pages/common/convert.md b/pages/common/convert.md index 0590f11fca6a9d..a1785d0a8def2f 100644 --- a/pages/common/convert.md +++ b/pages/common/convert.md @@ -1,6 +1,6 @@ # convert -> Imagemagick image conversion tool. +> ImageMagick image conversion tool. > More information: . - Convert an image from JPG to PNG: @@ -23,10 +23,14 @@ `convert {{image1.png}} {{image2.png}} {{image3.png}} -append {{image123.png}}` -- Create a gif from a series of images with 100ms delay between them: +- Create a GIF from a series of images with 100ms delay between them: `convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{10}} {{animation.gif}}` - Create an image with nothing but a solid background: `convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}` + +- Create a favicon from several images of different sizes: + +`convert {{image1.png}} {{image2.png}} {{image3.png}} {{image.ico}}` diff --git a/pages/common/coproc.md b/pages/common/coproc.md new file mode 100644 index 00000000000000..9a353c8603b990 --- /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 8c81dbb589c82c..c4f71229d332ea 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 dec33d36cfa32b..d3267d77221cf6 100644 --- a/pages/common/cordova.md +++ b/pages/common/cordova.md @@ -3,7 +3,7 @@ > Mobile apps with HTML, CSS & JS. > More information: . -- Create a cordova project: +- Create a Cordova project: `cordova create {{path}} {{package_name}} {{project_name}}` @@ -11,18 +11,18 @@ `cordova info` -- Add a cordova platform: +- Add a Cordova platform: `cordova platform add {{platform}}` -- Remove a cordova platform: +- Remove a Cordova platform: `cordova platform remove {{platform}}` -- Add a cordova plugin: +- Add a Cordova plugin: `cordova plugin add {{pluginid}}` -- Remove a cordova plugin: +- Remove a Cordova plugin: `cordova plugin remove {{pluginid}}` diff --git a/pages/common/core-validate-commit.md b/pages/common/core-validate-commit.md new file mode 100644 index 00000000000000..3d33cfeaa8c91e --- /dev/null +++ b/pages/common/core-validate-commit.md @@ -0,0 +1,32 @@ +# core-validate-commit + +> Validate commit messages for Node.js core. +> More information: . + +- Validate the current commit: + +`core-validate-commit` + +- Validate a specific commit: + +`core-validate-commit {{commit_hash}}` + +- Validate a range of commits: + +`git rev-list {{commit_hash}}..HEAD | xargs core-validate-commit` + +- List all validation rules: + +`core-validate-commit --list` + +- List all valid Node.js subsystems: + +`core-validate-commit --list-subsystem` + +- Validate the current commit formatting the output in tap format: + +`core-validate-commit --tap` + +- Display help: + +`core-validate-commit --help` diff --git a/pages/common/corepack.md b/pages/common/corepack.md new file mode 100644 index 00000000000000..3b4508a94bd8e5 --- /dev/null +++ b/pages/common/corepack.md @@ -0,0 +1,36 @@ +# corepack + +> Zero-runtime-dependency package acting as bridge between Node projects and their package managers. +> More information: . + +- Add the Corepack shims to the Node.js installation directory to make them available as global commands: + +`corepack enable` + +- Add the Corepack shims to a specific directory: + +`corepack enable --install-directory {{path/to/directory}}` + +- Remove the Corepack shims from the Node.js installation directory: + +`corepack disable` + +- Prepare a specific package manager: + +`corepack prepare {{package_manager}}@{{version}} --activate` + +- Prepare the package manager configured for the project in the current path: + +`corepack prepare` + +- Use a package manager without installing it as a global command: + +`corepack {{npm|pnpm|yarn}} {{package_manager_arguments}}` + +- Install a package manager from the specified archive: + +`corepack hydrate {{path/to/corepack.tgz}}` + +- Display help for a subcommand: + +`corepack {{subcommand}} --help` diff --git a/pages/common/cosign.md b/pages/common/cosign.md new file mode 100644 index 00000000000000..83acb4ea9c6750 --- /dev/null +++ b/pages/common/cosign.md @@ -0,0 +1,36 @@ +# cosign + +> Container Signing, Verification and Storage in an OCI registry. +> More information: . + +- Generate a key-pair: + +`cosign generate-key-pair` + +- Sign a container and store the signature in the registry: + +`cosign sign -key {{cosign.key}} {{image}}` + +- Sign a container image with a key pair stored in a Kubernetes secret: + +`cosign sign -key k8s://{{namespace}}/{{key}} {{image}}` + +- Sign a blob with a local key pair file: + +`cosign sign-blob --key {{cosign.key}} {{path/to/file}}` + +- Verify a container against a public key: + +`cosign verify -key {{cosign.pub}} {{image}}` + +- Verify images with a public key in a Dockerfile: + +`cosign dockerfile verify -key {{cosign.pub}} {{path/to/Dockerfile}}` + +- Verify an image with a public key stored in a Kubernetes secret: + +`cosign verify -key k8s://{{namespace}}/{{key}} {{image}}` + +- Copy a container image and its signatures: + +`cosign copy {{example.com/src:latest}} {{example.com/dest:latest}}` diff --git a/pages/common/cotton.md b/pages/common/cotton.md index 16c383101ff708..67f27174f97b92 100644 --- a/pages/common/cotton.md +++ b/pages/common/cotton.md @@ -3,14 +3,14 @@ > Markdown test specification runner. > More information: . -- Use a specific base url: +- Use a specific base URL: -`cotton -u {{base_url}} {{file}}.md` +`cotton -u {{base_url}} {{path/to/file}}.md` - Disable certificate verification (insecure mode): -`cotton -u {{base_url}} -i {{file}}.md` +`cotton -u {{base_url}} -i {{path/to/file}}.md` - Stop running when a test fails: -`cotton -u {{base_url}} -s {{file}}.md` +`cotton -u {{base_url}} -s {{path/to/file}}.md` diff --git a/pages/common/couchdb.md b/pages/common/couchdb.md index 474859c5f48548..fd8ee8bb134299 100644 --- a/pages/common/couchdb.md +++ b/pages/common/couchdb.md @@ -1,17 +1,17 @@ # couchdb -> Command line interface for Apache CouchDB database server. +> Command-line interface for Apache CouchDB database server. > More information: . -- Start couchdb: +- Start CouchDB: `couchdb` -- Start couchdb interactive shell: +- Start CouchDB interactive shell: `couchdb -i` -- Start couchdb as a background process: +- Start CouchDB as a background process: `couchdb -b` diff --git a/pages/common/cowsay.md b/pages/common/cowsay.md index 82733fd159fc7a..11a7081cc20b72 100644 --- a/pages/common/cowsay.md +++ b/pages/common/cowsay.md @@ -1,24 +1,28 @@ # cowsay -> Generate an ASCII character (by default a cow) saying or thinking something. +> Print ASCII art (by default a cow) saying or thinking something. > More information: . -- Print an ASCII cow saying "Hello world": +- Print an ASCII cow saying "hello, world": -`cowsay "Hello world"` +`cowsay "{{hello, world}}"` -- Read text from stdin for the balloon: +- Print an ASCII cow saying text from `stdin`: -`echo "Hello" | cowsay` +`echo "{{hello, world}}" | cowsay` -- List all available characters: +- List all available art types: `cowsay -l` -- Print an ASCII dragon saying "Hello": +- Print the specified ASCII art saying "hello, world": -`cowsay -f dragon "Hello"` +`cowsay -f {{art}} "{{hello, world}}"` -- Print a stoned thinking ASCII cow: +- Print a dead thinking ASCII cow: -`cowthink -s "I'm just a cow, not a great thinker..."` +`cowthink -d "{{I'm just a cow, not a great thinker...}}"` + +- Print an ASCII cow with custom eyes saying "hello, world": + +`cowsay -e {{characters}} "{{hello, world}}"` diff --git a/pages/common/cp.md b/pages/common/cp.md index efe5b5f652816f..3698f2355ffc9b 100644 --- a/pages/common/cp.md +++ b/pages/common/cp.md @@ -19,10 +19,18 @@ `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}}` -- Dereference symbolic links before copying: +- 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/cradle-elastic.md b/pages/common/cradle-elastic.md index f6458a084c12e9..a7b40141ea1cc2 100644 --- a/pages/common/cradle-elastic.md +++ b/pages/common/cradle-elastic.md @@ -1,28 +1,28 @@ # cradle elastic -> Manage the ElasticSearch instances for a Cradle instance. +> Manage the Elasticsearch instances for a Cradle instance. > More information: . -- Truncate the ElasticSearch index: +- Truncate the Elasticsearch index: `cradle elastic flush` -- Truncate the ElasticSearch index for a specific package: +- Truncate the Elasticsearch index for a specific package: `cradle elastic flush {{package_name}}` -- Submit the ElasticSearch schema: +- Submit the Elasticsearch schema: `cradle elastic map` -- Submit the ElasticSearch schema for a specific package: +- Submit the Elasticsearch schema for a specific package: `cradle elastic map {{package_name}}` -- Populate the ElasticSearch indices for all packages: +- Populate the Elasticsearch indices for all packages: `cradle elastic populate` -- Populate the ElasticSearch indices for a specific package: +- Populate the Elasticsearch indices for a specific package: `cradle elastic populate {{package_name}}` diff --git a/pages/common/cradle.md b/pages/common/cradle.md index dd6a921171d9c2..836044acf0d09e 100644 --- a/pages/common/cradle.md +++ b/pages/common/cradle.md @@ -1,7 +1,7 @@ # cradle > The Cradle PHP framework. -> See `cradle-install`, `cradle-deploy` and other pages for additional information. +> Some subcommands such as `cradle install` have their own usage documentation. > More information: . - Connect to a server: diff --git a/pages/common/createdb.md b/pages/common/createdb.md new file mode 100644 index 00000000000000..79371bab9fb848 --- /dev/null +++ b/pages/common/createdb.md @@ -0,0 +1,16 @@ +# createdb + +> Create a PostgreSQL database. +> More information: . + +- Create a database owned by the current user: + +`createdb {{database_name}}` + +- Create a database owned by a specific user with a description: + +`createdb --owner={{username}} {{database_name}} '{{description}}'` + +- Create a database from a template: + +`createdb --template={{template_name}} {{database_name}}` diff --git a/pages/common/crictl.md b/pages/common/crictl.md new file mode 100644 index 00000000000000..44bb958bd5e647 --- /dev/null +++ b/pages/common/crictl.md @@ -0,0 +1,36 @@ +# crictl + +> Command-line for CRI-compatible container runtimes. +> More information: . + +- List all kubernetes pods (Ready and NotReady): + +`crictl pods` + +- List all containers (Running and Exited): + +`crictl ps --all` + +- List all images: + +`crictl images` + +- Print information about specific containers: + +`crictl inspect {{container_id1 container_id2 ...}}` + +- Open a specific shell inside a running container: + +`crictl exec -it {{container_id}} {{sh}}` + +- Pull a specific image from a registry: + +`crictl pull {{image:tag}}` + +- Print and [f]ollow logs of a specific container: + +`crictl logs -f {{container_id}}` + +- Remove one or more images: + +`crictl rmi {{image_id1 image_id2 ...}}` diff --git a/pages/common/cron.md b/pages/common/cron.md new file mode 100644 index 00000000000000..fd9e911a6c048a --- /dev/null +++ b/pages/common/cron.md @@ -0,0 +1,8 @@ +# cron + +> `cron` is a system scheduler for running jobs or tasks unattended. +> The command to submit, edit or delete entries to `cron` is called `crontab`. + +- View documentation for the original command: + +`tldr crontab` diff --git a/pages/common/crontab.md b/pages/common/crontab.md index 761f0d45fb88aa..fa4742f5f0b2a1 100644 --- a/pages/common/crontab.md +++ b/pages/common/crontab.md @@ -1,8 +1,7 @@ # crontab > Schedule cron jobs to run on a time interval for the current user. -> Job definition format: "(min) (hour) (day_of_month) (month) (day_of_week) command_to_execute". -> More information: . +> More information: . - Edit the crontab file for the current user: @@ -28,10 +27,10 @@ `0 10 * * * {{command_to_execute}}` -- Sample job which runs every minute on the 3rd of April: +- Sample crontab entry, which runs a command every 10 minutes: -`* * 3 Apr * {{command_to_execute}}` +`*/10 * * * * {{command_to_execute}}` -- Sample job which runs a certain script at 02:30 every Friday: +- Sample crontab entry, which runs a certain script at 02:30 every Friday: `30 2 * * Fri {{/absolute/path/to/script.sh}}` diff --git a/pages/common/cs-complete-dep.md b/pages/common/cs-complete-dep.md new file mode 100644 index 00000000000000..638870503ba2dc --- /dev/null +++ b/pages/common/cs-complete-dep.md @@ -0,0 +1,20 @@ +# cs complete dep + +> Allows the developer to search for libraries without searching directly on the web but from the command line. +> 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 00000000000000..046b336aeaa0c3 --- /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 00000000000000..538ba5165bb673 --- /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 00000000000000..2baf08d0d8456a --- /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 00000000000000..508c0511831146 --- /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}} -- {{arg1 arg2 ...}}` + +- Launch a specific application version with arguments: + +`cs launch {{application_name}}:{{application_version}} -- {{arg1 arg2 ...}}` + +- 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 00000000000000..ecf85af3db8a6b --- /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 00000000000000..ecc4c9d99883e6 --- /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, accessible via `tldr cs subcommand`. +> 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/csc.md b/pages/common/csc.md index 5952f7dd5b10d2..bd95f594cbb25e 100644 --- a/pages/common/csc.md +++ b/pages/common/csc.md @@ -1,7 +1,7 @@ # csc > The Microsoft C# Compiler. -> More information: . +> More information: . - Compile one or more C# files to a CIL executable: diff --git a/pages/common/csh.md b/pages/common/csh.md new file mode 100644 index 00000000000000..186bb3adf238c1 --- /dev/null +++ b/pages/common/csh.md @@ -0,0 +1,21 @@ +# csh + +> The shell (command interpreter) with C-like syntax. +> See also: `tcsh`. +> More information: . + +- Start an interactive shell session: + +`csh` + +- Start an interactive shell session without loading startup configs: + +`csh -f` + +- Execute specific [c]ommands: + +`csh -c "{{echo 'csh is executed'}}"` + +- Execute a specific script: + +`csh {{path/to/script.csh}}` diff --git a/pages/common/csslint.md b/pages/common/csslint.md index 6255ef3540a8ab..b7db9420a9d22f 100644 --- a/pages/common/csslint.md +++ b/pages/common/csslint.md @@ -23,6 +23,6 @@ `csslint --warnings={{box-sizing,selector-max,floats}} {{file.css}}` -- Specify certain rules to completely ignore: +- Specify certain rules to ignore: `csslint --ignore={{ids,rules-count,shorthand}} {{file.css}}` diff --git a/pages/common/csv-diff.md b/pages/common/csv-diff.md new file mode 100644 index 00000000000000..733957d3301f2e --- /dev/null +++ b/pages/common/csv-diff.md @@ -0,0 +1,16 @@ +# csv-diff + +> View differences between two CSV, TSV or JSON files. +> More information: . + +- Display a human-readable summary of differences between files using a specific column as a unique identifier: + +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}}` + +- Display a human-readable summary of differences between files that includes unchanged values in rows with at least one change: + +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}} --show-unchanged` + +- Display a summary of differences between files in JSON format using a specific column as a unique identifier: + +`csv-diff {{path/to/file1.csv}} {{path/to/file2.csv}} --key={{column_name}} --json` diff --git a/pages/common/csv2tsv.md b/pages/common/csv2tsv.md new file mode 100644 index 00000000000000..61a4210500dd88 --- /dev/null +++ b/pages/common/csv2tsv.md @@ -0,0 +1,16 @@ +# csv2tsv + +> Convert CSV (comma-separated) text to TSV (tab-separated) format. +> More information: . + +- Convert from CSV to TSV: + +`csv2tsv {{path/to/input_csv1 path/to/input_csv2 ...}} > {{path/to/output_tsv}}` + +- Convert field delimiter separated CSV to TSV: + +`csv2tsv -c'{{field_delimiter}}' {{path/to/input_csv}}` + +- Convert semicolon separated CSV to TSV: + +`csv2tsv -c';' {{path/to/input_csv}}` diff --git a/pages/common/csvgrep.md b/pages/common/csvgrep.md index a898b497198870..9ed87c8d1c6eea 100644 --- a/pages/common/csvgrep.md +++ b/pages/common/csvgrep.md @@ -8,9 +8,9 @@ `csvgrep -c {{1}} -m {{string_to_match}} {{data.csv}}` -- Find rows in which columns 3 or 4 match a certain regex pattern: +- Find rows in which columns 3 or 4 match a certain regular expression: -`csvgrep -c {{3,4}} -r {{regex_pattern}} {{data.csv}}` +`csvgrep -c {{3,4}} -r {{regular_expression}} {{data.csv}}` - Find rows in which the "name" column does NOT include the string "John Doe": diff --git a/pages/common/ctags.md b/pages/common/ctags.md index 08029d65edcfd1..425816f1bcb155 100644 --- a/pages/common/ctags.md +++ b/pages/common/ctags.md @@ -9,8 +9,12 @@ - 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: `ctags --recurse` + +- Generate tags for a single file, and output them with start line number and end line number in JSON format: + +`ctags --fields=+ne --output-format=json {{path/to/file}}` diff --git a/pages/common/cups-config.md b/pages/common/cups-config.md new file mode 100644 index 00000000000000..e0d43c744af7d4 --- /dev/null +++ b/pages/common/cups-config.md @@ -0,0 +1,24 @@ +# cups-config + +> Show technical information about your CUPS print server installation. +> More information: . + +- Show the currently installed version of CUPS: + +`cups-config --version` + +- Show where CUPS is currently installed: + +`cups-config --serverbin` + +- Show the location of CUPS' configuration directory: + +`cups-config --serverroot` + +- Show the location of CUPS' data directory: + +`cups-config --datadir` + +- Display all available options: + +`cups-config --help` diff --git a/pages/common/cupsd.md b/pages/common/cupsd.md new file mode 100644 index 00000000000000..b9e0bbb080c50e --- /dev/null +++ b/pages/common/cupsd.md @@ -0,0 +1,36 @@ +# cupsd + +> Server daemon for the CUPS print server. +> More information: . + +- Start `cupsd` in the background, aka. as a daemon: + +`cupsd` + +- Start `cupsd` on the [f]oreground: + +`cupsd -f` + +- [l]aunch `cupsd` on-demand (commonly used by `launchd` or `systemd`): + +`cupsd -l` + +- Start `cupsd` using the specified [`c`]`upsd.conf` configuration file: + +`cupsd -c {{path/to/cupsd.conf}}` + +- Start `cupsd` using the specified `cups-file`[`s`]`.conf` configuration file: + +`cupsd -s {{path/to/cups-files.conf}}` + +- [t]est the [`c`]`upsd.conf` configuration file for errors: + +`cupsd -t -c {{path/to/cupsd.conf}}` + +- [t]est the `cups-file`[`s`]`.conf` configuration file for errors: + +`cupsd -t -s {{path/to/cups-files.conf}}` + +- Display all available options: + +`cupsd -h` diff --git a/pages/common/curl.md b/pages/common/curl.md index 644eccb2a6a4a8..1407a91c6e6043 100644 --- a/pages/common/curl.md +++ b/pages/common/curl.md @@ -4,33 +4,33 @@ > Supports most protocols, including HTTP, FTP, and POP3. > More information: . -- Download the contents of an URL to a file: +- Download the contents of a URL to a file: -`curl {{http://example.com}} -o {{filename}}` +`curl {{http://example.com}} --output {{path/to/file}}` - Download a file, saving the output under the filename indicated by the URL: -`curl -O {{http://example.com/filename}}` +`curl --remote-name {{http://example.com/filename}}` -- Download a file, following [L]ocation redirects, and automatically [C]ontinuing (resuming) a previous file transfer: +- Download a file, following location redirects, and automatically continuing (resuming) a previous file transfer and return an error on server error: -`curl -O -L -C - {{http://example.com/filename}}` +`curl --fail --remote-name --location --continue-at - {{http://example.com/filename}}` -- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`). Use `-d @file_name` or `-d @'-'` to read from STDIN: +- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`). Use `--data @file_name` or `--data @'-'` to read from STDIN: -`curl -d {{'name=bob'}} {{http://example.com/form}}` +`curl --data {{'name=bob'}} {{http://example.com/form}}` - Send a request with an extra header, using a custom HTTP method: -`curl -H {{'X-My-Header: 123'}} -X {{PUT}} {{http://example.com}}` +`curl --header {{'X-My-Header: 123'}} --request {{PUT}} {{http://example.com}}` - Send data in JSON format, specifying the appropriate content-type header: -`curl -d {{'{"name":"bob"}'}} -H {{'Content-Type: application/json'}} {{http://example.com/users/1234}}` +`curl --data {{'{"name":"bob"}'}} --header {{'Content-Type: application/json'}} {{http://example.com/users/1234}}` -- Pass a user name and password for server authentication: +- Pass a username and password for server authentication: -`curl -u myusername:mypassword {{http://example.com}}` +`curl --user myusername:mypassword {{http://example.com}}` - Pass client certificate and key for a resource, skipping certificate validation: diff --git a/pages/common/cut.md b/pages/common/cut.md index d26cd3537dd351..5c9833aa21b2b8 100644 --- a/pages/common/cut.md +++ b/pages/common/cut.md @@ -1,28 +1,16 @@ # cut -> Cut out fields from stdin or files. +> Cut out fields from `stdin` or files. > More information: . -- Cut out the first sixteen characters of each line of stdin: +- Print a specific character/field range of each line: -`cut -c {{1-16}}` +`{{command}} | cut --{{characters|fields}}={{1|1,10|1-10|1-|-10}}` -- Cut out the first sixteen characters of each line of the given files: +- Print a range of each line with a specific delimiter: -`cut -c {{1-16}} {{file}}` +`{{command}} | cut --delimiter="{{,}}" --{{fields}}={{1}}` -- Cut out everything from the 3rd character to the end of each line: +- Print a range of each line of the specific file: -`cut -c {{3-}}` - -- Cut out the fifth field of each line, using a colon as a field delimiter (default delimiter is tab): - -`cut -d'{{:}}' -f{{5}}` - -- Cut out the 2nd and 10th fields of each line, using a semicolon as a delimiter: - -`cut -d'{{;}}' -f{{2,10}}` - -- Cut out the fields 3 through to the end of each line, using a space as a delimiter: - -`cut -d'{{ }}' -f{{3-}}` +`cut --{{characters}}={{1}} {{path/to/file}}` diff --git a/pages/common/cvs.md b/pages/common/cvs.md new file mode 100644 index 00000000000000..db224844e55391 --- /dev/null +++ b/pages/common/cvs.md @@ -0,0 +1,32 @@ +# cvs + +> Concurrent Versions System, a revision control system. +> More information: . + +- Create a new repository (requires the `CVSROOT` environment variable to be set externally): + +`cvs -d {{path/to/repository}} init` + +- Add a project to the repository: + +`cvs import -m "{{message}}" {{project_name}} {{version}} {{vendor}}` + +- Checkout a project: + +`cvs checkout {{project_name}}` + +- Show changes made to files: + +`cvs diff {{path/to/file}}` + +- Add a file: + +`cvs add {{path/to/file}}` + +- Commit a file: + +`cvs commit -m "{{message}}" {{path/to/file}}` + +- Update the working directory from the remote repository: + +`cvs update` diff --git a/pages/common/cwebp.md b/pages/common/cwebp.md new file mode 100644 index 00000000000000..112f528279bdd7 --- /dev/null +++ b/pages/common/cwebp.md @@ -0,0 +1,24 @@ +# cwebp + +> Compress an image file to a WebP file. +> More information: . + +- Compress a WebP file with default settings (q = 75) to the [o]utput file: + +`cwebp {{path/to/image_file}} -o {{path/to/output.webp}}` + +- Compress a WebP file with the best [q]uality and largest file size: + +`cwebp {{path/to/image_file}} -o {{path/to/output.webp}} -q {{100}}` + +- Compress a WebP file with the worst [q]uality and smallest file size: + +`cwebp {{path/to/image_file}} -o {{path/to/output.webp}} -q {{0}}` + +- Compress a WebP file and apply resize to image: + +`cwebp {{path/to/image_file}} -o {{path/to/output.webp}} -resize {{width}} {{height}}` + +- Compress a WebP file and drop alpha channel information: + +`cwebp {{path/to/image_file}} -o {{path/to/output.webp}} -noalpha` diff --git a/pages/common/czkawka-cli.md b/pages/common/czkawka-cli.md new file mode 100644 index 00000000000000..57d337e9646ef4 --- /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/d8.md b/pages/common/d8.md new file mode 100644 index 00000000000000..5ab4d259a41168 --- /dev/null +++ b/pages/common/d8.md @@ -0,0 +1,16 @@ +# d8 + +> Developer shell for the V8 JavaScript engine. +> More information: . + +- Start a REPL (interactive shell): + +`d8` + +- Run a JavaScript file: + +`d8 {{path/to/file.js}}` + +- Evaluate a JavaScript expression: + +`d8 -e "{{code}}` diff --git a/pages/common/daps.md b/pages/common/daps.md new file mode 100644 index 00000000000000..5a9cfd3483571c --- /dev/null +++ b/pages/common/daps.md @@ -0,0 +1,24 @@ +# daps + +> DAPS is an open source program for transforming DocBook XML into output formats such as HTML or PDF. +> More information: . + +- Check if a DocBook XML file is valid: + +`daps -d {{path/to/file.xml}} validate` + +- Convert a DocBook XML file into PDF: + +`daps -d {{path/to/file.xml}} pdf` + +- Convert a DocBook XML file into a single HTML file: + +`daps -d {{path/to/file.xml}} html --single` + +- Display help: + +`daps --help` + +- Display version: + +`daps --version` diff --git a/pages/common/dart.md b/pages/common/dart.md new file mode 100644 index 00000000000000..2ee8be21e376f4 --- /dev/null +++ b/pages/common/dart.md @@ -0,0 +1,28 @@ +# dart + +> The tool for managing Dart projects. +> More information: . + +- Initialize a new Dart project in a directory of the same name: + +`dart create {{project_name}}` + +- Run a Dart file: + +`dart run {{path/to/file.dart}}` + +- Download dependencies for the current project: + +`dart pub get` + +- Run unit tests for the current project: + +`dart test` + +- Update an outdated project's dependencies to support null-safety: + +`dart pub upgrade --null-safety` + +- Compile a Dart file to a native binary: + +`dart compile exe {{path/to/file.dart}}` diff --git a/pages/common/dash.md b/pages/common/dash.md index a183bf63777ab5..21ef84f7f7571c 100644 --- a/pages/common/dash.md +++ b/pages/common/dash.md @@ -7,22 +7,26 @@ `dash` -- Execute a command and then exit: +- Execute specific [c]ommands: -`dash -c "{{command}}"` +`dash -c "{{echo 'dash is executed'}}"` -- Execute a script: +- Execute a specific script: `dash {{path/to/script.sh}}` -- Run commands from a script, printing each command before executing it: +- Check a specific script for syntax errors: + +`dash -n {{path/to/script.sh}}` + +- Execute a specific script while printing each command before executing it: `dash -x {{path/to/script.sh}}` -- Execute commands from a script, stopping at the first error: +- Execute a specific script and stop at the first [e]rror: `dash -e {{path/to/script.sh}}` -- Read and execute commands from stdin: +- Execute specific commands from `stdin`: -`dash -s` +`{{echo "echo 'dash is executed'"}} | dash` diff --git a/pages/common/date.md b/pages/common/date.md index cc47170ed3ca71..f5f22b29bd765c 100644 --- a/pages/common/date.md +++ b/pages/common/date.md @@ -5,24 +5,32 @@ - Display the current date using the default locale's format: -`date +"%c"` +`date +%c` -- Display the current date in UTC and ISO 8601 format: +- Display the current date in UTC, using the ISO 8601 format: -`date -u +"%Y-%m-%dT%H:%M:%S%Z"` +`date -u +%Y-%m-%dT%H:%M:%S%Z` - Display the current date as a Unix timestamp (seconds since the Unix epoch): `date +%s` -- Display a specific date (represented as a Unix timestamp) using the default format: +- Convert a date specified as a Unix timestamp to the default format: -`date -d @1473305798` +`date -d @{{1473305798}}` -- Convert a specific date to the Unix timestamp format: +- Convert a given date to the Unix timestamp format: `date -d "{{2018-09-01 00:00}}" +%s --utc` - Display the current date using the RFC-3339 format (`YYYY-MM-DD hh:mm:ss TZ`): `date --rfc-3339=s` + +- Set the current date using the format `MMDDhhmmYYYY.ss` (`YYYY` and `.ss` are optional): + +`date {{093023592021.59}}` + +- Display the current ISO week number: + +`date +%V` diff --git a/pages/common/dc.md b/pages/common/dc.md index 878085669f6bff..231fd8b351a969 100644 --- a/pages/common/dc.md +++ b/pages/common/dc.md @@ -1,24 +1,29 @@ # dc > An arbitrary precision calculator. Uses reverse polish notation (RPN). +> See also: `bc`. > More information: . -- Run calculator in interactive mode: +- Start an interactive session: `dc` -- Execute dc script in file: +- Execute a script: -`dc -f {{file}}` +`dc {{path/to/script.dc}}` -- Calculate 4 times 5 [4 5 *], subtract 17 [17 -], and [p]rint the output (using echo): +- Calculate an expression with the specified scale: -`echo "4 5 * 17 - p"| dc` +`dc --expression='{{10}} k {{5 3 /}} p'` -- Set number of decimal places to 7 [7 k], calculate 5 divided by -3 [5 _3 /] and [p]rint (using dc -e): +- Calculate 4 times 5 (4 5 *), subtract 17 (17 -), and [p]rint the output: -`dc -e "7 k 5 _3 / p"` +`dc --expression='4 5 * 17 - p'` -- Calculate the golden ratio, phi: Set number of decimal places to 100 [100 k], square root of 5 [5 v] plus 1 [1 +], divided by 2 [2 /], and [p]rint result: +- Set number of decimal places to 7 (7 k), calculate 5 divided by -3 (5 _3 /) and [p]rint: -`dc -e "100 k 5 v 1 + 2 / p"` +`dc --expression='7 k 5 _3 / p'` + +- Calculate the golden ratio, phi: set number of decimal places to 100 (100 k), square root of 5 (5 v) plus 1 (1 +), divided by 2 (2 /), and [p]rint result: + +`dc --expression='100 k 5 v 1 + 2 / p'` diff --git a/pages/common/dcfldd.md b/pages/common/dcfldd.md index 2c89d15c61e077..48520fc7ee2bf7 100644 --- a/pages/common/dcfldd.md +++ b/pages/common/dcfldd.md @@ -7,6 +7,6 @@ `dcfldd if=/dev/{{disk_device}} of={{file.img}} hash=sha256 hashlog={{file.hash}}` -- Copy a disk to a raw image file, hashing each 1GB chunk: +- Copy a disk to a raw image file, hashing each 1 GB chunk: `dcfldd if=/dev/{{disk_device}} of={{file.img}} hash={{sha512|sha384|sha256|sha1|md5}} hashlog={{file.hash}} hashwindow={{1G}}` diff --git a/pages/common/dd.md b/pages/common/dd.md index b71464cc974b51..1bad4180885577 100644 --- a/pages/common/dd.md +++ b/pages/common/dd.md @@ -3,22 +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 4MB 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}}` -- Check progress of an ongoing dd operation (Run this command from another shell): +- Generate a system backup into an IMG file: -`kill -USR1 $(pgrep ^dd)` +`dd if={{/dev/drive_device}} of={{path/to/file.img}}` + +- Restore a drive from an IMG file: + +`dd if={{path/to/file.img}} of={{/dev/drive_device}}` diff --git a/pages/common/ddev.md b/pages/common/ddev.md new file mode 100644 index 00000000000000..c2ffd91e1c3b80 --- /dev/null +++ b/pages/common/ddev.md @@ -0,0 +1,32 @@ +# ddev + +> Container based local development tool for PHP environments. +> More information: . + +- Start up a project: + +`ddev start` + +- Configure a project's type and docroot: + +`ddev config` + +- [f]ollow the log trail: + +`ddev logs -f` + +- Run composer within the container: + +`ddev composer` + +- Install a specific Node.js version: + +`ddev nvm install {{version}}` + +- Export a database: + +`ddev export-db --file={{/tmp/db.sql.gz}}` + +- Run a specific command within a container: + +`ddev exec {{echo 1}}` diff --git a/pages/common/deb-get.md b/pages/common/deb-get.md new file mode 100644 index 00000000000000..ceaf6cfade0832 --- /dev/null +++ b/pages/common/deb-get.md @@ -0,0 +1,33 @@ +# deb-get + +> `apt-get` functionality for `.deb` packages published in third party repositories or via direct download. +> Works with Linux distributions which use `apt-get`. +> More information: . + +- Update the list of available packages and versions: + +`sudo deb-get update` + +- Search for a given package: + +`sudo deb-get search {{package}}` + +- Show information about a package: + +`sudo deb-get show {{package}}` + +- Install a package, or update it to the latest available version: + +`sudo deb-get install {{package}}` + +- Remove a package (using `purge` instead also removes its configuration files): + +`sudo deb-get remove {{package}}` + +- Upgrade all installed packages to their newest available versions: + +`sudo deb-get upgrade` + +- List all available packages: + +`deb-get list` diff --git a/pages/common/declare.md b/pages/common/declare.md new file mode 100644 index 00000000000000..e716aac97c1ff0 --- /dev/null +++ b/pages/common/declare.md @@ -0,0 +1,28 @@ +# declare + +> Declare variables and give them attributes. +> More information: . + +- Declare a string variable with the specified value: + +`declare {{variable}}="{{value}}"` + +- Declare an integer variable with the specified value: + +`declare -i {{variable}}="{{value}}"` + +- Declare an array variable with the specified value: + +`declare -a {{variable}}=({{item_a item_b item_c}})` + +- Declare an associative array variable with the specified value: + +`declare -A {{variable}}=({{[key_a]=item_a [key_b]=item_b [key_c]=item_c}})` + +- Declare a readonly string variable with the specified value: + +`declare -r {{variable}}="{{value}}"` + +- Declare a global variable within a function with the specified value: + +`declare -g {{variable}}="{{value}}"` diff --git a/pages/common/deemix.md b/pages/common/deemix.md index 0b75efdd37fd59..3153c5bb0945a0 100644 --- a/pages/common/deemix.md +++ b/pages/common/deemix.md @@ -1,7 +1,7 @@ # deemix > A barebone deezer downloader library built from the ashes of Deezloader Remix. -> It can be used as a standalone CLI app or implemented in an UI using the API. +> It can be used as a standalone CLI app or implemented in a UI using the API. > More information: . - Download a track or playlist: diff --git a/pages/common/deluge.md b/pages/common/deluge.md index 10a1cc94b854d5..a105a2c0013b69 100644 --- a/pages/common/deluge.md +++ b/pages/common/deluge.md @@ -1,6 +1,6 @@ # deluge -> A command line BitTorrent client. +> A command-line BitTorrent client. > More information: . - Download a torrent: diff --git a/pages/common/deno.md b/pages/common/deno.md index 8046e12d91d7e6..9f8cb1e5fb728c 100644 --- a/pages/common/deno.md +++ b/pages/common/deno.md @@ -1,7 +1,7 @@ # deno > A secure runtime for JavaScript and TypeScript. -> More information: . +> More information: . - Run a JavaScript or TypeScript file: diff --git a/pages/common/detox.md b/pages/common/detox.md index e2995992bf0b80..56b2642e032a80 100644 --- a/pages/common/detox.md +++ b/pages/common/detox.md @@ -6,12 +6,12 @@ - Remove spaces and other undesirable characters from a file's name: -`detox {{file}}` +`detox {{path/to/file}}` -- Show how detox would rename all of the files in a directory tree: +- Show how detox would rename all the files in a directory tree: -`detox --dry-run -r {{directory}}` +`detox --dry-run -r {{path/to/directory}}` - Remove spaces and other undesirable characters from all files in a directory tree: -`detox -r {{directory}}` +`detox -r {{path/to/directory}}` diff --git a/pages/common/dexdump.md b/pages/common/dexdump.md index 1c966dbf44b94a..5bafcddbc67b1e 100644 --- a/pages/common/dexdump.md +++ b/pages/common/dexdump.md @@ -1,7 +1,7 @@ # dexdump > Display information about Android DEX files. -> More information: . +> More information: . - Extract classes and methods from an APK file: diff --git a/pages/common/df.md b/pages/common/df.md index e3a7a21e75781c..607f5fdc4f3919 100644 --- a/pages/common/df.md +++ b/pages/common/df.md @@ -7,7 +7,7 @@ `df` -- Display all filesystems and their disk usage in human readable form: +- Display all filesystems and their disk usage in human-readable form: `df -h` diff --git a/pages/common/dfc.md b/pages/common/dfc.md index 8ed9c9dd007bb9..82fa516c5aa04b 100644 --- a/pages/common/dfc.md +++ b/pages/common/dfc.md @@ -1,9 +1,9 @@ # dfc -> Gives an overview of the filesystem disk space usage with colours and graphs. +> Gives an overview of the filesystem disk space usage with colors and graphs. > More information: . -- Display filesystems and their disk usage in human readable form with colours and graphs: +- Display filesystems and their disk usage in human-readable form with colors and graphs: `dfc` @@ -11,7 +11,7 @@ `dfc -a` -- Display filesystems without colour: +- Display filesystems without color: `dfc -c never` diff --git a/pages/common/dict.md b/pages/common/dict.md new file mode 100644 index 00000000000000..55fe509560eb1e --- /dev/null +++ b/pages/common/dict.md @@ -0,0 +1,24 @@ +# dict + +> Command line dictionary using the DICT protocol. +> More information: . + +- List available databases: + +`dict -D` + +- Get information about a database: + +`dict -i {{database_name}}` + +- Look up a word in a specific database: + +`dict -d {{database_name}} {{word}}` + +- Look up a word in all available databases: + +`dict {{word}}` + +- Show information about the DICT server: + +`dict -I` diff --git a/pages/common/diff-pdf.md b/pages/common/diff-pdf.md new file mode 100644 index 00000000000000..63e026f2383dee --- /dev/null +++ b/pages/common/diff-pdf.md @@ -0,0 +1,16 @@ +# diff-pdf + +> Tool for comparing two PDFs. +> More information: . + +- Compare PDFs, indicating changes using return codes (`0` = no difference, `1` = PDFs differ): + +`diff-pdf {{path/to/a.pdf}} {{path/to/b.pdf}}` + +- Compare PDFs, outputting a PDF with visually highlighted differences: + +`diff-pdf --output-diff={{path/to/diff.pdf}} {{path/to/a.pdf}} {{path/to/b.pdf}}` + +- Compare PDFs, viewing differences in a simple GUI: + +`diff-pdf --view {{path/to/a.pdf}} {{path/to/b.pdf}}` diff --git a/pages/common/diff.md b/pages/common/diff.md index d2cb87b56a4f9e..57d84d6f98ab5d 100644 --- a/pages/common/diff.md +++ b/pages/common/diff.md @@ -9,20 +9,24 @@ - Compare files, ignoring white spaces: -`diff -w {{old_file}} {{new_file}}` +`diff --ignore-all-space {{old_file}} {{new_file}}` - Compare files, showing the differences side by side: -`diff -y {{old_file}} {{new_file}}` +`diff --side-by-side {{old_file}} {{new_file}}` - Compare files, showing the differences in unified format (as used by `git diff`): -`diff -u {{old_file}} {{new_file}}` +`diff --unified {{old_file}} {{new_file}}` - Compare directories recursively (shows names for differing files/directories as well as changes made to files): -`diff -r {{old_directory}} {{new_directory}}` +`diff --recursive {{old_directory}} {{new_directory}}` - Compare directories, only showing the names of files that differ: -`diff -rq {{old_directory}} {{new_directory}}` +`diff --recursive --brief {{old_directory}} {{new_directory}}` + +- Create a patch file for Git from the differences of two text files, treating nonexistent files as empty: + +`diff --text --unified --new-file {{old_file}} {{new_file}} > {{diff.patch}}` diff --git a/pages/common/diffoscope.md b/pages/common/diffoscope.md index 6c25a6fcd144d0..fdbc7c31aed2e3 100644 --- a/pages/common/diffoscope.md +++ b/pages/common/diffoscope.md @@ -11,7 +11,7 @@ `diffoscope --no-progress {{path/to/file1}} {{path/to/file2}}` -- Compare two files and write a HTML-report to a file (use `-` for stdout): +- Compare two files and write an HTML-report to a file (use `-` for `stdout`): `diffoscope --html {{path/to/outfile|-}} {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/dig.md b/pages/common/dig.md index d03a0f4635c7a9..4eec701c8e867b 100644 --- a/pages/common/dig.md +++ b/pages/common/dig.md @@ -1,7 +1,7 @@ # dig -> DNS Lookup utility. -> More information: . +> DNS lookup utility. +> More information: . - Lookup the IP(s) associated with a hostname (A records): diff --git a/pages/common/dillo.md b/pages/common/dillo.md new file mode 100644 index 00000000000000..194326a0b4225d --- /dev/null +++ b/pages/common/dillo.md @@ -0,0 +1,32 @@ +# dillo + +> A lightweight web browser intended for slow computers. +> More information: . + +- Launch Dillo: + +`dillo` + +- Launch Dillo with a specific window size and screen location: + +`dillo --geometry {{width}}x{{height}}+{{x_position}}+{{y_position}}` + +- Launch Dillo and open a specific URL: + +`dillo {{duckduckgo.com}}` + +- Launch Dillo and open a file or directory: + +`dillo {{path/to/file_or_directory}}` + +- Launch Dillo in full-screen mode: + +`dillo --fullwindow` + +- Display version: + +`dillo --version` + +- Display help: + +`dillo --help` diff --git a/pages/common/dircolors.md b/pages/common/dircolors.md index fdd0f52af28a62..be785b8b67c8e0 100644 --- a/pages/common/dircolors.md +++ b/pages/common/dircolors.md @@ -9,7 +9,7 @@ - Output commands to set LS_COLOR using colors from a file: -`dircolors {{file}}` +`dircolors {{path/to/file}}` - Output commands for Bourne shell: diff --git a/pages/common/direnv.md b/pages/common/direnv.md index b7396b77be6633..78ccb1c0390c5d 100644 --- a/pages/common/direnv.md +++ b/pages/common/direnv.md @@ -3,17 +3,17 @@ > Shell extension to load and unload environment variables depending on the current directory. > More information: . -- Grant direnv permission to load the specified `.envrc`: +- Grant direnv permission to load the `.envrc` present in the current directory: -`direnv allow` +`direnv allow {{.}}` -- Revoke the authorization of a given `.envrc`: +- Revoke the authorization to load the `.envrc` present in the current directory: -`direnv deny` +`direnv deny {{.}}` - Edit the `.envrc` file in the default text editor and reload the environment on exit: -`direnv edit .` +`direnv edit {{.}}` - Trigger a reload of the environment: diff --git a/pages/common/distccd.md b/pages/common/distccd.md new file mode 100644 index 00000000000000..0a0e8a9ea593ef --- /dev/null +++ b/pages/common/distccd.md @@ -0,0 +1,24 @@ +# distccd + +> Server daemon for the distcc distributed compiler. +> More information: . + +- Start a daemon with the default settings: + +`distccd --daemon` + +- Start a daemon, accepting connections from IPv4 private network ranges: + +`distccd --daemon --allow-private` + +- Start a daemon, accepting connections from a specific network address or address range: + +`distccd --daemon --allow {{ip_address|network_prefix}}` + +- Start a daemon with a lowered priority that can run a maximum of 4 tasks at a time: + +`distccd --daemon --jobs {{4}} --nice {{5}}` + +- Start a daemon and register it via mDNS/DNS-SD (Zeroconf): + +`distccd --daemon --zeroconf` diff --git a/pages/common/django-admin.md b/pages/common/django-admin.md index 761b754c0b86c2..5c7a72cbf0e83b 100644 --- a/pages/common/django-admin.md +++ b/pages/common/django-admin.md @@ -1,9 +1,9 @@ # django-admin > Django’s utility for administrative tasks. -> More information: . +> More information: . -- Create a new django project: +- Create a new Django project: `django-admin startproject {{project_name}}` diff --git a/pages/common/dlv.md b/pages/common/dlv.md new file mode 100644 index 00000000000000..8e8671ecd3c26c --- /dev/null +++ b/pages/common/dlv.md @@ -0,0 +1,28 @@ +# dlv + +> Debugger for the Go programming language. +> More information: . + +- Compile and begin debugging the main package in the current directory (by default, with no arguments): + +`dlv debug` + +- Compile and begin debugging a specific package: + +`dlv debug {{package}} {{arguments}}` + +- Compile a test binary and begin debugging the compiled program: + +`dlv test` + +- Connect to a headless debug server: + +`dlv connect {{ip_address}}` + +- Attach to a running process and begin debugging: + +`div attach {{pid}}` + +- Compile and begin tracing a program: + +`dlv trace {{package}} --regexp '{{regular_expression}}'` diff --git a/pages/common/docker-build.md b/pages/common/docker-build.md index 0b542e984f7ec4..d8a7aad9e9e090 100644 --- a/pages/common/docker-build.md +++ b/pages/common/docker-build.md @@ -15,6 +15,10 @@ `docker build --tag {{name:tag}} .` +- Build a docker image with no build context: + +`docker build --tag {{name:tag}} - < {{Dockerfile}}` + - Do not use the cache when building the image: `docker build --no-cache --tag {{name:tag}} .` diff --git a/pages/common/docker-commit.md b/pages/common/docker-commit.md new file mode 100644 index 00000000000000..df58346f2af792 --- /dev/null +++ b/pages/common/docker-commit.md @@ -0,0 +1,32 @@ +# docker commit + +> Create a new image from a container’s changes. +> More information: . + +- Create an image from a specific container: + +`docker commit {{container}} {{image}}:{{tag}}` + +- Apply a `CMD` Dockerfile instruction to the created image: + +`docker commit --change="CMD {{command}}" {{container}} {{image}}:{{tag}}` + +- Apply an `ENV` Dockerfile instruction to the created image: + +`docker commit --change="ENV {{name}}={{value}}" {{container}} {{image}}:{{tag}}` + +- Create an image with a specific author in the metadata: + +`docker commit --author="{{author}}" {{container}} {{image}}:{{tag}}` + +- Create an image with a specific comment in the metadata: + +`docker commit --message="{{comment}}" {{container}} {{image}}:{{tag}}` + +- Create an image without pausing the container during commit: + +`docker commit --pause={{false}} {{container}} {{image}}:{{tag}}` + +- Display help: + +`docker commit --help` diff --git a/pages/common/docker-compose.md b/pages/common/docker-compose.md index 57fed04a8a0596..717ce626c1b93a 100644 --- a/pages/common/docker-compose.md +++ b/pages/common/docker-compose.md @@ -1,36 +1,36 @@ -# docker-compose +# docker compose > Run and manage multi container docker applications. -> More information: . +> More information: . - List all running containers: -`docker-compose ps` +`docker compose ps` - 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` +`docker compose up --build` - Start all containers using an alternate compose file: -`docker-compose --file {{path/to/file}} up` +`docker compose --file {{path/to/file}} up` - Stop all running containers: -`docker-compose stop` +`docker compose stop` - Stop and remove all containers, networks, images, and volumes: -`docker-compose down --rmi all --volumes` +`docker compose down --rmi all --volumes` - Follow logs for all containers: -`docker-compose logs --follow` +`docker compose logs --follow` - Follow logs for a specific container: -`docker-compose logs --follow {{container_name}}` +`docker compose logs --follow {{container_name}}` diff --git a/pages/common/docker-exec.md b/pages/common/docker-exec.md index ff6ee9226718b6..823bba39b035c4 100644 --- a/pages/common/docker-exec.md +++ b/pages/common/docker-exec.md @@ -15,11 +15,11 @@ `docker exec --interactive -tty --workdir {{path/to/directory}} {{container_name}} {{command}}` -- Run a command in background on existing container but keep stdin open: +- Run a command in background on existing container but keep `stdin` open: `docker exec --interactive --detach {{container_name}} {{command}}` -- Set an environment variable in a running bash session: +- Set an environment variable in a running Bash session: `docker exec --interactive --tty --env {{variable_name}}={{value}} {{container_name}} {{/bin/bash}}` diff --git a/pages/common/docker-load.md b/pages/common/docker-load.md new file mode 100644 index 00000000000000..9ac4ce1928d898 --- /dev/null +++ b/pages/common/docker-load.md @@ -0,0 +1,16 @@ +# docker load + +> Load Docker images from files or `stdin`. +> More information: . + +- Load a Docker image from `stdin`: + +`docker load < {{path/to/image_file.tar}}` + +- Load a Docker image from a specific file: + +`docker load --input {{path/to/image_file.tar}}` + +- Load a Docker image from a specific file in quiet mode: + +`docker load --quiet --input {{path/to/image_file.tar}}` diff --git a/pages/common/docker-login.md b/pages/common/docker-login.md new file mode 100644 index 00000000000000..3e368fbd83fe6a --- /dev/null +++ b/pages/common/docker-login.md @@ -0,0 +1,20 @@ +# docker login + +> Log into a docker registry. +> More information: . + +- Interactively log into a registry: + +`docker login` + +- Log into a registry with a specific username (user will be prompted for a password): + +`docker login --username {{username}}` + +- Log into a registry with username and password: + +`docker login --username {{username}} --password {{password}} {{server}}` + +- Log into a registry with password from `stdin`: + +`echo "{{password}}" | docker login --username {{username}} --password-stdin` diff --git a/pages/common/docker-network.md b/pages/common/docker-network.md index 38be8d6869ebaa..1a5f9244167ab2 100644 --- a/pages/common/docker-network.md +++ b/pages/common/docker-network.md @@ -7,7 +7,7 @@ `docker network ls` -- Create a user defined network: +- Create a user-defined network: `docker network create --driver {{driver_name}} {{network_name}}` diff --git a/pages/common/docker-pull.md b/pages/common/docker-pull.md new file mode 100644 index 00000000000000..b848912c2d1183 --- /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-run.md b/pages/common/docker-run.md index c50b5c02f02f00..a319b5cd3228f7 100644 --- a/pages/common/docker-run.md +++ b/pages/common/docker-run.md @@ -9,20 +9,28 @@ - Run command in a new container in background and display its ID: -`docker run -d {{image}} {{command}}` +`docker run --detach {{image}} {{command}}` - Run command in a one-off container in interactive mode and pseudo-TTY: -`docker run --rm -it {{image}} {{command}}` +`docker run --rm --interactive --tty {{image}} {{command}}` - Run command in a new container with passed environment variables: -`docker run -e '{{variable}}={{value}}' -e {{variable}} {{image}} {{command}}` +`docker run --env '{{variable}}={{value}}' --env {{variable}} {{image}} {{command}}` - Run command in a new container with bind mounted volumes: -`docker run -v {{path/to/host_path}}:{{path/to/container_path}} {{image}} {{command}}` +`docker run --volume {{/path/to/host_path}}:{{/path/to/container_path}} {{image}} {{command}}` - Run command in a new container with published ports: -`docker run -p {{host_port}}:{{container_port}} {{image}} {{command}}` +`docker run --publish {{host_port}}:{{container_port}} {{image}} {{command}}` + +- Run command in a new container overwriting the entrypoint of the image: + +`docker run --entrypoint {{command}} {{image}}` + +- Run command in a new container connecting it to a network: + +`docker run --network {{network}} {{image}}` diff --git a/pages/common/docker-save.md b/pages/common/docker-save.md index fb18b01817f859..d6bd9df2983582 100644 --- a/pages/common/docker-save.md +++ b/pages/common/docker-save.md @@ -3,7 +3,7 @@ > Export one or more docker images to archive. > More information: . -- Save an image by redirecting stdout to a tar archive: +- Save an image by redirecting `stdout` to a tar archive: `docker save {{image}}:{{tag}} > {{path/to/file.tar}}` diff --git a/pages/common/docker-secret.md b/pages/common/docker-secret.md index efb42249b4095a..d6101061c470d9 100644 --- a/pages/common/docker-secret.md +++ b/pages/common/docker-secret.md @@ -3,7 +3,7 @@ > Manage Docker swarm secrets. > More information: . -- Create a new secret from stdin: +- Create a new secret from `stdin`: `{{command}} | docker secret create {{secret_name}} -` diff --git a/pages/common/docker-slim.md b/pages/common/docker-slim.md new file mode 100644 index 00000000000000..8d9901f6193b06 --- /dev/null +++ b/pages/common/docker-slim.md @@ -0,0 +1,24 @@ +# docker-slim + +> Analyze and optimize Docker images. +> More information: . + +- Start DockerSlim on interactive mode: + +`docker-slim` + +- Analyze Docker layers from a specific image: + +`docker-slim xray --target {{image:tag}}` + +- Lint a Dockerfile: + +`docker-slim lint --target {{path/to/Dockerfile}}` + +- Analyze and generate an optimized Docker image: + +`docker-slim build {{image:tag}}` + +- Display help for a subcommand: + +`docker-slim {{subcommand}} --help` diff --git a/pages/common/docker-start.md b/pages/common/docker-start.md index 09993cd63bed86..73e177299d9f02 100644 --- a/pages/common/docker-start.md +++ b/pages/common/docker-start.md @@ -11,7 +11,7 @@ `docker start {{container}}` -- Start a container, attaching stdout and stderr and forwarding signals: +- Start a container, attaching `stdout` and `stderr` and forwarding signals: `docker start --attach {{container}}` diff --git a/pages/common/docker-stats.md b/pages/common/docker-stats.md index 3738535e9f4508..bb9310c77520bc 100644 --- a/pages/common/docker-stats.md +++ b/pages/common/docker-stats.md @@ -11,7 +11,7 @@ `docker stats {{container_name}}` -- Change the columns format to display container's cpu usage percentage: +- Change the columns format to display container's CPU usage percentage: `docker stats --format "{{.Name}}:\t{{.CPUPerc}}"` diff --git a/pages/common/docker-tag.md b/pages/common/docker-tag.md new file mode 100644 index 00000000000000..7ffe68d7374493 --- /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-update.md b/pages/common/docker-update.md new file mode 100644 index 00000000000000..a7170525bc3dd4 --- /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/docker-volume.md b/pages/common/docker-volume.md new file mode 100644 index 00000000000000..ea519c5165e789 --- /dev/null +++ b/pages/common/docker-volume.md @@ -0,0 +1,36 @@ +# docker volume + +> Manage Docker volumes. +> More information: . + +- Create a volume: + +`docker volume create {{volume_name}}` + +- Create a volume with a specific label: + +`docker volume create --label {{label}} {{volume_name}}` + +- Create a `tmpfs` volume a size of 100 MiB and an uid of 1000: + +`docker volume create --opt {{type}}={{tmpfs}} --opt {{device}}={{tmpfs}} --opt {{o}}={{size=100m,uid=1000}} {{volume_name}}` + +- List all volumes: + +`docker volume ls` + +- Remove a volume: + +`docker volume rm {{volume_name}}` + +- Display information about a volume: + +`docker volume inspect {{volume_name}}` + +- Remove all unused local volumes: + +`docker volume prune` + +- Display help for a subcommand: + +`docker volume {{subcommand}} --help` diff --git a/pages/common/docker.md b/pages/common/docker.md index 4b87c36c32ff86..66cd595ce102fa 100644 --- a/pages/common/docker.md +++ b/pages/common/docker.md @@ -1,15 +1,12 @@ # docker > Manage Docker containers and images. +> Some subcommands such as `docker run` have their own usage documentation. > More information: . -- List currently running docker containers: - -`docker ps` - - List all docker containers (running and stopped): -`docker ps -a` +`docker ps --all` - Start a container from an image, with a custom name: @@ -23,7 +20,11 @@ `docker pull {{image}}` -- Open a shell inside of an already running container: +- Display the list of already downloaded images: + +`docker images` + +- Open a shell inside a running container: `docker exec -it {{container_name}} {{sh}}` diff --git a/pages/common/docsify.md b/pages/common/docsify.md new file mode 100644 index 00000000000000..1e82802fb4bcc4 --- /dev/null +++ b/pages/common/docsify.md @@ -0,0 +1,24 @@ +# docsify + +> Initialize and serve markdown documentation. +> More information: . + +- Initialize a new documentation in the current directory: + +`docsify init` + +- Initialize a new documentation in the specified directory: + +`docsify init {{path/to/directory}}` + +- Serve local documentation on `localhost:3000` with live reload: + +`docsify serve {{path/to/directory}}` + +- Serve local documentation on `localhost` at the specified port: + +`docsify serve --port {{80}} {{path/to/directory}}` + +- Generate a sidebar markdown file in the specified directory: + +`docsify generate {{path/to/directory}}` diff --git a/pages/common/doctl-account.md b/pages/common/doctl-account.md new file mode 100644 index 00000000000000..93202d75c275cc --- /dev/null +++ b/pages/common/doctl-account.md @@ -0,0 +1,16 @@ +# doctl account + +> Retrieve information about Digital Ocean accounts. +> More information: . + +- Display account info: + +`doctl account get` + +- Show the hourly API limit, progress towards it, and when the rate limit resets: + +`doctl account ratelimit` + +- Display help: + +`doctl account --help` diff --git a/pages/common/doctl-apps.md b/pages/common/doctl-apps.md new file mode 100644 index 00000000000000..b1b298ed980539 --- /dev/null +++ b/pages/common/doctl-apps.md @@ -0,0 +1,36 @@ +# doctl apps + +> Used to manage digitalocean apps. +> More information: . + +- Create an app: + +`doctl apps create` + +- Create a deployment for a specific app: + +`doctl apps create-deployment {{app_id}}` + +- Delete an app interactively: + +`doctl apps delete {{app_id}}` + +- Get an app: + +`doctl apps get` + +- List all apps: + +`doctl apps list` + +- List all deployments from a specific app: + +`doctl apps list-deployments {{app_id}}` + +- Get logs from a specific app: + +`doctl apps logs {{app_id}}` + +- Update a specific app with a given app spec: + +`doctl apps update {{app_id}} --spec {{path/to/spec.yml}}` diff --git a/pages/common/doctl-auth.md b/pages/common/doctl-auth.md new file mode 100644 index 00000000000000..3b241958fc40e0 --- /dev/null +++ b/pages/common/doctl-auth.md @@ -0,0 +1,24 @@ +# doctl auth + +> Authenticate doctl with one or more API tokens. +> More information: . + +- Open a prompt to enter an API token and label its context: + +`doctl auth init --context {{token_label}}` + +- List authentication contexts (API tokens): + +`doctl auth list` + +- Switch contexts (API tokens): + +`doctl auth switch --context {{token_label}}` + +- Remove a stored authentication context (API token): + +`doctl auth remove --context {{token_label}}` + +- Show available commands: + +`doctl auth --help` diff --git a/pages/common/doctl-balance.md b/pages/common/doctl-balance.md new file mode 100644 index 00000000000000..eb5087cccd8f02 --- /dev/null +++ b/pages/common/doctl-balance.md @@ -0,0 +1,16 @@ +# doctl balance + +> Show the balance of a Digital Ocean account. +> More information: . + +- Get balance of the account associated with the current context: + +`doctl balance get` + +- Get the balance of an account associated with an access token: + +`doctl balance get --access-token {{access_token}}` + +- Get the balance of an account associated with a specified context: + +`doctl balance get --context` diff --git a/pages/common/doctl-compute-droplet.md b/pages/common/doctl-compute-droplet.md new file mode 100644 index 00000000000000..7af3776a9e9283 --- /dev/null +++ b/pages/common/doctl-compute-droplet.md @@ -0,0 +1,16 @@ +# doctl compute droplet + +> List, create, and delete virtual machines which are called droplets. +> More information: . + +- Create a droplet: + +`doctl compute droplet create --region {{region}} --image {{os_image}} --size {{vps_type}} {{droplet_name}}` + +- Delete a droplet: + +`doctl compute droplet delete {{droplet_id|droplet_name}}` + +- List droplets: + +`doctl compute droplet list` diff --git a/pages/common/doctl-kubernetes-cluster.md b/pages/common/doctl-kubernetes-cluster.md new file mode 100644 index 00000000000000..c47196068a83a5 --- /dev/null +++ b/pages/common/doctl-kubernetes-cluster.md @@ -0,0 +1,28 @@ +# doctl kubernetes cluster + +> Manage Kubernetes clusters and view configuration options relating to clusters. +> More information: . + +- Create a Kubernetes cluster: + +`doctl kubernetes cluster create --count {{3}} --region {{nyc1}} --size {{s-1vcpu-2gb}} --version {{latest}} {{cluster_name}}` + +- List all Kubernetes clusters: + +`doctl kubernetes cluster list` + +- Fetch and save the kubeconfig: + +`doctl kubernetes cluster kubeconfig save {{cluster_name}}` + +- Check for available upgrades: + +`doctl kubernetes cluster get-upgrades {{cluster_name}}` + +- Upgrade a cluster to a new Kubernetes version: + +`doctl kubernetes cluster upgrade {{cluster_name}}` + +- Delete a cluster: + +`doctl kubernetes cluster delete {{cluster_name}}` diff --git a/pages/common/doctl-kubernetes-options.md b/pages/common/doctl-kubernetes-options.md new file mode 100644 index 00000000000000..3dadefac940ca5 --- /dev/null +++ b/pages/common/doctl-kubernetes-options.md @@ -0,0 +1,16 @@ +# doctl kubernetes options + +> Provides values available for use with doctl's Kubernetes commands. +> More information: . + +- List regions that support Kubernetes clusters: + +`doctl kubernetes options regions` + +- List machine sizes that can be used in a Kubernetes cluster: + +`doctl kubernetes options sizes` + +- List Kubernetes versions that can be used with DigitalOcean clusters: + +`doctl kubernetes options versions` diff --git a/pages/common/doctl-serverless.md b/pages/common/doctl-serverless.md new file mode 100644 index 00000000000000..e7c675d621a31c --- /dev/null +++ b/pages/common/doctl-serverless.md @@ -0,0 +1,20 @@ +# doctl serverless + +> Manage serverless functions. +> More information: . + +- Connect local serverless support to a functions namespace: + +`doctl serverless connect` + +- Deploy a functions project to your functions namespace: + +`doctl serverless deploy` + +- Obtain metadata of a functions project: + +`doctl serverless get-metadata` + +- Provide information about serverless support: + +`doctl serverless status` diff --git a/pages/common/dog.md b/pages/common/dog.md new file mode 100644 index 00000000000000..1d3b478d14862d --- /dev/null +++ b/pages/common/dog.md @@ -0,0 +1,29 @@ +# dog + +> DNS lookup utility. +> It has colorful output, supports DNS-over-TLS and DNS-over-HTTPS protocols, and can emit JSON. +> More information: . + +- Lookup the IP(s) associated with a hostname (A records): + +`dog {{example.com}}` + +- Query the MX records type associated with a given domain name: + +`dog {{example.com}} MX` + +- Specify a specific DNS server to query (e.g. Cloudflare): + +`dog {{example.com}} MX @{{1.1.1.1}}` + +- Query over TCP rather than UDP: + +`dog {{example.com}} MX @{{1.1.1.1}} --tcp` + +- Query the MX records type associated with a given domain name over TCP using explicit arguments: + +`dog --query {{example.com}} --type MX --nameserver {{1.1.1.1}} --tcp` + +- Lookup the IP(s) associated with a hostname (A records) using DNS over HTTPS (DoH): + +`dog {{example.com}} --https @{{https://cloudflare-dns.com/dns-query}}` diff --git a/pages/common/dolt-clone.md b/pages/common/dolt-clone.md new file mode 100644 index 00000000000000..948b5177c13c05 --- /dev/null +++ b/pages/common/dolt-clone.md @@ -0,0 +1,32 @@ +# dolt clone + +> Clone a repository into a new directory. +> More information: . + +- Clone an existing repository into a specific directory (defaults to the repository name): + +`dolt clone {{repository_url}} {{path/to/directory}}` + +- Clone an existing repository and add a specific remote (defaults to origin): + +`dolt clone --remote {{remote_name}} {{repository_url}}` + +- Clone an existing repository only fetching a specific branch (defaults to all branches): + +`dolt clone --branch {{branch_name}} {{repository_url}}` + +- Clone a repository, using an AWS region (uses the profile's default region if none is provided): + +`dolt clone --aws-region {{region_name}} {{repository_url}}` + +- Clone a repository, using an AWS credentials file: + +`dolt clone --aws-creds-file {{credentials_file}} {{repository_url}}` + +- Clone a repository, using an AWS credentials profile (uses the default profile if none is provided): + +`dolt clone --aws-creds-profile {{profile_name}} {{repository_url}}` + +- Clone a repository, using an AWS credentials type: + +`dolt clone --aws-creds-type {{credentials_type}} {{repository_url}}` diff --git a/pages/common/dolt-config.md b/pages/common/dolt-config.md index ebdd7976089c22..35656bcccf6a55 100644 --- a/pages/common/dolt-config.md +++ b/pages/common/dolt-config.md @@ -11,11 +11,11 @@ `dolt config --get {{name}}` -- Modify the value of a local configuration variable, creating it if does not exist: +- Modify the value of a local configuration variable, creating it if it doesn't exist: `dolt config --add {{name}} {{value}}` -- Modify the value of a global configuration variable, creating it if does not exist: +- Modify the value of a global configuration variable, creating it if it doesn't exist: `dolt config --global --add {{name}} {{value}}` diff --git a/pages/common/dolt-fetch.md b/pages/common/dolt-fetch.md new file mode 100644 index 00000000000000..120f37c6cdb163 --- /dev/null +++ b/pages/common/dolt-fetch.md @@ -0,0 +1,16 @@ +# dolt fetch + +> Download objects and refs from another repository. +> More information: . + +- Fetch the latest changes from the default remote upstream repository (origin): + +`dolt fetch` + +- Fetch latest changes from a specific remote upstream repository: + +`dolt fetch {{remote_name}}` + +- Update branches with the current state of the remote, overwriting any conflicting history: + +`dolt fetch -f` diff --git a/pages/common/dolt-init.md b/pages/common/dolt-init.md new file mode 100644 index 00000000000000..74480ec440d8e7 --- /dev/null +++ b/pages/common/dolt-init.md @@ -0,0 +1,12 @@ +# dolt init + +> Create an empty Dolt data repository. +> More information: . + +- Initialize a new Dolt data repository in the current directory: + +`dolt init` + +- Initialize a new Dolt data repository creating a commit with the specified metadata: + +`dolt init --name "{{name}}" --email "{{email}}" --date "{{2021-12-31T00:00:00}}" -b "{{branch_name}}"` diff --git a/pages/common/dolt-merge.md b/pages/common/dolt-merge.md new file mode 100644 index 00000000000000..4b74967453a1c9 --- /dev/null +++ b/pages/common/dolt-merge.md @@ -0,0 +1,24 @@ +# dolt merge + +> Join two or more development histories together. +> More information: . + +- Incorporate changes from the named commits into the current branch: + +`dolt merge {{branch_name}}` + +- Incorporate changes from the named commits into the current branch without updating the commit history: + +`dolt merge --squash {{branch_name}}` + +- Merge a branch and create a merge commit even when the merge resolves as a fast-forward: + +`dolt merge --no-ff {{branch_name}}` + +- Merge a branch and create a merge commit with a specific commit message: + +`dolt merge --no-ff -m "{{message}}" {{branch_name}}` + +- Abort the current conflict resolution process: + +`dolt merge --abort` diff --git a/pages/common/dolt-sql.md b/pages/common/dolt-sql.md new file mode 100644 index 00000000000000..c09a2689e62970 --- /dev/null +++ b/pages/common/dolt-sql.md @@ -0,0 +1,12 @@ +# dolt sql + +> Run a SQL query. Multiple SQL statements must be separated by semicolons. +> More information: . + +- Run a single query: + +`dolt sql --query "{{INSERT INTO t values (1, 3);}}"` + +- List all saved queries: + +`dolt sql --list-saved` diff --git a/pages/common/dolt-status.md b/pages/common/dolt-status.md new file mode 100644 index 00000000000000..adfecf22bb2c9b --- /dev/null +++ b/pages/common/dolt-status.md @@ -0,0 +1,8 @@ +# dolt status + +> Display the status of the database session. +> More information: . + +- Display the status: + +`dolt status` diff --git a/pages/common/dolt-version.md b/pages/common/dolt-version.md new file mode 100644 index 00000000000000..c1763731982af9 --- /dev/null +++ b/pages/common/dolt-version.md @@ -0,0 +1,8 @@ +# dolt version + +> Displays the current dolt CLI version. +> More information: . + +- Display version: + +`dolt version` diff --git a/pages/common/dolt.md b/pages/common/dolt.md index c391443ed2f519..58dbc092639bf2 100644 --- a/pages/common/dolt.md +++ b/pages/common/dolt.md @@ -1,6 +1,7 @@ # dolt -> Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a Git repository. +> Dolt is an SQL database that you can fork, clone, branch, merge, push and pull just like a Git repository. +> Some subcommands such as `dolt commit` have their own usage documentation. > More information: . - Execute a dolt subcommand: diff --git a/pages/common/dot.md b/pages/common/dot.md index a43accbab8db68..179ae9a99263a3 100644 --- a/pages/common/dot.md +++ b/pages/common/dot.md @@ -1,12 +1,25 @@ # dot -> A command-line tool to produce layered drawings of directed graphs. -> More information: . +> Render an image of a `linear directed` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . -- Render an image file and determine output filename based on input filename and selected format: +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): -`dot -Tpng -O {{path/to/file.dot}}` +`dot -T {{png}} -O {{path/to/input.gv}}` -- Create an SVG from DOT file: +- Render a `svg` image with the specified output filename (lowercase -o): -`dot -Tsvg -o {{path/to/out_file.svg}} {{path/to/file.dot}}` +`dot -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`dot -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | dot -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`dot -?` diff --git a/pages/common/dotnet-build.md b/pages/common/dotnet-build.md index ab5bec479c724a..e8d6f732f3ba9b 100644 --- a/pages/common/dotnet-build.md +++ b/pages/common/dotnet-build.md @@ -1,7 +1,7 @@ # dotnet build > Builds a .NET application and its dependencies. -> More information: . +> More information: . - Compile the project or solution in the current directory: diff --git a/pages/common/dotnet-ef.md b/pages/common/dotnet-ef.md new file mode 100644 index 00000000000000..13a46ecf0d3989 --- /dev/null +++ b/pages/common/dotnet-ef.md @@ -0,0 +1,36 @@ +# dotnet ef + +> Perform design-time development tasks for Entity Framework Core. +> More information: . + +- Update the database to a specified migration: + +`dotnet ef database update {{migration}}` + +- Drop the database: + +`dotnet ef database drop` + +- List available `DbContext` types: + +`dotnet ef dbcontext list` + +- Generate code for a `DbContext` and entity types for a database: + +`dotnet ef dbcontext scaffold {{connection_string}} {{provider}}` + +- Add a new migration: + +`dotnet ef migrations add {{name}}` + +- Remove the last migration, rolling back the code changes that were done for the latest migration: + +`dotnet ef migrations remove` + +- List available migrations: + +`dotnet ef migrations list` + +- Generate a SQL script from migrations range: + +`dotnet ef migrations script {{from_migration}} {{to_migration}}` diff --git a/pages/common/dotnet-publish.md b/pages/common/dotnet-publish.md index 52604f1e95eb32..19772f03b02075 100644 --- a/pages/common/dotnet-publish.md +++ b/pages/common/dotnet-publish.md @@ -1,7 +1,7 @@ # dotnet publish > Publish a .NET application and its dependencies to a directory for deployment to a hosting system. -> More information: . +> More information: . - Compile a .NET project in release mode: diff --git a/pages/common/dotnet-restore.md b/pages/common/dotnet-restore.md index 4f8bc6b5152be1..e82aad9bc4bc12 100644 --- a/pages/common/dotnet-restore.md +++ b/pages/common/dotnet-restore.md @@ -1,7 +1,7 @@ # dotnet restore > Restores the dependencies and tools of a .NET project. -> More information: . +> More information: . - Restore dependencies for a .NET project or solution in the current directory: diff --git a/pages/common/dotnet-tool.md b/pages/common/dotnet-tool.md new file mode 100644 index 00000000000000..7478105778d5b6 --- /dev/null +++ b/pages/common/dotnet-tool.md @@ -0,0 +1,32 @@ +# dotnet tool + +> Manage .NET tools and search published tools in NuGet. +> More information: . + +- Install a global tool (don't use `--global` for local tools): + +`dotnet tool install --global {{dotnetsay}}` + +- Install tools defined in the local tool manifest: + +`dotnet tool restore` + +- Update a specific global tool (don't use `--global` for local tools): + +`dotnet tool update --global {{tool_name}}` + +- Uninstall a global tool (don't use `--global` for local tools): + +`dotnet tool uninstall --global {{tool_name}}` + +- List installed global tools (don't use `--global` for local tools): + +`dotnet tool list --global` + +- Search tools in NuGet: + +`dotnet tool search {{search_term}}` + +- Display help: + +`dotnet tool --help` diff --git a/pages/common/dotnet.md b/pages/common/dotnet.md index d2f1bf5f4ca02b..e27b368b28ad49 100644 --- a/pages/common/dotnet.md +++ b/pages/common/dotnet.md @@ -1,13 +1,14 @@ # dotnet -> Cross platform .NET command line tools for .NET Core. -> More information: . +> Cross platform .NET command-line tools for .NET Core. +> Some subcommands such as `dotnet build` have their own usage documentation. +> More information: . - Initialize a new .NET project: `dotnet new {{template_short_name}}` -- Restore nuget packages: +- Restore NuGet packages: `dotnet restore` diff --git a/pages/common/drupal.md b/pages/common/drupal.md index 7a39aa8a99af5e..afae74e5c2b524 100644 --- a/pages/common/drupal.md +++ b/pages/common/drupal.md @@ -1,7 +1,7 @@ # drupal -> CLI for Drupal. -> Generates boilerplate code, interacts with and debugs Drupal projects. +> Generate boilerplate code, interact with and debug Drupal projects. +> Some subcommands such as `drupal check` have their own usage documentation. > More information: . - Install a module: diff --git a/pages/common/du.md b/pages/common/du.md index 680f90634cba56..6e0a5279cbbc9f 100644 --- a/pages/common/du.md +++ b/pages/common/du.md @@ -3,7 +3,7 @@ > Disk usage: estimate and summarize file and directory space usage. > More information: . -- List the sizes of a directory and any subdirectories, in the given unit (B/KB/MB): +- List the sizes of a directory and any subdirectories, in the given unit (B/KiB/MiB): `du -{{b|k|m}} {{path/to/directory}}` @@ -11,7 +11,7 @@ `du -h {{path/to/directory}}` -- Show the size of a single directory, in human readable units: +- Show the size of a single directory, in human-readable units: `du -sh {{path/to/directory}}` @@ -25,4 +25,4 @@ - List the human-readable size of all `.jpg` files in subdirectories of the current directory, and show a cumulative total at the end: -`du -ch */*.jpg` +`du -ch {{*/*.jpg}}` diff --git a/pages/common/duc.md b/pages/common/duc.md new file mode 100644 index 00000000000000..f98b2dccaef542 --- /dev/null +++ b/pages/common/duc.md @@ -0,0 +1,28 @@ +# duc + +> Duc is a collection of tools for indexing, inspecting and visualizing disk usage. Duc maintains a database of accumulated sizes of directories of the file system, allowing queries this database, or create fancy graphs to show where data is. +> More information: . + +- Index the /usr directory, writing to the default database location ~/.duc.db: + +`duc index {{/usr}}` + +- List all files and directories under /usr/local, showing relative file sizes in a [g]raph: + +`duc ls -Fg {{/usr/local}}` + +- List all files and directories under /usr/local using treeview recursively: + +`duc ls -Fg -R {{/usr/local}}` + +- Start the graphical interface to explore the file system using sunburst graphs: + +`duc gui {{/usr}}` + +- Run the ncurses console interface to explore the file system: + +`duc ui {{/usr}}` + +- Dump database info: + +`duc info` diff --git a/pages/common/duf.md b/pages/common/duf.md new file mode 100644 index 00000000000000..f41481ac8c4fd1 --- /dev/null +++ b/pages/common/duf.md @@ -0,0 +1,20 @@ +# duf + +> Disk Usage/Free Utility. +> More information: . + +- List accessible devices: + +`duf` + +- List everything (such as pseudo, duplicate or inaccessible file systems): + +`duf --all` + +- Only show specified devices or mount points: + +`duf {{path/to/directory1 path/to/directory2 ...}}` + +- Sort the output by a specified criteria: + +`duf --sort {{size|used|avail|usage}}` diff --git a/pages/common/dumpcap.md b/pages/common/dumpcap.md new file mode 100644 index 00000000000000..dc12074b3e4e48 --- /dev/null +++ b/pages/common/dumpcap.md @@ -0,0 +1,20 @@ +# dumpcap + +> A network traffic dump tool. +> More information: . + +- Display available interfaces: + +`dumpcap --list-interfaces` + +- Capture packets on a specific interface: + +`dumpcap --interface {{1}}` + +- Capture packets to a specific location: + +`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}}` + +- Write to a ring buffer with a specific max file limit of a specific size: + +`dumpcap --interface {{1}} -w {{path/to/output_file.pcapng}} --ring-buffer filesize:{{500000}} --ring-buffer files:{{10}}` diff --git a/pages/common/dune.md b/pages/common/dune.md new file mode 100644 index 00000000000000..25b89c696edb2f --- /dev/null +++ b/pages/common/dune.md @@ -0,0 +1,20 @@ +# dune + +> A build system for OCaml programs. +> More information: . + +- Build all targets: + +`dune build` + +- Clean up the workspace: + +`dune clean` + +- Run all tests: + +`dune runtest` + +- Start the utop REPL with compiled modules automatically loaded into it, to remove the need to load them by hand: + +`dune utop` diff --git a/pages/common/duplicacy.md b/pages/common/duplicacy.md new file mode 100644 index 00000000000000..ae91aeb79f9e62 --- /dev/null +++ b/pages/common/duplicacy.md @@ -0,0 +1,36 @@ +# duplicacy + +> A lock-free deduplication cloud backup tool. +> More information: . + +- Use current directory as the repository, initialize a SFTP storage and encrypt the storage with a password: + +`duplicacy init -e {{snapshot_id}} {{sftp://user@192.168.2.100/path/to/storage/}}` + +- Save a snapshot of the repository to the default storage: + +`duplicacy backup` + +- List snapshots of current repository: + +`duplicacy list` + +- Restore the repository to a previously saved snapshot: + +`duplicacy restore -r {{revision}}` + +- Check the integrity of snapshots: + +`duplicacy check` + +- Add another storage to be used for the existing repository: + +`duplicacy add {{storage_name}} {{snapshot_id}} {{storage_url}}` + +- Prune a specific revision of snapshot: + +`duplicacy prune -r {{revision}}` + +- Prune revisions, keeping one revision every `n` days for all revisions older than `m` days: + +`duplicacy prune -keep {{n:m}}` diff --git a/pages/common/dvc-checkout.md b/pages/common/dvc-checkout.md index 22d7299e8e10b3..625bc39d0a858f 100644 --- a/pages/common/dvc-checkout.md +++ b/pages/common/dvc-checkout.md @@ -7,7 +7,7 @@ `dvc checkout` -- Checkout to latest version of a specified target: +- Checkout the latest version of a specified target: `dvc checkout {{target}}` diff --git a/pages/common/dvc.md b/pages/common/dvc.md index 0ddedd8f1c0cf6..3a83b1cc2808bb 100644 --- a/pages/common/dvc.md +++ b/pages/common/dvc.md @@ -1,6 +1,7 @@ # dvc > Data Version Control: like `git` for data. +> Some subcommands such as `dvc commit` have their own usage documentation. > More information: . - Check the DVC version: diff --git a/pages/common/dwebp.md b/pages/common/dwebp.md new file mode 100644 index 00000000000000..da29a9455cd1f4 --- /dev/null +++ b/pages/common/dwebp.md @@ -0,0 +1,29 @@ +# dwebp + +> `dwebp` decompresses WebP files into PNG, PAM, PPM or PGM images. +> Animated WebP files are not supported. +> More information: . + +- Convert a `webp` file into a `png` file: + +`dwebp {{path/to/input.webp}} -o {{path/to/output.png}}` + +- Convert a `webp` file into a specific filetype: + +`dwebp {{path/to/input.webp}} -bmp|-tiff|-pam|-ppm|-pgm|-yuv -o {{path/to/output}}` + +- Convert a `webp` file, using multi-threading if possible: + +`dwebp {{path/to/input.webp}} -o {{path/to/output.png}} -mt` + +- Convert a `webp` file, but also crop and scale at the same time: + +`dwebp {{input.webp}} -o {{output.png}} -crop {{x_pos}} {{y_pos}} {{width}} {{height}} -scale {{width}} {{height}}` + +- Convert a `webp` file and flip the output: + +`dwebp {{path/to/input.webp}} -o {{path/to/output.png}} -flip` + +- Convert a `webp` file and don't use in-loop filtering to speed up the decoding process: + +`dwebp {{path/to/input.webp}} -o {{path/to/output.png}} -nofilter` diff --git a/pages/common/ebook-convert.md b/pages/common/ebook-convert.md index 7e0900f96ddcce..ecaeb2214b6d0f 100644 --- a/pages/common/ebook-convert.md +++ b/pages/common/ebook-convert.md @@ -1,13 +1,13 @@ # ebook-convert -> Can be used to convert ebooks between common formats, e.g., pdf, epub and mobi. -> Part of the Calibre ebook library tool. +> Can be used to convert e-books between common formats, e.g. PDF, EPUB and MOBI. +> Part of the Calibre e-book library tool. > More information: . -- Convert an ebook into another format: +- Convert an e-book into another format: -`ebook-convert {{source}} {{destination}}` +`ebook-convert {{path/to/input_file}} {{output_file}}` -- Convert Markdown or HTML to ebook with TOC, title and author: +- Convert Markdown or HTML to e-book with TOC, title and author: -`ebook-convert {{source}} {{destination}} --level1-toc="//h:h1" --level2-toc="//h:h2" --level3-toc="//h:h3" --title={{title}} --authors={{author}}` +`ebook-convert {{path/to/input_file}} {{output_file}} --level1-toc="//h:h1" --level2-toc="//h:h2" --level3-toc="//h:h3" --title={{title}} --authors={{author}}` diff --git a/pages/common/ed.md b/pages/common/ed.md index 45ad803578326a..dc54074e8d839a 100644 --- a/pages/common/ed.md +++ b/pages/common/ed.md @@ -1,36 +1,33 @@ # ed > The original Unix text editor. -> More information: . +> See also: `awk`, `sed`. +> More information: . -- Start ed, editing an empty document (which can be saved as a new file in the current directory): +- Start an interactive editor session with an empty document: `ed` -- Start ed, editing an empty document, with `:` as a command prompt indicator: +- Start an interactive editor session with an empty document and a specific prompt: -`ed -p :` +`ed --prompt='> '` -- Start ed editing an existing file (this shows the byte count of the loaded file): +- Start an interactive editor session with user-friendly errors: -`ed -p : {{path/to/file}}` +`ed --verbose` -- Toggle the printing of error explanations. (By default, explanations are not printed and only a `?` appears): +- Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt: -`H` +`ed --quiet` -- Add text to the current document. Mark completion by entering a period by itself in a new line: +- Start an interactive editor session without exit status change when command fails: -`a{{text_to_insert}}.` +`ed --loose-exit-status` -- Print the entire document (`,` is a shortcut to the range `1,$` which covers the start to the end of the document): +- Edit a specific file (this shows the byte count of the loaded file): -`,p` +`ed {{path/to/file}}` -- Write the current document to a new file (the filename can be omitted if `ed` was called with an existing file): +- Replace a string with a specific replacement for all lines: -`w {{filename}}` - -- Quit ed: - -`q` +`,s/{{regular_expression}}/{{replacement}}/g` diff --git a/pages/common/edgepaint.md b/pages/common/edgepaint.md new file mode 100644 index 00000000000000..071443d3138300 --- /dev/null +++ b/pages/common/edgepaint.md @@ -0,0 +1,21 @@ +# edgepaint + +> Colorize edges of a graph layout to clarify crossing edges. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Colorize edges of one or more graph layouts (that already have layout information) to clarify crossing edges: + +`edgepaint {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Colorize edges using a color scheme. (See ): + +`edgepaint -color-scheme={{accent7}} {{path/to/layout.gv}} > {{path/to/output.gv}}` + +- Lay out a graph and colorize its edges, then convert to a PNG image: + +`dot {{path/to/input.gv}} | edgepaint | dot -T {{png}} > {{path/to/output.png}}` + +- Display help for `edgepaint`: + +`edgepaint -?` diff --git a/pages/common/eget.md b/pages/common/eget.md new file mode 100644 index 00000000000000..c35cd4cc2b2f95 --- /dev/null +++ b/pages/common/eget.md @@ -0,0 +1,32 @@ +# eget + +> Easily install prebuilt binaries from GitHub. +> More information: . + +- Download a prebuilt binary for the current system from a repository on GitHub: + +`eget {{zyedidia/micro}}` + +- Download from a URL: + +`eget {{https://go.dev/dl/go1.17.5.linux-amd64.tar.gz}}` + +- Specify the location to place the downloaded files: + +`eget {{zyedidia/micro}} --to={{path/to/directory}}` + +- Specify a `git` tag instead of using the latest version: + +`eget {{zyedidia/micro}} --tag={{v2.0.10}}` + +- Install the latest pre-release instead of the latest stable version: + +`eget {{zyedidia/micro}} --pre-release` + +- Only download the asset, skipping extraction: + +`eget {{zyedidia/micro}} --download-only` + +- Only download if there is a newer release then the currently downloaded version: + +`eget {{zyedidia/micro}} --upgrade-only` diff --git a/pages/common/egrep.md b/pages/common/egrep.md new file mode 100644 index 00000000000000..9dcf883d6d5a45 --- /dev/null +++ b/pages/common/egrep.md @@ -0,0 +1,28 @@ +# egrep + +> Find patterns in files using extended regular expression (supports `?`, `+`, `{}`, `()` and `|`). +> More information: . + +- Search for a pattern within a file: + +`egrep "{{search_pattern}}" {{path/to/file}}` + +- Search for a pattern within multiple files: + +`egrep "{{search_pattern}}" {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}` + +- Search `stdin` for a pattern: + +`cat {{path/to/file}} | egrep {{search_pattern}}` + +- Print file name and line number for each match: + +`egrep --with-filename --line-number "{{search_pattern}}" {{path/to/file}}` + +- Search for a pattern in all files recursively in a directory, ignoring binary files: + +`egrep --recursive --binary-files={{without-match}} "{{search_pattern}}" {{path/to/directory}}` + +- Search for lines that do not match a pattern: + +`egrep --invert-match "{{search_pattern}}" {{path/to/file}}` diff --git a/pages/common/eksctl.md b/pages/common/eksctl.md new file mode 100644 index 00000000000000..1cfb31383caa1d --- /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/electron-packager.md b/pages/common/electron-packager.md index 8d54425345cf36..00a4d7f058fa2f 100644 --- a/pages/common/electron-packager.md +++ b/pages/common/electron-packager.md @@ -1,6 +1,6 @@ # electron-packager -> A tool used to build Electron app executables for Windows, Linux and MacOS. +> A tool used to build Electron app executables for Windows, Linux and macOS. > Requires a valid package.json in the application directory. > More information: . @@ -16,6 +16,6 @@ `electron-packager "{{path/to/app}}" "{{app_name}}" --platform="{{linux}}" --arch="{{x64}}"` -- Package an application for ARM MacOS: +- Package an application for ARM macOS: `electron-packager "{{path/to/app}}" "{{app_name}}" --platform="{{darwin}}" --arch="{{arm64}}"` diff --git a/pages/common/elm.md b/pages/common/elm.md index 40f6dc6f2681ec..aee99740a69ba7 100644 --- a/pages/common/elm.md +++ b/pages/common/elm.md @@ -15,7 +15,7 @@ `elm make {{source}}` -- Compile an Elm file, output the result to a Javascript file: +- Compile an Elm file, output the result to a JavaScript file: `elm make {{source}} --output={{destination}}.js` diff --git a/pages/common/elvish.md b/pages/common/elvish.md new file mode 100644 index 00000000000000..738be5eb71ab11 --- /dev/null +++ b/pages/common/elvish.md @@ -0,0 +1,17 @@ +# elvish + +> Expressive programming language and a versatile interactive shell. +> See also: `nu`. +> More information: . + +- Start an interactive shell session: + +`elvish` + +- Execute specific [c]ommands: + +`elvish -c "{{echo 'elvish is executed'}}"` + +- Execute a specific script: + +`elvish {{path/to/script.elv}}` diff --git a/pages/common/emacs.md b/pages/common/emacs.md index a9895ea73de994..77bfe12ea8a623 100644 --- a/pages/common/emacs.md +++ b/pages/common/emacs.md @@ -1,24 +1,37 @@ # emacs > The extensible, customizable, self-documenting, real-time display editor. +> See also `emacsclient`. > More information: . -- Start in console mode (without X window): +- Start Emacs and open a file: -`emacs -nw` +`emacs {{path/to/file}}` -- Open a file: +- Open a file at a specified line number: -`emacs {{path/to/file}}` +`emacs +{{line_number}} {{path/to/file}}` -- Save a file: +- Run an Emacs Lisp file as a script: -`Ctrl + X, Ctrl + S` +`emacs --script {{path/to/file.el}}` -- Quit: +- Start Emacs in console mode (without an X window): -`Ctrl + X, Ctrl + C` +`emacs --no-window-system` -- Open a file at a specified line number: +- Start an Emacs server in the background (accessible via `emacsclient`): -`emacs +{{line_number}} {{path/to/file}}` +`emacs --daemon` + +- Stop a running Emacs server and all its instances, asking for confirmation on unsaved files: + +`emacsclient --eval '(save-buffers-kill-emacs)'` + +- Save a file in Emacs: + +`Ctrl + X, Ctrl + S` + +- Quit Emacs: + +`Ctrl + X, Ctrl + C` diff --git a/pages/common/emacsclient.md b/pages/common/emacsclient.md index c6e7c9ba6d01a9..eb1e7f34a3c2f7 100644 --- a/pages/common/emacsclient.md +++ b/pages/common/emacsclient.md @@ -1,24 +1,29 @@ # emacsclient -> Open files in an existing emacs server. +> Open files in an existing Emacs server. +> See also `emacs`. > More information: . -- Open files in an existing Emacs server (using GUI if available): +- Open a file in an existing Emacs server (using GUI if available): -`emacsclient {{filename}}` +`emacsclient {{path/to/file}}` -- Open file in console mode (without X window): +- Open a file in console mode (without an X window): -`emacsclient -nw {{filename}}` +`emacsclient --no-window-system {{path/to/file}}` -- Open a file in an existing emacs frame and return immediately: +- Open a file in a new Emacs window: -`emacsclient -n {{filename}}` +`emacsclient --create-frame {{path/to/file}}` -- Open file in a new emacs frame: +- Evaluate a command, printing the output to `stdout`, and then quit: -`emacsclient -c {{filename}}` +`emacsclient --eval '({{command}})'` -- Eval command in a new emacs frame: +- Specify an alternative editor in case no Emacs server is running: -`emacsclient -c -e '({{command}})'` +`emacsclient --alternate-editor {{editor}} {{path/to/file}}` + +- Stop a running Emacs server and all its instances, asking for confirmation on unsaved files: + +`emacsclient --eval '(save-buffers-kill-emacs)'` diff --git a/pages/common/ember.md b/pages/common/ember.md index 93dc7fef0104ab..802feec97a2a1e 100644 --- a/pages/common/ember.md +++ b/pages/common/ember.md @@ -1,6 +1,6 @@ # ember -> The Ember.js command line utility. +> The Ember.js command-line utility. > Used for creating and maintaining Ember.js applications. > More information: . diff --git a/pages/common/emulator.md b/pages/common/emulator.md index 6c840742764210..c06a730f189aec 100644 --- a/pages/common/emulator.md +++ b/pages/common/emulator.md @@ -1,6 +1,6 @@ # emulator -> Manager Android emulators from the command line. +> Manager Android emulators from the command-line. > More information: . - Display the help: diff --git a/pages/common/enca.md b/pages/common/enca.md index 84d764c5713b72..0a9d3f2d7f06cc 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/envoy.md b/pages/common/envoy.md index ebff22fe73c045..f7256027b98283 100644 --- a/pages/common/envoy.md +++ b/pages/common/envoy.md @@ -3,7 +3,7 @@ > A PHP-based task manager for Laravel remote servers. > More information: . -- Initialise a configuration file: +- Initialize a configuration file: `envoy init {{host_name}}` @@ -19,7 +19,7 @@ `envoy run --continue {{task_name}}` -- Dump a task as a bash script for inspection: +- Dump a task as a Bash script for inspection: `envoy run --pretend {{task_name}}` diff --git a/pages/common/envsubst.md b/pages/common/envsubst.md index c3fec2f8045eec..643ca71430f288 100644 --- a/pages/common/envsubst.md +++ b/pages/common/envsubst.md @@ -4,11 +4,11 @@ > Variables to be replaced should be in either `${var}` or `$var` format. > More information: . -- Replace environment variables in stdin and output to stdout: +- Replace environment variables in `stdin` and output to `stdout`: `echo '{{$HOME}}' | envsubst` -- Replace environment variables in an input file and output to stdout: +- Replace environment variables in an input file and output to `stdout`: `envsubst < {{path/to/input_file}}` diff --git a/pages/common/eqn.md b/pages/common/eqn.md new file mode 100644 index 00000000000000..c90004b755b2c5 --- /dev/null +++ b/pages/common/eqn.md @@ -0,0 +1,13 @@ +# eqn + +> Equation preprocessor for the groff (GNU Troff) document formatting system. +> See also `troff` and `groff`. +> More information: . + +- Process input with equations, saving the output for future typesetting with groff to PostScript: + +`eqn {{path/to/input.eqn}} > {{path/to/output.roff}}` + +- Typeset an input file with equations to PDF using the [me] macro package: + +`eqn -T {{pdf}} {{path/to/input.eqn}} | groff -{{me}} -T {{pdf}} > {{path/to/output.pdf}}` diff --git a/pages/common/ern.md b/pages/common/ern.md new file mode 100644 index 00000000000000..4a6e2243ffd555 --- /dev/null +++ b/pages/common/ern.md @@ -0,0 +1,32 @@ +# ern + +> 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: + +`ern run-{{ios|android}}` + +- Create an Electrode Native container: + +`ern create-container --miniapps {{/path/to/miniapp_directory}} --platform {{ios|android}}` + +- Publish an Electrode Native container to a local Maven repository: + +`ern publish-container --publisher {{maven}} --platform {{android}} --extra {{'{"groupId":"com.walmart.ern","artifactId":"quickstart"}'}}` + +- Transform an iOS container into a pre-compiled binary framework: + +`ern transform-container --platform {{ios}} --transformer {{xcframework}}` + +- List all installed versions of Electrode Native: + +`ern platform versions` + +- Set a logging level: + +`ern platform config set logLevel {{trace|debug}}` diff --git a/pages/common/errno.md b/pages/common/errno.md new file mode 100644 index 00000000000000..4867400886f9fe --- /dev/null +++ b/pages/common/errno.md @@ -0,0 +1,20 @@ +# errno + +> Look up errno names and descriptions. +> More information: . + +- Lookup errno description by name or code: + +`errno {{name|code}}` + +- List all errno names, codes, and descriptions: + +`errno --list` + +- Search for code whose description contains all of the given text: + +`errno --search {{text}}` + +- Search for code whose description contains all of the given text (all locales): + +`errno --search-all-locales {{text}}` diff --git a/pages/common/esbuild.md b/pages/common/esbuild.md index cef393dbeb662e..7ddfc02232c931 100644 --- a/pages/common/esbuild.md +++ b/pages/common/esbuild.md @@ -3,11 +3,11 @@ > JavaScript bundler and minifier built for speed. > More information: . -- Bundle a JavaScript application and print to stdout: +- Bundle a JavaScript application and print to `stdout`: `esbuild --bundle {{path/to/file.js}}` -- Bundle a JSX application from stdin: +- Bundle a JSX application from `stdin`: `esbuild --bundle --outfile={{path/to/out.js}} < {{path/to/file.jsx}}` @@ -27,10 +27,10 @@ `esbuild --bundle app.js --loader:{{.js=jsx}} {{path/to/file.js}}` -- Bundle and serve JavaScript application on an HTTP server: +- Bundle and serve a JavaScript application on an HTTP server: `esbuild --bundle --serve={{port}} --outfile={{index.js}} {{path/to/file.js}}` - Bundle a list of files to an output directory: -`esbuild --bundle --outdir={{path/to/output_directory}} {{path/to/file1}} {{path/to/file2}}` +`esbuild --bundle --outdir={{path/to/output_directory}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/eslint.md b/pages/common/eslint.md index e11577957e3024..7957b3a403d0ef 100644 --- a/pages/common/eslint.md +++ b/pages/common/eslint.md @@ -3,7 +3,7 @@ > A pluggable linting utility for JavaScript and JSX. > More information: . -- Create eslint config: +- Create ESLint config: `eslint --init` diff --git a/pages/common/espeak.md b/pages/common/espeak.md index d67c6519bc8e7a..8575339a2a894c 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/esptool.py.md b/pages/common/esptool.py.md new file mode 100644 index 00000000000000..e419f96c0c6f3e --- /dev/null +++ b/pages/common/esptool.py.md @@ -0,0 +1,12 @@ +# esptool.py + +> Bootloader utility for Espressif chips (e.g. ESP8266). +> More information: . + +- Flash a firmware file to an ESP chip with a given port and baud rate: + +`sudo esptool.py --port {{port}} --baud {{baud_rate}} write_flash 0x0 {{path/to/firmware.bin}}` + +- Clear the flash of an ESP chip: + +`sudo esptool.py --port {{port}} --baud {{baud_rate}} erase_flash` diff --git a/pages/common/etcd.md b/pages/common/etcd.md index 29fe2a77ebe0ac..de374af3b8ba05 100644 --- a/pages/common/etcd.md +++ b/pages/common/etcd.md @@ -7,7 +7,7 @@ `etcd` -- Start a single-node etcd cluster, listening for client requests on a custom url: +- Start a single-node etcd cluster, listening for client requests on a custom URL: `etcd --advertise-client-urls {{http://127.0.0.1:1234}} --listen-client-urls {{http://127.0.0.1:1234}}` diff --git a/pages/common/etcdctl.md b/pages/common/etcdctl.md index 5021ee6fb16ef4..ef8997b6bf663e 100644 --- a/pages/common/etcdctl.md +++ b/pages/common/etcdctl.md @@ -1,7 +1,6 @@ # etcdctl -> CLI interface for interacting with `etcd`, a highly-available key-value pair store. -> Etcd stores data in hierarchically organized directories, as in a standard filesystem. +> CLI interface for interacting with etcd, a highly-available key-value pair store. > More information: . - Display the value associated with a specified key: diff --git a/pages/common/eval.md b/pages/common/eval.md new file mode 100644 index 00000000000000..ab466ad4d7ec18 --- /dev/null +++ b/pages/common/eval.md @@ -0,0 +1,12 @@ +# eval + +> Execute arguments as a single command in the current shell and return its result. +> More information: . + +- Call `echo` with the "foo" argument: + +`eval "{{echo foo}}"` + +- Set a variable in the current shell: + +`eval "{{foo=bar}}"` diff --git a/pages/common/ex.md b/pages/common/ex.md new file mode 100644 index 00000000000000..ad177e71740608 --- /dev/null +++ b/pages/common/ex.md @@ -0,0 +1,33 @@ +# ex + +> Command-line text editor. +> See also: `vim`. +> More information: . + +- Open a file: + +`ex {{path/to/file}}` + +- Save and Quit: + +`wq` + +- Undo the last operation: + +`undo` + +- Search for a pattern in the file: + +`/{{search_pattern}}` + +- Perform a regular expression substitution in the whole file: + +`%s/{{regular_expression}}/{{replacement}}/g` + +- Insert text: + +`i{{text}}` + +- Switch to Vim: + +`visual` diff --git a/pages/common/exa.md b/pages/common/exa.md index 088e6888dfad27..4536321ce7dea6 100644 --- a/pages/common/exa.md +++ b/pages/common/exa.md @@ -26,3 +26,11 @@ - List files sorted by modification date (oldest first): `exa --long --sort={{modified}}` + +- List files with their headers, icons, and Git statuses: + +`exa --long --header --icons --git` + +- Don't list files mentioned in `.gitignore`: + +`exa --git-ignore` diff --git a/pages/common/exec.md b/pages/common/exec.md index e30816b84639db..00d27a22f1ec22 100644 --- a/pages/common/exec.md +++ b/pages/common/exec.md @@ -1,6 +1,7 @@ # exec > Replace the current process with another process. +> More information: . - Replace with the specified command using the current environment variables: diff --git a/pages/common/exercism.md b/pages/common/exercism.md new file mode 100644 index 00000000000000..67f7ff4ee5a328 --- /dev/null +++ b/pages/common/exercism.md @@ -0,0 +1,20 @@ +# exercism + +> Download and solve problems from the command-line. +> More information: . + +- Configure the application token and the preferred workspace for Exercism: + +`exercism configure --token={{your-application-token}} --workspace={{/path/to/preferred/workspace}}` + +- Download a specific exercise: + +`exercism download --exercise={{exercise_slug}} --track={{track_slug}}` + +- Submit an exercise: + +`exercism submit {{path/to/file}}` + +- Print the path to the solution workspace: + +`exercism workspace` diff --git a/pages/common/exiftool.md b/pages/common/exiftool.md index 81f39113555ab5..cddf90176f0577 100644 --- a/pages/common/exiftool.md +++ b/pages/common/exiftool.md @@ -3,9 +3,21 @@ > Read and write meta information in files. > More information: . +- Print the EXIF metadata for a given file: + +`exiftool {{path/to/file}}` + - 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: + +`exiftool "-gps*=" {{path/to/image1 path/to/image2 ...}}` + +- Remove all EXIF metadata from the given image files, then re-add metadata for color and orientation: + +`exiftool -All= -tagsfromfile @ -colorspacetags -orientation {{image1 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 e411bc8e1fa532..cebab4186efb54 100644 --- a/pages/common/expand.md +++ b/pages/common/expand.md @@ -5,7 +5,7 @@ - Convert tabs in each file to spaces, writing to standard output: -`expand {{file}}` +`expand {{path/to/file}}` - Convert tabs to spaces, reading from standard input: @@ -13,11 +13,11 @@ - Do not convert tabs after non blanks: -`expand -i {{file}}` +`expand -i {{path/to/file}}` - Have tabs a certain number of characters apart, not 8: -`expand -t={{number}} {{file}}` +`expand -t={{number}} {{path/to/file}}` - Use a comma separated list of explicit tab positions: diff --git a/pages/common/export.md b/pages/common/export.md new file mode 100644 index 00000000000000..b55408112e0706 --- /dev/null +++ b/pages/common/export.md @@ -0,0 +1,20 @@ +# export + +> Command to mark shell variables in the current environment to be exported with any newly forked child processes. +> More information: . + +- Set a new environment variable: + +`export {{VARIABLE}}={{value}}` + +- Remove an environment variable: + +`export -n {{VARIABLE}}` + +- Mark a shell function for export: + +`export -f {{FUNCTION_NAME}}` + +- Append something to the PATH variable: + +`export PATH=$PATH:{{path/to/append}}` diff --git a/pages/common/expose.md b/pages/common/expose.md index 4b76779398fc5d..f5189e86948405 100644 --- a/pages/common/expose.md +++ b/pages/common/expose.md @@ -15,7 +15,7 @@ `expose --subdomain={{subdomain}}` -- Share a local url: +- Share a local URL: `expose share {{url}}` diff --git a/pages/common/expr.md b/pages/common/expr.md index 51131fd702a533..75bdfd3e4faa50 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/exrex.md b/pages/common/exrex.md index da62146e0035fd..a8c8e825008f36 100644 --- a/pages/common/exrex.md +++ b/pages/common/exrex.md @@ -16,7 +16,7 @@ `exrex --max-number {{100}} '{{regular_expression}}'` -- Generate all possible strings that match a regular expression, joined together by a custom delimiter string: +- Generate all possible strings that match a regular expression, joined by a custom delimiter string: `exrex --delimiter "{{, }}" '{{regular_expression}}'` diff --git a/pages/common/factor.md b/pages/common/factor.md index af8cf739f670ce..f63855cc9dcd0d 100644 --- a/pages/common/factor.md +++ b/pages/common/factor.md @@ -7,6 +7,6 @@ `factor {{number}}` -- Take the input from stdin if no argument is specified: +- Take the input from `stdin` if no argument is specified: `echo {{number}} | factor` diff --git a/pages/common/false.md b/pages/common/false.md index 4423e7cece90e5..16f2921c201983 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 082b5bfbfaeaab..5625c22ba21750 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: @@ -17,7 +17,7 @@ - Flash a given image: -`fastboot flash {{file.zip}}` +`fastboot flash {{file.img}}` - Flash a custom recovery image: diff --git a/pages/common/fastd.md b/pages/common/fastd.md new file mode 100644 index 00000000000000..698b1a124b1b75 --- /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 new file mode 100644 index 00000000000000..f159cc46c09b7c --- /dev/null +++ b/pages/common/fastfetch.md @@ -0,0 +1,24 @@ +# fastfetch + +> A CLI tool to display information about your operating system, software and hardware. +> More information: . + +- Display system information: + +`fastfetch` + +- Set the structure of the fetch: + +`fastfetch --structure {{structure}}` + +- Load a custom config file: + +`fastfetch --load-config {{path/to/config_file}}` + +- Set the logo to use: + +`fastfetch --logo {{logo}}` + +- Set the color of the keys and title: + +`fastfetch --color {{blue}}` diff --git a/pages/common/fastmod.md b/pages/common/fastmod.md new file mode 100644 index 00000000000000..219a9ce92e049b --- /dev/null +++ b/pages/common/fastmod.md @@ -0,0 +1,29 @@ +# fastmod + +> A fast partial replacement for the codemod tool, replace and replace all in the whole codebase. +> Regexes are matched by Rust regex crate. +> More information: . + +- Replace a regex pattern in all files of the current directory, ignoring files on .ignore and .gitignore: + +`fastmod {{regex_pattern}} {{replacement}}` + +- Replace a regex pattern in case-insensitive mode in specific files or directories: + +`fastmod --ignore-case {{regex_pattern}} {{replacement}} -- {{path/to/file path/to/directory ...}}` + +- Replace a regex pattern in a specific directory in files filtered with a case-insensitive glob pattern: + +`fastmod {{regex}} {{replacement}} --dir {{path/to/directory}} --iglob {{'**/*.{js,json}'}}` + +- Replace for an exact string in .js or .json files: + +`fastmod --fixed-strings {{exact_string}} {{replacement}} --extensions {{json,js}}` + +- Replace for an exact string without prompt for a confirmation (disables regular expressions): + +`fastmod --accept-all --fixed-strings {{exact_string}} {{replacement}}` + +- Replace for an exact string without prompt for a confirmation, printing changed files: + +`fastmod --accept-all --print-changed-files --fixed-strings {{exact_string}} {{replacement}}` diff --git a/pages/common/fc-cache.md b/pages/common/fc-cache.md new file mode 100644 index 00000000000000..0889d3cb921083 --- /dev/null +++ b/pages/common/fc-cache.md @@ -0,0 +1,16 @@ +# fc-cache + +> Scan font directories to build font cache files. +> More information: . + +- Generate font cache files: + +`fc-cache` + +- Force a rebuild of all font cache files, without checking if cache is up-to-date: + +`fc-cache -f` + +- Erase font cache files, then generate new font cache files: + +`fc-cache -r` diff --git a/pages/common/fc-list.md b/pages/common/fc-list.md new file mode 100644 index 00000000000000..07c8bca66f9d16 --- /dev/null +++ b/pages/common/fc-list.md @@ -0,0 +1,16 @@ +# fc-list + +> List available fonts installed on the system. +> More information: . + +- Return a list of installed fonts in your system: + +`fc-list` + +- Return a list of installed fonts with given name: + +`fc-list | grep '{{DejaVu Serif}}'` + +- Return the number of installed fonts in your system: + +`fc-list | wc -l` diff --git a/pages/common/fc-match.md b/pages/common/fc-match.md new file mode 100644 index 00000000000000..632ec63677d9b0 --- /dev/null +++ b/pages/common/fc-match.md @@ -0,0 +1,8 @@ +# fc-match + +> Match available fonts. +> More information: . + +- Return a sorted list of best matching fonts: + +`fc-match -s '{{DejaVu Serif}}'` diff --git a/pages/common/fc-pattern.md b/pages/common/fc-pattern.md new file mode 100644 index 00000000000000..39a5f139a80163 --- /dev/null +++ b/pages/common/fc-pattern.md @@ -0,0 +1,12 @@ +# fc-pattern + +> Shows information about a font matching a pattern. +> More information: . + +- Display default information about a font: + +`fc-pattern --default '{{DejaVu Serif}}'` + +- Display config information about a font: + +`fc-pattern --config '{{DejaVu Serif}}'` diff --git a/pages/common/fc.md b/pages/common/fc.md new file mode 100644 index 00000000000000..b00d71906a81ec --- /dev/null +++ b/pages/common/fc.md @@ -0,0 +1,24 @@ +# fc + +> Open the most recent command and edit it. +> More information: . + +- Open in the default system editor: + +`fc` + +- Specify an editor to open with: + +`fc -e {{'emacs'}}` + +- List recent commands from history: + +`fc -l` + +- List recent commands in reverse order: + +`fc -l -r` + +- List commands in a given interval: + +`fc '{{416}}' '{{420}}'` diff --git a/pages/common/fd.md b/pages/common/fd.md index 00073c05eff8b9..d441942dbe9f65 100644 --- a/pages/common/fd.md +++ b/pages/common/fd.md @@ -4,26 +4,26 @@ > 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": +- Find files that begin with `foo`: -`fd {{'^foo'}}` +`fd "^foo"` - Find files with a specific extension: -`fd --extension {{txt}}` +`fd --extension txt` - 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/fdp.md b/pages/common/fdp.md new file mode 100644 index 00000000000000..970e326d0b3ec2 --- /dev/null +++ b/pages/common/fdp.md @@ -0,0 +1,25 @@ +# fdp + +> Render an image of a `force-directed` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`fdp -T png -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`fdp -T svg -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in a specific format: + +`fdp -T {{ps|pdf|svg|fig|png|gif|jpg|json|dot}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | fdp -T gif > {{path/to/image.gif}}` + +- Display help: + +`fdp -?` diff --git a/pages/common/fdroid.md b/pages/common/fdroid.md index 5a1cc107a791fa..61fc41dbd5ffa9 100644 --- a/pages/common/fdroid.md +++ b/pages/common/fdroid.md @@ -1,7 +1,7 @@ # fdroid > F-Droid build tool. -> F-Droid is an installable catalogue of FOSS (Free and Open Source Software) applications for the Android platform. +> F-Droid is an installable catalog of FOSS (Free and Open Source Software) applications for the Android platform. > More information: . - Build a specific app: diff --git a/pages/common/fdupes.md b/pages/common/fdupes.md index 521b5a27e46714..bb78e5e96b341a 100644 --- a/pages/common/fdupes.md +++ b/pages/common/fdupes.md @@ -5,7 +5,7 @@ - Search a single directory: -`fdupes {{directory}}` +`fdupes {{path/to/directory}}` - Search multiple directories: @@ -13,16 +13,20 @@ - Search a directory recursively: -`fdupes -r {{directory}}` +`fdupes -r {{path/to/directory}}` - Search multiple directories, one recursively: `fdupes {{directory1}} -R {{directory2}}` +- Search recursively and replace duplicates with hardlinks: + +`fdupes -rH {{path/to/directory}}` + - Search recursively for duplicates and display interactive prompt to pick which ones to keep, deleting the others: -`fdupes -rd {{directory}}` +`fdupes -rd {{path/to/directory}}` - Search recursively and delete duplicates without prompting: -`fdupes -rdN {{directory}}` +`fdupes -rdN {{path/to/directory}}` diff --git a/pages/common/feh.md b/pages/common/feh.md new file mode 100644 index 00000000000000..55510fa06e5d34 --- /dev/null +++ b/pages/common/feh.md @@ -0,0 +1,32 @@ +# feh + +> Lightweight image viewing utility. +> More information: . + +- View images locally or using a URL: + +`feh {{path/to/images}}` + +- View images recursively: + +`feh --recursive {{path/to/images}}` + +- View images without window borders: + +`feh --borderless {{path/to/images}}` + +- Exit after the last image: + +`feh --cycle-once {{path/to/images}}` + +- Set the slideshow cycle delay: + +`feh --slideshow-delay {{seconds}} {{path/to/images}}` + +- Set your wallpaper (centered, filled, maximized, scaled or tiled): + +`feh --bg-{{center|fill|max|scale|tile}} {{path/to/image}}` + +- Create a montage of all images within a directory. Outputs as a new image: + +`feh --montage --thumb-height {{150}} --thumb-width {{150}} --index-info "{{%nn%wx%h}}" --output {{path/to/montage_image.png}}` diff --git a/pages/common/feroxbuster.md b/pages/common/feroxbuster.md new file mode 100644 index 00000000000000..1c2a65658f46c1 --- /dev/null +++ b/pages/common/feroxbuster.md @@ -0,0 +1,21 @@ +# feroxbuster + +> Simple, fast, recursive content discovery tool written in Rust. +> Used to brute-force hidden paths on web servers and more. +> More information: . + +- Discover specific directories and files that match in the wordlist with extensions and 100 threads and a random user-agent: + +`feroxbuster --url "{{https://example.com}}" --wordlist {{path/to/file}} --threads {{100}} --extensions "{{php,txt}}" --random-agent` + +- Enumerate directories without recursion through a specific proxy: + +`feroxbuster --url "{{https://example.com}}" --wordlist {{path/to/file}} --no-recursion --proxy "{{http://127.0.0.1:8080}}"` + +- Find links in webpages: + +`feroxbuster --url "{{https://example.com}}" --extract-links` + +- Filter by a specific status code and a number of chars: + +`feroxbuster --url "{{https://example.com}}" --filter-status {{301}} --filter-size {{4092}}` diff --git a/pages/common/ffe.md b/pages/common/ffe.md new file mode 100644 index 00000000000000..92bd8d0be6ff33 --- /dev/null +++ b/pages/common/ffe.md @@ -0,0 +1,29 @@ +# ffe + +> Extract fields from a flat database file and write to another format. +> A configuration file is required to interpret the input and format the output. +> More information: . + +- Display all input data using the specified data configuration: + +`ffe --configuration={{path/to/config.ffe}} {{path/to/input}}` + +- Convert an input file to an output file in a new format: + +`ffe --output={{path/to/output}} -c {{path/to/config.ffe}} {{path/to/input}}` + +- Select input structure and print format from definitions in `~/.fferc` config file: + +`ffe --structure={{structure}} --print={{format}} {{path/to/input}}` + +- Write only the selected fields: + +`ffe --field-list="{{FirstName,LastName,Age}}" -c {{path/to/config.ffe}} {{path/to/input}}` + +- Write only the records that match an expression: + +`ffe -e "{{LastName=Smith}}" -c {{path/to/config.ffe}} {{path/to/input}}` + +- Display help: + +`ffe --help` diff --git a/pages/common/ffmpeg.md b/pages/common/ffmpeg.md index 0ad379f8f41873..f11339aea60f9b 100644 --- a/pages/common/ffmpeg.md +++ b/pages/common/ffmpeg.md @@ -7,9 +7,9 @@ `ffmpeg -i {{video.mp4}} -vn {{sound}}.mp3` -- Convert frames from a video or GIF into individual numbered images: +- Save a video as GIF, scaling the height to 1000px and setting framerate to 15: -`ffmpeg -i {{video.mpg|video.gif}} {{frame_%d.png}}` +`ffmpeg -i {{video.mp4}} -vf 'scale=-1:{{1000}}' -r {{15}} {{output.gif}}` - Combine numbered images (`frame_1.jpg`, `frame_2.jpg`, etc) into a video or GIF: @@ -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 new file mode 100644 index 00000000000000..5021d8b6f30543 --- /dev/null +++ b/pages/common/ffplay.md @@ -0,0 +1,16 @@ +# ffplay + +> A simple and portable media player using the FFmpeg libraries and the SDL library. +> More information: . + +- Play a media file: + +`ffplay {{path/to/file}}` + +- Play a video and show motion vectors in real time: + +`ffplay -flags2 +export_mvs -vf codecview=mv=pf+bf+bb {{path/to/file}}` + +- Show only video keyframes: + +`ffplay -vf select="{{eq(pict_type\,PICT_TYPE_I)}}" {{path/to/file}}` diff --git a/pages/common/ffsend.md b/pages/common/ffsend.md index aba71dc1e9dedd..07f01f55bdfc2a 100644 --- a/pages/common/ffsend.md +++ b/pages/common/ffsend.md @@ -1,11 +1,11 @@ # ffsend -> Easily and securely share files from command line. +> Easily and securely share files from command-line. > More information: . - Upload a file: -`ffsend upload {{file}}` +`ffsend upload {{path/to/file}}` - Download a file: @@ -13,12 +13,12 @@ - Upload a file with password: -`ffsend upload {{file}} -p {{password}}` +`ffsend upload {{path/to/file}} -p {{password}}` - Download a file protected by password: -`ffsend download {{file}} -p {{password}}` +`ffsend download {{path/to/file}} -p {{password}}` - Upload a file and allow 4 downloads: -`ffsend upload {{file}} -d {{4}}` +`ffsend upload {{path/to/file}} -d {{4}}` diff --git a/pages/common/fg.md b/pages/common/fg.md index 4cff960cd87699..f8d79fd1e04a81 100644 --- a/pages/common/fg.md +++ b/pages/common/fg.md @@ -3,7 +3,7 @@ > Run jobs in foreground. > More information: . -- Bring most recently suspended background job to foreground: +- Bring most recently suspended or running background job to foreground: `fg` diff --git a/pages/common/fgrep.md b/pages/common/fgrep.md index d3dc9252adc4b1..8658dd04f8f539 100644 --- a/pages/common/fgrep.md +++ b/pages/common/fgrep.md @@ -1,8 +1,8 @@ # fgrep -> Matches patterns in files. -> Supports simple patterns and regular expressions. -> More information: . +> Matches fixed strings in files. +> Equivalent to `grep -F`. +> More information: . - Search for an exact string in a file: @@ -20,10 +20,10 @@ `fgrep -n {{search_string}} {{path/to/file}}` -- Display all lines except those that contain the given regular expression: +- Display all lines except those that contain the search string: -`fgrep -v {{^regex$}} {{path/to/file}}` +`fgrep -v {{search_string}} {{path/to/file}}` -- Display filenames whose content matches the regular expression at least once: +- Display filenames whose content matches the search string at least once: -`fgrep -l {{^regex$}} {{path/to/file1}} {{path/to/file2}}` +`fgrep -l {{search_string}} {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/figlet.md b/pages/common/figlet.md index 056cffb40b679c..bb9d3ad38aef1f 100644 --- a/pages/common/figlet.md +++ b/pages/common/figlet.md @@ -1,6 +1,7 @@ # figlet > Generate ASCII banners from user input. +> See also: `showfigfonts`. > More information: . - Generate by directly inputting text: @@ -9,12 +10,16 @@ - Use a custom font file: +`figlet {{input_text}} -f {{path/to/font_file.flf}}` + +- Use a font from the default font directory (the extension can be omitted): + `figlet {{input_text}} -f {{font_filename}}` -- Pipe command output through figlet: +- Pipe command output through FIGlet: `{{command}} | figlet` -- Show available figlet fonts: +- Show available FIGlet fonts: `showfigfonts {{optional_string_to_display}}` diff --git a/pages/common/file.md b/pages/common/file.md new file mode 100644 index 00000000000000..f2de979abf7397 --- /dev/null +++ b/pages/common/file.md @@ -0,0 +1,24 @@ +# file + +> Determine file type. +> More information: . + +- Give a description of the type of the specified file. Works fine for files with no file extension: + +`file {{path/to/file}}` + +- Look inside a zipped file and determine the file type(s) inside: + +`file -z {{foo.zip}}` + +- Allow file to work with special or device files: + +`file -s {{path/to/file}}` + +- Don't stop at first file type match; keep going until the end of the file: + +`file -k {{path/to/file}}` + +- Determine the MIME encoding type of a file: + +`file -i {{path/to/file}}` diff --git a/pages/common/fin.md b/pages/common/fin.md index 7be5682c95572d..51e9fb02c9c2b3 100644 --- a/pages/common/fin.md +++ b/pages/common/fin.md @@ -1,6 +1,6 @@ # fin -> Docksal command line utility. +> Docksal command-line utility. > More information: . - Start the project in the current directory: diff --git a/pages/common/find.md b/pages/common/find.md index 25452e23d73564..0918f3aa39921c 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -7,30 +7,30 @@ `find {{root_path}} -name '{{*.ext}}'` -- Find files by matching multiple patterns: +- Find files matching multiple path/name patterns: -`find {{root_path}} -name '{{*pattern_1*}}' -or -name '{{*pattern_2*}}'` +`find {{root_path}} -path '{{**/path/**/*.ext}}' -or -name '{{*pattern*}}'` - Find directories matching a given name, in case-insensitive mode: `find {{root_path}} -type d -iname '{{*lib*}}'` -- Find files matching a path pattern: - -`find {{root_path}} -path '{{**/lib/**/*.ext}}'` - - Find files matching a given pattern, excluding specific paths: `find {{root_path}} -name '{{*.py}}' -not -path '{{*/site-packages/*}}'` -- Find files matching a given size range: +- Find files matching a given size range, limiting the recursive depth to "1":: -`find {{root_path}} -size {{+500k}} -size {{-10M}}` +`find {{root_path}} -maxdepth 1 -size {{+500k}} -size {{-10M}}` - Run a command for each file (use `{}` within the command to access the filename): `find {{root_path}} -name '{{*.ext}}' -exec {{wc -l {} }}\;` -- Find files modified in the last 7 days, and delete them: +- Find files modified in the last 7 days: + +`find {{root_path}} -daystart -mtime -{{7}}` + +- Find empty (0 byte) files and delete them: -`find {{root_path}} -mtime {{-7}} -delete` +`find {{root_path}} -type {{f}} -empty -delete` diff --git a/pages/common/finger.md b/pages/common/finger.md index 85ba05e35228a6..12279498ecd35e 100644 --- a/pages/common/finger.md +++ b/pages/common/finger.md @@ -15,7 +15,7 @@ `finger -s` -- Produce multi-line output format displaying same information as `-s` as well as user's home directory, home phone number, login shell, mail status, etc.: +- Produce multiline output format displaying same information as `-s` as well as user's home directory, home phone number, login shell, mail status, etc.: `finger -l` diff --git a/pages/common/fio.md b/pages/common/fio.md new file mode 100644 index 00000000000000..95ce9cf1aa7027 --- /dev/null +++ b/pages/common/fio.md @@ -0,0 +1,25 @@ +# fio + +> Flexible I/O tester. +> Tool that will spawn a number of threads or processes doing a particular type of I/O action. +> More information: . + +- 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` + +- 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` + +- 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` + +- Test with parameters from a job file: + +`sudo fio {{path/to/job_file}}` + +- Convert a specific job file to command-line options: + +`fio --showcmd {{path/to/job_file}}` diff --git a/pages/common/firebase.md b/pages/common/firebase.md index ce9e7bc3db7af1..9b2a43def019e3 100644 --- a/pages/common/firebase.md +++ b/pages/common/firebase.md @@ -1,9 +1,9 @@ # firebase -> Test, manage, and deploy Firebase projects from the command line. +> Test, manage, and deploy Firebase projects from the command-line. > More information: . -- Login to : +- Log in to : `firebase login` diff --git a/pages/common/fish.md b/pages/common/fish.md index 7ed43b387320e4..c65ce9f177d20b 100644 --- a/pages/common/fish.md +++ b/pages/common/fish.md @@ -7,26 +7,30 @@ `fish` -- Execute a command and then exit: +- Start an interactive shell session without loading startup configs: -`fish -c "{{command}}"` +`fish --no-config` -- Execute a script: +- Execute specific commands: + +`fish --command "{{echo 'fish is executed'}}"` + +- Execute a specific script: `fish {{path/to/script.fish}}` -- Check a script for syntax errors: +- Check a specific script for syntax errors: `fish --no-execute {{path/to/script.fish}}` -- Start an interactive shell session in private mode, where the shell does not access old history or save new history: +- Execute specific commands from `stdin`: -`fish --private` +`{{echo "echo 'fish is executed'"}} | fish` -- Display version information and exit: +- Start an interactive shell session in private mode, where the shell does not access old history or save new history: -`fish --version` +`fish --private` -- Set and export environmental variables that persist across shell restarts (from within the shell only): +- Define and export an environmental variable that persists across shell restarts (builtin): -`set -Ux {{variable_name}} {{variable_value}}` +`set --universal --export {{variable_name}} {{variable_value}}` diff --git a/pages/common/fisher.md b/pages/common/fisher.md index 866862a09427f7..5060f8f3cd246e 100644 --- a/pages/common/fisher.md +++ b/pages/common/fisher.md @@ -12,7 +12,7 @@ `fisher {{gist_url}}` -- Edit 'fishfile' by hand with your favorite editor and install multiple plugins: +- Edit 'fishfile' manually with your favorite editor and install multiple plugins: `{{editor}} ~/.config/fish/fishfile; fisher` diff --git a/pages/common/fkill.md b/pages/common/fkill.md index cb3ce520841567..9bebad58d9d1ab 100644 --- a/pages/common/fkill.md +++ b/pages/common/fkill.md @@ -7,6 +7,6 @@ `fkill` -- Kill the process by pid, name or port: +- Kill the process by PID, name or port: `fkill {{pid|name|:port}}` diff --git a/pages/common/flac.md b/pages/common/flac.md index ac61e3d2ab0a0c..6bdde769ec7576 100644 --- a/pages/common/flac.md +++ b/pages/common/flac.md @@ -1,20 +1,20 @@ # flac -> Encodes, decodes and tests flac files. +> Encodes, decodes and tests FLAC files. > More information: . -- Encode a wav file to flac (this will create a flac file in the same location as the wav file): +- Encode a WAV file to FLAC (this will create a FLAC file in the same location as the WAV file): `flac {{path/to/file.wav}}` -- Encode a wav file to flac, specifying the output file: +- Encode a WAV file to FLAC, specifying the output file: `flac -o {{path/to/output.flac}} {{path/to/file.wav}}` -- Decode a flac file to wav, specifying the output file: +- Decode a FLAC file to WAV, specifying the output file: `flac -d -o {{path/to/output.wav}} {{path/to/file.flac}}` -- Test a flac file for the correct encoding: +- Test a FLAC file for the correct encoding: `flac -t {{path/to/file.flac}}` diff --git a/pages/common/flake8.md b/pages/common/flake8.md new file mode 100644 index 00000000000000..3cdcf5dde476db --- /dev/null +++ b/pages/common/flake8.md @@ -0,0 +1,20 @@ +# flake8 + +> Tool to check the style and quality of Python code. +> More information: . + +- Lint a file or directory recursively: + +`flake8 {{path/to/file_or_directory}}` + +- Lint a file or directory recursively and show the line on which each error occurred: + +`flake8 --show-source {{path/to/file_or_directory}}` + +- Lint a file or directory recursively and ignore a list of rules. (All available rules can be found at flake8rules.com): + +`flake8 --ignore {{rule1,rule2}} {{path/to/file_or_directory}}` + +- Lint a file or directory recursively but exclude files matching the given globs or substrings: + +`flake8 --exclude {{substring1,glob2}} {{path/to/file_or_directory}}` diff --git a/pages/common/flarectl.md b/pages/common/flarectl.md new file mode 100644 index 00000000000000..142898ae8b3f36 --- /dev/null +++ b/pages/common/flarectl.md @@ -0,0 +1,24 @@ +# flarectl + +> Official CLI for Cloudflare. +> More information: . + +- Block a specific IP: + +`flarectl firewall rules create --zone="{{example.com}}" --value="{{8.8.8.8}}" --mode="{{block}}" --notes="{{Block bad actor}}"` + +- Add a DNS record: + +`flarectl dns create --zone="{{example.com}}" --name="{{app}}" --type="{{CNAME}}" --content="{{myapp.herokuapp.com}}" --proxy` + +- List all Cloudflare IPv4/IPv6 ranges: + +`flarectl ips --ip-type {{ipv4|ipv6|all}}` + +- Create many new Cloudflare zones automatically with names from `domains.txt`: + +`for domain in $(cat {{domains.txt}}); do flarectl zone info --zone=$domain; done` + +- List all firewall rules: + +`flarectl firewall rules list` diff --git a/pages/common/flex.md b/pages/common/flex.md index d88b1462859c7e..07c223952ad0a1 100644 --- a/pages/common/flex.md +++ b/pages/common/flex.md @@ -1,16 +1,16 @@ # flex -> Lexical analyser generator. Based on `lex`. -> Given the specification for a lexical analyser, generates C code implementing it. +> Lexical analyzer generator. Based on `lex`. +> Given the specification for a lexical analyzer, generates C code implementing it. > More information: . -- Generate an analyser from a flex file: +- Generate an analyzer from a flex file: -`flex {{analyser.l}}` +`flex {{analyzer.l}}` - Specify the output file: -`flex --outfile {{analyser.c}} {{analyser.l}}` +`flex --outfile {{analyzer.c}} {{analyzer.l}}` - Compile a C file generated by flex: diff --git a/pages/common/flips.md b/pages/common/flips.md new file mode 100644 index 00000000000000..7cbd92f9f84a9e --- /dev/null +++ b/pages/common/flips.md @@ -0,0 +1,16 @@ +# flips + +> Create and apply patches for IPS and BPS files. +> More information: . + +- Start Flips to create and apply patches interactively: + +`flips` + +- Apply a patch and create a new ROM file: + +`flips --apply {{patch.bps}} {{rom.smc}} {{hack.smc}}` + +- Create a patch from two ROMs: + +`flips --create {{rom.smc}} {{hack.smc}} {{patch.bps}}` diff --git a/pages/common/flite.md b/pages/common/flite.md new file mode 100644 index 00000000000000..bdf2df525b5c38 --- /dev/null +++ b/pages/common/flite.md @@ -0,0 +1,28 @@ +# flite + +> Speech synthesis engine. +> More information: . + +- List all available voices: + +`flite -lv` + +- Convert a text string to speech: + +`flite -t "{{string}}"` + +- Convert the contents of a file to speech: + +`flite -f {{path/to/file.txt}}` + +- Specify which voice to use: + +`flite -voice {{file://path/to/filename.flitevox|url}}` + +- Store output into a wav file: + +`flite -voice {{file://path/to/filename.flitevox|url}} -f {{path/to/file.txt}} -o {{output.wav}}` + +- Display version: + +`flite --version` diff --git a/pages/common/fls.md b/pages/common/fls.md index 8fcf91b7a9c38d..90b20375bdf4d0 100644 --- a/pages/common/fls.md +++ b/pages/common/fls.md @@ -7,10 +7,10 @@ `fls -r -m {{C:}} {{/dev/loop1p1}}` -- Analyse a single partition, providing the sector offset at which the filesystem starts in the image: +- Analyze a single partition, providing the sector offset at which the filesystem starts in the image: `fls -r -m {{C:}} -o {{sector}} {{path/to/image_file}}` -- Analyse a single partition, providing the timezone of the original system: +- Analyze a single partition, providing the timezone of the original system: `fls -r -m {{C:}} -z {{timezone}} {{/dev/loop1p1}}` diff --git a/pages/common/flutter.md b/pages/common/flutter.md index f8fc0b32a57f95..ec4d2291046d32 100644 --- a/pages/common/flutter.md +++ b/pages/common/flutter.md @@ -3,9 +3,9 @@ > Google's free, open source, and cross-platform mobile app SDK. > More information: . -- Display help about a specific command: +- Initialize a new Flutter project in a directory of the same name: -`flutter help {{command}}` +`flutter create {{project_name}}` - Check if all external tools are correctly installed: @@ -30,3 +30,7 @@ - Build a release APK targeting most modern smartphones: `flutter build apk --target-platform {{android-arm}},{{android-arm64}}` + +- Display help about a specific command: + +`flutter help {{command}}` diff --git a/pages/common/fluxctl.md b/pages/common/fluxctl.md new file mode 100644 index 00000000000000..03f8bebee1452c --- /dev/null +++ b/pages/common/fluxctl.md @@ -0,0 +1,20 @@ +# fluxctl + +> Command-line tool for Flux v1. +> More information: . + +- List workloads currently running in the cluster on specific namespace: + +`fluxctl --k8s-fwd-ns={{namespace}} list-workloads` + +- Show deployed and available images: + +`fluxctl list-images` + +- Synchronize the cluster with the git repository: + +`fluxctl sync` + +- Turn on automatic deployment for a workload: + +`fluxctl automate` diff --git a/pages/common/fly.md b/pages/common/fly.md index 95db7f88e3dda1..d8df5d3ba26c4f 100644 --- a/pages/common/fly.md +++ b/pages/common/fly.md @@ -1,6 +1,6 @@ # fly -> Command line tool for concourse-ci. +> Command-line tool for concourse-ci. > More information: . - Authenticate with and save concourse target: diff --git a/pages/common/flyctl.md b/pages/common/flyctl.md new file mode 100644 index 00000000000000..e24f1eed4585e9 --- /dev/null +++ b/pages/common/flyctl.md @@ -0,0 +1,36 @@ +# flyctl + +> Command-line tool for flyctl.io. +> More information: . + +- Sign into a Fly account: + +`flyctl auth login` + +- Launch an application from a specific Dockerfile (the default path is the current working directory): + +`flyctl launch --dockerfile {{path/to/dockerfile}}` + +- Open the current deployed application in the default web browser: + +`flyctl open` + +- Deploy the Fly applications from a specific Dockerfile: + +`flyctl deploy --dockerfile {{path/to/dockerfile}}` + +- Open the Fly Web UI for the current application in a web browser: + +`flyctl dashboard` + +- List all applications in the logged-in Fly account: + +`flyctl apps list` + +- View the status of a specific running application: + +`flyctl status --app {{app_name}}` + +- Show version information: + +`flyctl version` diff --git a/pages/common/fnm.md b/pages/common/fnm.md index 439974224665e3..72d863671a3e51 100644 --- a/pages/common/fnm.md +++ b/pages/common/fnm.md @@ -10,7 +10,7 @@ - List all available Node.js versions and highlight the default one: -`fnm ls` +`fnm list` - Use a specific version of Node.js in the current shell: diff --git a/pages/common/fold.md b/pages/common/fold.md index 3477f9a476d4d4..0fde28ba1e7eb0 100644 --- a/pages/common/fold.md +++ b/pages/common/fold.md @@ -5,12 +5,12 @@ - Wrap each line to default width (80 characters): -`fold {{file}}` +`fold {{path/to/file}}` - Wrap each line to width "30": -`fold -w30 {{file}}` +`fold -w30 {{path/to/file}}` - Wrap each line to width "5" and break the line at spaces (puts each space separated word in a new line, words with length > 5 are wrapped): -`fold -w5 -s {{file}}` +`fold -w5 -s {{path/to/file}}` diff --git a/pages/common/for.md b/pages/common/for.md index 53e93f5f5f3620..51b40d853c9a70 100644 --- a/pages/common/for.md +++ b/pages/common/for.md @@ -1,12 +1,24 @@ # for -> Shell loop over parameters. -> More information: . +> Perform a command several times. +> More information: . -- Perform a command with different arguments: +- Execute the given commands for each of the specified items: -`for argument in 1 2 3; do {{command $argument}}; done` +`for {{variable}} in {{item1 item2 ...}}; do {{echo "Loop is executed"}}; done` -- Perform a command in every directory: +- Iterate over a given range of numbers: -`for d in *; do (cd $d; {{command}}); done` +`for {{variable}} in {{{from}}..{{to}}..{{step}}}; do {{echo "Loop is executed"}}; done` + +- Iterate over a given list of files: + +`for {{variable}} in {{path/to/file1 path/to/file2 ...}}; do {{echo "Loop is executed"}}; done` + +- Iterate over a given list of directories: + +`for {{variable}} in {{path/to/directory1/ path/to/directory2/ ...}}; do {{echo "Loop is executed"}}; done` + +- Perform a given command in every directory: + +`for {{variable}} in */; do (cd "${{variable}}" || continue; {{echo "Loop is executed"}}) done` diff --git a/pages/common/fortune.md b/pages/common/fortune.md index 4a7d1ae36a1264..bb97e3f005befd 100644 --- a/pages/common/fortune.md +++ b/pages/common/fortune.md @@ -1,7 +1,7 @@ # fortune > Print a random quotation (fortune-cookie style). -> More information: . +> More information: . - Print a quotation: @@ -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/fossil-add.md b/pages/common/fossil-add.md new file mode 100644 index 00000000000000..345a3edb9d9637 --- /dev/null +++ b/pages/common/fossil-add.md @@ -0,0 +1,12 @@ +# fossil add + +> Put files or directories under Fossil version control. +> More information: . + +- Put a file or directory under version control, so it will be in the current checkout: + +`fossil add {{path/to/file_or_directory}}` + +- Remove all added files from the current checkout: + +`fossil add --reset` diff --git a/pages/common/fossil-ci.md b/pages/common/fossil-ci.md new file mode 100644 index 00000000000000..5e37263a0f0df2 --- /dev/null +++ b/pages/common/fossil-ci.md @@ -0,0 +1,8 @@ +# fossil ci + +> This command is an alias of `fossil commit`. +> More information: . + +- View documentation for the original command: + +`tldr fossil-commit` diff --git a/pages/common/fossil-commit.md b/pages/common/fossil-commit.md new file mode 100644 index 00000000000000..5097ffecd357f6 --- /dev/null +++ b/pages/common/fossil-commit.md @@ -0,0 +1,20 @@ +# fossil commit + +> Commit files to a Fossil repository. +> More information: . + +- Create a new version containing all the changes in the current checkout; user will be prompted for a comment: + +`fossil commit` + +- Create a new version containing all the changes in the current checkout, using the specified comment: + +`fossil commit --comment "{{comment}}"` + +- Create a new version containing all the changes in the current checkout with a comment read from a specific file: + +`fossil commit --message-file {{path/to/commit_message_file}}` + +- Create a new version containing changes from the specified files; user will be prompted for a comment: + +`fossil commit {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/fossil-delete.md b/pages/common/fossil-delete.md new file mode 100644 index 00000000000000..2b9e19fcec687b --- /dev/null +++ b/pages/common/fossil-delete.md @@ -0,0 +1,8 @@ +# fossil delete + +> This command is an alias of `fossil rm`. +> More information: . + +- View documentation for the original command: + +`tldr fossil rm` diff --git a/pages/common/fossil-forget.md b/pages/common/fossil-forget.md new file mode 100644 index 00000000000000..50955ccfebb877 --- /dev/null +++ b/pages/common/fossil-forget.md @@ -0,0 +1,8 @@ +# fossil forget + +> This command is an alias of `fossil rm`, with the exception that it never removes files from the disk. +> More information: . + +- View documentation for the original command: + +`tldr fossil rm` diff --git a/pages/common/fossil-init.md b/pages/common/fossil-init.md new file mode 100644 index 00000000000000..d84db964c6e73d --- /dev/null +++ b/pages/common/fossil-init.md @@ -0,0 +1,9 @@ +# fossil init + +> Initialize a new repository for a project. +> See also: `fossil clone`. +> More information: . + +- Create a new repository in a named file: + +`fossil init {{path/to/filename}}` diff --git a/pages/common/fossil-new.md b/pages/common/fossil-new.md new file mode 100644 index 00000000000000..881e3e99ca7d76 --- /dev/null +++ b/pages/common/fossil-new.md @@ -0,0 +1,8 @@ +# fossil new + +> This command is an alias of `fossil init`. +> More information: . + +- View documentation for the original command: + +`tldr fossil-init` diff --git a/pages/common/fossil-rm.md b/pages/common/fossil-rm.md new file mode 100644 index 00000000000000..21d3e26ee8adef --- /dev/null +++ b/pages/common/fossil-rm.md @@ -0,0 +1,17 @@ +# fossil rm + +> Remove files or directories from Fossil version control. +> See also `fossil forget`. +> More information: . + +- Remove a file or directory from Fossil version control: + +`fossil rm {{path/to/file_or_directory}}` + +- Remove a file or directory from Fossil version control, and also delete it from the disk: + +`fossil rm --hard {{path/to/file_or_directory}}` + +- Re-add all previously removed and uncommitted files to Fossil version control: + +`fossil rm --reset` diff --git a/pages/common/fossil.md b/pages/common/fossil.md new file mode 100644 index 00000000000000..ad3ea9a01d0004 --- /dev/null +++ b/pages/common/fossil.md @@ -0,0 +1,21 @@ +# fossil + +> Distributed version control system. +> Some subcommands such as `fossil commit` have their own usage documentation. +> More information: . + +- Check the Fossil version: + +`fossil version` + +- Show general help (list available subcommands): + +`fossil help` + +- Show help on a Fossil subcommand (like `add`, `commit`, etc.): + +`fossil help {{subcommand}}` + +- Execute a Fossil subcommand: + +`fossil {{subcommand}}` diff --git a/pages/common/freshclam.md b/pages/common/freshclam.md new file mode 100644 index 00000000000000..3fd5b09e602f45 --- /dev/null +++ b/pages/common/freshclam.md @@ -0,0 +1,8 @@ +# freshclam + +> Update virus definitions for ClamAV antivirus program. +> More information: . + +- Update virus definitions: + +`freshclam` diff --git a/pages/common/fswatch.md b/pages/common/fswatch.md index 69c8ab9f7eafc7..fd2e44860be1a8 100644 --- a/pages/common/fswatch.md +++ b/pages/common/fswatch.md @@ -3,7 +3,7 @@ > A cross-platform file change monitor. > More information: . -- Run a bash command on file creation, update or deletion: +- Run a Bash command on file creation, update or deletion: `fswatch {{path/to/file}} | xargs -n 1 {{bash_command}}` @@ -15,6 +15,6 @@ `fswatch {{path/to/directory}} | xargs -n 1 -I {} echo {}` -- Filter by event type, eg. Updated, Deleted or Created: +- Filter by event type: -`fswatch --event {{Updated}} {{path/to/directory}} | xargs -n 1 {{bash_command}}` +`fswatch --event {{Updated|Deleted|Created}} {{path/to/directory}} | xargs -n 1 {{bash_command}}` diff --git a/pages/common/ftp.md b/pages/common/ftp.md index b1594000999993..25f0f0996d8f71 100644 --- a/pages/common/ftp.md +++ b/pages/common/ftp.md @@ -1,11 +1,16 @@ # ftp > Tools to interact with a server via File Transfer Protocol. +> More information: . - Connect to an FTP server: `ftp {{ftp.example.com}}` +- Connect to an FTP server specifying its IP address and port: + +`ftp {{ip_address}} {{port}}` + - Switch to binary transfer mode (graphics, compressed files, etc): `binary` diff --git a/pages/common/fuck.md b/pages/common/fuck.md index e6bd3bc87fb59d..45e105dcc7b60a 100644 --- a/pages/common/fuck.md +++ b/pages/common/fuck.md @@ -10,3 +10,7 @@ - Try to match a rule for the previous command: `fuck` + +- Confirm the first choice immediately (correct argument depends on level of annoyance): + +`fuck --{{yes|yeah|hard}}` diff --git a/pages/common/func.md b/pages/common/func.md index f2c30361813d29..abdb677e20d813 100644 --- a/pages/common/func.md +++ b/pages/common/func.md @@ -2,7 +2,7 @@ > Azure Functions Core Tools: Develop and test Azure Functions locally. > Local functions can connect to live Azure services, and can deploy a function app to an Azure subscription. -> More information: . +> More information: . - Create a new functions project: diff --git a/pages/common/funzip.md b/pages/common/funzip.md new file mode 100644 index 00000000000000..27e62b0e6f5d59 --- /dev/null +++ b/pages/common/funzip.md @@ -0,0 +1,16 @@ +# funzip + +> Print the content of the first (non-directory) member in an archive without extraction. +> More information: . + +- Print the content of the first member in a `.zip` archive: + +`funzip {{path/to/archive.zip}}` + +- Print the content in a `.gz` archive: + +`funzip {{path/to/archive.gz}}` + +- Decrypt a `.zip` or `.gz` archive and print the content: + +`funzip -password {{password}} {{path/to/archive}}` diff --git a/pages/common/fusermount.md b/pages/common/fusermount.md index 7d3d8242745d2c..8ba0fbb9525ae1 100644 --- a/pages/common/fusermount.md +++ b/pages/common/fusermount.md @@ -1,7 +1,7 @@ # fusermount > Mount and unmount FUSE filesystems. -> More information: . +> More information: . - Unmount a FUSE filesystem: diff --git a/pages/common/fzf.md b/pages/common/fzf.md index 483437807232c3..cb899662655cc7 100644 --- a/pages/common/fzf.md +++ b/pages/common/fzf.md @@ -1,28 +1,29 @@ # fzf -> Command line fuzzy finder. +> Command-line fuzzy finder. +> Similar to `sk`. > More information: . -- Start finder on all files from arbitrary locations: +- Start fzf on all files in the specified directory: -`find {{path/to/search}} -type f | fzf` +`find {{path/to/directory}} -type f | fzf` -- Start finder on running processes: +- Start fzf for running processes: `ps aux | fzf` - Select multiple files with `Shift + Tab` and write to a file: -`find {{path/to/search_files}} -type f | fzf -m > {{filename}}` +`find {{path/to/directory}} -type f | fzf --multi > {{path/to/file}}` -- Start finder with a given query: +- Start fzf with a specified query: -`fzf -q "{{query}}"` +`fzf --query "{{query}}"` -- Start finder 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 -q "^core go$ | rb$ | py$"` +`fzf --query "^core go$ | rb$ | py$"` -- Start finder on entries that not match pyc and match exactly travis: +- Start fzf on entries that not match pyc and match exactly travis: -`fzf -q "!pyc 'travis"` +`fzf --query "!pyc 'travis"` diff --git a/pages/common/g++.md b/pages/common/g++.md index 9839df52b69bd8..5becdc7729c8a0 100644 --- a/pages/common/g++.md +++ b/pages/common/g++.md @@ -6,16 +6,24 @@ - Compile a source code file into an executable binary: -`g++ {{source.cpp}} -o {{output_executable}}` +`g++ {{path/to/source.cpp}} -o {{path/to/output_executable}}` -- Display (almost) all errors and warnings: +- Display common warnings: -`g++ {{source.cpp}} -Wall -o {{output_executable}}` +`g++ {{path/to/source.cpp}} -Wall -o {{path/to/output_executable}}` -- Choose a language standard to compile for(C++98/C++11/C++14/C++17): +- Choose a language standard to compile for (C++98/C++11/C++14/C++17): -`g++ {{source.cpp}} -std={{language_standard}} -o {{output_executable}}` +`g++ {{path/to/source.cpp}} -std={{c++98|c++11|c++14|c++17}} -o {{path/to/output_executable}}` - Include libraries located at a different path than the source file: -`g++ {{source.cpp}} -o {{output_executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}` +`g++ {{path/to/source.cpp}} -o {{path/to/output_executable}} -I{{path/to/header}} -L{{path/to/library}} -l{{library_name}}` + +- Compile and link multiple source code files into an executable binary: + +`g++ -c {{path/to/source_1.cpp path/to/source_2.cpp ...}} && g++ -o {{path/to/output_executable}} {{path/to/source_1.o path/to/source_2.o ...}}` + +- Display version: + +`g++ --version` diff --git a/pages/common/gacutil.md b/pages/common/gacutil.md new file mode 100644 index 00000000000000..8048a14a050db6 --- /dev/null +++ b/pages/common/gacutil.md @@ -0,0 +1,16 @@ +# gacutil + +> Global Assembly Cache (CAG) management utility. +> More information: . + +- Install the specified assembly into GAC: + +`gacutil -i {{path/to/assembly.dll}}` + +- Uninstall the specified assembly from GAC: + +`gacutil -i {{assembly_display_name}}` + +- Print the content of GAC: + +`gacutil -l` diff --git a/pages/common/ganache-cli.md b/pages/common/ganache-cli.md new file mode 100644 index 00000000000000..d0ec985d372675 --- /dev/null +++ b/pages/common/ganache-cli.md @@ -0,0 +1,32 @@ +# ganache-cli + +> Command-line version of Ganache, your personal blockchain for Ethereum development. +> More information: . + +- Run Ganache: + +`ganache-cli` + +- Run Ganache with a specific number of accounts: + +`ganache-cli --accounts={{number_of_accounts}}` + +- Run Ganache and lock available accounts by default: + +`ganache-cli --secure` + +- Run Ganache server and unlock specific accounts: + +`ganache-cli --secure --unlock "{{account_private_key1}}" --unlock "{{account_private_key2}}"` + +- Run Ganache with a specific account and balance: + +`ganache-cli --account="{{account_private_key}},{{account_balance}}"` + +- Run Ganache with accounts with a default balance: + +`ganache-cli --defaultBalanceEther={{default_balance}}` + +- Run Ganache and log all requests to `stdout`: + +`ganache-cli --verbose` diff --git a/pages/common/gcalcli.md b/pages/common/gcalcli.md index ba789f747fd58d..f8add913d4b537 100644 --- a/pages/common/gcalcli.md +++ b/pages/common/gcalcli.md @@ -1,6 +1,6 @@ # gcalcli -> Command line tool to interact with Google Calendar. +> Command-line tool to interact with Google Calendar. > Requests Google API authorization upon first launch. > More information: . diff --git a/pages/common/gcc.md b/pages/common/gcc.md index 238b9d46e4cd37..ef3ef73b5bd002 100644 --- a/pages/common/gcc.md +++ b/pages/common/gcc.md @@ -3,22 +3,22 @@ > 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 {{source1.c}} {{source2.c}} -o {{executable}}` +`gcc {{path/to/source1.c path/to/source2.c ...}} -o {{path/to/output_executable}}` -- Allow warnings, debug symbols in output: +- Show common warnings, debug symbols in output, and optimize without affecting debugging: -`gcc {{source.c}} -Wall -Og -o {{executable}}` +`gcc {{path/to/source.c}} -Wall -g -Og -o {{path/to/output_executable}}` - Include libraries from a different path: -`gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}` +`gcc {{path/to/source.c}} -o {{path/to/output_executable}} -I{{path/to/header}} -L{{path/to/library}} -l{{library_name}}` - Compile source code into Assembler instructions: -`gcc -S {{source.c}}` +`gcc -S {{path/to/source.c}}` -- Compile source code without linking: +- Compile source code into an object file without linking: -`gcc -c {{source.c}}` +`gcc -c {{path/to/source.c}}` diff --git a/pages/common/gcloud.md b/pages/common/gcloud.md index 51421d47230e66..250f9a4b240953 100644 --- a/pages/common/gcloud.md +++ b/pages/common/gcloud.md @@ -7,7 +7,7 @@ `gcloud config list` -- Login to Google account: +- Log in to Google account: `gcloud auth login` diff --git a/pages/common/gcpdiag.md b/pages/common/gcpdiag.md new file mode 100644 index 00000000000000..e81c23b0ae9098 --- /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/gdal2tiles.py.md b/pages/common/gdal2tiles.py.md new file mode 100644 index 00000000000000..46b0832d1d0540 --- /dev/null +++ b/pages/common/gdal2tiles.py.md @@ -0,0 +1,12 @@ +# gdal2tiles.py + +> Generate TMS or XYZ tiles for a raster dataset. +> More information: . + +- Generate TMS tiles for the zoom levels 2-5 of a raster dataset: + +`gdal2tiles.py --zoom={{2-5}} {{path/to/input.tif}} {{path/to/output_directory}}` + +- Generate XYZ tiles for the zoom levels 2-5 of a raster dataset: + +`gdal2tiles.py --zoom={{2-5}} --xyz {{path/to/input.tif}} {{path/to/output_directory}}` diff --git a/pages/common/gdal_contour.md b/pages/common/gdal_contour.md new file mode 100644 index 00000000000000..d197cd755982e1 --- /dev/null +++ b/pages/common/gdal_contour.md @@ -0,0 +1,12 @@ +# gdal_contour + +> Create contour lines and polygons from a digital elevation model. +> More information: . + +- Create a vector dataset with contour lines spread over an 100-meter [i]nterval while [a]ttributing the elevation property as "ele": + +`gdal_contour -a {{ele}} -i {{100.0}} {{path/to/input.tif}} {{path/to/output.gpkg}}` + +- Create a vector dataset with [p]olygons spread over an 100-meter [i]nterval: + +`gdal_contour -i {{100.0}} -p {{path/to/input.tif}} {{path/to/output.gpkg}}` diff --git a/pages/common/gdal_translate.md b/pages/common/gdal_translate.md new file mode 100644 index 00000000000000..2f52d1047eac20 --- /dev/null +++ b/pages/common/gdal_translate.md @@ -0,0 +1,20 @@ +# gdal_translate + +> Convert raster data between different formats. +> More information: . + +- Convert a raster dataset to JPEG format: + +`gdal_translate -of {{JPEG}} {{path/to/input.tif}} {{path/to/output.jpeg}}` + +- Assign a projection to a raster dataset: + +`gdal_translate -a_srs {{EPSG:4326}} {{path/to/input.tif}} {{path/to/output.tif}}` + +- Reduce the size of a raster dataset to a specific fraction: + +`gdal_translate -outsize {{40%}} {{40%}} {{path/to/input.tif}} {{path/to/output.tif}}` + +- Convert a GeoTiff to a Cloud Optimized GeoTiff: + +`gdal_translate {{path/to/input.tif}} {{path/to/output.tif}} -of COG -co COMPRESS=LZW` diff --git a/pages/common/gdaladdo.md b/pages/common/gdaladdo.md new file mode 100644 index 00000000000000..0c6ce26f805ddc --- /dev/null +++ b/pages/common/gdaladdo.md @@ -0,0 +1,8 @@ +# gdaladdo + +> Build overview images of raster datasets. +> More information: . + +- Build overview images of a raster dataset using the "average" [r]esampling method: + +`gdaladdo -r average {{path/to/input.tif}}` diff --git a/pages/common/gdalbuildvrt.md b/pages/common/gdalbuildvrt.md index 182ed4ba26e7e2..3f6589d01f220f 100644 --- a/pages/common/gdalbuildvrt.md +++ b/pages/common/gdalbuildvrt.md @@ -11,10 +11,10 @@ `gdalbuildvrt -input_file_list {{path/to/list.txt}} {{path/to/output.vrt}}` -- Make a RGB virtual mosaic from 3 single-band input files: +- Make an RGB virtual mosaic from 3 single-band input files: `gdalbuildvrt -separate {{path/to/rgb.vrt}} {{path/to/red.tif}} {{path/to/green.tif}} {{path/to/blue.tif}}` -- Make a virtual mosaic with blue background colour (RGB: 0 0 255): +- Make a virtual mosaic with blue background color (RGB: 0 0 255): `gdalbuildvrt -hidenodata -vrtnodata "{{0 0 255}}" {{path/to/output.vrt}} {{path/to/input_directory/*.tif}}` diff --git a/pages/common/gdaldem.md b/pages/common/gdaldem.md new file mode 100644 index 00000000000000..e5d347dc5d1861 --- /dev/null +++ b/pages/common/gdaldem.md @@ -0,0 +1,16 @@ +# gdaldem + +> Tool to analyze and visualize digital elevation models (DEM). +> More information: . + +- Compute the hillshade of a DEM: + +`gdaldem hillshade {{path/to/input.tif}} {{path/to/output.tif}}` + +- Compute the slope of a DEM: + +`gdaldem slope {{path/to/input.tif}} {{path/to/output.tif}}` + +- Compute the aspect of a DEM: + +`gdaldem aspect {{path/to/input.tif}} {{path/to/output.tif}}` diff --git a/pages/common/gdalinfo.md b/pages/common/gdalinfo.md new file mode 100644 index 00000000000000..3b014b2e2dd6df --- /dev/null +++ b/pages/common/gdalinfo.md @@ -0,0 +1,28 @@ +# gdalinfo + +> List various information about a GDAL supported raster dataset. +> More information: . + +- List all supported raster formats: + +`gdalinfo --formats` + +- List information about a specific raster dataset: + +`gdalinfo {{path/to/input.tif}}` + +- List information about a specific raster dataset in JSON format: + +`gdalinfo -json {{path/to/input.tif}}` + +- Show histogram values of a specific raster dataset: + +`gdalinfo -hist {{path/to/input.tif}}` + +- List information about a Web Map Service (WMS): + +`gdalinfo WMS:{{https://services.meggsimum.de/geoserver/ows}}` + +- List information about a specific dataset of a Web Map Service (WMS): + +`gdalinfo WMS:{{https://services.meggsimum.de/geoserver/ows}} -sd {{4}}` diff --git a/pages/common/gdalwarp.md b/pages/common/gdalwarp.md new file mode 100644 index 00000000000000..fce0a19f6aaaf6 --- /dev/null +++ b/pages/common/gdalwarp.md @@ -0,0 +1,16 @@ +# gdalwarp + +> Image reprojection and warping utility. +> More information: . + +- Reproject a raster dataset: + +`gdalwarp -t_srs {{EPSG:4326}} {{path/to/input.tif}} {{path/to/output.tif}}` + +- Crop a raster dataset by using specific coordinates: + +`gdalwarp -te {{min_x}} {{min_y}} {{max_x}} {{max_y}} -te_srs {{EPSG:4326}} {{path/to/input.tif}} {{path/to/output.tif}}` + +- Crop a raster dataset using a vector layer: + +`gdalwarp -cutline {{path/to/area_to_cut.geojson}} -crop_to_cutline {{path/to/input.tif}} {{path/to/output.tif}}` diff --git a/pages/common/gdrive.md b/pages/common/gdrive.md index 6c18b1a024fc7a..274975f7c823aa 100644 --- a/pages/common/gdrive.md +++ b/pages/common/gdrive.md @@ -1,21 +1,21 @@ # gdrive -> Command line tool to interact with Google Drive. -> Folder/file id can be obtained from the Google Drive folder or id url. +> Command-line tool to interact with Google Drive. +> Folder/file ID can be obtained from the Google Drive folder or ID URL. > More information: . -- Upload a local path to the parent folder with the specified id: +- Upload a local path to the parent folder with the specified ID: `gdrive upload -p {{id}} {{path/to/file_or_folder}}` -- Download file or directory by id to current directory: +- Download file or directory by ID to current directory: `gdrive download {{id}}` -- Download to a given local path by its id: +- Download to a given local path by its ID: `gdrive download --path {{path/to/folder}} {{id}}` -- Create a new revision of an id using a given file or folder: +- Create a new revision of an ID using a given file or folder: `gdrive update {{id}} {{path/to/file_or_folder}}` diff --git a/pages/common/gdu.md b/pages/common/gdu.md new file mode 100644 index 00000000000000..ca1946e03522fa --- /dev/null +++ b/pages/common/gdu.md @@ -0,0 +1,36 @@ +# gdu + +> Disk usage analyzer with console interface. +> More information: . + +- Interactively show the disk usage of the current directory: + +`gdu` + +- Interactively show the disk usage of a given directory: + +`gdu {{path/to/directory}}` + +- Interactively show the disk usage of all mounted disks: + +`gdu --show-disks` + +- Interactively show the disk usage of the current directory but ignore some sub-directories: + +`gdu --ignore-dirs {{path/to/directory1,path/to/directory2,...}}` + +- Ignore paths by regular expression: + +`gdu --ignore-dirs-pattern '{{.*[abc]+}}'` + +- Ignore hidden directories: + +`gdu --no-hidden` + +- Only print the result, do not enter interactive mode: + +`gdu --non-interactive {{path/to/directory}}` + +- Do not show the progress in non-interactive mode (useful in scripts): + +`gdu --no-progress {{path/to/directory}}` diff --git a/pages/common/gem.md b/pages/common/gem.md index 05cbf0d607066b..44238d40ab548e 100644 --- a/pages/common/gem.md +++ b/pages/common/gem.md @@ -5,9 +5,9 @@ - Search for remote gem(s) and show all available versions: -`gem search {{regexp}} --all` +`gem search {{regular_expression}} --all` -- Install latest version of a gem: +- Install the latest version of a gem: `gem install {{gemname}}` diff --git a/pages/common/geth.md b/pages/common/geth.md index 92e68020a1c920..11b5c81e606cd3 100644 --- a/pages/common/geth.md +++ b/pages/common/geth.md @@ -1,6 +1,6 @@ # geth -> The go-ethereum command line interface. +> The go-ethereum command-line interface. > More information: . - Connect to the main Ethereum network and automatically download the full node: diff --git a/pages/common/gfortran.md b/pages/common/gfortran.md new file mode 100644 index 00000000000000..465149c5282272 --- /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 a13e7d30de5a3b..98e6d7f2344054 100644 --- a/pages/common/gh-alias.md +++ b/pages/common/gh-alias.md @@ -1,13 +1,13 @@ # gh alias -> Manage GitHub CLI command aliases from the command line. +> Manage GitHub CLI command aliases from the command-line. > More information: . - Display the subcommand help: `gh alias` -- List all of the aliases `gh` is configured to use: +- List all the aliases `gh` is configured to use: `gh alias list` diff --git a/pages/common/gh-auth.md b/pages/common/gh-auth.md index 50625760cdde31..fab9b72d0179d3 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 from the command-line. > More information: . -- Login with interactive prompt: +- Log in with interactive prompt: `gh auth login` -- Login with a token from standard input (created in https://github.com/settings/tokens): +- Log in with a token from standard input (created in https://github.com/settings/tokens): `echo {{your_token}} | gh auth login --with-token` @@ -19,7 +19,7 @@ `gh auth logout` -- Login with a specific GitHub Enterprise Server: +- Log in with a specific GitHub Enterprise Server: `gh auth login --hostname {{github.example.com}}` @@ -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 new file mode 100644 index 00000000000000..e614f3dc1fc991 --- /dev/null +++ b/pages/common/gh-browse.md @@ -0,0 +1,36 @@ +# gh browse + +> Open a GitHub repository in the browser or print the URL. +> More information: . + +- Open the homepage of the current repository in the default web browser: + +`gh browse` + +- Open the homepage of a specific repository in the default web browser: + +`gh browse {{owner}}/{{repository}}` + +- Open the settings page of the current repository in the default web browser: + +`gh browse --settings` + +- Open the wiki of the current repository in the default web browser: + +`gh browse --wiki` + +- Open a specific issue or pull request in the web browser: + +`gh browse {{issue_or_pull_request_number}}` + +- Open a specific branch in the web browser: + +`gh browse --branch {{branch_name}}` + +- Open a specific file or directory of the current repository in the web browser: + +`gh browse {{path_from_root_of_repository}}` + +- Print the destination URL without open the web browser: + +`gh browse --no-browser` diff --git a/pages/common/gh-codespace.md b/pages/common/gh-codespace.md new file mode 100644 index 00000000000000..c91f808166a918 --- /dev/null +++ b/pages/common/gh-codespace.md @@ -0,0 +1,36 @@ +# gh codespace + +> Connect and manage your codespaces in GitHub. +> More information: . + +- Create a codespace in GitHub interactively: + +`gh codespace create` + +- List all available codespaces: + +`gh codespace list` + +- Connect to a codespace via SSH interactively: + +`gh codespace ssh` + +- Transfer a specific file to a codespace interactively: + +`gh codespace cp {{path/to/source_file}} remote:{{path/to/remote_file}}` + +- List the ports of a codespace interactively: + +`gh codespace ports` + +- Display the logs from a codespace interactively: + +`gh codespace logs` + +- Delete a codespace interactively: + +`gh codespace delete` + +- Display help for a subcommand: + +`gh codespace {{code|cp|create|delete|edit|...}} --help` diff --git a/pages/common/gh-cs.md b/pages/common/gh-cs.md new file mode 100644 index 00000000000000..c029ac855d7192 --- /dev/null +++ b/pages/common/gh-cs.md @@ -0,0 +1,8 @@ +# gh cs + +> This command is an alias of `gh codespace`. +> More information: . + +- View documentation for the original command: + +`tldr gh-codespace` diff --git a/pages/common/gh-extension.md b/pages/common/gh-extension.md new file mode 100644 index 00000000000000..e6423a5a6f0bd2 --- /dev/null +++ b/pages/common/gh-extension.md @@ -0,0 +1,36 @@ +# gh extension + +> Manage extensions for the GitHub CLI. +> More information: . + +- Initialize a new GitHub CLI extension project in a directory of the same name: + +`gh extension create {{extension_name}}` + +- Install an extension from a GitHub repository: + +`gh extension install {{owner}}/{{repository}}` + +- List installed extensions: + +`gh extension list` + +- Upgrade a specific extension: + +`gh extension upgrade {{extension_name}}` + +- Upgrade all extensions: + +`gh extension upgrade --all` + +- List installed extensions: + +`gh extension list` + +- Remove an extension: + +`gh extension remove {{extension_name}}` + +- Display help about a subcommand: + +`gh extension {{subcommand}} --help` diff --git a/pages/common/gh-formatting.md b/pages/common/gh-formatting.md new file mode 100644 index 00000000000000..7b1fb969969648 --- /dev/null +++ b/pages/common/gh-formatting.md @@ -0,0 +1,8 @@ +# gh formatting + +> Formatting options for JSON data exported from gh GitHub CLI command. +> More information: . + +- Display help about formatting JSON output from `gh` using `jq`: + +`gh formatting` diff --git a/pages/common/gh-gist.md b/pages/common/gh-gist.md index 66841b989fdce6..5d5ced94d51ff8 100644 --- a/pages/common/gh-gist.md +++ b/pages/common/gh-gist.md @@ -1,6 +1,6 @@ # gh gist -> Work with GitHub Gists on the command line. +> Work with GitHub Gists on the command-line. > More information: . - Create a new Gist from a space-separated list of files: @@ -9,7 +9,7 @@ - Create a new Gist with a description: -`gh gist create {{filename}} --desc "{{description}}"` +`gh gist create {{path/to/file}} --desc "{{description}}"` - Edit a Gist: diff --git a/pages/common/gh-help.md b/pages/common/gh-help.md index 1c46e351c8791b..4cda51a6d94ce4 100644 --- a/pages/common/gh-help.md +++ b/pages/common/gh-help.md @@ -19,6 +19,14 @@ `gh help reference` +- Display help about formatting JSON output from `gh` using `jq`: + +`gh help formatting` + +- Display help about using `gh` with MinTTY: + +`gh help mintty` + - Display help for a subcommand: `gh help {{subcommand}}` diff --git a/pages/common/gh-issue-create.md b/pages/common/gh-issue-create.md new file mode 100644 index 00000000000000..cd55b84599c363 --- /dev/null +++ b/pages/common/gh-issue-create.md @@ -0,0 +1,32 @@ +# gh issue create + +> Create GitHub issues on a repository from the command-line. +> More information: . + +- Create a new issue against the current repository interactively: + +`gh issue create` + +- Create a new issue with the `bug` label interactively: + +`gh issue create --label "{{bug}}"` + +- Create a new issue interactively and assign it to the specified users: + +`gh issue create --assignee {{user1,user2,...}}` + +- Create a new issue with a title, body and assign it to the current user: + +`gh issue create --title "{{title}}" --body "{{body}}" --assignee "{{@me}}"` + +- Create a new issue interactively, reading the body text from a file: + +`gh issue create --body-file {{path/to/file}}` + +- Create a new issue in the default web browser: + +`gh issue create --web` + +- Display the help: + +`gh issue create --help` diff --git a/pages/common/gh-issue.md b/pages/common/gh-issue.md index df0388423f4f92..061d8288ab250b 100644 --- a/pages/common/gh-issue.md +++ b/pages/common/gh-issue.md @@ -1,13 +1,17 @@ # gh issue -> Manage GitHub issues from the command line. +> Manage GitHub issues from the command-line. > More information: . -- Print out the issue: +- Display a specific issue: `gh issue view {{issue_number}}` -- Create a new issue in the web browser: +- Display a specific issue in the default web browser: + +`gh issue view {{issue_number}} --web` + +- Create a new issue in the default web browser: `gh issue create --web` @@ -23,6 +27,6 @@ `gh issue status --repo {{owner}}/{{repository}}` -- Reopen an issue: +- Reopen a specific issue: `gh issue reopen {{issue_number}}` diff --git a/pages/common/gh-label.md b/pages/common/gh-label.md new file mode 100644 index 00000000000000..6219ef9bbb7f0b --- /dev/null +++ b/pages/common/gh-label.md @@ -0,0 +1,32 @@ +# gh label + +> Work with GitHub labels on the command-line. +> More information: . + +- List labels for the repository in the current directory: + +`gh label list` + +- View labels for the repository in the current directory in the default web browser: + +`gh label list --web` + +- Create a label with a specific name, description and color in hexadecimal format for the repository in the current directory: + +`gh label create {{name}} --description "{{description}}" --color {{color_hex}}` + +- Delete a label for the repository in the current directory, prompting for confirmation: + +`gh label delete {{name}}` + +- Update the name and description for a specific label for the repository in the current directory: + +`gh label edit {{name}} --name {{new_name}} --description "{{description}}"` + +- Clone labels from a specific repository into the repository in the current directory: + +`gh label clone {{owner}}/{{repository}}` + +- Display help for a subcommand: + +`gh label {{subcommand}} --help` diff --git a/pages/common/gh-mintty.md b/pages/common/gh-mintty.md new file mode 100644 index 00000000000000..3aac6ca7dd88c9 --- /dev/null +++ b/pages/common/gh-mintty.md @@ -0,0 +1,8 @@ +# gh mintty + +> Display help about MinTTY integration for the GitHub CLI command. +> More information: . + +- Display help about using `gh` with MinTTY: + +`gh mintty` diff --git a/pages/common/gh-pr-create.md b/pages/common/gh-pr-create.md new file mode 100644 index 00000000000000..d166d50ffc7f62 --- /dev/null +++ b/pages/common/gh-pr-create.md @@ -0,0 +1,24 @@ +# gh pr create + +> Manage GitHub pull requests from the command-line. +> More information: . + +- Interactively create a pull request: + +`gh pr create` + +- Create a pull request, determining the title and description from the commit messages of the current branch: + +`gh pr create --fill` + +- Create a draft pull request: + +`gh pr create --draft` + +- Create a pull request specifying the base branch, title, and description: + +`gh pr create --base {{base_branch}} --title "{{title}}" --body "{{body}}"` + +- Start opening a pull request in the default web browser: + +`gh pr create --web` diff --git a/pages/common/gh-pr-merge.md b/pages/common/gh-pr-merge.md index 9f9ad2348f1182..272745299e3a87 100644 --- a/pages/common/gh-pr-merge.md +++ b/pages/common/gh-pr-merge.md @@ -19,6 +19,14 @@ `gh pr merge --{{merge|squash|rebase}}` +- Merge the current pull request with the specified merge strategy and commit message: + +`gh pr merge --{{merge|squash|rebase}} --subject {{commit_message}}` + - Squash the current pull request into one commit with the message body and merge: `gh pr merge --squash --body="{{commit_message_body}}"` + +- Display help: + +`gh pr merge --help` diff --git a/pages/common/gh-pr.md b/pages/common/gh-pr.md index c2a242f6214459..ea2715c60294f5 100644 --- a/pages/common/gh-pr.md +++ b/pages/common/gh-pr.md @@ -1,21 +1,22 @@ # gh pr -> Manage GitHub pull requests from the command line. +> Manage GitHub pull requests from the command-line. +> Some subcommands such as `gh pr create` have their own usage documentation. > More information: . - Create a pull request: `gh pr create` -- Check out a pull request locally: +- Check out a specific pull request locally: `gh pr checkout {{pr_number}}` -- View the changes made in the PR: +- View the changes made in the pull request for the current branch: `gh pr diff` -- Approve the pull request of the current branch: +- Approve the pull request for the current branch: `gh pr review --approve` @@ -30,3 +31,7 @@ - Edit the base branch of a pull request: `gh pr edit --base {{branch_name}}` + +- Check the status of the current repository's pull requests: + +`gh pr status` diff --git a/pages/common/gh-release.md b/pages/common/gh-release.md index c876a88bdd911f..67de599b83249e 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 from the command-line. > More information: . - List releases in a GitHub repository, limited to 30 items: diff --git a/pages/common/gh-repo.md b/pages/common/gh-repo.md index e3cc3b5474be44..7092683b18ad53 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 on the command-line. > More information: . - Create a new repository (if the repository name is not set, the default name will be the name of the current directory): @@ -15,7 +15,7 @@ `gh repo fork {{owner}}/{{repository}} --clone` -- View a repository in the web browser: +- View a repository in the default web browser: `gh repo view {{repository}} --web` diff --git a/pages/common/gh-screensaver.md b/pages/common/gh-screensaver.md new file mode 100644 index 00000000000000..aa59c7d35fdf2b --- /dev/null +++ b/pages/common/gh-screensaver.md @@ -0,0 +1,25 @@ +# gh screensaver + +> Extension for GitHub CLI that runs animated terminal screensavers. +> See also: `gh extension`. +> More information: . + +- Run a random screensaver: + +`gh screensaver` + +- Run a specific screensaver: + +`gh screensaver --saver {{fireworks|marquee|pipes|pollock|starfield}}` + +- Run the "marquee" screensaver with a specific text and font: + +`gh screensaver --saver {{marquee}} -- --message="{{message}}" --font={{font_name}}` + +- Run the "starfield" screensaver with a specific density and speed: + +`gh screensaver --saver {{starfield}} -- --density {{500}} --speed {{10}}` + +- List available screensavers: + +`gh screensaver --list` diff --git a/pages/common/gh-secret-set.md b/pages/common/gh-secret-set.md new file mode 100644 index 00000000000000..30db785f865aa1 --- /dev/null +++ b/pages/common/gh-secret-set.md @@ -0,0 +1,24 @@ +# gh secret set + +> Create or update GitHub secrets from the command line. +> More information: . + +- Set a secret for the current repository (user will be prompted for the value): + +`gh secret set {{name}}` + +- Set a secret from a file for the current repository: + +`gh secret set {{name}} < {{path/to/file}}` + +- Set a secret for a specific repository: + +`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}` + +- Set an organization secret for specific repositories: + +`gh secret set {{name}} --org {{organization}} --repos "{{repository1,repository2,...}}"` + +- Set an organization secret with a specific visibility: + +`gh secret set {{name}} --org {{organization}} --visibility {{all|private|selected}}` diff --git a/pages/common/gh-secret.md b/pages/common/gh-secret.md index 9e9cacdd50eaba..6ab25044ed1d25 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 from the command-line. > More information: . - List secret keys for the current repository: @@ -15,13 +15,13 @@ `gh secret list --repo {{owner}}/{{repository}}` -- Set a secret from a file for the current repository: +- Set a secret for the current repository (user will be prompted for the value): -`gh secret set {{name}} < {{path/to/file}}` +`gh secret set {{name}}` -- Set a secret for a specific repository: +- Set a secret from a file for the current repository: -`gh secret set {{name}} --body {{value}} --repo {{owner}}/{{repository}}` +`gh secret set {{name}} < {{path/to/file}}` - Set an organization secret for specific repositories: diff --git a/pages/common/gh-ssh-key.md b/pages/common/gh-ssh-key.md index 268ffd608ac7bf..da134d1effd32c 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 from the command-line. > More information: . - Display help: diff --git a/pages/common/gh-workflow.md b/pages/common/gh-workflow.md index 375aa0c9ed9613..f7ece5a7ac27c4 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: +- 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 22b5cbc3942e68..2e8a6887d1f618 100644 --- a/pages/common/gh.md +++ b/pages/common/gh.md @@ -1,6 +1,7 @@ # gh -> Work seamlessly with GitHub from the command line. +> Work seamlessly with GitHub from the command-line. +> Some subcommands such as `gh config` have their own usage documentation. > More information: . - Clone a GitHub repository locally: @@ -15,7 +16,7 @@ `gh issue list` -- View an issue in the browser: +- View an issue in the default web browser: `gh issue view --web {{issue_number}}` @@ -23,11 +24,11 @@ `gh pr create` -- View a pull request in the browser: +- View a pull request in the default web browser: `gh pr view --web {{pr_number}}` -- Locally check out the branch of a pull request, given its number: +- Check out a specific pull request locally: `gh pr checkout {{pr_number}}` diff --git a/pages/common/ghc.md b/pages/common/ghc.md index c2bd1b8fb8e197..fa6d76a1d2430c 100644 --- a/pages/common/ghc.md +++ b/pages/common/ghc.md @@ -20,7 +20,7 @@ `ghc -c {{file.hs}}` -- Run Haskell interactive interpreter (REPL): +- Start a REPL (interactive shell): `ghci` diff --git a/pages/common/ghost.md b/pages/common/ghost.md index 3c38d22cc795e3..025bff8d42098f 100644 --- a/pages/common/ghost.md +++ b/pages/common/ghost.md @@ -15,7 +15,7 @@ `ghost restart` -- Check the system for any potential hiccups when on install or update of Ghost: +- Check the system for any potential hiccups while installing or updating Ghost: `ghost doctor` diff --git a/pages/common/gibo.md b/pages/common/gibo.md index e6b45f5d01c241..0dd43f0ee50570 100644 --- a/pages/common/gibo.md +++ b/pages/common/gibo.md @@ -7,7 +7,7 @@ `gibo list` -- Write a boilerplate to stdout: +- Write a boilerplate to `stdout`: `gibo dump {{boilerplate}}` diff --git a/pages/common/gifdiff.md b/pages/common/gifdiff.md new file mode 100644 index 00000000000000..0c5d2f4446f1aa --- /dev/null +++ b/pages/common/gifdiff.md @@ -0,0 +1,13 @@ +# gifdiff + +> Compare two GIFs for identical visual appearance. +> See also: `gifsicle`. +> More information: . + +- Check how GIFs differ: + +`gifdiff {{path/to/first.gif}} {{path/to/second.gif}}` + +- Check if GIFs differ: + +`gifdiff --brief {{path/to/first.gif}} {{path/to/second.gif}}` diff --git a/pages/common/gifsicle.md b/pages/common/gifsicle.md index d810d1afa1a81f..d5b5a0e61ceaa5 100644 --- a/pages/common/gifsicle.md +++ b/pages/common/gifsicle.md @@ -1,20 +1,32 @@ # gifsicle -> Create GIFs. +> GIF manipulator. > More information: . -- Optimise a GIF: +- Optimize a GIF as a new file: -`gifsicle --batch --optimize=3 {{amin.gif}}` +`gifsicle {{path/to/input.gif}} --optimize=3 -o {{path/to/output.gif}}` -- Make a GIF animation with gifsicle: +- Unoptimize a GIF in place: -`gifsicle --delay={{10}} --loop *.gif > {{anim.gif}}` +`gifsicle -b {{path/to/input.gif}} --unoptimize` -- Extract frames from an animation: +- Extract a frame from a GIF: -`gifsicle {{anim.gif}} '#0' > {{firstframe.gif}}` +`gifsicle {{path/to/input.gif}} '#{{0}}' > {{path/to/firstframe.gif}}` -- You can also edit animations by replacing, deleting, or inserting frames: +- Make a GIF animation from selected GIFs: -`gifsicle -b {{anim.gif}} --replace '#0' {{new.gif}}` +`gifsicle {{*.gif}} --delay={{10}} --loop > {{path/to/output.gif}}` + +- Reduce file size using lossy compression: + +`gifsicle -b {{path/to/input.gif}} --optimize=3 --lossy={{100}} --colors={{16}} --dither` + +- Delete the first 10 frames and all frames after frame 20 from a GIF: + +`gifsicle -b {{path/to/input.gif}} --delete '#{{0-9}}' '#{{20-}}'` + +- Modify all frames of a GIF using specific transformation options: + +`gifsicle -b --crop {{50}},{{50}}+{{-50}}x{{-50}} --scale {{0.25}} --flip-horizontal --rotate-90 {{path/to/input.gif}}` diff --git a/pages/common/gimp.md b/pages/common/gimp.md index db07959d8ea668..028bd650048e38 100644 --- a/pages/common/gimp.md +++ b/pages/common/gimp.md @@ -1,23 +1,24 @@ # gimp > GNU image manipulation program. +> See also: `krita`. > More information: . -- Launch GIMP: +- Start GIMP: `gimp` -- Launch GIMP without showing the splash screen: +- Open specific files: -`gimp --no-splash` +`gimp {{path/to/image1 path/to/image2 ...}}` -- Start a new GIMP instance, even if there is already a running one: +- Open specific files in a new window: -`gimp --new-instance` +`gimp --new-instance {{path/to/image1 path/to/image2 ...}}` -- Open the given file as a new image: +- Start without a splash screen: -`gimp --as-new {{path/to/image}}` +`gimp --no-splash` - Print errors and warnings to the console instead of showing them in a dialog box: diff --git a/pages/common/gist.md b/pages/common/gist.md index dc5f842352004f..3c4b6d3b0545a4 100644 --- a/pages/common/gist.md +++ b/pages/common/gist.md @@ -3,7 +3,7 @@ > Upload code to https://gist.github.com. > More information: . -- Login in gist on this computer: +- Log in in gist on this computer: `gist --login` @@ -15,7 +15,7 @@ `gist --private --description "{{A meaningful description}}" {{file.txt}} ` -- Read contents from stdin and create a gist from it: +- Read contents from `stdin` and create a gist from it: `{{echo "hello world"}} | gist` @@ -27,6 +27,6 @@ `gist --list {{username}}` -- Update a gist using the id from URL: +- Update a gist using the ID from URL: `gist --update {{GIST_ID}} {{file.txt}}` diff --git a/pages/common/git-abort.md b/pages/common/git-abort.md new file mode 100644 index 00000000000000..136a68e7be6fdf --- /dev/null +++ b/pages/common/git-abort.md @@ -0,0 +1,9 @@ +# git abort + +> Abort an ongoing rebase, merge, or cherry-pick. +> Part of `git-extras`. +> More information: . + +- Abort a Git rebase, merge, or cherry-pick: + +`git abort` diff --git a/pages/common/git-alias.md b/pages/common/git-alias.md new file mode 100644 index 00000000000000..cbdd005c2b410e --- /dev/null +++ b/pages/common/git-alias.md @@ -0,0 +1,17 @@ +# git alias + +> Create shortcuts for Git commands. +> Part of `git-extras`. +> More information: . + +- List all aliases: + +`git alias` + +- Create a new alias: + +`git alias "{{name}}" "{{command}}"` + +- Search for an existing alias: + +`git alias ^{{name}}` diff --git a/pages/common/git-am.md b/pages/common/git-am.md index 4b170737a266b3..d22019a9271b02 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-annotate.md b/pages/common/git-annotate.md index 9ad786ea60fd21..16c02acdfd4a4e 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 5b5757916c3768..9687569edb86b8 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-file.md b/pages/common/git-archive-file.md new file mode 100644 index 00000000000000..9b893ba791c91c --- /dev/null +++ b/pages/common/git-archive-file.md @@ -0,0 +1,9 @@ +# git archive-file + +> Export all the files of the current Git branch into a zip archive. +> Part of `git-extras`. +> More information: . + +- Pack the currently checked out commit into a zip archive: + +`git archive-file` diff --git a/pages/common/git-authors.md b/pages/common/git-authors.md new file mode 100644 index 00000000000000..d227b81e4f8424 --- /dev/null +++ b/pages/common/git-authors.md @@ -0,0 +1,17 @@ +# git authors + +> Generate a list of committers of a Git repository. +> Part of `git-extras`. +> More information: . + +- Print a full list of committers to `stdout` instead of to the `AUTHORS` file: + +`git authors --list` + +- Append the list of committers to the `AUTHORS` file and open it in the default editor: + +`git authors` + +- Append the list of committers, excluding emails, to the `AUTHORS` file and open it in the default editor: + +`git authors --no-email` diff --git a/pages/common/git-bisect.md b/pages/common/git-bisect.md index 774cb39d18e279..4dc387de7376d4 100644 --- a/pages/common/git-bisect.md +++ b/pages/common/git-bisect.md @@ -19,3 +19,7 @@ - Skip a commit during a bisect (e.g. one that fails the tests due to a different issue): `git bisect skip` + +- Display a log of what has been done so far: + +`git bisect log` diff --git a/pages/common/git-blame-someone-else.md b/pages/common/git-blame-someone-else.md new file mode 100644 index 00000000000000..5bbc669838a46a --- /dev/null +++ b/pages/common/git-blame-someone-else.md @@ -0,0 +1,8 @@ +# git blame-someone-else + +> Blame someone else for your bad code. +> More information: . + +- Change the committer and author of a commit: + +`git blame-someone-else "{{author }}" {{commit}}` diff --git a/pages/common/git-blame.md b/pages/common/git-blame.md index dede3cf5915417..47b19f8b484cf3 100644 --- a/pages/common/git-blame.md +++ b/pages/common/git-blame.md @@ -5,8 +5,16 @@ - Print file with author name and commit hash on each line: -`git blame {{file}}` +`git blame {{path/to/file}}` - Print file with author email and commit hash on each line: -`git blame -e {{file}}` +`git blame -e {{path/to/file}}` + +- Print file with author name and commit hash on each line at a specific commit: + +`git blame {{commit}} {{path/to/file}}` + +- Print file with author name and commit hash on each line before a specific commit: + +`git blame {{commit}}~ {{path/to/file}}` diff --git a/pages/common/git-branch.md b/pages/common/git-branch.md index dc8da7c90e30f3..6f49d81e38bd13 100644 --- a/pages/common/git-branch.md +++ b/pages/common/git-branch.md @@ -3,13 +3,13 @@ > Main Git command for working with branches. > More information: . -- List local branches. The current branch is highlighted by `*`: +- List all branches (local and remote; the current branch is highlighted by `*`): -`git branch` +`git branch --all` -- List all branches (local and remote): +- List which branches include a specific Git commit in their history: -`git branch -a` +`git branch --all --contains {{commit_hash}}` - Show the name of the current branch: diff --git a/pages/common/git-browse-ci.md b/pages/common/git-browse-ci.md new file mode 100644 index 00000000000000..fe45965b098ee8 --- /dev/null +++ b/pages/common/git-browse-ci.md @@ -0,0 +1,13 @@ +# git browse-ci + +> Open the current `git` repository's CI website in the default web browser. +> Part of `git-extras`. +> More information: . + +- Open the current repository's CI configuration on its upstream website: + +`git browse-ci` + +- Open the current repository's CI configuration on its upstream website for a specific remote: + +`git browse-ci {{remote}}` diff --git a/pages/common/git-browse.md b/pages/common/git-browse.md new file mode 100644 index 00000000000000..a9ecd4d2103f3d --- /dev/null +++ b/pages/common/git-browse.md @@ -0,0 +1,13 @@ +# git browse + +> View an upstream repository in the default browser. +> Part of `git-extras`. +> More information: . + +- Open the first upstream in the default browser: + +`git browse` + +- Open a specific upstream in the default browser: + +`git browse {{upstream}}` diff --git a/pages/common/git-brv.md b/pages/common/git-brv.md new file mode 100644 index 00000000000000..0f58e431159995 --- /dev/null +++ b/pages/common/git-brv.md @@ -0,0 +1,9 @@ +# git brv + +> Print a list of branches, sorted by last commit date. +> Part of `git-extras`. +> More information: . + +- List each branch showing date, latest commit hash and message: + +`git brv` diff --git a/pages/common/git-bug.md b/pages/common/git-bug.md new file mode 100644 index 00000000000000..114ecb679c6595 --- /dev/null +++ b/pages/common/git-bug.md @@ -0,0 +1,33 @@ +# git bug + +> A distributed bug tracker that uses git's internal storage, so no files are added in your project. +> You may submit your problems to the same git remote you use to interact with others, much like commits and branches. +> More information: . + +- Create a new identity: + +`git bug user create` + +- Create a new bug: + +`git bug add` + +- You can push your new entry to a remote: + +`git bug push` + +- You can pull for updates: + +`git bug pull` + +- List existing bugs: + +`git bug ls` + +- Filter and sort bugs using a query: + +`git bug ls "{{status}}:{{open}} {{sort}}:{{edit}}"` + +- Search for bugs by text content: + +`git bug ls "{{search_query}}" baz` diff --git a/pages/common/git-bugreport.md b/pages/common/git-bugreport.md index 95787f2abec2df..dae5da4716ad1f 100644 --- a/pages/common/git-bugreport.md +++ b/pages/common/git-bugreport.md @@ -3,14 +3,14 @@ > Captures debug information from the system and user, generating a text file to aid in the reporting of a bug in Git. > More information: . -- Create a new bugreport file in the current directory: +- Create a new bug report file in the current directory: `git bugreport` -- Create a new bugreport file in the specified directory, creating it if it does not exist: +- Create a new bug report file in the specified directory, creating it if it does not exist: `git bugreport --output-directory {{path/to/directory}}` -- Create a new bugreport file with the specified filename suffix in `strftime` format: +- Create a new bug report file with the specified filename suffix in `strftime` format: `git bugreport --suffix {{%m%d%y}}` diff --git a/pages/common/git-bulk.md b/pages/common/git-bulk.md new file mode 100644 index 00000000000000..bd74e344b6041d --- /dev/null +++ b/pages/common/git-bulk.md @@ -0,0 +1,37 @@ +# git bulk + +> Execute operations on multiple Git repositories. +> Part of `git-extras`. +> More information: . + +- Register the current directory as a workspace: + +`git bulk --addcurrent {{workspace_name}}` + +- Register a workspace for bulk operations: + +`git bulk --addworkspace {{workspace_name}} {{/absolute/path/to/repository}}` + +- Clone a repository inside a specific directory then register the repository as a workspace: + +`git bulk --addworkspace {{workspace_name}} {{/absolute/path/to/parent_directory}} --from {{remote_repository_location}}` + +- Clone repositories from a newline-separated list of remote locations then register them as workspaces: + +`git bulk --addworkspace {{workspace-name}} {{absolute/path/to/root/directory}} --from {{absolute/path/to/file}}` + +- List all registered workspaces: + +`git bulk --listall` + +- Run a Git command on the repositories of the current workspace: + +`git bulk {{command}} {{command_arguments}}` + +- Remove a specific workspace: + +`git bulk --removeworkspace {{workspace_name}}` + +- Remove all workspaces: + +`git bulk --purge` diff --git a/pages/common/git-changelog.md b/pages/common/git-changelog.md new file mode 100644 index 00000000000000..25a56ada99ece9 --- /dev/null +++ b/pages/common/git-changelog.md @@ -0,0 +1,33 @@ +# git changelog + +> Generate a changelog report from repository commits and tags. +> Part of `git-extras`. +> More information: . + +- Update existing file or create a new `History.md` file with the commit messages since the latest Git tag: + +`git changelog` + +- List commits from the current version: + +`git changelog --list` + +- List a range of commits from the tag named `2.1.0` to now: + +`git changelog --list --start-tag {{2.1.0}}` + +- List pretty formatted range of commits between the tag `0.5.0` and the tag `1.0.0`: + +`git changelog --start-tag {{0.5.0}} --final-tag {{1.0.0}}` + +- List pretty formatted range of commits between the commit `0b97430` and the tag `1.0.0`: + +`git changelog --start-commit {{0b97430}} --final-tag {{1.0.0}}` + +- Specify `CHANGELOG.md` as the output file: + +`git changelog {{CHANGELOG.md}}` + +- Replace contents of current changelog file entirely: + +`git changelog --prune-old` diff --git a/pages/common/git-check-ignore.md b/pages/common/git-check-ignore.md index dd90c41fff7df6..381b6ca6ed5b19 100644 --- a/pages/common/git-check-ignore.md +++ b/pages/common/git-check-ignore.md @@ -1,6 +1,6 @@ # git check-ignore -> Analyse 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: @@ -11,7 +11,7 @@ `git check-ignore {{path/to/file}} {{path/to/directory}}` -- Use pathnames, one per line, from stdin: +- Use pathnames, one per line, from `stdin`: `git check-ignore --stdin < {{path/to/file_list}}` diff --git a/pages/common/git-checkout.md b/pages/common/git-checkout.md index ec4417032adae4..ca1bacc1c990ea 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-clear-soft.md b/pages/common/git-clear-soft.md new file mode 100644 index 00000000000000..38f0f49f3b97a1 --- /dev/null +++ b/pages/common/git-clear-soft.md @@ -0,0 +1,9 @@ +# git clear-soft + +> Clear a Git working directory as if it was freshly cloned with the current branch excluding files in `.gitignore`. +> Part of `git-extras`. +> More information: . + +- Reset all tracked files and delete all untracked files: + +`git clear-soft` diff --git a/pages/common/git-clear.md b/pages/common/git-clear.md new file mode 100644 index 00000000000000..35c5cf2eab4506 --- /dev/null +++ b/pages/common/git-clear.md @@ -0,0 +1,9 @@ +# git clear + +> Clear a Git working directory as if it was freshly cloned with the current branch including files in `.gitignore`. +> Part of `git-extras`. +> More information: . + +- Reset all tracked files and delete all untracked files even if they are included in the `.gitignore`: + +`git clear` diff --git a/pages/common/git-clone.md b/pages/common/git-clone.md index a3dad1915139d2..19337afc08b058 100644 --- a/pages/common/git-clone.md +++ b/pages/common/git-clone.md @@ -30,3 +30,7 @@ - Clone an existing repository only fetching a specific branch: `git clone --branch {{name}} --single-branch {{remote_repository_location}}` + +- Clone an existing repository using a specific SSH command: + +`git clone --config core.sshCommand="{{ssh -i path/to/private_ssh_key}}" {{remote_repository_location}}` diff --git a/pages/common/git-coauthor.md b/pages/common/git-coauthor.md new file mode 100644 index 00000000000000..940d2cfe480fa2 --- /dev/null +++ b/pages/common/git-coauthor.md @@ -0,0 +1,9 @@ +# git coauthor + +> Add another author to the latest commit. Since this command rewrites the Git history, `--force` will be needed when pushing next time. +> Part of `git-extras`. +> More information: . + +- Insert an additional author to the last Git commit: + +`git coauthor {{name}} {{name@example.com}}` diff --git a/pages/common/git-cola.md b/pages/common/git-cola.md new file mode 100644 index 00000000000000..e5f902c60ae857 --- /dev/null +++ b/pages/common/git-cola.md @@ -0,0 +1,24 @@ +# git cola + +> A powerful Git GUI with a slick and intuitive user interface. +> More information: . + +- Start git cola: + +`git cola` + +- Start git cola in amend mode: + +`git cola --amend` + +- Prompt for a Git repository. Defaults to the current directory: + +`git cola --prompt` + +- Open the Git repository at mentioned path: + +`git cola --repo {{path/to/git-repository}}` + +- Apply the path filter to the status widget: + +`git cola --status-filter {{filter}}` diff --git a/pages/common/git-commit-tree.md b/pages/common/git-commit-tree.md index fefed2be6f60c6..4d174596f91349 100644 --- a/pages/common/git-commit-tree.md +++ b/pages/common/git-commit-tree.md @@ -8,7 +8,7 @@ `git commit-tree {{tree}} -m "{{message}}"` -- Create a commit object reading the message from a file (use `-` for stdin): +- Create a commit object reading the message from a file (use `-` for `stdin`): `git commit-tree {{tree}} -F {{path/to/file}}` diff --git a/pages/common/git-commit.md b/pages/common/git-commit.md index 59979f651b43ec..c6258c53e19c68 100644 --- a/pages/common/git-commit.md +++ b/pages/common/git-commit.md @@ -15,6 +15,10 @@ `git commit -a -m "{{message}}"` +- Commit staged files and [S]ign them with the GPG key defined in `~/.gitconfig`: + +`git commit -S -m "{{message}}"` + - Update the last commit by adding the currently staged changes, changing the commit's hash: `git commit --amend` @@ -22,3 +26,7 @@ - Commit only specific (already staged) files: `git commit {{path/to/file1}} {{path/to/file2}}` + +- Create a commit, even if there are no staged files: + +`git commit -m "{{message}}" --allow-empty` diff --git a/pages/common/git-commits-since.md b/pages/common/git-commits-since.md new file mode 100644 index 00000000000000..29c83f2043d8c3 --- /dev/null +++ b/pages/common/git-commits-since.md @@ -0,0 +1,21 @@ +# git commits-since + +> Display commits since a specific time or date. +> Part of `git-extras`. +> More information: . + +- Display commits since yesterday: + +`git commits-since {{yesterday}}` + +- Display commits since last week: + +`git commits-since {{last week}}` + +- Display commits since last month: + +`git commits-since {{last month}}` + +- Display commits since yesterday 2pm: + +`git commits-since {{yesterday 2pm}}` diff --git a/pages/common/git-config.md b/pages/common/git-config.md index 297851bd164361..f3ceecb39b86f4 100644 --- a/pages/common/git-config.md +++ b/pages/common/git-config.md @@ -12,9 +12,9 @@ `git config --list --global` -- List all configuration entries that have been defined either locally or globally: +- List only system configuration entries (stored in `/etc/gitconfig`), and show their file location: -`git config --list` +`git config --list --system --show-origin` - Get the value of a given configuration entry: diff --git a/pages/common/git-contrib.md b/pages/common/git-contrib.md new file mode 100644 index 00000000000000..468579fbe6de1b --- /dev/null +++ b/pages/common/git-contrib.md @@ -0,0 +1,9 @@ +# git contrib + +> Display commits from a specific author. +> Part of `git-extras`. +> More information: . + +- Display all commit hashes and their corresponding commit messages from a specific author: + +`git contrib {{author}}` diff --git a/pages/common/git-count-objects.md b/pages/common/git-count-objects.md index 9045e564209c07..c1fc32050e4f31 100644 --- a/pages/common/git-count-objects.md +++ b/pages/common/git-count-objects.md @@ -7,7 +7,7 @@ `git count-objects` -- Display a count of all objects and their total disk usage, displaying sizes in human readable units: +- Display a count of all objects and their total disk usage, displaying sizes in human-readable units: `git count-objects --human-readable` @@ -15,6 +15,6 @@ `git count-objects --verbose` -- Display more verbose information, displaying sizes in human readable units: +- Display more verbose information, displaying sizes in human-readable units: `git count-objects --human-readable --verbose` diff --git a/pages/common/git-count.md b/pages/common/git-count.md new file mode 100644 index 00000000000000..6bae40b7a3e182 --- /dev/null +++ b/pages/common/git-count.md @@ -0,0 +1,13 @@ +# git count + +> Print the total number of commits. +> Part of `git-extras`. +> More information: . + +- Print the total number of commits: + +`git count` + +- Print the number of commits per contributor and the total number of commits: + +`git count --all` diff --git a/pages/common/git-cp.md b/pages/common/git-cp.md new file mode 100644 index 00000000000000..1e5102ace30474 --- /dev/null +++ b/pages/common/git-cp.md @@ -0,0 +1,13 @@ +# git cp + +> Copy an existing file to a new location, preserving history. +> Part of `git-extras`. +> More information: . + +- Copy an existing file in a Git repo, staying in the same directory: + +`git cp {{file}} {{new_file}}` + +- Copy an existing file in a Git repo and place it elsewhere: + +`git cp {{path/to/file}} {{path/to/new_file}}` diff --git a/pages/common/git-create-branch.md b/pages/common/git-create-branch.md new file mode 100644 index 00000000000000..d9c6331c69c441 --- /dev/null +++ b/pages/common/git-create-branch.md @@ -0,0 +1,17 @@ +# git create-branch + +> Create a Git branch in a repository. +> Part of `git-extras`. +> More information: . + +- Create a local branch: + +`git create-branch {{branch_name}}` + +- Create a branch locally and on origin: + +`git create-branch --remote {{branch_name}}` + +- Create a branch locally and on upstream (through forks): + +`git create-branch --remote upstream {{branch_name}}` diff --git a/pages/common/git-credential-store.md b/pages/common/git-credential-store.md new file mode 100644 index 00000000000000..0c1f96a78f7d58 --- /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 00000000000000..3bbdf04d169f04 --- /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-daemon.md b/pages/common/git-daemon.md new file mode 100644 index 00000000000000..4f2abff4f745f1 --- /dev/null +++ b/pages/common/git-daemon.md @@ -0,0 +1,16 @@ +# git daemon + +> A really simple server for Git repositories. +> More information: . + +- Launch a Git daemon with a whitelisted set of directories: + +`git daemon --export-all {{path/to/directory1}} {{path/to/directory2}}` + +- Launch a Git daemon with a specific base directory and allow pulling from all sub-directories that look like Git repositories: + +`git daemon --base-path={{path/to/directory}} --export-all --reuseaddr` + +- Launch a Git daemon for the specified directory, verbosely printing log messages and allowing Git clients to write to it: + +`git daemon {{path/to/directory}} --enable=receive-pack --informative-errors --verbose` diff --git a/pages/common/git-delete-branch.md b/pages/common/git-delete-branch.md new file mode 100644 index 00000000000000..7bdf8b5112499f --- /dev/null +++ b/pages/common/git-delete-branch.md @@ -0,0 +1,13 @@ +# git delete-branch + +> Delete local and remote Git branches. +> Part of `git-extras`. If deleting the checked out branch, only the remote branch will be deleted. +> More information: . + +- Delete a local and remote Git branch: + +`git delete-branch {{branch_name}}` + +- Delete multiple local and remote Git branches: + +`git delete-branch {{branch_name1 branch_name2 ...}}` diff --git a/pages/common/git-delete-merged-branches.md b/pages/common/git-delete-merged-branches.md new file mode 100644 index 00000000000000..dc2ae9b7dcb82c --- /dev/null +++ b/pages/common/git-delete-merged-branches.md @@ -0,0 +1,9 @@ +# git delete-merged-branches + +> Delete branches that are listed in `git branch --merged` excluding master. +> Part of `git-extras`. +> More information: . + +- Delete merged branches: + +`git delete-merged-branches` diff --git a/pages/common/git-delete-submodule.md b/pages/common/git-delete-submodule.md new file mode 100644 index 00000000000000..756cfaf344464f --- /dev/null +++ b/pages/common/git-delete-submodule.md @@ -0,0 +1,9 @@ +# git delete-submodule + +> Delete a specific submodule from a `git` repository. +> Part of `git-extras`. +> More information: . + +- Delete a specific submodule: + +`git delete-submodule {{path/to/submodule}}` diff --git a/pages/common/git-delete-tag.md b/pages/common/git-delete-tag.md new file mode 100644 index 00000000000000..ba0798103340fb --- /dev/null +++ b/pages/common/git-delete-tag.md @@ -0,0 +1,9 @@ +# git delete-tag + +> Delete existing local and remote tags. +> Part of `git-extras`. +> More information: . + +- Delete a tag: + +`git delete-tag {{tag_version}}` diff --git a/pages/common/git-delta.md b/pages/common/git-delta.md new file mode 100644 index 00000000000000..8209631620fbd7 --- /dev/null +++ b/pages/common/git-delta.md @@ -0,0 +1,13 @@ +# git delta + +> List files that differ from another branch. +> Part of `git-extras`. +> More information: . + +- List files from the current checked out branch that differ from the `main` branch: + +`git delta {{main}}` + +- List files from a specific branch that differ from another specific branch: + +`git delta {{branch_1}} {{branch_2}}` diff --git a/pages/common/git-describe.md b/pages/common/git-describe.md index 2eeae9288b3390..a5fa3f0983aa8f 100644 --- a/pages/common/git-describe.md +++ b/pages/common/git-describe.md @@ -1,6 +1,6 @@ # git describe -> Give an object a human readable name based on an available ref. +> Give an object a human-readable name based on an available ref. > More information: . - Create a unique name for the current commit (the name contains the most recent annotated tag, the number of additional commits, and the abbreviated commit hash): diff --git a/pages/common/git-diff-files.md b/pages/common/git-diff-files.md new file mode 100644 index 00000000000000..bd2e1a0faf42e4 --- /dev/null +++ b/pages/common/git-diff-files.md @@ -0,0 +1,20 @@ +# git diff-files + +> Compare files using their sha1 hashes and modes. +> More information: . + +- Compare all changed files: + +`git diff-files` + +- Compare only specified files: + +`git diff-files {{path/to/file}}` + +- Show only the names of changed files: + +`git diff-files --name-only` + +- Output a summary of extended header information: + +`git diff-files --summary` diff --git a/pages/common/git-effort.md b/pages/common/git-effort.md new file mode 100644 index 00000000000000..1f29e5b8045d5e --- /dev/null +++ b/pages/common/git-effort.md @@ -0,0 +1,29 @@ +# git effort + +> Display how much activity a file has had, showing commits per file and "active days" i.e. total number of days that contributed to the file. +> Part of `git-extras`. +> More information: . + +- Display each file in the repository, showing commits and active days: + +`git effort` + +- Display files modified by a specific number of commits or more, showing commits and active days: + +`git effort --above {{5}}` + +- Display files modified by a specific author, showing commits and active days: + +`git effort -- --author="{{username}}"` + +- Display files modified since a specific time/date, showing commits and active days: + +`git effort -- --since="{{last month}}"` + +- Display only the specified files or directories, showing commits and active days: + +`git effort {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Display all files in a specific directory, showing commits and active days: + +`git effort {{path/to/directory/*}}` diff --git a/pages/common/git-extras.md b/pages/common/git-extras.md new file mode 100644 index 00000000000000..3ea08e2a300fdb --- /dev/null +++ b/pages/common/git-extras.md @@ -0,0 +1,16 @@ +# git extras + +> Git extension pack. +> More information: . + +- Install or upgrade `git-extras` commands: + +`git extras update` + +- Display help and subcommands: + +`git extras --help` + +- Print the version of installed `git-extras`: + +`git extras --version` diff --git a/pages/common/git-fame.md b/pages/common/git-fame.md new file mode 100644 index 00000000000000..0c851fdb371bad --- /dev/null +++ b/pages/common/git-fame.md @@ -0,0 +1,36 @@ +# git fame + +> Pretty-print Git repository contributions. +> More information: . + +- Calculate contributions for the current Git repository: + +`git fame` + +- Exclude files/directories that match the specified regular expression: + +`git fame --excl "{{regular_expression}}"` + +- Calculate contributions made after the specified date: + +`git fame --since "{{3 weeks ago|2021-05-13}}"` + +- Display contributions in the specified format: + +`git fame --format {{pipe|yaml|json|csv|tsv}}` + +- Display contributions per file extension: + +`git fame --bytype` + +- Ignore whitespace changes: + +`git fame --ignore-whitespace` + +- Detect inter-file line moves and copies: + +`git fame -C` + +- Detect intra-file line moves and copies: + +`git fame -M` diff --git a/pages/common/git-feature.md b/pages/common/git-feature.md new file mode 100644 index 00000000000000..e5c20d86ca5a63 --- /dev/null +++ b/pages/common/git-feature.md @@ -0,0 +1,21 @@ +# git feature + +> Create or merge feature branches. +> Feature branches obey the format feature/. +> More information: . + +- Create and switch to a new feature branch: + +`git feature {{feature_branch}}` + +- Merge a feature branch into the current branch creating a merge commit: + +`git feature finish {{feature_branch}}` + +- Merge a feature branch into the current branch squashing the changes into one commit: + +`git feature finish --squash {{feature_branch}}` + +- Send changes from a specific feature branch to its remote counterpart: + +`git feature {{feature_branch}} --remote {{remote_name}}` diff --git a/pages/common/git-filter-repo.md b/pages/common/git-filter-repo.md new file mode 100644 index 00000000000000..8c24259dec80fb --- /dev/null +++ b/pages/common/git-filter-repo.md @@ -0,0 +1,21 @@ +# git filter-repo + +> A versatile tool for rewriting Git history. +> See also: `bfg`. +> More information: . + +- Replace a sensitive string in all files: + +`git filter-repo --replace-text <(echo '{{find}}==>{{replacement}}')` + +- Extract a single folder, keeping history: + +`git filter-repo --path {{path/to/folder}}` + +- Remove a single folder, keeping history: + +`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/:}}` diff --git a/pages/common/git-force-clone.md b/pages/common/git-force-clone.md new file mode 100644 index 00000000000000..8432d14ab32ed2 --- /dev/null +++ b/pages/common/git-force-clone.md @@ -0,0 +1,17 @@ +# git force-clone + +> Provides the basic functionality of `git clone`, but if the destination git repository already exists it will force-reset it to resemble a clone of the remote. +> Part of `git-extras`. +> More information: . + +- Clone a Git repository into a new directory: + +`git force-clone {{remote_repository_location}} {{path/to/directory}}` + +- Clone a Git repository into a new directory, checking out an specific branch: + +`git force-clone -b {{branch_name}} {{remote_repository_location}} {{path/to/directory}}` + +- Clone a Git repository into an existing directory of a Git repository, performing a force-reset to resemble it to the remote and checking out an specific branch: + +`git force-clone -b {{branch_name}} {{remote_repository_location}} {{path/to/directory}}` diff --git a/pages/common/git-fork.md b/pages/common/git-fork.md new file mode 100644 index 00000000000000..cfcb2611593658 --- /dev/null +++ b/pages/common/git-fork.md @@ -0,0 +1,13 @@ +# git fork + +> Fork the given GitHub repo. Like `git clone` but forks first. +> Part of `git-extras`. +> More information: . + +- Fork and clone a GitHub repository by its URL: + +`git fork {{https://github.com/tldr-pages/tldr}}` + +- Fork and clone a GitHub repository by its slug: + +`git fork {{tldr-pages/tldr}}` diff --git a/pages/common/git-format-patch.md b/pages/common/git-format-patch.md index ed3e697356375e..6068236fd14a72 100644 --- a/pages/common/git-format-patch.md +++ b/pages/common/git-format-patch.md @@ -8,7 +8,7 @@ `git format-patch {{origin}}` -- Write a `.patch` file for all the commits between 2 revisions to stdout: +- Write a `.patch` file for all the commits between 2 revisions to `stdout`: `git format-patch {{revision_1}}..{{revision_2}}` diff --git a/pages/common/git-gh-pages.md b/pages/common/git-gh-pages.md new file mode 100644 index 00000000000000..024ef37c074aaf --- /dev/null +++ b/pages/common/git-gh-pages.md @@ -0,0 +1,9 @@ +# git gh-pages + +> Create a new branch inside the current repository called `gh-pages`. +> Part of `git-extras`. +> More information: . + +- Create the GitHub pages branch inside the repository in the current directory: + +`git gh-pages` diff --git a/pages/common/git-graft.md b/pages/common/git-graft.md new file mode 100644 index 00000000000000..25d76e39f2aad1 --- /dev/null +++ b/pages/common/git-graft.md @@ -0,0 +1,9 @@ +# git graft + +> Merge commits from a specific branch into another branch and delete the source branch. +> Part of `git-extras`. +> More information: . + +- Merge all commits not present on the target branch from the source branch to target branch, and delete the source branch: + +`git graft {{source_branch}} {{target_branch}}` diff --git a/pages/common/git-hash-object.md b/pages/common/git-hash-object.md new file mode 100644 index 00000000000000..7b8ecf10387bdf --- /dev/null +++ b/pages/common/git-hash-object.md @@ -0,0 +1,20 @@ +# git hash-object + +> Computes the unique hash key of content and optionally creates an object with specified type. +> More information: . + +- Compute the object ID without storing it: + +`git hash-object {{path/to/file}}` + +- Compute the object ID and store it in the Git database: + +`git hash-object -w {{path/to/file}}` + +- Compute the object ID specifying the object type: + +`git hash-object -t {{blob|commit|tag|tree}} {{path/to/file}}` + +- Compute the object ID from `stdin`: + +`cat {{path/to/file}} | git hash-object --stdin` diff --git a/pages/common/git-ignore-io.md b/pages/common/git-ignore-io.md new file mode 100644 index 00000000000000..f512127745cdfa --- /dev/null +++ b/pages/common/git-ignore-io.md @@ -0,0 +1,12 @@ +# git ignore-io + +> Generate .gitignore files from predefined templates. +> More information: . + +- List available templates: + +`git ignore-io list` + +- Generate a .gitignore template: + +`git ignore-io {{item_a,item_b,item_n}}` diff --git a/pages/common/git-ignore.md b/pages/common/git-ignore.md index 2c6d8a186604ee..704757763970d7 100644 --- a/pages/common/git-ignore.md +++ b/pages/common/git-ignore.md @@ -1,12 +1,21 @@ # git ignore -> Generate .gitignore files from predefined templates. -> More information: . +> Show/update `.gitignore` files. +> Part of `git-extras`. See also `git ignore-io`. +> More information: . -- List available templates: +- Show the content of all global and local `.gitignore` files: -`git ignore list` +`git ignore` -- Generate a .gitignore template: +- Ignore file(s) privately, updating `.git/info/exclude` file: -`git ignore {{item_a,item_b,item_n}}` +`git ignore {{file_pattern}} --private` + +- Ignore file(s) locally, updating local `.gitignore` file: + +`git ignore {{file_pattern}}` + +- Ignore file(s) globally, updating global `.gitignore` file: + +`git ignore {{file_pattern}} --global` diff --git a/pages/common/git-info.md b/pages/common/git-info.md new file mode 100644 index 00000000000000..8ed764444dcad6 --- /dev/null +++ b/pages/common/git-info.md @@ -0,0 +1,13 @@ +# git info + +> Display Git repository information. +> Part of `git-extras`. +> More information: . + +- Display remote locations, remote and local branches, most recent commit data and `.git/config` settings: + +`git info` + +- Display remote locations, remote and local branches and most recent commit data: + +`git info --no-config` diff --git a/pages/common/git-init.md b/pages/common/git-init.md index f829dad366abcc..f36ef690d40ec7 100644 --- a/pages/common/git-init.md +++ b/pages/common/git-init.md @@ -7,6 +7,10 @@ `git init` +- Initialize a repository with the specified name for the initial branch: + +`git init --initial-branch={{branch_name}}` + - Initialize a repository using SHA256 for object hashes (requires Git version 2.29+): `git init --object-format={{sha256}}` diff --git a/pages/common/git-instaweb.md b/pages/common/git-instaweb.md index eecd628560a1c7..69de8fad4b5d99 100644 --- a/pages/common/git-instaweb.md +++ b/pages/common/git-instaweb.md @@ -1,9 +1,9 @@ # git instaweb -> Helper to launch a gitweb server. +> Helper to launch a GitWeb server. > More information: . -- Launch a gitweb server for the current Git repository: +- Launch a GitWeb server for the current Git repository: `git instaweb --start` @@ -15,7 +15,7 @@ `git instaweb --start --port {{1234}}` -- Use a specified http daemon: +- Use a specified HTTP daemon: `git instaweb --start --httpd {{lighttpd|apache2|mongoose|plackup|webrick}}` @@ -23,10 +23,10 @@ `git instaweb --start --browser` -- Stop the currently running gitweb server: +- Stop the currently running GitWeb server: `git instaweb --stop` -- Restart the currently running gitweb server: +- Restart the currently running GitWeb server: `git instaweb --restart` diff --git a/pages/common/git-lfs.md b/pages/common/git-lfs.md index b9664725923cb7..9038298b0506c2 100644 --- a/pages/common/git-lfs.md +++ b/pages/common/git-lfs.md @@ -3,7 +3,7 @@ > Work with large files in Git repositories. > More information: . -- Initialise Git LFS: +- Initialize Git LFS: `git lfs install` diff --git a/pages/common/git-local-commits.md b/pages/common/git-local-commits.md new file mode 100644 index 00000000000000..ad6db404c8d57b --- /dev/null +++ b/pages/common/git-local-commits.md @@ -0,0 +1,9 @@ +# git local-commits + +> Show local commits that haven't been pushed to origin. Any additional arguments will be passed directly to `git log`. +> Part of `git-extras. +> More information: . + +- Show commits that haven't been pushed: + +`git local-commits` diff --git a/pages/common/git-lock.md b/pages/common/git-lock.md new file mode 100644 index 00000000000000..bfc09598d4bcb6 --- /dev/null +++ b/pages/common/git-lock.md @@ -0,0 +1,9 @@ +# git lock + +> Lock a file in a Git repository from being modified by a commit. +> Part of `git-extras`. See also `git-unlock`. +> More information: . + +- Disable the ability to commit changes of a local file: + +`git lock {{path/to/file}}` diff --git a/pages/common/git-locked.md b/pages/common/git-locked.md new file mode 100644 index 00000000000000..d02e0ac4508592 --- /dev/null +++ b/pages/common/git-locked.md @@ -0,0 +1,9 @@ +# git locked + +> List locked files in a Git repository. +> Part of `git-extras`. +> More information: . + +- List all local locked files: + +`git locked` diff --git a/pages/common/git-log.md b/pages/common/git-log.md index 4f0604ae1dad41..569841e144ac53 100644 --- a/pages/common/git-log.md +++ b/pages/common/git-log.md @@ -31,6 +31,6 @@ `git log -n {{number}} --author={{author}}` -- Show commits between two dates: +- Show commits between two dates (yyyy-mm-dd): -`git log --before={{date}} --after={{date}}` +`git log --before="{{2017-01-29}}" --after="{{2017-01-17}}"` diff --git a/pages/common/git-ls-files.md b/pages/common/git-ls-files.md index 08e85eb2c53fe7..da64712efbc549 100644 --- a/pages/common/git-ls-files.md +++ b/pages/common/git-ls-files.md @@ -14,3 +14,7 @@ - Show ignored and untracked files: `git ls-files --others` + +- Show untracked files, not ignored: + +`git ls-files --others --exclude-standard` diff --git a/pages/common/git-ls-remote.md b/pages/common/git-ls-remote.md index dfadfc47b4ac27..fae8d3c9cb4898 100644 --- a/pages/common/git-ls-remote.md +++ b/pages/common/git-ls-remote.md @@ -16,7 +16,7 @@ `git ls-remote --tags` -- Show all references from a remote repository based on name or url: +- Show all references from a remote repository based on name or URL: `git ls-remote {{repository_url}}` diff --git a/pages/common/git-mailinfo.md b/pages/common/git-mailinfo.md new file mode 100644 index 00000000000000..89329b18572d75 --- /dev/null +++ b/pages/common/git-mailinfo.md @@ -0,0 +1,16 @@ +# git mailinfo + +> Extract patch and authorship information from a single email message. +> More information: . + +- Extract the patch and author data from an email message: + +`git mailinfo {{message|patch}}` + +- Extract but remove leading and trailing whitespace: + +`git mailinfo -k {{message|patch}}` + +- Remove everything from the body before a scissors line (e.g. "-->* --") and retrieve the message or patch: + +`git mailinfo --scissors {{message|patch}}` diff --git a/pages/common/git-merge-base.md b/pages/common/git-merge-base.md new file mode 100644 index 00000000000000..a374d10d7c5ca4 --- /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-into.md b/pages/common/git-merge-into.md new file mode 100644 index 00000000000000..94e5d96bca6e51 --- /dev/null +++ b/pages/common/git-merge-into.md @@ -0,0 +1,13 @@ +# git merge-into + +> Merge one branch into another branch. +> Part of `git-extras`. +> More information: . + +- Merge a source branch into a specific destination branch: + +`git merge-into {{source_branch}} {{destination_branch}}` + +- Merge current branch into a specific destination branch: + +`git merge-into {{destination_branch}}` diff --git a/pages/common/git-merge-repo.md b/pages/common/git-merge-repo.md new file mode 100644 index 00000000000000..5476f94a8f1b38 --- /dev/null +++ b/pages/common/git-merge-repo.md @@ -0,0 +1,13 @@ +# git merge-repo + +> Merge two repository histories. +> Part of `git-extras`. +> More information: . + +- Merge a repository's branch into the current repository's directory: + +`git merge-repo {{path/to/repo}} {{branch_name}} {{path/to/directory}}` + +- Merge a remote repository's branch into the current repository's directory, not preserving history: + +`git merge-repo {{path/to/remote_repo}} {{branch_name}} .` diff --git a/pages/common/git-missing.md b/pages/common/git-missing.md new file mode 100644 index 00000000000000..d0abbbeb4c0df1 --- /dev/null +++ b/pages/common/git-missing.md @@ -0,0 +1,13 @@ +# git missing + +> Show commits which aren't shared between two branches. +> Part of `git-extras`. +> More information: . + +- Show commits which aren't shared between the currently checked-out branch and another branch: + +`git missing {{branch}}` + +- Show commits which aren't shared between two branches: + +`git missing {{branch_1}} {{branch_2}}` diff --git a/pages/common/git-mr.md b/pages/common/git-mr.md new file mode 100644 index 00000000000000..00e95f2d9eb3cb --- /dev/null +++ b/pages/common/git-mr.md @@ -0,0 +1,21 @@ +# git mr + +> Check out GitLab merge requests locally. +> Part of `git-extras`. +> More information: . + +- Check out a specific merge request: + +`git mr {{mr_number}}` + +- Check out a merge request from a specific remote: + +`git mr {{mr_number}} {{remote}}` + +- Checkout a merge request from its URL: + +`git mr {{url}}` + +- Clean up old merge request branches: + +`git mr clean` diff --git a/pages/common/git-obliterate.md b/pages/common/git-obliterate.md new file mode 100644 index 00000000000000..5a232aa65f61fc --- /dev/null +++ b/pages/common/git-obliterate.md @@ -0,0 +1,13 @@ +# git obliterate + +> Delete specific files and erase their history from a Git repository. +> Part of `git-extras`. +> More information: . + +- Erase the existence of specific files: + +`git obliterate {{file_1 file_2 ...}}` + +- Erase the existence of specific files between 2 commits: + +`git obliterate {{file_1 file_2 ...}} -- {{commit_hash_1}}..{{commit_hash_2}}` diff --git a/pages/common/git-pr.md b/pages/common/git-pr.md index f507b6aebf79fa..8f45eb129cd04d 100644 --- a/pages/common/git-pr.md +++ b/pages/common/git-pr.md @@ -1,13 +1,14 @@ # git pr > Check out GitHub pull requests locally. +> Part of `git-extras`. > More information: . - Check out a specific pull request: `git pr {{pr_number}}` -- Check out a pull request for a specific remote: +- Check out a pull request from a specific remote: `git pr {{pr_number}} {{remote}}` diff --git a/pages/common/git-prune.md b/pages/common/git-prune.md index 9d939b9dac5ac4..34450cc2f4bc66 100644 --- a/pages/common/git-prune.md +++ b/pages/common/git-prune.md @@ -8,7 +8,7 @@ `git prune --dry-run` -- Prune unreachable objects and display what has been pruned to stdout: +- Prune unreachable objects and display what has been pruned to `stdout`: `git prune --verbose` diff --git a/pages/common/git-pull.md b/pages/common/git-pull.md index 63b63cce5fa3f7..a54ca7624bd93c 100644 --- a/pages/common/git-pull.md +++ b/pages/common/git-pull.md @@ -7,7 +7,7 @@ `git pull` -- Download changes from default remote repository and use fast forward: +- Download changes from default remote repository and use fast-forward: `git pull --rebase` diff --git a/pages/common/git-push.md b/pages/common/git-push.md index 5c99c4dc4bd3e9..9c5c7b26770692 100644 --- a/pages/common/git-push.md +++ b/pages/common/git-push.md @@ -3,17 +3,21 @@ > Push commits to a remote repository. > More information: . -- Send local changes in the current branch to its remote counterpart: +- Send local changes in the current branch to its default remote counterpart: `git push` -- Send local changes in a given branch to its remote counterpart: +- Send changes from a specific local branch to its remote counterpart: `git push {{remote_name}} {{local_branch}}` -- Publish the current branch to a remote repository, setting the remote branch name: +- Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one: -`git push {{remote_name}} -u {{remote_branch}}` +`git push -u {{remote_name}} {{local_branch}}` + +- Send changes from a specific local branch to a specific remote branch: + +`git push {{remote_name}} {{local_branch}}:{{remote_branch}}` - Send changes on all local branches to their counterparts in a given remote repository: diff --git a/pages/common/git-range-diff.md b/pages/common/git-range-diff.md new file mode 100644 index 00000000000000..0a28e9e9eefe49 --- /dev/null +++ b/pages/common/git-range-diff.md @@ -0,0 +1,16 @@ +# git range-diff + +> Compare two commit ranges (e.g. two versions of a branch). +> More information: . + +- Diff the changes of two individual commits: + +`git range-diff {{commit_1}}^! {{commit_2}}^!` + +- Diff the changes of ours and theirs from their common ancestor, e.g. after an interactive rebase: + +`git range-diff {{theirs}}...{{ours}}` + +- Diff the changes of two commit ranges, e.g. to check whether conflicts have been resolved appropriately when rebasing commits from `base1` to `base2`: + +`git range-diff {{base1}}..{{rev1}} {{base2}}..{{rev2}}` diff --git a/pages/common/git-reauthor.md b/pages/common/git-reauthor.md new file mode 100644 index 00000000000000..b8308e1dcc5099 --- /dev/null +++ b/pages/common/git-reauthor.md @@ -0,0 +1,17 @@ +# git reauthor + +> Change details about an author identity. Since this command rewrites the Git history, `--force` will be needed when pushing next time. +> Part of `git-extras`. +> More information: . + +- Change an author's email and name across the whole Git repository: + +`git reauthor --old-email {{old@example.com}} --correct-email {{new@example.com}} --correct-name "{{name}}"` + +- Change the email and name to the ones defined in the Git config: + +`git reauthor --old-email {{old@example.com}} --use-config` + +- Change the email and name of all commits, regardless of their original author: + +`git reauthor --all --correct-email {{name@example.com}} --correct-name {{name}}` diff --git a/pages/common/git-release.md b/pages/common/git-release.md new file mode 100644 index 00000000000000..8b5fcee3aa2504 --- /dev/null +++ b/pages/common/git-release.md @@ -0,0 +1,17 @@ +# git release + +> Create a Git tag for a release. +> Part of `git-extras`. +> More information: . + +- Create and push a release: + +`git release {{tag_name}}` + +- Create and push a signed release: + +`git release {{tag_name}} -s` + +- Create and push a release with a message: + +`git release {{{tag_name}}} -m "{{message}}"` diff --git a/pages/common/git-remote.md b/pages/common/git-remote.md index 9fb98aa91a8f8f..6531892371c628 100644 --- a/pages/common/git-remote.md +++ b/pages/common/git-remote.md @@ -19,6 +19,10 @@ `git remote set-url {{remote_name}} {{new_url}}` +- Show the URL of a remote: + +`git remote get-url {{remote_name}}` + - Remove a remote: `git remote remove {{remote_name}}` diff --git a/pages/common/git-rename-branch.md b/pages/common/git-rename-branch.md new file mode 100644 index 00000000000000..748f60095351bb --- /dev/null +++ b/pages/common/git-rename-branch.md @@ -0,0 +1,13 @@ +# git rename-branch + +> Rename a Git branch. +> Part of `git-extras`. +> More information: . + +- Rename the branch you are currently on: + +`git rename-branch {{new_branch_name}}` + +- Rename a specific branch: + +`git rename-branch {{old_branch_name}} {{new_branch_name}}` diff --git a/pages/common/git-rename-remote.md b/pages/common/git-rename-remote.md new file mode 100644 index 00000000000000..a2da404359adfb --- /dev/null +++ b/pages/common/git-rename-remote.md @@ -0,0 +1,9 @@ +# git rename-remote + +> Change remote for pulling and pushing. +> Part of `git-extras`. +> More information: . + +- Change the upstream remote to origin: + +`git rename-remote {{upstream}} {{origin}}` diff --git a/pages/common/git-rename-tag.md b/pages/common/git-rename-tag.md new file mode 100644 index 00000000000000..5494821bb472f9 --- /dev/null +++ b/pages/common/git-rename-tag.md @@ -0,0 +1,9 @@ +# git rename-tag + +> Rename a Git tag. +> Part of `git-extras`. +> More information: . + +- Rename an existing Git tag locally and remotely: + +`git rename-tag {{old_tag_name}} {{new_tag_name}}` diff --git a/pages/common/git-repl.md b/pages/common/git-repl.md new file mode 100644 index 00000000000000..1505cfc01e912e --- /dev/null +++ b/pages/common/git-repl.md @@ -0,0 +1,21 @@ +# git repl + +> Git REPL (read-evaluate-print-loop) - an interactive Git shell. +> Part of `git-extras`. +> More information: . + +- Start an interactive Git shell: + +`git repl` + +- Run a Git command while in the interactive Git shell: + +`{{git_subcommand}} {{command_arguments}}` + +- Run an external (non-Git) command while in the interactive Git shell: + +`!{{command}} {{command_arguments}}` + +- Exit the interactive Git shell (or press Ctrl + D): + +`exit` diff --git a/pages/common/git-reset-file.md b/pages/common/git-reset-file.md new file mode 100644 index 00000000000000..42ab6948fa6a5c --- /dev/null +++ b/pages/common/git-reset-file.md @@ -0,0 +1,13 @@ +# git reset-file + +> Revert a file to HEAD or a specific commit. +> Part of `git-extras`. +> More information: . + +- Reset a file to HEAD: + +`git reset-file {{path/to/file}}` + +- Reset a file to a specific commit: + +`git reset-file {{path/to/file}} {{commit_hash}}` diff --git a/pages/common/git-reset.md b/pages/common/git-reset.md index e240a0e33bb690..ab7630b56161d6 100644 --- a/pages/common/git-reset.md +++ b/pages/common/git-reset.md @@ -10,11 +10,11 @@ - Unstage specific file(s): -`git reset {{path/to/file(s)}}` +`git reset {{path/to/file1 path/to/file2 ...}}` -- Unstage portions of a file: +- Interactively unstage portions of a file: -`git reset -p {{path/to/file}}` +`git reset --patch {{path/to/file}}` - Undo the last commit, keeping its changes (and any further uncommitted changes) in the filesystem: diff --git a/pages/common/git-rev-list.md b/pages/common/git-rev-list.md index fbb7a59262a94e..b8024aa3a4dd68 100644 --- a/pages/common/git-rev-list.md +++ b/pages/common/git-rev-list.md @@ -7,6 +7,10 @@ `git rev-list {{HEAD}}` +- Print the latest commit that changed (add/edit/remove) a specific file on the current branch: + +`git rev-list -n 1 HEAD -- {{path/to/file}}` + - List commits more recent than a specific date, on a specific branch: `git rev-list --since={{'2019-12-01 00:00:00'}} {{branch_name}}` @@ -14,3 +18,7 @@ - List all merge commits on a specific commit: `git rev-list --merges {{commit}}` + +- Print the number of commits since a specific tag: + +`git rev-list {{tag_name}}..HEAD --count` diff --git a/pages/common/git-revert.md b/pages/common/git-revert.md index 5e1fd786e63a6f..4767bc39437835 100644 --- a/pages/common/git-revert.md +++ b/pages/common/git-revert.md @@ -5,12 +5,16 @@ - Revert the most recent commit: -`git revert {{@}}` +`git revert {{HEAD}}` - Revert the 5th last commit: `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-rm.md b/pages/common/git-rm.md index 8bcf501107d171..a546c0017f10c9 100644 --- a/pages/common/git-rm.md +++ b/pages/common/git-rm.md @@ -5,12 +5,12 @@ - Remove file from repository index and filesystem: -`git rm {{file}}` +`git rm {{path/to/file}}` - Remove directory: -`git rm -r {{directory}}` +`git rm -r {{path/to/directory}}` - Remove file from repository index but keep it untouched locally: -`git rm --cached {{file}}` +`git rm --cached {{path/to/file}}` diff --git a/pages/common/git-root.md b/pages/common/git-root.md new file mode 100644 index 00000000000000..3bb3577f3e86ef --- /dev/null +++ b/pages/common/git-root.md @@ -0,0 +1,13 @@ +# git root + +> Print the root directory of the current Git repository. +> Part of `git-extras`. +> More information: . + +- Print the absolute path of the current Git repository: + +`git root` + +- Print the current working directory relative to the root of the current Git repository: + +`git root --relative` diff --git a/pages/common/git-scp.md b/pages/common/git-scp.md new file mode 100644 index 00000000000000..657b9abc2c95a5 --- /dev/null +++ b/pages/common/git-scp.md @@ -0,0 +1,25 @@ +# git scp + +> Copy files from the current working tree to the working directory of a remote repository. +> Part of `git-extras`. Uses `rsync` to transfer files. +> More information: . + +- Copy unstaged files to a specific remote: + +`git scp {{remote_name}}` + +- Copy staged and unstaged files to a remote: + +`git scp {{remote_name}} HEAD` + +- Copy files that has been changed in the last commit and any staged or unstaged files to a remote: + +`git scp {{remote_name}} HEAD~1` + +- Copy specific files to a remote: + +`git scp {{remote_name}} {{path/to/file1 path/to/file2 ...}}` + +- Copy a specific directory to a remote: + +`git scp {{remote_name}} {{path/to/directory}}` diff --git a/pages/common/git-secret.md b/pages/common/git-secret.md new file mode 100644 index 00000000000000..ccd15a8f5ebb6a --- /dev/null +++ b/pages/common/git-secret.md @@ -0,0 +1,36 @@ +# git secret + +> Bash tool which stores private data inside a Git repository. +> More information: . + +- Initialize `git-secret` in a local repository: + +`git secret init` + +- Grant access to the current Git user's email: + +`git secret tell -m` + +- Grant access by email: + +`git secret tell {{email}}` + +- Revoke access by email: + +`git secret killperson {{email}}` + +- List emails with access to secrets: + +`git secret whoknows` + +- Register a secret file: + +`git secret add {{path/to/file}}` + +- Encrypt secrets: + +`git secret hide` + +- Decrypt secret files: + +`git secret reveal` diff --git a/pages/common/git-sed.md b/pages/common/git-sed.md new file mode 100644 index 00000000000000..ab14d9b50d4cf1 --- /dev/null +++ b/pages/common/git-sed.md @@ -0,0 +1,21 @@ +# git sed + +> Replace patterns in git-controlled files using sed. +> Part of `git-extras`. +> More information: . + +- Replace the specified text in the current repository: + +`git sed '{{find_text}}' '{{replace_text}}'` + +- Replace the specified text and then commit the resulting changes with a standard commit message: + +`git sed -c '{{find_text}}' '{{replace_text}}'` + +- Replace the specified text, using regular expressions: + +`git sed -f g '{{find_text}}' '{{replace_text}}'` + +- Replace a specific text in all files under a given directory: + +`git sed '{{find_text}}' '{{replace_text}}' -- {{path/to/directory}}` diff --git a/pages/common/git-setup.md b/pages/common/git-setup.md new file mode 100644 index 00000000000000..361d9670463749 --- /dev/null +++ b/pages/common/git-setup.md @@ -0,0 +1,13 @@ +# git setup + +> Create a Git repository in a specific directory and commit all files. +> Part of `git-extras`. +> More information: . + +- Create a Git repository in the current directory and commit all files: + +`git setup` + +- Create a Git repository in a specific directory and commit all files: + +`git setup {{path/to/directory}}` diff --git a/pages/common/git-show-branch.md b/pages/common/git-show-branch.md index 706c81ca3aa516..3404d60514a01a 100644 --- a/pages/common/git-show-branch.md +++ b/pages/common/git-show-branch.md @@ -31,6 +31,6 @@ `git show-branch --sha1-name --current {{current|branch_name|ref}}` -- Keep going a given number of commits past the common ancester: +- Keep going a given number of commits past the common ancestor: `git show-branch --more {{5}} {{commit|branch_name|ref}} {{commit|branch_name|ref}} {{...}}` diff --git a/pages/common/git-show-index.md b/pages/common/git-show-index.md new file mode 100644 index 00000000000000..8bc50584630cec --- /dev/null +++ b/pages/common/git-show-index.md @@ -0,0 +1,12 @@ +# git show-index + +> Show the packed archive index of a Git repository. +> More information: . + +- Read an IDX file for a Git packfile and dump its contents to `stdout`: + +`git show-index {{path/to/file.idx}}` + +- Specify the hash algorithm for the index file (experimental): + +`git show-index --object-format={{sha1|sha256}} {{path/to/file}}` diff --git a/pages/common/git-show-merged-branches.md b/pages/common/git-show-merged-branches.md new file mode 100644 index 00000000000000..1d63ea6a4d7d1a --- /dev/null +++ b/pages/common/git-show-merged-branches.md @@ -0,0 +1,8 @@ +# git show-merged-branches + +> Print all branches which are merged into the current head. +> More information: . + +- Print all branches which are merged into the current head: + +`git show-merged-branches` diff --git a/pages/common/git-show-tree.md b/pages/common/git-show-tree.md new file mode 100644 index 00000000000000..19ded6a288c7bb --- /dev/null +++ b/pages/common/git-show-tree.md @@ -0,0 +1,9 @@ +# git show-tree + +> Show a decorated tree graph with all branches of a Git repository, showing annotations. +> Part of `git-extras`. +> More information: . + +- Show a decorated tree graph for all branches annotated with tags and branch names: + +`git show-tree` diff --git a/pages/common/git-show-unmerged-branches.md b/pages/common/git-show-unmerged-branches.md new file mode 100644 index 00000000000000..6396e38155c2ed --- /dev/null +++ b/pages/common/git-show-unmerged-branches.md @@ -0,0 +1,8 @@ +# git show-unmerged-branches + +> Print all branches which are not merged into the current HEAD. +> More information: . + +- Print all branches which are not merged into the current HEAD: + +`git show-unmerged-branches` diff --git a/pages/common/git-squash.md b/pages/common/git-squash.md new file mode 100644 index 00000000000000..160462374e55e7 --- /dev/null +++ b/pages/common/git-squash.md @@ -0,0 +1,21 @@ +# git squash + +> Squash multiple commits into a single commit. +> Part of `git-extras`. +> More information: . + +- Merge all commits from a specific branch into the current branch as a single commit: + +`git squash {{source_branch}}` + +- Squash all commits starting with a specific commit on the current branch: + +`git squash {{commit}}` + +- Squash the `n` latest commits and commit with a message: + +`git squash HEAD~{{n}} "{{message}}"` + +- Squash the `n` latest commits and commit concatenating all individual messages: + +`git squash --squash-msg HEAD~{{n}}` diff --git a/pages/common/git-stamp.md b/pages/common/git-stamp.md new file mode 100644 index 00000000000000..e201b6d3d6450c --- /dev/null +++ b/pages/common/git-stamp.md @@ -0,0 +1,17 @@ +# git stamp + +> Stamp the last commit message, with the possibility to reference the issues numbers from your bug tracker or link to its review page. +> Part of `git-extras`. +> More information: . + +- Stamp the last commit message referencing it with the issue number from your bug tracker: + +`git stamp {{issue_number}}` + +- Stamp the last commit message linking it to its review page: + +`git stamp {{Review https://example.org/path/to/review}}` + +- Stamp the last commit message replacing previous issues with a new one: + +`git stamp --replace {{issue_number}}` diff --git a/pages/common/git-standup.md b/pages/common/git-standup.md new file mode 100644 index 00000000000000..5fff4f37dc45ea --- /dev/null +++ b/pages/common/git-standup.md @@ -0,0 +1,21 @@ +# git standup + +> See commits from a specified user. +> Part of `git-extras`. +> More information: . + +- Show a given author's commits from the last 10 days: + +`git standup -a {{name|email}} -d {{10}}` + +- Show a given author's commits from the last 10 days and whether they are GPG signed: + +`git standup -a {[name|email}} -d {{10}} -g` + +- Show all the commits from all contributors for the last 10 days: + +`git standup -a all -d {{10}}` + +- Display help: + +`git standup -h` diff --git a/pages/common/git-stash.md b/pages/common/git-stash.md index 0ba7bcbd2d4fce..66ecb7f30b94f3 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-summary.md b/pages/common/git-summary.md new file mode 100644 index 00000000000000..3663d68332086e --- /dev/null +++ b/pages/common/git-summary.md @@ -0,0 +1,21 @@ +# git summary + +> Display information about a Git repository. +> Part of `git-extras`. +> More information: . + +- Display data about a Git repository: + +`git summary` + +- Display data about a Git repository since a commit-ish: + +`git summary {{commit|branch_name|tag_name}}` + +- Display data about a Git repository, merging committers using different emails into 1 statistic for each author: + +`git summary --dedup-by-email` + +- Display data about a Git repository, showing the number of lines modified by each contributor: + +`git summary --line` diff --git a/pages/common/git-svn.md b/pages/common/git-svn.md index bbd4a59372d13d..02878e10fca2d1 100644 --- a/pages/common/git-svn.md +++ b/pages/common/git-svn.md @@ -7,7 +7,7 @@ `git svn clone {{https://example.com/subversion_repo}} {{local_dir}}` -- Clone a SVN repository starting at a given revision number: +- Clone an SVN repository starting at a given revision number: `git svn clone -r{{1234}}:HEAD {{https://svn.example.net/subversion/repo}} {{local_dir}}` diff --git a/pages/common/git-symbolic-ref.md b/pages/common/git-symbolic-ref.md new file mode 100644 index 00000000000000..d4854a1b55d713 --- /dev/null +++ b/pages/common/git-symbolic-ref.md @@ -0,0 +1,24 @@ +# git symbolic-ref + +> Read, change, or delete files that store references. +> More information: . + +- Store a reference by a name: + +`git symbolic-ref refs/{{name}} {{ref}}` + +- Store a reference by name, including a message with a reason for the update: + +`git symbolic-ref -m "{{message}}" refs/{{name}} refs/heads/{{branch_name}}` + +- Read a reference by name: + +`git symbolic-ref refs/{{name}}` + +- Delete a reference by name: + +`git symbolic-ref --delete refs/{{name}}` + +- For scripting, hide errors with `--quiet` and use `--short` to simplify ("refs/heads/X" prints as "X"): + +`git symbolic-ref --quiet --short refs/{{name}}` diff --git a/pages/common/git-sync.md b/pages/common/git-sync.md new file mode 100644 index 00000000000000..fad003ed37550c --- /dev/null +++ b/pages/common/git-sync.md @@ -0,0 +1,17 @@ +# git sync + +> Sync local branches with remote branches. +> Part of `git-extras`. +> More information: . + +- Sync the current local branch with its remote branch: + +`git sync` + +- Sync the current local branch with the remote main branch: + +`git sync origin main` + +- Sync without cleaning untracked files: + +`git sync -s {{remote_name}} {{branch_name}}` diff --git a/pages/common/git-touch.md b/pages/common/git-touch.md new file mode 100644 index 00000000000000..b19cfdf4b7ff79 --- /dev/null +++ b/pages/common/git-touch.md @@ -0,0 +1,9 @@ +# git touch + +> Create new files and add them to the index. +> Part of `git-extras`. +> More information: . + +- Create new files and add them to the index: + +`git touch {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/git-undo.md b/pages/common/git-undo.md new file mode 100644 index 00000000000000..9a6900277dd813 --- /dev/null +++ b/pages/common/git-undo.md @@ -0,0 +1,13 @@ +# git undo + +> Undo recent commits. +> Part of `git-extras`. +> More information: . + +- Remove the most recent commit: + +`git undo` + +- Remove a specific number of the most recent commits: + +`git undo {{3}}` diff --git a/pages/common/git-unlock.md b/pages/common/git-unlock.md new file mode 100644 index 00000000000000..e29f20263540aa --- /dev/null +++ b/pages/common/git-unlock.md @@ -0,0 +1,9 @@ +# git unlock + +> Unlock a file in a Git repository so it can be modified by a commit. +> Part of `git-extras`. See also `git lock`. +> More information: . + +- Enable the ability to commit changes of a previously-locked local file: + +`git unlock {{path/to/file}}` diff --git a/pages/common/git-unpack-file.md b/pages/common/git-unpack-file.md new file mode 100644 index 00000000000000..04936c5d576ebe --- /dev/null +++ b/pages/common/git-unpack-file.md @@ -0,0 +1,8 @@ +# git unpack-file + +> Create a temporary file with a blob's contents. +> More information: . + +- Create a file holding the contents of the blob specified by its ID then print the name of the temporary file: + +`git unpack-file {{blob_id}}` diff --git a/pages/common/git-utimes.md b/pages/common/git-utimes.md new file mode 100644 index 00000000000000..b94f07219c842e --- /dev/null +++ b/pages/common/git-utimes.md @@ -0,0 +1,13 @@ +# git utimes + +> Change files modification time to their last commit date. Does not touch files that are in the working tree or index. +> Part of `git-extras`. +> More information: . + +- Change all files modification time to their last commit date: + +`git utimes` + +- Change files modification time that are newer than their last commit date, preserving original modification time of files that were committed from the local repository: + +`git utimes --newer` diff --git a/pages/common/git-verify-commit.md b/pages/common/git-verify-commit.md new file mode 100644 index 00000000000000..eabc8517fab810 --- /dev/null +++ b/pages/common/git-verify-commit.md @@ -0,0 +1,17 @@ +# git verify-commit + +> Check for GPG verification of commits. +> If no commits are verified, nothing will be printed, regardless of options specified. +> More information: . + +- Check commits for a GPG signature: + +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}}` + +- Check commits for a GPG signature and show details of each commit: + +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}} --verbose` + +- Check commits for a GPG signature and print the raw details: + +`git verify-commit {{commit_hash1 optional_commit_hash2 ...}} --raw` diff --git a/pages/common/git-verify-tag.md b/pages/common/git-verify-tag.md new file mode 100644 index 00000000000000..25d9e1063b7dc7 --- /dev/null +++ b/pages/common/git-verify-tag.md @@ -0,0 +1,17 @@ +# git verify-tag + +> Check for GPG verification of tags. +> If a tag wasn't signed, an error will occur. +> More information: . + +- Check tags for a GPG signature: + +`git verify-tag {{tag1 optional_tag2 ...}}` + +- Check tags for a GPG signature and show details for each tag: + +`git verify-tag {{tag1 optional_tag2 ...}} --verbose` + +- Check tags for a GPG signature and print the raw details: + +`git verify-tag {{tag1 optional_tag2 ...}} --raw` diff --git a/pages/common/git-whatchanged.md b/pages/common/git-whatchanged.md new file mode 100644 index 00000000000000..6a6ae929ffb45d --- /dev/null +++ b/pages/common/git-whatchanged.md @@ -0,0 +1,17 @@ +# git whatchanged + +> Show what has changed with recent commits or files. +> See also `git log`. +> More information: . + +- Display logs and changes for recent commits: + +`git whatchanged` + +- Display logs and changes for recent commits within the specified time frame: + +`git whatchanged --since="{{2 hours ago}}"` + +- Display logs and changes for recent commits for specific files or directories: + +`git whatchanged {{path/to/file_or_directory}}` diff --git a/pages/common/git.md b/pages/common/git.md index ddaffb94b6bcb8..1c5d93d797ae1d 100644 --- a/pages/common/git.md +++ b/pages/common/git.md @@ -1,6 +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`. > More information: . - Check the Git version: @@ -11,7 +12,7 @@ `git --help` -- Show help on a Git subcommand (like `commit`, `log`, etc.): +- Show help on a Git subcommand (like `clone`, `add`, `push`, `log`, etc.): `git help {{subcommand}}` diff --git a/pages/common/github-label-sync.md b/pages/common/github-label-sync.md index 3203f8d8ec825d..df6963f53f24e2 100644 --- a/pages/common/github-label-sync.md +++ b/pages/common/github-label-sync.md @@ -1,17 +1,17 @@ # github-label-sync -> A command line interface for synchronising GitHub labels. -> More information: . +> A command-line interface for synchronizing GitHub labels. +> More information: . -- Synchronise labels using a local `labels.json` file: +- Synchronize labels using a local `labels.json` file: `github-label-sync --access-token {{token}} {{repository_name}}` -- Synchronise labels using a specific labels JSON file: +- Synchronize labels using a specific labels JSON file: `github-label-sync --access-token {{token}} --labels {{url|path/to/json_file}} {{repository_name}}` -- Perform a dry run instead of actually synchronising labels: +- Perform a dry run instead of actually synchronizing labels: `github-label-sync --access-token {{token}} --dry-run {{repository_name}}` @@ -19,6 +19,6 @@ `github-label-sync --access-token {{token}} --allow-added-labels {{repository_name}}` -- Synchronise using the `GITHUB_ACCESS_TOKEN` environment variable: +- Synchronize using the `GITHUB_ACCESS_TOKEN` environment variable: `github-label-sync {{repository_name}}` diff --git a/pages/common/gitlab.md b/pages/common/gitlab.md index 1843720bb45179..6e28b8da2c7bf5 100644 --- a/pages/common/gitlab.md +++ b/pages/common/gitlab.md @@ -1,6 +1,7 @@ # gitlab > Ruby wrapper and CLI for the GitLab API. +> Some subcommands such as `gitlab ctl` have their own usage documentation. > More information: . - Create a new project: diff --git a/pages/common/gitlint.md b/pages/common/gitlint.md new file mode 100644 index 00000000000000..dd3fd4c7d2e495 --- /dev/null +++ b/pages/common/gitlint.md @@ -0,0 +1,28 @@ +# gitlint + +> Git commit message linter checks your commit messages for style. +> More information: . + +- Check the last commit message: + +`gitlint` + +- The range of commits to lint: + +`gitlint --commits {{single_refspec_argument}}` + +- Path to a directory or python module with extra user-defined rules: + +`gitlint --extra-path {{path/to/directory}}` + +- Start a specific CI job: + +`gitlint --target {{path/to/target_directory}}` + +- Path to a file containing a commit-msg: + +`gitlint --msg-filename {{path/to/filename}}` + +- Read staged commit meta-info from the local repository: + +`gitlint --staged` diff --git a/pages/common/gitmoji.md b/pages/common/gitmoji.md index 1050fc46f41992..90b397c654a8fd 100644 --- a/pages/common/gitmoji.md +++ b/pages/common/gitmoji.md @@ -1,6 +1,6 @@ # gitmoji -> An interactive command line tool for using emojis on commits. +> An interactive command-line tool for using emojis on commits. > More information: . - Start the commit wizard: diff --git a/pages/common/glab-alias.md b/pages/common/glab-alias.md new file mode 100644 index 00000000000000..93d646e8626c34 --- /dev/null +++ b/pages/common/glab-alias.md @@ -0,0 +1,24 @@ +# glab alias + +> Manage GitLab CLI command aliases from the command-line. +> More information: . + +- Display the subcommand help: + +`glab alias` + +- List all the aliases `glab` is configured to use: + +`glab alias list` + +- Create a `glab` subcommand alias: + +`glab alias set {{mrv}} '{{mr view}}'` + +- Set a shell command as a `glab` subcommand: + +`glab alias set --shell {{alias_name}} {{command}}` + +- Delete a command shortcut: + +`glab alias delete {{alias_name}}` diff --git a/pages/common/glab-auth.md b/pages/common/glab-auth.md new file mode 100644 index 00000000000000..ba5e6e5dbccd5b --- /dev/null +++ b/pages/common/glab-auth.md @@ -0,0 +1,20 @@ +# glab auth + +> Authenticate with a GitLab host from the command-line. +> More information: . + +- Log in with interactive prompt: + +`glab auth login` + +- Log in with a token: + +`glab auth login --token {{token}}` + +- Check authentication status: + +`glab auth status` + +- Log in to a specific GitLab instance: + +`glab auth login --hostname {{gitlab.example.com}}` diff --git a/pages/common/glab-issue.md b/pages/common/glab-issue.md new file mode 100644 index 00000000000000..04ded5cc83e9ca --- /dev/null +++ b/pages/common/glab-issue.md @@ -0,0 +1,28 @@ +# glab issue + +> Manage GitLab issues from the command-line. +> More information: . + +- Display a specific issue: + +`glab issue view {{issue_number}}` + +- Display a specific issue in the default web browser: + +`glab issue view {{issue_number}} --web` + +- Create a new issue in the default web browser: + +`glab issue create --web` + +- List the last 10 issues with the `bug` label: + +`glab issue list --per-page {{10}} --label "{{bug}}"` + +- List closed issues made by a specific user: + +`glab issue list --closed --author {{username}}` + +- Reopen a specific issue: + +`glab issue reopen {{issue_number}}` diff --git a/pages/common/glab-mr-create.md b/pages/common/glab-mr-create.md new file mode 100644 index 00000000000000..d6e52bf1d7ecba --- /dev/null +++ b/pages/common/glab-mr-create.md @@ -0,0 +1,24 @@ +# glab mr create + +> Manage GitLab merge requests from the command-line. +> More information: . + +- Interactively create a merge request: + +`glab mr create` + +- Create a merge request, determining the title and description from the commit messages of the current branch: + +`glab mr create --fill` + +- Create a draft merge request: + +`glab mr create --draft` + +- Create a merge request specifying the target branch, title, and description: + +`glab mr create --target-branch {{target_branch}} --title "{{title}}" --description "{{description}}"` + +- Start opening a merge request in the default web browser: + +`glab mr create --web` diff --git a/pages/common/glab-mr-merge.md b/pages/common/glab-mr-merge.md new file mode 100644 index 00000000000000..d7cc713cfd8bac --- /dev/null +++ b/pages/common/glab-mr-merge.md @@ -0,0 +1,24 @@ +# glab mr merge + +> Merge GitLab merge requests. +> More information: . + +- Merge the merge request associated with the current branch interactively: + +`glab mr merge` + +- Merge the specified merge request, interactively: + +`glab mr merge {{mr_number}}` + +- Merge the merge request, removing the branch on both the local and the remote: + +`glab mr merge --remove-source-branch` + +- Squash the current merge request into one commit with the message body and merge: + +`glab mr merge --squash --message="{{commit_message_body}}"` + +- Display help: + +`glab mr merge --help` diff --git a/pages/common/glab-mr.md b/pages/common/glab-mr.md new file mode 100644 index 00000000000000..befb918f10651a --- /dev/null +++ b/pages/common/glab-mr.md @@ -0,0 +1,33 @@ +# glab mr + +> Manage GitLab merge requests from the command-line. +> Some subcommands such as `glab mr create` have their own usage documentation. +> More information: . + +- Create a merge request: + +`glab mr create` + +- Check out a specific merge request locally: + +`glab mr checkout {{mr_number}}` + +- View the changes made in the merge request: + +`glab mr diff` + +- Approve the merge request for the current branch: + +`glab mr approve` + +- Merge the merge request associated with the current branch interactively: + +`glab mr merge` + +- Edit a merge request interactively: + +`glab mr update` + +- Edit the target branch of a merge request: + +`glab mr update --target-branch {{branch_name}}` diff --git a/pages/common/glab-pipeline.md b/pages/common/glab-pipeline.md new file mode 100644 index 00000000000000..0d31950c6fb6e3 --- /dev/null +++ b/pages/common/glab-pipeline.md @@ -0,0 +1,24 @@ +# glab pipeline + +> List, view, and run GitLab CI/CD pipelines. +> More information: . + +- View a running pipeline on the current branch: + +`glab pipeline status` + +- View a running pipeline on a specific branch: + +`glab pipeline status --branch {{branch_name}}` + +- Get the list of pipelines: + +`glab pipeline list` + +- Run a manual pipeline on the current branch: + +`glab pipeline run` + +- Run a manual pipeline on a specific branch: + +`glab pipeline run --branch {{branch_name}}` diff --git a/pages/common/glab-release.md b/pages/common/glab-release.md new file mode 100644 index 00000000000000..908f79dfe9b66b --- /dev/null +++ b/pages/common/glab-release.md @@ -0,0 +1,28 @@ +# glab release + +> Manage GitLab releases from the command-line. +> More information: . + +- List releases in a Gitlab repository, limited to 30 items: + +`glab release list` + +- Display information about a specific release: + +`glab release view {{tag}}` + +- Create a new release: + +`glab release create {{tag}}` + +- Delete a specific release: + +`glab release delete {{tag}}` + +- Download assets from a specific release: + +`glab release download {{tag}}` + +- Upload assets to a specific release: + +`glab release upload {{tag}} {{path/to/file1}} {{path/to/file2}}` diff --git a/pages/common/glab-repo.md b/pages/common/glab-repo.md new file mode 100644 index 00000000000000..fc18081b9d130e --- /dev/null +++ b/pages/common/glab-repo.md @@ -0,0 +1,24 @@ +# glab repo + +> Work with GitLab repositories on the command-line. +> More information: . + +- Create a new repository (if the repository name is not set, the default name will be the name of the current directory): + +`glab repo create {{name}}` + +- Clone a repository: + +`glab repo clone {{owner}}/{{repository}}` + +- Fork and clone a repository: + +`glab repo fork {{owner}}/{{repository}} --clone` + +- View a repository in the default web browser: + +`glab repo view {{owner}}/{{repository}} --web` + +- Search some repositories in the GitLab instance: + +`glab repo search -s {{search_string}}` diff --git a/pages/common/glab.md b/pages/common/glab.md index 4e4957a2f69488..474fdfdaf26b3b 100644 --- a/pages/common/glab.md +++ b/pages/common/glab.md @@ -1,28 +1,33 @@ # glab -> GitLab CLI tool to help working with GitLab from the command line. -> More information: . +> Work seamlessly with GitLab from the command-line. +> Some subcommands such as `glab config` have their own usage documentation. +> More information: . -- Create a merge request: - -`glab mr create` +- Clone a GitLab repository locally: -- List merge requests: - -`glab mr list` +`glab repo clone {{owner}}/{{repository}}` - Create a new issue: `glab issue create` -- View and filter the current repository's open issues: +- View and filter the open issues of the current repository: `glab issue list` -- List pipelines: +- View an issue in the default browser: + +`glab issue view --web {{issue_number}}` + +- Create a merge request: + +`glab mr create` + +- View a pull request in the default web browser: -`glab pipeline list` +`glab mr view --web {{pr_number}}` -- Clone a repository into a specific directory: +- Check out a specific pull request locally: -`glab repo clone {{user}}/{{repository}} {{directory}}` +`glab mr checkout {{pr_number}}` diff --git a/pages/common/gml2gv.md b/pages/common/gml2gv.md new file mode 100644 index 00000000000000..f6230737aadfa9 --- /dev/null +++ b/pages/common/gml2gv.md @@ -0,0 +1,17 @@ +# gml2gv + +> Convert a graph from `gml` to `gv` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `gml` to `gv` format: + +`gml2gv -o {{output.gv}} {{input.gml}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.gml}} | gml2gv > {{output.gv}}` + +- Display help: + +`gml2gv -?` diff --git a/pages/common/gmssl.md b/pages/common/gmssl.md new file mode 100644 index 00000000000000..56b507f69c9972 --- /dev/null +++ b/pages/common/gmssl.md @@ -0,0 +1,36 @@ +# gmssl + +> GmSSL is a crypto toolkit supporting SM1, SM2, SM3, SM4, SM9, and ZUC/ZUC256. +> More information: . + +- Generate an SM3 hash for a file: + +`gmssl sm3 {{path/to/file}}` + +- Encrypt a file using the SM4 cipher: + +`gmssl sms4 -e -in {{path/to/file}} -out {{path/to/file.sms4}}` + +- Decrypt a file using the SM4 cipher: + +`gmssl sms4 -d -in {{path/to/file.sms4}}` + +- Generate an SM2 private key: + +`gmssl sm2 -genkey -out {{path/to/file.pem}}` + +- Generate an SM2 public key from an existing private key: + +`gmssl sm2 -pubout -in {{path/to/file.pem}} -out {{path/to/file.pem.pub}}` + +- Encrypt a file using the ZUC cipher: + +`gmssl zuc -e -in {{path/to/file}} -out {{path/to/file.zuc}}` + +- Decrypt a file using the ZUC cipher: + +`gmssl zuc -d -in {{path/to/file.zuc}}` + +- Print version: + +`gmssl version` diff --git a/pages/common/gnatmake.md b/pages/common/gnatmake.md new file mode 100644 index 00000000000000..cfef2c05ddf453 --- /dev/null +++ b/pages/common/gnatmake.md @@ -0,0 +1,16 @@ +# gnatmake + +> A low-level build tool for Ada programs (part of the GNAT toolchain). +> More information: . + +- Compile an executable: + +`gnatmake {{source_file1.adb source_file2.adb ...}}` + +- Set a custom executable name: + +`gnatmake -o {{executable_name}} {{source_file.adb}}` + +- [f]orce recompilation: + +`gnatmake -f {{source_file.adb}}` diff --git a/pages/common/gnatprep.md b/pages/common/gnatprep.md new file mode 100644 index 00000000000000..0b74656f46435b --- /dev/null +++ b/pages/common/gnatprep.md @@ -0,0 +1,12 @@ +# gnatprep + +> Preprocessor for Ada source code files (part of the GNAT toolchain). +> More information: . + +- Use symbol definitions from a file: + +`gnatprep {{source_file}} {{target_file}} {{definitions_file}}` + +- 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 new file mode 100644 index 00000000000000..300a51dd01faab --- /dev/null +++ b/pages/common/gnmic-get.md @@ -0,0 +1,20 @@ +# gnmic get + +> Get a snapshot of a gnmi network device operation data. +> More information: . + +- Get a snapshot of the device state at a specific path: + +`gnmic --address {{ip:port}} get --path {{path}}` + +- Query the device state at multiple paths: + +`gnmic -a {{ip:port}} get --path {{path1}} --path {{path2}}` + +- Query the device state at multiple paths with a common prefix: + +`gnmic -a {{ip:port}} get --prefix {{prefix}} --path {{path1}} --path {{path2}}` + +- Query the device state and specify reponse encoding (json_ietf): + +`gnmic -a {{ip:port}} get --path {{path}} --encoding json_ietf` diff --git a/pages/common/gnmic-set.md b/pages/common/gnmic-set.md new file mode 100644 index 00000000000000..f2229eb4b893f2 --- /dev/null +++ b/pages/common/gnmic-set.md @@ -0,0 +1,20 @@ +# gnmic set + +> Modify gnmi network device configuration. +> More information: . + +- Update the value of a path: + +`gnmic --address {{ip:port}} set --update-path {{path}} --update-value {{value}}` + +- Update the value of a path to match the contents of a json file: + +`gnmic -a {{ip:port}} set --update-path {{path}} --update-file {{filepath}}` + +- Replace the value of a path to match the contents of a json file: + +`gnmic -a {{ip:port}} set --replace-path {{path}} --replace-file {{filepath}}` + +- Delete the node at a given path: + +`gnmic -a {{ip:port}} set --delete {{path}}` diff --git a/pages/common/gnmic-sub.md b/pages/common/gnmic-sub.md new file mode 100644 index 00000000000000..b7a0d761f5d492 --- /dev/null +++ b/pages/common/gnmic-sub.md @@ -0,0 +1,8 @@ +# gnmic sub + +> This command is an alias of `gnmic subscribe`. +> More information: . + +- View documentation for the original command: + +`tldr gnmic subscribe` diff --git a/pages/common/gnmic-subscribe.md b/pages/common/gnmic-subscribe.md new file mode 100644 index 00000000000000..a2079a015e184b --- /dev/null +++ b/pages/common/gnmic-subscribe.md @@ -0,0 +1,24 @@ +# gnmic subscribe + +> Subscribe to a gnmic network device state updates. +> More information: . + +- Subscribe to target state updates under the subtree of a specific path: + +`gnmic --address {{ip:port}} subscribe --path {{path}}` + +- Subscribe to a target with a sample interval of 30s (default is 10s): + +`gnmic -a {{ip:port}} subscribe --path {{path}} --sample-interval 30s` + +- Subscribe to a target with sample interval and updates only on change: + +`gnmic -a {{ip:port}} subscribe --path {{path}} --stream-mode on-change --heartbeat-interval 1m` + +- Subscribe to a target for only one update: + +`gnmic -a {{ip:port}} subscribe --path {{path}} --mode once` + +- Subscribe to a target and specify response encoding (json_ietf): + +`gnmic -a {{ip:port}} subscribe --path {{path}} --encoding json_ietf` diff --git a/pages/common/gnmic.md b/pages/common/gnmic.md new file mode 100644 index 00000000000000..d0a06a6587ffcd --- /dev/null +++ b/pages/common/gnmic.md @@ -0,0 +1,25 @@ +# gnmic + +> A gNMI command-line client. +> Manage gNMI network device configuration and view operational data. +> More information: . + +- Request device capabilities: + +`gnmic --address {{ip:port}} capabilities` + +- Provide a username and password to fetch device capabilities: + +`gnmic --address {{ip:port}} --username {{username}} --password {{password}} capabilities` + +- Get a snapshot of the device state at a specific path: + +`gnmic -a {{ip:port}} get --path {{path}}` + +- Update device state at a specific path: + +`gnmic -a {{ip:port}} set --update-path {{path}} --update-value {{value}}` + +- Subscribe to target state updates under the subtree at a specific path: + +`gnmic -a {{ip:port}} subscribe --path {{path}}` diff --git a/pages/common/gnomon.md b/pages/common/gnomon.md index a84756a67be3b3..54d96d77119fa2 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 the `stdout` of any command through gnomon: `{{npm test}} | gnomon` diff --git a/pages/common/gnucash-cli.md b/pages/common/gnucash-cli.md new file mode 100644 index 00000000000000..ca2e49400b6fcd --- /dev/null +++ b/pages/common/gnucash-cli.md @@ -0,0 +1,12 @@ +# gnucash-cli + +> A command-line version of GnuCash. +> More information: . + +- Get quotes for currencies and stocks specified in a file and print them: + +`gnucash-cli --quotes get {{path/to/file.gnucash}}` + +- Generate a financial report of a specific type, specified by `--name`: + +`gnucash-cli --report run --name "{{Balance Sheet}}" {{path/to/file.gnucash}}` diff --git a/pages/common/gnucash.md b/pages/common/gnucash.md new file mode 100644 index 00000000000000..a38c2cc2e9f7ac --- /dev/null +++ b/pages/common/gnucash.md @@ -0,0 +1,16 @@ +# gnucash + +> Personal and small-business financial-accounting software. +> More information: . + +- Launch GnuCash and load the previously opened file: + +`gnucash` + +- Launch GnuCash and load the specified file: + +`gnucash {{path/to/file.gnucash}}` + +- Launch GnuCash and load an empty file: + +`gnucash --nofile` diff --git a/pages/common/go-build.md b/pages/common/go-build.md index c0e8c6d78f5f95..4f2c2247d0c42b 100644 --- a/pages/common/go-build.md +++ b/pages/common/go-build.md @@ -3,7 +3,7 @@ > Compile Go sources. > More information: . -- Compile a file: +- Compile a 'package main' file (output will be the filename without extension): `go build {{path/to/main.go}}` @@ -15,6 +15,6 @@ `go build -o {{path/to/binary}} {{path/to/package}}` -- Compile a main package into an executable, with data race detection: +- Compile a main package into an executable, enabling data race detection: `go build -race -o {{path/to/executable}} {{path/to/main/package}}` diff --git a/pages/common/go-fmt.md b/pages/common/go-fmt.md new file mode 100644 index 00000000000000..d65a7a92b9fa29 --- /dev/null +++ b/pages/common/go-fmt.md @@ -0,0 +1,25 @@ +# go fmt + +> Format Go source files. +> Prints the filenames that are changed. +> More information: . + +- Format Go source files in the current directory: + +`go fmt` + +- Format a specific Go package in your import path (`$GOPATH/src`): + +`go fmt {{path/to/package}}` + +- Format the package in the current directory and all subdirectories (note the `...`): + +`go fmt {{./...}}` + +- Print what format commands would've been run, without modifying anything: + +`go fmt -n` + +- Print which format commands are run as they are run: + +`go fmt -x` diff --git a/pages/common/go-get.md b/pages/common/go-get.md new file mode 100644 index 00000000000000..1ce19fbcae72d5 --- /dev/null +++ b/pages/common/go-get.md @@ -0,0 +1,16 @@ +# go get + +> Add a dependency package, or download packages in legacy GOPATH mode. +> More information: . + +- Add a specified package to `go.mod` in module-mode or install the package in GOPATH-mode: + +`go get {{example.com/pkg}}` + +- Modify the package with a given version in module-aware mode: + +`go get {{example.com/pkg}}@{{v1.2.3}}` + +- Remove a specified package: + +`go get {{example.com/pkg}}@{{none}}` diff --git a/pages/common/go-install.md b/pages/common/go-install.md new file mode 100644 index 00000000000000..981a1f41080d9f --- /dev/null +++ b/pages/common/go-install.md @@ -0,0 +1,20 @@ +# go install + +> Compile and install packages named by the import paths. +> More information: . + +- Compile and install the current package: + +`go install` + +- Compile and install a specific local package: + +`go install {{path/to/package}}` + +- Install the latest version of a program, ignoring `go.mod` in the current directory: + +`go install {{golang.org/x/tools/gopls}}@{{latest}}` + +- Install a program at the version selected by `go.mod` in the current directory: + +`go install {{golang.org/x/tools/gopls}}` diff --git a/pages/common/go-list.md b/pages/common/go-list.md index 5441ccf8caacd6..8ded827e4c7c5d 100644 --- a/pages/common/go-list.md +++ b/pages/common/go-list.md @@ -11,7 +11,7 @@ `go list std` -- List packages in json format: +- List packages in JSON format: `go list -json time net/http` diff --git a/pages/common/go-run.md b/pages/common/go-run.md new file mode 100644 index 00000000000000..50db0ffee27ed5 --- /dev/null +++ b/pages/common/go-run.md @@ -0,0 +1,12 @@ +# go run + +> Compile and run Go code without saving a binary. +> More information: . + +- Run a Go file: + +`go run {{path/to/file.go}}` + +- Run a main Go package: + +`go run {{path/to/package}}` diff --git a/pages/common/go-test.md b/pages/common/go-test.md new file mode 100644 index 00000000000000..b647f17e4b9be6 --- /dev/null +++ b/pages/common/go-test.md @@ -0,0 +1,28 @@ +# go test + +> Tests Go packages (files have to end with `_test.go`). +> More information: . + +- Test the package found in the current directory: + +`go test` + +- [v]erbosely test the package in the current directory: + +`go test -v` + +- Test the packages in the current directory and all subdirectories (note the `...`): + +`go test -v ./...` + +- Test the package in the current directory and run all benchmarks: + +`go test -v -bench .` + +- Test the package in the current directory and run all benchmarks for 50 seconds: + +`go test -v -bench . -benchtime {{50s}}` + +- Test the package with coverage analysis: + +`go test -cover` diff --git a/pages/common/go-tool.md b/pages/common/go-tool.md new file mode 100644 index 00000000000000..2d1bad27d3faad --- /dev/null +++ b/pages/common/go-tool.md @@ -0,0 +1,21 @@ +# go tool + +> Run a specific Go tool or command. +> Execute a Go command as a stand-alone binary, typically for debugging. +> More information: . + +- List available tools: + +`go tool` + +- Run the go link tool: + +`go tool link {{path/to/main.o}}` + +- Print the command that would be executed, but do not execute it (similar to `whereis`): + +`go tool -n {{command}} {{arguments}}` + +- Display documentation for a specified tool: + +`go tool {{command}} --help` diff --git a/pages/common/go-vet.md b/pages/common/go-vet.md new file mode 100644 index 00000000000000..eea4fccca4847e --- /dev/null +++ b/pages/common/go-vet.md @@ -0,0 +1,29 @@ +# go vet + +> Check Go source code and report suspicious constructs (e.g. lint your Go source files). +> Go vet returns a non-zero exit code if problems are found; returns a zero exit code if no problems are found. +> More information: . + +- Check the Go package in the current directory: + +`go vet` + +- Check the Go package in the specified path: + +`go vet {{path/to/file_or_directory}}` + +- List available checks that can be run with go vet: + +`go tool vet help` + +- View details and flags for a particular check: + +`go tool vet help {{check_name}}` + +- Display offending lines plus N lines of surrounding context: + +`go vet -c={{N}}` + +- Output analysis and errors in JSON format: + +`go vet -json` diff --git a/pages/common/go.md b/pages/common/go.md index 95afd305b9995a..38cea6c817d3e9 100644 --- a/pages/common/go.md +++ b/pages/common/go.md @@ -1,6 +1,7 @@ # go > Tool for managing go source code. +> Some subcommands such as `go build` have their own usage documentation. > More information: . - Download and install a package, specified by its import path: diff --git a/pages/common/goimports.md b/pages/common/goimports.md index 966d5b0783a1d6..6646cf68ee7790 100644 --- a/pages/common/goimports.md +++ b/pages/common/goimports.md @@ -5,16 +5,16 @@ - Display the completed import source file: -`goimports {{file}}.go` +`goimports {{path/to/file}}.go` - Write the result back to the source file instead of the standard output: -`goimports -w {{file}}.go` +`goimports -w {{path/to/file}}.go` - Display diffs and write the result back to the source file: -`goimports -w -d {{file}}.go` +`goimports -w -d {{path/to/file}}.go` - Set the import prefix string after 3rd-party packages (comma-separated list): -`goimports -local {{path/to/package}} {{file}}.go` +`goimports -local {{path/to/package}} {{path/to/file}}.go` diff --git a/pages/common/google-chrome.md b/pages/common/google-chrome.md new file mode 100644 index 00000000000000..bf45ec7b8afa3f --- /dev/null +++ b/pages/common/google-chrome.md @@ -0,0 +1,8 @@ +# google-chrome + +> This command is an alias of `chromium`. +> More information: . + +- View documentation for the original command: + +`tldr chromium` diff --git a/pages/common/googler.md b/pages/common/googler.md index edb408e0b0f075..38b13d57223d87 100644 --- a/pages/common/googler.md +++ b/pages/common/googler.md @@ -1,6 +1,6 @@ # googler -> Search Google from command line. +> Search Google from command-line. > More information: . - Search Google for a keyword: diff --git a/pages/common/gopass.md b/pages/common/gopass.md index f5db18968baa65..0f2e63f34a1f24 100644 --- a/pages/common/gopass.md +++ b/pages/common/gopass.md @@ -3,7 +3,7 @@ > Standard Unix Password Manager for Teams. Written in Go. > More information: . -- Initialise the configuration settings: +- Initialize the configuration settings: `gopass init` diff --git a/pages/common/goreload.md b/pages/common/goreload.md index 4aea0b08bf64da..b7c0b8adb57bc5 100644 --- a/pages/common/goreload.md +++ b/pages/common/goreload.md @@ -5,11 +5,11 @@ - Set the name of the binary file to watch (defaults to `.goreload`): -`goreload -b {{path/to/binary}} {{file}}.go` +`goreload -b {{path/to/binary}} {{path/to/file}}.go` - Set a custom log prefix (defaults to `goreload`): -`goreload --logPrefix {{prefix}} {{file}}.go` +`goreload --logPrefix {{prefix}} {{path/to/file}}.go` - Reload whenever any file changes: diff --git a/pages/common/gource.md b/pages/common/gource.md index 763c0861a5d749..7a805c2fa7d4b8 100644 --- a/pages/common/gource.md +++ b/pages/common/gource.md @@ -12,7 +12,7 @@ `gource -{{width}}x{{height}}` -- Set a custom time scale for the animation: +- Set a custom timescale for the animation: `gource -c {{time_scale_multiplier}}` diff --git a/pages/common/gow.md b/pages/common/gow.md new file mode 100644 index 00000000000000..6c53a140bda211 --- /dev/null +++ b/pages/common/gow.md @@ -0,0 +1,24 @@ +# gow + +> Watches Go files and restarts the app on changes. +> More information: . + +- Start and watch the current directory: + +`gow run .` + +- Start the application with the specified arguments: + +`gow run . {{argument1 argument2 ...}}` + +- Watch subdirectories in verbose mode: + +`gow -v -w={{path/to/directory1,path/to/directory2,...}} run .` + +- Watch the specified file extensions: + +`gow -e={{go,html}} run .` + +- Display help: + +`gow -h` diff --git a/pages/common/gpg-tui.md b/pages/common/gpg-tui.md new file mode 100644 index 00000000000000..5ecb2347f0fad6 --- /dev/null +++ b/pages/common/gpg-tui.md @@ -0,0 +1,36 @@ +# gpg-tui + +> Terminal user interface for GNU Public Guard. +> More information: . + +- Start `gpg-tui`: + +`gpg-tui` + +- Start `gpg-tui` with color and ASCII armored output: + +`gpg-tui --style {{colored}} --armor` + +- Show help in `gpg-tui`: + +`?` + +- Quit `gpg-tui`: + +`q` + +- Interactively generate a new key: + +`g` + +- Export the selected key: + +`x` + +- Set the detail level for the selected key: + +`1|2|3` + +- Refresh `gpg-tui`: + +`r` diff --git a/pages/common/gpg.md b/pages/common/gpg.md index 2a8631ab029281..4a5618745f33ca 100644 --- a/pages/common/gpg.md +++ b/pages/common/gpg.md @@ -1,22 +1,26 @@ # gpg > GNU Privacy Guard. -> See `gpg2` for GNU Privacy Guard 2. +> See `gpg2` for GNU Privacy Guard 2. Most operating systems symlink `gpg` to `gpg2`. > More information: . +- Create a GPG public and private key interactively: + +`gpg --full-generate-key` + - Sign `doc.txt` without encryption (writes output to `doc.txt.asc`): `gpg --clearsign {{doc.txt}}` -- Encrypt `doc.txt` for alice@example.com (output to `doc.txt.gpg`): +- Encrypt and sign `doc.txt` for alice@example.com and bob@example.com (output to `doc.txt.gpg`): -`gpg --encrypt --recipient {{alice@example.com}} {{doc.txt}}` +`gpg --encrypt --sign --recipient {{alice@example.com}} --recipient {{bob@example.com}} {{doc.txt}}` - Encrypt `doc.txt` with only a passphrase (output to `doc.txt.gpg`): `gpg --symmetric {{doc.txt}}` -- Decrypt `doc.txt.gpg` (output to stdout): +- Decrypt `doc.txt.gpg` (output to `stdout`): `gpg --decrypt {{doc.txt.gpg}}` @@ -24,10 +28,10 @@ `gpg --import {{public.gpg}}` -- Export public key for alice@example.com (output to stdout): +- Export public key for alice@example.com (output to `stdout`): `gpg --export --armor {{alice@example.com}}` -- Export private key for alice@example.com (output to stdout): +- Export private key for alice@example.com (output to `stdout`): `gpg --export-secret-keys --armor {{alice@example.com}}` diff --git a/pages/common/gpgconf.md b/pages/common/gpgconf.md new file mode 100644 index 00000000000000..77c8704afc4680 --- /dev/null +++ b/pages/common/gpgconf.md @@ -0,0 +1,24 @@ +# gpgconf + +> Modify .gnupg home directories. +> More information: . + +- List all components: + +`gpgconf --list-components` + +- List the directories used by gpgconf: + +`gpgconf --list-dirs` + +- List all options of a component: + +`gpgconf --list-options {{component}}` + +- List programs and test whether they are runnable: + +`gpgconf --check-programs` + +- Reload a component: + +`gpgconf --reload {{component}}` diff --git a/pages/common/gprbuild.md b/pages/common/gprbuild.md new file mode 100644 index 00000000000000..dc234381249b81 --- /dev/null +++ b/pages/common/gprbuild.md @@ -0,0 +1,20 @@ +# gprbuild + +> A high-level build tool for projects written in Ada and other languages (C/C++/Fortran). +> More information: . + +- Build a project (assuming only one `*.gpr` file exists in the current directory): + +`gprbuild` + +- Build a specific [P]roject file: + +`gprbuild -P{{project_name}}` + +- Clean up the build workspace: + +`gprclean` + +- Install compiled binaries: + +`gprinstall --prefix {{path/to/installation/dir}}` diff --git a/pages/common/gprof.md b/pages/common/gprof.md new file mode 100644 index 00000000000000..fd77e421496138 --- /dev/null +++ b/pages/common/gprof.md @@ -0,0 +1,21 @@ +# gprof + +> Performance analysis tool for many programming languages. +> It profiles the function executions of a program. +> More information: . + +- Compile binary with gprof information and run it to get `gmon.out`: + +`gcc -pg {{program.c}} && {{./a.out}}` + +- Run gprof to obtain profile output: + +`gprof` + +- Suppress profile field's description: + +`gprof -b` + +- Display routines that have zero usage: + +`gprof -bz` diff --git a/pages/common/gradle.md b/pages/common/gradle.md index c598ef3a804420..62968025c6cea0 100644 --- a/pages/common/gradle.md +++ b/pages/common/gradle.md @@ -11,7 +11,7 @@ `gradle build -x {{test}}` -- Run in offline mode to prevent gradle from accessing the network during builds: +- Run in offline mode to prevent Gradle from accessing the network during builds: `gradle build --offline` @@ -19,6 +19,14 @@ `gradle clean` -- Compile and Release package: +- Build an Android Package (APK) in release mode: `gradle assembleRelease` + +- List the main tasks: + +`gradle tasks` + +- List all the tasks: + +`gradle tasks --all` diff --git a/pages/common/grafana-cli.md b/pages/common/grafana-cli.md new file mode 100644 index 00000000000000..633b8647ba09c5 --- /dev/null +++ b/pages/common/grafana-cli.md @@ -0,0 +1,12 @@ +# grafana-cli + +> A small executable that is bundled with Grafana serve. +> More information: . + +- Install, update, or remove specific plugins: + +`grafana-cli plugins {{install|update|remove}} {{plugin_id1 plugin_id2 ...}}` + +- List all installed plugins: + +`grafana-cli plugins ls` diff --git a/pages/common/grap.md b/pages/common/grap.md new file mode 100644 index 00000000000000..cf1510bd821caa --- /dev/null +++ b/pages/common/grap.md @@ -0,0 +1,13 @@ +# grap + +> A charting preprocessor for the groff (GNU Troff) document formatting system. +> See also `pic` and `groff`. +> More information: . + +- Process a `grap` file and save the output file for future processing with `pic` and `groff`: + +`grap {{path/to/input.grap}} > {{path/to/output.pic}}` + +- Typeset a `grap` file to PDF using the [me] macro package, saving the output to a file: + +`grap {{path/to/input.grap}} | pic -T {{pdf}} | groff -{{me}} -T {{pdf}} > {{path/to/output.pdf}}` diff --git a/pages/common/graphml2gv.md b/pages/common/graphml2gv.md new file mode 100644 index 00000000000000..d0b7143cb293ec --- /dev/null +++ b/pages/common/graphml2gv.md @@ -0,0 +1,17 @@ +# graphml2gv + +> Convert a graph from `graphml` to `gv` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `gml` to `gv` format: + +`graphml2gv -o {{output.gv}} {{input.gml}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.gml}} | graphml2gv > {{output.gv}}` + +- Display help: + +`graphml2gv -?` diff --git a/pages/common/grep.md b/pages/common/grep.md index b30471d8735069..cc3909861fba4b 100644 --- a/pages/common/grep.md +++ b/pages/common/grep.md @@ -23,14 +23,14 @@ `grep --{{context|before-context|after-context}}={{3}} "{{search_pattern}}" {{path/to/file}}` -- Print file name and line number for each match: +- Print file name and line number for each match with color output: -`grep --with-filename --line-number "{{search_pattern}}" {{path/to/file}}` +`grep --with-filename --line-number --color=always "{{search_pattern}}" {{path/to/file}}` - Search for lines matching a pattern, printing only the matched text: `grep --only-matching "{{search_pattern}}" {{path/to/file}}` -- Search stdin for lines that do not match a pattern: +- Search `stdin` for lines that do not match a pattern: `cat {{path/to/file}} | grep --invert-match "{{search_pattern}}"` diff --git a/pages/common/grex.md b/pages/common/grex.md index aa0d1c0f034094..2b616fd02f8693 100644 --- a/pages/common/grex.md +++ b/pages/common/grex.md @@ -1,13 +1,13 @@ # grex -> Simple command line tool to generate regular expressions. +> Simple command-line tool to generate regular expressions. > More information: . - Generate a simple regular expression: ` grex {{space_separated_strings}}` -- Generate a case-insensitive regex: +- Generate a case-insensitive regular expression: `grex -i {{space_separated_strings}}` @@ -15,7 +15,7 @@ `grex -d {{space_separated_strings}}` -- Replace unicode word character with '\w': +- Replace Unicode word character with '\w': `grex -w {{space_separated_strings}}` diff --git a/pages/common/grip.md b/pages/common/grip.md new file mode 100644 index 00000000000000..9b0983c1f72262 --- /dev/null +++ b/pages/common/grip.md @@ -0,0 +1,20 @@ +# grip + +> Preview GitHub-flavoured Markdown files locally. +> More information: . + +- Start the server and serve the rendered `README` file of a current directory: + +`grip` + +- Start the server and serve a specific Markdown file: + +`grip {{path/to/file.md}}` + +- Start the server and open the `README` file of the current directory in the browser: + +`grip --browser` + +- Start the server in the specified port and serve the rendered `README` file of the current directory: + +`grip {{port}}` diff --git a/pages/common/groff.md b/pages/common/groff.md index 62857301a949ef..322229200cd16e 100644 --- a/pages/common/groff.md +++ b/pages/common/groff.md @@ -1,25 +1,24 @@ # groff -> Typesetting program that reads plain text mixed with formatting commands and produces formatted output. -> It is the GNU replacement for the `troff` and `nroff` Unix commands for text formatting. +> GNU replacement for the `troff` and `nroff` typesetting utilities. > More information: . -- Render a man page as plain text, and display the result: +- Format output for a PostScript printer, saving the output to a file: -`groff -man -T utf8 {{manpage.1}}` +`groff {{path/to/input.roff}} > {{path/to/output.ps}}` - Render a man page using the ASCII output device, and display it using a pager: -`groff -man -T ascii {{manpage.1}} | less` +`groff -man -T ascii {{path/to/manpage.1}} | less --RAW-CONTROL-CHARS` - Render a man page into an HTML file: -`groff -man -T html {{manpage.1}} > {{page.html}}` +`groff -man -T html {{path/to/manpage.1}} > {{path/to/manpage.html}}` -- Process a roff file using the `tbl` and `pic` preprocessors, and the `me` macro set: +- Typeset a roff file containing [t]ables and [p]ictures, using the [me] macro set, to PDF, saving the output: -`groff -t -p -me -T utf8 {{foo.me}}` +`groff {{-t}} {{-p}} -{{me}} -T {{pdf}} {{path/to/input.me}} > {{path/to/output.pdf}}` - Run a `groff` command with preprocessor and macro options guessed by the `grog` utility: -`eval "$(grog -T utf8 {{foo.me}})"` +`eval "$(grog -T utf8 {{path/to/input.me}})"` diff --git a/pages/common/groups.md b/pages/common/groups.md index ff013e8f489edc..c7b38ac2e04af5 100644 --- a/pages/common/groups.md +++ b/pages/common/groups.md @@ -1,16 +1,13 @@ # groups > Print group memberships for a user. +> See also: `groupadd`, `groupdel`, `groupmod`. > More information: . - Print group memberships for the current user: `groups` -- Print group memberships for a specific user: - -`groups {{username}}` - - Print group memberships for a list of users: -`groups {{username1}} {{username2}} {{username3}}` +`groups {{username1 username2 ...}}` diff --git a/pages/common/gsutil.md b/pages/common/gsutil.md new file mode 100644 index 00000000000000..dbe418756226fc --- /dev/null +++ b/pages/common/gsutil.md @@ -0,0 +1,33 @@ +# 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. +> More information: . + +- List all buckets in a project you are logged into: + +`gsutil ls` + +- List the objects in a bucket: + +`gsutil ls -r 'gs://{{bucket_name}}/{{prefix}}**'` + +- Download an object from a bucket: + +`gsutil cp gs://{{bucket_name}}/{{object_name}} {{path/to/save_location}}` + +- Upload an object to a bucket: + +`gsutil cp {{object_location}} gs://{{destination_bucket_name}}/` + +- Rename or move objects in a bucket: + +`gsutil mv gs://{{bucket_name}}/{{old_object_name}} gs://{{bucket_name}}/{{new_object_name}}` + +- Create a new bucket in the project you are logged into: + +`gsutil mb gs://{{bucket_name}}` + +- Delete a bucket and remove all the objects in it: + +`gsutil rm -r gs://{{bucket_name}}` diff --git a/pages/common/gt.md b/pages/common/gt.md new file mode 100644 index 00000000000000..7432affb2d259b --- /dev/null +++ b/pages/common/gt.md @@ -0,0 +1,32 @@ +# gt + +> Create and manage sequences of dependent code changes (stacks) for Git and GitHub. +> More information: . + +- Authenticate the CLI with Graphite's API: + +`gt auth --token {{graphite_cli_auth_token}}` + +- Initialise `gt` for the repository in the current directory: + +`gt repo init` + +- Create a new branch stacked on top of the current branch and commit staged changes: + +`gt branch create {{branch_name}}` + +- Create a new commit and fix upstack branches: + +`gt commit create -m {{commit_message}}` + +- Force push all branches in the current stack to GitHub and create or update PRs: + +`gt stack submit` + +- Log all tracked stacks: + +`gt log short` + +- Print help for a specified subcommand: + +`gt {{subcommand}} --help` diff --git a/pages/common/guetzli.md b/pages/common/guetzli.md index 4c85f873d5c74c..fe2162110ba88d 100644 --- a/pages/common/guetzli.md +++ b/pages/common/guetzli.md @@ -7,10 +7,10 @@ `guetzli {{input.jpg}} {{output.jpg}}` -- Create compressed JPEG image from PNG image: +- Create a compressed JPEG from a PNG: `guetzli {{input.png}} {{output.jpg}}` -- Compress a JPEG image with desired visual quality (84-100): +- Compress a JPEG with the desired visual quality (84-100): `guetzli --quality {{quality_value}} {{input.jpg}} {{output.jpg}}` diff --git a/pages/common/guile.md b/pages/common/guile.md index e471b062dd092c..946deb43081fe9 100644 --- a/pages/common/guile.md +++ b/pages/common/guile.md @@ -3,7 +3,7 @@ > Guile Scheme interpreter. > More information: . -- Start the Guile Scheme REPL: +- Start a REPL (interactive shell): `guile` diff --git a/pages/common/gum.md b/pages/common/gum.md new file mode 100644 index 00000000000000..baf2a66e242dd0 --- /dev/null +++ b/pages/common/gum.md @@ -0,0 +1,28 @@ +# gum + +> A tool for making glamorous shell scripts. +> More information: . + +- Interactively pick a specific option to print to `stdout`: + +`gum choose "{{option_1}}" "{{option_2}}" "{{option_3}}"` + +- Open an interactive prompt for the user to input a string with a specific placeholder: + +`gum input --placeholder "{{value}}"` + +- Open an interactive confirmation prompt and exit with either `0` or `1`: + +`gum confirm "{{Continue?}}" --default=false --affirmative "{{Yes}}" --negative "{{No}}" {{&& echo "Yes selected" || echo "No selected"}}` + +- Show a spinner while a command is taking place with text alongside: + +`gum spin --spinner {{dot|line|minidot|jump|pulse|points|globe|moon|monkey|meter|hamburger}} --title "{{loading...}}" -- {{command}}` + +- Format text to include emojis: + +`gum format -t {{emoji}} "{{:smile: :heart: hello}}"` + +- Interactively prompt for multi-line text (CTRL + D to save) and write to `data.txt`: + +`gum write > {{data.txt}}` diff --git a/pages/common/gunzip.md b/pages/common/gunzip.md index 43a6b8f65d85b2..e033682814f274 100644 --- a/pages/common/gunzip.md +++ b/pages/common/gunzip.md @@ -9,8 +9,16 @@ - Extract a file to a target destination: -`gunzip -c {{archive.tar.gz}} > {{archive.tar}}` +`gunzip --stdout {{archive.tar.gz}} > {{archive.tar}}` + +- Extract a file and keep the archive file: + +`gunzip --keep {{archive.tar.gz}}` - List the contents of a compressed file: -`gunzip -l {{file.txt.gz}}` +`gunzip --list {{file.txt.gz}}` + +- Decompress an archive from `stdin`: + +`cat {{path/to/archive.gz}} | gunzip` diff --git a/pages/common/gv2gml.md b/pages/common/gv2gml.md new file mode 100644 index 00000000000000..47ccaac71b1bf1 --- /dev/null +++ b/pages/common/gv2gml.md @@ -0,0 +1,17 @@ +# gv2gml + +> Convert a graph from `gv` to `gml` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `gv` to `gml` format: + +`gv2gml -o {{output.gml}} {{input.gv}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.gv}} | gv2gml > {{output.gml}}` + +- Display help: + +`gv2gml -?` diff --git a/pages/common/gv2gxl.md b/pages/common/gv2gxl.md new file mode 100644 index 00000000000000..4a11a2c86d3c68 --- /dev/null +++ b/pages/common/gv2gxl.md @@ -0,0 +1,17 @@ +# gv2gxl + +> Convert a graph from `gv` to `gxl` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `gv` to `gxl` format: + +`gv2gxl -o {{output.gxl}} {{input.gv}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.gv}} | gv2gxl > {{output.gxl}}` + +- Display help: + +`gv2gxl -?` diff --git a/pages/common/gvcolor.md b/pages/common/gvcolor.md new file mode 100644 index 00000000000000..88ebbe8ffd6b25 --- /dev/null +++ b/pages/common/gvcolor.md @@ -0,0 +1,17 @@ +# gvcolor + +> Colorize a ranked digraph with a range of colors. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Colorize one or more ranked digraph (that were already processed by `dot`): + +`gvcolor {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Lay out a graph and colorize it, then convert to a PNG image: + +`dot {{path/to/input.gv}} | gvcolor | dot -T {{png}} > {{path/to/output.png}}` + +- Display help for `gvcolor`: + +`gvcolor -?` diff --git a/pages/common/gvpack.md b/pages/common/gvpack.md new file mode 100644 index 00000000000000..feab79abaef5d7 --- /dev/null +++ b/pages/common/gvpack.md @@ -0,0 +1,25 @@ +# gvpack + +> Combine several graph layouts (that already have layout information). +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Combine several graph layouts (that already have layout information): + +`gvpack {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Combine several graph layouts at the graph level, keeping graphs separate: + +`gvpack -g {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Combine several graph layouts at the node level, ignoring clusters: + +`gvpack -n {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Combine several graph layouts without packing: + +`gvpack -u {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Display help for `gvpack`: + +`gvpack -?` diff --git a/pages/common/gxl2gv.md b/pages/common/gxl2gv.md new file mode 100644 index 00000000000000..8bfde52b4697cf --- /dev/null +++ b/pages/common/gxl2gv.md @@ -0,0 +1,17 @@ +# gxl2gv + +> Convert a graph from `gxl` to `gv` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `gxl` to `gv` format: + +`gxl2gv -o {{output.gv}} {{input.gxl}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.gxl}} | gxl2gv > {{output.gv}}` + +- Display help: + +`gxl2gv -?` diff --git a/pages/common/gyb.md b/pages/common/gyb.md new file mode 100644 index 00000000000000..dc4cbdeb6b57ab --- /dev/null +++ b/pages/common/gyb.md @@ -0,0 +1,20 @@ +# gyb + +> Command line tool for locally backing up Gmail messages using Gmail's API over HTTPS. +> More information: . + +- Estimate the number and the size of all emails on your Gmail account: + +`gyb --email {{email@gmail.com}} --action estimate` + +- Backup a Gmail account to a specific directory: + +`gyb --email {{email@gmail.com}} --action backup --local-folder {{path/to/directory}}` + +- Backup only important or starred emails from a Gmail account to the default local folder: + +`gyb --email {{email@gmail.com}} --search "{{is:important OR is:starred}}"` + +- Restore from a local folder to a Gmail account: + +`gyb --email {{email@gmail.com}} --action restore --local-folder {{path/to/directory}}` diff --git a/pages/common/gzip.md b/pages/common/gzip.md index 53e25862f148b4..3fba264164573d 100644 --- a/pages/common/gzip.md +++ b/pages/common/gzip.md @@ -11,6 +11,10 @@ `gzip -d {{file.ext}}.gz` +- Compress a file, keeping the original file: + +`gzip --keep {{file.ext}}` + - Compress a file specifying the output filename: `gzip -c {{file.ext}} > {{compressed_file.ext.gz}}` diff --git a/pages/common/handbrakecli.md b/pages/common/handbrakecli.md index 95265a8b293865..983500d7c1bf80 100644 --- a/pages/common/handbrakecli.md +++ b/pages/common/handbrakecli.md @@ -1,15 +1,15 @@ # handbrakecli -> Command-line interface to the HandBrake video conversion tool. +> Command-line interface to the HandBrake video conversion and DVD ripping tool. > More information: . - Convert a video file to MKV (AAC 160kbit audio and x264 CRF20 video): -`handbrakecli -i {{input.avi}} -o {{output.mkv}} -e x264 -q 20 -B 160` +`handbrakecli --input {{input.avi}} --output {{output.mkv}} --encoder x264 --quality 20 --ab 160` - Resize a video file to 320x240: -`handbrakecli -i {{input.mp4}} -o {{output.mp4}} -w 320 -l 240` +`handbrakecli --input {{input.mp4}} --output {{output.mp4}} --width 320 --height 240` - List available presets: @@ -17,4 +17,12 @@ - Convert an AVI video to MP4 using the Android preset: -`handbrakecli --preset="Android" -i {{input.ext}} -o {{output.mp4}}` +`handbrakecli --preset="Android" --input {{input.ext}} --output {{output.mp4}}` + +- Print the content of a DVD, getting the CSS keys in the process: + +`handbrakecli --input {{/dev/sr0}} --title 0` + +- Rip the first track of a DVD in the specified device. Audiotracks and subtitle languages are specified as lists: + +`handbrakecli --input {{/dev/sr0}} --title 1 --output {{out.mkv}} --format av_mkv --encoder x264 --subtitle {{1,4,5}} --audio {{1,2}} --aencoder copy --quality {{23}}` diff --git a/pages/common/hangups.md b/pages/common/hangups.md index 360d506bc5799c..27f44b0a361a16 100644 --- a/pages/common/hangups.md +++ b/pages/common/hangups.md @@ -1,13 +1,13 @@ # hangups -> Third party command line client for Google Hangouts. +> Third party command-line client for Google Hangouts. > More information: . - Start hangups: `hangups` -- View troubeshooting information and help: +- View troubleshooting information and help: `hangups -h` diff --git a/pages/common/hardhat.md b/pages/common/hardhat.md new file mode 100644 index 00000000000000..4d43c8d60e396c --- /dev/null +++ b/pages/common/hardhat.md @@ -0,0 +1,36 @@ +# hardhat + +> A development environment for Ethereum software. +> More information: . + +- List available subcommands (or create a new project if no configuration exists): + +`hardhat` + +- Compile the current project and build all artifacts: + +`hardhat compile` + +- Run a user-defined script after compiling the project: + +`hardhat run {{path/to/script.js}}` + +- Run Mocha tests: + +`hardhat test` + +- Run all given test files: + +`hardhat test {{path/to/file1.js}} {{path/to/file2.js}}` + +- Start a local Ethereum JSON-RPC node for development: + +`hardhat node` + +- Start a local Ethereum JSON-RPC node with a specific hostname and port: + +`hardhat node --hostname {{hostname}} --port {{port}}` + +- Clean the cache and all artifacts: + +`hardhat clean` diff --git a/pages/common/hashid.md b/pages/common/hashid.md new file mode 100644 index 00000000000000..3f4b70e7da59bb --- /dev/null +++ b/pages/common/hashid.md @@ -0,0 +1,28 @@ +# hashid + +> 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): + +`hashid` + +- Identify hashes passed as arguments (multiple hashes can be passed): + +`hashid {{hash}}` + +- Identify hashes on a file (one hash per line): + +`hashid {{path/to/hashes.txt}}` + +- Show all possible hash types (including salted hashes): + +`hashid --extended {{hash}}` + +- Show `hashcat`'s mode number and `john`'s format string of the hash types: + +`hashid --mode --john {{hash}}` + +- Save output to a file instead of printing to standard output: + +`hashid --outfile {{path/to/output.txt}} {{hash}}` diff --git a/pages/common/haxelib.md b/pages/common/haxelib.md index 3d7809e8852f80..d0733f11067620 100644 --- a/pages/common/haxelib.md +++ b/pages/common/haxelib.md @@ -11,6 +11,10 @@ `haxelib install {{libname}}` +- Install a specific version of a Haxe library: + +`haxelib install {{libname}} {{version}}` + - Upgrade all installed Haxe libraries: `haxelib upgrade` @@ -18,3 +22,11 @@ - Install the development version of a library from a Git repository: `haxelib git {{libname}} {{git_url}}` + +- Uninstall a Haxe library: + +`haxelib remove {{libname}}` + +- Print a tree of locally installed Haxe libraries: + +`haxelib list` diff --git a/pages/common/hcloud.md b/pages/common/hcloud.md new file mode 100644 index 00000000000000..a6c883f12e760e --- /dev/null +++ b/pages/common/hcloud.md @@ -0,0 +1,16 @@ +# hcloud + +> Show how to use the CLI for Hetzner Cloud. +> More information: . + +- Show available commands and flags: + +`hcloud` + +- Show help for `hcloud`: + +`hcloud -h` + +- Show available commands and flags for `hcloud` contexts: + +`hcloud context` diff --git a/pages/common/head.md b/pages/common/head.md index c7f8d3787b0746..54a5e45a45f774 100644 --- a/pages/common/head.md +++ b/pages/common/head.md @@ -5,16 +5,4 @@ - Output the first few lines of a file: -`head -n {{count_of_lines}} {{filename}}` - -- Output the first few bytes of a file: - -`head -c {{size_in_bytes}} {{filename}}` - -- Output everything but the last few lines of a file: - -`head -n -{{count_of_lines}} {{filename}}` - -- Output everything but the last few bytes of a file: - -`head -c -{{size_in_bytes}} {{filename}}` +`head -n {{count}} {{path/to/file}}` diff --git a/pages/common/helix.md b/pages/common/helix.md new file mode 100644 index 00000000000000..1f073c732fdd4a --- /dev/null +++ b/pages/common/helix.md @@ -0,0 +1,33 @@ +# helix + +> Helix, A post-modern text editor, provides several modes for different kinds of text manipulation. +> Pressing `i` enters insert mode. `` enters normal mode, which enables the use of Helix commands. +> More information: . + +- Open a file: + +`helix {{path/to/file}}` + +- Change the Helix theme: + +`:theme {{theme_name}}` + +- Save and Quit: + +`:wq` + +- Force-quit without saving: + +`:q!` + +- Undo the last operation: + +`u` + +- Search for a pattern in the file (press `n`/`N` to go to next/previous match): + +`/{{search_pattern}}` + +- Format the file: + +`:format` diff --git a/pages/linux/hello.md b/pages/common/hello.md similarity index 100% rename from pages/linux/hello.md rename to pages/common/hello.md diff --git a/pages/common/helm-install.md b/pages/common/helm-install.md new file mode 100644 index 00000000000000..cfa9cd7d0f4d2e --- /dev/null +++ b/pages/common/helm-install.md @@ -0,0 +1,32 @@ +# helm install + +> Install a helm chart. +> More information: . + +- Install a helm chart: + +`helm install {{name}} {{repository_name}}/{{chart_name}}` + +- Install a helm chart from an unpacked chart directory: + +`helm install {{name}} {{path/to/source_directory}}` + +- Install a helm chart from a URL: + +`helm install {{package_name}} {{https://example.com/charts/packagename-1.2.3.tgz}}` + +- Install a helm chart and generate a name: + +`helm install {{repository_name}}/{{chart_name}} --generate-name` + +- Perform a dry run: + +`helm install {{name}} {{repository_name}}/{{chart_name}} --dry-run` + +- Install a helm chart with custom values: + +`helm install {{name}} {{repository_name}}/{{chart_name}} --set {{parameter1}}={{value1}},{{parameter2}}={{value2}}` + +- Install a helm chart passing a custom values file: + +`helm install {{name}} {{repository_name}}/{{chart_name}} --values {{path/to/values.yaml}}` diff --git a/pages/common/helm.md b/pages/common/helm.md index 04ad70ee4ba393..de0b9fcec5694a 100644 --- a/pages/common/helm.md +++ b/pages/common/helm.md @@ -1,6 +1,7 @@ # helm > Helm is a package manager for Kubernetes. +> Some subcommands such as `helm install` have their own usage documentation. > More information: . - Create a helm chart: @@ -9,7 +10,7 @@ - Add a new helm repository: -`helm repo add {{repo_name}}` +`helm repo add {{repository_name}}` - List helm repositories: @@ -21,11 +22,11 @@ - Delete a helm repository: -`helm repo remove {{repo_name}}` +`helm repo remove {{repository_name}}` - Install a helm chart: -`helm install {{repo_name}}/{{chart_name}}` +`helm install {{name}} {{repository_name}}/{{chart_name}}` - Download helm chart as a tar archive: diff --git a/pages/common/help2man.md b/pages/common/help2man.md index 566aa9cae3d67c..0c136c46a6530b 100644 --- a/pages/common/help2man.md +++ b/pages/common/help2man.md @@ -15,7 +15,7 @@ `help2man {{executable}} --section {{section}}` -- Output to a file instead of stdout: +- Output to a file instead of `stdout`: `help2man {{executable}} --output {{path/to/file}}` diff --git a/pages/common/heroku.md b/pages/common/heroku.md index e639c63176d399..bd507af18e9488 100644 --- a/pages/common/heroku.md +++ b/pages/common/heroku.md @@ -1,13 +1,13 @@ # heroku -> Create and manage Heroku apps from the command line. +> Create and manage Heroku apps from the command-line. > More information: . -- Login to your heroku account: +- Log in to your Heroku account: `heroku login` -- Create a heroku app: +- Create a Heroku app: `heroku create` diff --git a/pages/common/hexdump.md b/pages/common/hexdump.md new file mode 100644 index 00000000000000..da5bbb0fde4818 --- /dev/null +++ b/pages/common/hexdump.md @@ -0,0 +1,20 @@ +# hexdump + +> An ASCII, decimal, hexadecimal, octal dump. +> More information: . + +- Print the hexadecimal representation of a file, replacing duplicate lines by '*': + +`hexdump {{path/to/file}}` + +- Display the input offset in hexadecimal and its ASCII representation in two columns: + +`hexdump -C {{path/to/file}}` + +- Display the hexadecimal representation of a file, but interpret only n bytes of the input: + +`hexdump -C -n{{number_of_bytes}} {{path/to/file}}` + +- Don't replace duplicate lines with '*': + +`hexdump --no-squeezing {{path/to/file}}` diff --git a/pages/common/hg-init.md b/pages/common/hg-init.md index beb7c2658bf009..01466289795120 100644 --- a/pages/common/hg-init.md +++ b/pages/common/hg-init.md @@ -3,10 +3,10 @@ > Create a new repository in the specified directory. > More information: . -- Initialise a new repository in the current directory: +- Initialize a new repository in the current directory: `hg init` -- Initialise a new repository in the specified directory: +- Initialize a new repository in the specified directory: `hg init {{path/to/directory}}` diff --git a/pages/common/hg.md b/pages/common/hg.md index 6aae7c5920ac6e..f4a6d8f427db3b 100644 --- a/pages/common/hg.md +++ b/pages/common/hg.md @@ -1,7 +1,7 @@ # hg -> A command line interface for Mercurial, a distributed source control management system. -> See `hg-add`, `hg-commit` and other pages for additional information. +> A command-line interface for Mercurial, a distributed source control management system. +> Some subcommands such as `hg commit` have their own usage documentation. > More information: . - Execute Mercurial command: diff --git a/pages/common/highlight.md b/pages/common/highlight.md new file mode 100644 index 00000000000000..60ae0ee4ecb9ff --- /dev/null +++ b/pages/common/highlight.md @@ -0,0 +1,24 @@ +# highlight + +> Outputs syntax-highlighted source code to a variety of formats. +> More information: . + +- Produce a complete HTML document from a source code file: + +`highlight --out-format={{html}} --style {{theme_name}} --syntax {{language}} {{path/to/source_code}}` + +- Produce an HTML fragment, suitable for inclusion in a larger document: + +`highlight --out-format={{html}} --fragment --syntax {{language}} {{source_file}}` + +- Inline the CSS styling in every tag: + +`highlight --out-format={{html}} --inline-css --syntax {{language}} {{source_file}}` + +- List all supported languages, themes, or plugins: + +`highlight --list-scripts {{langs|themes|plugins}}` + +- Print a CSS stylesheet for a theme: + +`highlight --out-format={{html}} --print-style --style {{theme_name}} --syntax {{language}}] --stdout` diff --git a/pages/common/histexpand.md b/pages/common/histexpand.md index 61f0fc2b1fa351..d6642685cea032 100644 --- a/pages/common/histexpand.md +++ b/pages/common/histexpand.md @@ -3,11 +3,7 @@ > Reuse and expand the shell history in `sh`, `bash`, `zsh`, `rbash` and `ksh`. > More information: . -- Run the previous command: - -`!!` - -- Run the previous command as root: +- Run the previous command as root (`!!` is replaced by the previous command): `sudo !!` @@ -19,13 +15,17 @@ `{{command}} !^` +- Run the Nth command of the history: + +`!{{n}}` + - Run the command `n` lines back in the history: `!-{{n}}` -- Run the most recent command starting with `string`: +- Run the most recent command containing `string`: -`!{{string}}` +`!?{{string}}?` - Run the previous command, replacing `string1` with `string2`: diff --git a/pages/common/history.md b/pages/common/history.md index 7fd4a743ec92d8..953afe568aef85 100644 --- a/pages/common/history.md +++ b/pages/common/history.md @@ -1,12 +1,13 @@ # history -> Command Line history. +> Command-line history. +> More information: . - Display the commands history list with line numbers: `history` -- Display the last 20 commands: +- Display the last 20 commands (in `zsh` it displays all commands starting from the 20th): `history {{20}}` diff --git a/pages/common/hledger.md b/pages/common/hledger.md new file mode 100644 index 00000000000000..3e678374edc9d6 --- /dev/null +++ b/pages/common/hledger.md @@ -0,0 +1,20 @@ +# hledger + +> A plain text accounting software for the command-line. +> More information: . + +- Add transactions to your journal interactively: + +`hledger add` + +- Show the account hierarchy, using a specific journal file: + +`hledger --file {{path/to/file.journal}} accounts --tree` + +- Show a monthly income statement: + +`hledger incomestatement --monthly --depth 2` + +- Print the amount of cash spent on food: + +`hledger print assets:cash | hledger -f- -I balance expenses:food --depth 2` diff --git a/pages/common/holehe.md b/pages/common/holehe.md new file mode 100644 index 00000000000000..752f7f9c9044c1 --- /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/host.md b/pages/common/host.md index ecd88fc2f47a3b..39fa4c1af5dabb 100644 --- a/pages/common/host.md +++ b/pages/common/host.md @@ -1,6 +1,7 @@ # host > Lookup Domain Name Server. +> More information: . - Lookup A, AAAA, and MX records of a domain: diff --git a/pages/common/hostess.md b/pages/common/hostess.md index acbef82294f854..2b5bb054c87b0e 100644 --- a/pages/common/hostess.md +++ b/pages/common/hostess.md @@ -3,7 +3,7 @@ > An idempotent command-line utility for managing the `/etc/hosts` file. > More information: . -- List domains, target ips and on/off status: +- List domains, target IP addresses and on/off status: `hostess list` @@ -15,6 +15,6 @@ `hostess del {{local.example.com}}` -- Disable a domain (but don't remove it completely): +- Disable a domain (but don't remove it): `hostess off {{local.example.com}}` diff --git a/pages/common/hostname.md b/pages/common/hostname.md new file mode 100644 index 00000000000000..d27a6c315cbe1b --- /dev/null +++ b/pages/common/hostname.md @@ -0,0 +1,24 @@ +# hostname + +> Show or set the system's host name. +> More information: . + +- Show current host name: + +`hostname` + +- Show the network address of the host name: + +`hostname -i` + +- Show all network addresses of the host: + +`hostname -I` + +- Show the FQDN (Fully Qualified Domain Name): + +`hostname --fqdn` + +- Set current host name: + +`hostname {{new_hostname}}` diff --git a/pages/common/hping3.md b/pages/common/hping3.md new file mode 100644 index 00000000000000..7794e3c73d27ee --- /dev/null +++ b/pages/common/hping3.md @@ -0,0 +1,21 @@ +# hping3 + +> Advanced ping utility which supports protocols such TCP, UDP, and raw IP. +> Best run with elevated privileges. +> More information: . + +- Ping a destination with 4 ICMP ping requests: + +`hping3 --icmp --count {{4}} {{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}}` + +- Traceroute using a TCP scan to a specific destination port: + +`hping3 --traceroute --verbose --syn --destport {{80}} {{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}}` diff --git a/pages/common/hr.md b/pages/common/hr.md index 52e5fedd19272d..909972730cabc1 100644 --- a/pages/common/hr.md +++ b/pages/common/hr.md @@ -1,6 +1,7 @@ # hr > Print a horizontal rule in the terminal. +> More information: . - Print a horizontal rule: diff --git a/pages/common/hsd-cli.md b/pages/common/hsd-cli.md index 9cb73abce6314b..61dd3282cf80ce 100644 --- a/pages/common/hsd-cli.md +++ b/pages/common/hsd-cli.md @@ -1,6 +1,6 @@ # hsd-cli -> The command line REST tool for the Handshake blockchain. +> The command-line REST tool for the Handshake blockchain. > More information: . - Retrieve information about the current server: diff --git a/pages/common/hsw-cli.md b/pages/common/hsw-cli.md index 7898f022e2d9fd..c4b16801c19f67 100644 --- a/pages/common/hsw-cli.md +++ b/pages/common/hsw-cli.md @@ -1,7 +1,7 @@ # hsw-cli -> The command line REST tool for the Handshake wallet. -> More information: . +> The command-line REST tool for the Handshake wallet. +> More information: . - Unlock the current wallet (timeout in seconds): diff --git a/pages/common/html5validator.md b/pages/common/html5validator.md index 5e718fb1b02d04..f30fc0f1db7e17 100644 --- a/pages/common/html5validator.md +++ b/pages/common/html5validator.md @@ -1,6 +1,6 @@ # html5validator -> A command line tool for testing HTML5 validity. +> A command-line tool for testing HTML5 validity. > More information: . - Validate a specific file: diff --git a/pages/common/htop.md b/pages/common/htop.md index a4da2b15d930c2..b2841eadc2e049 100644 --- a/pages/common/htop.md +++ b/pages/common/htop.md @@ -1,19 +1,28 @@ # htop > Display dynamic real-time information about running processes. An enhanced version of `top`. +> More information: . - Start htop: `htop` -- Start htop displaying only processes owned by given user: +- Start htop displaying processes owned by a specific user: -`htop -u {{username}}` +`htop --user {{username}}` -- Sort processes by a column (use `--sort-key help` for a column list): +- Sort processes by a specified `sort_item` (use `htop --sort help` for available options): -`htop -s {{column_name}}` +`htop --sort {{sort_item}}` -- Get help about interactive commands: +- See interactive commands while running htop: `?` + +- Switch to a different tab: + +`tab` + +- Display help: + +`htop --help` diff --git a/pages/common/http-server-upload.md b/pages/common/http-server-upload.md new file mode 100644 index 00000000000000..81e918e6db68e0 --- /dev/null +++ b/pages/common/http-server-upload.md @@ -0,0 +1,28 @@ +# http-server-upload + +> Zero-configuration command-line HTTP server which provides a lightweight interface to upload files. +> More information: . + +- Start an HTTP server on the default port to upload files to the current directory: + +`http-server-upload` + +- Start an HTTP server with the specified maximum allowed file size for uploads in MiB (defaults to 200 MiB): + +`MAX_FILE_SIZE={{size_in_megabytes}} http-server-upload` + +- Start an HTTP server on a specific port to upload files to the current directory: + +`PORT={{port}} http-server-upload` + +- Start an HTTP server, storing the uploaded files in a specific directory: + +`UPLOAD_DIR={{path/to/directory}} http-server-upload` + +- Start an HTTP server using a specific directory to temporarily store files during the upload process: + +`UPLOAD_TMP_DIR={{path/to/directory}} http-server-upload` + +- Start an HTTP server accepting uploads with a specific token field in the HTTP post: + +`TOKEN={{secret}} http-server-upload` diff --git a/pages/common/http-server.md b/pages/common/http-server.md new file mode 100644 index 00000000000000..dad191726c68ce --- /dev/null +++ b/pages/common/http-server.md @@ -0,0 +1,36 @@ +# http-server + +> Simple static HTTP server to serve static files. +> More information: . + +- Start an HTTP server listening on the default port to serve the current directory: + +`http-server` + +- Start an HTTP server on a specific port to serve a specific directory: + +`http-server {{path/to/directory}} --port {{port}}` + +- Start an HTTP server using basic authentication: + +`http-server --username {{username}} --password {{password}}` + +- Start an HTTP server with directory listings disabled: + +`http-server -d {{false}}` + +- Start an HTTPS server on the default port using the specified certificate: + +`http-server --ssl --cert {{path/to/cert.pem}} --key {{path/to/key.pem}}` + +- Start an HTTP server and include the client's IP address in the output logging: + +`http-server --log-ip` + +- Start an HTTP server with CORS enabled by including the `Access-Control-Allow-Origin: *` header in all responses: + +`http-server --cors` + +- Start an HTTP server with logging disabled: + +`http-server --silent` diff --git a/pages/common/http.md b/pages/common/http.md index 849f2ed9b22ae9..edcf23c3734431 100644 --- a/pages/common/http.md +++ b/pages/common/http.md @@ -5,11 +5,11 @@ - Download a URL to a file: -`http -d {{example.org}}` +`http --download {{example.org}}` - Send form-encoded data: -`http -f {{example.org}} {{name='bob'}} {{profile_picture@'bob.png'}}` +`http --form {{example.org}} {{name='bob'}} {{profile_picture@'bob.png'}}` - Send JSON object: @@ -23,10 +23,10 @@ `http {{example.org}} {{X-MyHeader:123}}` -- Pass a user name and password for server authentication: +- Pass a username and password for server authentication: -`http -a {{username:password}} {{example.org}}` +`http --auth {{username:password}} {{example.org}}` -- Specify raw request body via stdin: +- Specify raw request body via `stdin`: `cat {{data.txt}} | http PUT {{example.org}}` diff --git a/pages/common/httpflow.md b/pages/common/httpflow.md index 23fa626f593255..e55a82131fb554 100644 --- a/pages/common/httpflow.md +++ b/pages/common/httpflow.md @@ -1,6 +1,6 @@ # httpflow -> A command line utility to capture and dump HTTP streams. +> A command-line utility to capture and dump HTTP streams. > More information: . - Capture traffic on all interfaces: @@ -11,9 +11,9 @@ `httpflow {{host httpbin.org or host baidu.com}}` -- Use a regexp to filter requests by urls: +- Use a regular expression to filter requests by URLs: -`httpflow -u '{{regex}}'` +`httpflow -u '{{regular_expression}}'` - Read packets from pcap format binary file: diff --git a/pages/common/httping.md b/pages/common/httping.md index 90b73b67cd606b..7cdc3b67664665 100644 --- a/pages/common/httping.md +++ b/pages/common/httping.md @@ -1,9 +1,9 @@ # httping > Measure the latency and throughput of a web server. -> More information: . +> More information: . -- Ping the specified url: +- Ping the specified URL: `httping -g {{url}}` diff --git a/pages/common/hub.md b/pages/common/hub.md index bc4f012cc52ab2..611ae9c8d8413a 100644 --- a/pages/common/hub.md +++ b/pages/common/hub.md @@ -4,11 +4,7 @@ > If set up as instructed by `hub alias`, one can use `git` to run `hub` commands. > More information: . -- Clone a repository you own, using just the repository name rather than the full URL: - -`hub clone {{repo_name}}` - -- Clone another user's repository, using their GitHub username and the repository name: +- Clone a repository using its slug (owners can omit the username): `hub clone {{username}}/{{repo_name}}` @@ -31,3 +27,7 @@ - Upload the current (local-only) repository to your GitHub account: `hub create` + +- Fetch Git objects from upstream and update local branches: + +`hub sync` diff --git a/pages/common/hugo.md b/pages/common/hugo.md index b2c24d22008a6d..f66ee26a9dfa62 100644 --- a/pages/common/hugo.md +++ b/pages/common/hugo.md @@ -13,7 +13,7 @@ - Create a new page: -`hugo new {{section_name}}/{{filename}}` +`hugo new {{section_name}}/{{path/to/file}}` - Build a site to the `./public/` directory: diff --git a/pages/common/hunspell.md b/pages/common/hunspell.md index e6d9cec5133713..21551668efe29b 100644 --- a/pages/common/hunspell.md +++ b/pages/common/hunspell.md @@ -1,7 +1,7 @@ # hunspell > Check spelling. -> More information: . +> More information: . - Check the spelling of a file: diff --git a/pages/common/husky.md b/pages/common/husky.md new file mode 100644 index 00000000000000..c3d93d105ce101 --- /dev/null +++ b/pages/common/husky.md @@ -0,0 +1,28 @@ +# husky + +> Native Git hooks made easy. +> More information: . + +- Install Husky in the current directory: + +`husky install` + +- Install Husky into a specific directory: + +`husky install {{path/to/directory}}` + +- Set a specific command as a `pre-push` hook for Git: + +`husky set {{.husky/pre-push}} "{{command}} {{command_arguments}}"` + +- Add a specific command to the current `pre-commit` hook: + +`husky add {{.husky/pre-commit}} "{{command}} {{command_arguments}}"` + +- Uninstall Husky hooks from the current directory: + +`husky uninstall` + +- Display help: + +`husky` diff --git a/pages/common/hx.md b/pages/common/hx.md new file mode 100644 index 00000000000000..08d7a8a08bfab4 --- /dev/null +++ b/pages/common/hx.md @@ -0,0 +1,7 @@ +# hx + +> This command is an alias of `helix`. + +- View documentation for the original command: + +`tldr helix` diff --git a/pages/common/hydra.md b/pages/common/hydra.md index c7217f0a2e24c3..35e4aa8d0cc9ef 100644 --- a/pages/common/hydra.md +++ b/pages/common/hydra.md @@ -12,9 +12,9 @@ `hydra -l {{username}} -P {{path/to/wordlist.txt}} {{host_ip}} {{ssh}}` -- Guess Telnet credentials using a list of usernames and a single password, specifying a non-standard port and IPv6: +- Guess HTTPS webform credentials using two specific lists of usernames and passwords ("https_post_request" can be like "username=^USER^&password=^PASS^"): -`hydra -L {{path/to/usernames.txt}} -p {{password}} -s {{port}} -6 {{host_ip}} {{telnet}}` +`hydra -L {{path/to/usernames.txt}} -P {{path/to/wordlist.txt}} {{host_ip}} {{https-post-form}} "{{url_without_host}}:{{https_post_request}}:{{login_failed_string}}"` - Guess FTP credentials using usernames and passwords lists, specifying the number of threads: diff --git a/pages/common/ia.md b/pages/common/ia.md new file mode 100644 index 00000000000000..6fb900d6f9cb97 --- /dev/null +++ b/pages/common/ia.md @@ -0,0 +1,24 @@ +# ia + +> Command-line tool to interact with `archive.org`. +> More information: . + +- Configure `ia` with API keys (some functions won't work without this step): + +`ia configure` + +- Upload one or more items to `archive.org`: + +`ia upload {{identifier}} {{path/to/file}} --metadata="{{mediatype:data}}" --metadata="{{title:example}}"` + +- Download one or more items from `archive.org`: + +`ia download {{item}}` + +- Delete one or more items from `archive.org`: + +`ia delete {{identifier}} {{file}}` + +- Search on `archive.org`, returning results as JSON: + +`ia search '{{subject:"subject" collection:collection}}'` diff --git a/pages/common/ibmcloud-login.md b/pages/common/ibmcloud-login.md new file mode 100644 index 00000000000000..28d724b66b3395 --- /dev/null +++ b/pages/common/ibmcloud-login.md @@ -0,0 +1,28 @@ +# ibmcloud login + +> Log in to the IBM Cloud. +> More information: . + +- Log in by using an interactive prompt: + +`ibmcloud login` + +- Log in to a specific API endpoint (default is `cloud.ibm.com`): + +`ibmcloud login -a {{api_endpoint}}` + +- Log in by providing username, password and the targeted region as parameters: + +`ibmcloud login -u {{username}} -p {{password}} -r {{us-south}}` + +- Log in with an API key, passing it as an argument: + +`ibmcloud login --apikey {{api_key_string}}` + +- Log in with an API key, passing it as a file: + +`ibmcloud login --apikey @{{path/to/api_key_file}}` + +- Log in with a federated ID (single sign-on): + +`ibmcloud login --sso` diff --git a/pages/common/ibmcloud.md b/pages/common/ibmcloud.md new file mode 100644 index 00000000000000..76865dac091c5f --- /dev/null +++ b/pages/common/ibmcloud.md @@ -0,0 +1,28 @@ +# ibmcloud + +> A command-line tool for managing IBM Cloud apps and services. +> More information: . + +- Update `ibmcloud` to the latest version: + +`ibmcloud update` + +- Install the Cloud Foundry module for accessing Cloud Foundry services: + +`ibmcloud cf install` + +- List all available IBM Cloud regions: + +`ibmcloud regions` + +- Display `ibmcloud` version: + +`ibmcloud version` + +- Display help: + +`ibmcloud help` + +- Display help for a subcommand: + +`ibmcloud help {{subcommand}}` diff --git a/pages/common/ical.md b/pages/common/ical.md new file mode 100644 index 00000000000000..a65890aa18cb5a --- /dev/null +++ b/pages/common/ical.md @@ -0,0 +1,16 @@ +# ical + +> A Hirji/Islamic calendar and converter for the terminal. +> More information: . + +- Display the current month's calendar: + +`ical` + +- Convert a Gregorian date to a Hijri date: + +`ical --gregorian {{yyyymmdd}}` + +- Convert a Hirji date to a Gregorian date: + +`ical --hijri {{yyyymmdd}}` diff --git a/pages/common/iconv.md b/pages/common/iconv.md index 40baed855bffd5..c542e13a04a6f0 100644 --- a/pages/common/iconv.md +++ b/pages/common/iconv.md @@ -1,8 +1,9 @@ # iconv > Converts text from one encoding to another. +> More information: . -- Convert file to a specific encoding, and print to stdout: +- Convert file to a specific encoding, and print to `stdout`: `iconv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}` diff --git a/pages/common/id.md b/pages/common/id.md index 9b7a9abf6c5c8f..96859f471cda19 100644 --- a/pages/common/id.md +++ b/pages/common/id.md @@ -3,7 +3,7 @@ > Display current user and group identity. > More information: . -- Display current user's id (UID), group id (GID) and groups to which they belong: +- Display current user's ID (UID), group ID (GID) and groups to which they belong: `id` @@ -15,6 +15,6 @@ `id -g` -- Display an arbitrary user's id (UID), group id (GID) and groups to which they belong: +- Display an arbitrary user's ID (UID), group ID (GID) and groups to which they belong: `id {{username}}` diff --git a/pages/common/id3tag.md b/pages/common/id3tag.md index 7494dc75ba8540..ad68e6825cba09 100644 --- a/pages/common/id3tag.md +++ b/pages/common/id3tag.md @@ -1,6 +1,7 @@ # id3tag > Tool for reading, writing, and manipulating ID3v1 and ID3v2 tags of MP3 files. +> More information: . - Set artist and title tag of an MP3 file: diff --git a/pages/common/identify.md b/pages/common/identify.md index 6bb2a12ae5743f..c133f031043136 100644 --- a/pages/common/identify.md +++ b/pages/common/identify.md @@ -1,8 +1,16 @@ # identify -> Command line utility of Image Magick project to describe the format and characteristics of one or more image files. +> Command-line utility of Image Magick project to describe the format and characteristics of one or more image files. > More information: . -- Collect dimensions of all jpeg files under current directory: +- Describe the format and basic characteristics of an image: -`identify -format "%f,%w,%h\n" *.{{jpg}} > {{filelist.csv}}` +`identify {{path/to/image}}` + +- Describe the format and verbose characteristics of an image: + +`identify -verbose {{path/to/image}}` + +- Collect dimensions of all JPEG files under current directory: + +`identify -format "%f,%w,%h\n" *.{{jpg}} > {{path/to/filelist.csv}}` diff --git a/pages/common/idnits.md b/pages/common/idnits.md new file mode 100644 index 00000000000000..8a516f5b42945a --- /dev/null +++ b/pages/common/idnits.md @@ -0,0 +1,25 @@ +# idnits + +> Check internet-drafts for submission nits. +> Looks for violations of Section 2.1 and 2.2 of the requirements listed on . +> More information: . + +- Check a file for nits: + +`idnits {{path/to/file.txt}}` + +- Count nits without displaying them: + +`idnits --nitcount {{path/to/file.txt}}` + +- Show extra information about offending lines: + +`idnits --verbose {{path/to/file.txt}}` + +- Expect the specified year in the boilerplate instead of the current year: + +`idnits --year {{2021}} {{path/to/file.txt}}` + +- Assume the document is of the specified status: + +`idnits --doctype {{standard|informational|experimental|bcp|ps|ds}} {{path/to/file.txt}}` diff --git a/pages/common/if.md b/pages/common/if.md index 3154b2c233f460..0448073704807b 100644 --- a/pages/common/if.md +++ b/pages/common/if.md @@ -1,27 +1,36 @@ # if -> Simple shell conditional. +> Performs conditional processing in shell scripts. > See also: `test`, `[`. +> More information: . -- Execute two different commands based on a condition: +- Execute the specified commands if the condition command's exit status is zero: -`if {{command}}; then {{echo "true"}}; else {{echo "false"}}; fi` +`if {{condition_command}}; then {{echo "Condition is true"}}; fi` -- Check if a variable is defined: +- Execute the specified commands if the condition command's exit status is not zero: -`if [[ -n "{{$VARIABLE}}" ]]; then {{echo "defined"}}; else {{echo "not defined"}}; fi` +`if ! {{condition_command}}; then {{echo "Condition is true"}}; fi` -- Check if a file exists: +- Execute the first specified commands if the condition command's exit status is zero otherwise execute the second specified commands: -`if [[ -f "{{path/to/file}}" ]]; then {{echo "true"}}; else {{echo "false"}}; fi` +`if {{condition_command}}; then {{echo "Condition is true"}}; else {{echo "Condition is false"}}; fi` -- Check if a directory exists: +- Check whether a [f]ile exists: -`if [[ -d "{{path/to/directory}}" ]]; then {{echo "true"}}; else {{echo "false"}}; fi` +`if [[ -f {{path/to/file}} ]]; then {{echo "Condition is true"}}; fi` -- Check if a file or directory exists: +- Check whether a [d]irectory exists: -`if [[ -e "{{path/to/file_or_directory}}" ]]; then {{echo "true"}}; else {{echo "false"}}; fi` +`if [[ -d {{path/to/directory}} ]]; then {{echo "Condition is true"}}; fi` + +- Check whether a file or directory [e]xists: + +`if [[ -e {{path/to/file_or_directory}} ]]; then {{echo "Condition is true"}}; fi` + +- Check whether a variable is defined: + +`if [[ -n "${{variable}}" ]]; then {{echo "Condition is true"}}; fi` - List all possible conditions (`test` is an alias to `[`; both are commonly used with `if`): diff --git a/pages/common/ifconfig.md b/pages/common/ifconfig.md index 365522845747a3..915c9519bebdcf 100644 --- a/pages/common/ifconfig.md +++ b/pages/common/ifconfig.md @@ -1,8 +1,9 @@ # ifconfig > Network Interface Configurator. +> More information: . -- View network settings of an ethernet adapter: +- View network settings of an Ethernet adapter: `ifconfig eth0` diff --git a/pages/common/ignite.md b/pages/common/ignite.md index 722d836bd9e20b..73fdb30478b7e0 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/common/imapsync.md b/pages/common/imapsync.md index e70b70ab8f0b59..6088cb5116212a 100644 --- a/pages/common/imapsync.md +++ b/pages/common/imapsync.md @@ -1,8 +1,8 @@ # imapsync -> Email IMAP tool for syncing, copying and migrating email mailboxes between two imap servers, one way, and without duplicates. +> Email IMAP tool for syncing, copying and migrating email mailboxes between two IMAP servers, one way, and without duplicates. > More information: . -- Synchronize imap account between host1 and host2: +- Synchronize IMAP account between host1 and host2: `imapsync --host1 {{host1}} --user1 {{user1}} --password1 {{secret1}} --host2 {{host2}} --user2 {{user2}} --password2 {{secret2}}` diff --git a/pages/common/img2pdf.md b/pages/common/img2pdf.md new file mode 100644 index 00000000000000..4b179d36846eb5 --- /dev/null +++ b/pages/common/img2pdf.md @@ -0,0 +1,24 @@ +# img2pdf + +> Command-line lossless converter of raster images to PDF. +> More information: . + +- Convert multiple images to a single PDF, each image being on its own page: + +`img2pdf {{path/to/image1.jpg}} {{path/to/image2.jpg}} --output {{path/to/file.pdf}}` + +- Convert only the first frame of a multi-frame image to PDF: + +`img2pdf {{path/to/file.gif}} --first-frame-only --output {{path/to/file.pdf}}` + +- Auto orient the image, use a page size of A4 in landscape mode, and set a border of 2cm horizontally and 5.1cm vertically: + +`img2pdf {{path/to/file.jpg}} --auto-orient --pagesize {{A4^T}} --border {{2cm}}:{{5.1cm}} --output {{path/to/file.pdf}}` + +- Shrink only larger images to a 10cm by 15cm rectangle inside a 30x20cm page: + +`img2pdf {{path/to/file.tiff}} --pagesize {{30cm}}x{{20cm}} --imgsize {{10cm}}x{{15cm}} --fit {{shrink}} --output {{path/to/file.pdf}}` + +- Convert an image to PDF, and specify metadata for the resulting file: + +`img2pdf {{path/to/file.png}} --title {{title}} --author {{author}} --creationdate {{1970-01-31}} --keywords {{keyword1 keyword2}} --subject {{subject}} --output {{path/to/file.pdf}}` diff --git a/pages/common/import.md b/pages/common/import.md index a59c41e95faee3..75468662e9243b 100644 --- a/pages/common/import.md +++ b/pages/common/import.md @@ -2,14 +2,15 @@ > Capture some or all of an X server screen, and save the image to a file. > Part of the ImageMagick library. +> More information: . - Capture the entire X server screen in the PostScript image format: `import -window root {{output.postscript}}` -- Capture contents of a remote X server screen in the PNG image format: +- Capture contents of a remote X server screen in the PNG format: -`import -window root -display {{remote_host}}:{screen}.{display} {{output.png}}` +`import -window root -display {{remote_host}}:{{screen}}.{{display}} {{output.png}}` - Capture a specific window, given its ID as displayed by `xwininfo`, into the JPEG format: diff --git a/pages/common/in-toto-record.md b/pages/common/in-toto-record.md new file mode 100644 index 00000000000000..52c606f988e613 --- /dev/null +++ b/pages/common/in-toto-record.md @@ -0,0 +1,12 @@ +# in-toto-record + +> Create a signed link metadata file to provide evidence for supply chain steps. +> More information: . + +- Start the record (creates a preliminary link file): + +`in-toto-record start -n {{edit-files}} -k {{path/to/key_file}} -m {{.}}` + +- Stop the record (expects a preliminary link file): + +`in-toto-record stop -n {{edit-files}} -k {{path/to/key_file}} -p {{.}}` diff --git a/pages/common/in-toto-run.md b/pages/common/in-toto-run.md new file mode 100644 index 00000000000000..75560b9ff3c5e3 --- /dev/null +++ b/pages/common/in-toto-run.md @@ -0,0 +1,20 @@ +# in-toto-run + +> Generating link metadata while carrying out a supply chain step. +> More information: . + +- Tag a git repo and signing the resulting link file: + +`in-toto-run -n {{tag}} --products {{.}} -k {{key_file}} -- {{git tag v1.0}}` + +- Create a tarball, storing files as materials and the tarball as product: + +`in-toto-run -n {{package}} -m {{project}} -p {{project.tar.gz}} -- {{tar czf project.tar.gz project}}` + +- Generate signed attestations for review work: + +`in-toto-run -n {{review}} -k {{key_file}} -m {{document.pdf}} -x` + +- Scan the image using Trivy and generate link file: + +`in-toto-run -n {{scan}} -k {{key_file}} -p {{report.json}} -- {{/bin/sh -c "trivy -o report.json -f json "}}` diff --git a/pages/common/in-toto-sign.md b/pages/common/in-toto-sign.md new file mode 100644 index 00000000000000..f4f1a408922ed7 --- /dev/null +++ b/pages/common/in-toto-sign.md @@ -0,0 +1,24 @@ +# in-toto-sign + +> Sign in-toto link or layout metadata or verify their signatures. +> More information: . + +- Sign 'unsigned.layout' with two keys and write it to 'root.layout': + +`in-toto-sign -f {{unsigned.layout}} -k {{priv_key1}} {{priv_key2}} -o {{root.layout}}` + +- Replace signature in link file and write to default filename: + +`in-toto-sign -f {{package.2f89b927.link}} -k {{priv_key}}` + +- Verify a layout signed with 3 keys: + +`in-toto-sign -f {{root.layout}} -k {{pub_key0}} {{pub_key1}} {{pub_key2}} --verify` + +- Sign a layout with the default GPG key in default GPG keyring: + +`in-toto-sign -f {{root.layout}} --gpg` + +- Verify a layout with a GPG key identified by keyid '...439F3C2': + +`in-toto-sign -f {{root.layout}} --verify --gpg {{...439F3C2}}` diff --git a/pages/common/indent.md b/pages/common/indent.md index 2d8703721cb14e..38f0c0af9c88f0 100644 --- a/pages/common/indent.md +++ b/pages/common/indent.md @@ -11,6 +11,6 @@ `indent --gnu-style {{path/to/source.c}} -o {{path/to/indented_source.c}}` -- Format C/C++ source according to the style of Kernigan & Ritchie (K&R), no tabs, 3 spaces per indent, and wrap lines at 120 characters: +- Format C/C++ source according to the style of Kernighan & Ritchie (K&R), no tabs, 3 spaces per indent, and wrap lines at 120 characters: `indent --k-and-r-style --indent-level3 --no-tabs --line-length120 {{path/to/source.c}} -o {{path/to/indented_source.c}}` diff --git a/pages/common/infection.md b/pages/common/infection.md index d5f96d5ccc9bcd..7ca2bde8d4fbe7 100644 --- a/pages/common/infection.md +++ b/pages/common/infection.md @@ -3,7 +3,7 @@ > A mutation testing framework for PHP. > More information: . -- Analyse code using the configuration file (or create one if it does not exist): +- Analyze code using the configuration file (or create one if it does not exist): `infection` @@ -19,7 +19,7 @@ `infection --min-covered-msi {{percentage}}` -- Use a specific test framework (defaults to phpunit): +- Use a specific test framework (defaults to PHPUnit): `infection --test-framework {{phpunit|phpspec}}` diff --git a/pages/common/install-tl.md b/pages/common/install-tl.md new file mode 100644 index 00000000000000..f4152a50c7fa53 --- /dev/null +++ b/pages/common/install-tl.md @@ -0,0 +1,28 @@ +# install-tl + +> TeX Live cross-platform installer. +> More information: . + +- Start the text-based installer (default on Unix systems): + +`install-tl -no-gui` + +- Start the GUI installer (default on macOS and Windows, requires Tcl/Tk): + +`install-tl -gui` + +- Install TeX Live as defined in a specific profile file: + +`install-tl -profile {{path/to/texlive.profile}}` + +- Start the installer with the settings from a specific profile file: + +`install-tl -init-from-file {{path/to/texlive.profile}}` + +- Start the installer for installation on a portable device, like a USB stick: + +`install-tl -portable` + +- Show help for `install-tl`: + +`install-tl -help` diff --git a/pages/common/install.md b/pages/common/install.md index 5c7710b15945f6..f057d5d4696219 100644 --- a/pages/common/install.md +++ b/pages/common/install.md @@ -4,22 +4,26 @@ > Copy files (often executable) to a system location like `/usr/local/bin`, give them the appropriate permissions/ownership. > More information: . -- Copy files to destination: +- Copy files to the destination: -`install {{path/to/source}} {{path/to/destination}}` +`install {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` -- Copy files to destination, setting their ownership: +- Copy files to the destination, setting their ownership: -`install -o {{user}} {{path/to/source}} {{path/to/destination}}` +`install --owner {{user}} {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` -- Copy files to destination, setting their group ownership: +- Copy files to the destination, setting their group ownership: -`install -g {{user}} {{path/to/source}} {{path/to/destination}}` +`install --group {{user}} {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` -- Copy files to destination, setting their `mode`: +- Copy files to the destination, setting their `mode`: -`install -m {{+x}} {{path/to/source}} {{path/to/destination}}` +`install --mode {{+x}} {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` -- Copy files and apply access/modification times of source to destination: +- Copy files and apply access/modification times of source to the destination: -`install -p {{path/to/source}} {{path/to/destination}}` +`install --preserve-timestamps {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` + +- Copy files and create the directories at the destination if they don't exist: + +`install -D {{path/to/source_file1 path/to/source_file2 ...}} {{path/to/destination}}` diff --git a/pages/common/ionic.md b/pages/common/ionic.md index 7a0bf992969425..fb5705f5f97474 100644 --- a/pages/common/ionic.md +++ b/pages/common/ionic.md @@ -15,14 +15,14 @@ `ionic g {{page}}` -- Show versions of ionic, cordova, environment, etc.: +- Show versions of Ionic, Cordova, environment, etc.: `ionic info` -- Run app on an android/ios device: +- Run app on an Android/iOS device: `ionic cordova run {{android|ios}} --device` -- Check the health of a ionic app: +- Check the health of an Ionic app: `ionic doctor {{check}}` diff --git a/pages/common/ionice.md b/pages/common/ionice.md index 2b0115a03de3ec..c085b81da6fe5d 100644 --- a/pages/common/ionice.md +++ b/pages/common/ionice.md @@ -3,6 +3,7 @@ > Get or set program I/O scheduling class and priority. > Scheduling classes: 1 (realtime), 2 (best-effort), 3 (idle). > Priority levels: 0 (the highest) - 7 (the lowest). +> More information: . - Set I/O scheduling class of a running process: diff --git a/pages/common/ipaggcreate.md b/pages/common/ipaggcreate.md new file mode 100644 index 00000000000000..caac990e43b27e --- /dev/null +++ b/pages/common/ipaggcreate.md @@ -0,0 +1,16 @@ +# ipaggcreate + +> Produce aggregate statistics of TCP/IP dumps. +> More information: . + +- Count the number of packets sent from each source address appearing in a pcap file: + +`ipaggcreate --src {{path/to/file.pcap}}` + +- Group and count packets read from a network interface by IP packet length: + +`ipaggcreate --interface {{eth0}} --length` + +- Count the number of bytes sent between each address pair appearing in a pcap file: + +`ipaggcreate --address-pairs --bytes {{path/to/file.pcap}}` diff --git a/pages/common/ipaggmanip.md b/pages/common/ipaggmanip.md new file mode 100644 index 00000000000000..0c0edfde8ed0fb --- /dev/null +++ b/pages/common/ipaggmanip.md @@ -0,0 +1,16 @@ +# ipaggmanip + +> Manipulate aggregate statistics produced by `ipaggcreate`. +> More information: . + +- Combine labels equal in their high-order bits: + +`ipaggmanip --prefix {{16}} {{path/to/file}}` + +- Remove labels with a count smaller than a given number of bytes and output a random sample of such labels: + +`ipaggmanip --cut-smaller {{100}} --cull-labels {{5}} {{path/to/file}}` + +- Replace each label's count with 1 if it is non-zero: + +`ipaggmanip --posterize {{path/to/file}}` diff --git a/pages/common/ipcs.md b/pages/common/ipcs.md index d35fa4a1676866..126548646e4656 100644 --- a/pages/common/ipcs.md +++ b/pages/common/ipcs.md @@ -1,8 +1,9 @@ # ipcs > Display information about resources used in IPC (Inter-process Communication). +> More information: . -- Specific information about the Message Queue which has the id 32768: +- Specific information about the Message Queue which has the ID 32768: `ipcs -qi 32768` diff --git a/pages/common/ipfs.md b/pages/common/ipfs.md index d3bd83ae588847..9c763970793aae 100644 --- a/pages/common/ipfs.md +++ b/pages/common/ipfs.md @@ -6,15 +6,15 @@ - 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: -`ipfs add -r {{directory}}` +`ipfs add -r {{path/to/directory}}` - 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/ipsumdump.md b/pages/common/ipsumdump.md new file mode 100644 index 00000000000000..8d976519c57054 --- /dev/null +++ b/pages/common/ipsumdump.md @@ -0,0 +1,16 @@ +# ipsumdump + +> Summarise TCP/IP dumps into a human and machine readable ASCII format. +> More information: . + +- Print the source and destination IP addresses of all packets in a pcap file: + +`ipsumdump --src --dst {{path/to/file.pcap}}` + +- Print the timestamps, source address, source port, destination address, destination port and protocol of all packets read from a given network interface: + +`ipsumdump --interface {{eth0}} -tsSdDp` + +- Print the anonymised source address, anonymised destination address, and IP packet length of all packets in a pcap file: + +`ipsumdump --src --dst --length --anonymize {{path/to/file.pcap}}` diff --git a/pages/common/ipython.md b/pages/common/ipython.md index b310e7b80b133c..0672989c781f5d 100644 --- a/pages/common/ipython.md +++ b/pages/common/ipython.md @@ -1,9 +1,9 @@ # IPython > A Python shell with automatic history, dynamic object introspection, easier configuration, command completion, access to the system shell and more. -> More information: . +> More information: . -- Start an interactive IPython session: +- Start a REPL (interactive shell): `ipython` diff --git a/pages/common/irssi.md b/pages/common/irssi.md index c50d8f732bdc8f..20eb917342a93c 100644 --- a/pages/common/irssi.md +++ b/pages/common/irssi.md @@ -3,11 +3,11 @@ > Text based IRC client. > More information: . -- Open irssi and connect to a server with a nickname: +- Open Irssi and connect to a server with a nickname: `irssi -n {{nickname}} -c {{irc.example.com}}` -- Open irssi and connect with a specific server on a given port: +- Open Irssi and connect with a specific server on a given port: `irssi -c {{irc.example.com}} -p {{port}}` diff --git a/pages/common/isisdl.md b/pages/common/isisdl.md new file mode 100644 index 00000000000000..2d76179b5ca77d --- /dev/null +++ b/pages/common/isisdl.md @@ -0,0 +1,28 @@ +# isisdl + +> A downloading utility for ISIS of TU-Berlin. Download all your files and videos from ISIS. +> More information: . + +- Start the synchronization process: + +`isisdl` + +- Limit the download rate to 20 MiB/s and download with 5 threads: + +`isisdl --download-rate {{20}} --max-num-threads {{5}}` + +- Run the initialization configuration wizard: + +`isisdl --init` + +- Run the additional configuration wizard: + +`isisdl --config` + +- Initiate a full synchronization of the database and compute the checksum of every file: + +`isisdl --sync` + +- Start ffmpeg to compress downloaded videos: + +`isisdl --compress` diff --git a/pages/common/iverilog.md b/pages/common/iverilog.md index d470768a29520b..fa48967c142c41 100644 --- a/pages/common/iverilog.md +++ b/pages/common/iverilog.md @@ -1,24 +1,24 @@ # iverilog -> Preprocesses and compiles Verilog HDL (IEEE-1364) code, into executable programs for simulation. -> More information: . +> Preprocesses and compiles Verilog HDL (IEEE-1364) code into executable programs for simulation. +> More information: . - Compile a source file into an executable: -`iverilog {{source.v}} -o {{executable}}` +`iverilog {{path/to/source.v}} -o {{path/to/executable}}` -- Also display all warnings: +- Compile a source file into an executable while displaying all warnings: -`iverilog {{source.v}} -Wall -o {{executable}}` +`iverilog {{path/to/source.v}} -Wall -o {{path/to/executable}}` - Compile and run explicitly using the VVP runtime: -`iverilog -o {{executable}} -tvvp {{source.v}}` +`iverilog -o {{path/to/executable}} -tvvp {{path/to/source.v}}` - Compile using Verilog library files from a different path: -`iverilog {{source.v}} -o {{executable}} -I{{path/to/library_directory}}` +`iverilog {{path/to/source.v}} -o {{path/to/executable}} -I{{path/to/library_directory}}` - Preprocess Verilog code without compiling: -`iverilog -E {{source.v}}` +`iverilog -E {{path/to/source.v}}` diff --git a/pages/common/ivpn.md b/pages/common/ivpn.md new file mode 100644 index 00000000000000..2e8a0fc184eb3b --- /dev/null +++ b/pages/common/ivpn.md @@ -0,0 +1,12 @@ +# ivpn + +> Command-line interface for the IVPN client. +> More information: . + +- Print the current state of IVPN, including the connection and firewall status: + +`ivpn status` + +- Print a list of available servers to connect to: + +`ivpn servers` diff --git a/pages/common/jadx.md b/pages/common/jadx.md new file mode 100644 index 00000000000000..19a92fe4651f13 --- /dev/null +++ b/pages/common/jadx.md @@ -0,0 +1,13 @@ +# jadx + +> Dex to Java decompiler. +> Produces Java source code from Android Dex and APK files. +> More information: . + +- Decompile a Dex file into a directory: + +`jadx {{path/to/file}}` + +- Decompile a Dex file into a specific directory: + +`jadx --output-dir {{path/to/directory}} {{path/to/file}}` diff --git a/pages/common/jar.md b/pages/common/jar.md index 55804756534cf5..36434c0c13210d 100644 --- a/pages/common/jar.md +++ b/pages/common/jar.md @@ -1,6 +1,6 @@ # jar -> Java Applications/Libraries Packager. +> Java applications/libraries packager. > More information: . - Recursively archive all files in the current directory into a .jar file: diff --git a/pages/common/jarsigner.md b/pages/common/jarsigner.md index ac9143ee260a87..c7903c0f66299d 100644 --- a/pages/common/jarsigner.md +++ b/pages/common/jarsigner.md @@ -1,6 +1,6 @@ # jarsigner -> Sign and verify Java Archive (JAR) files. +> Sign and verify Java archive (JAR) files. > More information: . - Sign a JAR file: diff --git a/pages/common/java.md b/pages/common/java.md index 293809ed389094..2575b1b9ca6eff 100644 --- a/pages/common/java.md +++ b/pages/common/java.md @@ -1,12 +1,16 @@ # java -> Java Application Launcher. -> More information: . +> Java application launcher. +> More information: . - Execute a java `.class` file that contains a main method by using just the class name: `java {{classname}}` +- Execute a java program and use additional third-party or user-defined classes: + +`java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}` + - Execute a `.jar` program: `java -jar {{filename.jar}}` diff --git a/pages/common/javac.md b/pages/common/javac.md index 6d874cb32337ca..c9e5793dd64b89 100644 --- a/pages/common/javac.md +++ b/pages/common/javac.md @@ -1,6 +1,7 @@ # javac -> Java Application Compiler. +> Java application compiler. +> More information: . - Compile a `.java` file: @@ -16,4 +17,4 @@ - Compile a `.java` file and place the resulting class file in a specific directory: -`javac -d {{path/to/some/directory}} {{file.java}}` +`javac -d {{path/to/directory}} {{file.java}}` diff --git a/pages/common/javadoc.md b/pages/common/javadoc.md index 7dff29c9fe4e1a..86516b0b684245 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 new file mode 100644 index 00000000000000..242e9a0422aa5b --- /dev/null +++ b/pages/common/javap.md @@ -0,0 +1,24 @@ +# javap + +> Disassemble one or more class files and list them. +> More information: . + +- Disassemble and list a `.class` file: + +`javap {{path/to/file.class}}` + +- Disassemble and list multiple `.class` files: + +`javap {{path/to/file1.class path/to/file2.class ...}}` + +- Disassemble and list a built-in class file: + +`javap java.{{package}}.{{class}}` + +- Display help: + +`javap -help` + +- Display version: + +`javap -version` diff --git a/pages/common/jdeps.md b/pages/common/jdeps.md new file mode 100644 index 00000000000000..77669ff62f4473 --- /dev/null +++ b/pages/common/jdeps.md @@ -0,0 +1,24 @@ +# jdeps + +> Java class dependency analyzer. +> More information: . + +- Analyze the dependencies of a `.jar` or `.class` file: + +`jdeps {{path/to/filename.class}}` + +- Print a summary of all dependencies of a specific `.jar` file: + +`jdeps {{path/to/filename.jar}} -summary` + +- Print all class-level dependencies of a `.jar` file: + +`jdeps {{path/to/filename.jar}} -verbose` + +- Output the results of the analysis in a DOT file into a specific directory: + +`jdeps {{path/to/filename.jar}} -dotoutput {{path/to/directory}}` + +- Display help: + +`jdeps --help` diff --git a/pages/common/jdupes.md b/pages/common/jdupes.md index d15fe5fc5cedac..8b724382b3225b 100644 --- a/pages/common/jdupes.md +++ b/pages/common/jdupes.md @@ -5,7 +5,7 @@ - Search a single directory: -`jdupes {{directory}}` +`jdupes {{path/to/directory}}` - Search multiple directories: @@ -13,11 +13,11 @@ - Search all directories recursively: -`jdupes --recurse {{directory}}` +`jdupes --recurse {{path/to/directory}}` - Search directory recursively and let user choose files to preserve: -`jdupes --delete --recurse {{directory}}` +`jdupes --delete --recurse {{path/to/directory}}` - Search multiple directories and follow subdirectores under directory2, not directory1: diff --git a/pages/common/jekyll.md b/pages/common/jekyll.md index 92b0908b6273ac..03aec0fc532254 100644 --- a/pages/common/jekyll.md +++ b/pages/common/jekyll.md @@ -1,7 +1,7 @@ # jekyll > A simple, blog-aware, static site generator. -> More information: . +> More information: . - Generate a development server that will run at http://localhost:4000/: diff --git a/pages/common/jello.md b/pages/common/jello.md new file mode 100644 index 00000000000000..fc88b351e9c8d9 --- /dev/null +++ b/pages/common/jello.md @@ -0,0 +1,32 @@ +# jello + +> A command-line JSON processor using Python syntax. +> More information: . + +- Pretty-print JSON or JSON-Lines data from `stdin` to `stdout`: + +`cat {{file.json}} | jello` + +- Output a schema of JSON or JSON Lines data from `stdin` to `stdout` (useful for grep): + +`cat {{file.json}} | jello -s` + +- Output all elements from arrays (or all the values from objects) in JSON or JSON-Lines data from `stdin` to `stdout`: + +`cat {{file.json}} | jello -l` + +- Output the first element in JSON or JSON-Lines data from `stdin` to `stdout`: + +`cat {{file.json}} | jello _[0]` + +- Output the value of a given key of each element in JSON or JSON-Lines data from `stdin` to `stdout`: + +`cat {{file.json}} | jello '[i.{{key_name}} for i in _]'` + +- Output the value of multiple keys as a new JSON object (assuming the input JSON has the keys `key_name` and `other_key_name`): + +`cat {{file.json}} | jello '{"{{my_new_key}}": _.{{key_name}}, "{{my_other_key}}": _.{{other_key_name}}}'` + +- Output the value of a given key to a string (and disable JSON output): + +`cat {{file.json}} | jello -r '"{{some text}}: " + _.{{key_name}}'` diff --git a/pages/common/jenv.md b/pages/common/jenv.md index 8b1db06490ffaf..506af26ccfb960 100644 --- a/pages/common/jenv.md +++ b/pages/common/jenv.md @@ -1,9 +1,9 @@ # jenv -> Command line tool to manage the "JAVA_HOME" environment variable. +> Command-line tool to manage the "JAVA_HOME" environment variable. > More information: . -- Add a java version to jEnv: +- Add a Java version to jEnv: `jenv add {{path/to/jdk_home}}` diff --git a/pages/common/jest.md b/pages/common/jest.md index 943f0f035db52a..4284e3e65a4c5a 100644 --- a/pages/common/jest.md +++ b/pages/common/jest.md @@ -7,13 +7,17 @@ `jest` -- Run the test suites from files whose paths match the given regex patterns: +- Run the test suites from the given files: -`jest {{test_file1}} {{path/to/test_file2.js}}` +`jest {{path/to/file1}} {{path/to/file2}}` -- Run the tests whose names match the given regex pattern: +- Run the test suites from files within the current and subdirectories, whose paths match the given regular expression: -`jest --testNamePattern {{spec_name}}` +`jest {{regular_expression1}} {{regular_expression2}}` + +- Run the tests whose names match the given regular expression: + +`jest --testNamePattern {{regular_expression}}` - Run test suites related to a given source file: diff --git a/pages/common/jhat.md b/pages/common/jhat.md index 4cc4c71960fa3b..7f4092bc6e0e43 100644 --- a/pages/common/jhat.md +++ b/pages/common/jhat.md @@ -1,8 +1,9 @@ # jhat -> Java Heap Analysis Tool. +> Java heap analysis tool. +> More information: . -- Analyze a heap dump (from jmap), view via http on port 7000: +- Analyze a heap dump (from `jmap`), view via HTTP on port 7000: `jhat {{dump_file.bin}}` @@ -10,6 +11,6 @@ `jhat -p {{port}} {{dump_file.bin}}` -- Analyze a dump letting jhat use up to 8GB RAM (2-4x dump size recommended): +- Analyze a dump letting `jhat` use up to 8 GB RAM (2-4x dump size recommended): `jhat -J-mx8G {{dump_file.bin}}` diff --git a/pages/common/jhsdb.md b/pages/common/jhsdb.md new file mode 100644 index 00000000000000..8f5f984f98953a --- /dev/null +++ b/pages/common/jhsdb.md @@ -0,0 +1,20 @@ +# jhsdb + +> Attach to a Java process or launch a postmortem debugger to analyze the core dump from a crashed Java Virtual Machine. +> More information: . + +- Print stack and locks information of a Java process: + +`jhsdb jstack --pid {{pid}}` + +- Open a core dump in interactive debug mode: + +`jhsdb clhsdb --core {{path/to/core_dump}} --exe {{path/to/jdk/bin/java}}` + +- Start a remote debug server: + +`jhsdb debugd --pid {{pid}} --serverid {{optional_unique_id}}` + +- Connect to a process in interactive debug mode: + +`jhsdb clhsdb --pid {{pid}}` diff --git a/pages/common/jigsaw.md b/pages/common/jigsaw.md index c98329e231078d..0c704f055852aa 100644 --- a/pages/common/jigsaw.md +++ b/pages/common/jigsaw.md @@ -3,11 +3,11 @@ > A Laravel-based static site builder for PHP. > More information: . -- Initialise a project: +- Initialize a project: `jigsaw init` -- Initialise a project using a starter template: +- Initialize a project using a starter template: `jigsaw init {{template_name}}` diff --git a/pages/common/jmap.md b/pages/common/jmap.md index b6d819cc0338fe..08b7fdaf97295c 100644 --- a/pages/common/jmap.md +++ b/pages/common/jmap.md @@ -1,8 +1,9 @@ # jmap -> Java Memory Map Tool. +> Java memory map tool. +> More information: . -- Print shared object mappings for a java process (output like pmap): +- Print shared object mappings for a Java process (output like pmap): `jmap {{java_pid}}` @@ -16,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/jmeter.md b/pages/common/jmeter.md new file mode 100644 index 00000000000000..353cf02a3f29f8 --- /dev/null +++ b/pages/common/jmeter.md @@ -0,0 +1,20 @@ +# jmeter + +> Open source java application designed for load testing functional behavior and measure performance. +> More information: . + +- Run a specific test plan in nongui mode: + +`jmeter --nongui --testfile {{path/to/file}}.jmx` + +- Run a test plan in nongui mode using a specific log file: + +`jmeter --nogui --testfile {{path/to/file}}.jmx --logfile {{path/to/logfile}}.jtl` + +- Run a test plan in nongui mode using a specific proxy: + +`jmeter --nongui --testfile {{path/to/file}}.jmx --proxyHost {{127.0.0.1}} --proxyPort {{8888}}` + +- Run a test plan in nongui mode using a specific JMeter property: + +`jmeter --jmeterproperty {{key}}='{{value}}' --nongui --testfile {{path/to/file}}.jmx` diff --git a/pages/common/jmtpfs.md b/pages/common/jmtpfs.md new file mode 100644 index 00000000000000..f76052e969a63a --- /dev/null +++ b/pages/common/jmtpfs.md @@ -0,0 +1,24 @@ +# jmtpfs + +> FUSE-based filesystem for accessing MTP devices. +> More information: . + +- Mount an MTP device to a directory: + +`jmtpfs {{path/to/directory}}` + +- Set mount options: + +`jmtpfs -o {{allow_other,auto_unmount}} {{path/to/directory}}` + +- List available MTP devices: + +`jmtpfs --listDevices` + +- If multiple devices are present, mount a specific device: + +`jmtpfs -device={{bus_id}},{{device_id}} {{path/to/directory}}` + +- Unmount MTP device: + +`fusermount -u {{path/to/directory}}` diff --git a/pages/common/jobs.md b/pages/common/jobs.md index d7a037558c0f12..ac41ee56e16c68 100644 --- a/pages/common/jobs.md +++ b/pages/common/jobs.md @@ -1,6 +1,7 @@ # jobs > Display status of jobs in the current session. +> More information: . - Show status of all jobs: diff --git a/pages/common/joe.md b/pages/common/joe.md new file mode 100644 index 00000000000000..dbe789b0b6b8d2 --- /dev/null +++ b/pages/common/joe.md @@ -0,0 +1,20 @@ +# joe + +> Joe's own text editor. +> More information: . + +- Open a new file in JOE: + +`joe` + +- Open a specific file: + +`joe {{path/to/file}}` + +- Open a specific file, positioning the cursor at the specified line: + +`joe +{{line}} {{path/to/file}}` + +- Open a specific file in read-only mode: + +`joe -rdonly {{path/to/file}}` diff --git a/pages/common/join.md b/pages/common/join.md index 7720ea33ef529d..5aff7703539c01 100644 --- a/pages/common/join.md +++ b/pages/common/join.md @@ -18,3 +18,7 @@ - Produce a line for each unpairable line for file1: `join -a {{1}} {{file1}} {{file2}}` + +- Join a file from `stdin`: + +`cat {{path/to/file1}} | join - {{path/to/file2}}` diff --git a/pages/common/josm.md b/pages/common/josm.md new file mode 100644 index 00000000000000..9879e485c9753e --- /dev/null +++ b/pages/common/josm.md @@ -0,0 +1,32 @@ +# josm + +> Extensible OpenStreetMap editor for Java 8+. +> More information: . + +- Launch JOSM: + +`josm` + +- Launch JOSM in maximized mode: + +`josm --maximize` + +- Launch JOSM and set a specific language: + +`josm --language {{de}}` + +- Launch JOSM and reset all preferences to their default values: + +`josm --reset-preferences` + +- Launch JOSM and download a specific bounding box: + +`josm --download {{minlat,minlon,maxlat,maxlon}}` + +- Launch JOSM and download a specific bounding box as raw GPS: + +`josm --downloadgps {{minlat,minlon,maxlat,maxlon}}` + +- Launch JOSM without plugins: + +`josm --skip-plugins` diff --git a/pages/common/jps.md b/pages/common/jps.md index 82a91c29c3fe27..fb2a7330af7471 100644 --- a/pages/common/jps.md +++ b/pages/common/jps.md @@ -1,6 +1,7 @@ # jps -> Show JVM Process Status of current user. +> Show JVM process status of current user. +> More information: . - List all JVM processes: diff --git a/pages/common/jq.md b/pages/common/jq.md index 6aa86dc01a55ca..dbd6e6955f6569 100644 --- a/pages/common/jq.md +++ b/pages/common/jq.md @@ -1,36 +1,32 @@ # jq > A command-line JSON processor that uses a domain-specific language. -> More information: . +> More information: . -- Output a JSON file, in pretty-print format: +- Execute a specific expression (print a colored and formatted json): -`jq . {{file.json}}` +`{{cat path/to/file.json}} | jq '.'` -- Output all elements from arrays (or all the values from objects) in a JSON file: +- Execute a specific script: -`jq '.[]' {{file.json}}` +`{{cat path/to/file.json}} | jq --from-file {{path/to/script.jq}}` -- Read JSON objects from a file into an array, and output it (inverse of `jq .[]`): +- Pass specific arguments: -`jq --slurp . {{file.json}}` +`{{cat path/to/file.json}} | jq {{--arg "name1" "value1" --arg "name2" "value2" ...}} '{{. + $ARGS.named}}'` -- Output the first element in a JSON file: +- Print specific keys: -`jq '.[0]' {{file.json}}` +`{{cat path/to/file.json}} | jq '{{.key1, .key2, ...}}'` -- Output the value of a given key of each element in a JSON text from stdin: +- Print specific array items: -`cat {{file.json}} | jq 'map(.{{key_name}})'` +`{{cat path/to/file.json}} | jq '{{.[index1], .[index2], ...}}'` -- Output the value of multiple keys as a new JSON object (assuming the input JSON has the keys `key_name` and `other_key_name`): +- Print all array items/object keys: -`cat {{file.json}} | jq '{{{my_new_key}}: .{{key_name}}, {{my_other_key}}: .{{other_key_name}}}'` +`{{cat path/to/file.json}} | jq '.[]'` -- Combine multiple filters: +- Add/remove specific keys: -`cat {{file.json}} | jq 'unique | sort | reverse'` - -- Output the value of a given key to a string (and disable JSON output): - -`cat {{file.json}} | jq --raw-output '"some text: \(.{{key_name}})"'` +`{{cat path/to/file.json}} | jq '. {{+|-}} {{{"key1": "value1", "key2": "value2", ...}}}'` diff --git a/pages/common/jrnl.md b/pages/common/jrnl.md index 07bb4d5c008d6c..889b822ef94c20 100644 --- a/pages/common/jrnl.md +++ b/pages/common/jrnl.md @@ -1,6 +1,6 @@ # jrnl -> A simple journal application for your command line. +> A simple journal application for your command-line. > More information: . - Insert a new entry with your editor: diff --git a/pages/common/json5.md b/pages/common/json5.md index 57818820471b0a..77aa00f2a95459 100644 --- a/pages/common/json5.md +++ b/pages/common/json5.md @@ -3,11 +3,11 @@ > A command-line tool for converting JSON5 files to JSON. > More information: . -- Convert JSON5 stdin to JSON stdout: +- Convert JSON5 `stdin` to JSON `stdout`: `echo {{input}} | json5` -- Convert a JSON5 file to JSON and output to stdout: +- Convert a JSON5 file to JSON and output to `stdout`: `json5 {{path/to/input_file.json5}}` diff --git a/pages/common/jstack.md b/pages/common/jstack.md index 93687df2ff4ff0..44b4ea3a8453e5 100644 --- a/pages/common/jstack.md +++ b/pages/common/jstack.md @@ -1,15 +1,16 @@ # jstack -> Java Stack Trace Tool. +> Java stack trace tool. +> More information: . -- Print java stack traces for all threads in a java process: +- Print Java stack traces for all threads in a Java process: `jstack {{java_pid}}` -- Print mixed mode (java/c++) stack traces for all threads in a java process: +- Print mixed mode (Java/C++) stack traces for all threads in a Java process: `jstack -m {{java_pid}}` -- Print stack traces from java core dump: +- Print stack traces from Java core dump: `jstack {{/usr/bin/java}} {{file.core}}` diff --git a/pages/common/jtbl.md b/pages/common/jtbl.md new file mode 100644 index 00000000000000..ea6b29e6f2f935 --- /dev/null +++ b/pages/common/jtbl.md @@ -0,0 +1,20 @@ +# jtbl + +> Utility to print JSON and JSON Lines data as a table in the terminal. +> More information: . + +- Print a table from JSON or JSON Lines input: + +`cat {{file.json}} | jtbl` + +- Print a table and specify the column width for wrapping: + +`cat {{file.json}} | jtbl --cols={{width}}` + +- Print a table and truncate rows instead of wrapping: + +`cat {{file.json}} | jtbl -t` + +- Print a table and don't wrap or truncate rows: + +`cat {{file.json}} | jtbl -n` diff --git a/pages/common/julia.md b/pages/common/julia.md index 0f8311a6fc37ad..8113c71c62b79c 100644 --- a/pages/common/julia.md +++ b/pages/common/julia.md @@ -3,7 +3,7 @@ > A high-level, high-performance dynamic programming language for technical computing. > More information: . -- Start a Julia REPL session: +- Start a REPL (interactive shell): `julia` diff --git a/pages/common/jupytext.md b/pages/common/jupytext.md index c7fb2cb8aec2ef..6c9419249ed0a1 100644 --- a/pages/common/jupytext.md +++ b/pages/common/jupytext.md @@ -1,7 +1,7 @@ # jupytext > Tool to convert Jupyter notebooks to plain text documents, and back again. -> More information: . +> More information: . - Turn a notebook into a paired `.ipynb`/`.py` notebook: diff --git a/pages/common/just.md b/pages/common/just.md new file mode 100644 index 00000000000000..1a776107ccdefa --- /dev/null +++ b/pages/common/just.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/jwt.md b/pages/common/jwt.md index ac5cbc9002c801..bb4b03906f9b62 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). +> A command-line tool to 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 new file mode 100644 index 00000000000000..4ef8d2da1fd2ff --- /dev/null +++ b/pages/common/k3d.md @@ -0,0 +1,24 @@ +# k3d + +> Wrapper CLI to easily create k3s clusters inside Docker. +> More information: . + +- Create a cluster: + +`k3d cluster create {{cluster_name}}` + +- Delete a cluster: + +`k3d cluster delete {{cluster_name}}` + +- Create a new containerized k3s node: + +`k3d node create {{node_name}}` + +- Import an image from Docker into a k3d cluster: + +`k3d image import {{image_name}} --cluster {{cluster_name}}` + +- Create a new registry: + +`k3d registry create {{registry_name}}` diff --git a/pages/common/k6.md b/pages/common/k6.md index f89959555fa3d0..62208e63c32b99 100644 --- a/pages/common/k6.md +++ b/pages/common/k6.md @@ -23,11 +23,11 @@ `k6 run --discard-response-bodies {{script.js}}` -- Run load test locally using the base javascript compatibility mode (significantly faster): +- Run load test locally using the base JavaScript compatibility mode (significantly faster): `k6 run --compatibility-mode=base {{script.js}}` -- Login to cloud service using secret token: +- Log in to cloud service using secret token: `k6 login cloud --token {{secret}}` diff --git a/pages/common/k8s-unused-secret-detector.md b/pages/common/k8s-unused-secret-detector.md index b0cb7e35327b07..cc2658dae10943 100644 --- a/pages/common/k8s-unused-secret-detector.md +++ b/pages/common/k8s-unused-secret-detector.md @@ -1,6 +1,6 @@ # k8s-unused-secret-detector -> Command line interface tool for detecting unused Kubernetes secrets. +> Command-line interface tool for detecting unused Kubernetes secrets. > More information: . - Detect unused secrets: diff --git a/pages/common/k8sec.md b/pages/common/k8sec.md index f991757058ef3f..7e56edadaa4a18 100644 --- a/pages/common/k8sec.md +++ b/pages/common/k8sec.md @@ -1,6 +1,6 @@ # k8sec -> Command line interface tool to manage Kubernetes secrets. +> Command-line interface tool to manage Kubernetes secrets. > More information: . - List all secrets: diff --git a/pages/common/kafkacat.md b/pages/common/kafkacat.md index 1520bbf1e0f9c8..45907bcf1f09cd 100644 --- a/pages/common/kafkacat.md +++ b/pages/common/kafkacat.md @@ -1,36 +1,7 @@ # kafkacat -> Apache Kafka producer and consumer tool. -> More information: . +> This command is an alias of `kcat`. -- Consume messages starting with the newest offset: +- View documentation for the original command: -`kafkacat -C -t {{topic}} -b {{brokers}}` - -- Consume messages starting with the oldest offset and exit after the last message is received: - -`kafkacat -C -t {{topic}} -b {{brokers}} -o beginning -e` - -- Consume messages as a Kafka consumer group: - -`kafkacat -G {{group_id}} {{topic}} -b {{brokers}}` - -- Publish message by reading from stdin: - -` echo {{message}} | kafkacat -P -t {{topic}} -b {{brokers}}` - -- Publish messages by reading from a file: - -`kafkacat -P -t {{topic}} -b {{brokers}} {{path/to/file}}` - -- List metadata for all topics and brokers: - -`kafkacat -L -b {{brokers}}` - -- List metadata for a specific topic: - -`kafkacat -L -t {{topic}} -b {{brokers}}` - -- Get offset for a topic/partition for a specific point in time: - -`kafkacat -Q -t {{topic}}:{{partition}}:{{unix_timestamp}} -b {{brokers}}` +`tldr kcat` diff --git a/pages/common/kak.md b/pages/common/kak.md index 70f3b7d0693152..265de984d83f73 100644 --- a/pages/common/kak.md +++ b/pages/common/kak.md @@ -20,7 +20,7 @@ `%s{{foo}}c{{bar}}` -- Un-select all secondary selections, and keep only the main one: +- Unselect all secondary selections, and keep only the main one: `` diff --git a/pages/common/kate.md b/pages/common/kate.md new file mode 100644 index 00000000000000..c8a844439258f5 --- /dev/null +++ b/pages/common/kate.md @@ -0,0 +1,32 @@ +# kate + +> KDE's advanced text editor. +> More information: . + +- Open specific files: + +`kate {{path/to/file1 path/to/file2 ...}}` + +- Open specific remote files: + +`kate {{https://example.com/path/to/file1 https://example.com/path/to/file2 ...}}` + +- Create a new editor instance even if one is already open: + +`kate --new` + +- Open a file with the cursor at the specific line: + +`kate --line {{line_number}} {{path/to/file}}` + +- Open a file with the cursor at the specific line and column: + +`kate --line {{line_number}} --column {{column_number}} {{path/to/file}}` + +- Create a file from `stdin`: + +`cat {{path/to/file}} | kate --stdin` + +- Display help: + +`kate --help` diff --git a/pages/common/kcadm.sh.md b/pages/common/kcadm.sh.md new file mode 100644 index 00000000000000..4ac25e23383a04 --- /dev/null +++ b/pages/common/kcadm.sh.md @@ -0,0 +1,20 @@ +# kcadm.sh + +> Perform administration tasks from the command-line interface (CLI). +> More information: . + +- Start an authenticated session: + +`kcadm.sh config credentials --server {{host}} --realm {{realm_name}} --user {{username}} --password {{password}}` + +- Create a user: + +`kcadm.sh create users -s username={{username}} -r {{realm_name}}` + +- List all realms: + +`kcadm.sh get realms` + +- Update a realm with JSON config: + +`kcadm.sh update realms/{{realm_name}} -f {{path/to/file.json}}` diff --git a/pages/common/kcat.md b/pages/common/kcat.md new file mode 100644 index 00000000000000..4687435c34794d --- /dev/null +++ b/pages/common/kcat.md @@ -0,0 +1,36 @@ +# kcat + +> Apache Kafka producer and consumer tool. +> More information: . + +- Consume messages starting with the newest offset: + +`kcat -C -t {{topic}} -b {{brokers}}` + +- Consume messages starting with the oldest offset and exit after the last message is received: + +`kcat -C -t {{topic}} -b {{brokers}} -o beginning -e` + +- Consume messages as a Kafka consumer group: + +`kcat -G {{group_id}} {{topic}} -b {{brokers}}` + +- Publish message by reading from `stdin`: + +` echo {{message}} | kcat -P -t {{topic}} -b {{brokers}}` + +- Publish messages by reading from a file: + +`kcat -P -t {{topic}} -b {{brokers}} {{path/to/file}}` + +- List metadata for all topics and brokers: + +`kcat -L -b {{brokers}}` + +- List metadata for a specific topic: + +`kcat -L -t {{topic}} -b {{brokers}}` + +- Get offset for a topic/partition for a specific point in time: + +`kcat -Q -t {{topic}}:{{partition}}:{{unix_timestamp}} -b {{brokers}}` diff --git a/pages/common/kdeconnect-cli.md b/pages/common/kdeconnect-cli.md new file mode 100644 index 00000000000000..60dcf8e32ccb6e --- /dev/null +++ b/pages/common/kdeconnect-cli.md @@ -0,0 +1,36 @@ +# kdeconnect-cli + +> KDE's Connect CLI. +> More information: . + +- List all devices: + +`kdeconnect-cli --list-devices` + +- List available (paired and reachable) devices: + +`kdeconnect-cli --list-available` + +- Request pairing with a specific device, specifying its ID: + +`kdeconnect-cli --pair --device {{device_id}}` + +- Ring a device, specifying its name: + +`kdeconnect-cli --ring --name "{{device_name}}"` + +- Share an URL or file with a paired device, specifying its ID: + +`kdeconnect-cli --share {{url|path/to/file}} --device {{device_id}}` + +- Send an SMS with an optional attachment to a specific number: + +`kdeconnect-cli --name "{{device_name}}" --send-sms "{{message}}" --destination {{phone_number}} --attachment {{path/to/file}}` + +- Unlock a specific device: + +`kdeconnect-cli --name "{{device_name}}" --unlock` + +- Simulate a key press on a specific device: + +`kdeconnect-cli --name "{{device_name}}" --send-keys {{key}}` diff --git a/pages/common/kdenlive.md b/pages/common/kdenlive.md new file mode 100644 index 00000000000000..3c7cd6cef379dc --- /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/kdig.md b/pages/common/kdig.md new file mode 100644 index 00000000000000..ce611b23d83461 --- /dev/null +++ b/pages/common/kdig.md @@ -0,0 +1,24 @@ +# kdig + +> Advanced DNS lookup utility. +> More information: . + +- Lookup the IP(s) associated with a hostname (A records): + +`kdig {{example.com}}` + +- Specify a specific DNS server to query (e.g. Google DNS): + +`kdig {{example.com}} @{{8.8.8.8}}` + +- Query a specific DNS record type associated with a given domain name: + +`kdig {{example.com}} {{A|AAAA|NS|SOA|DNSKEY|ANY}}` + +- Lookup the IP(s) associated with a hostname (A records) using DNS over TLS (DoT): + +`kdig -d @{{8.8.8.8}} +tls-ca +tls-host={{dns.google}} {{example.com}}` + +- Lookup the IP(s) associated with a hostname (A records) using DNS over HTTPS (DoH): + +`kdig -d @{{1.1.1.1}} +https +tls-hostname={{1dot1dot1dot1.cloudflare-dns.com}} {{example.com}}` diff --git a/pages/common/keep-header.md b/pages/common/keep-header.md new file mode 100644 index 00000000000000..cc5076919a60df --- /dev/null +++ b/pages/common/keep-header.md @@ -0,0 +1,20 @@ +# keep-header + +> Keep first line untouched by a command, passing it directly to `stdout`. +> More information: . + +- Sort a file and keep the first line at the top: + +`keep-header {{path/to/file}} -- sort` + +- Output first line directly to `stdout`, passing the remainder of the file through the specified command: + +`keep-header {{path/to/file}} -- {{command}}` + +- Read from `stdin`, sorting all except the first line: + +`cat {{path/to/file}} | keep-header -- {{command}}` + +- Grep a file, keeping the first line regardless of the search pattern: + +`keep-header {{path/to/file}} -- grep {{pattern}}` diff --git a/pages/common/keepass2.md b/pages/common/keepass2.md index 82f64dddacb4c1..99c8b54053670d 100644 --- a/pages/common/keepass2.md +++ b/pages/common/keepass2.md @@ -3,7 +3,7 @@ > A light-weight password manager. > More information: . -- Start KeePass 2, opening the most recently-opened password database: +- Start KeePass 2, opening the most recently opened password database: `keepass2` diff --git a/pages/common/keepassxc-cli.md b/pages/common/keepassxc-cli.md new file mode 100644 index 00000000000000..fe8b2247a98996 --- /dev/null +++ b/pages/common/keepassxc-cli.md @@ -0,0 +1,36 @@ +# keepassxc-cli + +> Command-line interface for KeepassXC. +> More information: . + +- Search entries: + +`keepassxc-cli lookup {{path/to/database_file}} {{name}}` + +- List the contents of a folder: + +`keepassxc-cli ls {{path/to/database_file}} {{/path/to/directory}}` + +- Add an entry with an auto-generated password: + +`keepassxc-cli add --generate {{path/to/database_file}} {{entry_name}}` + +- Delete an entry: + +`keepassxc-cli rm {{path/to/database_file}} {{entry_name}}` + +- Copy an entry's password to the clipboard: + +`keepassxc-cli clip {{path/to/database_file}} {{entry_name}}` + +- Copy a TOTP code to the clipboard: + +`keepassxc-cli clip --totp {{path/to/database_file}} {{entry_name}}` + +- Generate a passphrase with 7 words: + +`keepassxc-cli diceware --words {{7}}` + +- Generate a password with 16 printable ASCII characters: + +`keepassxc-cli generate --lower --upper --numeric --special --length {{16}}` diff --git a/pages/common/keychain.md b/pages/common/keychain.md new file mode 100644 index 00000000000000..2059ef44038e31 --- /dev/null +++ b/pages/common/keychain.md @@ -0,0 +1,24 @@ +# keychain + +> Re-use ssh-agent and/or gpg-agent between logins. +> More information: . + +- Check for a running ssh-agent, and start one if needed: + +`keychain` + +- Also check for gpg-agent: + +`keychain --agents "{{gpg,ssh}}"` + +- List signatures of all active keys: + +`keychain --list` + +- List fingerprints of all active keys: + +`keychain --list-fp` + +- Add a timeout for identities added to the agent, in minutes: + +`keychain --timeout {{minutes}}` diff --git a/pages/common/keytool.md b/pages/common/keytool.md new file mode 100644 index 00000000000000..7bf9ee1738788c --- /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 050b5adcb92857..74074aeaf66cfb 100644 --- a/pages/common/khal.md +++ b/pages/common/khal.md @@ -1,6 +1,6 @@ # khal -> A text-based calendar and scheduling application for the command line. +> A text-based calendar and scheduling application for the command-line. > More information: . - Start khal on interactive mode: diff --git a/pages/common/kill.md b/pages/common/kill.md index 8a8fcb39ef55b9..75ae8de28f50a0 100644 --- a/pages/common/kill.md +++ b/pages/common/kill.md @@ -2,6 +2,7 @@ > Sends a signal to a process, usually related to stopping the process. > All signals except for SIGKILL and SIGSTOP can be intercepted by the process to perform a clean exit. +> More information: . - Terminate a program using the default SIGTERM (terminate) signal: diff --git a/pages/common/killall.md b/pages/common/killall.md index 359efab900258c..25882754446be9 100644 --- a/pages/common/killall.md +++ b/pages/common/killall.md @@ -2,14 +2,15 @@ > Send kill signal to all instances of a process by name (must be exact name). > All signals except SIGKILL and SIGSTOP can be intercepted by the process, allowing a clean exit. +> More information: . - Terminate a process using the default SIGTERM (terminate) signal: `killall {{process_name}}` -- List available signal names (to be used without the 'SIG' prefix): +- [l]ist available signal names (to be used without the 'SIG' prefix): -`killall --list` +`killall -l` - Interactively ask for confirmation before termination: diff --git a/pages/common/kitex.md b/pages/common/kitex.md new file mode 100644 index 00000000000000..f74d05f383c016 --- /dev/null +++ b/pages/common/kitex.md @@ -0,0 +1,21 @@ +# kitex + +> Code generation tool provided by the Go RPC framework Kitex. +> Kitex accepts both thrift and protobuf IDLs, and supports generating a skeleton of a server side project. +> More information: . + +- Generate client codes when a project is in `$GOPATH`: + +`kitex {{path/to/IDL_file.thrift}}` + +- Generate client codes when a project is not in `$GOPATH`: + +` kitex -module {{github.com/xx-org/xx-name}} {{path/to/IDL_file.thrift}}` + +- Generate client codes with protobuf IDL: + +`kitex -type protobuf {{path/to/IDL_file.proto}}` + +- Generate server codes: + +`kitex -service {{svc_name}} {{path/to/IDL_file.thrift}}` diff --git a/pages/common/kitty.md b/pages/common/kitty.md new file mode 100644 index 00000000000000..fac95e2537511b --- /dev/null +++ b/pages/common/kitty.md @@ -0,0 +1,24 @@ +# kitty + +> A fast, feature-rich, GPU based terminal emulator. +> More information: . + +- Open a new terminal: + +`kitty` + +- Open a terminal with the specified title for the window: + +`kitty --title "{{title}}"` + +- Start the theme-chooser builtin: + +`kitty +kitten themes` + +- Display an image in the terminal: + +`kitty +kitten icat {{path/to/image}}` + +- Copy the contents of `stdin` to the clipboard: + +`echo {{example}} | kitty +kitten clipboard` diff --git a/pages/common/kiwi-ng.md b/pages/common/kiwi-ng.md new file mode 100644 index 00000000000000..5d3c493a1f081e --- /dev/null +++ b/pages/common/kiwi-ng.md @@ -0,0 +1,20 @@ +# kiwi-ng + +> KIWI NG is an OS image and appliance builder. +> More information: . + +- Build an appliance: + +`kiwi-ng system build --description={{path/to/directory}} --target-dir={{path/to/directory}}` + +- Show build result of built appliance: + +`kiwi-ng result list --target-dir={{path/to/directory}}` + +- Display help: + +`kiwi-ng help` + +- Display version: + +`kiwi-ng -v` diff --git a/pages/common/kool.md b/pages/common/kool.md new file mode 100644 index 00000000000000..eaa30d55624e02 --- /dev/null +++ b/pages/common/kool.md @@ -0,0 +1,28 @@ +# kool + +> Build software development environments from the command-line. +> More information: . + +- Create a project using a specific preset: + +`kool create {{preset}} {{project_name}}` + +- Run a specific script defined in the `kool.yml` file in the current directory: + +`kool run {{script}}` + +- Start/stop services in the current directory: + +`kool {{start|stop}}` + +- Display status of the services in the current directory: + +`kool status` + +- Update to the latest version: + +`kool self-update` + +- Print the completion script for the specified shell: + +`kool completion {{bash|fish|powershell|zsh}}` diff --git a/pages/common/kops.md b/pages/common/kops.md index ca766fbf6f67a1..23c0fd78db770b 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 from the command-line. > More information: . - Create a cluster from the configuration specification: @@ -15,7 +15,7 @@ `kops export kubecfg {{cluster_name}}` -- Get the cluster configuration as yaml: +- Get the cluster configuration as YAML: `kops get cluster {{cluster_name}} -o yaml` diff --git a/pages/common/kotlin.md b/pages/common/kotlin.md index 1ba92b357bce0e..a1160eba07236e 100644 --- a/pages/common/kotlin.md +++ b/pages/common/kotlin.md @@ -1,6 +1,6 @@ # kotlin -> Kotlin Application Launcher. +> Kotlin application launcher. > More information: . - Run a jar file: diff --git a/pages/common/kotlinc.md b/pages/common/kotlinc.md new file mode 100644 index 00000000000000..96f705bd58e491 --- /dev/null +++ b/pages/common/kotlinc.md @@ -0,0 +1,24 @@ +# kotlinc + +> Kotlin compiler. +> More information: . + +- Start a REPL (interactive shell): + +`kotlinc` + +- Compile a Kotlin file: + +`kotlinc {{path/to/file.kt}}` + +- Compile several Kotlin files: + +`kotlinc {{path/to/file1.kt path/to/file2.kt ...}}` + +- Execute a specific Kotlin Script file: + +`kotlinc -script {{path/to/file.kts}}` + +- Compile a Kotlin file into a self contained jar file with the Kotlin runtime library included: + +`kotlinc {{path/to/file.kt}} -include-runtime -d {{path/to/file.jar}}` diff --git a/pages/common/krunvm.md b/pages/common/krunvm.md new file mode 100644 index 00000000000000..a87341c03ae4b5 --- /dev/null +++ b/pages/common/krunvm.md @@ -0,0 +1,24 @@ +# krunvm + +> CLI-based utility for creating 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 6b28d4a70e5191..e0808532d74dba 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. +> Korn Shell, a Bash-compatible command-line interpreter. +> 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-fzf.md b/pages/common/kube-fzf.md index d18346636c91b1..97f7c46010d787 100644 --- a/pages/common/kube-fzf.md +++ b/pages/common/kube-fzf.md @@ -1,6 +1,6 @@ # kube-fzf -> Shell commands for command line fuzzy searching of Kubernetes Pods. +> Shell commands for command-line fuzzy searching of Kubernetes Pods. > See also `kubectl` for related commands. > More information: . diff --git a/pages/common/kubeadm.md b/pages/common/kubeadm.md index a8daa00db5fdda..5020a24c4e2fdb 100644 --- a/pages/common/kubeadm.md +++ b/pages/common/kubeadm.md @@ -1,6 +1,6 @@ # kubeadm -> Command line interface for creating and managing Kubernetes clusters. +> Command-line interface for creating and managing Kubernetes clusters. > More information: . - Create a Kubernetes master node: diff --git a/pages/common/kubectl-delete.md b/pages/common/kubectl-delete.md new file mode 100644 index 00000000000000..33bdb963e9e0b0 --- /dev/null +++ b/pages/common/kubectl-delete.md @@ -0,0 +1,32 @@ +# kubectl delete + +> Delete Kubernetes resources. +> More information: . + +- Delete a specific pod: + +`kubectl delete pod {{pod_name}}` + +- Delete a specific deployment: + +`kubectl delete deployment {{deployment_name}}` + +- Delete a specific node: + +`kubectl delete node {{node_name}}` + +- Delete all pods in a specified namespace: + +`kubectl delete pods --all --namespace {{namespace}}` + +- Delete all deployments and services in a specified namespace: + +`kubectl delete deployments,services --all --namespace {{namespace}}` + +- Delete all nodes: + +`kubectl delete nodes --all` + +- Delete resources defined in a YAML manifest: + +`kubectl delete --filename {{path/to/manifest.yaml}}` diff --git a/pages/common/kubectl-describe.md b/pages/common/kubectl-describe.md index cf344fd912dcac..2358e75fc7eed6 100644 --- a/pages/common/kubectl-describe.md +++ b/pages/common/kubectl-describe.md @@ -21,4 +21,4 @@ - Show details of Kubernetes objects defined in a YAML manifest: -`kubectl describe -f {{path/to/manifest}}.yaml` +`kubectl describe -f {{path/to/manifest.yaml}}` diff --git a/pages/common/kubectl-get.md b/pages/common/kubectl-get.md index 60308e933d1b77..2122f4a60bcd28 100644 --- a/pages/common/kubectl-get.md +++ b/pages/common/kubectl-get.md @@ -23,6 +23,10 @@ `kubectl get services -n {{namespace}}` +- Get all resources in a specified namespace: + +`kubectl get all -n {{namespace}}` + - Get Kubernetes objects defined in a YAML manifest: -`kubectl get -f {{path/to/manifest}}.yaml` +`kubectl get -f {{path/to/manifest.yaml}}` diff --git a/pages/common/kubectl-logs.md b/pages/common/kubectl-logs.md new file mode 100644 index 00000000000000..035b629f5da549 --- /dev/null +++ b/pages/common/kubectl-logs.md @@ -0,0 +1,32 @@ +# kubectl logs + +> Show logs for containers in a pod. +> More information: . + +- Show logs for a single-container pod: + +`kubectl logs {{pod_name}}` + +- Show logs for a specified container in a pod: + +`kubectl logs --container {{container_name}} {{pod_name}}` + +- Show logs for all containers in a pod: + +`kubectl logs --all-containers={{true}} {{pod_name}}` + +- Stream pod logs: + +`kubectl logs --follow {{pod_name}}` + +- Stream logs for a specified container in a pod: + +`kubectl logs --follow --container {{container_name}} {{pod_name}}` + +- Show pod logs newer than a relative time like `10s`, `5m`, or `1h`: + +`kubectl logs --since={{relative_time}} {{pod_name}}` + +- Show the 10 most recent logs in a pod: + +`kubectl logs --tail={{10}} {{pod_name}}` diff --git a/pages/common/kubectl-rollout.md b/pages/common/kubectl-rollout.md new file mode 100644 index 00000000000000..f532d3484cc478 --- /dev/null +++ b/pages/common/kubectl-rollout.md @@ -0,0 +1,20 @@ +# kubectl rollout + +> Manage the rollout of a Kubernetes resource (deployments, daemonsets, and statefulsets). +> More information: . + +- Start a rolling restart of a resource: + +`kubectl rollout restart {{resource_type}}/{{resource_name}}` + +- Watch the rolling update status of a resource: + +`kubectl rollout status {{resource_type}}/{{resource_name}}` + +- Roll back a resource to the previous revision: + +`kubectl rollout undo {{resource_type}}/{{resource_name}}` + +- View the rollout history of a resource: + +`kubectl rollout history {{resource_type}}/{{resource_name}}` diff --git a/pages/common/kubectl-run.md b/pages/common/kubectl-run.md new file mode 100644 index 00000000000000..ddf6421152a290 --- /dev/null +++ b/pages/common/kubectl-run.md @@ -0,0 +1,24 @@ +# kubectl run + +> Run pods in Kubernetes. Specifies pod generator to avoid deprecation error in some K8S versions. +> More information: . + +- Run an nginx pod and expose port 80: + +`kubectl run --generator=run-pod/v1 nginx --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"` + +- Show API calls that would be made to create an nginx container: + +`kubectl run --generator=run-pod/v1 nginx --image=nginx --dry-run` + +- 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` + +- 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` diff --git a/pages/common/kubectl.md b/pages/common/kubectl.md index 2f5aa6846203e4..9b9511b5fbe79f 100644 --- a/pages/common/kubectl.md +++ b/pages/common/kubectl.md @@ -1,7 +1,7 @@ # kubectl -> Command line interface for running commands against Kubernetes clusters. -> See also `kubectl describe` and other pages for additional information. +> Command-line interface for running commands against Kubernetes clusters. +> Some subcommands such as `kubectl run` have their own usage documentation. > More information: . - List information about a resource with more details: diff --git a/pages/common/kustomize.md b/pages/common/kustomize.md index 2818f490303d6a..be2444379181e7 100644 --- a/pages/common/kustomize.md +++ b/pages/common/kustomize.md @@ -15,6 +15,6 @@ `kustomize edit set image {{busybox=alpine:3.6}}` -- Search for kubernetes resources in the current directory to be added to the kustomization file: +- Search for Kubernetes resources in the current directory to be added to the kustomization file: `kustomize create --autodetect` diff --git a/pages/common/laravel-zero.md b/pages/common/laravel-zero.md index 38da76dd09f963..969948722b3de1 100644 --- a/pages/common/laravel-zero.md +++ b/pages/common/laravel-zero.md @@ -1,6 +1,6 @@ # laravel-zero -> A command line installer for the Laravel Zero framework. +> A command-line installer for the Laravel Zero framework. > More information: . - Create a new Laravel Zero application: diff --git a/pages/common/laravel.md b/pages/common/laravel.md index 6629c26c91d993..4701be09bb5a20 100644 --- a/pages/common/laravel.md +++ b/pages/common/laravel.md @@ -1,6 +1,6 @@ # laravel -> A command line installer for the Laravel framework. +> A command-line installer for the Laravel framework. > More information: . - Create a new Laravel application: diff --git a/pages/common/last.md b/pages/common/last.md index 6e5db7bf22f22a..b421ec5a1e9216 100644 --- a/pages/common/last.md +++ b/pages/common/last.md @@ -1,6 +1,7 @@ # last > View the last logged in users. +> More information: . - View last logins, their duration and other information as read from `/var/log/wtmp`: @@ -14,7 +15,7 @@ `last -F -a` -- View all logins by a specific user and show the ip address instead of the hostname: +- View all logins by a specific user and show the IP address instead of the hostname: `last {{username}} -i` diff --git a/pages/common/latex.md b/pages/common/latex.md index b79cffa3f36eb4..2dd256f4915e51 100644 --- a/pages/common/latex.md +++ b/pages/common/latex.md @@ -11,6 +11,6 @@ `latex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a DVI document, halting on each error: +- Compile a DVI document, exiting on each error: `latex -halt-on-error {{source.tex}}` diff --git a/pages/common/latexdiff.md b/pages/common/latexdiff.md new file mode 100644 index 00000000000000..5068722aacc276 --- /dev/null +++ b/pages/common/latexdiff.md @@ -0,0 +1,16 @@ +# latexdiff + +> Determine differences between two LaTeX files. +> More information: . + +- Determine changes between different versions of a LaTeX file (the resulting LaTeX file can be compiled to show differences underlined): + +`latexdiff {{old.tex}} {{new.tex}} > {{diff.tex}}` + +- Determine changes between different versions of a LaTeX file by highlighting differences in boldface: + +`latexdiff --type=BOLD {{old.tex}} {{new.tex}} > {{diff.tex}}` + +- Determine changes between different versions of a LaTeX file, and display minor changes in equations with both added and deleted graphics: + +`latexdiff --math-markup=fine --graphics-markup=both {{old.tex}} {{new.tex}} > {{diff.tex}}` diff --git a/pages/common/latexmk.md b/pages/common/latexmk.md index c99e00b02effa4..573ca4106dc34e 100644 --- a/pages/common/latexmk.md +++ b/pages/common/latexmk.md @@ -4,15 +4,15 @@ > Automatically does multiple runs when needed. > More information: . -- Compile a dvi (DeVice Independent file) document from every source: +- Compile a DVI (Device Independent file) document from every source: `latexmk` -- Compile a dvi document from a specific source file: +- Compile a DVI document from a specific source file: `latexmk {{source.tex}}` -- Compile a pdf document: +- Compile a PDF document: `latexmk -pdf {{source.tex}}` @@ -20,10 +20,10 @@ `latexmk -f {{source.tex}}` -- Clean up temporary tex files created for a specific tex file: +- Clean up temporary TEX files created for a specific TEX file: `latexmk -c {{source.tex}}` -- Clean up all temporary tex files in the current directory: +- Clean up all temporary TEX files in the current directory: `latexmk -c` diff --git a/pages/common/laydown.md b/pages/common/laydown.md new file mode 100644 index 00000000000000..08b938300a3bb5 --- /dev/null +++ b/pages/common/laydown.md @@ -0,0 +1,24 @@ +# laydown + +> Command line application to prepare for Daily Standup. +> More information: . + +- Add an item to DID section: + +`laydown did {{item}}` + +- Add an item to DOING section: + +`laydown doing {{item}}` + +- Clear all items: + +`laydown clear` + +- Use an editor to edit current data: + +`laydown edit` + +- Archive and clear current data: + +`laydown archive` diff --git a/pages/common/lb.md b/pages/common/lb.md new file mode 100644 index 00000000000000..5ea58f43ad75b3 --- /dev/null +++ b/pages/common/lb.md @@ -0,0 +1,29 @@ +# lb + +> A tool for managing a blog contained in the current directory. +> Drafts and posts to operate on are selected interactively when running the commands. +> More information: . + +- Make a new draft: + +`lb new` + +- Edit a draft: + +`lb edit` + +- Delete a draft: + +`lb trash` + +- Publish a draft: + +`lb publish` + +- Delete a published post: + +`lb delete` + +- Unpublish a published post to edit it as a draft again: + +`lb revise` diff --git a/pages/common/ld.md b/pages/common/ld.md new file mode 100644 index 00000000000000..fee46172e1ccb5 --- /dev/null +++ b/pages/common/ld.md @@ -0,0 +1,16 @@ +# ld + +> Link object files together. +> More information: . + +- Link a specific object file with no dependencies into an executable: + +`ld {{path/to/file.o}} --output {{path/to/output_executable}}` + +- Link two object files together: + +`ld {{path/to/file1.o}} {{path/to/file2.o}} --output {{path/to/output_executable}}` + +- Dynamically link an x86_64 program to glibc (file paths change depending on the system): + +`ld --output {{path/to/output_executable}} --dynamic-linker /lib/ld-linux-x86-64.so.2 /lib/crt1.o /lib/crti.o -lc {{path/to/file.o}} /lib/crtn.o` diff --git a/pages/common/ldapsearch.md b/pages/common/ldapsearch.md index 28b88a8a326269..0f435625708de4 100644 --- a/pages/common/ldapsearch.md +++ b/pages/common/ldapsearch.md @@ -1,6 +1,7 @@ # ldapsearch > CLI utility for querying 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/leave.md b/pages/common/leave.md index 101db80ca721cb..d38823837b3d68 100644 --- a/pages/common/leave.md +++ b/pages/common/leave.md @@ -1,13 +1,14 @@ # leave -> Remind when it's time to leave. +> Set a reminder for when it's time to leave. > To remove reminders use `kill $(pidof leave)`. +> More information: . - Set a reminder at a given time: `leave {{time_to_leave}}` -- Remind to leave at noon: +- Set a reminder to leave at noon: `leave {{1200}}` @@ -15,6 +16,6 @@ `leave +{{amount_of_time}}` -- Remind to leave in 4 hours and 4 minutes: +- Set a reminder to leave in 4 hours and 4 minutes: `leave +{{0404}}` diff --git a/pages/common/lebab.md b/pages/common/lebab.md index 025347f2ced9f5..9203985ca6d278 100644 --- a/pages/common/lebab.md +++ b/pages/common/lebab.md @@ -12,7 +12,7 @@ `lebab --transform {{transformation}}` -- Transpile a file to stdout: +- Transpile a file to `stdout`: `lebab {{path/to/input_file}}` diff --git a/pages/common/ledger.md b/pages/common/ledger.md new file mode 100644 index 00000000000000..15b3f02e471547 --- /dev/null +++ b/pages/common/ledger.md @@ -0,0 +1,24 @@ +# ledger + +> Ledger is a powerful, double-entry accounting system that is accessed from the UNIX command-line. +> More information: . + +- Print a balance report showing totals: + +`ledger balance --file {{path/to/ledger.journal}}` + +- List all postings in Expenses ordered by amount: + +`ledger register {{expenses}} --sorted {{amount}}` + +- Print total Expenses other than Drinks and Food: + +`ledger balance {{Expenses}} and not ({{Drinks}} or {{Food}})` + +- Print a budget report: + +`ledger budget` + +- Print summary information about all the postings: + +`ledger stats` diff --git a/pages/common/lein.md b/pages/common/lein.md index b5b0ad78646dab..c37af77c59e022 100644 --- a/pages/common/lein.md +++ b/pages/common/lein.md @@ -1,6 +1,6 @@ # lein -> Manage clojure projects with declarative configuration. +> Manage Clojure projects with declarative configuration. > More information: . - Generate scaffolding for a new project based on a template: diff --git a/pages/common/lerna.md b/pages/common/lerna.md new file mode 100644 index 00000000000000..c640cfc8b13449 --- /dev/null +++ b/pages/common/lerna.md @@ -0,0 +1,24 @@ +# lerna + +> A tool for managing JavaScript projects with multiple packages. +> More information: . + +- Initialize project files (`lerna.json`, `package.json`, `.git`, etc.): + +`lerna init` + +- Install all external dependencies of each package and symlink together local dependencies: + +`lerna bootstrap` + +- Run a specific script for every package that contains it in its `package.json`: + +`lerna run {{script}}` + +- Execute an arbitrary shell command in every package: + +`lerna exec -- {{ls}}` + +- Publish all packages that have changed since the last release: + +`lerna publish` diff --git a/pages/common/lex.md b/pages/common/lex.md index 7b5d95c8480faf..5c9e6ae53748ff 100644 --- a/pages/common/lex.md +++ b/pages/common/lex.md @@ -1,16 +1,17 @@ # lex -> Lexical analyser generator. -> Given the specification for a lexical analyser, generates C code implementing it. +> Lexical analyzer generator. +> Given the specification for a lexical analyzer, generates C code implementing it. +> More information: . -- Generate an analyser from a Lex file: +- Generate an analyzer from a Lex file: -`lex {{analyser.l}}` +`lex {{analyzer.l}}` - Specify the output file: -`lex {{analyser.l}} --outfile {{analyser.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 4070320593722b..ff05148934e08d 100644 --- a/pages/common/license.md +++ b/pages/common/license.md @@ -3,13 +3,13 @@ > Create license files for open-source projects. > More information: . -- Print a license to stdout, using the defaults (auto-detected author name, and current year): +- Print a license to `stdout`, using the defaults (auto-detected author name, and current year): `license {{license_name}}` - 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/licensor.md b/pages/common/licensor.md new file mode 100644 index 00000000000000..12c9595145b532 --- /dev/null +++ b/pages/common/licensor.md @@ -0,0 +1,28 @@ +# licensor + +> Write licenses to `stdout`. +> More information: . + +- Write the MIT license to a file named `LICENSE`: + +`licensor {{MIT}} > {{LICENSE}}` + +- Write the MIT license with a [p]laceholder copyright notice to a file named `LICENSE`: + +`licensor -p {{MIT}} > {{LICENSE}}` + +- Specify a copyright holder named Bobby Tables: + +`licensor {{MIT}} {{"Bobby Tables"}} > {{LICENSE}}` + +- Specify licence exceptions with a WITH expression: + +`licensor "{{Apache-2.0 WITH LLVM-exception}}" > {{LICENSE}}` + +- List all available licenses: + +`licensor --licenses` + +- List all available exceptions: + +`licensor --exceptions` diff --git a/pages/common/lighthouse.md b/pages/common/lighthouse.md new file mode 100644 index 00000000000000..71b4adad14649d --- /dev/null +++ b/pages/common/lighthouse.md @@ -0,0 +1,36 @@ +# lighthouse + +> Analyzes web applications and web pages, collecting modern performance metrics and insights on developer best practices. +> More information: . + +- Generate an HTML report for a specific website and save it to a file in the current directory: + +`lighthouse {{https://example.com}}` + +- Generate a JSON report and print it: + +`lighthouse --output {{json}} {{https://example.com}}` + +- Generate a JSON report and save it to a specific file: + +`lighthouse --output {{json}} --output-path {{path/to/file.json}} {{https://example.com}}` + +- Generate a report using the browser in headless mode without logging to `stdout`: + +`lighthouse --quiet --chrome-flags="{{--headless}}" {{https://example.com}}` + +- Generate a report, using the HTTP header key/value pairs in the specified JSON file for all requests: + +`lighthouse --extra-headers={{path/to/file.json}} {{https://example.com}}` + +- Generate a report for specific categories only: + +`lighthouse --only-categories={{performance,accessibility,best-practices,seo,pwa}} {{https://example.com}}` + +- Generate a report with device emulation and all throttling disabled: + +`lighthouse --screenEmulation.disabled --throttling-method={{provided}} --no-emulatedUserAgent {{https://example.com}}` + +- Display help: + +`lighthouse --help` diff --git a/pages/common/linkchecker.md b/pages/common/linkchecker.md index 731b183746c06c..4170cd24400d64 100644 --- a/pages/common/linkchecker.md +++ b/pages/common/linkchecker.md @@ -1,6 +1,6 @@ # linkchecker -> Command line client to check HTML documents and websites for broken links. +> Command-line client to check HTML documents and websites for broken links. > More information: . - Find broken links on https://example.com/: @@ -11,9 +11,9 @@ `linkchecker --check-extern {{https://example.com/}}` -- Ignore URLs that match a specific regex: +- Ignore URLs that match a specific regular expression: -`linkchecker --ignore-url {{regex}} {{https://example.com/}}` +`linkchecker --ignore-url {{regular_expression}} {{https://example.com/}}` - Output results to a CSV file: diff --git a/pages/common/live-server.md b/pages/common/live-server.md index f7cc2f08e6870c..a4161ecf0772fc 100644 --- a/pages/common/live-server.md +++ b/pages/common/live-server.md @@ -1,7 +1,7 @@ # live-server -> A simple development http server with live reload capability. -> More information: . +> A simple development HTTP server with live reload capability. +> More information: . - Serve an `index.html` file and reload on changes: diff --git a/pages/common/llc.md b/pages/common/llc.md new file mode 100644 index 00000000000000..666cd672c347ef --- /dev/null +++ b/pages/common/llc.md @@ -0,0 +1,20 @@ +# llc + +> Compiles LLVM Intermediate Representation or bitcode to target-specific assembly language. +> More information: . + +- Compile a bitcode or IR file to an assembly file with the same base name: + +`llc {{path/to/file.ll}}` + +- Enable all optimizations: + +`llc -O3 {{path/to/input.ll}}` + +- Output assembly to a specific file: + +`llc --output {{path/to/output.s}}` + +- Emit fully relocatable, position independent code: + +`llc -relocation-model=pic {{path/to/input.ll}}` diff --git a/pages/common/lli.md b/pages/common/lli.md new file mode 100644 index 00000000000000..3ed6870f6300fc --- /dev/null +++ b/pages/common/lli.md @@ -0,0 +1,20 @@ +# lli + +> Directly execute programs from LLVM bitcode. +> More information: . + +- Execute a bitcode or IR file: + +`lli {{path/to/file.ll}}` + +- Execute with command line arguments: + +`lli {{path/to/file.ll}} {{argument1 argument2 ...}}` + +- Enable all optimizations: + +`lli -O3 {{path/to/file.ll}}` + +- Load a dynamic library before linking: + +`lli --dlopen={{path/to/library.dll}} {{path/to/file.ll}}` diff --git a/pages/common/llvd.md b/pages/common/llvd.md new file mode 100644 index 00000000000000..c91f795200a0bc --- /dev/null +++ b/pages/common/llvd.md @@ -0,0 +1,20 @@ +# llvd + +> Linkedin Learning Video Downloader. +> More information: . + +- Download a [c]ourse using cookie-based authentication: + +`llvd -c {{course-slug}} --cookies` + +- Download a course at a specific [r]esolution: + +`llvd -c {{course-slug}} -r 720` + +- Download a course with [ca]ptions (subtitles): + +`llvd -c {{course-slug}} --caption` + +- Download a course [p]ath with [t]hrottling between 10 to 30 seconds: + +`llvd -p {{path-slug}} -t {{10,30}} --cookies` diff --git a/pages/common/llvm-ar.md b/pages/common/llvm-ar.md new file mode 100644 index 00000000000000..3febbb180cc119 --- /dev/null +++ b/pages/common/llvm-ar.md @@ -0,0 +1,7 @@ +# llvm-ar + +> This command is an alias of `ar`. + +- View documentation for the original command: + +`tldr ar` diff --git a/pages/common/llvm-as.md b/pages/common/llvm-as.md new file mode 100644 index 00000000000000..1b621a3528fd79 --- /dev/null +++ b/pages/common/llvm-as.md @@ -0,0 +1,16 @@ +# llvm-as + +> LLVM Intermediate Representation (`.ll`) to Bitcode (`.bc`) assembler. +> More information: . + +- Assemble an IR file: + +`llvm-as -o {{path/to/out.bc}} {{path/to/source.ll}}` + +- Assemble an IR file and include a module hash in the produced Bitcode file: + +`llvm-as --module-hash -o {{path/to/out.bc}} {{path/to/source.ll}}` + +- Read an IR file from `stdin` and assemble it: + +`cat {{path/to/source.ll}} | llvm-as -o {{path/to/out.bc}}` diff --git a/pages/common/llvm-bcanalyzer.md b/pages/common/llvm-bcanalyzer.md new file mode 100644 index 00000000000000..11427ca6798ea0 --- /dev/null +++ b/pages/common/llvm-bcanalyzer.md @@ -0,0 +1,16 @@ +# llvm-bcanalyzer + +> LLVM Bitcode (`.bc`) analyzer. +> More information: . + +- Print statistics about a Bitcode file: + +`llvm-bcanalyzer {{path/to/file.bc}}` + +- Print an SGML representation and statistics about a Bitcode file: + +`llvm-bcanalyzer -dump {{path/to/file.bc}}` + +- Read a Bitcode file from `stdin` and analyze it: + +`cat {{path/to/file.bc}} | llvm-bcanalyzer` diff --git a/pages/common/llvm-cat.md b/pages/common/llvm-cat.md new file mode 100644 index 00000000000000..7ebd1dfb63e3b6 --- /dev/null +++ b/pages/common/llvm-cat.md @@ -0,0 +1,8 @@ +# llvm-cat + +> Concatenate LLVM Bitcode (`.bc`) files. +> More information: . + +- Concatenate Bitcode files: + +`llvm-cat {{path/to/file1.bc}} {{path/to/file2.bc}} -o {{path/to/out.bc}}` diff --git a/pages/common/llvm-config.md b/pages/common/llvm-config.md new file mode 100644 index 00000000000000..53593e6cc1fb8a --- /dev/null +++ b/pages/common/llvm-config.md @@ -0,0 +1,17 @@ +# llvm-config + +> Get various configuration information needed to compile programs which use LLVM. +> Typically called from build systems, like in Makefiles or configure scripts. +> More information: . + +- Compile and link an LLVM based program: + +`clang++ $(llvm-config --cxxflags --ldflags --libs) --output {{path/to/output_executable}} {{path/to/source.cc}}` + +- Print the `PREFIX` of your LLVM installation: + +`llvm-config --prefix` + +- Print all targets supported by your LLVM build: + +`llvm-config --targets-built` diff --git a/pages/common/llvm-dis.md b/pages/common/llvm-dis.md new file mode 100644 index 00000000000000..744e46484b2be0 --- /dev/null +++ b/pages/common/llvm-dis.md @@ -0,0 +1,16 @@ +# llvm-dis + +> Converts LLVM bitcode files into human-readable LLVM Intermediate Representation (IR). +> More information: . + +- Convert a bitcode file as LLVM IR and write the result to `stdout`: + +`llvm-dis {{path/to/input.bc}} -o -` + +- Convert a bitcode file to an LLVM IR file with the same filename: + +`llvm-dis {{path/to/file.bc}}` + +- Convert a bitcode file to LLVM IR, writing the result to the specified file: + +`llvm-dis {{path/to/input.bc}} -o {{path/to/output.ll}}` diff --git a/pages/common/llvm-g++.md b/pages/common/llvm-g++.md new file mode 100644 index 00000000000000..8668811bcbb4c0 --- /dev/null +++ b/pages/common/llvm-g++.md @@ -0,0 +1,7 @@ +# llvm-g++ + +> This command is an alias of `clang++`. + +- View documentation for the original command: + +`tldr clang++` diff --git a/pages/common/llvm-gcc.md b/pages/common/llvm-gcc.md new file mode 100644 index 00000000000000..ebce9da9cb3a15 --- /dev/null +++ b/pages/common/llvm-gcc.md @@ -0,0 +1,7 @@ +# llvm-gcc + +> This command is an alias of `clang`. + +- View documentation for the original command: + +`tldr clang` diff --git a/pages/common/llvm-nm.md b/pages/common/llvm-nm.md new file mode 100644 index 00000000000000..9bbf75969c5a47 --- /dev/null +++ b/pages/common/llvm-nm.md @@ -0,0 +1,7 @@ +# llvm-nm + +> This command is an alias of `nm`. + +- View documentation for the original command: + +`tldr nm` diff --git a/pages/common/llvm-objdump.md b/pages/common/llvm-objdump.md new file mode 100644 index 00000000000000..bd8fdb81ee8e53 --- /dev/null +++ b/pages/common/llvm-objdump.md @@ -0,0 +1,7 @@ +# llvm-objdump + +> This command is an alias of `objdump`. + +- View documentation for the original command: + +`tldr objdump` diff --git a/pages/common/llvm-strings.md b/pages/common/llvm-strings.md new file mode 100644 index 00000000000000..2cece0af97c2b0 --- /dev/null +++ b/pages/common/llvm-strings.md @@ -0,0 +1,7 @@ +# llvm-strings + +> This command is an alias of `strings`. + +- View documentation for the original command: + +`tldr strings` diff --git a/pages/common/lmms.md b/pages/common/lmms.md index 14026b3d371fd2..e67319055ef6ac 100644 --- a/pages/common/lmms.md +++ b/pages/common/lmms.md @@ -1,6 +1,6 @@ # lmms -> Free, open source, multiplatform digital audio workstation. +> Free, open source, cross-platform digital audio workstation. > Render a `.mmp` or `.mmpz` project file, dump a `.mmpz` as XML, or start the GUI. > More information: . diff --git a/pages/common/ln.md b/pages/common/ln.md index a5d0473d933925..8f4a820fbe2aa4 100644 --- a/pages/common/ln.md +++ b/pages/common/ln.md @@ -5,12 +5,12 @@ - Create a symbolic link to a file or directory: -`ln -s {{path/to/file_or_directory}} {{path/to/symlink}}` +`ln -s {{/path/to/file_or_directory}} {{path/to/symlink}}` - Overwrite an existing symbolic link to point to a different file: -`ln -sf {{path/to/new_file}} {{path/to/symlink}}` +`ln -sf {{/path/to/new_file}} {{path/to/symlink}}` - Create a hard link to a file: -`ln {{path/to/file}} {{path/to/hardlink}}` +`ln {{/path/to/file}} {{path/to/hardlink}}` diff --git a/pages/common/loadtest.md b/pages/common/loadtest.md new file mode 100644 index 00000000000000..46b9d5cc3da404 --- /dev/null +++ b/pages/common/loadtest.md @@ -0,0 +1,16 @@ +# loadtest + +> Run a load test on the selected HTTP or WebSockets URL. +> More information: . + +- Run with concurrent users and a specified amount of requests per second: + +`loadtest --concurrency {{10}} --rps {{200}} {{https://example.com}}` + +- Run with a custom HTTP header: + +`loadtest --headers "{{accept:text/plain;text-html}}" {{https://example.com}}` + +- Run with a specific HTTP method: + +`loadtest --method {{GET}} {{https://example.com}}` diff --git a/pages/common/local.md b/pages/common/local.md new file mode 100644 index 00000000000000..f23b6fe9722180 --- /dev/null +++ b/pages/common/local.md @@ -0,0 +1,24 @@ +# local + +> Declare local variables and give them attributes. +> More information: . + +- Declare a string variable with the specified value: + +`local {{variable}}="{{value}}"` + +- Declare an integer variable with the specified value: + +`local -i {{variable}}="{{value}}"` + +- Declare an array variable with the specified value: + +`local {{variable}}=({{item_a item_b item_c}})` + +- Declare an associative array variable with the specified value: + +`local -A {{variable}}=({{[key_a]=item_a [key_b]=item_b [key_c]=item_c}})` + +- Declare a readonly variable with the specified value: + +`local -r {{variable}}="{{value}}"` diff --git a/pages/common/logger.md b/pages/common/logger.md new file mode 100644 index 00000000000000..979d194a509de3 --- /dev/null +++ b/pages/common/logger.md @@ -0,0 +1,24 @@ +# logger + +> Add messages to syslog (/var/log/syslog). +> More information: . + +- Log a message to syslog: + +`logger {{message}}` + +- Take input from `stdin` and log to syslog: + +`echo {{log_entry}} | logger` + +- Send the output to a remote syslog server running at a given port. Default port is 514: + +`echo {{log_entry}} | logger --server {{hostname}} --port {{port}}` + +- Use a specific tag for every line logged. Default is the name of logged in user: + +`echo {{log_entry}} | logger --tag {{tag}}` + +- Log messages with a given priority. Default is `user.notice`. See `man logger` for all priority options: + +`echo {{log_entry}} | logger --priority {{user.warning}}` diff --git a/pages/common/logstash.md b/pages/common/logstash.md index ebd210af56bc41..fa2649c550237c 100644 --- a/pages/common/logstash.md +++ b/pages/common/logstash.md @@ -1,17 +1,17 @@ # logstash -> An ETL (extract, transform and load) tool. -> Commonly used to load data from various sources, like databases and log files, into elasticsearch. +> An Elasticsearch ETL (extract, transform and load) tool. +> Commonly used to load data from various sources (such as databases and log files) into Elasticsearch. > More information: . -- Check validity of a logstash configuration: +- Check validity of a Logstash configuration: `logstash --configtest --config {{logstash_config.conf}}` -- Run logstash using configuration: +- Run Logstash using configuration: `sudo logstash --config {{logstash_config.conf}}` -- Run logstash with the most basic inline configuration string: +- Run Logstash with the most basic inline configuration string: `sudo logstash -e 'input {} filter {} output {}'` diff --git a/pages/common/lorem.md b/pages/common/lorem.md index 1e9527e342a4d5..ba199e01b3807f 100644 --- a/pages/common/lorem.md +++ b/pages/common/lorem.md @@ -1,6 +1,7 @@ # lorem > Create more or less random lorem ipsum text. +> More information: . - Print the specified number of words: @@ -14,6 +15,6 @@ `lorem -s {{5}} --raven` -- Print 40 random characters from Boccacio's Decameron: +- Print 40 random characters from Boccaccio's Decameron: `lorem --randomize -c {{40}} --decamerone` diff --git a/pages/common/lp.md b/pages/common/lp.md index 137f2a4880f1c3..dbeed805e1768d 100644 --- a/pages/common/lp.md +++ b/pages/common/lp.md @@ -1,6 +1,7 @@ # lp > Print files. +> More information: . - Print the output of a command to the default printer (see `lpstat` command): diff --git a/pages/common/lpass.md b/pages/common/lpass.md index add25a872f1858..3c163160c96de1 100644 --- a/pages/common/lpass.md +++ b/pages/common/lpass.md @@ -1,9 +1,9 @@ # lpass -> Command line interface for the LastPass password manager. +> Command-line interface for the LastPass password manager. > More information: . -- Login to your LastPass account, by entering your master password when prompted: +- Log in to your LastPass account, by entering your master password when prompted: `lpass login {{username}}` diff --git a/pages/common/lpinfo.md b/pages/common/lpinfo.md new file mode 100644 index 00000000000000..f9f35da47a4a63 --- /dev/null +++ b/pages/common/lpinfo.md @@ -0,0 +1,16 @@ +# lpinfo + +> List connected printers and installed drivers for the CUPS print server. +> More information: . + +- List all the currently connected printers: + +`lpinfo -v` + +- List all the currently installed printer drivers: + +`lpinfo -m` + +- Search installed printer drivers by make and model: + +`lpinfo --make-and-model "{{printer_model}}" -m` diff --git a/pages/common/lpr.md b/pages/common/lpr.md index 4aa47fe81480cc..36484d21a417c8 100644 --- a/pages/common/lpr.md +++ b/pages/common/lpr.md @@ -1,8 +1,8 @@ # lpr > CUPS tool for printing files. -> See also `lpstat` and `lpadmin` for listing and configuring printers. -> More information: . +> See also: `lpstat` and `lpadmin`. +> More information: . - Print a file to the default printer: @@ -20,9 +20,9 @@ `lpr -o page-ranges={{2|2-16}} {{path/to/file}}` -- Print double sided either in portrait (long) or in landscape (short): +- Print double-sided either in portrait (long) or in landscape (short): -`lpr -o sides={{two_sided_long_edge|two_sided_short_edge}} {{path/to/file}}` +`lpr -o sides={{two-sided-long-edge|two-sided-short-edge}} {{path/to/file}}` - Set page size (more options may be available depending on setup): diff --git a/pages/common/lpstat.md b/pages/common/lpstat.md index d0983b625fa4f4..072f0fe8243d7c 100644 --- a/pages/common/lpstat.md +++ b/pages/common/lpstat.md @@ -1,6 +1,7 @@ # lpstat > Show status information about printers. +> More information: . - List printers present on the machine and whether they are enabled for printing: diff --git a/pages/common/ls.md b/pages/common/ls.md index caa3756cf02bd7..56d1603de7f54a 100644 --- a/pages/common/ls.md +++ b/pages/common/ls.md @@ -19,7 +19,7 @@ `ls -la` -- Long format list with size displayed using human readable units (KiB, MiB, GiB): +- Long format list with size displayed using human-readable units (KiB, MiB, GiB): `ls -lh` @@ -30,3 +30,7 @@ - Long format list of all files, sorted by modification date (oldest first): `ls -ltr` + +- Only list directories: + +`ls -d */` diff --git a/pages/common/lsd.md b/pages/common/lsd.md new file mode 100644 index 00000000000000..a5fd4204ca5ace --- /dev/null +++ b/pages/common/lsd.md @@ -0,0 +1,37 @@ +# lsd + +> List directory contents. +> The next generation `ls` command, written in Rust. +> More information: . + +- List files and directories, one per line: + +`lsd -1` + +- List all files and directories, including hidden ones, in the current directory: + +`lsd -a` + +- List all files and directories with trailing `/` added to directory names: + +`lsd -F` + +- List all files and directories in long format (permissions, ownership, size, and modification date): + +`lsd -la` + +- List all files and directories in long format with size displayed using human-readable units (KiB, MiB, GiB): + +`lsd -lh` + +- List all files and directories in long format, sorted by size (descending): + +`lsd -lS` + +- List all files and directories in long format, sorted by modification date (oldest first): + +`lsd -ltr` + +- Only list directories: + +`lsd -d {{*/}}` diff --git a/pages/common/lsof.md b/pages/common/lsof.md index 0eb10cf7f4acb2..2d40516316f41f 100644 --- a/pages/common/lsof.md +++ b/pages/common/lsof.md @@ -2,6 +2,7 @@ > Lists open files and the corresponding processes. > Note: Root privileges (or sudo) is required to list files opened by others. +> More information: . - Find the processes that have a given file open: @@ -31,6 +32,6 @@ `lsof +D {{path/to/directory}}` -- Find the process that is listening on a local TCP port: +- Find the process that is listening on a local IPv6 TCP port and don't convert network or port numbers: -`lsof -iTCP:{{port}} -sTCP:LISTEN` +`lsof -i6TCP:{{port}} -sTCP:LISTEN -n -P` diff --git a/pages/common/lspath.md b/pages/common/lspath.md new file mode 100644 index 00000000000000..dfb81645ad3678 --- /dev/null +++ b/pages/common/lspath.md @@ -0,0 +1,12 @@ +# lspath + +> CLI app to 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: + +`lspath` + +- 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/lua.md b/pages/common/lua.md index e3001e060cb606..fb90e77dd55873 100644 --- a/pages/common/lua.md +++ b/pages/common/lua.md @@ -13,4 +13,4 @@ - Execute a Lua expression: -`lua -e '{{print( "Hello World" )}}` +`lua -e '{{print( "Hello World" )}}'` diff --git a/pages/common/lualatex.md b/pages/common/lualatex.md new file mode 100644 index 00000000000000..e26d2dc77a02c2 --- /dev/null +++ b/pages/common/lualatex.md @@ -0,0 +1,20 @@ +# lualatex + +> An extended version of TeX using Lua to compile. +> More information: . + +- Start `texlua` to act as a Lua interpreter: + +`lualatex` + +- Compile a Tex file to PDF: + +`lualatex {{path/to/file.tex}}` + +- Compile a Tex file without error interruption: + +`lualatex -interaction nonstopmode {{path/to/file.tex}}` + +- Compile a Tex file with a specific output file name: + +`lualatex -jobname={{filename}} {{path/to/file.tex}}` diff --git a/pages/common/lumen.md b/pages/common/lumen.md index 5a5186bb5d9093..004bdf762c3a73 100644 --- a/pages/common/lumen.md +++ b/pages/common/lumen.md @@ -1,6 +1,6 @@ # lumen -> A command line installer for the Lumen micro-framework. +> A command-line installer for the Lumen micro-framework. > More information: . - Create a new Lumen application: diff --git a/pages/common/lz4.md b/pages/common/lz4.md index 7742a3842f0f7d..9d3dfea9578c31 100644 --- a/pages/common/lz4.md +++ b/pages/common/lz4.md @@ -5,13 +5,13 @@ - Compress a file: -`lz4 {{file}}` +`lz4 {{path/to/file}}` - Decompress a file: `lz4 -d {{file.lz4}}` -- Decompress a file and write to stdout: +- Decompress a file and write to `stdout`: `lz4 -dc {{file.lz4}}` @@ -21,8 +21,8 @@ - Decompress and unpack a directory and its contents: -`lz4 -d {{dir.tar.lz4}} | tar -xv` +`lz4 -dc {{dir.tar.lz4}} | tar -xv` - Compress a file using the best compression: -`lz4 -9 {{file}}` +`lz4 -9 {{path/to/file}}` diff --git a/pages/common/lzcat.md b/pages/common/lzcat.md new file mode 100644 index 00000000000000..55fdcfefe8699b --- /dev/null +++ b/pages/common/lzcat.md @@ -0,0 +1,8 @@ +# lzcat + +> This command is an alias of `xz --format=lzma --decompress --stdout`. +> More information: . + +- View documentation for the original command: + +`tldr xz` diff --git a/pages/common/lzip.md b/pages/common/lzip.md new file mode 100644 index 00000000000000..69183882a942b3 --- /dev/null +++ b/pages/common/lzip.md @@ -0,0 +1,37 @@ +# lzip + +> Lzip is a lossless data compressor with a user interface similar to `gzip` or `bzip2`. +> Lzip uses a simplified form of the "Lempel-Ziv-Markovchain-Algorithm"z (LZMA) stream format and provides a 3 factor integrity checking to maximize interoperability and optimize safety. +> More information: . + +- Archive a file, replacing it with with a compressed version: + +`lzip {{path/to/file}}` + +- Archive a file, keeping the input file: + +`lzip -k {{path/to/file}}` + +- Archive a file with the best compression (level=9): + +`lzip -k {{path/to/file}} --best` + +- Archive a file at the fastest speed (level=0): + +`lzip -k {{path/to/file}} --fast` + +- Test the integrity of compressed file: + +`lzip --test {{path/to/archive.lz}}` + +- Decompress a file, replacing it with the original uncompressed version: + +`lzip -d {{path/to/archive.lz}}` + +- Decompress a file, keeping the archive: + +`lzip -d -k {{path/to/archive.lz}}` + +- List files which are in an archive and show compression stats: + +`lzip --list {{path/to/archive.lz}}` diff --git a/pages/common/lzma.md b/pages/common/lzma.md new file mode 100644 index 00000000000000..4355e9b221f4fe --- /dev/null +++ b/pages/common/lzma.md @@ -0,0 +1,8 @@ +# lzma + +> This command is an alias of `xz --format=lzma`. +> More information: . + +- View documentation for the original command: + +`tldr xz` diff --git a/pages/common/lzop.md b/pages/common/lzop.md index 7fb9c5a78575bb..22fb18aedd7521 100644 --- a/pages/common/lzop.md +++ b/pages/common/lzop.md @@ -5,12 +5,12 @@ - Compress a file into a new file with the `.lzo` suffix: -`lzop {{file}}` +`lzop {{path/to/file}}` - Decompress a file: -`lzop -d {{file}}.lzo` +`lzop -d {{path/to/file}}.lzo` - Compress a file, while specifying the compression level. 0 = Worst, 9 = Best (Default level is 3): -`lzop -{{level}} {{file}}` +`lzop -{{level}} {{path/to/file}}` diff --git a/pages/common/maestral.md b/pages/common/maestral.md new file mode 100644 index 00000000000000..c0c7ebae6e52af --- /dev/null +++ b/pages/common/maestral.md @@ -0,0 +1,24 @@ +# maestral + +> A lightweight Dropbox client for macOS and Linux. +> More information: . + +- Start the GUI: + +`maestral gui` + +- Print current status of Maestral: + +`maestral status` + +- Pause syncing: + +`maestral pause` + +- Resume syncing: + +`maestral resume` + +- Print sync status of a specific file or folder: + +`maestral filestatus {{path/to/file_or_directory}}` diff --git a/pages/common/mail.md b/pages/common/mail.md index 3ec70d3b4a4242..2400ec4de3912c 100644 --- a/pages/common/mail.md +++ b/pages/common/mail.md @@ -2,8 +2,9 @@ > 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. +> 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 multi-line). Press Ctrl-D key to complete the message text: +- 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: `mail --subject="{{subject line}}" {{to_user@example.com}}` diff --git a/pages/common/mailx.md b/pages/common/mailx.md index fe9b4b07c0d4d2..6e33036aaec408 100644 --- a/pages/common/mailx.md +++ b/pages/common/mailx.md @@ -1,6 +1,7 @@ # mailx > Send and receive mail. +> More information: . - Send mail (the content should be typed after the command, and ended with `Ctrl+D`): @@ -24,4 +25,4 @@ - Send mail with an attachment: -`mailx -a {{file}} -s "{{subject}}" {{to_addr}}` +`mailx -a {{path/to/file}} -s "{{subject}}" {{to_addr}}` diff --git a/pages/common/make.md b/pages/common/make.md index 12a4b73fd05ffd..8b9349e21d72b8 100644 --- a/pages/common/make.md +++ b/pages/common/make.md @@ -18,16 +18,20 @@ - Use a specific Makefile: -`make --file {{file}}` +`make --file {{path/to/file}}` - Execute make from another directory: -`make --directory {{directory}}` +`make --directory {{path/to/directory}}` - Force making of a target, even if source files are unchanged: `make --always-make {{target}}` +- Override a variable defined in the Makefile: + +`make {{target}} {{variable}}={{new_value}}` + - Override variables defined in the Makefile by the environment: `make --environment-overrides {{target}}` diff --git a/pages/common/mamba-repoquery.md b/pages/common/mamba-repoquery.md new file mode 100644 index 00000000000000..8655e9f3f3108c --- /dev/null +++ b/pages/common/mamba-repoquery.md @@ -0,0 +1,20 @@ +# mamba repoquery + +> Efficiently query conda and mamba package repositories and package dependencies. +> More information: . + +- Search for all available versions of a particular package: + +`mamba repoquery search {{package_name}}` + +- Search for all packages satisfying specific constraints: + +`mamba repoquery search {{sphinx<5}}` + +- List the dependencies of a package installed in the currently activated environment, in a tree format: + +`mamba repoquery depends --tree {{scipy}}` + +- Print packages in the current environment that require a particular package to be installed (i.e. inverse of `depends`): + +`mamba repoquery whoneeds {{ipython}}` diff --git a/pages/common/mamba.md b/pages/common/mamba.md new file mode 100644 index 00000000000000..9c77b7c33ef5b2 --- /dev/null +++ b/pages/common/mamba.md @@ -0,0 +1,37 @@ +# mamba + +> Fast, cross-platform package manager, intended as a drop-in replacement for conda. +> Some subcommands such as `mamba repoquery` have their own usage documentation. +> More information: . + +- Create a new environment, installing the specified packages into it: + +`mamba create --name {{environment_name}} {{python=3.10 matplotlib}}` + +- Install packages into the current environment, specifying the package [c]hannel: + +`mamba install -c {{conda-forge}} {{python=3.6 numpy}}` + +- Update all packages in the current environment: + +`mamba update --all` + +- Search for a specific package across repositories: + +`mamba repoquery search {{numpy}}` + +- List all environments: + +`mamba info --envs` + +- Remove unused [p]ackages and [t]arballs from the cache: + +`mamba clean -pt` + +- Activate an environment: + +`mamba activate {{environment_name}}` + +- List all installed packages in the currently activated environment: + +`mamba list` diff --git a/pages/common/man.md b/pages/common/man.md index 5444a3440068a4..55c1bf3469a180 100644 --- a/pages/common/man.md +++ b/pages/common/man.md @@ -9,7 +9,11 @@ - Display the man page for a command from section 7: -`man {{command}}.{{7}}` +`man {{7}} {{command}}` + +- List all available sections for a command: + +`man -f {{command}}` - Display the path searched for manpages: diff --git a/pages/common/masscan.md b/pages/common/masscan.md new file mode 100644 index 00000000000000..8027a1a88b02fd --- /dev/null +++ b/pages/common/masscan.md @@ -0,0 +1,25 @@ +# masscan + +> Network scanner for scanning as fast as possible. +> Best run with elevated privileges. Nmap compatibility run `masscan --nmap` to find out more. +> More information: . + +- Scan an IP or network subnet for port 80: + +`masscan {{ip_address|network_prefix}} --ports {{80}}` + +- Scan a class B subnet for the top 100 ports at 100,000 packets per second: + +`masscan {{10.0.0.0/16}} --top-ports {{100}} --rate {{100000}}` + +- Scan a class B subnet avoiding ranges from a specific exclude file: + +`masscan {{10.0.0.0/16}} --top-ports {{100}} --excludefile {{path/to/file}}` + +- Scan the Internet for port 443: + +`masscan {{0.0.0.0/0}} --ports {{443}} --rate {{10000000}}` + +- Scan the Internet for a specific port range and export to a file: + +`masscan {{0.0.0.0/0}} --ports {{0-65535}} -output-format {{binary|grepable|json|list|xml}} --output-filename {{path/to/file}}` diff --git a/pages/common/mate-dictionary.md b/pages/common/mate-dictionary.md new file mode 100644 index 00000000000000..9169d23e0d07c7 --- /dev/null +++ b/pages/common/mate-dictionary.md @@ -0,0 +1,12 @@ +# mate-dictionary + +> Look up words on dictionaries. +> More information: . + +- Print a specific word definition: + +`mate-dictionary --no-window --look-up '{{word}}'` + +- Show similar words for a specific one in a new window: + +`mate-dictionary --match '{{word}}'` diff --git a/pages/common/maza.md b/pages/common/maza.md new file mode 100644 index 00000000000000..f088d04add79d8 --- /dev/null +++ b/pages/common/maza.md @@ -0,0 +1,20 @@ +# maza + +> Local ad blocker. Like Pi-hole but local and using the operating system. +> More information: . + +- Update the Maza database: + +`maza update` + +- Start Maza: + +`sudo maza start` + +- Stop Maza: + +`sudo maza stop` + +- Show the status of Maza: + +`maza status` diff --git a/pages/common/mcfly.md b/pages/common/mcfly.md new file mode 100644 index 00000000000000..b822de9f5fe0ec --- /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/mcs.md b/pages/common/mcs.md new file mode 100644 index 00000000000000..32fc82c6a4cfac --- /dev/null +++ b/pages/common/mcs.md @@ -0,0 +1,16 @@ +# mcs + +> Mono C# Compiler. +> More information: . + +- Compile the specified files: + +`mcs {{path/to/input_file1.cs path/to/input_file2.cs ...}}` + +- Specify the output program name: + +`mcs -out:{{path/to/file.exe}} {{path/to/input_file1.cs path/to/input_file2.cs ...}}` + +- Specify the output program type: + +`mcs -target:{{exe|winexe|library|module}} {{path/to/input_file1.cs path/to/input_file2.cs ...}}` diff --git a/pages/common/md-to-clip.md b/pages/common/md-to-clip.md new file mode 100644 index 00000000000000..fada9eb029a702 --- /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 7d13741cb2d18d..69c20f555aa1ce 100644 --- a/pages/common/md5sum.md +++ b/pages/common/md5sum.md @@ -5,16 +5,24 @@ - Calculate the MD5 checksum for a file: -`md5sum {{filename1}}` +`md5sum {{path/to/file}}` - Calculate MD5 checksums for multiple files: -`md5sum {{filename1}} {{filename2}}` +`md5sum {{path/to/file1}} {{path/to/file2}}` + +- Calculate an MD5 checksum from `stdin`: + +`{{some_command}}" | md5sum` - Read a file of MD5SUMs and verify all files have matching checksums: -`md5sum -c {{filename.md5}}` +`md5sum --check {{path/to/file.md5}}` + +- Only show a message for missing files or when verification fails: + +`md5sum --check --quiet {{path/to/file.md5}}` -- Calculate a MD5 checksum from the standard input: +- Only show a message for files for which verification fails, ignoring missing files: -`echo "{{text}}" | md5sum` +`md5sum --ignore-missing --check --quiet {{path/to/file.md5}}` diff --git a/pages/common/mesg.md b/pages/common/mesg.md index d3ac4d47a8c584..3c5dcea9b19129 100644 --- a/pages/common/mesg.md +++ b/pages/common/mesg.md @@ -2,6 +2,7 @@ > Check or set a terminal's ability to receive messages from other users, usually from the write command. > See also `write`. +> More information: . - Check terminal's openness to write messages: diff --git a/pages/common/meshlabserver.md b/pages/common/meshlabserver.md index 4307b22534353b..b9ba7effd4bf31 100644 --- a/pages/common/meshlabserver.md +++ b/pages/common/meshlabserver.md @@ -1,6 +1,7 @@ # meshlabserver -> Command line interface for the MeshLab 3D mesh processing software. +> Command-line interface for the MeshLab 3D mesh processing software. +> More information: . - Convert an STL file to an OBJ file: @@ -12,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 09bf62ae4e2d8a..18cc1cb4fe17af 100644 --- a/pages/common/meson.md +++ b/pages/common/meson.md @@ -3,11 +3,11 @@ > 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: +- Generate a C project with a given name and version: `meson init --language={{c}} --name={{myproject}} --version={{0.1}}` -- Configure builddir with default values: +- Configure the `builddir` with default values: `meson setup {{build_dir}}` @@ -15,6 +15,10 @@ `meson compile -C {{path/to/build_dir}}` +- Run all tests in the project: + +`meson test` + - Show the help: `meson --help` diff --git a/pages/common/meteor.md b/pages/common/meteor.md index 15727ce0c02d68..833de3e91f8447 100644 --- a/pages/common/meteor.md +++ b/pages/common/meteor.md @@ -1,6 +1,6 @@ # meteor -> Full-stack javascript platform for building web applications. +> Full-stack JavaScript platform for building web applications. > More information: . - Run a meteor project from its root directory in development mode: diff --git a/pages/common/mg.md b/pages/common/mg.md new file mode 100644 index 00000000000000..e4c998813f5230 --- /dev/null +++ b/pages/common/mg.md @@ -0,0 +1,20 @@ +# mg + +> A small, fast, and portable text editor based on `emacs`. +> More information: . + +- Open a file for editing: + +`mg {{path/to/file}}` + +- Open a file at a specified line number: + +`mg +{{line_number}} {{path/to/file}}` + +- Open files in a read-only mode: + +`mg -R {{path/to/file1 path/to/file2 ...}}` + +- Disable `~` backup files while editing: + +`mg -n {{path/to/file}}` diff --git a/pages/common/mh_copyright.md b/pages/common/mh_copyright.md new file mode 100644 index 00000000000000..4ff910b46210ee --- /dev/null +++ b/pages/common/mh_copyright.md @@ -0,0 +1,12 @@ +# mh_copyright + +> Adjust copyright headers for MATLAB or Octave code. +> More information: . + +- Update the year (range) to include the current year for the specified files: + +`mh_copyright --primary-entity="{{entity}}" --update-year {{path/to/file_or_directory1.m path/to/file_or_director2.m ...}}` + +- Update the year (range) to include the current year for all files: + +`mh_copyright --primary-entity="{{entity}}" --update-year` diff --git a/pages/common/mh_lint.md b/pages/common/mh_lint.md new file mode 100644 index 00000000000000..34152b31fab06d --- /dev/null +++ b/pages/common/mh_lint.md @@ -0,0 +1,21 @@ +# mh_lint + +> Attempt to find bugs in MATLAB or Octave code. +> Please note that this tool is neither sound nor complete. +> More information: . + +- Check the current directory: + +`mh_lint` + +- Check a specific directory recursively: + +`mh_lint {{path/to/directory}}` + +- Check a MATLAB file: + +`mh_lint {{path/to/file.m}}` + +- Check an Octave file: + +`mh_lint --octave {{path/to/file.m}}` diff --git a/pages/common/mh_metric.md b/pages/common/mh_metric.md new file mode 100644 index 00000000000000..529cab800f14c1 --- /dev/null +++ b/pages/common/mh_metric.md @@ -0,0 +1,24 @@ +# mh_metric + +> Calculate and enforce code metrics for MATLAB or Octave code. +> More information: . + +- Print the code metrics for the specified files: + +`mh_metric {{path/to/file1.m path/to/file2.m ...}}` + +- Print the code metrics for the specified Octave files: + +`mh_metric --octave {{path/to/file1.m path/to/file2.m ...}}` + +- Print the code metrics for the specified directory recursively: + +`mh_metric {{path/to/directory}}` + +- Print the code metrics for the current directory: + +`mh_metric` + +- Print the code metrics report in HTML or JSON format: + +`mh_metric --{{html|json}} {{path/to/output_file}}` diff --git a/pages/common/micro.md b/pages/common/micro.md index 3f3710f0de4974..fc95cdf440f2a3 100644 --- a/pages/common/micro.md +++ b/pages/common/micro.md @@ -6,7 +6,11 @@ - Open a file: -`micro {{file}}` +`micro {{path/to/file}}` + +- Save a file: + +`Ctrl + S` - Cut the entire line: diff --git a/pages/common/mid3v2.md b/pages/common/mid3v2.md new file mode 100644 index 00000000000000..e8c53115ae7ae1 --- /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/minetest.md b/pages/common/minetest.md index 2704f1cd18c74d..437c7cc7813e09 100644 --- a/pages/common/minetest.md +++ b/pages/common/minetest.md @@ -4,11 +4,11 @@ > See also `minetestserver`, the server-only binary. > More information: . -- Start minetest in client mode: +- Start Minetest in client mode: `minetest` -- Start minetest in server mode by hosting a specific world: +- Start Minetest in server mode by hosting a specific world: `minetest --server --world {{name}}` diff --git a/pages/common/mingle.md b/pages/common/mingle.md new file mode 100644 index 00000000000000..78edad32528b50 --- /dev/null +++ b/pages/common/mingle.md @@ -0,0 +1,17 @@ +# mingle + +> Bundle the edges of a graph layout. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Bundle the edges of one or more graph layouts (that already have layout information): + +`mingle {{path/to/layout1.gv}} {{path/to/layout2.gv ...}} > {{path/to/output.gv}}` + +- Perform layout, bundling, and output to a picture with one command: + +`dot {{path/to/input.gv}} | mingle | dot -T {{png}} > {{path/to/output.png}}` + +- Display help for `mingle`: + +`mingle -?` diff --git a/pages/common/minifab.md b/pages/common/minifab.md index 25b114d5ebc243..d605a724a9a15d 100644 --- a/pages/common/minifab.md +++ b/pages/common/minifab.md @@ -7,7 +7,7 @@ `minifab up -i {{minifab_version}}` -- Bring down the Hyperldger Fabric network: +- Bring down the Hyperledger Fabric network: `minifab down` diff --git a/pages/common/minikube.md b/pages/common/minikube.md index 57a160d44fef5b..04e5ef899739e5 100644 --- a/pages/common/minikube.md +++ b/pages/common/minikube.md @@ -11,11 +11,11 @@ `minikube ip` -- Access a service named my_service exposed via a node port and get the url: +- Access a service named my_service exposed via a node port and get the URL: `minikube service {{my_service}} --url` -- Open kubernetes dashboard in a browser: +- Open the Kubernetes dashboard in a browser: `minikube dashboard` diff --git a/pages/common/miniserve.md b/pages/common/miniserve.md new file mode 100644 index 00000000000000..a8d6753fbcd0e5 --- /dev/null +++ b/pages/common/miniserve.md @@ -0,0 +1,16 @@ +# miniserve + +> Simple HTTP file server CLI. +> More information: . + +- Serve a directory: + +`miniserve {{path/to/directory}}` + +- Serve a single file: + +`miniserve {{path/to/file}}` + +- Serve a directory using HTTP basic authentication: + +`miniserve --auth {{username}}:{{password}} {{path/to/directory}}` diff --git a/pages/common/mitmdump.md b/pages/common/mitmdump.md index c254030380c48a..5fe9befb930ca9 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/mixxx.md b/pages/common/mixxx.md index 97759d477d205e..8cbf39b568ab4d 100644 --- a/pages/common/mixxx.md +++ b/pages/common/mixxx.md @@ -15,7 +15,7 @@ `mixxx --debugAssertBreak --developer --loglevel trace` -- Start mixxx using the specified settings file: +- Start Mixxx using the specified settings file: `mixxx --resourcePath {{mixxx/res/controllers}} --settingsPath {{path/to/settings-file}}` @@ -23,6 +23,6 @@ `mixxx --controllerDebug --resourcePath {{path/to/mapping-directory}}` -- Show command line help: +- Show command-line help: `mixxx --help` diff --git a/pages/common/mk.md b/pages/common/mk.md new file mode 100644 index 00000000000000..020ef3584d8688 --- /dev/null +++ b/pages/common/mk.md @@ -0,0 +1,29 @@ +# mk + +> Task runner for targets described in Mkfile. +> Mostly used to control the compilation of an executable from source code. +> More information: . + +- Call the first target specified in the Mkfile (usually named "all"): + +`mk` + +- Call a specific target: + +`mk {{target}}` + +- Call a specific target, executing 4 jobs at a time in parallel: + +`NPROC=4 mk {{target}}` + +- Force mking of a target, even if source files are unchanged: + +`mk -w{{target}} {{target}}` + +- Assume all targets to be out of date. Thus, update `target` and all of its dependencies: + +`mk -a {{target}}` + +- Keep going as far as possible on error: + +`mk -k` diff --git a/pages/common/mkdir.md b/pages/common/mkdir.md index 3c345144be14a7..037c27c3c013b9 100644 --- a/pages/common/mkdir.md +++ b/pages/common/mkdir.md @@ -1,12 +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 {{directory}}` +`mkdir {{path/to/directory1 path/to/directory2 ...}}` -- Create directories recursively (useful for creating nested dirs): +- Create specific directories and their [p]arents if needed: -`mkdir -p {{path/to/directory}}` +`mkdir -p {{path/to/directory1 path/to/directory2 ...}}` + +- Create directories with specific permissions: + +`mkdir -m {{rwxrw-r--}} {{path/to/directory1 path/to/directory2 ...}}` diff --git a/pages/common/mkdocs.md b/pages/common/mkdocs.md new file mode 100644 index 00000000000000..2aa9921d293893 --- /dev/null +++ b/pages/common/mkdocs.md @@ -0,0 +1,20 @@ +# mkdocs + +> Project documentation with Markdown. +> More information: . + +- Create a new mkdocs project: + +`mkdocs new {{project_name}}` + +- Serve the project in the current directory using the mkdocs dev-server: + +`mkdocs serve` + +- Build the documentation in the current directory: + +`mkdocs build` + +- Deploy the documentation in the current directory to GitHub pages: + +`mkdocs gh-deploy` diff --git a/pages/common/mkfile.md b/pages/common/mkfile.md new file mode 100644 index 00000000000000..b1040b5541e2f3 --- /dev/null +++ b/pages/common/mkfile.md @@ -0,0 +1,16 @@ +# mkfile + +> Create one or more empty files of any size. +> More information: . + +- Create an empty file of 15 kilobytes: + +`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}} {{path/to/file}}` + +- Create two files of 4 megabytes each: + +`mkfile -n {{4m}} {{first_filename}} {{second_filename}}` diff --git a/pages/common/mktemp.md b/pages/common/mktemp.md index 9fad894feb7b85..3373a12a93ebef 100644 --- a/pages/common/mktemp.md +++ b/pages/common/mktemp.md @@ -1,16 +1,16 @@ # mktemp > Create a temporary file or directory. -> More information: . +> More information: . -- Create an empty temporary file and return the absolute path to it: +- Create an empty temporary file and print the absolute path to it: `mktemp` -- Create a temporary directory and return the absolute path to it: +- Create an empty temporary file with a given suffix and print the absolute path to file: -`mktemp -d` +`mktemp --suffix "{{.ext}}"` -- Create a temporary file with a specified suffix: +- Create a temporary directory and print the absolute path to it: -`mktemp --suffix "{{.txt}}"` +`mktemp -d` diff --git a/pages/common/mkvmerge.md b/pages/common/mkvmerge.md new file mode 100644 index 00000000000000..68ed03e8a0806d --- /dev/null +++ b/pages/common/mkvmerge.md @@ -0,0 +1,20 @@ +# mkvmerge + +> Merge and extract multimedia streams. +> More information: . + +- Display information about a Matroska file: + +`mkvmerge --identify {{path/to/file.mkv}}` + +- Extract the audio from track 1 of a specific file: + +`mkvextract tracks {{path/to/file.mkv}} {{1}}:{{path/to/output.webm}}` + +- Extract the subtitle from track 3 of a specific file: + +`mkvextract tracks {{path/to/file.mkv}} {{3}}:{{path/to/subs.srt}}` + +- Add a subtitle track to a file: + +`mkvmerge --output {{path/to/output.mkv}} {{path/to/file.mkv}} {{path/to/subs.srt}}` diff --git a/pages/common/mlr.md b/pages/common/mlr.md index 30a35db9085876..f7cb6b998607f7 100644 --- a/pages/common/mlr.md +++ b/pages/common/mlr.md @@ -29,4 +29,4 @@ - Filter lines of a compressed CSV file treating numbers as strings: -`mlr --prepipe 'gunzip' --csv filter -S '${{fieldName}} =~ "{{regexp}}"' {{example.csv.gz}}` +`mlr --prepipe 'gunzip' --csv filter -S '${{fieldName}} =~ "{{regular_expression}}"' {{example.csv.gz}}` diff --git a/pages/common/mm2gv.md b/pages/common/mm2gv.md new file mode 100644 index 00000000000000..981680fab91206 --- /dev/null +++ b/pages/common/mm2gv.md @@ -0,0 +1,17 @@ +# mm2gv + +> Convert a graph from Matrix Market `mm` format to `gv` format. +> Converters: `gml2gv`, `gv2gml`, `gv2gxl`, `gxl2gv`, `graphml2gv` & `mm2gv`. +> More information: . + +- Convert a graph from `mm` to `gv` format: + +`mm2gv -o {{output.gv}} {{input.mm}}` + +- Convert a graph using `stdin` and `stdout`: + +`cat {{input.mm}} | mm2gv > {{output.gv}}` + +- Display help: + +`mm2gv -?` diff --git a/pages/common/mmv.md b/pages/common/mmv.md index 8a028727f0fa53..fdf8f529519bf9 100644 --- a/pages/common/mmv.md +++ b/pages/common/mmv.md @@ -1,6 +1,7 @@ # mmv > Move and rename files in bulk. +> More information: . - Rename all files with a certain extension to a different extension: diff --git a/pages/common/mocha.md b/pages/common/mocha.md index f7962a082b00bd..3fd21ac2d4e14d 100644 --- a/pages/common/mocha.md +++ b/pages/common/mocha.md @@ -13,7 +13,7 @@ - Run tests that match a specific grep pattern: -`mocha --grep {{^regex$}}` +`mocha --grep {{regular_expression}}` - Run tests on changes to JavaScript files in the current directory and once initially: diff --git a/pages/common/moe.md b/pages/common/moe.md new file mode 100644 index 00000000000000..48d939dbe809d4 --- /dev/null +++ b/pages/common/moe.md @@ -0,0 +1,24 @@ +# moe + +> A WYSIWYG text editor for ISO-8859-15 encoded text. +> More information: . + +- Open moe and create a backup file (file~) when saving edits: + +`moe {{path/to/file}}` + +- Open a file as read-only: + +`moe --read-only {{path/to/file}}` + +- Edit a file without creating backups: + +`moe --no-backup {{path/to/file}}` + +- Edit a file ignoring case in searches: + +`moe --ignore-case {{path/to/file}}` + +- Save and Quit: + +`Ctrl + X` diff --git a/pages/common/mogrify.md b/pages/common/mogrify.md index 732a784e3df0bc..3f86661974dd01 100644 --- a/pages/common/mogrify.md +++ b/pages/common/mogrify.md @@ -12,7 +12,7 @@ `mogrify -resize {{800x600}} {{DSC*}}` -- Convert all PNG images in the directory to JPEG: +- Convert all PNGs in the directory to JPEG: `mogrify -format {{jpg}} {{*.png}}` diff --git a/pages/common/molecule.md b/pages/common/molecule.md index 1738398f03ecb3..e4fe8164cbcee1 100644 --- a/pages/common/molecule.md +++ b/pages/common/molecule.md @@ -1,9 +1,9 @@ # molecule -> Molecule helps testing ansible roles. +> Molecule helps testing Ansible roles. > More information: . -- Create a new ansible role: +- Create a new Ansible role: `molecule init role --role-name {{role_name}}` @@ -19,6 +19,6 @@ `molecule converge` -- Login into the instance: +- Log in into the instance: `molecule login` diff --git a/pages/common/mongo.md b/pages/common/mongo.md index d98548ec228a7e..9ac28189f53c9d 100644 --- a/pages/common/mongo.md +++ b/pages/common/mongo.md @@ -15,6 +15,6 @@ `mongo --username {{username}} {{database}} --password` -- Evaluate a javascript expression on the database: +- Evaluate a JavaScript expression on the database: `mongo --eval '{{JSON.stringify(db.foo.findOne())}}' {{database}}` diff --git a/pages/common/mongod.md b/pages/common/mongod.md index 462da59ba5a290..4374e06250aaef 100644 --- a/pages/common/mongod.md +++ b/pages/common/mongod.md @@ -5,7 +5,7 @@ - Specify a config file: -`mongod --config {{filename}}` +`mongod --config {{path/to/file}}` - Specify the port to listen on: diff --git a/pages/common/mongodump.md b/pages/common/mongodump.md index 1bbdd55813eff8..be7c5e3bc143a8 100644 --- a/pages/common/mongodump.md +++ b/pages/common/mongodump.md @@ -26,3 +26,7 @@ - Create a dump of a given database with a given username; user will be prompted for password: `mongodump --username {{username}} {{database}} --password` + +- Create a dump from a specific instance; host, user, password and database will be defined in the connection string: + +`mongodump --uri {{connection_string}}` diff --git a/pages/common/mongoexport.md b/pages/common/mongoexport.md new file mode 100644 index 00000000000000..d3ab448fe8e5e0 --- /dev/null +++ b/pages/common/mongoexport.md @@ -0,0 +1,32 @@ +# mongoexport + +> Produce exports of data stored in a MongoDB instance formatted as JSON or CSV. +> More information: . + +- Export a collection to `stdout`, formatted as JSON: + +`mongoexport --uri={{connection_string}} --collection={{collection_name}}` + +- Export the documents in the specified collection that match a query to a JSON file: + +`mongoexport --db={{database_name}} --collection={{collection_name}} --query="{{query_object}}" --out={{path/to/file.json}}` + +- Export documents as a JSON array instead of one object per line: + +`mongoexport --collection={{collection_name}} --jsonArray` + +- Export documents to a CSV file: + +`mongoexport --collection={{collection_name}} --type={{csv}} --fields="{{field1,field2,...}}" --out={{path/to/file.csv}}` + +- Export documents that match the query in the specified file to a CSV file, omitting the list of field names on the first line: + +`mongoexport --collection={{collection_name}} --type={{csv}} --fields="{{field1,field2,...}}" --queryFile={{path/to/file}} --noHeaderLine --out={{path/to/file.csv}}` + +- Export documents to `stdout`, formatted as human-readable JSON: + +`mongoexport --uri={{mongodb_uri}} --collection={{collection_name}} --pretty` + +- Display help: + +`mongoexport --help` diff --git a/pages/common/mongoimport.md b/pages/common/mongoimport.md new file mode 100644 index 00000000000000..58a329109531bd --- /dev/null +++ b/pages/common/mongoimport.md @@ -0,0 +1,28 @@ +# mongoimport + +> Imports content from a JSON, CSV, or TSV file into a MongoDB database. +> More information: . + +- Import a JSON file into a specific collection: + +`mongoimport --file={{path/to/file.json}} --uri={{mongodb_uri}} --collection={{collection_name}}` + +- Import a CSV file, using the first line of the file to determine field names: + +`mongoimport --type={{csv}} --file={{path/to/file.csv}} --db={{database_name}} --collection={{collection_name}}` + +- Import a JSON array, using each element as a separate document: + +`mongoimport --jsonArray --file={{path/to/file.json}}` + +- Import a JSON file using a specific mode and a query to match existing documents: + +`mongoimport --file={{path/to/file.json}} --mode={{delete|merge|upsert}} --upsertFields="{{field1,field2,...}}"` + +- Import a CSV file, reading field names from a separate CSV file and ignoring fields with empty values: + +`mongoimport --type={{csv}} --file={{path/to/file.csv}} --fieldFile={{path/to/field_file.csv}} --ignoreBlanks` + +- Display help: + +`mongoimport --help` diff --git a/pages/common/mongorestore.md b/pages/common/mongorestore.md index ef64d3cd2fba94..c5355f7105559f 100644 --- a/pages/common/mongorestore.md +++ b/pages/common/mongorestore.md @@ -3,18 +3,18 @@ > Utility to import a collection or database from a binary dump into a MongoDB instance. > More information: . -- Import a bson data dump from a directory to a MongoDB database: +- Import a BSON data dump from a directory to a MongoDB database: `mongorestore --db {{database_name}} {{path/to/directory}}` -- Import a bson data dump from a directory to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password): +- Import a BSON data dump from a directory to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password): `mongorestore --host {{database_host:port}} --db {{database_name}} --username {{username}} {{path/to/directory}} --password` -- Import a collection from a bson file to a MongoDB database: +- Import a collection from a BSON file to a MongoDB database: `mongorestore --db {{database_name}} {{path/to/file}}` -- Import a collection from a bson file to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password): +- Import a collection from a BSON file to a given database in a MongoDB server host, running at a given port, with user authentication (user will be prompted for password): `mongorestore --host {{database_host:port}} --db {{database_name}} --username {{username}} {{path/to/file}} --password` diff --git a/pages/common/monodevelop.md b/pages/common/monodevelop.md index 97ef9d523ce9a1..912320cc9adac1 100644 --- a/pages/common/monodevelop.md +++ b/pages/common/monodevelop.md @@ -3,7 +3,7 @@ > Cross platform IDE for C#, F# and more. > More information: . -- Start Monodevelop: +- Start MonoDevelop: `monodevelop` @@ -19,7 +19,7 @@ `monodevelop --new-window` -- Disable redirection of stdout and stderr to a log file: +- Disable redirection of `stdout` and `stderr` to a log file: `monodevelop --no-redirect` diff --git a/pages/common/monop.md b/pages/common/monop.md index e0b0ccec127b49..88c7a0d20cd518 100644 --- a/pages/common/monop.md +++ b/pages/common/monop.md @@ -1,6 +1,7 @@ # monop > Finds and displays signatures of Types and methods inside .NET assemblies. +> More information: . - Show the structure of a Type built-in of the .NET Framework: diff --git a/pages/common/montage.md b/pages/common/montage.md index 2c9064aa1ca6bb..453ce13f8aa6fc 100644 --- a/pages/common/montage.md +++ b/pages/common/montage.md @@ -1,6 +1,6 @@ # montage -> Imagemagick image montage tool. +> ImageMagick image montage tool. > Tiles images into a customisable grid. > More information: . @@ -20,6 +20,6 @@ `montage {{image1.png}} {{image2.jpg}} {{imageN.png}} -geometry +0+0 -tile 2x3 montage_%d.jpg` -- Resize and crop images to completely fill their grid cells before tiling: +- 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` diff --git a/pages/common/more.md b/pages/common/more.md index 1ea8a9a6770a64..6717ded34329a1 100644 --- a/pages/common/more.md +++ b/pages/common/more.md @@ -1,12 +1,21 @@ # more -> Open a file for interactive reading, allowing scrolling and search (in forward direction only). +> Open a file for interactive reading, allowing scrolling and search. +> More information: . - Open a file: -`more {{source_file}}` +`more {{path/to/file}}` -- Page down: +- Open a file displaying from a specific line: + +`more +{{line_number}} {{path/to/file}}` + +- Display help: + +`more --help` + +- Go to the next page: `` @@ -17,3 +26,7 @@ - Exit: `q` + +- Display help about interactive commands: + +`h` diff --git a/pages/common/mosquitto_pub.md b/pages/common/mosquitto_pub.md index efca91d6c3af3a..cde30e4c3d2b10 100644 --- a/pages/common/mosquitto_pub.md +++ b/pages/common/mosquitto_pub.md @@ -19,10 +19,10 @@ `mosquitto_pub -t {{sensors/temperature}} -f {{data.txt}}` -- Send the contents of a file (`data.txt`), by reading from stdin and send the entire input as a message and publish it to `sensors/temperature` topic: +- Send the contents of a file (`data.txt`), by reading from `stdin` and send the entire input as a message and publish it to `sensors/temperature` topic: `mosquitto_pub -t {{sensors/temperature}} -s < {{data.txt}}` -- Read newline delimited data from stdin as a message and publish it to `sensors/temperature` topic: +- Read newline delimited data from `stdin` as a message and publish it to `sensors/temperature` topic: `{{echo data.txt}} | mosquitto_pub -t {{sensors/temperature}} -l` diff --git a/pages/common/most.md b/pages/common/most.md index 539049129ae5df..90a62f9dd00148 100644 --- a/pages/common/most.md +++ b/pages/common/most.md @@ -1,6 +1,7 @@ # most > Open one or several files for interactive reading, allowing scrolling and search. +> More information: . - Open a file: @@ -12,7 +13,7 @@ - Open a file at the first occurrence of "string": -`most {{file}} +/{{string}}` +`most {{path/to/file}} +/{{string}}` - Move through opened files: diff --git a/pages/common/mount.md b/pages/common/mount.md index a217e30a4cdcab..fce9c6f4c7bf6b 100644 --- a/pages/common/mount.md +++ b/pages/common/mount.md @@ -1,6 +1,7 @@ # mount > Provides access to an entire filesystem in one directory. +> More information: . - Show all mounted filesystems: @@ -10,6 +11,14 @@ `mount -t {{filesystem_type}} {{path/to/device_file}} {{path/to/target_directory}}` +- Create a specific directory if it does not exist and mount a device to it: + +`mount --mkdir {{path/to/device_file}} {{path/to/target_directory}}` + +- Mount a device to a directory for a specific user: + +`mount -o uid={{user_id}},gid={{group_id}} {{path/to/device_file}} {{path/to/target_directory}}` + - Mount a CD-ROM device (with the filetype ISO9660) to `/cdrom` (readonly): `mount -t {{iso9660}} -o ro {{/dev/cdrom}} {{/cdrom}}` diff --git a/pages/common/mozillavpn.md b/pages/common/mozillavpn.md new file mode 100644 index 00000000000000..ccb72ac7fb8ff1 --- /dev/null +++ b/pages/common/mozillavpn.md @@ -0,0 +1,36 @@ +# mozillavpn + +> A Virtual Private Network from the makers of Firefox. +> More information: . + +- Log in with an interactive prompt: + +`mozillavpn login` + +- Connect to Mozilla VPN: + +`mozillavpn activate` + +- Display the connection status: + +`mozillavpn status` + +- List available servers: + +`mozillavpn servers` + +- Select a specific server: + +`mozillavpn select {{server_name}}` + +- Disconnect from Mozilla VPN: + +`mozillavpn deactivate` + +- Log out: + +`mozillavpn logout` + +- Display help for a subcommand: + +`mozillavpn {{subcommand}} --help` diff --git a/pages/common/mp3info.md b/pages/common/mp3info.md new file mode 100644 index 00000000000000..ac2afd34014863 --- /dev/null +++ b/pages/common/mp3info.md @@ -0,0 +1,28 @@ +# mp3info + +> Viewer/editor for ID3v1 (but not ID3v2) tags of MP3 files. +> More information: . + +- Show all ID3v1 tags of a specific MP3 file: + +`mp3info {{path/to/file.mp3}}` + +- Edit ID3v1 tags interactively: + +`mp3info -i {{path/to/file.mp3}}` + +- Set values for ID3v1 tags in a specific MP3 file: + +`mp3info -a "{{artist_name}}" -t "{{song_title}}" -l "{{album_title}}" -y {{year}} -c "{{comment_text}}" {{path/to/file.mp3}}` + +- Set the number of the track in the album for a specific MP3 file: + +`mp3info -n {{track_number}} {{path/to/file.mp3}}` + +- Print a list of valid genres and their numeric codes: + +`mp3info -G` + +- Set the music genre for a specific MP3 file: + +`mp3info -g {{genre_number}} {{path/to/file.mp3}}` diff --git a/pages/common/mp4box.md b/pages/common/mp4box.md index 304db9f8dbb2b4..a18a166eb75e14 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/mpd.md b/pages/common/mpd.md new file mode 100644 index 00000000000000..a5056beb1c2e40 --- /dev/null +++ b/pages/common/mpd.md @@ -0,0 +1,20 @@ +# mpd + +> Music Player Daemon. +> More information: . + +- Start MPD: + +`mpd` + +- Start MPD but don't read from the configuration file: + +`mpd --no-config` + +- Start MPD and don't detach it from the console: + +`mpd --no-daemon` + +- Kill the currently running MPD session: + +`mpd --kill` diff --git a/pages/common/mplayer.md b/pages/common/mplayer.md new file mode 100644 index 00000000000000..3d9bdbfb5bf518 --- /dev/null +++ b/pages/common/mplayer.md @@ -0,0 +1,28 @@ +# mplayer + +> Cross-platform multimedia player. +> More information: . + +- Play the specified file or URL: + +`mplayer {{path/to/file|url}}` + +- Play multiple files: + +`mplayer {{path/to/file1 path/to/file2 ...}}` + +- Play a specific file repeatedly: + +`mplayer -loop {{0}} {{path/to/file}}` + +- Pause playback: + +`` + +- Quit mplayer: + +`` + +- Seek backward or forward 10 seconds: + +` or ` diff --git a/pages/common/mpv.md b/pages/common/mpv.md index 8943e5bf8e5e20..0c5fbda527146c 100644 --- a/pages/common/mpv.md +++ b/pages/common/mpv.md @@ -5,9 +5,9 @@ - Play a video or audio file: -`mpv {{file}}` +`mpv {{path/to/file}}` -- Play a video or audio file from an URL: +- Play a video or audio file from a URL: `mpv '{{https://www.youtube.com/watch?v=dQw4w9WgXcQ}}'` @@ -19,17 +19,17 @@ `DOWN UP` -- Decrease or increase playback speed by 10 %: +- Decrease or increase playback speed by 10%: `[ ]` - Play a file at a specified speed (0.01 to 100, default 1): -`mpv --speed {{speed}} {{file}}` +`mpv --speed {{speed}} {{path/to/file}}` - Play a file using a profile defined in the `mpv.conf` file: -`mpv --profile {{profile_name}} {{file}}` +`mpv --profile {{profile_name}} {{path/to/file}}` - Display the output of webcam or other video input device: diff --git a/pages/common/mr.md b/pages/common/mr.md index fcd175cf330501..3873beffb0b7f6 100644 --- a/pages/common/mr.md +++ b/pages/common/mr.md @@ -1,6 +1,6 @@ # mr -> Myrepos manages all your version control repositories at once. +> Manage all of your version control repositories at once. > More information: . - Register a repository: diff --git a/pages/common/msbuild.md b/pages/common/msbuild.md index b7bfc1b2532ed2..289f85d36c2e53 100644 --- a/pages/common/msbuild.md +++ b/pages/common/msbuild.md @@ -1,7 +1,7 @@ # msbuild > The Microsoft build tool for Visual Studio project solutions. -> More information: . +> More information: . - Build the first project file in the current directory: diff --git a/pages/common/mscore.md b/pages/common/mscore.md index cb2bde6b7868ca..1470dc72c3362f 100644 --- a/pages/common/mscore.md +++ b/pages/common/mscore.md @@ -1,6 +1,7 @@ # mscore > This command is an alias of `musescore`. +> More information: . - View documentation for the original command: diff --git a/pages/common/msfvenom.md b/pages/common/msfvenom.md index e6f298a281f256..455358176bd9b2 100644 --- a/pages/common/msfvenom.md +++ b/pages/common/msfvenom.md @@ -17,8 +17,12 @@ - Create an ELF binary with a reverse TCP handler: -`msfvenom -p linux/x64/meterpreter/reverse_tcp LHOST={{local_ip}} LPORT={{local_port}} -f elf > {{path/to/binary}}` +`msfvenom -p linux/x64/meterpreter/reverse_tcp LHOST={{local_ip}} LPORT={{local_port}} -f elf -o {{path/to/binary}}` - Create an EXE binary with a reverse TCP handler: -`msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST={{local_ip}} LPORT={{local_port}} -f exe > {{path/to/binary.exe}}` +`msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST={{local_ip}} LPORT={{local_port}} -f exe -o {{path/to/binary.exe}}` + +- Create a raw bash with a reverse TCP handler: + +`msfvenom -p cmd/unix/reverse_bash LHOST={{local_ip}} LPORT={{local_port}} -f raw` diff --git a/pages/common/mtr.md b/pages/common/mtr.md index 7fc34dcfeba9b3..f7658d720a7c5a 100644 --- a/pages/common/mtr.md +++ b/pages/common/mtr.md @@ -22,3 +22,7 @@ - Wait for a given time (in seconds) before sending another packet to the same hop: `mtr -i {{seconds}} {{host}}` + +- Display the Autonomous System Number (ASN) for each hop: + +`mtr --aslookup {{hostname}}` diff --git a/pages/common/mu.md b/pages/common/mu.md new file mode 100644 index 00000000000000..e5a0e09e918852 --- /dev/null +++ b/pages/common/mu.md @@ -0,0 +1,32 @@ +# mu + +> Index and search emails from a local Maildir. +> More information: . + +- Initialize the email database, optionally specifying the Maildir directory and email addresses: + +`mu init --maildir={{path/to/directory}} --my-address={{name@example.com}}` + +- Index new emails: + +`mu index` + +- Find messages using a specific keyword (in message body, subject, sender, ...): + +`mu find {{keyword}}` + +- Find messages to Alice with subject `jellyfish` containing the words `apples` or `oranges`: + +`mu find to:{{alice}} subject:{{jellyfish}} {{apples}} OR {{oranges}}` + +- Find unread messages about words starting with `soc` (the `*` only works at the end of the search term) in the Sent Items folder: + +`mu find 'subject:{{soc}}*' flag:{{unread}} maildir:'/{{Sent Items}}'` + +- Find messages from Sam with attached images, between 2 KiB and 2 MiB, written in 2021: + +`mu find 'mime:{{image/*}} size:{{2k..2m}} date:{{20210101..20211231}} from:{{sam}}` + +- List contacts with `Bob` in either name or email address: + +`mu cfind {{Bob}}` diff --git a/pages/linux/mullvad.md b/pages/common/mullvad.md similarity index 100% rename from pages/linux/mullvad.md rename to pages/common/mullvad.md diff --git a/pages/common/multitail.md b/pages/common/multitail.md index e00005c7d84c18..205ec92f3aa0d3 100644 --- a/pages/common/multitail.md +++ b/pages/common/multitail.md @@ -1,7 +1,7 @@ # multitail > Extension of tail. -> More information: . +> More information: . - Tail all files matching a pattern in a single stream: @@ -9,7 +9,7 @@ - Tail all files in a directory in a single stream: -`multitail -Q 1 '{{directory}}/*'` +`multitail -Q 1 '{{path/to/directory}}/*'` - Automatically add new files to a window: diff --git a/pages/common/mumble.md b/pages/common/mumble.md new file mode 100644 index 00000000000000..5858b4869d46c2 --- /dev/null +++ b/pages/common/mumble.md @@ -0,0 +1,24 @@ +# mumble + +> Low-latency, high quality voice chat software. +> More information: . + +- Open Mumble: + +`mumble` + +- Open Mumble and immediately connect to a server: + +`mumble mumble://{{username}}@{{example.com}}` + +- Open Mumble and immediately connect to a password protected server: + +`mumble mumble://{{username}}:{{password}}@{{example.com}}` + +- Mute/unmute the microphone in a running Mumble instance: + +`mumble rpc {{mute|unmute}}` + +- Mute/unmute the microphone and the audio output of Mumble: + +`mumble rpc {{deaf|undeaf}}` diff --git a/pages/common/mupdf.md b/pages/common/mupdf.md index 63bba138af745d..dd6d35c4a6b87f 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/mutool.md b/pages/common/mutool.md index 4649927bc28a4e..c75a83327d3636 100644 --- a/pages/common/mutool.md +++ b/pages/common/mutool.md @@ -3,7 +3,7 @@ > Convert PDF files, query information and extract data. > More information: . -- Convert pages 1-10 into 10 PNG images: +- Convert pages 1-10 into 10 PNGs: `mutool convert -o {{image%d.png}} {{file.pdf}} {{1-10}}` diff --git a/pages/common/mutt.md b/pages/common/mutt.md index 8d4b6df3336f58..88e540c6acd835 100644 --- a/pages/common/mutt.md +++ b/pages/common/mutt.md @@ -17,8 +17,8 @@ - Specify a file to include as the message body: -`mutt -i {{file}} {{recipient@example.com}}` +`mutt -i {{path/to/file}} {{recipient@example.com}}` - Specify a draft file containing the header and the body of the message, in RFC 5322 format: -`mutt -H {{file}} {{recipient@example.com}}` +`mutt -H {{path/to/file}} {{recipient@example.com}}` diff --git a/pages/common/mv.md b/pages/common/mv.md index 7496f38cc3eb89..61c93721b553f6 100644 --- a/pages/common/mv.md +++ b/pages/common/mv.md @@ -3,10 +3,18 @@ > Move or rename files and directories. > More information: . -- Move files in arbitrary locations: +- Rename a file or directory when the target is not an existing directory: `mv {{source}} {{target}}` +- Move a file or directory into an existing directory: + +`mv {{source}} {{existing_directory}}` + +- Move multiple files into an existing directory, keeping the filenames unchanged: + +`mv {{source1}} {{source2}} {{source3}} {{existing_directory}}` + - Do not prompt for confirmation before overwriting existing files: `mv -f {{source}} {{target}}` diff --git a/pages/common/mvn.md b/pages/common/mvn.md index ca0ff0b37a7523..edc9ce461e904f 100644 --- a/pages/common/mvn.md +++ b/pages/common/mvn.md @@ -14,7 +14,7 @@ - Compile and package, skipping unit tests: -`mvn package -Dmaven.test.skip=true` +`mvn package -DskipTests` - Install the built package in local maven repository. (This will invoke the compile and package commands too): diff --git a/pages/common/mycli.md b/pages/common/mycli.md index b5f63943e131f7..2b877ac5e36219 100644 --- a/pages/common/mycli.md +++ b/pages/common/mycli.md @@ -1,6 +1,6 @@ # mycli -> A command line client for MySQL that can do auto-completion and syntax highlighting. +> A command-line client for MySQL that can do auto-completion and syntax highlighting. > More information: . - Connect to a local database on port 3306, using the current user's username: diff --git a/pages/common/mysqlbinlog.md b/pages/common/mysqlbinlog.md new file mode 100644 index 00000000000000..d6a72754c56bd2 --- /dev/null +++ b/pages/common/mysqlbinlog.md @@ -0,0 +1,24 @@ +# mysqlbinlog + +> Utility for processing MySQL binary log files. +> More information: . + +- Show events from a specific binary log file: + +`mysqlbinlog {{path/to/binlog}}` + +- Show entries from a binary log for a specific database: + +`mysqlbinlog --database {{database_name}} {{path/to/binlog}}` + +- Show events from a binary log between specific dates: + +`mysqlbinlog --start-datetime='{{2022-01-01 01:00:00}}' --stop-datetime='{{2022-02-01 01:00:00}}' {{path/to/binlog}}` + +- Show events from a binary log between specific positions: + +`mysqlbinlog --start-position={{100}} --stop-position={{200}} {{path/to/binlog}}` + +- Show binary log from a MySQL server on the given host: + +`mysqlbinlog --host={{hostname}} {{path/to/binlog}}` diff --git a/pages/common/mysqldump.md b/pages/common/mysqldump.md index 0f6125f220fd65..569a4a84c6715d 100644 --- a/pages/common/mysqldump.md +++ b/pages/common/mysqldump.md @@ -18,4 +18,4 @@ - Backup all databases from a remote host, redirecting the output to a file (user will be prompted for a password): -`mysqldump --host={(ip_or_hostname)} --user {{user}} --password --all-databases > ({path/to/file.sql}}` +`mysqldump --host={{ip_or_hostname}} --user {{user}} --password --all-databases > {{path/to/file.sql}}` diff --git a/pages/common/mytop.md b/pages/common/mytop.md index f30d4a63be059b..2c9220121d44ab 100644 --- a/pages/common/mytop.md +++ b/pages/common/mytop.md @@ -1,7 +1,7 @@ # mytop > Display MySQL server performance info like `top`. -> More information: . +> More information: . - Start mytop: diff --git a/pages/common/n.md b/pages/common/n.md new file mode 100644 index 00000000000000..03b6507601a7cd --- /dev/null +++ b/pages/common/n.md @@ -0,0 +1,24 @@ +# n + +> Tool to manage multiple node versions. +> More information: . + +- Install a given version of node. If the version is already installed, it will be activated: + +`n {{version}}` + +- Display installed versions and interactively activate one of them: + +`n` + +- Remove a version: + +`n rm {{version}}` + +- Execute a file with a given version: + +`n use {{version}} {{file.js}}` + +- Output binary path for a version: + +`n bin {{version}}` diff --git a/pages/common/nano.md b/pages/common/nano.md index d586723d9595c1..85e2c18a3af960 100644 --- a/pages/common/nano.md +++ b/pages/common/nano.md @@ -1,24 +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 specific file: +- Start the editor: -`nano {{path/to/file}}` +`nano` -- Open a file positioning the cursor at the specified line and column: +- Start the editor without using configuration files: + +`nano --ignorercfiles` + +- 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}}` -- Enable smooth scrolling: +- Open a file and enable soft wrapping: -`nano -S {{filename}}` +`nano --softwrap {{path/to/file}}` -- Indent new lines to the previous lines' indentation: +- Open a file and indent new lines to the previous line's indentation: -`nano -i {{filename}}` +`nano --autoindent {{path/to/file}}` -- Before modification, backup separately as `{{current_file_name}}~`: +- Open a file and create a backup file (`path/to/file~`) on save: -`nano -B {{filename}}` +`nano --backup {{path/to/file}}` diff --git a/pages/common/nbtscan.md b/pages/common/nbtscan.md index c9a170ab8878f6..165e1c2a89bf24 100644 --- a/pages/common/nbtscan.md +++ b/pages/common/nbtscan.md @@ -3,7 +3,7 @@ > Scan networks for NetBIOS name information. > More information: . -- Scan a network for NETBIOS names: +- Scan a network for NetBIOS names: `nbtscan {{192.168.0.1/24}}` diff --git a/pages/common/nc.md b/pages/common/nc.md index 72a7f722037cb9..2a25f2d23bc43a 100644 --- a/pages/common/nc.md +++ b/pages/common/nc.md @@ -1,13 +1,9 @@ # nc > Netcat is a versatile utility for working with TCP or UDP data. -> More information: . +> More information: . -- Listen on a specified port and print any data received: - -`nc -l {{port}}` - -- Connect to a certain port: +- Establish a TCP connection: `nc {{ip_address}} {{port}}` @@ -15,18 +11,26 @@ `nc -w {{timeout_in_seconds}} {{ipaddress}} {{port}}` -- Keep the server up after the client detaches: +- Scan the open TCP ports of a specified host: -`nc -k -l {{port}}` +`nc -v -z {{ip_address}} {{port}}` + +- Listen on a specified TCP port and print any data received: -- Keep the client up even after EOF: +`nc -l {{port}}` -`nc -q {{timeout}} {{ip_address}}` +- Keep the server up after the client detaches: -- Scan the open ports of a specified host: +`nc -k -l {{port}}` -`nc -v -z {{ip_address}} {{port}}` +- Listen on a specified UDP port and print connection details and any data received: + +`nc -u -l {{port}}` - Act as proxy and forward data from a local TCP port to the given remote host: `nc -l {{local_port}} | nc {{hostname}} {{remote_port}}` + +- Send a HTTP request: + +`echo -e "GET / HTTP/1.1\nHost: {{hostname}}\n\n" | nc {{hostname}} 80` diff --git a/pages/common/ncdu.md b/pages/common/ncdu.md new file mode 100644 index 00000000000000..6be8cd4570b5af --- /dev/null +++ b/pages/common/ncdu.md @@ -0,0 +1,24 @@ +# ncdu + +> Disk usage analyzer with an ncurses interface. +> More information: . + +- Analyze the current working directory: + +`ncdu` + +- Colorize output: + +`ncdu --color {{dark|off}}` + +- Analyze a given directory: + +`ncdu {{path/to/directory}}` + +- Save results to a file: + +`ncdu -o {{path/to/file}}` + +- Exclude files that match a pattern, argument can be given multiple times to add more patterns: + +`ncdu --exclude '{{*.txt}}'` diff --git a/pages/common/ncmpcpp.md b/pages/common/ncmpcpp.md index 664a2d2f4cb8fc..f6184f4a349d6c 100644 --- a/pages/common/ncmpcpp.md +++ b/pages/common/ncmpcpp.md @@ -1,6 +1,6 @@ # ncmpcpp -> A command line music player client for the Music Player Daemon. +> A command-line music player client for the Music Player Daemon. > More information: . - Connect to a music player daemon on a given host and port: diff --git a/pages/common/neato.md b/pages/common/neato.md new file mode 100644 index 00000000000000..03e3c35233a315 --- /dev/null +++ b/pages/common/neato.md @@ -0,0 +1,25 @@ +# neato + +> Render an image of a `linear undirected` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`neato -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`neato -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`neato -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{graph {this -- that} }}" | neato -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`neato -?` diff --git a/pages/common/neomutt.md b/pages/common/neomutt.md new file mode 100644 index 00000000000000..3f93c300063010 --- /dev/null +++ b/pages/common/neomutt.md @@ -0,0 +1,24 @@ +# neomutt + +> NeoMutt command line email client. +> More information: . + +- Open the specified mailbox: + +`neomutt -f {{path/to/mailbox}}` + +- Start writing an email and specify a subject and a `cc` recipient: + +`neomutt -s "{{subject}}" -c {{cc@example.com}} {{recipient@example.com}}` + +- Send an email with files attached: + +`neomutt -a {{path/to/file1 path/to/file2 ...}} -- {{recipient@example.com}}` + +- Specify a file to include as the message body: + +`neomutt -i {{path/to/file}} {{recipient@example.com}}` + +- Specify a draft file containing the header and the body of the message, in RFC 5322 format: + +`neomutt -H {{path/to/file}} {{recipient@example.com}}` diff --git a/pages/common/nest.md b/pages/common/nest.md new file mode 100644 index 00000000000000..55a0ea736f31f1 --- /dev/null +++ b/pages/common/nest.md @@ -0,0 +1,24 @@ +# nest + +> Command-line tool to initialize, develop, and maintain Nest applications. +> More information: . + +- Display information about installed nest version: + +`nest info` + +- Create a new NestJS project in a directory of the same name: + +`nest new {{project_name}}` + +- Build a specific NestJS project: + +`nest build {{project_name}}` + +- Run a specific NestJS project: + +`nest start {{project_name}}` + +- Import a library into the current NestJS project: + +`nest add {{library_name}}` diff --git a/pages/common/netcat.md b/pages/common/netcat.md new file mode 100644 index 00000000000000..94e90f60fe13f1 --- /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/netlify.md b/pages/common/netlify.md index 3ce5215ada9d7d..90c66c6e856993 100644 --- a/pages/common/netlify.md +++ b/pages/common/netlify.md @@ -1,9 +1,9 @@ # netlify > Deploy sites and configure continuous deployment to the Netlify platform. -> More information: . +> More information: . -- Login to the Netlify account: +- Log in to the Netlify account: `netlify login` diff --git a/pages/linux/netstat.md b/pages/common/netstat.md similarity index 100% rename from pages/linux/netstat.md rename to pages/common/netstat.md diff --git a/pages/common/newsboat.md b/pages/common/newsboat.md index 13bd77ce3fecfd..4dab865e0a33a8 100644 --- a/pages/common/newsboat.md +++ b/pages/common/newsboat.md @@ -15,6 +15,10 @@ `newsboat -r` +- Execute a space-separated list of commands in non-interactive mode: + +`newsboat -x {{reload print-unread ...}}` + - See keyboard shortcuts (the most relevant are visible in the status line): `?` diff --git a/pages/common/nextclade.md b/pages/common/nextclade.md new file mode 100644 index 00000000000000..cca28e9699449f --- /dev/null +++ b/pages/common/nextclade.md @@ -0,0 +1,28 @@ +# nextclade + +> Bioinformatics tool for virus genome alignment, clade assignment and qc checks. +> More information: . + +- Create a TSV report, auto-downloading the latest [d]ataset: + +`nextclade run -d {{dataset_name}} {{path/to/fasta}} -t {{path/to/output_tsv}}` + +- List all available datasets: + +`nextclade dataset list` + +- Download the latest SARS-CoV-2 dataset: + +`nextclade dataset get --name sars-cov-2 --output-dir {{path/to/directory}}` + +- Use a downloaded [D]ataset, producing all [O]utputs: + +`nextclade run -D {{path/to/dataset_dir}} -O {{path/to/output_dir}} {{path/to/dataset_dir/sequences.fasta}}` + +- Run on multiple files: + +`nextclade run -d {{dataset_name}} -t {{path/to/output_tsv}} -- {{path/to/input_fasta_1 path/to/input_fasta_2 ...}}` + +- Try reverse complement if sequence does not align: + +`nextclade run --retry-reverse-complement -d {{dataset_name}} -t {{path/to/output_tsv}} {{path/to/input_fasta}}` diff --git a/pages/common/ng.md b/pages/common/ng.md index 5d2374eb44ec28..6771dc5e69d8ce 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. +> Command-line Interface (CLI) for creating and managing Angular applications. > More information: . - Create a new Angular application inside a directory: diff --git a/pages/common/nginx.md b/pages/common/nginx.md index f35c0b577f36c2..e3ffeb68325355 100644 --- a/pages/common/nginx.md +++ b/pages/common/nginx.md @@ -7,13 +7,13 @@ `nginx` -- Start server with a custom config file: +- Start server with a custom configuration file: -`nginx -c {{config_file}}` +`nginx -c {{configuration_file}}` -- Start server with a prefix for all relative paths in the config file: +- Start server with a prefix for all relative paths in the configuration file: -`nginx -c {{config_file}} -p {{prefix/for/relative/paths}}` +`nginx -c {{configuration_file}} -p {{prefix/for/relative/paths}}` - Test the configuration without affecting the running server: diff --git a/pages/common/ngs.md b/pages/common/ngs.md new file mode 100644 index 00000000000000..00096360ccc688 --- /dev/null +++ b/pages/common/ngs.md @@ -0,0 +1,16 @@ +# ngs + +> Scripting language created specifically for Ops. +> More information: . + +- Execute a code snippet: + +`ngs -e "{{echo('ngs is executed')}}"` + +- Execute a script: + +`ngs {{path/to/script.ngs}}` + +- Print the version: + +`ngs --version` diff --git a/pages/common/nim.md b/pages/common/nim.md index 7a2fa07f451eb3..a838536fab9a35 100644 --- a/pages/common/nim.md +++ b/pages/common/nim.md @@ -2,24 +2,28 @@ > The Nim compiler. > Processes, compiles and links Nim language source files. -> More information: . +> More information: . - Compile a source file: -`nim compile {{file.nim}}` +`nim compile {{path/to/file.nim}}` - Compile and run a source file: -`nim compile -r {{file.nim}}` +`nim compile -r {{path/to/file.nim}}` - Compile a source file with release optimizations enabled: -`nim compile -d:release {{file.nim}}` +`nim compile -d:release {{path/to/file.nim}}` - Build a release binary optimized for low file size: -`nim compile -d:release --opt:size {{file.nim}}` +`nim compile -d:release --opt:size {{path/to/file.nim}}` - Generate HTML documentation for a module (output will be placed in the current directory): -`nim doc {{file.nim}}` +`nim doc {{path/to/file.nim}}` + +- Check a file for syntax and semantics: + +`nim check {{path/to/file.nim}}` diff --git a/pages/common/nix-build.md b/pages/common/nix-build.md index 8dff8751f1c235..760061f4429aff 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): +- 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 00000000000000..e3d3fcc89c73db --- /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 6c38d5d7f94946..c5f8e094ba97f3 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 f565a33ca30093..46ce588479e259 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}} {{arg1 arg2 ...}}"` - 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 {{package_name_1 package_name_2 ...}}` - 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 {{package_name_1 package_name_2 ...}} -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 {{package_name_1 package_name_2 ...}}` diff --git a/pages/common/nix-store.md b/pages/common/nix-store.md new file mode 100644 index 00000000000000..9bc8bbb5d9daf5 --- /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 bf7edabdba8b11..8f6115b9b2b4e5 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: . +> Powerful package manager that makes package management reliable, reproducible, and declarative. +> The `nix` command-line utility 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, accessible via `tldr nix3 subcommand`. +> 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 optimise-store` +`nix search nixpkgs {{search_term}}` -- Start an interactive environment for evaluating Nix expressions: +- Start a shell with the specified packages from nixpkgs available: -`nix repl` +`nix shell {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` + +- Install some packages from nixpkgs permanently: + +`nix profile install {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` -- Upgrade Nix to the latest stable version: +- Remove unused paths from Nix store to free up space: -`nix upgrade-nix` +`nix store gc` + +- Start an interactive environment for evaluating Nix expressions: + +`nix repl` diff --git a/pages/common/nix3-build.md b/pages/common/nix3-build.md new file mode 100644 index 00000000000000..63e4db636d83b0 --- /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 00000000000000..16a2b7baf9d0b2 --- /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 00000000000000..d060cdbb61a931 --- /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 00000000000000..9ed8992cd476f6 --- /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 00000000000000..5ce247843c41f7 --- /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 00000000000000..d516b028270de0 --- /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 00000000000000..d05cbb70e74231 --- /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 00000000000000..5fad773dc12bb3 --- /dev/null +++ b/pages/common/nix3-run.md @@ -0,0 +1,13 @@ +# nix run + +> Run an application from a Nix flake. +> See `tldr nix3 flake` for information about flakes. +> More information: . + +- 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 the default application in the flake in the current directory: + +`nix run` diff --git a/pages/common/nix3-search.md b/pages/common/nix3-search.md new file mode 100644 index 00000000000000..ecbe44152a7770 --- /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 00000000000000..c82753f60170da --- /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 00000000000000..1cff469d29b1aa --- /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 00000000000000..5dfd26ca59e126 --- /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/nkf.md b/pages/common/nkf.md index 5708d928f92d98..d48a60b9a05870 100644 --- a/pages/common/nkf.md +++ b/pages/common/nkf.md @@ -2,6 +2,7 @@ > Network kanji filter. > Converts kanji code from one encoding to another. +> More information: . - Convert to UTF-8 encoding: @@ -15,7 +16,7 @@ `nkf -w --overwrite {{path/to/file.txt}}` -- Set new line code to LF and overwrite (unix type): +- Set new line code to LF and overwrite (UNIX type): `nkf -d --overwrite {{path/to/file.txt}}` diff --git a/pages/common/nl.md b/pages/common/nl.md index 8b945642377203..f14d67ceaa52bf 100644 --- a/pages/common/nl.md +++ b/pages/common/nl.md @@ -5,20 +5,20 @@ - Number non-blank lines in a file: -`nl {{file}}` +`nl {{path/to/file}}` - Read from standard output: -`cat {{file}} | nl {{options}} -` +`cat {{path/to/file}} | nl {{options}} -` - Number only the lines with printable text: -`nl -t {{file}}` +`nl -t {{path/to/file}}` - Number all lines including blank lines: -`nl -b a {{file}}` +`nl -b a {{path/to/file}}` - Number only the body lines that match a basic regular expression (BRE) pattern: -`nl -b p'FooBar[0-9]' {{file}}` +`nl -b p'FooBar[0-9]' {{path/to/file}}` diff --git a/pages/common/nm-classic.md b/pages/common/nm-classic.md new file mode 100644 index 00000000000000..96e8582aad4918 --- /dev/null +++ b/pages/common/nm-classic.md @@ -0,0 +1,7 @@ +# nm-classic + +> This command is an alias of `nm`. + +- View documentation for the original command: + +`tldr nm` diff --git a/pages/common/nm.md b/pages/common/nm.md new file mode 100644 index 00000000000000..b723010f7dd707 --- /dev/null +++ b/pages/common/nm.md @@ -0,0 +1,20 @@ +# nm + +> List symbol names in object files. +> More information: . + +- List global (extern) functions in a file (prefixed with T): + +`nm -g {{path/to/file.o}}` + +- List only undefined symbols in a file: + +`nm -u {{path/to/file.o}}` + +- List all symbols, even debugging symbols: + +`nm -a {{path/to/file.o}}` + +- Demangle C++ symbols (make them readable): + +`nm --demangle {{path/to/file.o}}` diff --git a/pages/common/nmap.md b/pages/common/nmap.md index 64a076bd520da7..30346144b0aaf7 100644 --- a/pages/common/nmap.md +++ b/pages/common/nmap.md @@ -1,37 +1,37 @@ # nmap > Network exploration tool and security / port scanner. -> Some features only activate when Nmap is run with privileges. +> Some features only activate when Nmap is run with root privileges. > More information: . - Check if an IP address is up, and guess the remote host's operating system: `nmap -O {{ip_or_hostname}}` -- Try to determine whether the specified hosts are up and what are their names: +- Try to determine whether the specified hosts are up (ping scan) and what their names are: `nmap -sn {{ip_or_hostname}} {{optional_another_address}}` -- Like above, but also run a default 1000-port TCP scan if host seems up: - -`nmap {{ip_or_hostname}} {{optional_another_address}}` - - Also enable scripts, service detection, OS fingerprinting and traceroute: `nmap -A {{address_or_addresses}}` -- Assume good network connection and speed up execution: +- Scan a specific list of ports (use '-p-' for all ports from 1 to 65535): + +`nmap -p {{port1,port2,...,portN}} {{address_or_addresses}}` + +- Perform service and version detection of the top 1000 ports using default NSE scripts; writing results ('-oN') to output file: -`nmap -T4 {{address_or_addresses}}` +`nmap -sC -sV -oN {{top-1000-ports.txt}} {{address_or_addresses}}` -- Scan a specific list of ports (use `-p-` for all ports `1-65535`): +- Scan target(s) carefully using 'default and safe' NSE scripts: -`nmap -p {{port1,port2,…,portN}} {{address_or_addresses}}` +`nmap --script "default and safe" {{address_or_addresses}}` -- Perform TCP and UDP scanning (use `-sU` for UDP only, `-sZ` for SCTP, `-sO` for IP): +- Scan web server running on standard ports 80 and 443 using all available 'http-*' NSE scripts: -`nmap -sSU {{address_or_addresses}}` +`nmap --script "http-*" {{address_or_addresses}} -p 80,443` -- Perform full port, service, version detection scan with all default NSE scripts active against a host to determine weaknesses and info: +- Perform a stealthy very slow scan ('-T0') trying to avoid detection by IDS/IPS and use decoy ('-D') source IP addresses: -`nmap -sC -sV {{address_or_addresses}}` +`nmap -T0 -D {{decoy1_ipaddress,decoy2_ipaddress,...,decoyN_ipaddress}} {{address_or_addresses}}` diff --git a/pages/common/nms.md b/pages/common/nms.md index cad670e926bccf..c8a19bef202c13 100644 --- a/pages/common/nms.md +++ b/pages/common/nms.md @@ -1,6 +1,6 @@ # nms -> Command line tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers from stdin. +> Command-line tool that recreates the famous data decryption effect seen in the 1992 movie Sneakers from `stdin`. > More information: . - Decrypt text after a keystroke: diff --git a/pages/common/node.md b/pages/common/node.md index ce9ace0e1466ad..b6c42d9a163acb 100644 --- a/pages/common/node.md +++ b/pages/common/node.md @@ -11,13 +11,17 @@ `node` +- Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+): + +`node --watch {{path/to/file}}` + - Evaluate JavaScript code by passing it as an argument: `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/nodemon.md b/pages/common/nodemon.md index 7c2d0cb09ae6d5..597f41b4257522 100644 --- a/pages/common/nodemon.md +++ b/pages/common/nodemon.md @@ -5,7 +5,7 @@ - Execute the specified file and watch a specific file for changes: -`nodemon --inspect {{path/to/file.js}}` +`nodemon {{path/to/file.js}}` - Manually restart nodemon (note nodemon must already be active for this to work): @@ -19,6 +19,14 @@ `nodemon {{path/to/file.js}} {{arguments}}` -- Run non-node scripts: +- Pass arguments to node itself if they're not nodemon arguments already (e.g. `--inspect`): -`nodemon --exec "{{python --verbose}}" {{path/to/file.py}}` +`nodemon {{arguments}} {{path/to/file.js}}` + +- Run an arbitrary non-node script: + +`nodemon --exec "{{command_to_run_script}} {{options}}" {{path/to/script}}` + +- Run a Python script: + +`nodemon --exec "python {{options}}" {{path/to/file.py}}` diff --git a/pages/common/nodenv.md b/pages/common/nodenv.md index ee333568873449..bd49763f956a34 100644 --- a/pages/common/nodenv.md +++ b/pages/common/nodenv.md @@ -1,6 +1,6 @@ # nodenv -> A tool to manage NodeJS versions. +> A tool to manage Node.js versions. > More information: . - Install a specific version of Node.js: diff --git a/pages/common/nohup.md b/pages/common/nohup.md index 4dcef63dcc3b78..832b23b08ebc8d 100644 --- a/pages/common/nohup.md +++ b/pages/common/nohup.md @@ -3,6 +3,18 @@ > Allows for a process to live when the terminal gets killed. > More information: . -- Run process that can live beyond the terminal: +- Run a process that can live beyond the terminal: -`nohup {{command}} {{command_options}}` +`nohup {{command}} {{argument1 argument2 ...}}` + +- Launch `nohup` in background mode: + +`nohup {{command}} {{argument1 argument2 ...}} &` + +- Run a shell script that can live beyond the terminal: + +`nohup {{path/to/script.sh}} &` + +- Run a process and write the output to a specific file: + +`nohup {{command}} {{argument1 argument2 ...}} > {{path/to/output_file}} &` diff --git a/pages/common/nokogiri.md b/pages/common/nokogiri.md index ad7334f426d385..41fc07c771ac98 100644 --- a/pages/common/nokogiri.md +++ b/pages/common/nokogiri.md @@ -3,7 +3,7 @@ > An HTML, XML, SAX and Reader parser. > More information: . -- Parse the contents of a url or file: +- Parse the contents of a URL or file: `nokogiri {{url|path/to/file}}` @@ -11,7 +11,7 @@ `nokogiri {{url|path/to/file}} --type {{xml|html}}` -- Load a specific initialisation file before parsing: +- Load a specific initialization file before parsing: `nokogiri {{url|path/to/file}} -C {{path/to/config_file}}` diff --git a/pages/common/nop.md b/pages/common/nop.md new file mode 100644 index 00000000000000..d9f19920fa4ff0 --- /dev/null +++ b/pages/common/nop.md @@ -0,0 +1,17 @@ +# nop + +> Check validity and pretty-print graphs in canonical format. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Pretty-print one or more graphs in canonical format: + +`nop {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Check one or more graphs for validity, producing no output graph: + +`nop -p {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Display help for `nop`: + +`nop -?` diff --git a/pages/common/npm-check.md b/pages/common/npm-check.md index a5b9c51ab19219..58620b3f9645fd 100644 --- a/pages/common/npm-check.md +++ b/pages/common/npm-check.md @@ -1,7 +1,7 @@ # npm-check > Check for outdated, incorrect, and unused npm package dependencies. -> More information: . +> More information: . - Display a report of outdated, incorrect, and unused dependencies: diff --git a/pages/common/npm-fund.md b/pages/common/npm-fund.md new file mode 100644 index 00000000000000..0d6a362c73120b --- /dev/null +++ b/pages/common/npm-fund.md @@ -0,0 +1,16 @@ +# npm fund + +> Retrieve funding information from packages. +> More information: . + +- List dependencies with funding URL for the project in the current directory: + +`npm fund` + +- Open the funding URL for a specific package in the default web browser: + +`npm fund {{package}}` + +- List dependencies with a funding URL for a specific [w]orkspace for the project in the current directory: + +`npm fund -w {{workspace}}` diff --git a/pages/common/npm-home.md b/pages/common/npm-home.md new file mode 100644 index 00000000000000..163906d228476a --- /dev/null +++ b/pages/common/npm-home.md @@ -0,0 +1,16 @@ +# npm-home + +> Open the npm page, Yarn page, or GitHub repository of a package in the web browser. +> More information: . + +- Open the npm page of a specific package in the web browser: + +`npm-home {{package}}` + +- Open the GitHub repository of a specific package in the web browser: + +`npm-home -g {{package}}` + +- Open the Yarn page of a specific package in the web browser: + +`npm-home -y {{package}}` diff --git a/pages/common/npm-name.md b/pages/common/npm-name.md new file mode 100644 index 00000000000000..de7c6c1aa771f1 --- /dev/null +++ b/pages/common/npm-name.md @@ -0,0 +1,12 @@ +# npm-name + +> Check whether a package or organization name is available on npm. +> More information: . + +- Check if a specific package name is available in the npm registry: + +`npm-name {{package}}` + +- Find similar package names in the npm registry: + +`npm-name --similar {{package}}` diff --git a/pages/common/npm-query.md b/pages/common/npm-query.md new file mode 100644 index 00000000000000..19735925c9524a --- /dev/null +++ b/pages/common/npm-query.md @@ -0,0 +1,32 @@ +# npm query + +> Print an array of dependency objects using CSS-like selectors. +> More information: . + +- Print direct dependencies: + +`npm query ':root > *'` + +- Print all direct production/development dependencies: + +`npm query ':root > .{{prod|dev}}'` + +- Print dependencies with a specific name: + +`npm query '#{{package_name}}'` + +- Print dependencies with a specific name and within a semantic versioning range: + +`npm query #{{package_name}}@{{semantic_version}}` + +- Print dependencies which have no dependencies: + +`npm query ':empty'` + +- Find all dependencies with postinstall scripts and uninstall them: + +`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' -r | xargs -I {} npm uninstall {}` + +- Find all Git dependencies and print which application requires them: + +`npm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}` diff --git a/pages/common/npm-why.md b/pages/common/npm-why.md index 2d655fa3caba57..561548c674ce80 100644 --- a/pages/common/npm-why.md +++ b/pages/common/npm-why.md @@ -1,7 +1,7 @@ # npm-why > Identifies why an npm package is installed. -> More information: . +> More information: . - Show why an npm package is installed: diff --git a/pages/common/npm.md b/pages/common/npm.md index d234ecfecbdeb5..1fd495688ddf7b 100644 --- a/pages/common/npm.md +++ b/pages/common/npm.md @@ -2,7 +2,7 @@ > JavaScript and Node.js package manager. > Manage Node.js projects and their module dependencies. -> More information: . +> More information: . - Interactively create a `package.json` file: @@ -22,16 +22,16 @@ - Download a package and install it globally: -`npm install -g {{module_name}}` +`npm install --global {{module_name}}` - Uninstall a package and remove it from the list of dependencies in `package.json`: `npm uninstall {{module_name}}` -- Print a tree of locally-installed dependencies: +- Print a tree of locally installed dependencies: `npm list` - List top-level globally installed modules: -`npm list -g --depth={{0}}` +`npm list --global --depth={{0}}` diff --git a/pages/common/npx.md b/pages/common/npx.md index 92dbba9bc988f7..360bb2aefbedde 100644 --- a/pages/common/npx.md +++ b/pages/common/npx.md @@ -1,16 +1,24 @@ # npx > Execute binaries from `npm` packages. -> More information: . +> More information: . -- Execute the binary from a given npm module: +- Execute the command from a local or remote `npm` package: -`npx {{module_name}}` +`npx {{command}} {{arg1 arg2 ...}}` -- 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 specify the package name: -`npx -p {{package_name}} {{module_name}}` +`npx --package {{package_name}} {{command}}` -- View help contents: +- Run a command if it exists in the current path or in `node_modules/.bin`: + +`npx --no-install {{command}} {{command_arguments}}` + +- Execute a specific command suppressing any output from `npx` itself: + +`npx --quiet {{command}} {{arg1 arg2 ...}}` + +- Display help: `npx --help` diff --git a/pages/common/nrm.md b/pages/common/nrm.md index f877efba25653e..510d1711679f39 100644 --- a/pages/common/nrm.md +++ b/pages/common/nrm.md @@ -1,6 +1,6 @@ # nrm -> NPM registry manager. +> npm registry manager. > Helps to easily switch between different npm registries. > More information: . diff --git a/pages/common/nslookup.md b/pages/common/nslookup.md index 5f5e4667ba182f..913d032a3cc0da 100644 --- a/pages/common/nslookup.md +++ b/pages/common/nslookup.md @@ -1,6 +1,7 @@ # nslookup > Query name server(s) for various domain records. +> More information: . - Query your system's default name server for an IP address (A record) of the domain: diff --git a/pages/common/nth.md b/pages/common/nth.md new file mode 100644 index 00000000000000..9f11b9f4774cec --- /dev/null +++ b/pages/common/nth.md @@ -0,0 +1,20 @@ +# nth + +> Name That Hash - Instantly name the type of any hash. +> More information: . + +- Name a hash: + +`nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}}` + +- Name hashes in a file: + +`nth -f {{path/to/hashes}}` + +- Output in json format: + +`nth -t {{5f4dcc3b5aa765d61d8327deb882cf99}} -g` + +- Decode hash in Base64 before naming it: + +`nth -t {{NWY0ZGNjM2I1YWE3NjVkNjFkODMyN2RlYjg4MmNmOTkK}} -b64` diff --git a/pages/common/ntl.md b/pages/common/ntl.md new file mode 100644 index 00000000000000..31f498180a1be7 --- /dev/null +++ b/pages/common/ntl.md @@ -0,0 +1,8 @@ +# ntl + +> This command is an alias of `netlify`. +> More information: . + +- View documentation for the original command: + +`tldr netlify` diff --git a/pages/common/nu.md b/pages/common/nu.md new file mode 100644 index 00000000000000..953a99c760d09c --- /dev/null +++ b/pages/common/nu.md @@ -0,0 +1,21 @@ +# nu + +> Nushell ("a new type of shell") takes a modern, structured approach to your command-line. +> See also: `elvish`. +> More information: . + +- Start an interactive shell session: + +`nu` + +- Execute specific commands: + +`nu --commands "{{echo 'nu is executed'}}"` + +- Execute a specific script: + +`nu {{path/to/script.nu}}` + +- Execute a specific script with logging: + +`nu --log-level {{error|warn|info|debug|trace}} {{path/to/script.nu}}` diff --git a/pages/common/nvim.md b/pages/common/nvim.md index fb2f83cf0a8c80..c8405241031f16 100644 --- a/pages/common/nvim.md +++ b/pages/common/nvim.md @@ -1,12 +1,13 @@ # nvim > Neovim, a programmer's text editor based on Vim, provides several modes for different kinds of text manipulation. -> Pressing `i` enters edit mode. `` goes back to normal mode, which doesn't allow regular text insertion. +> Pressing `i` in normal mode enters insert mode. `` goes back to normal mode, which doesn't allow regular text insertion. +> See also `vim`, `vimtutor`, `vimdiff`. > More information: . - Open a file: -`nvim {{file}}` +`nvim {{path/to/file}}` - Enter text editing mode (insert mode): @@ -16,7 +17,7 @@ `{{yy|dd}}` -- Undo the last operation: +- Enter normal mode and undo the last operation: `u` @@ -24,11 +25,11 @@ `/{{search_pattern}}` -- Perform a regex substitution in the whole file: +- Perform a regular expression substitution in the whole file: -`:%s/{{pattern}}/{{replacement}}/g` +`:%s/{{regular_expression}}/{{replacement}}/g` -- Save (write) the file, and quit: +- Enter normal mode and save (write) the file, and quit: `:wq` diff --git a/pages/common/nvm.fish.md b/pages/common/nvm.fish.md new file mode 100644 index 00000000000000..2d7d37da83cb1d --- /dev/null +++ b/pages/common/nvm.fish.md @@ -0,0 +1,25 @@ +# nvm + +> Install, uninstall, or switch between Node.js versions under the `fish` shell. +> Supports version numbers like "12.8" or "v16.13.1", and labels like "stable", "system", etc. +> More information: . + +- Install a specific version of Node.js: + +`nvm install {{node_version}}` + +- Use a specific version of Node.js in the current shell: + +`nvm use {{node_version}}` + +- Set the default Node.js version: + +`set nvm_default_version {{node_version}}` + +- List all available Node.js versions and highlight the default one: + +`nvm list` + +- Uninstall a given Node.js version: + +`nvm uninstall {{node_version}}` diff --git a/pages/common/nvm.md b/pages/common/nvm.md index 17a4b62bcdc1e4..b3a0a4556df864 100644 --- a/pages/common/nvm.md +++ b/pages/common/nvm.md @@ -1,7 +1,7 @@ # nvm > Install, uninstall or switch between Node.js versions. -> Supports version numbers like "0.12" or "v4.2", and labels like "stable", "system", etc. +> Supports version numbers like "12.8" or "v16.13.1", and labels like "stable", "system", etc. > More information: . - Install a specific version of Node.js: diff --git a/pages/common/nvme.md b/pages/common/nvme.md new file mode 100644 index 00000000000000..c7eb20f8704847 --- /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 new file mode 100644 index 00000000000000..328b63494e1a66 --- /dev/null +++ b/pages/common/nx.md @@ -0,0 +1,28 @@ +# nx + +> CLI utility for managing `nx` workspaces. +> More information: . + +- Build a specific project: + +`nx build {{project}}` + +- Test a specific project: + +`nx test {{project}}` + +- Execute a target on a specific project: + +`nx run {{project}}:{{target}}` + +- Execute a target on multiple projects: + +`nx run-many --target {{target}} --projects {{project1}},{{project2}}` + +- Execute a target on all projects in the workspace: + +`nx run-many --target {{target}} --all` + +- Execute a target only on projects that have been changed: + +`nx affected --target {{target}}` diff --git a/pages/common/nyxt.md b/pages/common/nyxt.md new file mode 100644 index 00000000000000..83d3130a2582e9 --- /dev/null +++ b/pages/common/nyxt.md @@ -0,0 +1,20 @@ +# nyxt + +> Nyxt is a keyboard-driven web browser for power users. +> More information: . + +- List all profiles: + +`nyxt --list-data-profiles` + +- Set the `init.lisp` file path: + +`nyxt --init {{path/to/file}}` + +- Change the path to the auto-config file: + +`nyxt --auto-config {{path/to/file}}` + +- Print system information: + +`nyxt --system-information` diff --git a/pages/common/oathtool.md b/pages/common/oathtool.md new file mode 100644 index 00000000000000..25089253eede13 --- /dev/null +++ b/pages/common/oathtool.md @@ -0,0 +1,16 @@ +# oathtool + +> OATH one-time password tool. +> More information: . + +- Generate TOTP token (behaves like Google Authenticator): + +`oathtool --totp --base32 "{{secret}}"` + +- Generate a TOTP token for a specific time: + +`oathtool --totp --now "{{2004-02-29 16:21:42}}" --base32 "{{secret}}"` + +- Validate a TOTP token: + +`oathtool --totp --base32 "{{secret}}" "{{token}}"` diff --git a/pages/common/objdump.md b/pages/common/objdump.md index aafbe48ec1f81e..27d78d08a77025 100644 --- a/pages/common/objdump.md +++ b/pages/common/objdump.md @@ -1,15 +1,20 @@ # objdump > View information about object files. +> More information: . - Display the file header information: `objdump -f {{binary}}` -- Display the dis-assembled output of executable sections: +- Display the disassembled output of executable sections: `objdump -d {{binary}}` +- Display the disassembled executable sections in intel syntax: + +`objdump -M intel -d {{binary}}` + - Display a complete binary hex dump of all sections: `objdump -s {{binary}}` diff --git a/pages/common/obs.md b/pages/common/obs.md index 429ab5994ebbc4..5eabcdd01a1ac6 100644 --- a/pages/common/obs.md +++ b/pages/common/obs.md @@ -2,6 +2,7 @@ > Open Broadcaster Software. > Video recording and livestreaming program. +> More information: . - Launch OBS: diff --git a/pages/common/oc.md b/pages/common/oc.md index f789aa5ed6adcb..c3350b3b96f52a 100644 --- a/pages/common/oc.md +++ b/pages/common/oc.md @@ -28,6 +28,6 @@ `oc get pods` -- Logout from the current session: +- Log out from the current session: `oc logout` diff --git a/pages/common/ocaml.md b/pages/common/ocaml.md index 311aef7d766f8b..871b7cfc716c7e 100644 --- a/pages/common/ocaml.md +++ b/pages/common/ocaml.md @@ -11,3 +11,7 @@ - Read OCaml commands from a file and execute them: `ocaml {{path/to/file.ml}}` + +- Run OCaml script with modules: + +`ocaml {{module1}} {{module2}} {{path/to/file.ml}}` diff --git a/pages/common/ocrmypdf.md b/pages/common/ocrmypdf.md new file mode 100644 index 00000000000000..a3ae7c8273a7d8 --- /dev/null +++ b/pages/common/ocrmypdf.md @@ -0,0 +1,28 @@ +# ocrmypdf + +> Generate a searchable PDF or PDF/A from a scanned PDF or an image of text. +> More information: . + +- Create a new searchable PDF/A file from a scanned PDF or image file: + +`ocrmypdf {{path/to/input_file}} {{path/to/output.pdf}}` + +- Replace a scanned PDF file with a searchable PDF file: + +`ocrmypdf {{path/to/file.pdf}} {{path/to/file.pdf}}` + +- Skip pages of a mixed-format input PDF file that already contain text: + +`ocrmypdf --skip-text {{path/to/input.pdf}} {{path/to/output.pdf}}` + +- Clean, de-skew, and rotate pages of a poor scan: + +`ocrmypdf --clean --deskew --rotate-pages {{path/to/input_file}} {{path/to/output.pdf}}` + +- Set the metadata of the searchable PDF file: + +`ocrmypdf --title "{{title}}" --author "{{author}}" --subject "{{subject}}" --keywords "{{keyword; key phrase; ...}}" {{path/to/input_file}} {{path/to/output.pdf}}` + +- Display help: + +`ocrmypdf --help` diff --git a/pages/common/octave.md b/pages/common/octave.md new file mode 100644 index 00000000000000..e597670a05c6ad --- /dev/null +++ b/pages/common/octave.md @@ -0,0 +1,28 @@ +# octave + +> GNU Octave is a programming language for scientific computing. +> More information: . + +- Start an interactive session: + +`octave` + +- Execute a specific script file: + +`octave {{path/to/script.m}}` + +- Execute a script file with specific arguments: + +`octave {{path/to/script.m}} {{argument1 argument2 ...}}` + +- Start an interactive session with a GUI: + +`octave --gui` + +- Display help: + +`octave --help` + +- Display version: + +`octave --version` diff --git a/pages/common/odps-auth.md b/pages/common/odps-auth.md index 79aa1edd782854..ed661fd69e8566 100644 --- a/pages/common/odps-auth.md +++ b/pages/common/odps-auth.md @@ -1,6 +1,8 @@ # odps auth > User authorities in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Add a user to the current project: diff --git a/pages/common/odps-func.md b/pages/common/odps-func.md index 9aaee217c63ee3..71307a10485768 100644 --- a/pages/common/odps-func.md +++ b/pages/common/odps-func.md @@ -1,6 +1,8 @@ # odps func > Manage functions in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Show functions in the current project: diff --git a/pages/common/odps-inst.md b/pages/common/odps-inst.md index e916523aac9fc0..1ee6004a6ef379 100644 --- a/pages/common/odps-inst.md +++ b/pages/common/odps-inst.md @@ -1,6 +1,8 @@ # odps inst > Manage instances in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Show instances created by current user: diff --git a/pages/common/odps-resource.md b/pages/common/odps-resource.md index 71dbad681e19d0..2f3199838d58de 100644 --- a/pages/common/odps-resource.md +++ b/pages/common/odps-resource.md @@ -1,6 +1,8 @@ # odps resource > Manage resources in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Show resources in the current project: diff --git a/pages/common/odps-table.md b/pages/common/odps-table.md index 19bfcb46603490..793b223ee2f3bc 100644 --- a/pages/common/odps-table.md +++ b/pages/common/odps-table.md @@ -1,6 +1,8 @@ # odps table > Create and modify tables in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Create a table with partition and lifecycle: diff --git a/pages/common/odps-tunnel.md b/pages/common/odps-tunnel.md index a53537aebbd12c..36efaf83e3b10b 100644 --- a/pages/common/odps-tunnel.md +++ b/pages/common/odps-tunnel.md @@ -1,19 +1,21 @@ # odps tunnel > Data tunnel in ODPS (Open Data Processing Service). +> See also `odps`. +> More information: . - Download table to local file: -`tunnel download {{table_name}} {{file}};` +`tunnel download {{table_name}} {{path/to/file}};` - Upload local file to a table partition: -`tunnel upload {{file}} {{table_name}}/{{partition_spec}};` +`tunnel upload {{path/to/file}} {{table_name}}/{{partition_spec}};` - Upload table specifying field and record delimiters: -`tunnel upload {{file}} {{table_name}} -fd {{field_delim}} -rd {{record_delim}};` +`tunnel upload {{path/to/file}} {{table_name}} -fd {{field_delim}} -rd {{record_delim}};` - Upload table using multiple threads: -`tunnel upload {{file}} {{table_name}} -threads {{num}};` +`tunnel upload {{path/to/file}} {{table_name}} -threads {{num}};` diff --git a/pages/common/odps.md b/pages/common/odps.md index 2e67a936d8af04..95bdfc99a6d659 100644 --- a/pages/common/odps.md +++ b/pages/common/odps.md @@ -1,8 +1,10 @@ # odps -> Aliyun ODPS (Open Data Processing Service) command line tool. +> Aliyun ODPS (Open Data Processing Service) command-line tool. +> Some subcommands such as `odps inst` have their own usage documentation. +> More information: . -- Start the command line with a custom configuration file: +- Start the command-line with a custom configuration file: `odpscmd --config={{odps_config.ini}}` diff --git a/pages/common/offlineimap.md b/pages/common/offlineimap.md new file mode 100644 index 00000000000000..dd9b95febcfa8c --- /dev/null +++ b/pages/common/offlineimap.md @@ -0,0 +1,16 @@ +# offlineimap + +> Synchronize a remote IMAP server with local Maildir folders. +> More information: . + +- Synchronize once, without enabling autorefresh: + +`offlineimap -o` + +- Synchronize a specific account: + +`offlineimap -a {{account}}` + +- Synchronize a specific folder: + +`offlineimap -f {{folder}}` diff --git a/pages/common/ogr2ogr.md b/pages/common/ogr2ogr.md index cc065db4faff8a..5d7c8a129b05e9 100644 --- a/pages/common/ogr2ogr.md +++ b/pages/common/ogr2ogr.md @@ -1,24 +1,28 @@ # ogr2ogr -> Convert Simple Features data between file formats. -> More information: . +> Convert geospatial vector data between file formats. +> More information: . - Convert a Shapefile into a GeoPackage: -`ogr2ogr -f GPKG {{output}}.gpkg {{input}}.shp` +`ogr2ogr -f GPKG {{path/to/output}}.gpkg {{path/to/input}}.shp` + +- Reduce a GeoJSON to features matching a condition: + +`ogr2ogr -where '{{myProperty > 42}}' -f {{GeoJSON}} {{path/to/output.geojson}} {{path/to/input.geojson}}` - Change coordinate reference system of a GeoPackage from `EPSG:4326` to `EPSG:3857`: -`ogr2ogr -s_srs {{EPSG:4326}} -t_srs {{EPSG:3857}} -f GPKG {{output}}.gpkg {{input}}.gpkg` +`ogr2ogr -s_srs {{EPSG:4326}} -t_srs {{EPSG:3857}} -f GPKG {{path/to/output}}.gpkg {{path/to/input}}.gpkg` - Convert a CSV file into a GeoPackage, specifying the names of the coordinate columns and assigning a coordinate reference system: -`ogr2ogr -f GPKG {{output}}.gpkg {{input}}.csv -oo X_POSSIBLE_NAMES={{longitude}} -oo Y_POSSIBLE_NAMES={{latitude}} -a_srs {{EPSG:4326}}` +`ogr2ogr -f GPKG {{path/to/output}}.gpkg {{path/to/input}}.csv -oo X_POSSIBLE_NAMES={{longitude}} -oo Y_POSSIBLE_NAMES={{latitude}} -a_srs {{EPSG:4326}}` - Load a GeoPackage into a PostGIS database: -`ogr2ogr -f "PostgreSQL" PG:dbname="{{database_name}}" {{input}}.gpkg` +`ogr2ogr -f PostgreSQL PG:dbname="{{database_name}}" {{path/to/input}}.gpkg` - Clip layers of a GeoPackage file to the given bounding box: -`ogr2ogr -spat {{min_x}} {{min_y}} {{max_x}} {{max_y}} -f GPKG {{output}}.gpkg {{input}}.gpkg` +`ogr2ogr -spat {{min_x}} {{min_y}} {{max_x}} {{max_y}} -f GPKG {{path/to/output}}.gpkg {{path/to/input}}.gpkg` diff --git a/pages/common/ogrinfo.md b/pages/common/ogrinfo.md index addd1ac152a052..99db90371d1686 100644 --- a/pages/common/ogrinfo.md +++ b/pages/common/ogrinfo.md @@ -3,14 +3,30 @@ > List information about an OGR-supported data source. > More information: . -- List layers of a GeoPackage: +- List supported formats: -`ogrinfo {{input}}.gpkg` +`ogrinfo --formats` -- Get detailed information about a specific layer of a GeoPackage: +- List layers of a data source: -`ogrinfo {{input}}.gpkg {{layer_name}}` +`ogrinfo {{path/to/input.gpkg}}` -- Only show summary information about a specific layer of a GeoPackage: +- Get detailed information about a specific layer of a data source: -`ogrinfo -so {{input}}.gpkg {{layer_name}}` +`ogrinfo {{path/to/input.gpkg}} {{layer_name}}` + +- Show summary information about a specific layer of a data source: + +`ogrinfo -so {{path/to/input.gpkg}} {{layer_name}}` + +- Show summary of all layers of the data source: + +`ogrinfo -so -al {{path/to/input.gpkg}}` + +- Show detailed information of features matching a condition: + +`ogrinfo -where '{{attribute_name > 42}}' {{path/to/input.gpkg}} {{layer_name}}` + +- Update a layer in the data source with SQL: + +`ogrinfo {{path/to/input.geojson}} -dialect SQLite -sql "{{UPDATE input SET attribute_name = 'foo'}}"` diff --git a/pages/common/ogrmerge.py.md b/pages/common/ogrmerge.py.md new file mode 100644 index 00000000000000..46f4fbbf654d38 --- /dev/null +++ b/pages/common/ogrmerge.py.md @@ -0,0 +1,16 @@ +# ogrmerge.py + +> Merge several vector datasets into a single one. +> More information: . + +- Create a GeoPackage with a layer for each input Shapefile: + +`ogrmerge.py -f {{GPKG}} -o {{path/to/output.gpkg}} {{path/to/input1.shp path/to/input2.shp ...}}` + +- Create a virtual datasource (VRT) with a layer for each input GeoJSON: + +`ogrmerge.py -f {{VRT}} -o {{path/to/output.vrt}} {{path/to/input1.geojson path/to/input2.geojson ...}}` + +- Concatenate two vector datasets and store source name of dataset in attribute 'source_name': + +`ogrmerge.py -single -f {{GeoJSON}} -o {{path/to/output.geojson}} -src_layer_field_name country {{source_name}} {{path/to/input1.shp path/to/input2.shp ...}}` diff --git a/pages/common/okular.md b/pages/common/okular.md new file mode 100644 index 00000000000000..4dd2b82c60b133 --- /dev/null +++ b/pages/common/okular.md @@ -0,0 +1,28 @@ +# okular + +> View documents. +> More information: . + +- Launch document viewer: + +`okular` + +- Open specific documents: + +`okular {{path/to/file1 path/to/file2 ...}}` + +- Open a document at a specific page: + +`okular --page {{page_number}} {{path/to/file}}` + +- Open a specific document in presentation mode: + +`okular --presentation {{path/to/file}}` + +- Open a specific document and start a print dialog: + +`okular --print {{path/to/file}}` + +- Open a document and search for a specific string: + +`okular --find {{search_string}} {{path/to/file}}` diff --git a/pages/common/omz.md b/pages/common/omz.md new file mode 100644 index 00000000000000..60849aa4f96a45 --- /dev/null +++ b/pages/common/omz.md @@ -0,0 +1,32 @@ +# omz + +> Oh My Zsh command-line tool. +> More information: . + +- Update Oh My Zsh: + +`omz update` + +- Print the changes from the latest update of Oh My Zsh: + +`omz changelog` + +- Restart the current Zsh session and Oh My Zsh: + +`omz reload` + +- List all available plugins: + +`omz plugin list` + +- Enable/Disable an Oh My Zsh plugin: + +`omz plugin {{enable|disable}} {{plugin}}` + +- List all available themes: + +`omz theme list` + +- Set an Oh My Zsh theme in `~/.zshrc`: + +`omz theme set {{theme}}` diff --git a/pages/common/openai.md b/pages/common/openai.md new file mode 100644 index 00000000000000..87a616fa26c108 --- /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/openscad.md b/pages/common/openscad.md new file mode 100644 index 00000000000000..04389e12a0de1c --- /dev/null +++ b/pages/common/openscad.md @@ -0,0 +1,16 @@ +# openscad + +> Software for creating solid 3D CAD objects. +> More information: . + +- Open a file: + +`openscad {{path/to/button.scad}}` + +- Convert a file to STL: + +`openscad -o {{path/to/button.stl}} {{path/to/button.scad}}` + +- Render a file to PNG in a specific colorscheme: + +`openscad -o {{path/to/button.png}} --colorscheme {{Sunset}} {{path/to/button.scad}}` diff --git a/pages/common/openssl-genrsa.md b/pages/common/openssl-genrsa.md index 5d598cf637ae21..dce1fe873bf186 100644 --- a/pages/common/openssl-genrsa.md +++ b/pages/common/openssl-genrsa.md @@ -3,7 +3,7 @@ > OpenSSL command to generate RSA private keys. > More information: . -- Generate an RSA private key of 2048 bits to stdout: +- Generate an RSA private key of 2048 bits to `stdout`: `openssl genrsa` diff --git a/pages/common/openssl-s_client.md b/pages/common/openssl-s_client.md index 680d6ce163be3f..7b8d087ba9a23b 100644 --- a/pages/common/openssl-s_client.md +++ b/pages/common/openssl-s_client.md @@ -11,6 +11,10 @@ `openssl s_client -connect {{host}}:{{port}} OpenSSL command to generate and verify timestamps. +> More information: . + +- Generate a SHA-512 timestamp request of a specific file and output to `file.tsq`: + +`openssl ts -query -data {{path/to/file}} -sha512 -out {{path/to/file.tsq}}` + +- Check the date and metadata of a specific timestamp response file: + +`openssl ts -reply -in {{path/to/file.tsr}} -text` + +- Verify a timestamp request file and a timestamp response file from the server with an SSL certificate file: + +`openssl ts -verify -in {{path/to/file.tsr}} -queryfile {{path/to/file.tsq}} -partial_chain -CAfile {{path/to/cert.pem}}` + +- Create a timestamp response for request using key and signing certificate and output it to `file.tsr`: + +`openssl ts -reply -queryfile {{path/to/file.tsq}} -inkey {{path/to/tsakey.pem}} -signer tsacert.pem -out {{path/to/file.tsr}}` diff --git a/pages/common/openssl.md b/pages/common/openssl.md index 9ef1fea34c2f85..770a5e919498d6 100644 --- a/pages/common/openssl.md +++ b/pages/common/openssl.md @@ -1,6 +1,7 @@ # openssl > OpenSSL cryptographic toolkit. +> Some subcommands such as `openssl req` have their own usage documentation. > More information: . - Print a list of available subcommands: diff --git a/pages/common/openvpn.md b/pages/common/openvpn.md index 5920539d4b04b7..d8ebe227eb21ac 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/optipng.md b/pages/common/optipng.md index bd96b2aeabe04f..7ceeb046e00bbd 100644 --- a/pages/common/optipng.md +++ b/pages/common/optipng.md @@ -1,17 +1,17 @@ # optipng -> PNG image file optimization utility. +> PNG file optimization utility. > More information: . - Compress a PNG with default settings: `optipng {{path/to/file.png}}` -- Compress a PNG with best compression: +- Compress a PNG with the best compression: `optipng -o{{7}} {{path/to/file.png}}` -- Compress a PNG with fastest compression: +- Compress a PNG with the fastest compression: `optipng -o{{0}} {{path/to/file.png}}` diff --git a/pages/common/orca-c.md b/pages/common/orca-c.md new file mode 100644 index 00000000000000..853ddab63cfc3c --- /dev/null +++ b/pages/common/orca-c.md @@ -0,0 +1,37 @@ +# orca-c + +> A C-port of the ORCA live programming environment. +> ORCA is an esoteric programming language for creating procedural sequencers. +> More information: . + +- Start ORCA with an empty workspace: + +`orca-c` + +- Start ORCA and open a specific file: + +`orca-c {{path/to/file.orca}}` + +- Start ORCA and set a specific tempo (defaults to 120): + +`orca-c --bpm {{beats_per_minute}}` + +- Start ORCA and set the size of the grid: + +`orca-c --initial-size {{columns}}x{{rows}}` + +- Start ORCA and set the maximum number of undo steps (defaults to 100): + +`orca-c --undo-limit {{limit}}` + +- Show the main menu inside of ORCA: + +`F1` + +- Show all shortcuts inside of ORCA: + +`?` + +- Show all ORCA operators inside of ORCA: + +`Ctrl + g` diff --git a/pages/common/osage.md b/pages/common/osage.md new file mode 100644 index 00000000000000..a198b62f6cc0b6 --- /dev/null +++ b/pages/common/osage.md @@ -0,0 +1,25 @@ +# osage + +> Render an image of a `clustered` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`osage -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`osage -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`osage -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | osage -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`osage -?` diff --git a/pages/common/osmium.md b/pages/common/osmium.md new file mode 100644 index 00000000000000..842d07ed0e9a26 --- /dev/null +++ b/pages/common/osmium.md @@ -0,0 +1,36 @@ +# osmium + +> Multipurpose tool for handling OpenStreetMap (OSM) files. +> More information: . + +- Show file information: + +`osmium fileinfo {{path/to/input.osm}}` + +- Display contents: + +`osmium show {{path/to/input.osm}}` + +- Convert file format from PBF into XML: + +`osmium cat {{path/to/input.osm.pbf}} -o {{path/to/output.osm}}` + +- Extract a geographic region by the given [b]ounding box: + +`osmium extract -b {{min_longitude}},{{min_latitude}},{{max_longitude}},{{max_latitude}} {{path/to/input.pbf}} -o {{path/to/output.pbf}}` + +- Extract a geographic region by a GeoJSON file: + +`osmium extract -p {{path/to/polygon.geojson}} {{path/to/input.pbf}} -o {{path/to/output.pbf}}` + +- Filter all objects tagged as "restaurant": + +`osmium tags-filter {{path/to/input.pbf}} amenity=restaurant -o {{path/to/output.pbf}}` + +- Filter for "way" objects tagged as "highway": + +`osmium tags-filter {{path/to/input.pbf}} w/highway -o {{path/to/output.pbf}}` + +- Filter "way" and "relation" objects tagged as "building": + +`osmium tags-filter {{path/to/input.pbf}} wr/building -o {{path/to/output.pbf}}` diff --git a/pages/common/osv-scanner.md b/pages/common/osv-scanner.md new file mode 100644 index 00000000000000..be37255d7777e4 --- /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/ouch.md b/pages/common/ouch.md new file mode 100644 index 00000000000000..cfc0d367b8c57d --- /dev/null +++ b/pages/common/ouch.md @@ -0,0 +1,20 @@ +# ouch + +> Command-line utility for compressing and decompressing files and directories. +> More information: . + +- Decompress a specific file: + +`ouch decompress {{path/to/archive.tar.xz}}` + +- Decompress a file to a specific location: + +`ouch decompress {{path/to/archive.tar.xz}} --dir {{path/to/directory}}` + +- Decompress multiple files: + +`ouch decompress {{path/to/archive1.tar path/to/archive2.tar.gz ...}}` + +- Compress files: + +`ouch compress {{path/to/file1 path/to/file2 ...}} {{path/to/archive.zip}}` diff --git a/pages/common/p10k.md b/pages/common/p10k.md new file mode 100644 index 00000000000000..eb8f783c0315b2 --- /dev/null +++ b/pages/common/p10k.md @@ -0,0 +1,16 @@ +# p10k + +> Manage configurations for powerlevel10k. +> More information: . + +- Configure powerlevel10k interactively: + +`p10k configure` + +- Reload powerlevel10k: + +`p10k reload` + +- Display help: + +`p10k help` diff --git a/pages/common/p4.md b/pages/common/p4.md index f9c4055915f6d0..932baa5d6357e8 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/p5.md b/pages/common/p5.md index 2cb1d7cf92d4fe..b7035811ca04e7 100644 --- a/pages/common/p5.md +++ b/pages/common/p5.md @@ -1,7 +1,7 @@ # p5 -> P5js template builder and sketch manager. -> More information: . +> Template builder and sketch manager for p5.js. +> More information: . - Create a new p5 collection: diff --git a/pages/common/paci.md b/pages/common/paci.md index bab56494406d1e..58a461fdcce3e5 100644 --- a/pages/common/paci.md +++ b/pages/common/paci.md @@ -1,6 +1,7 @@ # paci -> A package manager for bash scripts. +> A package manager for Bash scripts. +> More information: . - Update the list of available packages and versions (it's recommended to run this before other `paci` commands): diff --git a/pages/common/packtpub.md b/pages/common/packtpub.md index a900e613985e32..cc132d8f68c8ea 100644 --- a/pages/common/packtpub.md +++ b/pages/common/packtpub.md @@ -15,7 +15,7 @@ `packtpub login` -- Logout from packtpub.com: +- Log out from packtpub.com: `packtpub logout` diff --git a/pages/common/pactl.md b/pages/common/pactl.md index 95816cfecbf6cd..2ee0e365756192 100644 --- a/pages/common/pactl.md +++ b/pages/common/pactl.md @@ -1,6 +1,7 @@ # pactl > Control a running PulseAudio sound server. +> More information: . - List all sinks (or other types - sinks are outputs and sink-inputs are active audio streams): diff --git a/pages/common/pake.md b/pages/common/pake.md new file mode 100644 index 00000000000000..8d5c896e068a88 --- /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/pandoc.md b/pages/common/pandoc.md index 6ba9e33d36105b..cd0b29cf658526 100644 --- a/pages/common/pandoc.md +++ b/pages/common/pandoc.md @@ -3,7 +3,7 @@ > Convert documents between various formats. > More information: . -- Convert file to pdf (the output format is determined by file extension): +- Convert file to PDF (the output format is determined by file extension): `pandoc {{input.md}} -o {{output.pdf}}` diff --git a/pages/common/paperkey.md b/pages/common/paperkey.md new file mode 100644 index 00000000000000..73ed52a03436c7 --- /dev/null +++ b/pages/common/paperkey.md @@ -0,0 +1,16 @@ +# paperkey + +> An OpenPGP key archiver. +> More information: . + +- Take a specific secret key and generate a text file with the secret data: + +`paperkey --secret-key {{path/to/secret_key.gpg}} --output {{path/to/secret_data.txt}}` + +- Take the secret key data in `secret_data.txt` and combine it with the public key to reconstruct the secret key: + +`paperkey --pubring {{path/to/public_key.gpg}} --secrets {{path/to/secret_data.txt}} --output {{secret_key.gpg}}` + +- Export a specific secret key and generate a text file with the secret data: + +`gpg --export-secret-key {{key}} | paperkey --output {{path/to/secret_data.txt}}` diff --git a/pages/common/parallel.md b/pages/common/parallel.md index 11f821ea54e5c0..58018b607ebc7d 100644 --- a/pages/common/parallel.md +++ b/pages/common/parallel.md @@ -7,7 +7,7 @@ `parallel gzip ::: {{file1}} {{file2}} {{file3}}` -- Read arguments from stdin, run 4 jobs at once: +- Read arguments from `stdin`, run 4 jobs at once: `ls *.txt | parallel -j4 gzip` @@ -19,7 +19,7 @@ `{{args}} | parallel -X {{command}}` -- Break stdin into ~1M blocks, feed each block to stdin of new command: +- Break `stdin` into ~1M blocks, feed each block to `stdin` of new command: `cat {{big_file.txt}} | parallel --pipe --block 1M {{command}}` diff --git a/pages/common/parquet-tools.md b/pages/common/parquet-tools.md index 29e05e15cd6acb..f7b0f5fc78b41c 100644 --- a/pages/common/parquet-tools.md +++ b/pages/common/parquet-tools.md @@ -1,7 +1,7 @@ # parquet-tools > A tool to show, inspect and manipulate Parquet file. -> More information: . +> More information: . - Display the content of a Parquet file: diff --git a/pages/common/pass.md b/pages/common/pass.md index eecdafcfa6d904..71434071c21cc3 100644 --- a/pages/common/pass.md +++ b/pages/common/pass.md @@ -31,3 +31,7 @@ - Initialize a new Git repository (any changes done by pass will be committed automatically): `pass git init` + +- Run a Git command on behalf of the password storage: + +`pass git {{command}}` diff --git a/pages/common/passwd.md b/pages/common/passwd.md index e18df872ed2944..d07ad725ea191b 100644 --- a/pages/common/passwd.md +++ b/pages/common/passwd.md @@ -1,18 +1,15 @@ # passwd > Passwd is a tool used to change a user's password. +> More information: . - Change the password of the current user interactively: `passwd` -- Change the password of the current user: +- Change the password of a specific user: -`passwd {{new_password}}` - -- Change the password of the specified user: - -`passwd {{username}} {{new_password}}` +`passwd {{username}}` - Get the current status of the user: diff --git a/pages/common/paste.md b/pages/common/paste.md index 3d07a96edc6503..4a25a1a9719fc1 100644 --- a/pages/common/paste.md +++ b/pages/common/paste.md @@ -5,11 +5,11 @@ - Join all the lines into a single line, using TAB as delimiter: -`paste -s {{file}}` +`paste -s {{path/to/file}}` - Join all the lines into a single line, using the specified delimiter: -`paste -s -d {{delimiter}} {{file}}` +`paste -s -d {{delimiter}} {{path/to/file}}` - Merge two files side by side, each in its column, using TAB as delimiter: diff --git a/pages/common/patch.md b/pages/common/patch.md index 8a92246d50cbe2..06bb86a1e295bb 100644 --- a/pages/common/patch.md +++ b/pages/common/patch.md @@ -2,6 +2,7 @@ > Patch a file (or files) with a diff file. > Note that diff files should be generated by the `diff` command. +> More information: . - Apply a patch using a diff file (filenames must be included in the diff file): diff --git a/pages/common/patchwork.md b/pages/common/patchwork.md new file mode 100644 index 00000000000000..cfe0ff3602f4e7 --- /dev/null +++ b/pages/common/patchwork.md @@ -0,0 +1,25 @@ +# patchwork + +> Render an image of a `squareified treemap` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`patchwork -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`patchwork -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`patchwork -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | patchwork -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`patchwork -?` diff --git a/pages/common/pathchk.md b/pages/common/pathchk.md index bae9ebbc65e915..e7d5fae2459491 100644 --- a/pages/common/pathchk.md +++ b/pages/common/pathchk.md @@ -3,7 +3,7 @@ > Check the validity and portability of one or more pathnames. > More information: . -- Check pathames for validity in the current system: +- Check pathnames for validity in the current system: `pathchk {{path1 path2 …}}` diff --git a/pages/common/pax.md b/pages/common/pax.md index 6a0c7e612ceef5..ba8012beb8b788 100644 --- a/pages/common/pax.md +++ b/pages/common/pax.md @@ -1,6 +1,7 @@ # pax > Archiving and copying utility. +> More information: . - List the contents of an archive: diff --git a/pages/common/pdf-parser.md b/pages/common/pdf-parser.md new file mode 100644 index 00000000000000..bbc708e53abae2 --- /dev/null +++ b/pages/common/pdf-parser.md @@ -0,0 +1,16 @@ +# pdf-parser + +> Identify fundamental elements of a PDF file without rendering it. +> More information: . + +- Display statistics for a PDF file: + +`pdf-parser --stats {{path/to/file.pdf}}` + +- Display objects of type `/Font` in a PDF file: + +`pdf-parser --type={{/Font}} {{path/to/file.pdf}}` + +- Search for strings in indirect objects: + +`pdf-parser --search={{search_string}} {{path/to/file.pdf}}` diff --git a/pages/common/pdfgrep.md b/pages/common/pdfgrep.md new file mode 100644 index 00000000000000..2a904fa9808dba --- /dev/null +++ b/pages/common/pdfgrep.md @@ -0,0 +1,24 @@ +# pdfgrep + +> Search text in PDF files. +> More information: . + +- Find lines that match pattern in a PDF: + +`pdfgrep {{pattern}} {{file.pdf}}` + +- Include file name and page number for each matched line: + +`pdfgrep --with-filename --page-number {{pattern}} {{file.pdf}}` + +- Do a case-insensitive search for lines that begin with "foo" and return the first 3 matches: + +`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}` + +- Find pattern in files with a `.pdf` extension in the current directory recursively: + +`pdfgrep --recursive {{pattern}}` + +- Find pattern on files that match a specific glob in the current directory recursively: + +`pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}` diff --git a/pages/common/pdfimages.md b/pages/common/pdfimages.md index c23d325e26c65f..1ee396a3096cbd 100644 --- a/pages/common/pdfimages.md +++ b/pages/common/pdfimages.md @@ -1,6 +1,7 @@ # pdfimages > Utility for extracting images from PDFs. +> More information: . - Extract all images from a PDF file and save them as PNGs: diff --git a/pages/common/pdfjam.md b/pages/common/pdfjam.md new file mode 100644 index 00000000000000..2aef4d122a5f9a --- /dev/null +++ b/pages/common/pdfjam.md @@ -0,0 +1,28 @@ +# pdfjam + +> Shell frontend for the LaTeX pdfpages package for mingling PDFs. +> More information: . + +- Merge two (or more) PDFs: + +`pdfjam {{path/to/file1.pdf}} {{path/to/file2.pdf}} --outfile {{path/to/output_file.pdf}}` + +- Merge the first page of each file together: + +`pdfjam {{files...}} 1 --outfile {{path/to/output_file.pdf}}` + +- Merge subranges from two PDFs: + +`pdfjam {{path/to/file1.pdf 3-5,1}} {{path/to/file2.pdf 4-6}} --outfile {{path/to/output_file.pdf}}` + +- Sign an A4 page (adjust delta to height for other formats) with a scanned signature by overlaying them: + +`pdfjam {{path/to/file.pdf}} {{path/to/signature}} --fitpaper true --outfile {{path/to/signed.pdf}} --nup "{{1x2}}" --delta "{{0 -842pt}}"` + +- Arrange the pages from the input file into a fancy 2x2 grid: + +`pdfjam {{path/to/file.pdf}} --nup {{2x2}} --suffix {{4up}} --preamble '{{\usepackage{fancyhdr} \pagestyle{fancy}}}'` + +- Reverse the order of pages within each given file and concatenate them: + +`pdfjam {{files...}} {{last-1}} --suffix {{reversed}}` diff --git a/pages/common/pdfjoin.md b/pages/common/pdfjoin.md index ad0e3081a5d171..b02501632c5fca 100644 --- a/pages/common/pdfjoin.md +++ b/pages/common/pdfjoin.md @@ -1,15 +1,20 @@ # pdfjoin -> PDF merging utility. +> PDF merging utility based on pdfjam. +> More information: . -- Merge two PDFs: +- Merge two PDFs into one with the default suffix "joined": -`pdfjoin {{file1}} {{file2}} --outfile {{output_file}}` +`pdfjoin {{path/to/file1.pdf}} {{path/to/file2.pdf}}` -- Save pages 3 to 5 followed by page 1 to a new PDF: +- Merge the first page of each given file together: -`pdfjoin {{file 3-5,1}} --outfile {{output_file}}` +`pdfjoin {{path/to/file1.pdf path/to/file2.pdf ...}} {{1}} --outfile {{output_file}}` -- Merge subranges from two PDFs: +- Save pages 3 to 5 followed by page 1 to a new PDF with custom suffix: -`pdfjoin {{file1 3-5,1}} {{file2 4-6}} --outfile {{output_file}}` +`pdfjoin {{path/to/file.pdf}} {{3-5,1}} --suffix {{rearranged}}` + +- Merge page subranges from two PDFs: + +`pdfjoin {/path/to/file1.pdf}} {{2-}} {{file2}} {{last-3}} --outfile {{output_file}}` diff --git a/pages/common/pdflatex.md b/pages/common/pdflatex.md index 3ca07cbd62fa37..b2bca83096b6cc 100644 --- a/pages/common/pdflatex.md +++ b/pages/common/pdflatex.md @@ -11,6 +11,6 @@ `pdflatex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a PDF document, halting on each error: +- Compile a PDF document, exiting on each error: `pdflatex -halt-on-error {{source.tex}}` diff --git a/pages/common/pdfposter.md b/pages/common/pdfposter.md index 7581850cc8a524..10e084eb08dd8c 100644 --- a/pages/common/pdfposter.md +++ b/pages/common/pdfposter.md @@ -1,6 +1,6 @@ # pdfposter -> Convert a large-sheeted pdf into multiple A4 pages for printing. +> Convert a large-sheeted PDF into multiple A4 pages for printing. > More information: . - Convert an A2 poster into 4 A4 pages: diff --git a/pages/common/pdftex.md b/pages/common/pdftex.md index df5616ebf0d303..4a202557a605b3 100644 --- a/pages/common/pdftex.md +++ b/pages/common/pdftex.md @@ -11,6 +11,6 @@ `pdftex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a PDF document, halting on each error: +- Compile a PDF document, exiting on each error: `pdftex -halt-on-error {{source.tex}}` diff --git a/pages/common/pdftocairo.md b/pages/common/pdftocairo.md index 04f5bfe04cdd6e..ab0d9532036f8e 100644 --- a/pages/common/pdftocairo.md +++ b/pages/common/pdftocairo.md @@ -23,6 +23,6 @@ `pdftocairo {{path/to/file.pdf}} -tiff -gray -paper A3` -- Convert to PNG cropping x and y pixels from the top left corner: +- Convert to PNG cropping x and y pixels from the top-left corner: `pdftocairo {{path/to/file.pdf}} -png -x {{x_pixels}} -y {{y_pixels}}` diff --git a/pages/common/pdftotext.md b/pages/common/pdftotext.md index 17abc2ee1d121b..ef4956a98bf6f8 100644 --- a/pages/common/pdftotext.md +++ b/pages/common/pdftotext.md @@ -1,6 +1,7 @@ # pdftotext > Convert PDF files to plain text format. +> More information: . - Convert `filename.pdf` to plain text and print it to standard output: diff --git a/pages/common/peco.md b/pages/common/peco.md new file mode 100644 index 00000000000000..233b5c3f31b25a --- /dev/null +++ b/pages/common/peco.md @@ -0,0 +1,16 @@ +# peco + +> Interactive filtering tool. +> More information: . + +- Start peco on all files in the specified directory: + +`find {{path/to/directory}} -type f | peco` + +- Start peco for running processes: + +`ps aux | peco` + +- Start peco with a specified query: + +`peco --query "{{query}}"` diff --git a/pages/common/perl.md b/pages/common/perl.md index dc3037ced440a5..7c24ecdff02da8 100644 --- a/pages/common/perl.md +++ b/pages/common/perl.md @@ -19,18 +19,18 @@ `perl -d {{script.pl}}` -- Loo[p] over all lines of a file, editing them [i]n-place using a find/replace [e]xpression: +- Edit all file lines [i]n-place with a specific replacement [e]xpression, saving a backup with a new extension: -`perl -p -i -e 's/{{find}}/{{replace}}/g' {{filename}}` +`perl -p -i'.{{extension}}' -e 's/{{regular_expression}}/{{replacement}}/g' {{path/to/file}}` -- Run a find/replace expression on a file, saving the original file with a given extension: +- Run a multi-line replacement [e]xpression on a file, and save the result in a specific file: -`perl -p -i'.old' -e 's/{{find}}/{{replace}}/g' {{filename}}` +`perl -p -e 's/{{foo\nbar}}/{{foobar}}/g' {{path/to/input_file}} > {{path/to/output_file}}` -- Run a multi-line find/replace expression on a file, and save the result in another file: +- Run a regular [e]xpression on `stdin`, printing matching [l]ines: -`perl -p0e 's/{{foo\nbar}}/{{foobar}}/g' {{input_file}} > {{output_file}}` +`cat {{path/to/file}} | perl -n -l -e 'print if /{{regular_expression}}/'` -- Run a regular expression on stdin, printing out the first capture group for each line: +- Run a regular [e]xpression on `stdin`, printing only the first capture group for each matching [l]ine: -`cat {{path/to/input_file}} | perl -nle 'if (/.*({{foo}}).*/) {print "$1"; last;}'` +`cat {{path/to/file}} | perl -n -l -e 'print $1 if /{{before}}({{regular_expression}}){{after}}/'` diff --git a/pages/common/pest.md b/pages/common/pest.md index 223da6e337a179..9f024339b5d081 100644 --- a/pages/common/pest.md +++ b/pages/common/pest.md @@ -3,7 +3,7 @@ > A PHP testing framework with a focus on simplicity. > More information: . -- Initialise a standard Pest configuration in the current directory: +- Initialize a standard Pest configuration in the current directory: `pest --init` @@ -15,7 +15,7 @@ `pest --group {{name}}` -- Run tests and print the coverage report to stdout: +- Run tests and print the coverage report to `stdout`: `pest --coverage` diff --git a/pages/common/pfetch.md b/pages/common/pfetch.md new file mode 100644 index 00000000000000..6e146562ce3cd7 --- /dev/null +++ b/pages/common/pfetch.md @@ -0,0 +1,24 @@ +# pfetch + +> Display system information. +> More information: . + +- Display the ASCII art and default fields: + +`pfetch` + +- Display only the ASCII art and color palette fields: + +`PF_INFO="{{ascii palette}}" pfetch` + +- Display all possible fields: + +`PF_INFO="{{ascii title os host kernel uptime pkgs memory shell editor wm de palette}}" pfetch` + +- Display a different username and hostname: + +`USER="{{user}}" HOSTNAME="{{hostname}}" pfetch` + +- Display without colors: + +`PF_COLOR={{0}} pfetch` diff --git a/pages/common/pg_dump.md b/pages/common/pg_dump.md index b57372d13155e6..b394e3642e12f5 100644 --- a/pages/common/pg_dump.md +++ b/pages/common/pg_dump.md @@ -3,7 +3,7 @@ > Extract a PostgreSQL database into a script file or other archive file. > More information: . -- Dump database into a SQL-script file: +- Dump database into an SQL-script file: `pg_dump {{db_name}} > {{output_file.sql}}` diff --git a/pages/common/pg_dumpall.md b/pages/common/pg_dumpall.md new file mode 100644 index 00000000000000..c8f4feedf9afdd --- /dev/null +++ b/pages/common/pg_dumpall.md @@ -0,0 +1,28 @@ +# pg_dumpall + +> Extract a PostgreSQL database cluster into a script file or other archive file. +> More information: . + +- Dump all databases: + +`pg_dumpall > {{path/to/file.sql}}` + +- Dump all databases using a specific username: + +`pg_dumpall --username={{username}} > {{path/to/file.sql}}` + +- Same as above, customize host and port: + +`pg_dumpall -h {{host}} -p {{port}} > {{output_file.sql}}` + +- Dump all databases into a custom-format archive file with moderate compression: + +`pg_dumpall -Fc > {{output_file.dump}}` + +- Dump only database data into an SQL-script file: + +`pg_dumpall --data-only > {{path/to/file.sql}}` + +- Dump only schema (data definitions) into an SQL-script file: + +`pg_dumpall -s > {{output_file.sql}}` diff --git a/pages/common/pg_isready.md b/pages/common/pg_isready.md new file mode 100644 index 00000000000000..c757f31e85a612 --- /dev/null +++ b/pages/common/pg_isready.md @@ -0,0 +1,16 @@ +# pg_isready + +> Check the connection status of a PostgreSQL server. +> More information: . + +- Check connection: + +`pg_isready` + +- Check connection with a specific hostname and port: + +`pg_isready --host={{hostname}} --port={{port}}` + +- Check connection displaying a message only when the connection fails: + +`pg_isready --quiet` diff --git a/pages/common/pgrep.md b/pages/common/pgrep.md index 50bbe43967d8b4..a721c50876f8a5 100644 --- a/pages/common/pgrep.md +++ b/pages/common/pgrep.md @@ -7,7 +7,7 @@ `pgrep {{process_name}}` -- Search for processes including their command line options: +- Search for processes including their command-line options: `pgrep --full "{{process_name}} {{parameter}}"` diff --git a/pages/common/phan.md b/pages/common/phan.md index b219863fea2621..fad67ed0548dcb 100644 --- a/pages/common/phan.md +++ b/pages/common/phan.md @@ -11,11 +11,11 @@ `phan --init --init-level {{level}}` -- Analyse the current directory: +- Analyze the current directory: `phan` -- Analyse one or more directories: +- Analyze one or more directories: `phan --directory {{path/to/directory}} --directory {{path/to/another_directory}}` diff --git a/pages/common/phing.md b/pages/common/phing.md index adbc60147d1d7b..d9407491a94434 100644 --- a/pages/common/phing.md +++ b/pages/common/phing.md @@ -7,7 +7,7 @@ `phing` -- Initialise a new build file: +- Initialize a new build file: `phing -i {{path/to/build.xml}}` diff --git a/pages/common/php-artisan.md b/pages/common/php-artisan.md index d9f069b12d8d9e..ae12f56e103714 100644 --- a/pages/common/php-artisan.md +++ b/pages/common/php-artisan.md @@ -1,13 +1,13 @@ # php artisan -> Laravel's Artisan command line interface. +> Laravel's Artisan command-line interface. > More information: . - Start PHP's built-in web server for the current Laravel application: `php artisan serve` -- Start an interactive PHP command line interface: +- Start an interactive PHP command-line interface: `php artisan tinker` diff --git a/pages/common/php-cs-fixer.md b/pages/common/php-cs-fixer.md new file mode 100644 index 00000000000000..b0f8fbd3483aec --- /dev/null +++ b/pages/common/php-cs-fixer.md @@ -0,0 +1,36 @@ +# PHP-CS-Fixer + +> Automatic coding style fixer for PHP. +> More information: . + +- Execute code style fixing in the current directory: + +`php-cs-fixer fix` + +- Execute code style fixing for a specific directory: + +`php-cs-fixer fix {{path/to/directory}}` + +- Execute code style linting without applying changes: + +`php-cs-fixer fix --dry-run` + +- Execute code style fixes using specific rules: + +`php-cs-fixer fix --rules={{rules}}` + +- Display the rules that have been applied: + +`php-cs-fixer fix --verbose` + +- Output the results in a different format: + +`php-cs-fixer fix --format={{txt|json|xml|checkstyle|junit|gitlab}}` + +- Display files that require fixing: + +`php-cs-fixer list-files` + +- Describe a rule or ruleset: + +`php-cs-fixer describe {{rule}}` diff --git a/pages/common/php-yii.md b/pages/common/php-yii.md index 0b033103ac1d20..aa446524fe17fa 100644 --- a/pages/common/php-yii.md +++ b/pages/common/php-yii.md @@ -1,6 +1,6 @@ # php yii -> Yii Framework's command line interface. +> Yii Framework's command-line interface. > More information: . - Display a list of all available commands: diff --git a/pages/common/php.md b/pages/common/php.md index 60e7fb3290d40e..9c9cee5ad0044d 100644 --- a/pages/common/php.md +++ b/pages/common/php.md @@ -1,15 +1,15 @@ # php -> PHP command line interface. +> PHP command-line interface. > More information: . -- Parse and execute a php script: +- Parse and execute a PHP script: -`php {{file}}` +`php {{path/to/file}}` - Check syntax on (i.e. lint) a PHP script: -`php -l {{file}}` +`php -l {{path/to/file}}` - Run PHP interactively: @@ -30,3 +30,7 @@ - Display information about the current PHP configuration: `php -i` + +- Display information about a specific function: + +`php --rf {{function_name}}` diff --git a/pages/common/phpcpd.md b/pages/common/phpcpd.md index 4eaf5d2dd0ac20..fbefeb0f6585a5 100644 --- a/pages/common/phpcpd.md +++ b/pages/common/phpcpd.md @@ -3,11 +3,11 @@ > A copy and paste detector for PHP code. > More information: . -- Analyse duplicated code for a specific file or directory: +- Analyze duplicated code for a specific file or directory: `phpcpd {{path/to/file_or_directory}}` -- Analyse using fuzzy matching for variable names: +- Analyze using fuzzy matching for variable names: `phpcpd --fuzzy {{path/to/file_or_directory}}` diff --git a/pages/common/phploc.md b/pages/common/phploc.md index b6d1f44289657e..107c2c72feba7e 100644 --- a/pages/common/phploc.md +++ b/pages/common/phploc.md @@ -3,7 +3,7 @@ > A tool for quickly measuring the size and analyzing the structure of a PHP project. > More information: . -- Analyse a directory and print the result: +- Analyze a directory and print the result: `phploc {{path/to/directory}}` diff --git a/pages/common/phpmd.md b/pages/common/phpmd.md index b631f5bc89fb15..524c6c74a024e2 100644 --- a/pages/common/phpmd.md +++ b/pages/common/phpmd.md @@ -23,7 +23,7 @@ `phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --exclude {{directory_patterns}}` -- Output the results to a file instead of stdout: +- Output the results to a file instead of `stdout`: `phpmd {{path/to/file_or_directory}} {{xml|text|html}} {{rulesets}} --reportfile {{path/to/report_file}}` diff --git a/pages/common/phpstan.md b/pages/common/phpstan.md index 9c20f289f461f4..32e13dfdeb361d 100644 --- a/pages/common/phpstan.md +++ b/pages/common/phpstan.md @@ -7,19 +7,19 @@ `phpstan analyse --help` -- Analyse the specified space-separated directories: +- Analyze the specified space-separated directories: `phpstan analyse {{path/to/directory}}` -- Analyse a directory using a configuration file: +- Analyze a directory using a configuration file: `phpstan analyse {{path/to/directory}} --configuration {{path/to/config}}` -- Analyse using a specific rule level (0-7, higher is stricter): +- Analyze using a specific rule level (0-7, higher is stricter): `phpstan analyse {{path/to/directory}} --level {{level}}` -- Specify an autoload file to load before analysing: +- Specify an autoload file to load before analyzing: `phpstan analyse {{path/to/directory}} --autoload-file {{path/to/autoload_file}}` diff --git a/pages/common/phpunit.md b/pages/common/phpunit.md index 345769fb92532c..08fc952f6025d8 100644 --- a/pages/common/phpunit.md +++ b/pages/common/phpunit.md @@ -17,4 +17,4 @@ - Run tests and generate a coverage report in HTML: -`phpunit --coverage-html {{directory}}` +`phpunit --coverage-html {{path/to/directory}}` diff --git a/pages/common/piactl.md b/pages/common/piactl.md index 951ca9107019e9..3128412881c6b2 100644 --- a/pages/common/piactl.md +++ b/pages/common/piactl.md @@ -1,7 +1,7 @@ # piactl -> The command line tool for Private Internet Access, a commercial VPN provider. -> More information: . +> The command-line tool for Private Internet Access, a commercial VPN provider. +> More information: . - Log in to Private Internet Access: diff --git a/pages/common/pic.md b/pages/common/pic.md new file mode 100644 index 00000000000000..eb54e1cda72864 --- /dev/null +++ b/pages/common/pic.md @@ -0,0 +1,13 @@ +# pic + +> Picture preprocessor for the groff (GNU Troff) document formatting system. +> See also `groff` and `troff`. +> More information: . + +- Process input with pictures, saving the output for future typesetting with groff to PostScript: + +`pic {{path/to/input.pic}} > {{path/to/output.roff}}` + +- Typeset input with pictures to PDF using the [me] macro package: + +`pic -T {{pdf}} {{path/to/input.pic}} | groff -{{me}} -T {{pdf}} > {{path/to/output.pdf}}` diff --git a/pages/common/picom-trans.md b/pages/common/picom-trans.md new file mode 100644 index 00000000000000..3bcc03a9ac2365 --- /dev/null +++ b/pages/common/picom-trans.md @@ -0,0 +1,20 @@ +# picom-trans + +> Set the window opacity for the `picom` window compositor. +> More information: . + +- Set the currently focused window opacity to a specific percentage: + +`picom-trans --current --opacity {{90}}` + +- Set the opacity of a window with a specific name: + +`picom-trans --name {{Firefox}} --opacity {{90}}` + +- Set the opacity of a specific window selected via mouse cursor: + +`picom-trans --select --opacity {{90}}` + +- Toggle the opacity of a specific window: + +`picom-trans --name {{Firefox}} --toggle` diff --git a/pages/common/pigz.md b/pages/common/pigz.md index 2ea8a1be54a71f..a981d72a4828fc 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/ping.md b/pages/common/ping.md index 1b72e6f30a3133..00d495d7c6906c 100644 --- a/pages/common/ping.md +++ b/pages/common/ping.md @@ -1,6 +1,7 @@ # ping > Send ICMP ECHO_REQUEST packets to network hosts. +> More information: . - Ping host: diff --git a/pages/common/ping6.md b/pages/common/ping6.md index 26280c9aa475bd..8fd4ab2fec881d 100644 --- a/pages/common/ping6.md +++ b/pages/common/ping6.md @@ -1,6 +1,7 @@ # ping6 > Send ICMP ECHO_REQUEST packets to network hosts via IPv6 address. +> More information: . - Ping a host: diff --git a/pages/common/pinky.md b/pages/common/pinky.md index 6e047f2e3bb1a6..cc7876b74366a2 100644 --- a/pages/common/pinky.md +++ b/pages/common/pinky.md @@ -1,6 +1,7 @@ # pinky > Print user information using the `finger` protocol. +> More information: . - Display details about the current user: diff --git a/pages/common/pint.md b/pages/common/pint.md new file mode 100644 index 00000000000000..15b2391a447f73 --- /dev/null +++ b/pages/common/pint.md @@ -0,0 +1,24 @@ +# Pint + +> An opinionated PHP code style fixer based on PHP-CS-Fixer. +> More information: . + +- Execute code style fixing: + +`pint` + +- Display all files that are changed: + +`pint -v` + +- Execute code style linting without applying changes: + +`pint --test` + +- Execute code style fixes using a specific config file: + +`pint --config {{path/to/pint.json}}` + +- Execute code style fixes using a specific preset: + +`pint --preset {{psr12}}` diff --git a/pages/common/pinta.md b/pages/common/pinta.md new file mode 100644 index 00000000000000..7d5d18a2c4bcf9 --- /dev/null +++ b/pages/common/pinta.md @@ -0,0 +1,12 @@ +# pinta + +> Pinta is a free, open source program for drawing and image editing. +> More information: . + +- Start Pinta: + +`pinta` + +- Open specific files: + +`pinta {{path/to/image1 path/to/image2 ...}}` diff --git a/pages/common/pio-account.md b/pages/common/pio-account.md index 80d7384332cf09..72b3b136c5ab23 100644 --- a/pages/common/pio-account.md +++ b/pages/common/pio-account.md @@ -1,6 +1,6 @@ # pio account -> Manage your PlatformIO account in the command line. +> Manage your PlatformIO account in the command-line. > More information: . - Register a new PlatformIO account: @@ -11,11 +11,11 @@ `pio account destroy` -- Login to your PlatformIO account: +- Log in to your PlatformIO account: `pio account login --username {{username}} --password {{password}}` -- Logout of your PlatformIO account: +- Log out of your PlatformIO account: `pio account logout` diff --git a/pages/common/pio-ci.md b/pages/common/pio-ci.md new file mode 100644 index 00000000000000..8c0a1568dfdbf4 --- /dev/null +++ b/pages/common/pio-ci.md @@ -0,0 +1,29 @@ +# pio ci + +> Build PlatformIO projects with an arbitrary source code structure. +> This will create a new temporary project which the source code will be copied into. +> More information: . + +- Build a PlatformIO project in the default system temporary directory and delete it afterwards: + +`pio ci {{path/to/project}}` + +- Build a PlatformIO project and specify specific libraries: + +`pio ci --lib {{path/to/library_directory}} {{path/to/project}}` + +- Build a PlatformIO project and specify a specific board (`pio boards` lists all of them): + +`pio ci --board {{board}} {{path/to/project}}` + +- Build a PlatformIO project in a specific directory: + +`pio ci --build-dir {{path/to/build_directory}} {{path/to/project}}` + +- Build a PlatformIO project and don't delete the build directory: + +`pio ci --keep-build-dir {{path/to/project}}` + +- Build a PlatformIO project using a specific configuration file: + +`pio ci --project-conf {{path/to/platformio.ini}}` diff --git a/pages/common/pio-device.md b/pages/common/pio-device.md index eae76c849802df..6c25f6573e641f 100644 --- a/pages/common/pio-device.md +++ b/pages/common/pio-device.md @@ -23,7 +23,7 @@ `pio device monitor --baud {{57600}}` -- Start an interactive device monitor and set a specific EOL character (defults to `CRLF`): +- Start an interactive device monitor and set a specific EOL character (defaults to `CRLF`): `pio device monitor --eol {{CRLF|CR|LF}}` diff --git a/pages/common/pio-init.md b/pages/common/pio-init.md new file mode 100644 index 00000000000000..c8840b6cb57df9 --- /dev/null +++ b/pages/common/pio-init.md @@ -0,0 +1,7 @@ +# pio init + +> This command is an alias of `pio project init`. + +- View documentation for the original command: + +`tldr pio project` diff --git a/pages/common/pio-platform.md b/pages/common/pio-platform.md index 158415b4f71b55..47e4545103922b 100644 --- a/pages/common/pio-platform.md +++ b/pages/common/pio-platform.md @@ -21,7 +21,7 @@ - Update installed development platforms: -`pio platfom update` +`pio platform update` - Uninstall a development platform: diff --git a/pages/common/pio-project.md b/pages/common/pio-project.md index 879a1f40abd57d..071af7f4015029 100644 --- a/pages/common/pio-project.md +++ b/pages/common/pio-project.md @@ -7,7 +7,7 @@ `pio project init` -- Initialize a new PlatformIO project in a specific direcdory: +- Initialize a new PlatformIO project in a specific directory: `pio project init --project-dir {{path/to/project_directory}}` diff --git a/pages/common/pio-remote.md b/pages/common/pio-remote.md new file mode 100644 index 00000000000000..da8c2cbc98deff --- /dev/null +++ b/pages/common/pio-remote.md @@ -0,0 +1,33 @@ +# pio remote + +> Helper command for PlatformIO Remote Development. +> `pio remote [command]` takes the same arguments as its locally executing counterpart `pio [command]`. +> More information: . + +- List all active Remote Agents: + +`pio remote agent list` + +- Start a new Remote Agent with a specific name and share it with friends: + +`pio remote agent start --name {{agent_name}} --share {{example1@example.com}} --share {{example2@example.com}}` + +- List devices from specified Agents (omit `--agent` to specify all Agents): + +`pio remote --agent {{agent_name1}} --agent {{agent_name2}} device list` + +- Connect to the serial port of a remote device: + +`pio remote --agent {{agent_name}} device monitor` + +- Run all targets on a specified Agent: + +`pio remote --agent {{agent_name}} run` + +- Update installed core packages, development platforms and global libraries on a specific Agent: + +`pio remote --agent {{agent_name}} update` + +- Run all tests in all environments on a specific Agent: + +`pio remote --agent {{agent_name}} test` diff --git a/pages/common/pio-run.md b/pages/common/pio-run.md new file mode 100644 index 00000000000000..4c01eb8995e061 --- /dev/null +++ b/pages/common/pio-run.md @@ -0,0 +1,28 @@ +# pio run + +> Run PlatformIO project targets. +> More information: . + +- List all available project targets: + +`pio run --list-targets` + +- List all available project targets of a specific environment: + +`pio run --list-targets --environment {{environment}}` + +- Run all targets: + +`pio run` + +- Run all targets of specified environments: + +`pio run --environment {{environment1}} --environment {{environment2}}` + +- Run specified targets: + +`pio run --target {{target1}} --target {{target2}}` + +- Run the targets of a specified configuration file: + +`pio run --project-conf {{path/to/platformio.ini}}` diff --git a/pages/common/pio-system.md b/pages/common/pio-system.md index 026cb464f15600..fb5879ff5d3e3e 100644 --- a/pages/common/pio-system.md +++ b/pages/common/pio-system.md @@ -3,7 +3,7 @@ > Miscellaneous system commands for PlatformIO. > More information: . -- Install shell completion for the current shell (supports bash, fish, zsh and powershell): +- Install shell completion for the current shell (supports Bash, Fish, Zsh and PowerShell): `pio system completion install` diff --git a/pages/common/pio-test.md b/pages/common/pio-test.md new file mode 100644 index 00000000000000..49643e07d3652f --- /dev/null +++ b/pages/common/pio-test.md @@ -0,0 +1,28 @@ +# pio test + +> Run local tests on a PlatformIO project. +> More information: . + +- Run all tests in all environments of the current PlatformIO project: + +`pio test` + +- Test only specific environments: + +`pio test --environment {{environment1}} --environment {{environment2}}` + +- Run only tests whose name matches a specific glob pattern: + +`pio test --filter "{{pattern}}"` + +- Ignore tests whose name matches a specific glob pattern: + +`pio test --ignore "{{pattern}}"` + +- Specify a port for firmware uploading: + +`pio test --upload-port {{upload_port}}` + +- Specify a custom configuration file for running the tests: + +`pio test --project-conf {{path/to/platformio.ini}}` diff --git a/pages/common/pio.md b/pages/common/pio.md index 91dd57392d9ff6..dd6aad770682ce 100644 --- a/pages/common/pio.md +++ b/pages/common/pio.md @@ -1,6 +1,7 @@ # pio > Development environment for embedded boards. +> Some subcommands such as `pio run` have their own usage documentation. > More information: . - Show help and list subcommands: diff --git a/pages/common/pip-install.md b/pages/common/pip-install.md index 565039dcad69b2..e7d528615494d5 100644 --- a/pages/common/pip-install.md +++ b/pages/common/pip-install.md @@ -13,8 +13,12 @@ - Install packages listed in a file: -`pip install -r {{requirements.txt}}` +`pip install --requirement {{path/to/requirements.txt}}` + +- Install packages from an URL or local file archive (.tar.gz | .whl): + +`pip install --find-links {{url|path/to/file}}` - Install the local package in the current directory in develop (editable) mode: -`pip install -e .` +`pip install --editable {{.}}` diff --git a/pages/common/pip-uninstall.md b/pages/common/pip-uninstall.md new file mode 100644 index 00000000000000..fd3c056c7d454a --- /dev/null +++ b/pages/common/pip-uninstall.md @@ -0,0 +1,16 @@ +# pip uninstall + +> Uninstall Python packages. +> More information: . + +- Uninstall a package: + +`pip uninstall {{package_name}}` + +- Uninstall packages listed in a specific file: + +`pip uninstall --requirement {{path/to/requirements.txt}}` + +- Uninstall package without asking for confirmation: + +`pip uninstall --yes {{package_name}}` diff --git a/pages/common/pip.md b/pages/common/pip.md index 48a6fe94ee0519..72ae925cd6d58f 100644 --- a/pages/common/pip.md +++ b/pages/common/pip.md @@ -1,15 +1,20 @@ # pip > Python package manager. +> Some subcommands such as `pip install` have their own usage documentation. > More information: . - Install a package (see `pip install` for more install examples): `pip install {{package_name}}` +- Install a package to the user's directory instead of the system-wide default location: + +`pip install --user {{package}}` + - Upgrade a package: -`pip install -U {{package_name}}` +`pip install --upgrade {{package_name}}` - Uninstall a package: @@ -22,3 +27,7 @@ - Show installed package info: `pip show {{package_name}}` + +- Install packages from a file: + +`pip install --requirement {{requirements.txt}}` diff --git a/pages/common/pip3.md b/pages/common/pip3.md index da1b560abbef6c..8284250e238663 100644 --- a/pages/common/pip3.md +++ b/pages/common/pip3.md @@ -29,7 +29,7 @@ - Install packages from a file: -`pip3 install --requirements {{requirements.txt}}` +`pip3 install --requirement {{requirements.txt}}` - Show installed package info: diff --git a/pages/common/pipx.md b/pages/common/pipx.md index 6d2bf06e9c91dc..8f1b68e0639414 100644 --- a/pages/common/pipx.md +++ b/pages/common/pipx.md @@ -1,7 +1,7 @@ # pipx > Install and run python applications in isolated environments. -> More information: . +> More information: . - Run an app in a temporary virtual environment: @@ -18,3 +18,11 @@ - Run an app in a temporary virtual environment with a package name different from the executable: `pipx run --spec {{httpx-cli}} {{httpx}} {{http://www.github.com}}` + +- Inject dependencies into an existing virtual environment: + +`pipx inject {{package}} {{dependency1 dependency2 ...}}` + +- Install a package in a virtual environment with pip arguments: + +`pipx install --pip-args='{{pip-args}}' {{package}}` diff --git a/pages/common/pixiecore.md b/pages/common/pixiecore.md new file mode 100644 index 00000000000000..61581af22531e3 --- /dev/null +++ b/pages/common/pixiecore.md @@ -0,0 +1,16 @@ +# pixiecore + +> Tool to manage the network booting of machines. +> More information: . + +- Start a PXE boot server which provides a `netboot.xyz` boot image: + +`pixiecore {{quick}} xyz --dhcp-no-bind` + +- Start a new PXE boot server which provides an Ubuntu boot image: + +`pixiecore {{quick}} ubuntu --dhcp-no-bind` + +- Get a list of all available boot images for quick mode: + +`pixiecore quick --help` diff --git a/pages/common/pixterm.md b/pages/common/pixterm.md new file mode 100644 index 00000000000000..ec1208419035e2 --- /dev/null +++ b/pages/common/pixterm.md @@ -0,0 +1,21 @@ +# pixterm + +> Image printing in the terminal. +> See also: `chafa`, `catimg`. +> More information: . + +- Render a static image directly in the terminal: + +`pixterm {{path/to/file}}` + +- Use the image's original aspect ratio: + +`pixterm -s 2 {{path/to/file}}` + +- Specify a custom aspect ratio using a specific number of [t]erminal [r]ows and [c]olumns: + +`pixterm -tr {{24}} -tc {{80}} {{path/to/file}}` + +- Filter the output with a [m]atte background color and character [d]ithering: + +`pixterm -m {{000000}} -d 2 {{path/to/file}}` diff --git a/pages/linux/pkg-config.md b/pages/common/pkg-config.md similarity index 100% rename from pages/linux/pkg-config.md rename to pages/common/pkg-config.md diff --git a/pages/common/pkill.md b/pages/common/pkill.md index aeff3ca6ed97a7..175a464c94ae75 100644 --- a/pages/common/pkill.md +++ b/pages/common/pkill.md @@ -6,11 +6,15 @@ - Kill all processes which match: -`pkill -9 "{{process_name}}"` +`pkill "{{process_name}}"` - Kill all processes which match their full command instead of just the process name: -`pkill -9 --full "{{command_name}}"` +`pkill -f "{{command_name}}"` + +- Force kill matching processes (can't be blocked): + +`pkill -9 "{{process_name}}"` - Send SIGUSR1 signal to processes which match: diff --git a/pages/common/platformio.md b/pages/common/platformio.md index 3e96be7246ff18..07d6fdd17e545b 100644 --- a/pages/common/platformio.md +++ b/pages/common/platformio.md @@ -1,6 +1,7 @@ # platformio > This command is an alias of `pio`. +> More information: . - View documentation for the original command: diff --git a/pages/common/play.md b/pages/common/play.md index 886337f183171b..6b81692bb95017 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 from the command-line, with audio formats identified by the extension. > More information: . - Play the given audio file: diff --git a/pages/common/plenv.md b/pages/common/plenv.md new file mode 100644 index 00000000000000..863e3e105cc693 --- /dev/null +++ b/pages/common/plenv.md @@ -0,0 +1,32 @@ +# plenv + +> Switch between multiple versions of Perl. +> More information: . + +- Show the currently selected Perl version and how it was selected: + +`plenv version` + +- List all available installed Perl versions: + +`plenv versions` + +- Set the global Perl version (used unless a local or shell version takes priority): + +`plenv global {{version}}` + +- Set the local application-specific Perl version (used in the current directory and all directories below it): + +`plenv local {{version}}` + +- Set the shell-specific Perl version (used for the current session only): + +`plenv shell {{version}}` + +- Display help: + +`plenv` + +- Display help for a command: + +`plenv help {{command}}` diff --git a/pages/common/plocate.md b/pages/common/plocate.md new file mode 100644 index 00000000000000..60f9864808cf94 --- /dev/null +++ b/pages/common/plocate.md @@ -0,0 +1,13 @@ +# plocate + +> Find filenames quickly. +> Make sure to run `sudo updatedb` to include new files. +> More information: . + +- Look for patterns in the database (recomputed periodically): + +`plocate {{pattern}}` + +- Look for a file by its exact filename (a pattern containing no globbing characters is interpreted as `*pattern*`): + +`plocate */{{filename}}` diff --git a/pages/common/pm2.md b/pages/common/pm2.md index 618422a84a0e69..6af63a0762645a 100644 --- a/pages/common/pm2.md +++ b/pages/common/pm2.md @@ -6,7 +6,7 @@ - Start a process with a name that can be used for later operations: -`pm2 start {{app.js}} --name {{myapp}}` +`pm2 start {{app.js}} --name {{application_name}}` - List processes: @@ -18,11 +18,11 @@ - Stop a process: -`pm2 stop {{myapp}}` +`pm2 stop {{application_name}}` - Restart a process: -`pm2 restart {{myapp}}` +`pm2 restart {{application_name}}` - Dump all processes for resurrecting them later: @@ -31,7 +31,3 @@ - Resurrect previously dumped processes: `pm2 resurrect` - -- Launch monitoring: - -`pm2 monit` diff --git a/pages/common/pngcheck.md b/pages/common/pngcheck.md index 60285efe1ed587..7512ed34b2e8b8 100644 --- a/pages/common/pngcheck.md +++ b/pages/common/pngcheck.md @@ -15,7 +15,7 @@ `pngcheck -cvt {{image.png}}` -- Receive an image from stdin and display detailed information: +- Receive an image from `stdin` and display detailed information: `cat {{path/to/image.png}} | pngcheck -cvt` diff --git a/pages/common/pngcrush.md b/pages/common/pngcrush.md index f44168c6815262..46dfabba259266 100644 --- a/pages/common/pngcrush.md +++ b/pages/common/pngcrush.md @@ -1,13 +1,13 @@ # pngcrush -> PNG image compression utility. +> PNG compression utility. > More information: . - Compress a PNG file: `pngcrush {{in.png}} {{out.png}}` -- Compress all PNGs and output to directory: +- Compress all PNGs and output them to the specified directory: `pngcrush -d {{path/to/output}} *.png` diff --git a/pages/common/pngquant.md b/pages/common/pngquant.md new file mode 100644 index 00000000000000..2860e6734e0c49 --- /dev/null +++ b/pages/common/pngquant.md @@ -0,0 +1,36 @@ +# pngquant + +> PNG converter and lossy image compressor. +> More information: . + +- Compress a specific PNG as much as possible and write result to a new file: + +`pngquant {{path/to/file.png}}` + +- Compress a specific PNG and override original: + +`pngquant --ext .png --force {{path/to/file.png}}` + +- Try to compress a specific PNG with custom quality (skip if below the min value): + +`pngquant --quality {{0-100}} {{path/to/file.png}}` + +- Compress a specific PNG with the number of colors reduced to 64: + +`pngquant {{64}} {{path/to/file.png}}` + +- Compress a specific PNG and skip if the file is larger than the original: + +`pngquant --skip-if-larger {{path/to/file.png}}` + +- Compress a specific PNG and remove metadata: + +`pngquant --strip {{path/to/file.png}}` + +- Compress a specific PNG and save it to the given path: + +`pngquant {{path/to/file.png}} --output {{path/to/file.png}}` + +- Compress a specific PNG and show progress: + +`pngquant --verbose {{path/to/file.png}}` diff --git a/pages/common/pnpm.md b/pages/common/pnpm.md new file mode 100644 index 00000000000000..08f7436c4510b2 --- /dev/null +++ b/pages/common/pnpm.md @@ -0,0 +1,37 @@ +# pnpm + +> Fast, disk space efficient package manager for Node.js. +> Manage Node.js projects and their module dependencies. +> More information: . + +- Create a `package.json` file: + +`pnpm init` + +- Download all the packages listed as dependencies in `package.json`: + +`pnpm install` + +- Download a specific version of a package and add it to the list of dependencies in `package.json`: + +`pnpm add {{module_name}}@{{version}}` + +- Download a package and add it to the list of [D]ev dependencies in `package.json`: + +`pnpm add -D {{module_name}}` + +- Download a package and install it [g]lobally: + +`pnpm add -g {{module_name}}` + +- Uninstall a package and remove it from the list of dependencies in `package.json`: + +`pnpm remove {{module_name}}` + +- Print a tree of locally installed modules: + +`pnpm list` + +- List top-level [g]lobally installed modules: + +`pnpm list -g --depth={{0}}` diff --git a/pages/common/pnpx.md b/pages/common/pnpx.md new file mode 100644 index 00000000000000..21231ed4fc82c7 --- /dev/null +++ b/pages/common/pnpx.md @@ -0,0 +1,16 @@ +# pnpx + +> Directly execute binaries from npm packages, using `pnpm` instead of `npm`. +> More information: . + +- Execute the binary from a given npm module: + +`pnpx {{module_name}}` + +- Execute a specific binary from a given npm module, in case the module has multiple binaries: + +`pnpx --package {{package_name}} {{module_name}}` + +- Display help: + +`pnpx --help` diff --git a/pages/common/podman-build.md b/pages/common/podman-build.md new file mode 100644 index 00000000000000..a4e3d59eb58c71 --- /dev/null +++ b/pages/common/podman-build.md @@ -0,0 +1,25 @@ +# podman build + +> Daemonless tool for building container images. +> Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`. +> More information: . + +- Create an image using a `Dockerfile` or `Containerfile` in the specified directory: + +`podman build {{path/to/directory}}` + +- Create an image with a specified tag: + +`podman build --tag {{image_name:version}} {{path/to/directory}}` + +- Create an image from a non-standard file: + +`podman build --file {{Containerfile.different}} .` + +- Create an image without using any previously cached images: + +`podman build --no-cache {{path/to/directory}}` + +- Create an image suppressing all output: + +`podman build --quiet {{path/to/directory}}` diff --git a/pages/common/podman-compose.md b/pages/common/podman-compose.md new file mode 100644 index 00000000000000..99cd6936ad3548 --- /dev/null +++ b/pages/common/podman-compose.md @@ -0,0 +1,36 @@ +# podman-compose + +> Run and manage Compose Specification container definition. +> More information: . + +- List all running containers: + +`podman-compose ps` + +- Create and start all containers in the background using a local `docker-compose.yml`: + +`podman-compose up -d` + +- Start all containers, building if needed: + +`podman-compose up --build` + +- Start all containers using an alternate compose file: + +`podman-compose {{path/to/file}} up` + +- Stop all running containers: + +`podman-compose stop` + +- Remove all containers, networks, and volumes: + +`podman-compose down --volumes` + +- Follow logs for a container (omit all container names): + +`podman-compose logs --follow {{container_name}}` + +- Run a one-time command in a service with no ports mapped: + +`podman-compose run {{service_name}} {{command}}` diff --git a/pages/common/podman-image.md b/pages/common/podman-image.md new file mode 100644 index 00000000000000..e9dda97d89ef49 --- /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 00000000000000..8312aa64558c67 --- /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-machine.md b/pages/common/podman-machine.md new file mode 100644 index 00000000000000..e05cd00debcc52 --- /dev/null +++ b/pages/common/podman-machine.md @@ -0,0 +1,33 @@ +# podman machine + +> Create and manage virtual machines running Podman. +> Included with Podman version 4 or greater. +> More information: . + +- List existing machines: + +`podman machine ls` + +- Create a new default machine: + +`podman machine init` + +- Create a new machine with a specific name: + +`podman machine init {{name}}` + +- Create a new machine with different resources: + +`podman machine init --cpus={{4}} --memory={{4096}} --disk-size={{50}}` + +- Start or stop a machine: + +`podman machine {{start|stop}} {{name}}` + +- Connect to a running machine via SSH: + +`podman machine ssh {{name}}` + +- Inspect information about a machine: + +`podman machine inspect {{name}}` diff --git a/pages/common/podman-ps.md b/pages/common/podman-ps.md new file mode 100644 index 00000000000000..d77dbaa5eac2fb --- /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 00000000000000..3b72560ede6c1c --- /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 00000000000000..043f14120cbbae --- /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/podman.md b/pages/common/podman.md index 8e3e743438df74..340994344f88d8 100644 --- a/pages/common/podman.md +++ b/pages/common/podman.md @@ -1,36 +1,36 @@ # podman > Simple management tool for pods, containers and images. -> Podman provides a Docker-CLI comparable command line. Simply put: `alias docker=podman`. -> More information: . - -- Print out information about containers: - -`podman ps` +> Podman provides a Docker-CLI comparable command-line. Simply put: `alias docker=podman`. +> More information: . - List all containers (both running and stopped): `podman ps --all` -- Start one or more containers: +- Create a container from an image, with a custom name: + +`podman run --name {{container_name}} {{image}}` + +- Start or stop an existing container: -`podman start {{container_name}} {{container_id}}` +`podman {{start|stop}} {{container_name}}` -- Stop one or more running containers: +- Pull an image from a registry (defaults to Docker Hub): -`podman stop {{container_name}} {{container_id}}` +`podman pull {{image}}` -- Pull an image from a registry (defaults to the Docker Hub): +- Display the list of already downloaded images: -`podman pull {{image_name}}:{{image_tag}}` +`podman images` -- Open a shell inside of an already running container: +- Open a shell inside an already running container: `podman exec --interactive --tty {{container_name}} {{sh}}` -- Remove one or more stopped containers: +- Remove a stopped container: -`podman rm {{container_name}} {{container_id}}` +`podman rm {{container_name}}` - Display the logs of one or more containers and follow log output: diff --git a/pages/common/poetry.md b/pages/common/poetry.md index 76bf7c5e24330b..fc1ffe6bb52f86 100644 --- a/pages/common/poetry.md +++ b/pages/common/poetry.md @@ -1,7 +1,7 @@ # poetry > Manage Python packages and dependencies. -> More information: . +> More information: . - Create a new Poetry project in the directory with a specific name: @@ -11,6 +11,10 @@ `poetry add {{dependency}}` +- Install a development dependency and its subdependencies: + +`poetry add --group dev {{dependency}}` + - Interactively initialize the current directory as a new Poetry project: `poetry init` @@ -22,3 +26,7 @@ - Execute a command inside the project's virtual environment: `poetry run {{command}}` + +- Bump the minor version of the project in `pyproject.toml`: + +`poetry version minor` diff --git a/pages/common/popd.md b/pages/common/popd.md index ed488b32dd088e..dc142c5c833209 100644 --- a/pages/common/popd.md +++ b/pages/common/popd.md @@ -2,6 +2,7 @@ > Remove a directory placed on the directory stack via the pushd shell built-in. > See also `pushd` to place a directory on the stack and `dirs` to display directory stack contents. +> More information: . - Remove the top directory from the stack and cd to it: diff --git a/pages/common/powershell.md b/pages/common/powershell.md new file mode 100644 index 00000000000000..981d0cef230818 --- /dev/null +++ b/pages/common/powershell.md @@ -0,0 +1,37 @@ +# powershell + +> Command-line shell and scripting language designed especially for system administration. +> See also: `pwsh`. +> More information: . + +- Start an interactive shell session: + +`powershell` + +- Start an interactive shell session without loading startup configs: + +`powershell -NoProfile` + +- Execute specific commands: + +`powershell -Command "{{echo 'powershell is executed'}}"` + +- Execute a specific script: + +`powershell -File {{path/to/script.ps1}}` + +- Start a session with a specific version of PowerShell: + +`powershell -Version {{version}}` + +- Prevent a shell from exit after running startup commands: + +`powershell -NoExit` + +- Describe the format of data sent to PowerShell: + +`powershell -InputFormat {{Text|XML}}` + +- Determine how an output from PowerShell is formatted: + +`powershell -OutputFormat {{Text|XML}}` diff --git a/pages/common/pppd.md b/pages/common/pppd.md new file mode 100644 index 00000000000000..063ac6842283c8 --- /dev/null +++ b/pages/common/pppd.md @@ -0,0 +1,9 @@ +# pppd + +> Establish Point-to-Point connection to another computer. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`pppd` diff --git a/pages/common/prettier.md b/pages/common/prettier.md new file mode 100644 index 00000000000000..309ccdb4633484 --- /dev/null +++ b/pages/common/prettier.md @@ -0,0 +1,28 @@ +# prettier + +> An opinionated code formatter for JavaScript, JSON, CSS, YAML, and more. +> More information: . + +- Format a file and print the result to `stdout`: + +`prettier {{path/to/file}}` + +- Check if a specific file has been formatted: + +`prettier --check {{path/to/file}}` + +- Run with a specific configuration file: + +`prettier --config {{path/to/config_file}} {{path/to/file}}` + +- Format a file or directory, replacing the original: + +`prettier --write {{path/to/file_or_directory}}` + +- Format files or directories recursively using single quotes and no trailing commas: + +`prettier --single-quote --trailing-comma {{none}} --write {{path/to/file_or_directory}}` + +- Format JavaScript and TypeScript files recursively, replacing the original: + +`prettier --write "**/*.{js,jsx,ts,tsx}"` diff --git a/pages/common/pretty-bytes.md b/pages/common/pretty-bytes.md index 41922f61d6af2c..d0747eae87f336 100644 --- a/pages/common/pretty-bytes.md +++ b/pages/common/pretty-bytes.md @@ -1,13 +1,13 @@ # pretty-bytes -> Convert bytes to a human readable string. +> Convert bytes to a human-readable string. > More information: . -- Convert numeric bytes value to a human readable string: +- Convert numeric bytes value to a human-readable string: `pretty-bytes {{1337}}` -- Convert numeric bytes value from stdin to a human readable string: +- Convert numeric bytes value from `stdin` to a human-readable string: `echo {{1337}} | pretty-bytes` diff --git a/pages/common/printf.md b/pages/common/printf.md index 9fc0e1c35b74a0..c22e650a20c993 100644 --- a/pages/common/printf.md +++ b/pages/common/printf.md @@ -11,7 +11,7 @@ `printf "{{\e[1;34m%.3d\e[0m\n}}" {{42}}` -- Print a float number with the unicode Euro sign: +- Print a float number with the Unicode Euro sign: `printf "{{\u20AC %.2f\n}}" {{123.4}}` diff --git a/pages/common/procs.md b/pages/common/procs.md new file mode 100644 index 00000000000000..047082e67e4001 --- /dev/null +++ b/pages/common/procs.md @@ -0,0 +1,24 @@ +# procs + +> Display information about the active processes. +> More information: . + +- List all processes showing the PID, user, CPU usage, memory usage, and the command which started them: + +`procs` + +- List information about processes, if the commands which started them contain `zsh`: + +`procs {{zsh}}` + +- List information about all processes sorted by CPU time in [a]scending or [d]escending order: + +`procs {{--sorta|--sortd}} cpu` + +- List information about processes with either a PID, command, or user containing `41` or `firefox`: + +`procs --or {{PID|command|user}} {{41}} {{firefox}}` + +- List information about processes with both PID `41` and a command or user containing `zsh`: + +`procs --and {{41}} {{zsh}}` diff --git a/pages/common/progpilot.md b/pages/common/progpilot.md index 6c330e757e9984..ab6d16c8add2f8 100644 --- a/pages/common/progpilot.md +++ b/pages/common/progpilot.md @@ -3,11 +3,11 @@ > A PHP static analysis tool for detecting security vulnerabilities. > More information: . -- Analyse the current directory: +- Analyze the current directory: `progpilot` -- Analyse a specific file or directory: +- Analyze a specific file or directory: `progpilot {{path/to/file_or_directory}}` diff --git a/pages/common/progress.md b/pages/common/progress.md new file mode 100644 index 00000000000000..202661635034e5 --- /dev/null +++ b/pages/common/progress.md @@ -0,0 +1,20 @@ +# progress + +> Display/Monitor the progress of running coreutils. +> More information: . + +- Show the progress of running coreutils: + +`progress` + +- Show the progress of running coreutils in quiet mode: + +`progress -q` + +- Launch and monitor a single long-running command: + +`{{command}} & progress --monitor --pid $!` + +- Include an estimate of time remaining for completion: + +`progress --wait --command {{firefox}}` diff --git a/pages/common/projucer.md b/pages/common/projucer.md new file mode 100644 index 00000000000000..a5bd184835ee10 --- /dev/null +++ b/pages/common/projucer.md @@ -0,0 +1,28 @@ +# Projucer + +> A project manager for JUCE framework applications. +> More information: . + +- Display information about a project: + +`Projucer --status {{path/to/project_file}}` + +- Resave all files and resources in a project: + +`Projucer --resave {{path/to/project_file}}` + +- Update the version number in a project: + +`Projucer --set-version {{version_number}} {{path/to/project_file}}` + +- Generate a JUCE project from a PIP file: + +`Projucer --create-project-from-pip {{path/to/PIP}} {{path/to/output}}` + +- Remove all JUCE-style comments (`//=====`, `//-----` or `///////`): + +`Projucer --tidy-divider-comments {{path/to/target_folder}}` + +- Display help: + +`Projucer --help` diff --git a/pages/common/promtool.md b/pages/common/promtool.md index ec3dd651be6693..3e44d5c49ffc1a 100644 --- a/pages/common/promtool.md +++ b/pages/common/promtool.md @@ -11,7 +11,7 @@ `promtool check rules {{rules_file.yml}}` -- Pass Prometheus metrics over stdin to check them for consistency and correctness: +- Pass Prometheus metrics over `stdin` to check them for consistency and correctness: `curl --silent {{http://example.com:9090/metrics/}} | promtool check metrics` diff --git a/pages/common/protector.md b/pages/common/protector.md new file mode 100644 index 00000000000000..f5ecfddaf44ac8 --- /dev/null +++ b/pages/common/protector.md @@ -0,0 +1,16 @@ +# protector + +> Protect or unprotect branches on GitHub repositories. +> More information: . + +- Protect branches of a GitHub repository (create branch protection rules): + +`protector {{branches_regex}} -repos {{organization/repository}}` + +- Use the dry run to see what would be protected (can also be used for freeing): + +`protector -dry-run {{branches_regex}} -repos {{organization/repository}}` + +- Free branches of a GitHub repository (delete branch protection rules): + +`protector -free {{branches_regex}} -repos {{organization/repository}}` diff --git a/pages/common/prqlc.md b/pages/common/prqlc.md new file mode 100644 index 00000000000000..cc9f18e2e91cb5 --- /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/ps.md b/pages/common/ps.md index 5d8cb3af2809c2..aef4b6d7c5b8e9 100644 --- a/pages/common/ps.md +++ b/pages/common/ps.md @@ -1,6 +1,7 @@ # ps > Information about running processes. +> More information: . - List all running processes: @@ -22,7 +23,7 @@ `ps --user $(id -u) f` -- Get the parent pid of a process: +- Get the parent PID of a process: `ps -o ppid= -p {{pid}}` diff --git a/pages/common/psalm.md b/pages/common/psalm.md index 098283b57b4e82..e96f67ecd393f4 100644 --- a/pages/common/psalm.md +++ b/pages/common/psalm.md @@ -7,15 +7,15 @@ `psalm --init` -- Analyse the current working directory: +- Analyze the current working directory: `psalm` -- Analyse a specific directory or file: +- Analyze a specific directory or file: `psalm {{path/to/file_or_directory}}` -- Analyse a project with a specific configuration file: +- Analyze a project with a specific configuration file: `psalm --config {{path/to/psalm.xml}}` @@ -23,10 +23,10 @@ `psalm --show-info` -- Analyse a project and display statistics: +- Analyze a project and display statistics: `psalm --stats` -- Analyse a project in parallel with 4 threads: +- Analyze a project in parallel with 4 threads: `psalm --threads {{4}}` diff --git a/pages/common/psql.md b/pages/common/psql.md index 8d2c303d763fb7..2c83bdfeeb9836 100644 --- a/pages/common/psql.md +++ b/pages/common/psql.md @@ -3,15 +3,15 @@ > PostgreSQL command-line client. > More information: . -- Connect to database. It connects to localhost using default port 5432 with default user as currently logged in user: +- Connect to the database. By default, it connects to the local socket using port 5432 with the currently logged in user: `psql {{database}}` -- Connect to database on given server host running on given port with given username, without a password prompt: +- Connect to the database on given server host running on given port with given username, without a password prompt: `psql -h {{host}} -p {{port}} -U {{username}} {{database}}` -- Connect to database; user will be prompted for password: +- Connect to the database; user will be prompted for password: `psql -h {{host}} -p {{port}} -U {{username}} -W {{database}}` diff --git a/pages/common/pssh.md b/pages/common/pssh.md index 76c08313a29d3c..8f21aa6619e501 100644 --- a/pages/common/pssh.md +++ b/pages/common/pssh.md @@ -1,6 +1,7 @@ # pssh > Parallel SSH program. +> More information: . - Run a command on two hosts, and print its output on each server inline: diff --git a/pages/common/ptargrep.md b/pages/common/ptargrep.md new file mode 100644 index 00000000000000..65f5e0f728e9dc --- /dev/null +++ b/pages/common/ptargrep.md @@ -0,0 +1,20 @@ +# ptargrep + +> Find regular expression patterns in one or more tar archive files. +> More information: . + +- Search for a pattern within a tar file: + +`ptargrep "{{search_pattern}}" {{path/to/file}}` + +- Search for a pattern within multiple files: + +`ptargrep "{{search_pattern}}" {{path/to/file1}} {{path/to/file2}} {{path/to/file3}}` + +- Extract to the current directory using the basename of the file from the archive: + +`ptargrep --basename "{{search_pattern}}" {{path/to/file}}` + +- Search for a case-insensitive pattern matching within a tar file: + +`ptargrep --ignore-case "{{search_pattern}}" {{path/to/file}}` diff --git a/pages/common/ptpython.md b/pages/common/ptpython.md new file mode 100644 index 00000000000000..823e5ba207c7c6 --- /dev/null +++ b/pages/common/ptpython.md @@ -0,0 +1,32 @@ +# ptpython + +> A better Python REPL. +> More information: . + +- Start a REPL (interactive shell): + +`ptpython` + +- Execute a specific Python file: + +`ptpython {{path/to/file.py}}` + +- Execute a specific Python file and start a REPL: + +`ptpython -i {{path/to/file.py}}` + +- Open the menu: + +`F2` + +- Open the history page: + +`F3` + +- Toggle paste mode: + +`F6` + +- Quit: + +`Ctrl + D` diff --git a/pages/common/ptpython3.md b/pages/common/ptpython3.md new file mode 100644 index 00000000000000..3ae2eb8a93eefe --- /dev/null +++ b/pages/common/ptpython3.md @@ -0,0 +1,7 @@ +# ptpython3 + +> This command is an alias of `ptpython`. + +- View documentation for the original command: + +`tldr ptpython` diff --git a/pages/common/pueue-completions.md b/pages/common/pueue-completions.md index 366dd21966dbbb..441924cbd495d9 100644 --- a/pages/common/pueue-completions.md +++ b/pages/common/pueue-completions.md @@ -1,9 +1,9 @@ # pueue completions -> Generates shell completion files for bash, elvish, fish, powershell, and zsh. +> Generates shell completion files for Bash, Elvish, Fish, PowerShell, and Zsh. > More information: . -- Generate completions for bash: +- Generate completions for Bash: `sudo pueue completions bash {{/usr/share/bash-completion/completions/pueue.bash}}` diff --git a/pages/common/pueue-follow.md b/pages/common/pueue-follow.md index 3aa6ee080caa9b..a7d8a4b967debc 100644 --- a/pages/common/pueue-follow.md +++ b/pages/common/pueue-follow.md @@ -4,10 +4,10 @@ > See also: `pueue log`. > More information: . -- Follow the output of a task (stdout + stderr): +- Follow the output of a task (`stdout` + `stderr`): `pueue follow {{task_id}}` -- Follow the stderr of a task: +- Follow the `stderr` of a task: `pueue follow --err {{task_id}}` diff --git a/pages/common/pueue.md b/pages/common/pueue.md index 660d22b915f7e7..dbf619a9e427d6 100644 --- a/pages/common/pueue.md +++ b/pages/common/pueue.md @@ -1,6 +1,7 @@ # pueue > Pueue is a command-line 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: . - Show general help and available subcommands: diff --git a/pages/common/pulumi.md b/pages/common/pulumi.md new file mode 100644 index 00000000000000..260c50326a1221 --- /dev/null +++ b/pages/common/pulumi.md @@ -0,0 +1,28 @@ +# pulumi + +> Define infrastructure on any cloud using familiar programming languages. +> More information: . + +- Create a new project using a template: + +`pulumi new` + +- Create a new stack using an isolated deployment target: + +`pulumi stack init` + +- Configure variables (e.g. keys, regions, etc.) interactively: + +`pulumi config` + +- Preview and deploy changes to a program and/or infrastructure: + +`pulumi up` + +- Preview deployment changes without performing them (dry-run): + +`pulumi preview` + +- Destroy a program and its infrastructure: + +`pulumi destroy` diff --git a/pages/common/pup.md b/pages/common/pup.md index 36be34318618a5..551de57f04cfe8 100644 --- a/pages/common/pup.md +++ b/pages/common/pup.md @@ -1,6 +1,6 @@ # pup -> Command line HTML parsing tool. +> Command-line HTML parsing tool. > More information: . - Transform a raw HTML file into a cleaned, indented, and colored format: diff --git a/pages/common/puppet-agent.md b/pages/common/puppet-agent.md new file mode 100644 index 00000000000000..83cfa4a995d3ac --- /dev/null +++ b/pages/common/puppet-agent.md @@ -0,0 +1,32 @@ +# puppet agent + +> Retrieves the client configuration from a Puppet server and applies it to the local host. +> More information: . + +- Register a node at a Puppet server and apply the received catalog: + +`puppet agent --test --server {{puppetserver_fqdn}} --serverport {{port}} --waitforcert {{poll_time}}` + +- Run the agent in the background (uses settings from `puppet.conf`): + +`puppet agent` + +- Run the agent once in the foreground, then exit: + +`puppet agent --test` + +- Run the agent in dry-mode: + +`puppet agent --test --noop` + +- Log every resource being evaluated (even if nothing is being changed): + +`puppet agent --test --evaltrace` + +- Disable the agent: + +`puppet agent --disable "{{message}}"` + +- Enable the agent: + +`puppet agent --enable` diff --git a/pages/common/puppet-apply.md b/pages/common/puppet-apply.md new file mode 100644 index 00000000000000..41463637d0747d --- /dev/null +++ b/pages/common/puppet-apply.md @@ -0,0 +1,16 @@ +# puppet apply + +> Apply Puppet manifests locally. +> More information: . + +- Apply a manifest: + +`puppet apply {{path/to/manifest}}` + +- Execute puppet code: + +`puppet apply --execute {{code}}` + +- Use a specific module and hiera config file: + +`puppet apply --modulepath {{path/to/directory}} --hiera_config {{path/to/file}} {{path/to/manifest}}` diff --git a/pages/common/puppet.md b/pages/common/puppet.md new file mode 100644 index 00000000000000..5f30bb318b2103 --- /dev/null +++ b/pages/common/puppet.md @@ -0,0 +1,21 @@ +# puppet + +> Help to manage and automate the configuration of servers. +> Some subcommands such as `puppet agent` have their own usage documentation. +> More information: . + +- Execute a Puppet subcommand: + +`puppet {{subcommand}}` + +- Check the Puppet version: + +`puppet --version` + +- Display help: + +`puppet --help` + +- Display help for a subcommand: + +`puppet help {{subcommand}}` diff --git a/pages/common/pushd.md b/pages/common/pushd.md index 54d9b9447992b7..b35ec7a8b23bd2 100644 --- a/pages/common/pushd.md +++ b/pages/common/pushd.md @@ -5,7 +5,7 @@ - Switch to directory and push it on the stack: -`pushd {{directory}}` +`pushd {{path/to/directory}}` - Switch first and second directories on the stack: diff --git a/pages/common/pv.md b/pages/common/pv.md index 3705bd68370c98..e68155f2d37b72 100644 --- a/pages/common/pv.md +++ b/pages/common/pv.md @@ -1,14 +1,15 @@ # pv > Monitor the progress of data through a pipe. +> More information: . - Print the contents of the file and display a progress bar: -`pv {{file}}` +`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: @@ -24,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/pve-firewall.md b/pages/common/pve-firewall.md new file mode 100644 index 00000000000000..38242aeebd04be --- /dev/null +++ b/pages/common/pve-firewall.md @@ -0,0 +1,32 @@ +# pve-firewall + +> Manage Proxmox VE Firewall. +> More information: . + +- Compile and print all firewall rules: + +`pve-firewall compile` + +- Show information about the local network: + +`pve-firewall localnet` + +- Restart the Proxmox VE Firewall service: + +`pve-firewall restart` + +- Start the Proxmox VE Firewall service: + +`pve-firewall start` + +- Stop the Proxmox VE Firewall service: + +`pve-firewall stop` + +- Simulate all firewall rules: + +`pve-firewall simulate` + +- Show the status of Proxmox VE Firewall: + +`pve-firewall status` diff --git a/pages/common/pvecm.md b/pages/common/pvecm.md new file mode 100644 index 00000000000000..52a874400af3c4 --- /dev/null +++ b/pages/common/pvecm.md @@ -0,0 +1,32 @@ +# pvecm + +> Proxmox VE Cluster Manager. +> More information: . + +- Add the current node to an existing cluster: + +`pvecm add {{hostname_or_ip}}` + +- Add a node to the cluster configuration (internal use): + +`pvecm addnode {{node}}` + +- Return the version of the cluster join API available on this node: + +`pvecm apiver` + +- Generate new cluster configuration: + +`pvecm create {{clustername}}` + +- Remove a node from the cluster configuration: + +`pvecm delnode {{node}}` + +- Display the local view of the cluster nodes: + +`pvecm nodes` + +- Display the local view of the cluster status: + +`pvecm status` diff --git a/pages/common/pveperf.md b/pages/common/pveperf.md new file mode 100644 index 00000000000000..4cd91e91fcca33 --- /dev/null +++ b/pages/common/pveperf.md @@ -0,0 +1,8 @@ +# pveperf + +> A benchmarking tool in Proxmox Server. Gather CPU and hard disk performance data for the hard disk. +> More information: . + +- Show CPU and hard disk performance data for the hard disk mounted at `/`: + +`pveperf` diff --git a/pages/common/pwgen.md b/pages/common/pwgen.md new file mode 100644 index 00000000000000..f3d3785a103af5 --- /dev/null +++ b/pages/common/pwgen.md @@ -0,0 +1,16 @@ +# pwgen + +> Generate pronounceable passwords. +> More information: . + +- Generate random password with s[y]mbols: + +`pwgen -y {{length}}` + +- Generate secure, hard-to-memorize passwords: + +`pwgen -s {{length}}` + +- Generate password with at least one capital letter in them: + +`pwgen -c {{length}}` diff --git a/pages/common/pwsh.md b/pages/common/pwsh.md new file mode 100644 index 00000000000000..e6e11fc42ca300 --- /dev/null +++ b/pages/common/pwsh.md @@ -0,0 +1,7 @@ +# pwsh + +> This command is an alias of `powershell`. + +- View documentation for the original command: + +`tldr powershell` diff --git a/pages/common/py-spy.md b/pages/common/py-spy.md new file mode 100644 index 00000000000000..5fead329e710e0 --- /dev/null +++ b/pages/common/py-spy.md @@ -0,0 +1,20 @@ +# py-spy + +> A sampling profiler for Python programs. +> More information: . + +- Show a live view of the functions that take the most execution time of a running process: + +`py-spy top --pid {{pid}}` + +- Start a program and show a live view of the functions that take the most execution time: + +`py-spy top -- python {{path/to/file.py}}` + +- Produce an SVG flame graph of the function call execution time: + +`py-spy record -o {{path/to/profile.svg}} --pid {{pid}}` + +- Dump the call stack of a running process: + +`py-spy dump --pid {{pid}}` diff --git a/pages/common/pyats-shell.md b/pages/common/pyats-shell.md new file mode 100644 index 00000000000000..462299f060b527 --- /dev/null +++ b/pages/common/pyats-shell.md @@ -0,0 +1,16 @@ +# pyats shell + +> Start a pre-loaded pyATS interactive Python Shell to save time in prototyping. +> More information: . + +- Open pyATS shell with a defined Testbed file: + +`pyats shell --testbed-file {{path/to/testbed.yaml}}` + +- Open pyATS shell with a defined Pickle file: + +`pyats shell --pickle-file {{path/to/pickle.file}}` + +- Open pyATS with IPython disabled: + +`pyats shell --no-ipython` diff --git a/pages/common/pyats-version.md b/pages/common/pyats-version.md new file mode 100644 index 00000000000000..726384d191e3a7 --- /dev/null +++ b/pages/common/pyats-version.md @@ -0,0 +1,20 @@ +# pyats version + +> View and upgrade the pyATS installation. +> More information: . + +- Display version of all packages: + +`pyats version check` + +- Display outdated packages: + +`pyats version check --outdated` + +- Update packages to the most recent version: + +`pyats version update` + +- Update or downgrade packages to a specific version: + +`pyats version update {{version}}` diff --git a/pages/common/pyats.md b/pages/common/pyats.md new file mode 100644 index 00000000000000..215e8065dfac40 --- /dev/null +++ b/pages/common/pyats.md @@ -0,0 +1,20 @@ +# pyATS + +> A vendor agnostic test automation framework by Cisco Systems, used for network and systems testing. +> More information: . + +- Run a `pyATS` subcommand: + +`pyats {{subcommand}}` + +- Display version: + +`pyats version check` + +- Display help: + +`pyats --help` + +- Display help about a specific subcommand: + +`pyats {{subcommand}} --help` diff --git a/pages/common/pyenv.md b/pages/common/pyenv.md index b6b597622cc1f1..f0d627d05d8c99 100644 --- a/pages/common/pyenv.md +++ b/pages/common/pyenv.md @@ -11,6 +11,10 @@ `pyenv versions` +- List all Python versions that can be installed from upstream: + +`pyenv install --list` + - Install a Python version under the `${PYENV_ROOT}/versions` directory: `pyenv install {{2.7.10}}` diff --git a/pages/common/pygmentize.md b/pages/common/pygmentize.md index e239a8ba7d17e1..d567e57459587c 100644 --- a/pages/common/pygmentize.md +++ b/pages/common/pygmentize.md @@ -1,6 +1,7 @@ # pygmentize > Python-based syntax highlighter. +> More information: . - Highlight file syntax and print to standard output (language is inferred from the file extension): diff --git a/pages/common/pyinfra.md b/pages/common/pyinfra.md new file mode 100644 index 00000000000000..8b3a716414ad5a --- /dev/null +++ b/pages/common/pyinfra.md @@ -0,0 +1,20 @@ +# pyinfra + +> Automates infrastructure at a large scale. +> More information: . + +- Execute a command over SSH: + +`pyinfra {{target_ip_address}} exec -- {{command_name_and_arguments}}` + +- Execute contents of a deploy file on a list of targets: + +`pyinfra {{path/to/target_list.py}} {{path/to/deploy.py}}` + +- Execute commands on locally: + +`pyinfra @local {{path/to/deploy.py}}` + +- Execute commands over Docker: + +`pyinfra @docker/{{container}} {{path/to/deploy.py}}` diff --git a/pages/common/pylint.md b/pages/common/pylint.md new file mode 100644 index 00000000000000..c9b838e5ea5800 --- /dev/null +++ b/pages/common/pylint.md @@ -0,0 +1,16 @@ +# pylint + +> A Python code linter. +> More information: . + +- Show lint errors in a file: + +`pylint {{path/to/file.py}}` + +- Lint a file and use a configuration file (usually named `pylintrc`): + +`pylint --rcfile {{path/to/pylintrc}} {{path/to/file.py}}` + +- Lint a file and disable a specific error code: + +`pylint --disable {{C,W,no-error,design}} {{path/to/file}}` diff --git a/pages/common/pypy.md b/pages/common/pypy.md new file mode 100644 index 00000000000000..7b2a06bf3d4f7e --- /dev/null +++ b/pages/common/pypy.md @@ -0,0 +1,32 @@ +# pypy + +> Fast and compliant alternative implementation of the Python language. +> More information: . + +- Start a REPL (interactive shell): + +`pypy` + +- Execute script in a given Python file: + +`pypy {{path/to/file.py}}` + +- Execute script as part of an interactive shell: + +`pypy -i {{path/to/file.py}}` + +- Execute a Python expression: + +`pypy -c "{{expression}}"` + +- Run library module as a script (terminates option list): + +`pypy -m {{module}} {{arguments}}` + +- Install a package using pip: + +`pypy -m pip install {{package_name}}` + +- Interactively debug a Python script: + +`pypy -m pdb {{path/to/file.py}}` diff --git a/pages/common/pystun3.md b/pages/common/pystun3.md new file mode 100644 index 00000000000000..bd941d0824d4a8 --- /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/pytest.md b/pages/common/pytest.md new file mode 100644 index 00000000000000..d9476096008ba4 --- /dev/null +++ b/pages/common/pytest.md @@ -0,0 +1,28 @@ +# pytest + +> Run Python tests. +> More information: . + +- Run tests from specific files: + +`pytest {{path/to/test_file1.py path/to/test_file2.py ...}}` + +- Run tests with names matching a specific [k]eyword expression: + +`pytest -k {{expression}}` + +- Exit as soon as a test fails or encounters an error: + +`pytest --exitfirst` + +- Run tests matching or excluding markers: + +`pytest -m {{marker_name1 and not marker_name2}}` + +- Run until a test failure, continuing from the last failing test: + +`pytest --stepwise` + +- Run tests without capturing output: + +`pytest --capture=no` diff --git a/pages/common/python.md b/pages/common/python.md index 63ce36f969be2b..64516d896433a4 100644 --- a/pages/common/python.md +++ b/pages/common/python.md @@ -3,30 +3,34 @@ > Python language interpreter. > More information: . -- Call a Python interactive shell (REPL): +- Start a REPL (interactive shell): `python` -- Execute script in a given Python file: +- Execute a specific Python file: -`python {{script.py}}` +`python {{path/to/file.py}}` -- Execute script as part of an interactive shell: +- Execute a specific Python file and start a REPL: -`python -i {{script.py}}` +`python -i {{path/to/file.py}}` - Execute a Python expression: `python -c "{{expression}}"` -- Run library module as a script (terminates option list): +- Run the script of the specified library module: `python -m {{module}} {{arguments}}` -- Install a package using pip: +- Install a package using `pip`: -`python -m pip install {{package_name}}` +`python -m {{pip}} install {{package_name}}` - Interactively debug a Python script: -`python -m pdb {{script.py}}` +`python -m {{pdb}} {{path/to/file.py}}` + +- Start the built-in HTTP server on port 8000 in the current directory: + +`python -m {{http.server}}` diff --git a/pages/common/python3.md b/pages/common/python3.md new file mode 100644 index 00000000000000..985828fe229b2c --- /dev/null +++ b/pages/common/python3.md @@ -0,0 +1,7 @@ +# python3 + +> This command is an alias of `python`. + +- View documentation for the original command: + +`tldr python` diff --git a/pages/common/q.md b/pages/common/q.md index cfc176cd4fa7bb..9828acba0a351f 100644 --- a/pages/common/q.md +++ b/pages/common/q.md @@ -15,7 +15,7 @@ `q -d{{delimiter}} -H "SELECT * from {{path/to/file}}"` -- Read data from stdin; '-' in the query represents the data from stdin: +- Read data from `stdin`; '-' in the query represents the data from `stdin`: `{{output}} | q "select * from -"` diff --git a/pages/common/qemu-img.md b/pages/common/qemu-img.md index 653ccc70d4663d..9896b16a913b3b 100644 --- a/pages/common/qemu-img.md +++ b/pages/common/qemu-img.md @@ -1,6 +1,7 @@ # qemu-img > Tool for Quick Emulator Virtual HDD image creation and manipulation. +> More information: . - Create disk image with a specific size (in gigabytes): @@ -18,6 +19,6 @@ `qemu-img map {{image_name.img}}` -- Convert a VMWare .vmdk disk image to a KVM .qcow2 disk image: +- Convert a VMware .vmdk disk image to a KVM .qcow2 disk image: -`qemu-img convert -O qcow2 {{path/to/file/foo.vmdk}} {{path/to/file/foo.qcow2}}` +`qemu-img convert -f {{vmdk}} -O {{qcow2}} {{path/to/file/foo.vmdk}} {{path/to/file/foo.qcow2}}` diff --git a/pages/common/qm-nbdstop.md b/pages/common/qm-nbdstop.md new file mode 100644 index 00000000000000..54c4eafcc08f6a --- /dev/null +++ b/pages/common/qm-nbdstop.md @@ -0,0 +1,8 @@ +# qm nbdstop + +> Stop embedded nbd server. +> More information: . + +- Stop embedded nbd server: + +`qm nbdstop {{VM_ID}}` diff --git a/pages/common/qm-stop.md b/pages/common/qm-stop.md new file mode 100644 index 00000000000000..47d49eb71df83a --- /dev/null +++ b/pages/common/qm-stop.md @@ -0,0 +1,20 @@ +# qm stop + +> Stop a virtual machine. +> More information: . + +- Stop a virtual machine immediately: + +`qm stop {{VM_ID}}` + +- Stop a virtual machine and wait for at most 10 seconds: + +`qm stop --timeout {{10}} {{VM_ID}}` + +- Stop a virtual machine and skip lock (only root can use this option): + +`qm stop --skiplock {{true}} {{VM_ID}}` + +- Stop a virtual machine and don't deactivate storage volumes: + +`qm stop --keepActive {{true}} {{VM_ID}}` diff --git a/pages/common/qmmp.md b/pages/common/qmmp.md new file mode 100644 index 00000000000000..917cd5e7133a2d --- /dev/null +++ b/pages/common/qmmp.md @@ -0,0 +1,32 @@ +# qmmp + +> An audio player. +> More information: . + +- Launch qmmp: + +`qmmp` + +- Start or stop the currently playing audio: + +`qmmp --play-pause` + +- Seek forwards or backward a specific amount of time in seconds: + +`qmmp --seek-{{fwd|bwd}} {{time_in_seconds}}` + +- Play the next audio file: + +`qmmp --next` + +- Play the previous audio file: + +`qmmp --previous` + +- Print the current volume: + +`qmmp --volume-status` + +- Increase or decrease the volume of the currently playing audio by 5 steps: + +`qmmp --volume-{{inc|dec}}` diff --git a/pages/common/qmv.md b/pages/common/qmv.md index fde2ff2ea49901..c9981460e6f467 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/qpdf.md b/pages/common/qpdf.md index a46cffeb2afad7..d3d229b8f3a586 100644 --- a/pages/common/qpdf.md +++ b/pages/common/qpdf.md @@ -19,10 +19,10 @@ `qpdf --split-pages=n {{input.pdf}} {{out_%d.pdf}}` -- Rotate certain pages of a pdf with a given angle: +- Rotate certain pages of a PDF with a given angle: `qpdf --rotate={{90:2,4,6}} --rotate={{180:7-8}} {{input.pdf}} {{output.pdf}}` -- Remove the password from a password protected file: +- Remove the password from a password-protected file: `qpdf --password={{password}} --decrypt {{input.pdf}} {{output.pdf}}` diff --git a/pages/common/qtcreator.md b/pages/common/qtcreator.md new file mode 100644 index 00000000000000..9a510d1d2a6023 --- /dev/null +++ b/pages/common/qtcreator.md @@ -0,0 +1,28 @@ +# qtcreator + +> Cross-platform IDE for Qt applications. +> More information: . + +- Start Qt Creator: + +`qtcreator` + +- Start Qt Creator and restore the last session: + +`qtcreator -lastsession` + +- Start Qt Creator but don't load the specified plugin: + +`qtcreator -noload {{plugin}}` + +- Start Qt Creator but don't load any plugins: + +`qtcreator -noload {{all}}` + +- Start Qt Creator in presentation mode with pop-ups for keyboard shortcuts: + +`qtcreator -presentationMode` + +- Start Qt Creator and show the diff from a specific commit: + +`qtcreator -git-show {{commit}}` diff --git a/pages/common/quarto.md b/pages/common/quarto.md new file mode 100644 index 00000000000000..7bf83e29115d3e --- /dev/null +++ b/pages/common/quarto.md @@ -0,0 +1,24 @@ +# quarto + +> An open-source scientific and technical publishing system built on Pandoc. +> More information: . + +- Create a new project: + +`quarto create-project {{path/to/destination_directory}} --type {{book|default|website}}` + +- Create a new blog website: + +`quarto create-project {{path/to/destination_directory}} --type {{website}} --template {{blog}}` + +- Render input file(s) to different formats: + +`quarto render {{path/to/file.{{qmd|rmd|ipynb}}}} --to {{html|pdf|docx}}` + +- Render and preview a document or a website: + +`quarto preview {{path/to/destination_directory|path/to/file}}` + +- Publish a document or project to Quarto Pub, Github Pages, RStudio Connect or Netlify: + +`quarto publish {{quarto-pub|gh-pages|connect|netlify}}` diff --git a/pages/common/quota.md b/pages/common/quota.md index aabc4d32e95ca6..4f3531f2caf90d 100644 --- a/pages/common/quota.md +++ b/pages/common/quota.md @@ -1,8 +1,9 @@ # quota > Display users' disk space usage and allocated limits. +> More information: . -- Show disk quotas in human readable units for the current user: +- Show disk quotas in human-readable units for the current user: `quota -s` diff --git a/pages/common/qutebrowser.md b/pages/common/qutebrowser.md new file mode 100644 index 00000000000000..5c9a1cc4c28798 --- /dev/null +++ b/pages/common/qutebrowser.md @@ -0,0 +1,24 @@ +# qutebrowser + +> A keyboard-driven, vim-like browser based on PyQt5. +> More information: . + +- Open qutebrowser with a specified storage directory: + +`qutebrowser --basedir {{path/to/directory}}` + +- Open a qutebrowser instance with temporary settings: + +`qutebrowser --set {{content.geolocation}} {{true|false}}` + +- Restore a named session of a qutebrowser instance: + +`qutebrowser --restore {{session_name}}` + +- Launch qutebrowser, opening all URLs using the specified method: + +`qutebrowser --target {{auto|tab|tab-bg|tab-silent|tab-bg-silent|window|private-window}}` + +- Open qutebrowser with a temporary base directory and print logs to `stdout` as JSON: + +`qutebrowser --temp-basedir --json-logging` diff --git a/pages/common/r.md b/pages/common/r.md index 0baa32f7d5e242..c71d58c65fda00 100644 --- a/pages/common/r.md +++ b/pages/common/r.md @@ -3,7 +3,7 @@ > R language interpreter. > More information: . -- Start an R interactive shell (REPL): +- Start a REPL (interactive shell): `R` diff --git a/pages/common/r2.md b/pages/common/r2.md new file mode 100644 index 00000000000000..0760143f0b8480 --- /dev/null +++ b/pages/common/r2.md @@ -0,0 +1,7 @@ +# r2 + +> This command is an alias of `radare2`. + +- View documentation for the original command: + +`tldr radare2` diff --git a/pages/common/rabin2.md b/pages/common/rabin2.md index 4dfe1e04877521..484eefacd57129 100644 --- a/pages/common/rabin2.md +++ b/pages/common/rabin2.md @@ -2,6 +2,7 @@ > Get information about binary files (ELF, PE, Java CLASS, Mach-O) - symbols, sections, linked libraries, etc. > Comes bundled with `radare2`. +> More information: . - Display general information about a binary (architecture, type, endianness): diff --git a/pages/common/racket.md b/pages/common/racket.md new file mode 100644 index 00000000000000..8bcb6bfc1f0f9d --- /dev/null +++ b/pages/common/racket.md @@ -0,0 +1,24 @@ +# racket + +> Racket language interpreter. +> More information: . + +- Start a REPL (interactive shell): + +`racket` + +- Execute a Racket script: + +`racket {{path/to/script.rkt}}` + +- Execute a Racket expression: + +`racket --eval "{{expression}}"` + +- Run module as a script (terminates option list): + +`racket --lib {{module_name}} --main {{arguments}}` + +- Start a REPL (interactive shell) for the `typed/racket` hashlang: + +`racket -I typed/racket` diff --git a/pages/common/raco.md b/pages/common/raco.md new file mode 100644 index 00000000000000..d1fed6460de76b --- /dev/null +++ b/pages/common/raco.md @@ -0,0 +1,28 @@ +# raco + +> Racket command-line tools. +> More information: . + +- Install a package, automatically installing dependencies: + +`raco pkg install --auto {{package_source}}` + +- Install the current directory as a package: + +`raco pkg install` + +- Build (or rebuild) bytecode, documentation, executables, and metadata indexes for collections: + +`raco setup {{collection1 collection2 ...}}` + +- Run tests in files: + +`raco test {{path/to/tests1.rkt path/to/tests2.rkt ...}}` + +- Search local documentation: + +`raco docs {{search_terms ...}}` + +- Display help: + +`raco help` diff --git a/pages/common/rails-db.md b/pages/common/rails-db.md index be8e0f174a18d4..8000acca12da6e 100644 --- a/pages/common/rails-db.md +++ b/pages/common/rails-db.md @@ -1,6 +1,7 @@ # rails db > Various database-related subcommands for Ruby on Rails. +> More information: . - Create databases, load the schema, and initialize with seed data: diff --git a/pages/common/rails.md b/pages/common/rails.md index c90d79f4ae3b0b..a6886f8285fb4f 100644 --- a/pages/common/rails.md +++ b/pages/common/rails.md @@ -1,6 +1,7 @@ # rails > A server-side MVC framework written in Ruby. +> Some subcommands such as `rails generate` have their own usage documentation. > More information: . - Create a new rails project: @@ -15,7 +16,7 @@ `rails server -p "{{port}}"` -- Open console to interact with application from command line: +- Open console to interact with application from command-line: `rails console` diff --git a/pages/common/railway.md b/pages/common/railway.md new file mode 100644 index 00000000000000..70a04cd1a931b1 --- /dev/null +++ b/pages/common/railway.md @@ -0,0 +1,28 @@ +# railway + +> Connect code to a Railway project from the command line. +> More information: . + +- Login to a Railway account: + +`railway login` + +- Link to an existing Project under a Railway account or team: + +`railway link {{projectId}}` + +- Create a new project directly from the command line: + +`railway init` + +- Run a local command using variables from the active environment: + +`railway run {{cmd}}` + +- Deploy the linked project directory (if running from a subdirectory, the project root is still deployed): + +`railway up` + +- Open an interactive shell to a database: + +`railway connect` diff --git a/pages/common/rainbowstream.md b/pages/common/rainbowstream.md index a87e7091071444..1dc1daa016049b 100644 --- a/pages/common/rainbowstream.md +++ b/pages/common/rainbowstream.md @@ -4,7 +4,7 @@ > Online help with `h`, up and down arrows for history, tab to auto-complete and 2-tab for suggestion. > More information: . -- Open rainbowstream: +- Open RainbowStream: `rainbowstream` @@ -20,11 +20,11 @@ `t {{message}}` -- Retweet the tweet with given id (id is beside the time): +- Retweet the tweet with given ID (ID is beside the time): `rt {{tweet_id}}` -- Favorite the tweet with given id: +- Favorite the tweet with given ID: `fav {{tweet_id}}` diff --git a/pages/common/rapper.md b/pages/common/rapper.md index cbda5df29330f5..7c5a55cc1b0e9a 100644 --- a/pages/common/rapper.md +++ b/pages/common/rapper.md @@ -6,8 +6,8 @@ - Convert an RDF/XML document to Turtle: -`rapper -i rdfxml -o turtle {{file}}` +`rapper -i rdfxml -o turtle {{path/to/file}}` - Count the number of triples in a Turtle file: -`rapper -i turtle -c {{file}}` +`rapper -i turtle -c {{path/to/file}}` diff --git a/pages/common/rar.md b/pages/common/rar.md index 911d0460e9b271..ed333ce4df355a 100644 --- a/pages/common/rar.md +++ b/pages/common/rar.md @@ -1,6 +1,7 @@ # rar > The RAR archiver. Supports multi-volume archives that can be optionally self-extracting. +> More information: . - Archive 1 or more files: diff --git a/pages/common/rbash.md b/pages/common/rbash.md index 579eeb0270614c..1d04538da59fa0 100644 --- a/pages/common/rbash.md +++ b/pages/common/rbash.md @@ -25,6 +25,6 @@ `rbash -e {{path/to/script.sh}}` -- Read and execute commands from stdin: +- Read and execute commands from `stdin`: `rbash -s` diff --git a/pages/common/rbt.md b/pages/common/rbt.md index 544550a6d3d71f..8a617f1321e27e 100644 --- a/pages/common/rbt.md +++ b/pages/common/rbt.md @@ -1,6 +1,6 @@ # rbt -> RBTools is a set of command line tools for working with Review Board and RBCommons. +> RBTools is a set of command-line tools for working with Review Board and RBCommons. > More information: . - Post changes to Review Board: diff --git a/pages/common/rc.md b/pages/common/rc.md new file mode 100644 index 00000000000000..4f66ffbe1a5133 --- /dev/null +++ b/pages/common/rc.md @@ -0,0 +1,13 @@ +# rc + +> A modern simplistic port listener & reverse shell. +> Similar to `nc`. +> More information: . + +- Start listening on a specific port: + +`rc -lp {{port}}` + +- Start a reverse shell: + +`rc {{host}} {{port}} -r {{shell}}` diff --git a/pages/common/rcat.md b/pages/common/rcat.md new file mode 100644 index 00000000000000..1c0e0a2feb3a41 --- /dev/null +++ b/pages/common/rcat.md @@ -0,0 +1,7 @@ +# rcat + +> This command is an alias of `rc`. + +- View documentation for the original command: + +`tldr rc` diff --git a/pages/common/react-native-start.md b/pages/common/react-native-start.md index 5c77cfad559180..a63f009bc0e137 100644 --- a/pages/common/react-native-start.md +++ b/pages/common/react-native-start.md @@ -1,6 +1,6 @@ # react-native start -> Command line tools to start the React Native server. +> Command-line tools to start the React Native server. > More information: . - Start the server that communicates with connected devices: diff --git a/pages/common/react-native.md b/pages/common/react-native.md index 804598888a3338..b47f7b2ee87090 100644 --- a/pages/common/react-native.md +++ b/pages/common/react-native.md @@ -27,10 +27,10 @@ `react-native run-android --variant={{release}}` -- Start `logkitty` and print logs to stdout: +- Start `logkitty` and print logs to `stdout`: `react-native log-android` -- Start `tail system.log` for an iOS simulator and print logs to stdout: +- Start `tail system.log` for an iOS simulator and print logs to `stdout`: `react-native log-ios` diff --git a/pages/common/read.md b/pages/common/read.md index 84f965675809be..3cb9b4e99e5ef9 100644 --- a/pages/common/read.md +++ b/pages/common/read.md @@ -1,6 +1,7 @@ # read > BASH builtin for retrieving data from standard input. +> More information: . - Store data that you type from the keyboard: @@ -18,7 +19,7 @@ `read -d {{new_delimiter}} {{variable}}` -- Do not let backslash (\) act as an escape character: +- Do not let backslash (\\) act as an escape character: `read -r {{variable}}` @@ -30,6 +31,6 @@ `read -s {{variable}}` -- Read stdin and perform an action on every line: +- 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 1393350dc6ca53..666bcc454a389f 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/recsel.md b/pages/common/recsel.md index 884d62ba4bb48e..4962356c255ab8 100644 --- a/pages/common/recsel.md +++ b/pages/common/recsel.md @@ -9,8 +9,8 @@ - Use "~" to match a string with a given regular expression: -`recsel -e "{{field_name}} ~ '{{pattern_regex}}' {{data.rec}}"` +`recsel -e "{{field_name}} ~ '{{regular_expression}}' {{data.rec}}"` - Use a predicate to match a name and a version: -`recsel -e "name ~ '{{pattern_regex}}' && version ~ '{{pattern_regex}}'" {{data.rec}}` +`recsel -e "name ~ '{{regular_expression}}' && version ~ '{{regular_expression}}'" {{data.rec}}` diff --git a/pages/common/redis-benchmark.md b/pages/common/redis-benchmark.md new file mode 100644 index 00000000000000..7197ecf2ded1ee --- /dev/null +++ b/pages/common/redis-benchmark.md @@ -0,0 +1,32 @@ +# redis-benchmark + +> A tool to benchmark a Redis server. +> More information: . + +- Run full benchmark: + +`redis-benchmark` + +- Run benchmark on a specific Redis server: + +`redis-benchmark -h {{host}} -p {{port}} -a {{password}}` + +- Run a subset of tests with default 100000 requests: + +`redis-benchmark -h {{host}} -p {{port}} -t {{set,lpush}} -n {{100000}}` + +- Run with a specific script: + +`redis-benchmark -n {{100000}} script load "{{redis.call('set', 'foo', 'bar')}}"` + +- Run benchmark by using 100000 [r]andom keys: + +`redis-benchmark -t {{set}} -r {{100000}}` + +- Run benchmark by using a [P]ipelining of 16 commands: + +`redis-benchmark -n {{1000000}} -t {{set,get}} -P {{16}}` + +- Run benchmark [q]uietly and only show query per seconds result: + +`redis-benchmark -q` diff --git a/pages/common/redis-cli.md b/pages/common/redis-cli.md index ab699beab41e5a..e3fca63b5d01f0 100644 --- a/pages/common/redis-cli.md +++ b/pages/common/redis-cli.md @@ -15,7 +15,7 @@ `redis-cli -h {{host}} -p {{port}}` -- Connect to a remote server specifying an URI: +- Connect to a remote server specifying a URI: `redis-cli -u {{uri}}` diff --git a/pages/common/redis-server.md b/pages/common/redis-server.md index 613106a7f5a4eb..fa2616100cc25d 100644 --- a/pages/common/redis-server.md +++ b/pages/common/redis-server.md @@ -3,7 +3,7 @@ > Persistent key-value database. > More information: . -- Start Redis server, using the default port (6379), and write logs to stdout: +- Start Redis server, using the default port (6379), and write logs to `stdout`: `redis-server` diff --git a/pages/common/redshift.md b/pages/common/redshift.md index fde3aeff544964..39f89a1bcf5928 100644 --- a/pages/common/redshift.md +++ b/pages/common/redshift.md @@ -1,13 +1,13 @@ # redshift > Adjust the color temperature of your screen according to your surroundings. -> More information: . +> More information: . - Turn on Redshift with 5700K temperature during day and 3600K at night: `redshift -t {{5700}}:{{3600}}` -- Turn on Redshift with a manually-specified custom location: +- Turn on Redshift with a manually specified custom location: `redshift -l {{latitude}}:{{longitude}}` diff --git a/pages/common/rekor-cli.md b/pages/common/rekor-cli.md new file mode 100644 index 00000000000000..3c698881183cf2 --- /dev/null +++ b/pages/common/rekor-cli.md @@ -0,0 +1,20 @@ +# rekor-cli + +> Immutable tamper resistant ledger of metadata generated within a software projects supply chain. +> More information: . + +- Upload an artifact to Rekor: + +`rekor-cli upload --artifact {{path/to/file.ext}} --signature {{path/to/file.ext.sig}} --pki-format={{x509}} --public-key={{path/to/key.pub}}` + +- Get information regarding entries in the Transparency Log: + +`rekor-cli get --uuid={{0e81b4d9299e2609e45b5c453a4c0e7820ac74e02c4935a8b830d104632fd2d1}}` + +- Search the Rekor index to find entries by Artifact: + +`rekor-cli search --artifact {{path/to/file.ext}}` + +- Search the Rekor index to find entries by a specific hash: + +`rekor-cli search --sha {{6b86b273ff34fce19d6b804eff5a3f5747ada4eaa22f1d49c01e52ddb7875b4b}}` diff --git a/pages/common/renice.md b/pages/common/renice.md index 902b386e932273..aaeeddaa767377 100644 --- a/pages/common/renice.md +++ b/pages/common/renice.md @@ -1,7 +1,8 @@ # renice -> Alters the scheduling priority/nicenesses of one or more running processes. +> Alters the scheduling priority/niceness of one or more running processes. > Niceness values range from -20 (most favorable to the process) to 19 (least favorable to the process). +> More information: . - Change priority of a running process: diff --git a/pages/common/repren.md b/pages/common/repren.md index ae357d62d36a34..04674b9b1c46e0 100644 --- a/pages/common/repren.md +++ b/pages/common/repren.md @@ -3,15 +3,15 @@ > Multi-pattern string replacement and file renaming tool. > More information: . -- Do a dry-run renaming a directory of pngs with a literal string replacement: +- Do a dry-run renaming a directory of PNGs with a literal string replacement: `repren --dry-run --rename --literal --from '{{find_string}}' --to '{{replacement_string}}' {{*.png}}` -- Do a dry-run renaming a directory of jpegs with a regular expression: +- Do a dry-run renaming a directory of JPEGs with a regular expression: `repren --rename --dry-run --from '{{regular_expression}}' --to '{{replacement_string}}' {{*.jpg}} {{*.jpeg}}` -- Do a find-and-replace on the contents of a directory of csv files: +- Do a find-and-replace on the contents of a directory of CSV files: `repren --from '{{([0-9]+) example_string}}' --to '{{replacement_string \1}}' {{*.csv}}` diff --git a/pages/common/restic.md b/pages/common/restic.md index a4e24bb9f4c578..1ac5a3dfa7a38a 100644 --- a/pages/common/restic.md +++ b/pages/common/restic.md @@ -5,23 +5,23 @@ - Initialize a backup repository in the specified local directory: -`restic init -r {{path/to/repository}}` +`restic init --repo {{path/to/repository}}` - Backup a directory to the repository: -`restic -r {{path/to/repository}} backup {{path/to/directory}}` +`restic --repo {{path/to/repository}} backup {{path/to/directory}}` - Show backup snapshots currently stored in the repository: -`restic -r {{path/to/repository}} snapshots` +`restic --repo {{path/to/repository}} snapshots` - Restore a specific backup snapshot to a target directory: -`restic -r {{path/to/repository}} restore {{snapshot_id}} {{path/to/target}}` +`restic --repo {{path/to/repository}} restore {{latest|snapshot_id}} --target {{path/to/target}}` - Restore a specific path from a specific backup to a target directory: -`restic -r {{path/to/repository}} --include {{path/to/restore}} --target {{path/to/target}} restore {{snapshot_id}}` +`restic --repo {{path/to/repository}} restore {{snapshot_id}} --target {{path/to/target}} --include {{path/to/restore}}` - Clean up the repository and keep only the most recent snapshot of each unique backup: diff --git a/pages/common/resume.md b/pages/common/resume.md new file mode 100644 index 00000000000000..6582f0bf8fbda2 --- /dev/null +++ b/pages/common/resume.md @@ -0,0 +1,20 @@ +# resume + +> CLI tool to easily setup a new resume. +> More information: . + +- Create a new `resume.json` file in the current working directory: + +`resume init` + +- Validate a `resume.json` against schema tests to ensure it complies with the standard: + +`resume validate` + +- Export a resume locally in a stylized HTML or PDF format: + +`resume export {{path/to/html_or_pdf}}` + +- Start a web server that serves a local `resume.json`: + +`resume serve` diff --git a/pages/common/retry.md b/pages/common/retry.md new file mode 100644 index 00000000000000..c5538f44a85d89 --- /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/rev.md b/pages/common/rev.md index fac7ada7140b2f..63bfc2457949b7 100644 --- a/pages/common/rev.md +++ b/pages/common/rev.md @@ -1,11 +1,12 @@ # rev > Reverse a line of text. +> More information: . - Reverse the text string "hello": `echo "hello" | rev` -- Reverse an entire file and print to stdout: +- Reverse an entire file and print to `stdout`: -`rev {{file}}` +`rev {{path/to/file}}` diff --git a/pages/common/rfetch.md b/pages/common/rfetch.md new file mode 100644 index 00000000000000..63af15f9dd0060 --- /dev/null +++ b/pages/common/rfetch.md @@ -0,0 +1,32 @@ +# rfetch + +> A configurable fetch program to output system information. +> More information: . + +- Display system information: + +`rfetch` + +- Display system [a]rchitecture: + +`rfetch -a` + +- Display system up[t]ime: + +`rfetch -t` + +- Display system [k]ernel: + +`rfetch -k` + +- Display system [c]PU: + +`rfetch -c` + +- Display Linux [D]istro: + +`rfetch -D` + +- View [d]esktop environment: + +`rfetch -d` diff --git a/pages/common/rg.md b/pages/common/rg.md index 6ec1635d166832..e78a373e5447aa 100644 --- a/pages/common/rg.md +++ b/pages/common/rg.md @@ -4,34 +4,34 @@ > Aims to be a faster alternative to `grep`. > More information: . -- Recursively search the current directory for a regex pattern: +- Recursively search the current directory for a regular expression: -`rg {{pattern}}` +`rg {{regular_expression}}` -- Search for pattern including all .gitignored and hidden files: +- Search for regular expressions recursively in the current directory, including hidden files and files listed in `.gitignore`: -`rg --no-ignore --hidden {{pattern}}` +`rg --no-ignore --hidden {{regular_expression}}` -- Search for a pattern only in a certain filetype (e.g., html, css, etc.): +- Search for a regular expression only in a subset of directories: -`rg --type {{filetype}} {{pattern}}` +`rg {{regular_expression}} {{set_of_subdirs}}` -- Search for a pattern only in a subset of directories: +- Search for a regular expression in files matching a glob (e.g. `README.*`): -`rg {{pattern}} {{set_of_subdirs}}` +`rg {{regular_expression}} --glob {{glob}}` -- Search for a pattern in files matching a glob (e.g., `README.*`): +- Search for filenames that match a regular expression: -`rg {{pattern}} --glob {{glob}}` +`rg --files | rg {{regular_expression}}` - Only list matched files (useful when piping to other commands): -`rg --files-with-matches {{pattern}}` +`rg --files-with-matches {{regular_expression}}` -- Show lines that do not match the given pattern: +- Show lines that do not match the given regular expression: -`rg --invert-match {{pattern}}` +`rg --invert-match {{regular_expression}}` - Search a literal string pattern: -`rg --fixed-strings {{string}}` +`rg --fixed-strings -- {{string}}` diff --git a/pages/common/rga.md b/pages/common/rga.md new file mode 100644 index 00000000000000..e52ebe81fcf319 --- /dev/null +++ b/pages/common/rga.md @@ -0,0 +1,24 @@ +# rga + +> Ripgrep wrapper with rich file type searching capabilities. +> More information: . + +- Search recursively for a pattern in all files in the current directory: + +`rga {{regular_expression}}` + +- List available adapters: + +`rga --rga-list-adapters` + +- Change which adapters to use (e.g. ffmpeg, pandoc, poppler etc.): + +`rga --rga-adapters={{adapter1,adapter2}} {{regular_expression}}` + +- Search for a pattern using the mime type instead of the file extension (slower): + +`rga --rga-accurate {{regular_expression}}` + +- Display detailed help: + +`rga --help` diff --git a/pages/common/rgpt.md b/pages/common/rgpt.md new file mode 100644 index 00000000000000..9bcb0eb8ac4769 --- /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/rgrep.md b/pages/common/rgrep.md new file mode 100644 index 00000000000000..c3bf9851459b40 --- /dev/null +++ b/pages/common/rgrep.md @@ -0,0 +1,25 @@ +# rgrep + +> Recursively find patterns in files using regular expressions. +> Equivalent to `grep -r`. +> More information: . + +- Recursively search for a pattern in the current working directory: + +`rgrep "{{search_pattern}}"` + +- Recursively search for a case-insensitive pattern in the current working directory: + +`rgrep --ignore-case "{{search_pattern}}"` + +- Recursively search for an extended regular expression pattern (supports `?`, `+`, `{}`, `()` and `|`) in the current working directory: + +`rgrep --extended-regexp "{{search_pattern}}"` + +- Recursively search for an exact string (disables regular expressions) in the current working directory: + +`rgrep --fixed-strings "{{exact_string}}"` + +- Recursively search for a pattern in a specified directory (or file): + +`rgrep "{{search_pattern}}" {{path/to/file_or_directory}}` diff --git a/pages/common/rhash.md b/pages/common/rhash.md new file mode 100644 index 00000000000000..e38d60ba8b3357 --- /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 new file mode 100644 index 00000000000000..7f4987d20d8aca --- /dev/null +++ b/pages/common/rich.md @@ -0,0 +1,32 @@ +# rich + +> Rich CLI is a toolbox for fancy output in the terminal. +> More information: . + +- Display a file with syntax highlighting: + +`rich {{path/to/file.py}}` + +- Add line numbers, and indentation guides: + +`rich {{path/to/file.py}} --line-number --guides` + +- Apply a theme: + +`rich {{path/to/file.py}} --theme {{monokai}}` + +- Display a file in an interactive pager: + +`rich {{path/to/file.py}} --pager` + +- Display contents from a URL: + +`rich {{https://raw.githubusercontent.com/Textualize/rich-cli/main/README.md}} --markdown --pager` + +- Export a file as HTML: + +`rich {{path/to/file.md}} --export-html {{path/to/file.html}}` + +- Display text with formatting tags, custom alignment, and line width: + +`rich --print {{"Hello [green on black]Stylized[/green on black] [bold]World[/bold]"}} --{{left|center|right}} --width {{10}}` diff --git a/pages/common/rip.md b/pages/common/rip.md new file mode 100644 index 00000000000000..b388a011859ad0 --- /dev/null +++ b/pages/common/rip.md @@ -0,0 +1,28 @@ +# rip + +> Remove files or directories by sending them to the graveyard, allowing for them to be recovered. +> More information: . + +- Remove files or directories from specified locations and place them in the graveyard: + +`rip {{path/to/file_or_directory}} {{path/to/another/file_or_directory}}` + +- Interactively remove files or directories, with a prompt before every removal: + +`rip --inspect {{path/to/file_or_directory}} {{path/to/another/file_or_directory}}` + +- List all files and directories in the graveyard that were originally within the current directory: + +`rip --seance` + +- Permanently delete every file and directory in the graveyard: + +`rip --decompose` + +- Put back the files and directories which were affected by the most recent removal: + +`rip --unbury` + +- Put back every file and directory that is listed by `rip --seance`: + +`rip --seance --unbury` diff --git a/pages/common/ripgrep.md b/pages/common/ripgrep.md new file mode 100644 index 00000000000000..3e2109dd2994bd --- /dev/null +++ b/pages/common/ripgrep.md @@ -0,0 +1,7 @@ +# ripgrep + +> `ripgrep` is the common name for the command `rg`. + +- View documentation for the original command: + +`tldr rg` diff --git a/pages/common/rm.md b/pages/common/rm.md index 55b7398c5f7a44..da1b9ca8ec25e9 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 5a793e523d2eaf..f4409b678936ed 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/rmlint.md b/pages/common/rmlint.md new file mode 100644 index 00000000000000..9abea42680feb9 --- /dev/null +++ b/pages/common/rmlint.md @@ -0,0 +1,32 @@ +# rmlint + +> Identify duplicate files or directories, and other filesystem issues. +> More information: . + +- Check a directory for duplicates, empty files, and other issues: + +`rmlint {{path/to/directory}}` + +- Delete duplicate files found by an execution of `rmlint`: + +`./rmlint.sh` + +- Find duplicate directory trees: + +`rmlint --merge-directories {{path/to/directory}}` + +- Mark files at lower path [d]epth as originals: + +`rmlint --rank-by={{d}} {{path/to/directory}}` + +- Mark files with shortest name [l]ength as originals: + +`rmlint --rank-by={{l}} {{path/to/directory}}` + +- Find only duplicates that have the same filename in addition to the same contents: + +`rmlint --match-basename {{path/to/directory}}` + +- Find all duplicates with the same extension: + +`rmlint --match-extension {{path/to/directory}}` diff --git a/pages/common/roll.md b/pages/common/roll.md index 74cbb007f919de..831d3527ee1f6f 100644 --- a/pages/common/roll.md +++ b/pages/common/roll.md @@ -1,6 +1,7 @@ # roll > Rolls a user-defined dice sequence. +> More information: . - Roll 3 6-sided dice and sums the results: diff --git a/pages/common/route.md b/pages/common/route.md index 4b06b1a8756350..2dfc7539225932 100644 --- a/pages/common/route.md +++ b/pages/common/route.md @@ -1,6 +1,7 @@ # route > Use route cmd to set the route table. +> More information: . - Display the information of route table: diff --git a/pages/common/rpi-imager.md b/pages/common/rpi-imager.md new file mode 100644 index 00000000000000..ec6e433540efd4 --- /dev/null +++ b/pages/common/rpi-imager.md @@ -0,0 +1,16 @@ +# rpi-imager + +> Flash images onto storage devices. +> More information: . + +- Write a specific image to a specific block device: + +`rpi-imager --cli {{path/to/image.zip}} {{/dev/sdX}}` + +- Write a specific image to a block device, disabling the checksum verification: + +`rpi-imager --cli --disable-verify {{path/to/image.zip}} {{/dev/sdX}}` + +- Write a specific image to a block device, which will expect a specific checksum when running the verification: + +`rpi-imager --cli --sha256 {{expected_hash}} {{path/to/image.zip}} {{/dev/sdX}}` diff --git a/pages/common/rscript.md b/pages/common/rscript.md new file mode 100644 index 00000000000000..4dd7eeeec97b70 --- /dev/null +++ b/pages/common/rscript.md @@ -0,0 +1,20 @@ +# Rscript + +> Run a script with the R programming language. +> More information: . + +- Run a script: + +`Rscript {{path/to/file.R}}` + +- Run a script in vanilla mode (i.e. a blank session that doesn't save the workspace at the end): + +`Rscript --vanilla {{path/to/file.R}}` + +- Execute one or more R expressions: + +`Rscript -e {{expression1}} -e {{expression2}}` + +- Display R version: + +`Rscript --version` diff --git a/pages/common/rspec.md b/pages/common/rspec.md index 66c40855f549e4..7b8d6b153ef48c 100644 --- a/pages/common/rspec.md +++ b/pages/common/rspec.md @@ -3,7 +3,7 @@ > Behavior-driven development testing framework written in Ruby to test Ruby code. > More information: . -- Initialise an .rspec config and a spec helper file: +- Initialize an .rspec config and a spec helper file: `rspec --init` diff --git a/pages/common/rss2email.md b/pages/common/rss2email.md new file mode 100644 index 00000000000000..08795a9afaae77 --- /dev/null +++ b/pages/common/rss2email.md @@ -0,0 +1,28 @@ +# rss2email + +> Tool for delivering news from RSS feeds to an email program. +> More information: . + +- List all feeds: + +`r2e list` + +- Convert RSS entries to email: + +`r2e run` + +- Add a feed: + +`r2e add {{feed_address}}` + +- Add a feed with a specific email address: + +`r2e add {{feed_address}} {{new_email@example.com}}` + +- Delete a specific feed: + +`r2e delete {{number_of_feed_in_list}}` + +- Display help: + +`r2e -h` diff --git a/pages/common/rsstail.md b/pages/common/rsstail.md index f31f3d017477fb..9e47b4f06b0ca3 100644 --- a/pages/common/rsstail.md +++ b/pages/common/rsstail.md @@ -3,7 +3,7 @@ > `tail` for RSS feeds. > More information: . -- Show the feed of a given url and wait for new entries appearing at the bottom: +- Show the feed of a given URL and wait for new entries appearing at the bottom: `rsstail -u {{url}}` diff --git a/pages/common/rsync.md b/pages/common/rsync.md index 699c96efc25b3c..2b0995aaaaa964 100644 --- a/pages/common/rsync.md +++ b/pages/common/rsync.md @@ -1,36 +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. +> Transfer files either to or from a remote host (but not between two remote hosts). +> Can transfer single files or multiple files matching a pattern. +> More information: . -- Transfer file from local to remote host: +- Transfer a file from local to a remote host: `rsync {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}` -- Transfer file from remote host to local: +- Transfer a file from a remote host to local: `rsync {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}` -- Transfer file in [a]rchive (to preserve attributes) and compressed ([z]ipped) mode with [v]erbose and [h]uman-readable [P]rogress: +- Transfer a file in [a]rchive (to preserve attributes) and compressed ([z]ipped) mode displaying [v]erbose and [h]uman-readable [P]rogress: `rsync -azvhP {{path/to/local_file}} {{remote_host}}:{{path/to/remote_directory}}` -- Transfer a directory and all its children from a remote to local: +- Transfer a directory and all its contents from a remote host to local: `rsync -r {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}` -- Transfer directory contents (but not the directory itself) from a remote to local: +- Transfer directory contents (but not the directory itself) from a remote host to local: `rsync -r {{remote_host}}:{{path/to/remote_directory}}/ {{path/to/local_directory}}` -- Transfer a directory [r]ecursively, in [a]rchive to preserve attributes, resolving contained soft[l]inks , and ignoring already transferred files [u]nless newer: +- Transfer a directory [r]ecursively, in [a]rchive (to preserve attributes), resolving contained sym[L]inks, and ignoring already transferred files [u]nless newer: -`rsync -rauL {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}` +`rsync -rauL {{remote_host}}:{{path/to/remote_directory}} {{path/to/local_directory}}` -- Transfer file over SSH and delete local files that do not exist on remote host: +- Transfer a file over SSH and delete remote files that do not exist locally: `rsync -e ssh --delete {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}` -- 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 and show global progress: `rsync -e 'ssh -p {{port}}' --info=progress2 {{remote_host}}:{{path/to/remote_file}} {{path/to/local_file}}` diff --git a/pages/common/rtl_sdr.md b/pages/common/rtl_sdr.md new file mode 100644 index 00000000000000..eb22910c46c82e --- /dev/null +++ b/pages/common/rtl_sdr.md @@ -0,0 +1,37 @@ +# rtl_sdr + +> Raw data recorder for RTL-SDR receivers. +> Data is encoded using I/Q sampling (aka quadrature sampling). +> More information: . + +- Save RAW data from a frequency (specified in Hz) to a file: + +`rtl_sdr -f {{100000000}} {{path/to/file}}` + +- Pipe data to another program: + +`rtl_sdr -f {{100000000}} - | {{aplay}}` + +- Read a specified number of samples: + +`rtl_sdr -f {{100000000}} -n {{20}} -` + +- Specify the sample rate in Hz (ranges 225001-300000 and 900001-3200000): + +`rtl_sdr -f {{100000000}} -s {{2400000}} -` + +- Specify the device by its index: + +`rtl_sdr -f {{100000000}} -d {{0}} -` + +- Specify the gain: + +`rtl_sdr -f {{100000000}} -g {{20}} -` + +- Specify the output block size: + +`rtl_sdr -f {{100000000}} -b {{9999999}} -` + +- Use synchronous output: + +`rtl_sdr -f {{100000000}} -S -` diff --git a/pages/common/rtv.md b/pages/common/rtv.md index 8214811519a734..181b5d90c5cc0d 100644 --- a/pages/common/rtv.md +++ b/pages/common/rtv.md @@ -20,7 +20,7 @@ `o` -- Login: +- Log in: `u` diff --git a/pages/common/rubocop.md b/pages/common/rubocop.md new file mode 100644 index 00000000000000..dc2b9ebeca7d67 --- /dev/null +++ b/pages/common/rubocop.md @@ -0,0 +1,32 @@ +# rubocop + +> Lint Ruby files. +> More information: . + +- Check all files in the current directory (including subdirectories): + +`rubocop` + +- Check one or more specific files or directories: + +`rubocop {{path/to/file}} {{path/to/directory}}` + +- Write output to file: + +`rubocop --out {{path/to/file}}` + +- View list of cops (linter rules): + +`rubocop --show-cops` + +- Exclude a cop: + +`rubocop --except {{cop_1}} {{cop_2}}` + +- Run only specified cops: + +`rubocop --only {{cop_1}} {{cop_2}}` + +- Auto-correct files (experimental): + +`rubocop --auto-correct` diff --git a/pages/common/ruby.md b/pages/common/ruby.md index e53ca5db49f8a2..6773ecb5b5520c 100644 --- a/pages/common/ruby.md +++ b/pages/common/ruby.md @@ -3,7 +3,7 @@ > Ruby programming language interpreter. > More information: . -- Open an Interactive Ruby Shell (REPL): +- Start a REPL (interactive shell): `irb` @@ -11,7 +11,7 @@ `ruby {{script.rb}}` -- Execute a single Ruby command in the command line: +- Execute a single Ruby command in the command-line: `ruby -e {{command}}` diff --git a/pages/common/runit.md b/pages/common/runit.md index 3bed884fceaaa8..19bbc3639cf192 100644 --- a/pages/common/runit.md +++ b/pages/common/runit.md @@ -1,7 +1,7 @@ # runit > 3-stage init system. -> More information: . +> More information: . - Start runit's 3-stage init scheme: diff --git a/pages/common/rustc.md b/pages/common/rustc.md index c4a910668164d6..cec70536440feb 100644 --- a/pages/common/rustc.md +++ b/pages/common/rustc.md @@ -6,15 +6,15 @@ - Compile a single file: -`rustc {{file.rs}}` +`rustc {{path/to/file.rs}}` - Compile with high optimization: -`rustc -O {{file.rs}}` +`rustc -O {{path/to/file.rs}}` - Compile with debugging information: -`rustc -g {{file.rs}}` +`rustc -g {{path/to/file.rs}}` - Compile with architecture-specific optimizations for the current CPU: diff --git a/pages/common/rustfmt.md b/pages/common/rustfmt.md index 0966150210064c..693cb7e76b9a69 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/rustup-init.sh.md b/pages/common/rustup-init.sh.md new file mode 100644 index 00000000000000..8eb0e3448f62f7 --- /dev/null +++ b/pages/common/rustup-init.sh.md @@ -0,0 +1,32 @@ +# rustup-init.sh + +> Script to install `rustup` and the Rust toolchain. +> More information: . + +- Download and run `rustup-init` to install `rustup` and the default Rust toolchain: + +`curl https://sh.rustup.rs -sSf | sh -s` + +- Download and run `rustup-init` and pass arguments to it: + +`curl https://sh.rustup.rs -sSf | sh -s -- {{arguments}}` + +- Run `rustup-init` and specify additional components or targets to install: + +`rustup-init.sh --target {{target}} --component {{component}}` + +- Run `rustup-init` and specify the default toolchain to install: + +`rustup-init.sh --default-toolchain {{toolchain}}` + +- Run `rustup-init` and do not install any toolchain: + +`rustup-init.sh --default-toolchain {{none}}` + +- Run `rustup-init` and specify an installation profile: + +`rustup-init.sh --profile {{minimal|default|complete}}` + +- Run `rustup-init` without asking for confirmation: + +`rustup-init.sh -y` diff --git a/pages/common/rustup.md b/pages/common/rustup.md index fe0cf05bd72294..8274bb32fe9c0f 100644 --- a/pages/common/rustup.md +++ b/pages/common/rustup.md @@ -27,3 +27,7 @@ - Run cargo build with a certain toolchain: `rustup run {{toolchain_name}} cargo build` + +- Open the local rust documentation in the default web browser: + +`rustup doc` diff --git a/pages/common/s.md b/pages/common/s.md index 3dec9679466700..c27f43b9759fb7 100644 --- a/pages/common/s.md +++ b/pages/common/s.md @@ -1,8 +1,9 @@ # s > Web search from the terminal. +> More information: . -- Search for a query on Google(default provider): +- Search for a query on Google (default provider): `s {{query}}` diff --git a/pages/common/s3cmd.md b/pages/common/s3cmd.md new file mode 100644 index 00000000000000..f40e48b48b92a9 --- /dev/null +++ b/pages/common/s3cmd.md @@ -0,0 +1,32 @@ +# s3cmd + +> Command line tool and client for uploading, retrieving and managing data in S3 compatible object storage. +> More information: . + +- Invoke configuration/reconfiguration tool: + +`s3cmd --configure` + +- List Buckets/Folders/Objects: + +`s3cmd ls s3://{{bucket|path/to/file}}` + +- Create Bucket/Folder: + +`s3cmd mb s3://{{bucket}}` + +- Download a specific file from a bucket: + +`s3cmd get s3://{{bucket_name}}/{{path/to/file}} {{path/to/local_file}}` + +- Upload a file to a bucket: + +`s3cmd put {{local_file}} s3://{{bucket}}/{{file}}` + +- Move an object to a specific bucket location: + +`s3cmd mv s3://{{src_bucket}}/{{src_object}} s3://{{dst_bucket}}/{{dst_object}}` + +- Delete a specific object: + +`s3cmd rm s3://{{bucket}}/{{object}}` diff --git a/pages/common/sam2p.md b/pages/common/sam2p.md new file mode 100644 index 00000000000000..83d14db5747ed5 --- /dev/null +++ b/pages/common/sam2p.md @@ -0,0 +1,8 @@ +# sam2p + +> Raster (bitmap) image converter with smart PDF and PostScript (EPS) output. +> More information: . + +- Concatenate all PDF files into one: + +`sam2p *.pdf {{path/to/output.pdf}}` diff --git a/pages/common/samtools.md b/pages/common/samtools.md index 5c229cd5186dc4..8f3e4308ce9a15 100644 --- a/pages/common/samtools.md +++ b/pages/common/samtools.md @@ -2,12 +2,13 @@ > Tools for handling high-throughput sequencing (genomics) data. > Used for reading/writing/editing/indexing/viewing of data in SAM/BAM/CRAM format. +> More information: . - Convert a SAM input file to BAM stream and save to file: `samtools view -S -b {{input.sam}} > {{output.bam}}` -- Take input from stdin (-) and print the SAM header and any reads overlapping a specific region to stdout: +- Take input from `stdin` (-) and print the SAM header and any reads overlapping a specific region to `stdout`: `{{other_command}} | samtools view -h - chromosome:start-end` diff --git a/pages/common/satis.md b/pages/common/satis.md index 62cadb0185225b..1bdb9d1f62b154 100644 --- a/pages/common/satis.md +++ b/pages/common/satis.md @@ -3,7 +3,7 @@ > The command-line utility for the Satis static Composer repository. > More information: . -- Initialise a Satis configuration: +- Initialize a Satis configuration: `satis init {{satis.json}}` diff --git a/pages/common/sbcl.md b/pages/common/sbcl.md index 961d5d00374e16..a7665296a06e2a 100644 --- a/pages/common/sbcl.md +++ b/pages/common/sbcl.md @@ -3,7 +3,7 @@ > High performance Common Lisp compiler. > More information: . -- Start an SBCL interactive shell (REPL): +- Start a REPL (interactive shell): `sbcl` diff --git a/pages/common/sbt.md b/pages/common/sbt.md index a5d86394c11e0b..f91bf8c0c050b8 100644 --- a/pages/common/sbt.md +++ b/pages/common/sbt.md @@ -1,9 +1,9 @@ # sbt > Build tool for Scala and Java projects. -> More information: . +> More information: . -- Start the SBT interactive shell (REPL): +- Start a REPL (interactive shell): `sbt` @@ -11,6 +11,18 @@ `sbt new {{scala/hello-world.g8}}` +- Compile and run all tests: + +`sbt test` + +- Delete all generated files in the `target` directory: + +`sbt clean` + +- Compile the main sources in `src/main/scala` and `src/main/java` directories: + +`sbt compile` + - Use the specified version of sbt: `sbt -sbt-version {{version}}` diff --git a/pages/common/sc-im.md b/pages/common/sc-im.md index 1d90854a221ccf..307d360545056f 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.md b/pages/common/scala.md index 06857215badedd..9ca8cddc7fa62c 100644 --- a/pages/common/scala.md +++ b/pages/common/scala.md @@ -3,7 +3,7 @@ > Scala application launcher and interactive interpreter. > More information: . -- Start a Scala interactive shell (REPL): +- Start a REPL (interactive shell): `scala` @@ -19,6 +19,6 @@ `scala {{filename.jar}}` -- Execute a single Scala command in the command line: +- Execute a single Scala command in the command-line: `scala -e {{command}}` diff --git a/pages/common/scalafmt.md b/pages/common/scalafmt.md new file mode 100644 index 00000000000000..63b8c07cbdb8fc --- /dev/null +++ b/pages/common/scalafmt.md @@ -0,0 +1,25 @@ +# scalafmt + +> Code formatter for Scala. +> Configurations are stored in the `.scalafmt.conf` file. +> More information: . + +- Reformat all `.scala` files in the current directory recursively: + +`scalafmt` + +- Reformat specific files or directories with a custom formatting configuration: + +`scalafmt --config {{path/to/.scalafmt.conf}} {{path/to/file_or_directory}} {{path/to/file_or_directory}} {{...}}` + +- Check if files are correctly formatted, returning `0` if all files respect the formatting style: + +`scalafmt --config {{path/to/.scalafmt.conf}} --test` + +- Exclude files or directories: + +`scalafmt --exclude {{path/to/file_or_directory}} {{...}}` + +- Format only files that were edited against the current Git branch: + +`scalafmt --config {{path/to/.scalafmt.conf}} --mode diff` diff --git a/pages/common/scan-build.md b/pages/common/scan-build.md new file mode 100644 index 00000000000000..f00828d878fadc --- /dev/null +++ b/pages/common/scan-build.md @@ -0,0 +1,16 @@ +# scan-build + +> Command-line utility to run a static analyzer over a codebase as part of performing a regular build. +> More information: . + +- Build and analyze the project in the current directory: + +`scan-build {{make}}` + +- Run a command and pass all subsequent options to it: + +`scan-build {{command}} {{command_arguments}}` + +- Display help: + +`scan-build` diff --git a/pages/common/sccmap.md b/pages/common/sccmap.md new file mode 100644 index 00000000000000..ec8d9655622865 --- /dev/null +++ b/pages/common/sccmap.md @@ -0,0 +1,17 @@ +# sccmap + +> Extract strongly connected components of directed graphs. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Extract strongly connected components of one or more directed graphs: + +`sccmap -S {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Print statistics about a graph, producing no output graph: + +`sccmap -v -s {{path/to/input1.gv}} {{path/to/input2.gv ...}}` + +- Display help for `sccmap`: + +`sccmap -?` diff --git a/pages/common/scd.md b/pages/common/scd.md new file mode 100644 index 00000000000000..9599142808e1d3 --- /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/scheme.md b/pages/common/scheme.md index 1b411be02f7464..db9bacd033cefa 100644 --- a/pages/common/scheme.md +++ b/pages/common/scheme.md @@ -3,7 +3,7 @@ > MIT Scheme language interpreter and REPL (interactive shell). > More information: . -- Open an interactive shell (REPL): +- Start a REPL (interactive shell): `scheme` diff --git a/pages/common/scrapy.md b/pages/common/scrapy.md index cd225b9b9edb42..a588bf3775e171 100644 --- a/pages/common/scrapy.md +++ b/pages/common/scrapy.md @@ -19,14 +19,14 @@ `scrapy crawl {{spider_name}}` -- Fetch a webpage as scrapy sees it and print source in stdout: +- Fetch a webpage as Scrapy sees it and print the source to `stdout`: `scrapy fetch {{url}}` -- Open a webpage in the default browser as scrapy sees it (disable javascript for extra fidelity): +- Open a webpage in the default browser as Scrapy sees it (disable JavaScript for extra fidelity): `scrapy view {{url}}` -- Open scrapy shell for url, which allows interaction with the page source in python shell (or ipython if available): +- Open Scrapy shell for URL, which allows interaction with the page source in a Python shell (or IPython if available): `scrapy shell {{url}}` diff --git a/pages/common/screen.md b/pages/common/screen.md index 7a853175eb564f..e3b4d9aec54821 100644 --- a/pages/common/screen.md +++ b/pages/common/screen.md @@ -1,6 +1,8 @@ # screen > Hold a session open on a remote server. Manage multiple windows with a single SSH connection. +> See also `tmux` and `zellij`. +> More information: . - Start a new screen session: diff --git a/pages/common/script.md b/pages/common/script.md index 803e9b84bafbcb..18e0bf6e7b9e51 100644 --- a/pages/common/script.md +++ b/pages/common/script.md @@ -1,6 +1,7 @@ # script > Make a typescript file of a terminal session. +> More information: . - Start recording in file named "typescript": diff --git a/pages/common/sd.md b/pages/common/sd.md index a27ef2e2c01393..57261c2823207c 100644 --- a/pages/common/sd.md +++ b/pages/common/sd.md @@ -1,19 +1,20 @@ # sd > Intuitive find & replace CLI. +> More information: . -- Trim some whitespace using regex: +- 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 new file mode 100644 index 00000000000000..24729d36308d02 --- /dev/null +++ b/pages/common/sdcv.md @@ -0,0 +1,33 @@ +# sdcv + +> StarDict, a command-line dictionary client. +> Dictionaries are provided separately from the client. +> More information: . + +- Start sdcv interactively: + +`sdcv` + +- List installed dictionaries: + +`sdcv --list-dicts` + +- Display a definition from a specific dictionary: + +`sdcv --use-dict {{dictionary_name}} {{search_term}}` + +- Look up a definition with a fuzzy search: + +`sdcv {{search_term}}` + +- Look up a definition with an exact search: + +`sdcv --exact-search {{search_term}}` + +- Look up a definition and format the output as JSON: + +`sdcv --json {{search_term}}` + +- Search for dictionaries in a specific directory: + +`sdcv --data-dir {{path/to/directory}} {{search_term}}` diff --git a/pages/common/sdiff.md b/pages/common/sdiff.md index f1a824c8da861b..0d43635555cf42 100644 --- a/pages/common/sdiff.md +++ b/pages/common/sdiff.md @@ -1,6 +1,7 @@ # sdiff > Compare the differences between and optionally merge 2 files. +> More information: . - Compare 2 files: diff --git a/pages/common/sdk.md b/pages/common/sdk.md index aa44936ad5330a..6a26928dac9ff9 100644 --- a/pages/common/sdk.md +++ b/pages/common/sdk.md @@ -4,26 +4,34 @@ > Supports Java, Groovy, Scala, Kotlin, Gradle, Maven, Vert.x and many others. > More information: . -- Install a specific version of Gradle: +- Install an SDK version: -`sdk install {{gradle}} {{gradle_version}}` +`sdk install {{sdk_name}} {{sdk_version}}` -- Switch to a specific version of Gradle: +- Use a specific SDK version for the current terminal session: -`sdk use {{gradle}} {{gradle_version}}` +`sdk use {{sdk_name}} {{sdk_version}}` -- Check current Gradle version: +- Show the stable version of any available SDK: -`sdk current {{gradle}}` +`sdk current {{sdk_name}}` -- List all Software Development Kits available to install: +- Show the stable versions of all installed SDKs: + +`sdk current` + +- List all available SDKs: `sdk list` -- Update Gradle to the latest version: +- List all versions of an SDK: + +`sdk list {{sdk_name}}` + +- Upgrade an SDK to the latest stable version: -`sdk upgrade {{gradle}}` +`sdk upgrade {{sdk_name}}` -- Uninstall a particular version of Gradle: +- Uninstall a specific SDK version: -`sdk rm {{gradle}} {{gradle_version}}` +`sdk rm {{sdk_name}} {{sdk_version}}` diff --git a/pages/common/searchsploit.md b/pages/common/searchsploit.md new file mode 100644 index 00000000000000..dc882ea18a4917 --- /dev/null +++ b/pages/common/searchsploit.md @@ -0,0 +1,29 @@ +# searchsploit + +> Searchsploit searches exploit database's database for exploits, shellcodes and/or papers. +> If known version numbers are used as search terms, exploits for both the exact version and others whose version range covers the one specified are shown. +> More information: . + +- Search for an exploit, shellcode, or paper: + +`searchsploit {{search_terms}}` + +- Search for a known specific version, e.g. sudo version 1.8.27: + +`searchsploit sudo 1.8.27` + +- Show the exploit-db link to the found resources: + +`searchsploit --www {{search_terms}}` + +- Make a copy of the resource to the current directory (requires the number of the exploit): + +`searchsploit --mirror {{exploit_number}}` + +- Open the resource to read with the pager defined in the `$PAGER` environment variable: + +`searchsploit --explore {{exploit_number}}` + +- Update the local exploit database: + +`searchsploit --update` diff --git a/pages/common/secrethub.md b/pages/common/secrethub.md index 788e783cb6530f..b37448ff9186e0 100644 --- a/pages/common/secrethub.md +++ b/pages/common/secrethub.md @@ -3,7 +3,7 @@ > A tool to keep secrets out of config files. > More information: . -- Print a secret to stdout: +- Print a secret to `stdout`: `secrethub read {{path/to/secret}}` @@ -15,7 +15,7 @@ `secrethub write --clip {{path/to/secret}}` -- Store a value supplied on stdin as a new or updated secret: +- Store a value supplied on `stdin` as a new or updated secret: `echo "{{secret_value}}" | secrethub write {{path/to/secret}}` diff --git a/pages/common/sed.md b/pages/common/sed.md index c2e284e11831f7..71119363be3556 100644 --- a/pages/common/sed.md +++ b/pages/common/sed.md @@ -1,36 +1,17 @@ # sed > Edit text in a scriptable manner. -> More information: . +> See also: `awk`, `ed`. +> More information: . -- Replace the first occurrence of a regular expression in each line of a file, and print the result: +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`: -`sed 's/{{regex}}/{{replace}}/' {{filename}}` +`{{command}} | sed 's/apple/mango/g'` -- Replace all occurrences of an extended regular expression in a file, and print the result: +- Execute a specific script [f]ile and print the result to `stdout`: -`sed -r 's/{{regex}}/{{replace}}/g' {{filename}}` +`{{command}} | sed -f {{path/to/script.sed}}` -- Replace all occurrences of a string in a file, overwriting the file (i.e. in-place): +- Print just a first line to `stdout`: -`sed -i 's/{{find}}/{{replace}}/g' {{filename}}` - -- Replace only on lines matching the line pattern: - -`sed '/{{line_pattern}}/s/{{find}}/{{replace}}/' {{filename}}` - -- Delete lines matching the line pattern: - -`sed '/{{line_pattern}}/d' {{filename}}` - -- Print the first 11 lines of a file: - -`sed 11q {{filename}}` - -- Apply multiple find-replace expressions to a file: - -`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}` - -- Replace separator `/` by any other character not used in the find or replace patterns, e.g., `#`: - -`sed 's#{{find}}#{{replace}}#' {{filename}}` +`{{command}} | sed -n '1p'` diff --git a/pages/common/semver.md b/pages/common/semver.md new file mode 100644 index 00000000000000..2a419fc38b304e --- /dev/null +++ b/pages/common/semver.md @@ -0,0 +1,24 @@ +# semver + +> Semantic version string parser. +> More information: . + +- Check if a version string respects the semantic versioning format (prints an empty string if it does not match): + +`semver {{1.2}}` + +- Convert a version string to the semantic versioning format: + +`semver --coerce {{1.2}}` + +- Test if `1.2.3` matches the `^1.0` range (prints an empty string if it does not match): + +`semver {{1.2.3}} --range "{{^1.0}}"` + +- Test with multiple ranges: + +`semver {{1.2.3}} --range {{">=1.0"}} {{"<2.0"}}` + +- Test multiple version strings and return only the ones that match: + +`semver {{1.2.3}} {{2.0.0}} --range "{{^1.0}}"` diff --git a/pages/common/sendmail.md b/pages/common/sendmail.md index aa35dd5061a456..acc8ffd7aab6e7 100644 --- a/pages/common/sendmail.md +++ b/pages/common/sendmail.md @@ -1,6 +1,7 @@ # sendmail -> Send email from the command line. +> Send email from the command-line. +> More information: . - Send a message with the content of `message.txt` to the mail directory of local user `username`: diff --git a/pages/common/seq.md b/pages/common/seq.md index dcb4674f38f319..297f5cc7558eac 100644 --- a/pages/common/seq.md +++ b/pages/common/seq.md @@ -1,6 +1,6 @@ # seq -> Output a sequence of numbers to stdout. +> Output a sequence of numbers to `stdout`. > More information: . - Sequence from 1 to 10: diff --git a/pages/common/serialver.md b/pages/common/serialver.md new file mode 100644 index 00000000000000..78c8b498c5b520 --- /dev/null +++ b/pages/common/serialver.md @@ -0,0 +1,17 @@ +# serialver + +> Returns the serialVersionUID of classes. +> It does not set a security manager by default. +> More information: . + +- Display the serialVersionUID of a class: + +`serialver {{classnames}}` + +- Display the serialVersionUID for a colon-separated list of classes and resources: + +`serialver -classpath {{path/to/directory}} {{classname1:classname2:...}}` + +- Use a specific option from reference page of Java application launcher to the Java Virtual Machine: + +`serialver -Joption {{classnames}}` diff --git a/pages/common/serve.md b/pages/common/serve.md new file mode 100644 index 00000000000000..81ea0c6ecdf5d0 --- /dev/null +++ b/pages/common/serve.md @@ -0,0 +1,32 @@ +# serve + +> Static file serving and directory listing. +> More information: . + +- Start an HTTP server listening on the default port to serve the current directory: + +`serve` + +- Start an HTTP server on a specific [p]ort to serve a specific directory: + +`serve -p {{port}} {{path/to/directory}}` + +- Start an HTTP server with CORS enabled by including the `Access-Control-Allow-Origin: *` header in all responses: + +`serve --cors` + +- Start an HTTP server on the default port rewriting all not-found requests to the `index.html` file: + +`serve --single` + +- Start an HTTPS server on the default port using the specified certificate: + +`serve --ssl-cert {{path/to/cert.pem}} --ssl-key {{path/to/key.pem}}` + +- Start an HTTP server on the default port using a specific configuration file: + +`serve --config {{path/to/serve.json}}` + +- Display help: + +`serve --help` diff --git a/pages/common/serverless.md b/pages/common/serverless.md index fb46fe7a063f7e..b476189e20f938 100644 --- a/pages/common/serverless.md +++ b/pages/common/serverless.md @@ -1,7 +1,7 @@ # serverless > Toolkit for deploying and operating serverless architectures on AWS, Google Cloud, Azure and IBM OpenWhisk. -> Commands can be run either using the `serverless` command or it's alias, `sls`. +> Commands can be run either using the `serverless` command or its alias, `sls`. > More information: . - Create a serverless project: diff --git a/pages/common/set.md b/pages/common/set.md index 7246dbf393a95c..1989a9532dd813 100644 --- a/pages/common/set.md +++ b/pages/common/set.md @@ -1,6 +1,7 @@ # set > Display, set or unset values of shell attributes and positional parameters. +> More information: . - Display the names and values of shell variables: @@ -17,3 +18,7 @@ - Set various options, e.g. enable `vi` style line editing: `set -o {{vi}}` + +- Set the shell to exit as soon as the first error is encountered (mostly used in scripts): + +`set -e` diff --git a/pages/common/sfdp.md b/pages/common/sfdp.md new file mode 100644 index 00000000000000..83b9f46ddafa6d --- /dev/null +++ b/pages/common/sfdp.md @@ -0,0 +1,25 @@ +# sfdp + +> Render an image of a `scaled force-directed` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`sfdp -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`sfdp -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`sfdp -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | sfdp -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`sfdp -?` diff --git a/pages/common/sfdx.md b/pages/common/sfdx.md new file mode 100644 index 00000000000000..5d7002dea599d2 --- /dev/null +++ b/pages/common/sfdx.md @@ -0,0 +1,36 @@ +# 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/sftp.md b/pages/common/sftp.md index e3a94f39a92bd7..d1ce35b6d21ffa 100644 --- a/pages/common/sftp.md +++ b/pages/common/sftp.md @@ -3,6 +3,7 @@ > Secure File Transfer Program. > Interactive program to copy files between hosts over SSH. > For non-interactive file transfers, see `scp` or `rsync`. +> More information: . - Connect to a remote server and enter an interactive command mode: @@ -12,6 +13,10 @@ `sftp -P {{remote_port}} {{remote_user}}@{{remote_host}}` +- Connect using a predefined host (in `~/.ssh/config`): + +`sftp {{host}}` + - Transfer remote file to the local system: `get {{/path/remote_file}}` diff --git a/pages/common/sgpt.md b/pages/common/sgpt.md new file mode 100644 index 00000000000000..8c7acf36ee9f26 --- /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/sh.md b/pages/common/sh.md index 3ec5b63e8f4620..d69bac9ba11350 100644 --- a/pages/common/sh.md +++ b/pages/common/sh.md @@ -16,6 +16,6 @@ `sh {{path/to/script.sh}}` -- Read and execute commands from stdin: +- Read and execute commands from `stdin`: `sh -s` diff --git a/pages/common/sha1sum.md b/pages/common/sha1sum.md index a421f7da7ed3f7..35140ded3f7627 100644 --- a/pages/common/sha1sum.md +++ b/pages/common/sha1sum.md @@ -5,20 +5,24 @@ - Calculate the SHA1 checksum for a file: -`sha1sum {{filename1}}` +`sha1sum {{path/to/file}}` - Calculate SHA1 checksums for multiple files: -`sha1sum {{filename1}} {{filename2}}` +`sha1sum {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA1 checksums to a file: -`sha1sum {{filename1}} {{filename2}} > {{filename.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: -`sha1sum --check {{filename.sha1}}` +`sha1sum --check {{path/to/file.sha1}}` -- Only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: -`sha1sum --check --quiet {{filename.sha1}}` +`sha1sum --check --quiet {{path/to/file.sha1}}` + +- Only show a message for files for which 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 518ea61f765214..3ac360fec916be 100644 --- a/pages/common/sha224sum.md +++ b/pages/common/sha224sum.md @@ -5,20 +5,24 @@ - Calculate the SHA224 checksum for a file: -`sha224sum {{filename1}}` +`sha224sum {{path/to/file}}` - Calculate SHA224 checksums for multiple files: -`sha224sum {{filename1}} {{filename2}}` +`sha224sum {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA224 checksums to a file: -`sha224sum {{filename1}} {{filename2}} > {{filename.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: -`sha224sum --check {{filename.sha224}}` +`sha224sum --check {{path/to/file.sha224}}` -- Only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: -`sha224sum --check --quiet {{filename.sha224}}` +`sha224sum --check --quiet {{path/to/file.sha224}}` + +- Only show a message for files for which 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 87d40a576628ac..ae2cba63c36178 100644 --- a/pages/common/sha256sum.md +++ b/pages/common/sha256sum.md @@ -5,20 +5,24 @@ - Calculate the SHA256 checksum for a file: -`sha256sum {{filename1}}` +`sha256sum {{path/to/file}}` - Calculate SHA256 checksums for multiple files: -`sha256sum {{filename1}} {{filename2}}` +`sha256sum {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA256 checksums to a file: -`sha256sum {{filename1}} {{filename2}} > {{filename.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: -`sha256sum --check {{filename.sha256}}` +`sha256sum --check {{path/to/file.sha256}}` -- Only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: -`sha256sum --check --quiet {{filename.sha256}}` +`sha256sum --check --quiet {{path/to/file.sha256}}` + +- Only show a message for files for which 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 1e3d13eeb42063..5d32958d402192 100644 --- a/pages/common/sha384sum.md +++ b/pages/common/sha384sum.md @@ -5,20 +5,24 @@ - Calculate the SHA384 checksum for a file: -`sha384sum {{filename1}}` +`sha384sum {{path/to/file}}` - Calculate SHA384 checksums for multiple files: -`sha384sum {{filename1}} {{filename2}}` +`sha384sum {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA384 checksums to a file: -`sha384sum {{filename1}} {{filename2}} > {{filename.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: -`sha384sum --check {{filename.sha384}}` +`sha384sum --check {{path/to/file.sha384}}` -- Only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: -`sha384sum --check --quiet {{filename.sha384}}` +`sha384sum --check --quiet {{path/to/file.sha384}}` + +- Only show a message for files for which 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 77f20c07a08d36..25f640e81e110c 100644 --- a/pages/common/sha512sum.md +++ b/pages/common/sha512sum.md @@ -5,20 +5,24 @@ - Calculate the SHA512 checksum for a file: -`sha512sum {{filename1}}` +`sha512sum {{path/to/file}}` - Calculate SHA512 checksums for multiple files: -`sha512sum {{filename1}} {{filename2}}` +`sha512sum {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA512 checksums to a file: -`sha512sum {{filename1}} {{filename2}} > {{filename.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: -`sha512sum --check {{filename.sha512}}` +`sha512sum --check {{path/to/file.sha512}}` -- Only show a message for files for which verification fails: +- Only show a message for missing files or when verification fails: -`sha512sum --check --quiet {{filename.sha512}}` +`sha512sum --check --quiet {{path/to/file.sha512}}` + +- Only show a message for files for which verification fails, ignoring missing files: + +`sha512sum --ignore-missing --check --quiet {{path/to/file.sha512}}` diff --git a/pages/common/shasum.md b/pages/common/shasum.md index 057ef92a4b17ba..5b964055d11d50 100644 --- a/pages/common/shasum.md +++ b/pages/common/shasum.md @@ -1,31 +1,32 @@ # shasum > Calculate or check cryptographic SHA checksums. +> More information: . - Calculate the SHA1 checksum for a file: -`shasum {{filename}}` +`shasum {{path/to/file}}` - Calculate the SHA256 checksum for a file: -`shasum --algorithm 256 {{filename}}` +`shasum --algorithm 256 {{path/to/file}}` - Calculate the SHA512 checksum for multiple files: -`shasum --algorithm 512 {{filename1}} {{filename2}}` +`shasum --algorithm 512 {{path/to/file1}} {{path/to/file2}}` - Calculate and save the list of SHA256 checksums to a file: -`shasum --algorithm 256 {{filename1}} {{filename2}} > {{filename.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: -`shasum --check {{list_file}}` +`shasum --check {{path/to/file}}` - Check a list of sums and only show a message for files for which verification fails: -`shasum --check --quiet {{list_file}}` +`shasum --check --quiet {{path/to/file}}` -- Calculate the SHA1 checksum from stdin: +- Calculate the SHA1 checksum from `stdin`: -`{{somecommand}} | shasum` +`{{some_command}} | shasum` diff --git a/pages/common/shc.md b/pages/common/shc.md index 14e7fcd78f6847..9cab01d0215d24 100644 --- a/pages/common/shc.md +++ b/pages/common/shc.md @@ -1,6 +1,7 @@ # shc > Generic shell script compiler. +> More information: . - Compile a shell script: diff --git a/pages/common/shopt.md b/pages/common/shopt.md index 5e1d13599f9493..e1beec308a0172 100644 --- a/pages/common/shopt.md +++ b/pages/common/shopt.md @@ -2,6 +2,7 @@ > Manage Bash shell options: variables (stored in `$BASHOPTS`) that control behavior specific to the Bash shell. > Generic POSIX shell variables (stored in `$SHELLOPTS`) are managed with the `set` command instead. +> More information: . - List of all settable options and whether they are set: diff --git a/pages/common/showfigfonts.md b/pages/common/showfigfonts.md new file mode 100644 index 00000000000000..5175b5fe1e6b61 --- /dev/null +++ b/pages/common/showfigfonts.md @@ -0,0 +1,13 @@ +# showfigfonts + +> Display available figlet fonts. +> See also `figlet`. +> More information: . + +- Display available fonts: + +`showfigfonts` + +- Display available fonts using a specific text: + +`showfigfonts {{input_text}}` diff --git a/pages/common/shred.md b/pages/common/shred.md index d29549167060f0..709ab032a2c3da 100644 --- a/pages/common/shred.md +++ b/pages/common/shred.md @@ -5,16 +5,16 @@ - Overwrite a file: -`shred {{file}}` +`shred {{path/to/file}}` - Overwrite a file, leaving zeroes instead of random data: -`shred --zero {{file}}` +`shred --zero {{path/to/file}}` - Overwrite a file 25 times: -`shred -n25 {{file}}` +`shred -n25 {{path/to/file}}` - Overwrite a file and remove it: -`shred --remove {{file}}` +`shred --remove {{path/to/file}}` diff --git a/pages/common/shuf.md b/pages/common/shuf.md index 16a73f6a27cd43..6cc9cb04963354 100644 --- a/pages/common/shuf.md +++ b/pages/common/shuf.md @@ -5,16 +5,16 @@ - 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 -n {{5}} {{filename}}` +`shuf --head-count={{5}} {{path/to/file}}` - Write the output to another file: -`shuf {{filename}} -o {{output_filename}}` +`shuf {{path/to/input}} --output={{path/to/output}}` -- Generate random numbers in range: +- Generate 3 random numbers in the range 1-10 (inclusive): -`shuf -i {{1-10}}` +`shuf --head-count={{3}} --input-range={{1-10}} --repeat` diff --git a/pages/common/siege.md b/pages/common/siege.md index de884ee53e957c..3b3a0e8f75cb93 100644 --- a/pages/common/siege.md +++ b/pages/common/siege.md @@ -3,19 +3,19 @@ > HTTP loadtesting and benchmarking tool. > More information: . -- Test a url with default settings: +- Test a URL with default settings: `siege {{https://example.com}}` -- Test a list of urls: +- Test a list of URLs: `siege --file {{path/to/url_list.txt}}` -- Test list of urls in a random order (Simulates internet traffic): +- Test list of URLs in a random order (Simulates internet traffic): `siege --internet --file {{path/to/url_list.txt}}` -- Benchmark a list of urls (Dont wait between requests): +- Benchmark a list of URLs (without waiting between requests): `siege --benchmark --file {{path/to/url_list.txt}}` diff --git a/pages/common/silicon.md b/pages/common/silicon.md new file mode 100644 index 00000000000000..e5c3f4cd528b15 --- /dev/null +++ b/pages/common/silicon.md @@ -0,0 +1,16 @@ +# silicon + +> Create an image of source code. +> More information: . + +- Generate an image from a specific source file: + +`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.): + +`silicon {{path/to/source_file}} --output {{path/to/output_image}} --language {{language|extension}}` + +- Generate an image from `stdin`: + +`{{command}} | silicon --output {{path/to/output_image}}` diff --git a/pages/common/singularity.md b/pages/common/singularity.md index 8e6c9e9da532f9..46e660aa790974 100644 --- a/pages/common/singularity.md +++ b/pages/common/singularity.md @@ -1,16 +1,17 @@ # singularity > Manage Singularity containers and images. +> More information: . - Download a remote image from Sylabs Cloud: `singularity pull --name {{image.sif}} {{library://godlovedc/funny/lolcow:latest}}` -- Rebuild a remote image using latest Singularity image format: +- Rebuild a remote image using the latest Singularity image format: `singularity build {{image.sif}} {{docker://godlovedc/lolcow}}` -- Start a container from an image and get a shell inside of it: +- Start a container from an image and get a shell inside it: `singularity shell {{image.sif}}` diff --git a/pages/common/sk.md b/pages/common/sk.md new file mode 100644 index 00000000000000..87b7fb6b26ee48 --- /dev/null +++ b/pages/common/sk.md @@ -0,0 +1,21 @@ +# sk + +> Fuzzy finder written in Rust. +> Similar to `fzf`. +> More information: . + +- Start skim on all files in the specified directory: + +`find {{path/to/directory}} -type f | sk` + +- Start skim for running processes: + +`ps aux | sk` + +- 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 > {{path/to/file}}` diff --git a/pages/common/skate.md b/pages/common/skate.md new file mode 100644 index 00000000000000..4095cdf84b8d01 --- /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/skopeo.md b/pages/common/skopeo.md new file mode 100644 index 00000000000000..10dd1859a2c521 --- /dev/null +++ b/pages/common/skopeo.md @@ -0,0 +1,29 @@ +# skopeo + +> Container image management toolbox. +> Provides various utility commands to manage remote container images. +> More information: . + +- Inspect a remote image from a registry: + +`skopeo inspect docker://{{registry_hostname}}/{{image:tag}}` + +- List available tags for a remote image: + +`skopeo list-tags docker://{{registry_hostname}}/{{image}}` + +- Download an image from a registry: + +`skopeo copy docker://{{registry_hostname}}/{{image:tag}} dir:{{path/to/directory}}` + +- Copy an image from one registry to another: + +`skopeo copy docker://{{source_registry}}/{{image:tag}} docker://{{destination_registry}}/{{image:tag}}` + +- Delete an image from a registry: + +`skopeo delete docker://{{registry_hostname}}/{{image:tag}}` + +- Log in to a registry: + +`skopeo login --username {{username}} {{registry_hostname}}` diff --git a/pages/common/sleep.md b/pages/common/sleep.md index 142f5a7a9d0345..ad0b29ec236987 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/slimrb.md b/pages/common/slimrb.md index 975cc975becb25..47c4833333788e 100644 --- a/pages/common/slimrb.md +++ b/pages/common/slimrb.md @@ -1,6 +1,7 @@ # slimrb > Convert Slim files to HTML. +> More information: . - Convert a Slim file to HTML: diff --git a/pages/common/smalltalkci.md b/pages/common/smalltalkci.md new file mode 100644 index 00000000000000..63934129804a89 --- /dev/null +++ b/pages/common/smalltalkci.md @@ -0,0 +1,28 @@ +# smalltalkci + +> Framework for testing Smalltalk projects with GitHub Actions, Travis CI, AppVeyor, GitLab CI, and others. +> More information: . + +- Run tests for a configuration file: + +`smalltalkci {{path/to/.smalltalk.ston}}` + +- Run tests for the `.smalltalk.ston` configuration in the current directory: + +`smalltalkci` + +- Debug tests in headful mode (show VM window): + +`smalltalkci --headful` + +- Download and prepare a well-known smalltalk image for the tests: + +`smalltalkci --smalltalk {{Squeak64-Trunk}}` + +- Specify a custom Smalltalk image and VM: + +`smalltalkci --image {{path/to/Smalltalk.image}} --vm {{path/to/vm}}` + +- Clean up caches and delete builds: + +`smalltalkci --clean` diff --git a/pages/common/smartctl.md b/pages/common/smartctl.md index a62ff26228709b..f6319303c781ec 100644 --- a/pages/common/smartctl.md +++ b/pages/common/smartctl.md @@ -1,24 +1,24 @@ # smartctl -> View a disk's SMART data and other information. -> More information: . +> Monitor disk health including SMART data. +> More information: . -- View SMART health summary: +- Display SMART health summary: `sudo smartctl --health {{/dev/sdX}}` -- View device information: +- Display device information: `sudo smartctl --info {{/dev/sdX}}` -- Begin a short self-test: +- Start a short self-test in the background: `sudo smartctl --test short {{/dev/sdX}}` -- View current/last self-test status and other SMART capabilities: +- Display current/last self-test status and other SMART capabilities: `sudo smartctl --capabilities {{/dev/sdX}}` -- View SMART self-test log (if supported): +- Display exhaustive SMART data: -`sudo smartctl --log selftest {{/dev/sdX}}` +`sudo smartctl --all {{/dev/sdX}}` diff --git a/pages/common/smbmap.md b/pages/common/smbmap.md new file mode 100644 index 00000000000000..2eda33ca08f7d2 --- /dev/null +++ b/pages/common/smbmap.md @@ -0,0 +1,24 @@ +# smbmap + +> Allow users to enumerate samba share drives across an entire domain. +> More information: . + +- Enumerate hosts with NULL sessions enabled and open shares: + +`smbmap --host-file {{path/to/file}}` + +- Enumerate hosts and check SMB file permissions: + +`smbmap --host-file {{path/to/file}} -u {{username}} -p {{password}} -q` + +- Connect to an ip or hostname through smb using a username and password: + +`smbmap -u {{username}} -p {{password}} -d {{domain}} -H {{ip_or_hostname}}` + +- Locate and download files [R]ecursively up to N levels depth, searching for filename pattern (regex), and excluding certain shares: + +`smbmap --host-file {{path/to/file}} -u {{username}} -p {{password}} -q -R --depth {{number}} --exclude {{sharename}} -A {{filepattern}}` + +- Upload file through smb using username and password: + +`smbmap -u {{username}} -p {{password}} -d {{domain}} -H {{ip_or_hostname}} --upload {{path/to/file}} '{{/share_name/remote_filename}}'` diff --git a/pages/common/sn.md b/pages/common/sn.md index ca98de1c37433c..c20adfacccb668 100644 --- a/pages/common/sn.md +++ b/pages/common/sn.md @@ -1,6 +1,7 @@ # sn > Mono StrongName utility for signing and verifying IL assemblies. +> More information: . - Generate a new StrongNaming key: diff --git a/pages/common/snakefmt.md b/pages/common/snakefmt.md new file mode 100644 index 00000000000000..89e1cfa7d7ad14 --- /dev/null +++ b/pages/common/snakefmt.md @@ -0,0 +1,24 @@ +# snakefmt + +> Format Snakemake files. +> More information: . + +- Format a specific Snakefile: + +`snakefmt {{path/to/snakefile}}` + +- Format all Snakefiles recursively in a specific directory: + +`snakefmt {{path/to/directory}}` + +- Format a file using a specific configuration file: + +`snakefmt --config {{path/to/config.toml}} {{path/to/snakefile}}` + +- Format a file using a specific maximum line length: + +`snakefmt --line-length {{100}} {{path/to/snakefile}}` + +- Display the changes that would be performed without performing them (dry-run): + +`snakefmt --diff {{path/to/snakefile}}` diff --git a/pages/common/snort.md b/pages/common/snort.md new file mode 100644 index 00000000000000..696195a0d8e1d5 --- /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/snowsql.md b/pages/common/snowsql.md new file mode 100644 index 00000000000000..e317357242c8d2 --- /dev/null +++ b/pages/common/snowsql.md @@ -0,0 +1,24 @@ +# snowsql + +> SnowSQL command-line client for Snowflake's Data Cloud. +> More information: . + +- Connect to a specific instance at (password can be provided in prompt or configuration file): + +`snowsql --accountname {{account}} --username {{username}} --dbname {{database}} --schemaname {{schema}}` + +- Connect to an instance specified by a specific configuration file (defaults to `~/.snowsql/config`): + +`snowsql --config {{path/to/configuration_file}}` + +- Connect to the default instance using a token for multi-factor authentication: + +`snowsql --mfa-passcode {{token}}` + +- Execute a single SQL query or SnowSQL command on the default connection (useful in shell scripts): + +`snowsql --query '{{query}}'` + +- Execute commands from a specific file on the default connection: + +`snowsql --filename {{path/to/file.sql}}` diff --git a/pages/common/snyk.md b/pages/common/snyk.md index c8ab82db71db35..89392207f795e6 100644 --- a/pages/common/snyk.md +++ b/pages/common/snyk.md @@ -3,7 +3,7 @@ > Find vulnerabilities in your code and remediate risks. > More information: . -- Login to your Snyk account: +- Log in to your Snyk account: `snyk auth` diff --git a/pages/common/socat.md b/pages/common/socat.md index 83f82aacff7025..e039859f41c754 100644 --- a/pages/common/socat.md +++ b/pages/common/socat.md @@ -1,6 +1,7 @@ # socat > Multipurpose relay (SOcket CAT). +> More information: . - Listen to a port, wait for an incoming connection and transfer data to STDIO: diff --git a/pages/common/sockstat.md b/pages/common/sockstat.md new file mode 100644 index 00000000000000..665f9beffead94 --- /dev/null +++ b/pages/common/sockstat.md @@ -0,0 +1,8 @@ +# sockstat + +> List open Internet or UNIX domain sockets. +> More information: . + +- View which users/processes are listening to which ports: + +`sockstat -l` diff --git a/pages/common/solcjs.md b/pages/common/solcjs.md new file mode 100644 index 00000000000000..439113ee6e54e3 --- /dev/null +++ b/pages/common/solcjs.md @@ -0,0 +1,24 @@ +# solcjs + +> A set of JavaScript bindings for the Solidity compiler. +> More information: . + +- Compile a specific contract to hex: + +`solcjs --bin {{path/to/file.sol}}` + +- Compile the ABI of a specific contract: + +`solcjs --abi {{path/to/file.sol}}` + +- Specify a base path to resolve imports from: + +`solcjs --bin --base-path {{path/to/directory}} {{path/to/file.sol}}` + +- Specify one or more paths to include containing external code: + +`solcjs --bin --include-path {{path/to/directory}} {{path/to/file.sol}}` + +- Optimise the generated bytecode: + +`solcjs --bin --optimize {{path/to/file.sol}}` diff --git a/pages/common/solo.md b/pages/common/solo.md index 0caff4be72f5ce..c346834cfbf8e4 100644 --- a/pages/common/solo.md +++ b/pages/common/solo.md @@ -11,7 +11,7 @@ `solo key update` -- Blink the led of a specific Solo: +- Blink the LED of a specific Solo: `solo key wink --serial {{serial_number}}` diff --git a/pages/common/sonar-scanner.md b/pages/common/sonar-scanner.md index 819138fc90d748..e0891e796fbd55 100644 --- a/pages/common/sonar-scanner.md +++ b/pages/common/sonar-scanner.md @@ -1,6 +1,6 @@ # sonar-scanner -> SonarScanner is a generic scanner for SonarQube for projects do not use any specific build tool like maven, gradle , etc. +> SonarScanner is a generic scanner for SonarQube projects that do not use build tools such as Maven, Gradle, or Ant. > More information: . - Scan a project with configuration file in your project's root directory named `sonar-project.properties`: @@ -15,6 +15,6 @@ `sonar-scanner -h` -- Print debudgging information: +- Print debugging information: `sonar-scanner -X` diff --git a/pages/common/soupault.md b/pages/common/soupault.md new file mode 100644 index 00000000000000..ebeac9baab9ca9 --- /dev/null +++ b/pages/common/soupault.md @@ -0,0 +1,25 @@ +# soupault + +> Soupault is a static website generator based on HTML element tree rewriting. +> It can also be used as an HTML post-processor or metadata extractor. +> More information: . + +- Initialize a minimal website project in the current working directory: + +`soupault --init` + +- Build a website: + +`soupault` + +- Override default config file and directory locations: + +`soupault --config {{config_path}} --site-dir {{input_dir}} --build-dir {{output_dir}}` + +- Extract metadata into a JSON file without generating pages: + +`soupault --index-only --dump-index-json {{path/to/file.json}}` + +- Show the effective config (values from `soupault.toml` plus defaults): + +`soupault --show-effective-config` diff --git a/pages/common/source.md b/pages/common/source.md index b5cbb04d8ae4fd..4437eea4f84dc9 100644 --- a/pages/common/source.md +++ b/pages/common/source.md @@ -1,7 +1,12 @@ # source > Execute commands from a file in the current shell. +> More information: . - Evaluate contents of a given file: `source {{path/to/file}}` + +- Evaluate contents of a given file (alternatively replacing `source` with `.`): + +`. {{path/to/file}}` diff --git a/pages/common/spark.md b/pages/common/spark.md index bcd0002d97f487..3c3799f093cd3c 100644 --- a/pages/common/spark.md +++ b/pages/common/spark.md @@ -1,6 +1,6 @@ # spark -> The Laravel Spark command line tool. +> The Laravel Spark command-line tool. > More information: . - Register your API token: @@ -19,6 +19,6 @@ `spark new {{project_name}} --braintree` -- Create a new Spark project with team based billing stubs: +- Create a new Spark project with team-based billing stubs: `spark new {{project_name}} --team-billing` diff --git a/pages/common/spatial.md b/pages/common/spatial.md index f6b525b9eb07ed..9d3bb76864ca2b 100644 --- a/pages/common/spatial.md +++ b/pages/common/spatial.md @@ -1,6 +1,7 @@ # spatial > A set of commands for managing and developing SpatialOS projects. +> More information: . - Run this when you use a project for the first time: diff --git a/pages/common/spectacle.md b/pages/common/spectacle.md new file mode 100644 index 00000000000000..cf415fccd30b08 --- /dev/null +++ b/pages/common/spectacle.md @@ -0,0 +1,16 @@ +# spectacle + +> KDE's screenshot utility. +> More information: . + +- Capture a screenshot of the entire desktop: + +`spectacle` + +- Capture a screenshot of the active window: + +`spectacle --activewindow` + +- Capture a screenshot of a specific region: + +`spectacle --region` diff --git a/pages/common/speedcrunch.md b/pages/common/speedcrunch.md new file mode 100644 index 00000000000000..fe46785a12db35 --- /dev/null +++ b/pages/common/speedcrunch.md @@ -0,0 +1,36 @@ +# speedcrunch + +> A high-precision scientific calculator. +> More information: . + +- Start speedcrunch: + +`speedcrunch` + +- Copy the result of the most recent calculation: + +`Ctrl + R` + +- Open the formula book: + +`Ctrl + 1` + +- Clear the calculator of recent calculations: + +`Ctrl + N` + +- Wrap highlighted in parentheses (defaults to wrapping all if nothing selected): + +`Ctrl + P` + +- Load a speedcrunch session: + +`Ctrl + L` + +- Save a speedcrunch session: + +`Ctrl + S` + +- Toggle keypad: + +`Ctrl + K` diff --git a/pages/common/speedtest-cli.md b/pages/common/speedtest-cli.md index 9d61573fc09a4b..b12fb525ef8676 100644 --- a/pages/common/speedtest-cli.md +++ b/pages/common/speedtest-cli.md @@ -1,32 +1,37 @@ # speedtest-cli -> Command line interface for testing internet bandwidth using https://speedtest.net. +> Unofficial command-line interface for testing internet bandwidth using https://speedtest.net. +> See also `speedtest` for the official CLI. > More information: . - Run a speed test: `speedtest-cli` +- Run a speed test and display values in bytes, instead of bits: + +`speedtest-cli --bytes` + +- Run a speed test using `HTTPS`, instead of `HTTP`: + +`speedtest-cli --secure` + - Run a speed test without performing download tests: `speedtest-cli --no-download` -- Run a speed test and generate an image of the results (useful for sharing): +- Run a speed test and generate an image of the results: `speedtest-cli --share` -- Run a speed test to the given speedtest.net server id: +- List all `speedtest.net` servers, sorted by distance: -`speedtest-cli --server {{server_id}}` - -- Save a list of all speedtest.net servers, sorted by distance: +`speedtest-cli --list` -`speedtest-cli --list > {{speedtest_servers.txt}}` +- Run a speed test to a specific speedtest.net server: -- Display results as CSV (suppressing progress information): - -`speedtest-cli --csv --csv-delimiter {{delimiter_char}}` +`speedtest-cli --server {{server_id}}` -- Display results as JSON (suppressing progress information): +- Run a speed test and display the results as JSON (suppresses progress information): `speedtest-cli --json` diff --git a/pages/common/speedtest.md b/pages/common/speedtest.md new file mode 100644 index 00000000000000..73b14fcb9c10c5 --- /dev/null +++ b/pages/common/speedtest.md @@ -0,0 +1,33 @@ +# speedtest + +> Official command-line interface for testing internet bandwidth using https://speedtest.net. +> Note: some platforms link `speedtest` to `speedtest-cli`. If some of the examples in this page don't work, see `speedtest-cli`. +> More information: . + +- Run a speed test: + +`speedtest` + +- Run a speed test and specify the unit of the output: + +`speedtest --unit={{auto-decimal-bits|auto-decimal-bytes|auto-binary-bits|auto-binary-bytes}}` + +- Run a speed test and specify the output format: + +`speedtest --format={{human-readable|csv|tsv|json|jsonl|json-pretty}}` + +- Run a speed test and specify the number of decimal points to use (0 to 8, defaults to 2): + +`speedtest --precision={{precision}}` + +- Run a speed test and print its progress (only available for output format `human-readable` and `json`): + +`speedtest --progress={{yes|no}}` + +- List all `speedtest.net` servers, sorted by distance: + +`speedtest --servers` + +- Run a speed test to a specific `speedtest.net` server: + +`speedtest --server-id={{server_id}}` diff --git a/pages/common/spicetify.md b/pages/common/spicetify.md new file mode 100644 index 00000000000000..edb8602823c275 --- /dev/null +++ b/pages/common/spicetify.md @@ -0,0 +1,28 @@ +# spicetify + +> A CLI utility to customize the Spotify client UI and functionality. +> More information: . + +- Generate a configuration file on very first run and display help: + +`spicetify` + +- Backup and preprocess Spotify application files: + +`spicetify backup` + +- Print all configuration fields and values: + +`spicetify config` + +- Change the value of a configuration field: + +`spicetify config {{field}} {{value}}` + +- Apply the customization changes to Spotify: + +`spicetify apply` + +- Restore Spotify to its original state: + +`spicetify restore` diff --git a/pages/common/split.md b/pages/common/split.md index 1a7538133a6513..408f9853df1861 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/sqlite-utils.md b/pages/common/sqlite-utils.md new file mode 100644 index 00000000000000..f2af286bd9a7ca --- /dev/null +++ b/pages/common/sqlite-utils.md @@ -0,0 +1,36 @@ +# sqlite-utils + +> Command-line tool used to manipulate SQLite databases in a number of different ways. +> More information: . + +- Create a database: + +`sqlite-utils create-database {{path/to/database.db}}` + +- Create a table: + +`sqlite-utils create-table {{path/to/database.db}} {{table_name}} {{id integer name text height float photo blob --pk id}}` + +- List tables: + +`sqlite-utils tables {{path/to/database.db}}` + +- Upsert a record: + +`{{echo '[ {"id": 1, "name": "Linus Torvalds"}, {"id": 2, "name": "Steve Wozniak"}, {"id": 3, "name": "Tony Hoare"} ]'}} | sqlite-utils upsert {{path/to/database.db}} {{table_name}} - {{--pk id}}` + +- Select records: + +`sqlite-utils rows {{path/to/database.db}} {{table_name}}` + +- Delete a record: + +`sqlite-utils query {{path/to/database.db}} "{{delete from table_name where name = 'Tony Hoare'}}"` + +- Drop a table: + +`sqlite-utils drop-table {{path/to/database.db}} {{table_name}}` + +- Show help information: + +`sqlite-utils -h` diff --git a/pages/common/sqsc.md b/pages/common/sqsc.md index 9dea79d48ca6b6..cffda309e922c9 100644 --- a/pages/common/sqsc.md +++ b/pages/common/sqsc.md @@ -1,6 +1,6 @@ # sqsc -> A command line AWS Simple Queue Service client. +> A command-line AWS Simple Queue Service client. > More information: . - List all queues: @@ -27,6 +27,6 @@ `sqsc query "SELECT body FROM {{queue_name}} WHERE body LIKE '%user%'"` -- Pull all messages from a queue into a local sqlite database in your present working directory: +- Pull all messages from a queue into a local SQLite database in your present working directory: `sqsc pull {{queue_name}}` diff --git a/pages/common/ssh-add.md b/pages/common/ssh-add.md new file mode 100644 index 00000000000000..4a7b96ed60b740 --- /dev/null +++ b/pages/common/ssh-add.md @@ -0,0 +1,29 @@ +# ssh-add + +> Manage loaded ssh keys in the ssh-agent. +> Ensure that ssh-agent is up and running for the keys to be loaded in it. +> More information: . + +- Add the default ssh keys in `~/.ssh` to the ssh-agent: + +`ssh-add` + +- Add a specific key to the ssh-agent: + +`ssh-add {{path/to/private_key}}` + +- List fingerprints of currently loaded keys: + +`ssh-add -l` + +- Delete a key from the ssh-agent: + +`ssh-add -d {{path/to/private_key}}` + +- Delete all currently loaded keys from the ssh-agent: + +`ssh-add -D` + +- Add a key to the ssh-agent and the keychain: + +`ssh-add -K {{path/to/private_key}}` diff --git a/pages/common/ssh-agent.md b/pages/common/ssh-agent.md index 70a9701fb89c8e..2855264b2a04eb 100644 --- a/pages/common/ssh-agent.md +++ b/pages/common/ssh-agent.md @@ -3,6 +3,7 @@ > Spawn an SSH Agent process. > An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. > See also `ssh-add`, which can add and manage keys held by an SSH Agent. +> More information: . - Start an SSH Agent for the current shell: diff --git a/pages/common/ssh-copy-id.md b/pages/common/ssh-copy-id.md index 0e92ac500fa2b7..e3d66674951f33 100644 --- a/pages/common/ssh-copy-id.md +++ b/pages/common/ssh-copy-id.md @@ -1,6 +1,7 @@ # ssh-copy-id > Install your public key in a remote machine's authorized_keys. +> More information: . - Copy your keys to the remote machine: diff --git a/pages/common/ssh-keygen.md b/pages/common/ssh-keygen.md index 7fa33b760245c8..06c034c874e3e3 100644 --- a/pages/common/ssh-keygen.md +++ b/pages/common/ssh-keygen.md @@ -1,6 +1,7 @@ # ssh-keygen > Generate ssh keys used for authentication, password-less logins, and other things. +> More information: . - Generate a key interactively: @@ -8,19 +9,15 @@ - Specify file in which to save the key: -`ssh-keygen -f ~/.ssh/{{filename}}` +`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 {{100}}` -- Generate an RSA 4096 bit key with email as a comment: +- Generate an RSA 4096-bit key with email as a comment: -`ssh-keygen -t rsa -b 4096 -C "{{email}}"` - -- Retrieve the key fingerprint from a host (useful for confirming the authenticity of the host when first connecting to it via SSH): - -`ssh-keygen -l -F {{remote_host}}` +`ssh-keygen -t {{dsa|ecdsa|ed25519|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): @@ -28,8 +25,12 @@ - Retrieve the fingerprint of a key in MD5 Hex: -`ssh-keygen -l -E md5 -f ~/.ssh/{{filename}}` +`ssh-keygen -l -E {{md5}} -f {{~/.ssh/filename}}` - Change the password of a key: -`ssh-keygen -p -f ~/.ssh/{{filename}}` +`ssh-keygen -p -f {{~/.ssh/filename}}` + +- 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}}` diff --git a/pages/common/ssh-keyscan.md b/pages/common/ssh-keyscan.md index 15f666c72068ff..b28098d5afa6db 100644 --- a/pages/common/ssh-keyscan.md +++ b/pages/common/ssh-keyscan.md @@ -1,6 +1,7 @@ # ssh-keyscan > Get the public ssh keys of remote hosts. +> More information: . - Retrieve all public ssh keys of a remote host: diff --git a/pages/common/ssh.md b/pages/common/ssh.md index 245c4cf29c3d5f..ebf14f86e962c4 100644 --- a/pages/common/ssh.md +++ b/pages/common/ssh.md @@ -2,6 +2,7 @@ > Secure Shell is a protocol used to securely log onto remote systems. > It can be used for logging or executing commands on a remote server. +> More information: . - Connect to a remote server: @@ -15,15 +16,15 @@ `ssh {{username}}@{{remote_host}} -p {{2222}}` -- Run a command on a remote server: +- Run a command on a remote server with a [t]ty allocation allowing interaction with the remote command: -`ssh {{remote_host}} {{command -with -flags}}` +`ssh {{username}}@{{remote_host}} -t {{command}} {{command_arguments}}` -- SSH tunneling: Dynamic port forwarding (SOCKS proxy on localhost:1080): +- SSH tunneling: Dynamic port forwarding (SOCKS proxy on `localhost:1080`): `ssh -D {{1080}} {{username}}@{{remote_host}}` -- SSH tunneling: Forward a specific port (localhost:9999 to example.org:80) along with disabling pseudo-[t]ty allocation and executio[n] of remote commands: +- SSH tunneling: Forward a specific port (`localhost:9999` to `example.org:80`) along with disabling pseudo-[T]ty allocation and executio[N] of remote commands: `ssh -L {{9999}}:{{example.org}}:{{80}} -N -T {{username}}@{{remote_host}}` diff --git a/pages/common/sshd.md b/pages/common/sshd.md new file mode 100644 index 00000000000000..035078fbffb226 --- /dev/null +++ b/pages/common/sshd.md @@ -0,0 +1,21 @@ +# sshd + +> Secure Shell Daemon - allows remote machines to securely log in to the current machine. +> Remote machines can execute commands as it is executed at this machine. +> More information: . + +- Start daemon in the background: + +`sshd` + +- Run sshd in the foreground: + +`sshd -D` + +- Run with verbose output (for debugging): + +`sshd -D -d` + +- Run on a specific port: + +`sshd -p {{port}}` diff --git a/pages/common/sshfs.md b/pages/common/sshfs.md index d228fb49829ba8..9a36e8b1cd1b07 100644 --- a/pages/common/sshfs.md +++ b/pages/common/sshfs.md @@ -1,6 +1,6 @@ # sshfs -> Filesystem client based on ssh. +> Filesystem client based on SSH. > More information: . - Mount remote directory: diff --git a/pages/common/sshpass.md b/pages/common/sshpass.md index a7de6110b7c443..081fafe53b4b87 100644 --- a/pages/common/sshpass.md +++ b/pages/common/sshpass.md @@ -1,9 +1,10 @@ # sshpass > An ssh password provider. -> It works by creating a TTY, feeding the password into it, and then redirecting stdin to the ssh session. +> It works by creating a TTY, feeding the password into it, and then redirecting `stdin` to the ssh session. +> More information: . -- Connect to a remote server using a password supplied on a file descriptor (in this case, stdin): +- Connect to a remote server using a password supplied on a file descriptor (in this case, `stdin`): `sshpass -d {{0}} ssh {{user}}@{{hostname}}` @@ -13,4 +14,4 @@ - Connect to a remote server using the first line of a file as the password, automatically accept unknown ssh keys, and launch a command: -`sshpass -f {{file}} ssh -o StrictHostKeyChecking=no {{user}}@{{hostname}} "{{command}}"` +`sshpass -f {{path/to/file}} ssh -o StrictHostKeyChecking=no {{user}}@{{hostname}} "{{command}}"` diff --git a/pages/common/sshuttle.md b/pages/common/sshuttle.md new file mode 100644 index 00000000000000..e05967a22c7200 --- /dev/null +++ b/pages/common/sshuttle.md @@ -0,0 +1,21 @@ +# sshuttle + +> Transparent proxy server that tunnels traffic over an SSH connection. +> Doesn't require root or any special setup on the remote SSH server, though root access on the local machine is prompted for. +> More information: . + +- Forward all IPv4 TCP traffic via a remote SSH server: + +`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` + +- Also forward all DNS traffic to the server's default DNS resolver: + +`sshuttle --dns --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` + +- Forward all traffic except that which is bound for a specific subnet: + +`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} --exclude {{192.168.0.1/24}}` + +- Use the tproxy method to forward all IPv4 and IPv6 traffic: + +`sshuttle --method=tproxy --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} {{::/0}} --exclude={{your_local_ip_address}} --exclude={{ssh_server_ip_address}}` diff --git a/pages/common/sslscan.md b/pages/common/sslscan.md new file mode 100644 index 00000000000000..57eb60ac5ec2d9 --- /dev/null +++ b/pages/common/sslscan.md @@ -0,0 +1,16 @@ +# sslscan + +> Check SSL/TLS protocols and ciphers supported by a server. +> More information: . + +- Test a server on port 443: + +`sslscan {{example.com}}` + +- Test a specified port: + +`sslscan {{example.com}}:{{465}}` + +- Show certificate information: + +`testssl --show-certificate {{example.com}}` diff --git a/pages/common/st-info.md b/pages/common/st-info.md index 8d717c786c93ef..b1daabfd21194f 100644 --- a/pages/common/st-info.md +++ b/pages/common/st-info.md @@ -7,7 +7,7 @@ `st-info --flash` -- Display amount of sram memory available: +- Display amount of SRAM memory available: `st-info --sram` diff --git a/pages/common/standard-version.md b/pages/common/standard-version.md new file mode 100644 index 00000000000000..77b8c9241c9a7b --- /dev/null +++ b/pages/common/standard-version.md @@ -0,0 +1,36 @@ +# standard-version + +> Automate versioning and changelog generation, with SemVer and Conventional Commits. +> More information: . + +- Update the changelog file and tag a release: + +`standard-version` + +- Tag a release without bumping the version: + +`standard-version --first-release` + +- Update the changelog and tag an alpha release: + +`standard-version --prerelease alpha` + +- Update the changelog and tag a specific release type: + +`standard-version --release-as {{major|minor|patch}}` + +- Tag a release, preventing hooks from being verified during the commit step: + +`standard-version --no-verify` + +- Tag a release committing all staged changes, not just files affected by `standard-version`: + +`standard-version --commit-all` + +- Update a specific changelog file and tag a release: + +`standard-version --infile {{path/to/file.md}}` + +- Display the release that would be performed without performing them: + +`standard-version --dry-run` diff --git a/pages/common/standard.md b/pages/common/standard.md index 3b3fd6d043315b..7e02ccbd7f24f9 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/starship-init.md b/pages/common/starship-init.md new file mode 100644 index 00000000000000..bbacc95704c049 --- /dev/null +++ b/pages/common/starship-init.md @@ -0,0 +1,20 @@ +# starship init + +> Print shell integration code for starship. +> More information: . + +- Display the subcommand help: + +`starship init --help` + +- Print the starship integration code for the specified shell: + +`starship init {{bash|elvish|fish|ion|powershell|tcsh|zsh}}` + +- Append the `starship` integration code to `~/.bashrc`: + +`starship init {{bash}} >> {{~/.bashrc}}` + +- Append the `starship` integration code to `~/.zshrc`: + +`starship init {{zsh}} >> {{~/.zshrc}}` diff --git a/pages/common/starship.md b/pages/common/starship.md new file mode 100644 index 00000000000000..c3747c63bfe84e --- /dev/null +++ b/pages/common/starship.md @@ -0,0 +1,37 @@ +# starship + +> The minimal, blazing-fast, and infinitely customizable prompt for any shell. +> Some subcommands such as `starship init` have their own usage documentation. +> More information: . + +- Print the starship integration code for the specified shell: + +`starship init {{bash|elvish|fish|ion|powershell|tcsh|zsh}}` + +- Explain each part of the current prompt and show the time taken to render them: + +`starship explain` + +- Print the computed starship configuration (use `--default` to print default configuration instead): + +`starship print-config` + +- List supported modules: + +`starship module --list` + +- Edit the starship configuration in the default editor: + +`starship configure` + +- Create a bug report GitHub issue pre-populated with information about the system and starship configuration: + +`starship bug-report` + +- Print the completion script for the specified shell: + +`starship completions {{bash|elvish|fish|powershell|zsh}}` + +- Display help for a subcommand: + +`starship {{subcommand}} --help` diff --git a/pages/common/stat.md b/pages/common/stat.md index 734d28873229e0..3f36f96fc7a1df 100644 --- a/pages/common/stat.md +++ b/pages/common/stat.md @@ -1,27 +1,28 @@ # stat > Display file and filesystem information. +> More information: . -- Show file properties such as size, permissions, creation and access dates among others: +- Display properties about a specific file such as size, permissions, creation and access dates among others: -`stat {{file}}` +`stat {{path/to/file}}` -- Same as above but in a more concise way: +- Display properties about a specific file such as size, permissions, creation and access dates among others without labels: -`stat -t {{file}}` +`stat --terse {{path/to/file}}` -- Show filesystem information: +- Display information about the filesystem where a specific file is located: -`stat -f {{file}}` +`stat --file-system {{path/to/file}}` - Show only octal file permissions: -`stat -c "%a %n" {{file}}` +`stat --format="%a %n" {{path/to/file}}` -- Show owner and group of the file: +- Show the owner and group of a specific file: -`stat -c "%U %G" {{file}}` +`stat --format="%U %G" {{path/to/file}}` -- Show the size of the file in bytes: +- Show the size of a specific file in bytes: -`stat -c "%s %n" {{file}}` +`stat --format="%s %n" {{path/to/file}}` diff --git a/pages/common/steam.md b/pages/common/steam.md index e2efa2eeba12ce..144a3bb94794f3 100644 --- a/pages/common/steam.md +++ b/pages/common/steam.md @@ -1,9 +1,9 @@ # steam > Video game platform by Valve. -> More information: . +> More information: . -- Launch Steam, printing debug messages to stdout: +- Launch Steam, printing debug messages to `stdout`: `steam` @@ -11,6 +11,10 @@ `steam -console` +- Enable and open the Steam console tab in a running Steam instance: + +`steam steam://open/console` + - Log into Steam with the specified credentials: `steam -login {{username}} {{password}}` diff --git a/pages/common/steamcmd.md b/pages/common/steamcmd.md new file mode 100644 index 00000000000000..c36001274551c5 --- /dev/null +++ b/pages/common/steamcmd.md @@ -0,0 +1,16 @@ +# steamcmd + +> A command-line version of the Steam client. +> More information: . + +- Install or update an application anonymously: + +`steamcmd +login {{anonymous}} +app_update {{appid}} +quit` + +- Install or update an application using the specified credentials: + +`steamcmd +login {{username}} +app_update {{appid}} +quit` + +- Install an application for a specific platform: + +`steamcmd +@sSteamCmdForcePlatformType {{windows}} +login {{anonymous}} +app_update {{appid}} validate +quit` diff --git a/pages/common/stl2gts.md b/pages/common/stl2gts.md new file mode 100644 index 00000000000000..972ebe77f686fd --- /dev/null +++ b/pages/common/stl2gts.md @@ -0,0 +1,24 @@ +# stl2gts + +> Convert STL files into the GTS (GNU triangulated surface library) file format. +> More information: . + +- Convert an STL file to a GTS file: + +`stl2gts < {{path/to/file.stl}} > {{path/to/file.gts}}` + +- Convert an STL file to a GTS file and revert face normals: + +`stl2gts --revert < {{path/to/file.stl}} > {{path/to/file.gts}}` + +- Convert an STL file to a GTS file and do not merge vertices: + +`stl2gts --nomerge < {{path/to/file.stl}} > {{path/to/file.gts}}` + +- Convert an STL file to a GTS file and display surface statistics: + +`stl2gts --verbose < {{path/to/file.stl}} > {{path/to/file.gts}}` + +- Print help for `stl2gts`: + +`stl2gts --help` diff --git a/pages/common/stolonctl.md b/pages/common/stolonctl.md index dbdba75e46fc85..000737c264841a 100644 --- a/pages/common/stolonctl.md +++ b/pages/common/stolonctl.md @@ -15,6 +15,6 @@ `stolonctl --cluster-name {{cluster_name}} --store-backend {{store_backend}} --store-endpoints {{store_endpoints}} spec` -- Update cluster specification with a patch in json format: +- Update cluster specification with a patch in JSON format: `stolonctl --cluster-name {{cluster_name}} --store-backend {{store_backend}} --store-endpoints {{store_endpoints}} update --patch '{{cluster_spec}}'` diff --git a/pages/common/stormlock.md b/pages/common/stormlock.md index ad043e8ee3838c..0b61ea068174c5 100644 --- a/pages/common/stormlock.md +++ b/pages/common/stormlock.md @@ -5,7 +5,7 @@ - Acquire a lease for resource: -`stormlock aquire {{resource}}` +`stormlock acquire {{resource}}` - Release the given lease for the given resource: diff --git a/pages/common/stow.md b/pages/common/stow.md index 5360ea94de551d..1cc5f92368c2bc 100644 --- a/pages/common/stow.md +++ b/pages/common/stow.md @@ -22,4 +22,4 @@ - Exclude files matching a regular expression: -`stow --ignore={{regex}} --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}` +`stow --ignore={{regular_expression}} --target={{path/to/target_directory}} {{file1 directory1 file2 directory2}}` diff --git a/pages/common/strings.md b/pages/common/strings.md index d430d3b9791909..24aebc097f4260 100644 --- a/pages/common/strings.md +++ b/pages/common/strings.md @@ -1,19 +1,20 @@ # strings > Find printable strings in an object file or binary. +> More information: . - Print all strings in a binary: -`strings {{file}}` +`strings {{path/to/file}}` - Limit results to strings at least *length* characters long: -`strings -n {{length}} {{file}}` +`strings -n {{length}} {{path/to/file}}` - Prefix each result with its offset within the file: -`strings -t d {{file}}` +`strings -t d {{path/to/file}}` - Prefix each result with its offset within the file in hexadecimal: -`strings -t x {{file}}` +`strings -t x {{path/to/file}}` diff --git a/pages/common/stty.md b/pages/common/stty.md index 42f8f95b639f92..2f6ad052c45e8f 100644 --- a/pages/common/stty.md +++ b/pages/common/stty.md @@ -5,19 +5,15 @@ - Display all settings for the current terminal: -`stty -a` +`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: -`stty -f {{path/to/device_file}} speed` +`stty --file {{path/to/device_file}} speed` - Reset all modes to reasonable values for the current terminal: diff --git a/pages/common/stun.md b/pages/common/stun.md new file mode 100644 index 00000000000000..e57aff51349350 --- /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/su.md b/pages/common/su.md index 8b83643994a6a6..ae50244c5cec8a 100644 --- a/pages/common/su.md +++ b/pages/common/su.md @@ -1,6 +1,7 @@ # su > Switch shell to another user. +> More information: . - Switch to superuser (requires the root password): diff --git a/pages/common/subfinder.md b/pages/common/subfinder.md index 4d472ab7682d70..3808c20dea27bf 100644 --- a/pages/common/subfinder.md +++ b/pages/common/subfinder.md @@ -12,7 +12,7 @@ `subfinder --silent -d {{example.com}}` -- Use bruteforcing to find subdomains: +- Use a brute-force attack to find subdomains: `subfinder -d {{example.com}} -b` diff --git a/pages/common/sum.md b/pages/common/sum.md index 3fb464ad525934..7fe1affcfc6fa5 100644 --- a/pages/common/sum.md +++ b/pages/common/sum.md @@ -6,8 +6,8 @@ - Compute a checksum with BSD-compatible algorithm and 1024-byte blocks: -`sum {{file}}` +`sum {{path/to/file}}` - Compute a checksum with System V-compatible algorithm and 512-byte blocks: -`sum --sysv {{file}}` +`sum --sysv {{path/to/file}}` diff --git a/pages/common/sup.md b/pages/common/sup.md new file mode 100644 index 00000000000000..86107f7f346716 --- /dev/null +++ b/pages/common/sup.md @@ -0,0 +1,9 @@ +# sup + +> A tool for managing an RSS feed contained in the current directory. +> See also: `lb`. +> More information: . + +- Add an article to the RSS feed: + +`sup {{path/to/file.html}}` diff --git a/pages/common/supervisorctl.md b/pages/common/supervisorctl.md index 79a8f40d4208ed..a42960008ef987 100644 --- a/pages/common/supervisorctl.md +++ b/pages/common/supervisorctl.md @@ -12,11 +12,11 @@ `supervisorctl {{start|stop|restart}} {{group_name}}:*` -- Show last 100 **bytes** of process stderr: +- Show last 100 **bytes** of process `stderr`: `supervisorctl tail -100 {{process_name}} stderr` -- Keep displaying stdout of a process: +- Keep displaying `stdout` of a process: `supervisorctl tail -f {{process_name}} stdout` diff --git a/pages/common/surge.md b/pages/common/surge.md index f4c6afda4f766a..b86cc2379d15b1 100644 --- a/pages/common/surge.md +++ b/pages/common/surge.md @@ -1,6 +1,6 @@ # surge -> Simple command line web publishing. +> Simple command-line web publishing. > More information: . - Upload a new site to surge.sh: diff --git a/pages/common/sv.md b/pages/common/sv.md index 00b15f81bdf57b..3d541847a26a0e 100644 --- a/pages/common/sv.md +++ b/pages/common/sv.md @@ -14,3 +14,11 @@ - Get service status: `sudo sv status {{path/to/service}}` + +- Reload a service: + +`sudo sv reload {{path/to/service}}` + +- Start a service, but only if it's not running and don't restart it if it stops: + +`sudo sv once {{path/to/service}}` diff --git a/pages/common/svgcleaner.md b/pages/common/svgcleaner.md index c1b2b2decf2e19..b6effb70ba2c7e 100644 --- a/pages/common/svgcleaner.md +++ b/pages/common/svgcleaner.md @@ -1,12 +1,12 @@ # svgcleaner -> SVG image optimizing utility. +> SVG optimizing utility. > More information: . -- Optimize an SVG image: +- Optimize an SVG: `svgcleaner {{input.svg}} {{output.svg}}` -- Optimize an SVG image multiple times: +- Optimize an SVG multiple times: `svgcleaner --multipass {{input.svg}} {{output.svg}}` diff --git a/pages/common/svgo.md b/pages/common/svgo.md index cd10847efc0c74..5419d4429dcca3 100644 --- a/pages/common/svgo.md +++ b/pages/common/svgo.md @@ -28,10 +28,6 @@ `svgo {{test.svg}} -o -` -- Optimize a file making sure a given plugin is enabled: - -`svgo --enable={{plugin_name}}` - - Show available plugins: `svgo --show-plugins` diff --git a/pages/common/svgr.md b/pages/common/svgr.md new file mode 100644 index 00000000000000..4e050ff0359800 --- /dev/null +++ b/pages/common/svgr.md @@ -0,0 +1,32 @@ +# svgr + +> Transform SVGs into React components. +> More information: . + +- Transform a SVG file into a React component to `stdout`: + +`svgr -- {{path/to/file.svg}}` + +- Transform a SVG file into a React component using TypeScript to `stdout`: + +`svgr --typescript -- {{path/to/file.svg}}` + +- Transform a SVG file into a React component using JSX transform to `stdout`: + +`svgr --jsx-runtime automatic -- {{path/to/file.svg}}` + +- Transform all SVG files from a directory to React components into a specific directory: + +`svgr --out-dir {{path/to/output_directory}} {{path/to/input_directory}}` + +- Transform all SVG files from a directory to React components into a specific directory skipping already transformed files: + +`svgr --out-dir {{path/to/output_directory}} --ignore-existing {{path/to/input_directory}}` + +- Transform all SVG files from a directory to React components into a specific directory using a specific case for filenames: + +`svgr --out-dir {{path/to/output_directory}} --filename-case {{camel|kebab|pascal}} {{path/to/input_directory}}` + +- Transform all SVG files from a directory to React components into a specific directory without generating an index file: + +`svgr --out-dir {{path/to/output_directory}} --no-index {{path/to/input_directory}}` diff --git a/pages/common/svn.md b/pages/common/svn.md index b7f90a7e4f7673..a68f8a693dc949 100644 --- a/pages/common/svn.md +++ b/pages/common/svn.md @@ -1,6 +1,6 @@ # svn -> Subversion command line client tool. +> Subversion command-line client tool. > More information: . - Check out a working copy from a repository: diff --git a/pages/common/swagger-codegen.md b/pages/common/swagger-codegen.md index 02e10231e90c19..0cb5ce007a5d7e 100644 --- a/pages/common/swagger-codegen.md +++ b/pages/common/swagger-codegen.md @@ -7,7 +7,7 @@ `swagger-codegen generate -i {{swagger_file}} -l {{language}}` -- Generate java code using the library retrofit2 and the option useRxJava2: +- Generate Java code using the library retrofit2 and the option useRxJava2: `swagger-codegen generate -i {{http://petstore.swagger.io/v2/swagger.json}} -l {{java}} --library {{retrofit2}} -D{{useRxJava2}}={{true}}` diff --git a/pages/common/swc.md b/pages/common/swc.md new file mode 100644 index 00000000000000..b01b4d8a3db82c --- /dev/null +++ b/pages/common/swc.md @@ -0,0 +1,28 @@ +# swc + +> JavaScript and TypeScript compiler written in Rust. +> More information: . + +- Transpile a specified input file and output to `stdout`: + +`swc {{path/to/file}}` + +- Transpile the input file every time it is changed: + +`swc {{path/to/file}} --watch` + +- Transpile a specified input file and output to a specific file: + +`swc {{path/to/input_file}} --out-file {{path/to/output_file}}` + +- Transpile a specified input directory and output to a specific directory: + +`swc {{path/to/input_directory}} --out-dir {{path/to/output_directory}}` + +- Transpile a specified input directory using a specific configuration file: + +`swc {{path/to/input_directory}} --config-file {{path/to/.swcrc}}` + +- Ignore files in a directory specified using glob path: + +`swc {{path/to/input_directory}} --ignore {{ignored_files}}` diff --git a/pages/common/swift.md b/pages/common/swift.md index 61fd15bb01736c..59efa7dff4c1ec 100644 --- a/pages/common/swift.md +++ b/pages/common/swift.md @@ -3,7 +3,7 @@ > Create, run and build Swift projects. > More information: . -- Invoke the interactive interpreter (REPL): +- Start a REPL (interactive shell): `swift` diff --git a/pages/common/swig.md b/pages/common/swig.md index 8b8287c271c11b..adb429738dbc82 100644 --- a/pages/common/swig.md +++ b/pages/common/swig.md @@ -1,7 +1,8 @@ # swig -> 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 of the wrapper code needed to build an extension module. +> 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: . - Generate a binding between C++ and Python: diff --git a/pages/common/swipl.md b/pages/common/swipl.md new file mode 100644 index 00000000000000..7b8dfd43c2e161 --- /dev/null +++ b/pages/common/swipl.md @@ -0,0 +1,24 @@ +# swipl + +> SWI-Prolog - A comprehensive free Prolog environment. +> More information: . + +- Start an interactive session: + +`swipl` + +- Execute a command without showing any output: + +`swipl --quiet -t "{{command}}"` + +- Execute a script: + +`swipl {{path/to/file.pl}}` + +- Print all shell configuration variables: + +`swipl --dump-runtime-variables` + +- Print the version: + +`swipl --version` diff --git a/pages/common/syncthing.md b/pages/common/syncthing.md index ac314bdea494dd..0bbd4574ecc1fe 100644 --- a/pages/common/syncthing.md +++ b/pages/common/syncthing.md @@ -3,11 +3,11 @@ > Continuous bidirectional decentralised folder synchronisation tool. > More information: . -- Start syncthing: +- Start Syncthing: `syncthing` -- Start syncthing without opening a web browser: +- Start Syncthing without opening a web browser: `syncthing -no-browser` @@ -27,10 +27,10 @@ `syncthing -gui-address={{ip_address:port|path/to/socket.sock}}` -- Show filepaths to the files used by syncthing: +- Show filepaths to the files used by Syncthing: `syncthing -paths` -- Disable the syncthing monitor process: +- Disable the Syncthing monitor process: `syncthing -no-restart` diff --git a/pages/common/sysbench.md b/pages/common/sysbench.md new file mode 100644 index 00000000000000..aba10044d13823 --- /dev/null +++ b/pages/common/sysbench.md @@ -0,0 +1,24 @@ +# sysbench + +> Benchmark a System's CPU, IO and memory. +> More information: . + +- Run a CPU benchmark with 1 thread for 10 seconds: + +`sysbench cpu run` + +- Run a CPU benchmark with multiple threads for a specified time: + +`sysbench --threads={{number_of_threads}} --time={{seconds}}` + +- Run a memory benchmark with 1 thread for 10 seconds: + +`sysbench memory run` + +- Prepare a filesystem-level read benchmark: + +`sysbench fileio prepare` + +- Run a filesystem-level benchmark: + +`sysbench --file-test-mode={{rndrd|rndrw|rndwr|seqrd|seqrewr|seqwr}} fileio run` diff --git a/pages/common/tac.md b/pages/common/tac.md index 85804e5f5e972f..cfa316dadd2de2 100644 --- a/pages/common/tac.md +++ b/pages/common/tac.md @@ -1,16 +1,25 @@ # tac -> Print and concatenate files in reverse (last line first). +> Display and concatenate files with lines in reversed order. +> See also: `cat`. > More information: . -- Print the contents of *file1* reversed to the standard output: +- Concatenate specific files in reversed order: -`tac {{file1}}` +`tac {{path/to/file1 path/to/file2 ...}}` -- Print the contents of the standard input reversed to the standard output: +- Display `stdin` in reversed order: -`{{command}} | tac` +`{{cat path/to/file}} | tac` -- Concatenate several files reversed into the target file: +- Use a specific [s]eparator: -`tac {{file1}} {{file2}} > {{target_file}}` +`tac -s {{separator}} {{path/to/file1 path/to/file2 ...}}` + +- Use a specific [r]egex as a [s]eparator: + +`tac -r -s {{separator}} {{path/to/file1 path/to/file2 ...}}` + +- Use a separator [b]efore each file: + +`tac -b {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/tail.md b/pages/common/tail.md index 30acf61c82f27b..5c53f65d867970 100644 --- a/pages/common/tail.md +++ b/pages/common/tail.md @@ -1,28 +1,29 @@ # tail > Display the last part of a file. +> See also: `head`. > More information: . -- Show last 'num' lines in file: +- Show last 'count' lines in file: -`tail -n {{num}} {{file}}` +`tail --lines {{count}} {{path/to/file}}` -- Show all file since line 'num': +- Print a file from a specific line number: -`tail -n +{{num}} {{file}}` +`tail --lines +{{count}} {{path/to/file}}` -- Show last 'num' bytes in file: +- Print a specific count of bytes from the end of a given file: -`tail -c {{num}} {{file}}` +`tail --bytes {{count}} {{path/to/file}}` -- Keep reading file until `Ctrl + C`: +- Print the last lines of a given file and keep reading file until `Ctrl + C`: -`tail -f {{file}}` +`tail --follow {{path/to/file}}` -- Keep reading file until `Ctrl + C`, even if the file is rotated: +- Keep reading file until `Ctrl + C`, even if the file is inaccessible: -`tail -F {{file}}` +`tail --retry --follow {{path/to/file}}` - Show last 'num' lines in 'file' and refresh every 'n' seconds: -`tail -n {{num}} -s {{n}} -f {{file}}` +`tail --lines {{count}} --sleep-interval {{seconds}} --follow {{path/to/file}}` diff --git a/pages/common/tailscale-file.md b/pages/common/tailscale-file.md new file mode 100644 index 00000000000000..3b4a939f03a103 --- /dev/null +++ b/pages/common/tailscale-file.md @@ -0,0 +1,13 @@ +# tailscale file + +> Send files across connected devices on a Tailscale network. +> It currently does not support sending files to devices owned by other users even on the same Tailscale network. +> More information: . + +- Send a file to a specific node: + +`sudo tailscale file cp {{path/to/file}} {{hostname|ip}}:` + +- Store files that were sent to the current node into a specific directory: + +`sudo tailscale file get {{path/to/directory}}` diff --git a/pages/common/tailscale-ssh.md b/pages/common/tailscale-ssh.md new file mode 100644 index 00000000000000..9c1b971de19722 --- /dev/null +++ b/pages/common/tailscale-ssh.md @@ -0,0 +1,12 @@ +# tailscale ssh + +> SSH to a Tailscale machine (Linux Only). +> More information: . + +- Advertise/Disable SSH on the host: + +`sudo tailscale up --ssh={{true|false}}` + +- SSH to a specific host which has Tailscale-SSH enabled: + +`tailscale ssh {{username}}@{{host}}` diff --git a/pages/common/tailscale-up.md b/pages/common/tailscale-up.md new file mode 100644 index 00000000000000..3751b1f1ea4ea8 --- /dev/null +++ b/pages/common/tailscale-up.md @@ -0,0 +1,37 @@ +# 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. +> More information: . + +- Connect to Tailscale: + +`sudo tailscale up` + +- Connect and offer the current machine to be an exit node for internet traffic: + +`sudo tailscale up --advertise-exit-node` + +- Connect using a specific node for internet traffic: + +`sudo tailscale up --exit-node={{exit_node_ip}}` + +- Connect and block incoming connections to the current node: + +`sudo tailscale up --shields-up` + +- Connect and don't accept DNS configuration from the admin panel (defaults to `true`): + +`sudo tailscale up --accept-dns={{false}}` + +- Connect and configure Tailscale as a subnet router: + +`sudo tailscale up --advertise-routes={{10.0.0.0/24}},{{10.0.1.0/24}}` + +- Connect and accept subnet routes from Tailscale: + +`sudo tailscale up --accept-routes` + +- Reset unspecified settings to their default values and connect: + +`sudo tailscale up --reset` diff --git a/pages/common/tailscale.md b/pages/common/tailscale.md new file mode 100644 index 00000000000000..97fa8dd9974057 --- /dev/null +++ b/pages/common/tailscale.md @@ -0,0 +1,37 @@ +# tailscale + +> A private WireGuard network service. +> Some subcommands such as `tailscale up` have their own usage documentation. +> More information: . + +- Connect to Tailscale: + +`sudo tailscale up` + +- Disconnect from Tailscale: + +`sudo tailscale down` + +- Display the current Tailscale IP addresses: + +`tailscale ip` + +- Ping a peer node at the Tailscale layer and display which route it took for each response: + +`tailscale ping {{ip|hostname}}` + +- Analyze the local network conditions and display the result: + +`tailscale netcheck` + +- Start a web server for controlling Tailscale: + +`tailscale web` + +- Display a shareable identifier to help diagnose issues: + +`tailscale bugreport` + +- Display help for a subcommand: + +`tailscale {{subcommand}} --help` diff --git a/pages/common/tar.md b/pages/common/tar.md index 8a973b39a9a220..287a6a98698046 100644 --- a/pages/common/tar.md +++ b/pages/common/tar.md @@ -4,34 +4,34 @@ > Often combined with a compression method, such as gzip or bzip2. > More information: . -- [c]reate an archive from [f]iles: +- [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 from [f]iles: +- [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: +- E[x]tract a (compressed) archive [f]ile into the current directory [v]erbosely: -`tar xf {{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={{directory}}` +`tar xf {{path/to/source.tar[.gz|.bz2|.xz]}} --directory={{path/to/directory}}` -- [c]reate a compressed archive from [f]iles, using [a]rchive suffix to determine the compression program: +- [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 [f]iles matching a pattern: +- 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/task.md b/pages/common/task.md index 8f5d5ac99d3943..5983ea46d5648e 100644 --- a/pages/common/task.md +++ b/pages/common/task.md @@ -1,23 +1,36 @@ # task -> TODO list manager. +> Command-line to-do list manager. +> More information: . -- Add new task: +- Add a new task which is due tomorrow: -`task add {{thing_to_do}}` +`task add {{description}} due:{{tomorrow}}` -- List tasks: +- Update a task's priority: -`task list` +`task {{task_id}} modify priority:{{H|M|L}}` -- Mark task as completed: +- Complete a task: `task {{task_id}} done` -- Modify task: +- Delete a task: -`task {{task_id}} modify {{new_thing_to_do}}` +`task {{task_id}} delete` -- Delete task: +- List all open tasks: -`task {{task_id}} delete` +`task list` + +- List open tasks due before the end of the week: + +`task list due.before:{{eow}}` + +- Show a graphical burndown chart, by day: + +`task burndown.daily` + +- List all reports: + +`task reports` diff --git a/pages/common/tbl.md b/pages/common/tbl.md new file mode 100644 index 00000000000000..aa8790dc4aac9b --- /dev/null +++ b/pages/common/tbl.md @@ -0,0 +1,13 @@ +# tbl + +> Table preprocessor for the groff (GNU Troff) document formatting system. +> See also `groff` and `troff`. +> More information: . + +- Process input with tables, saving the output for future typesetting with groff to PostScript: + +`tbl {{path/to/input_file}} > {{path/to/output.roff}}` + +- Typeset input with tables to PDF using the [me] macro package: + +`tbl -T {{pdf}} {{path/to/input.tbl}} | groff -{{me}} -T {{pdf}} > {{path/to/output.pdf}}` diff --git a/pages/common/tcc.md b/pages/common/tcc.md new file mode 100644 index 00000000000000..765a982c2ef716 --- /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 new file mode 100644 index 00000000000000..cf6ec88254c436 --- /dev/null +++ b/pages/common/tcsh.md @@ -0,0 +1,29 @@ +# tcsh + +> C shell with file name completion and command line editing. +> See also: `csh`. +> More information: . + +- Start an interactive shell session: + +`tcsh` + +- Start an interactive shell session without loading startup configs: + +`tcsh -f` + +- Execute specific [c]ommands: + +`tcsh -c "{{echo 'tcsh is executed'}}"` + +- Execute a specific script: + +`tcsh {{path/to/script.tcsh}}` + +- Check a specific script for syntax errors: + +`tcsh -n {{path/to/script.tcsh}}` + +- Execute specific commands from `stdin`: + +`{{echo "echo 'tcsh is executed'"}} | tcsh` diff --git a/pages/common/tea.md b/pages/common/tea.md index 010fb01c1ffc17..49e04c89df248b 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. +> A command-line tool to interact with Gitea servers. > More information: . - Log into a Gitea server: diff --git a/pages/common/tee.md b/pages/common/tee.md index 5cc96ad161fc46..7423f20dc47186 100644 --- a/pages/common/tee.md +++ b/pages/common/tee.md @@ -3,13 +3,13 @@ > Read from standard input and write to standard output and files (or commands). > More information: . -- Copy standard input to each FILE, and also to standard output: +- Copy standard input to each file, and also to standard output: -`echo "example" | tee {{FILE}}` +`echo "example" | tee {{path/to/file}}` -- Append to the given FILEs, do not overwrite: +- Append to the given files, do not overwrite: -`echo "example" | tee -a {{FILE}}` +`echo "example" | tee -a {{path/to/file}}` - Print standard input to the terminal, and also pipe it into another program for further processing: diff --git a/pages/common/telnet.md b/pages/common/telnet.md index 6a41bf0e4cd3ca..b8e34c2c2e46ae 100644 --- a/pages/common/telnet.md +++ b/pages/common/telnet.md @@ -1,6 +1,7 @@ # telnet > Connect to a specified port of a host using the telnet protocol. +> More information: . - Telnet to the default port of a host: diff --git a/pages/common/termdown.md b/pages/common/termdown.md new file mode 100644 index 00000000000000..8c3048fa2ee8b6 --- /dev/null +++ b/pages/common/termdown.md @@ -0,0 +1,24 @@ +# termdown + +> Countdown timer and stopwatch for the command-line. +> More information: . + +- Start a stopwatch: + +`termdown` + +- Start a 1 minute and 30 seconds countdown: + +`termdown {{1m30s}}` + +- Start a 1 minute 30 seconds countdown with blinking the terminal at the end: + +`termdown {{1m30s}} --blink` + +- Show a title above countdown: + +`termdown {{1m30s}} --title "{{Interesting title}}"` + +- Display current time: + +`termdown --time` diff --git a/pages/common/terminalizer.md b/pages/common/terminalizer.md index b087cade25d238..6cc33f813a2949 100644 --- a/pages/common/terminalizer.md +++ b/pages/common/terminalizer.md @@ -1,6 +1,6 @@ # terminalizer -> Utility program which records the terminal and generate animated gifs or share a video. +> Utility program which records the terminal and generate animated GIFs or share a video. > More information: . - Create the global config directory: @@ -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: +- 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/terraform-fmt.md b/pages/common/terraform-fmt.md index 36a9e21f5375f9..6dd1867493c145 100644 --- a/pages/common/terraform-fmt.md +++ b/pages/common/terraform-fmt.md @@ -15,6 +15,6 @@ `terraform fmt -diff` -- Do not list files that were formatted to stdout: +- Do not list files that were formatted to `stdout`: `terraform fmt -list=false` diff --git a/pages/common/terraform-plan.md b/pages/common/terraform-plan.md new file mode 100644 index 00000000000000..8dc394388acc9f --- /dev/null +++ b/pages/common/terraform-plan.md @@ -0,0 +1,32 @@ +# terraform plan + +> Generate and show Terraform execution plans. +> More information: . + +- Generate and show the execution plan in the currently directory: + +`terraform plan` + +- Show a plan to destroy all remote objects that currently exist: + +`terraform plan -destroy` + +- Show a plan to update the Terraform state and output values: + +`terraform plan -refresh-only` + +- Specify values for input variables: + +`terraform plan -var '{{name1}}={{value1}}' -var '{{name2}}={{value2}}'` + +- Focus Terraform's attention on only a subset of resources: + +`terraform plan -target {{resource_type.resource_name[instance index]}}` + +- Output a plan as JSON: + +`terraform plan -json` + +- Write a plan to a specific file: + +`terraform plan -no-color > {{path/to/file}}` diff --git a/pages/common/terragrunt.md b/pages/common/terragrunt.md new file mode 100644 index 00000000000000..da46af7292f18e --- /dev/null +++ b/pages/common/terragrunt.md @@ -0,0 +1,28 @@ +# terragrunt + +> Keep your Terraform CLI arguments DRY. +> More information: . + +- Generate and show an execution plan: + +`terragrunt plan` + +- Build or change infrastructure: + +`terragrunt apply` + +- Show current deployment (from state): + +`terragrunt show` + +- Show module output values: + +`terragrunt output` + +- Destroy Terraform-managed infrastructure: + +`terragrunt destroy` + +- Build or change infrastructure from a tree of Terragrunt modules (stack): + +`terragrunt run-all apply` diff --git a/pages/common/test.md b/pages/common/test.md index d468e34c2d3955..35e84e066765d3 100644 --- a/pages/common/test.md +++ b/pages/common/test.md @@ -1,6 +1,6 @@ # test -> Evaluate condition. +> Check file types and compare values. > Returns 0 if the condition evaluates to true, 1 if it evaluates to false. > More information: . @@ -20,6 +20,6 @@ `test ! -d "{{path/to/directory}}"` -- If-else statement: +- If A is true, then do B, or C in the case of an error (notice that C may run even if A fails): `test {{condition}} && {{echo "true"}} || {{echo "false"}}` diff --git a/pages/common/tex.md b/pages/common/tex.md index 5a315f51f31df4..12d87d03d3bc19 100644 --- a/pages/common/tex.md +++ b/pages/common/tex.md @@ -11,6 +11,6 @@ `tex -output-directory={{path/to/directory}} {{source.tex}}` -- Compile a DVI document, halting on each error: +- Compile a DVI document, exiting on each error: `tex -halt-on-error {{source.tex}}` diff --git a/pages/common/textql.md b/pages/common/textql.md new file mode 100644 index 00000000000000..4b485b81b10b19 --- /dev/null +++ b/pages/common/textql.md @@ -0,0 +1,28 @@ +# textql + +> Execute SQL against structured text like csv or tsv files. +> More information: . + +- Print the lines in the specified `.csv` file that match a SQL query to `stdout`: + +`textql -sql "{{SELECT * FROM filename}}" {{path/to/filename.csv}}` + +- Query `.tsv` file: + +`textql -dlm=tab -sql "{{SELECT * FROM filename}}" {{path/to/filename.tsv}}` + +- Query file with header row: + +`textql -dlm={{delimiter}} -header -sql "{{SELECT * FROM filename}}" {{path/to/filename.csv}}` + +- Read data from `stdin`: + +`cat {{path/to/file}} | textql -sql "{{SELECT * FROM stdin}}"` + +- Join two files on a specified common column: + +`textql -header -sql "SELECT * FROM {{file1}} JOIN {{file2}} ON {{file1}}.{{c1}} = {{file2}}.{{c1}} LIMIT {{10}}" -output-header {{path/to/file1.csv}} {{path/to/file2.csv}}` + +- Format output using an output delimiter with an output header line: + +`textql -output-dlm={{delimiter}} -output-header -sql "SELECT {{column}} AS {{alias}} FROM {{filename}}" {{path/to/filename.csv}}` diff --git a/pages/common/theharvester.md b/pages/common/theharvester.md index 0a13cbb4be27b9..3b33ec7c6e707e 100644 --- a/pages/common/theharvester.md +++ b/pages/common/theharvester.md @@ -15,7 +15,7 @@ `theHarvester --domain {{domain_name}} --source {{google}} --limit {{200}}` -- Save the output to two files in xml and html format: +- Save the output to two files in XML and HTML format: `theHarvester --domain {{domain_name}} --source {{google}} --file {{output_file_name}}` diff --git a/pages/common/tig.md b/pages/common/tig.md index 993ac65da66ff1..9cc7f5e97883a7 100644 --- a/pages/common/tig.md +++ b/pages/common/tig.md @@ -13,7 +13,7 @@ - Show the history of specific files or directories: -`tig {{path1 path2 …}}` +`tig {{path1 path2 ...}}` - Show the difference between two references (such as branches or tags): diff --git a/pages/common/time.md b/pages/common/time.md index d4dd058bcf6c75..2264b378ca9d20 100644 --- a/pages/common/time.md +++ b/pages/common/time.md @@ -1,6 +1,7 @@ # time > See how long a command takes. +> More information: . - Time "ls": diff --git a/pages/common/timetrap.md b/pages/common/timetrap.md new file mode 100644 index 00000000000000..4ae90e5ebe0e10 --- /dev/null +++ b/pages/common/timetrap.md @@ -0,0 +1,16 @@ +# timetrap + +> Simple command-line time tracker written in Ruby. +> More information: . + +- Create a new timesheet: + +`timetrap sheet {{timesheet}}` + +- Check in an entry started 5 minutes ago: + +`timetrap in --at "{{5 minutes ago}}" {{entry_notes}}` + +- Display the current timesheet: + +`timetrap display` diff --git a/pages/common/timew.md b/pages/common/timew.md index d8486ef73a3bdf..e64eae9ec6cd9f 100644 --- a/pages/common/timew.md +++ b/pages/common/timew.md @@ -1,7 +1,7 @@ # timew > A time tracking tool used to measure the duration of activities. -> More information: . +> More information: . - Start a new stopwatch, giving a tag name to the activity being tracked: diff --git a/pages/common/timidity.md b/pages/common/timidity.md new file mode 100644 index 00000000000000..56c77bf3c8d451 --- /dev/null +++ b/pages/common/timidity.md @@ -0,0 +1,24 @@ +# timidity + +> TiMidity++ is a MIDI file player and converter. +> More information: . + +- Play a MIDI file: + +`timidity {{path/to/file.mid}}` + +- Play a MIDI file in a loop: + +`timidity --loop {{path/to/file.mid}}` + +- Play a MIDI file in a specific key (0 = C major/A minor, -1 = F major/D minor, +1 = G major/E minor, etc.): + +`timidity --force-keysig={{-flats|+sharps}} {{path/to/file.mid}}` + +- Convert a MIDI file to PCM (WAV) audio: + +`timidity --output-mode={{w}} --output-file={{path/to/file.wav}} {{path/to/file.mid}}` + +- Convert a MIDI file to FLAC audio: + +`timidity --output-mode={{F}} --output-file={{path/to/file.flac}} {{path/to/file.mid}}` diff --git a/pages/common/tldr-generate.md b/pages/common/tldr-generate.md new file mode 100644 index 00000000000000..47ca4fd82e0bdf --- /dev/null +++ b/pages/common/tldr-generate.md @@ -0,0 +1,16 @@ +# tlmgr generate + +> Remake configuration files from information stored locally. +> More information: . + +- Remake the configuration file storing into a specific location: + +`tlmgr generate --dest {{output_file}}` + +- Remake the configuration file using a local configuration file: + +`tlmgr generate --localcfg {{local_configuration_file}}` + +- Run necessary programs after rebuilding configuration files: + +`tlmgr generate --rebuild-sys` diff --git a/pages/common/tldr-lint.md b/pages/common/tldr-lint.md index 08e235b9df4329..4c27e2a307349e 100644 --- a/pages/common/tldr-lint.md +++ b/pages/common/tldr-lint.md @@ -7,7 +7,7 @@ `tldr-lint {{pages_directory}}` -- Format a specific page to stdout: +- Format a specific page to `stdout`: `tldr-lint --format {{page.md}}` diff --git a/pages/common/tldr.md b/pages/common/tldr.md index 7829071f9b775e..e7fc222ebe8198 100644 --- a/pages/common/tldr.md +++ b/pages/common/tldr.md @@ -1,20 +1,20 @@ # tldr -> Displays simple help pages for command-line tools, from the tldr-pages project. +> Display simple help pages for command-line tools from the tldr-pages project. > More information: . -- Show the tldr page for a command (hint: this is how you got here!): +- Print the tldr page for a specific command (hint: this is how you got here!): `tldr {{command}}` -- Show the tldr page for `cd`, overriding the default platform: +- Print the tldr page for a specific subcommand: -`tldr -p {{windows}} {{cd}}` +`tldr {{command}}-{{subcommand}}` -- Show the tldr page for a subcommand: +- Print the tldr page for a command for a specific [p]latform: -`tldr {{git-checkout}}` +`tldr -p {{android|linux|osx|sunos|windows}} {{command}}` -- Update local pages (if the client supports caching): +- [u]pdate the local cache of tldr pages: `tldr -u` diff --git a/pages/common/tldrl.md b/pages/common/tldrl.md index 6cd74f69b7bb14..aeea0b0aff53b2 100644 --- a/pages/common/tldrl.md +++ b/pages/common/tldrl.md @@ -1,6 +1,7 @@ # tldrl > This command is an alias of `tldr-lint`. +> More information: . - View documentation for the original command: diff --git a/pages/common/tlmgr-arch.md b/pages/common/tlmgr-arch.md new file mode 100644 index 00000000000000..e060f0ed8f0c64 --- /dev/null +++ b/pages/common/tlmgr-arch.md @@ -0,0 +1,8 @@ +# tlmgr arch + +> This command is an alias of `tlmgr platform`. +> More information: . + +- View documentation for the original command: + +`tldr tlmgr platform` diff --git a/pages/common/tlmgr-backup.md b/pages/common/tlmgr-backup.md new file mode 100644 index 00000000000000..874df9f6674563 --- /dev/null +++ b/pages/common/tlmgr-backup.md @@ -0,0 +1,25 @@ +# tlmgr backup + +> Manage backups of TeX Live packages. +> The default backup directory is specified by the `backupdir` option, and can be obtained with `tlmgr option`. +> More information: . + +- Make a backup of one or more packages: + +`tlmgr backup {{package1 package2 ...}}` + +- Make a backup of all packages: + +`tlmgr backup --all` + +- Make a backup to a custom directory: + +`tlmgr backup {{package}} --backupdir {{path/to/backup_directory}}` + +- Remove a backup of one or more packages: + +`tlmgr backup clean {{package1 package2 ...}}` + +- Remove all backups: + +`tlmgr backup clean --all` diff --git a/pages/common/tlmgr-candidates.md b/pages/common/tlmgr-candidates.md new file mode 100644 index 00000000000000..c5acb3ab33c681 --- /dev/null +++ b/pages/common/tlmgr-candidates.md @@ -0,0 +1,8 @@ +# tlmgr candidates + +> Get available candidate repositories from which a TeX Live package can be installed. +> More information: . + +- List all available repositories from which a package can be installed: + +`tlmgr candidates {{package}}` diff --git a/pages/common/tlmgr-check.md b/pages/common/tlmgr-check.md new file mode 100644 index 00000000000000..85e9666975dbf4 --- /dev/null +++ b/pages/common/tlmgr-check.md @@ -0,0 +1,28 @@ +# tlmgr check + +> Check the consistency of a TeX Live installation. +> More information: . + +- Check the consistency of the whole TeX Live installation: + +`tlmgr check all` + +- Check the consistency of the whole TeX Live information in verbose mode: + +`tlmgr check all -v` + +- Check for missing dependencies: + +`tlmgr check depends` + +- Check if all TeX Live executables are present: + +`tlmgr check executes` + +- Check if all files listed in the local TLPDB are present: + +`tlmgr check files` + +- Check for duplicate filenames in the runfiles sections: + +`tlmgr check runfiles` diff --git a/pages/common/tlmgr-conf.md b/pages/common/tlmgr-conf.md new file mode 100644 index 00000000000000..cb67b3dfee8c9f --- /dev/null +++ b/pages/common/tlmgr-conf.md @@ -0,0 +1,32 @@ +# tlmgr conf + +> Manage the TeX Live configuration. +> More information: . + +- Show the current TeX Live configuration: + +`tlmgr conf` + +- Show the current `texmf`, `tlmgr`, or `updmap` configuration: + +`tlmgr conf {{texmf|tlmgr|updmap}}` + +- Show only a specific configuration option: + +`tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}}` + +- Set a specific configuration option: + +`tlmgr conf {{texmf|tlmgr|updmap}} {{configuration_key}} {{value}}` + +- Delete a specific configuration option: + +`tlmgr conf {{texmf|tlmgr|updmap}} --delete {{configuration_key}}` + +- Disable the execution of system calls via `\write18`: + +`tlmgr conf texmf {{shell_escape}} {{0}}` + +- Show all additional `texmf` trees: + +`tlmgr conf auxtrees show` diff --git a/pages/common/tlmgr-dump-tlpdb.md b/pages/common/tlmgr-dump-tlpdb.md new file mode 100644 index 00000000000000..df512ed007606f --- /dev/null +++ b/pages/common/tlmgr-dump-tlpdb.md @@ -0,0 +1,16 @@ +# tlmgr dump-tlpdb + +> Dump the TeX Live package database. +> More information: . + +- Dump the local package database: + +`tlmgr dump-tlpdb --local` + +- Dump the remote package database: + +`tlmgr dump-tlpdb --remote` + +- Dump the local package database as JSON: + +`tlmgr dump-tlpdb --local --json` diff --git a/pages/common/tlmgr-gui.md b/pages/common/tlmgr-gui.md new file mode 100644 index 00000000000000..49bb5e27349602 --- /dev/null +++ b/pages/common/tlmgr-gui.md @@ -0,0 +1,29 @@ +# tlmgr gui + +> Start a graphical user interface for `tlmgr`. +> `tlmgr gui` depends on the package `perl-tk`, which has to be installed manually. +> More information: . + +- Start a GUI for `tlmgr`: + +`sudo tlmgr gui` + +- Start a GUI specifying the background color: + +`sudo tlmgr gui -background "{{#f39bc3}}"` + +- Start a GUI specifying the foreground color: + +`sudo tlmgr gui -foreground "{{#0ef3bd}}"` + +- Start a GUI specifying the font and font size: + +`sudo tlmgr gui -font "{{helvetica 18}}"` + +- Start a GUI setting a specific geometry: + +`sudo tlmgr gui -geometry {{width}}x{{height}}-{{xpos}}+{{ypos}}` + +- Start a GUI passing an arbitrary X resource string: + +`sudo tlmgr gui -xrm {{xresource}}` diff --git a/pages/common/tlmgr-info.md b/pages/common/tlmgr-info.md new file mode 100644 index 00000000000000..a40db41d633f30 --- /dev/null +++ b/pages/common/tlmgr-info.md @@ -0,0 +1,36 @@ +# tlmgr info + +> Show information about TeX Live packages. +> More information: . + +- List all available TeX Live packages, prefexing installed ones with `i`: + +`tlmgr info` + +- List all available collections: + +`tlmgr info collections` + +- List all available schemes: + +`tlmgr info scheme` + +- Show information about a specific package: + +`tlmgr info {{package_name}}` + +- List all files contained in a specific package: + +`tlmgr info {{package_name}} --list` + +- List all installed packages: + +`tlmgr info --only-installed` + +- Show only specific information about a package: + +`tlmgr info {{package_name}} --data "{{name}},{{category}},{{installed}},{{size}},{{depends}},..."` + +- Print all available packages as JSON encoded array: + +`tlmgr info --json` diff --git a/pages/common/tlmgr-install.md b/pages/common/tlmgr-install.md new file mode 100644 index 00000000000000..b890cb0e2724b0 --- /dev/null +++ b/pages/common/tlmgr-install.md @@ -0,0 +1,24 @@ +# tlmgr install + +> Install TeX Live packages. +> More information: . + +- Install a package and its dependencies: + +`sudo tlmgr install {{package}}` + +- Reinstall a package: + +`sudo tlmgr install --reinstall {{package}}` + +- Simulate installing a package without making any changes: + +`tlmgr install --dry-run {{package}}` + +- Install a package without its dependencies: + +`sudo tlmgr install --no-depends {{package}}` + +- Install a package from a specific file: + +`sudo tlmgr install --file {{path/to/package}}` diff --git a/pages/common/tlmgr-key.md b/pages/common/tlmgr-key.md new file mode 100644 index 00000000000000..7606aaef0670e3 --- /dev/null +++ b/pages/common/tlmgr-key.md @@ -0,0 +1,20 @@ +# tlmgr key + +> Manage GPG keys used to verify TeX Live databases. +> More information: . + +- List all keys for TeX Live: + +`tlmgr key list` + +- Add a key from a specific file: + +`sudo tlmgr key add {{path/to/key.gpg}}` + +- Add a key from `stdin`: + +`cat {{path/to/key.gpg}} | sudo tlmgr key add -` + +- Remove a specific key by its ID: + +`sudo tlmgr key remove {{key_id}}` diff --git a/pages/common/tlmgr-option.md b/pages/common/tlmgr-option.md new file mode 100644 index 00000000000000..4b2956e0ae5139 --- /dev/null +++ b/pages/common/tlmgr-option.md @@ -0,0 +1,28 @@ +# tlmgr option + +> TeX Live settings manager. +> More information: . + +- List all TeX Live settings: + +`tlmgr option showall` + +- List all currently set Tex Live settings: + +`tlmgr option show` + +- Print all TeX Live settings in JSON format: + +`tlmgr option showall --json` + +- Show the value of a specific TeX Live setting: + +`tlmgr option {{setting}}` + +- Modify the value of a specific TeX Live setting: + +`tlmgr option {{setting}} {{value}}` + +- Set TeX Live to get future updates from the internet after installing from DVD: + +`tlmgr option {{repository}} {{https://mirror.ctan.org/systems/texlive/tlnet}}` diff --git a/pages/common/tlmgr-paper.md b/pages/common/tlmgr-paper.md new file mode 100644 index 00000000000000..fcee32441b4d24 --- /dev/null +++ b/pages/common/tlmgr-paper.md @@ -0,0 +1,28 @@ +# tlmgr paper + +> Manage paper size options of an TeX Live installation. +> More information: . + +- Show the default paper size used by all TeX Live programs: + +`tlmgr paper` + +- Set the default paper size for all TeX Live programs to A4: + +`sudo tlmgr paper {{a4}}` + +- Show the default paper size used by a specific TeX Live program: + +`tlmgr {{pdftex}} paper` + +- Set the default paper size for a specific TeX Live program to A4: + +`sudo tlmgr {{pdftex}} paper {{a4}}` + +- List all available paper sizes for a specific TeX Live program: + +`tlmgr {{pdftex}} paper --list` + +- Dump the default paper size used by all TeX Live programs in JSON format: + +`tlmgr paper --json` diff --git a/pages/common/tlmgr-path.md b/pages/common/tlmgr-path.md new file mode 100644 index 00000000000000..b84058c12b6560 --- /dev/null +++ b/pages/common/tlmgr-path.md @@ -0,0 +1,13 @@ +# tlmgr path + +> Add or remove symlinks for TeX Live executables, man pages and info pages. +> This command has to be re-run for files added in the future. +> More information: . + +- Add symlinks to TeX Live files: + +`sudo tlmgr path add` + +- Remove symlinks to TeX Live files: + +`sudo tlmgr path remove` diff --git a/pages/common/tlmgr-pinning.md b/pages/common/tlmgr-pinning.md new file mode 100644 index 00000000000000..968ea1b05a07a5 --- /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-platform.md b/pages/common/tlmgr-platform.md new file mode 100644 index 00000000000000..278a72dbdf63f7 --- /dev/null +++ b/pages/common/tlmgr-platform.md @@ -0,0 +1,24 @@ +# tldr platform + +> Manage TeX Live platforms. +> More information: . + +- List all available platforms in the package repository: + +`tlmgr platform list` + +- Add the executables for a specific platform: + +`sudo tlmgr platform add {{platform}}` + +- Remove the executables for a specific platform: + +`sudo tlmgr platform remove {{platform}}` + +- Auto-detect and switch to the current platform: + +`sudo tlmgr platform set {{auto}}` + +- Switch to a specific platform: + +`sudo tlmgr platform set {{platform}}` diff --git a/pages/common/tlmgr-recreate-tlpdb.md b/pages/common/tlmgr-recreate-tlpdb.md new file mode 100644 index 00000000000000..3aeeaa4fd3839a --- /dev/null +++ b/pages/common/tlmgr-recreate-tlpdb.md @@ -0,0 +1,9 @@ +# tlmgr recreate-tlpdb + +> Recreate the TeX Live package database. +> This command has a lack of documentation and should be used with caution. +> More information: . + +- Recreate the `texlive.tlpdb` database file and dump it to `stdout`: + +`sudo tlmgr recreate-tlpdb` diff --git a/pages/common/tlmgr-remove.md b/pages/common/tlmgr-remove.md new file mode 100644 index 00000000000000..22ab2d11e73d1b --- /dev/null +++ b/pages/common/tlmgr-remove.md @@ -0,0 +1,25 @@ +# tlmgr remove + +> Uninstall TeX Live packages. +> By default, removed packages will be backed up to `./tlpkg/backups` under the TL installation directory. +> More information: . + +- Uninstall a TeX Live package: + +`sudo tlmgr remove {{package}}` + +- Simulate uninstalling a package without making any changes: + +`tlmgr remove --dry-run {{package}}` + +- Uninstall a package without its dependencies: + +`sudo tlmgr remove --no-depends {{package}}` + +- Uninstall a package and back it up to a specific directory: + +`sudo tlmgr remove --backupdir {{path/to/directory}} {{package}}` + +- Uninstall all of TeX Live, asking for confirmation: + +`sudo tlmgr remove --all` diff --git a/pages/common/tlmgr-repository.md b/pages/common/tlmgr-repository.md new file mode 100644 index 00000000000000..1ed29f024fb6cb --- /dev/null +++ b/pages/common/tlmgr-repository.md @@ -0,0 +1,28 @@ +# tlmgr repository + +> Manage repositories of a TeX Live installation. +> More information: . + +- List all configured repositories and their tags (if set): + +`tlmgr repository list` + +- List all packages available in a specific repository: + +`tlmgr repository list {{path|url|tag}}` + +- Add a new repository with a specific tag (the tag is not required): + +`sudo tlmgr repository add {{path|url}} {{tag}}` + +- Remove a specific repository: + +`sudo tlmgr repository remove {{path|url|tag}}` + +- Set a new list of repositories, overwriting the previous list: + +`sudo tlmgr repository set {{path|url|tag}}#{{tag}} {{path|url|tag}}#{{tag}} {{...}}` + +- Show the verification status of all configured repositories: + +`tlmgr repository status` diff --git a/pages/common/tlmgr-restore.md b/pages/common/tlmgr-restore.md new file mode 100644 index 00000000000000..fe56b1572bcffb --- /dev/null +++ b/pages/common/tlmgr-restore.md @@ -0,0 +1,29 @@ +# tlmgr restore + +> Restore package backups created with `tlmgr backup`. +> The default backup directory is specified by the `backupdir` option, and can be obtained with `tlmgr option`. +> More information: . + +- List all available backup revisions for all packages: + +`tlmgr restore` + +- List all available backup revisions for a specific package: + +`tlmgr restore {{package}}` + +- Restore a specific revision of a specific package: + +`tlmgr restore {{package}} {{revision}}` + +- Restore the latest revision of all backed-up packages: + +`tlmgr restore --all` + +- Restore a package from a custom backup directory: + +`tlmgr restore {{package}} {{revision}} --backupdir {{path/to/backup_directory}}` + +- Perform a dry-run and print all taken actions without making them: + +`tlmgr restore --dry-run {{package}} {{revision}}` diff --git a/pages/common/tlmgr-shell.md b/pages/common/tlmgr-shell.md new file mode 100644 index 00000000000000..0532a64d6d42af --- /dev/null +++ b/pages/common/tlmgr-shell.md @@ -0,0 +1,36 @@ +# tlmgr shell + +> Start an interactive shell of the native TeX Live manager. +> More information: . + +- Start an interactive shell of `tlmgr`: + +`tlmgr shell` + +- Run any `tlmgr` sub-command in the interactive shell: + +`{{sub_command}} {{arguments}}` + +- Quit the interactive shell: + +`quit` + +- List all TeX Live variables: + +`get` + +- Get the value of a TeX Live variable: + +`get {{variable}}` + +- Set the value of a TeX Live variable: + +`set {{variable}} {{value}}` + +- Restart the interactive shell: + +`restart` + +- Print the version of the current protocol: + +`protocol` diff --git a/pages/common/tlmgr-update.md b/pages/common/tlmgr-update.md new file mode 100644 index 00000000000000..6cb0c36806c6db --- /dev/null +++ b/pages/common/tlmgr-update.md @@ -0,0 +1,32 @@ +# tlmgr update + +> Update TeX Live packages. +> More information: . + +- Update all TeX Live packages: + +`sudo tlmgr update --all` + +- Update tlmgr itself: + +`sudo tlmgr update --self` + +- Update a specific package: + +`sudo tlmgr update {{package}}` + +- Update all except a specific package: + +`sudo tlmgr update --all --exclude {{package}}` + +- Update all packages, making a backup of the current packages: + +`sudo tlmgr update --all --backup` + +- Update a specific package without updating its dependencies: + +`sudo tlmgr update --no-depends {{package}}` + +- Simulate updating all packages without making any changes: + +`sudo tlmgr update --all --dry-run` diff --git a/pages/common/tlmgr.md b/pages/common/tlmgr.md index 9118c9d59381fe..92052899873b0d 100644 --- a/pages/common/tlmgr.md +++ b/pages/common/tlmgr.md @@ -1,6 +1,7 @@ # tlmgr > Manages packages and configuration options of an existing TeX Live installation. +> Some subcommands such as `tlmgr paper` have their own usage documentation. > More information: . - Install a package and its dependencies: diff --git a/pages/common/tmsu.md b/pages/common/tmsu.md new file mode 100644 index 00000000000000..00a40a16cd8ab7 --- /dev/null +++ b/pages/common/tmsu.md @@ -0,0 +1,28 @@ +# tmsu + +> Simple command-line tool for tagging files. +> More information: . + +- Tag a specific file with multiple tags: + +`tmsu tag {{path/to/file.mp3}} {{music}} {{big-jazz}} {{mp3}}` + +- Tag multiple files: + +`tmsu tag --tags "{{music mp3}}" {{*.mp3}}` + +- List tags of specified file(s): + +`tmsu tags {{*.mp3}}` + +- List files with specified tag(s): + +`tmsu files {{big-jazz}} {{music}}` + +- List files with tags matching boolean expression: + +`tmsu files "{{(year >= 1990 and year <= 2000)}} and {{grunge}}"` + +- Mount tmsu virtual filesystem to an existing directory: + +`tmsu mount {{path/to/directory}}` diff --git a/pages/common/tmux.md b/pages/common/tmux.md index c5afb470f8eaab..cc4b51df9bbef0 100644 --- a/pages/common/tmux.md +++ b/pages/common/tmux.md @@ -1,6 +1,7 @@ # tmux > Terminal multiplexer. It allows multiple sessions with windows, panes, and more. +> See also `zellij` and `screen`. > More information: . - Start a new session: diff --git a/pages/common/todo.md b/pages/common/todo.md new file mode 100644 index 00000000000000..cba3f4ba24478f --- /dev/null +++ b/pages/common/todo.md @@ -0,0 +1,32 @@ +# todo + +> A simple, standards-based, cli todo manager. +> More information: . + +- List startable tasks: + +`todo list --startable` + +- Add a new task to the work list: + +`todo new {{thing_to_do}} --list {{work}}` + +- Add a location to a task with a given ID: + +`todo edit --location {{location_name}} {{task_id}}` + +- Show details about a task: + +`todo show {{task_id}}` + +- Mark tasks with the specified IDs as completed: + +`todo done {{task_id1 task_id2 ...}}` + +- Delete a task: + +`todo delete {{task_id}}` + +- Delete done tasks and reset the IDs of the remaining tasks: + +`todo flush` diff --git a/pages/common/todoist.md b/pages/common/todoist.md new file mode 100644 index 00000000000000..b93cfae1828cd1 --- /dev/null +++ b/pages/common/todoist.md @@ -0,0 +1,28 @@ +# todoist + +> Access Todoist from the command-line. +> More information: . + +- Add a task: + +`todoist add "{{task_name}}"` + +- Add a high priority task with a label, project, and due date: + +`todoist add "{{task_name}}" --priority {{1}} --label-ids "{{label_id}}" --project-name "{{project_name}}" --date "{{tmr 9am}}"` + +- Add a high priority task with a label, project, and due date in quick mode: + +`todoist quick '#{{project_name}} "{{tmr 9am}}" p{{1}} {{task_name}} @{{label_name}}'` + +- List all tasks with a header and color: + +`todoist --header --color list` + +- List all high priority tasks: + +`todoist list --filter p{{1}}` + +- List today's tasks with high priority that have the specified label: + +`todoist list --filter '(@{{label_name}} | {{today}}) & p{{1}}'` diff --git a/pages/common/todoman.md b/pages/common/todoman.md new file mode 100644 index 00000000000000..3546d619892e68 --- /dev/null +++ b/pages/common/todoman.md @@ -0,0 +1,9 @@ +# todoman + +> A simple, standards-based, cli todo manager. +> `todoman` is a common name for the command `todo`, but not a command itself. +> More information: . + +- View documentation for the original command: + +`tldr todo` diff --git a/pages/common/topgrade.md b/pages/common/topgrade.md index a46b70ff2fcd7d..ad868f588c5c56 100644 --- a/pages/common/topgrade.md +++ b/pages/common/topgrade.md @@ -17,7 +17,7 @@ - Disable a certain update operation: -`topgrade -disable {{operation}}` +`topgrade --disable {{operation}}` - Only perform a certain update operation: diff --git a/pages/common/topydo.md b/pages/common/topydo.md index 77b51a8d1cea6b..3b79dca50d2729 100644 --- a/pages/common/topydo.md +++ b/pages/common/topydo.md @@ -1,25 +1,25 @@ # topydo -> A todo list application that uses the todo.txt format. +> A to-do list application that uses the todo.txt format. > More information: . -- Add a todo to a specific project with a given context: +- Add a to-do to a specific project with a given context: `topydo add "{{todo_message}} +{{project_name}} @{{context_name}}"` -- Add a todo with a due date of tomorrow with a priority of `A`: +- Add a to-do with a due date of tomorrow with a priority of `A`: `topydo add "(A) {{todo _message}} due:{{1d}}"` -- Add a todo with a due date of friday: +- Add a to-do with a due date of Friday: `topydo add "{{todo_message}} due:{{fri}}"` -- Add a non-strict repeating todo (next due = now + rec): +- Add a non-strict repeating to-do (next due = now + rec): `topydo add "water flowers due:{{mon}} rec:{{1w}}"` -- Add a strict repeating todo (next due = currentdue + rec): +- Add a strict repeating to-do (next due = current due + rec): `topydo add "{{todo_message}} due:{{2020-01-01}} rec:{{+1m}}"` diff --git a/pages/common/touch.md b/pages/common/touch.md index 75864e340025a2..93dd4270e2305f 100644 --- a/pages/common/touch.md +++ b/pages/common/touch.md @@ -1,16 +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 {{filename}}` +`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}} {{filename}}` +`touch -c -{{a|m}} {{path/to/file1 path/to/file2 ...}}` -- Use the times from a file to set the times on a second file: +- Set the file [t]ime to a specific value and don't [c]reate file if it doesn't exist: -`touch -r {{filename}} {{filename2}}` +`touch -c -t {{YYYYMMDDHHMM.SS}} {{path/to/file1 path/to/file2 ...}}` + +- 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 -c -r {{~/.emacs}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/tpp.md b/pages/common/tpp.md index c314eacbc8f8ec..67664c372d8bcd 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 f1f9279b2b2f6f..0d46fabcd7bf2f 100644 --- a/pages/common/tput.md +++ b/pages/common/tput.md @@ -1,10 +1,11 @@ # tput > View and modify terminal settings and capabilities. +> More information: . - Move the cursor to a screen location: -`tput cup {{y_coordinate}} {{x_coordinate}}` +`tput cup {{row}} {{column}}` - Set foreground (af) or background (ab) color: @@ -22,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 d9c532d39933ac..ed39d1e9593459 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 fc57488f5a7c97..a7f5b64a6bc7df 100644 --- a/pages/common/traceroute.md +++ b/pages/common/traceroute.md @@ -1,6 +1,7 @@ # traceroute > Print the route packets trace to network host. +> More information: . - Traceroute to a host: diff --git a/pages/common/traefik.md b/pages/common/traefik.md index f423c0bf78113a..acfa1b0da9976d 100644 --- a/pages/common/traefik.md +++ b/pages/common/traefik.md @@ -1,6 +1,6 @@ # traefik -> A HTTP reverse proxy and load balancer. +> An HTTP reverse proxy and load balancer. > More information: . - Start server with default config: diff --git a/pages/common/transcode.md b/pages/common/transcode.md index 63a83a5f29af01..248ca610fa6199 100644 --- a/pages/common/transcode.md +++ b/pages/common/transcode.md @@ -1,15 +1,16 @@ # transcode > Transcode video and audio codecs, and convert between media formats. +> More information: . -- Create stabilisation file to be able to remove camera shakes: +- Create stabilization file to be able to remove camera shakes: `transcode -J stabilize -i {{input_file}}` -- Remove camera shakes after creating stabilisation file, transform video using xvid: +- Remove camera shakes after creating stabilization file, transform video using XviD: `transcode -J transform -i {{input_file}} -y xvid -o {{output_file}}` -- Resize the video to 640x480 pixels and convert to MPEG4 codec using xvid: +- Resize the video to 640x480 pixels and convert to MPEG4 codec using XviD: `transcode -Z 640x480 -i {{input_file}} -y xvid -o {{output_file}}` diff --git a/pages/common/transfersh.md b/pages/common/transfersh.md new file mode 100644 index 00000000000000..4f8b5582e457cf --- /dev/null +++ b/pages/common/transfersh.md @@ -0,0 +1,28 @@ +# transfersh + +> An unofficial command-line client for transfer.sh. +> More information: . + +- Upload a file to transfer.sh: + +`transfersh {{path/to/file}}` + +- Upload a file showing a progress bar (requires Python package `requests_toolbelt`): + +`transfersh --progress {{path/to/file}}` + +- Upload a file using a different file name: + +`transfersh --name {{filename}} {{path/to/file}}` + +- Upload a file to a custom transfer.sh server: + +`transfersh --servername {{upload.server.name}} {{path/to/file}}` + +- Upload all files from a directory recursively: + +`transfersh --recursive {{path/to/directory/}}` + +- Upload a specific directory as an uncompressed tar: + +`transfersh -rt {{path/to/directory}}` diff --git a/pages/common/transmission-daemon.md b/pages/common/transmission-daemon.md new file mode 100644 index 00000000000000..c8c24c51cd84ba --- /dev/null +++ b/pages/common/transmission-daemon.md @@ -0,0 +1,21 @@ +# transmission-daemon + +> Daemon controlled with `transmission-remote` or its web interface. +> See also: `transmission`. +> More information: . + +- Start a headless `transmission` session: + +`transmission-daemon` + +- Start and watch a specific directory for new torrents: + +`transmission-daemon --watch-dir {{path/to/directory}}` + +- Dump daemon settings in JSON format: + +`transmission-daemon --dump-settings > {{path/to/file.json}}` + +- Start with specific settings for the web interface: + +`transmission-daemon --auth --username {{username}} --password {{password}} --port {{9091}} --allowed {{127.0.0.1}}` diff --git a/pages/common/transmission-edit.md b/pages/common/transmission-edit.md new file mode 100644 index 00000000000000..9891e2fff618e9 --- /dev/null +++ b/pages/common/transmission-edit.md @@ -0,0 +1,13 @@ +# transmission-edit + +> Modify announce URLs from torrent files. +> See also: `transmission`. +> More information: . + +- Add or remove a URL from a torrent's announce list: + +`transmission-edit --{{add|delete}} {{http://example.com}} {{path/to/file.torrent}}` + +- Update a tracker's passcode in a torrent file: + +`transmission-edit --replace {{old-passcode}} {{new-passcode}} {{path/to/file.torrent}}` diff --git a/pages/common/transmission-show.md b/pages/common/transmission-show.md new file mode 100644 index 00000000000000..7ac460bd6d2caf --- /dev/null +++ b/pages/common/transmission-show.md @@ -0,0 +1,17 @@ +# transmission-show + +> Get information about a torrent file. +> See also: `transmission`. +> More information: . + +- Display metadata for a specific torrent: + +`transmission-show {{path/to/file.torrent}}` + +- Generate a magnet link for a specific torrent: + +`transmission-show --magnet {{path/to/file.torrent}}` + +- Query a torrent's trackers and print the current number of peers: + +`transmission-show --scrape {{path/to/file.torrent}}` diff --git a/pages/common/transmission.md b/pages/common/transmission.md new file mode 100644 index 00000000000000..a26789628fa81f --- /dev/null +++ b/pages/common/transmission.md @@ -0,0 +1,29 @@ +# transmission + +> Transmission is a simple torrent client. +> Transmission isn't a command, but a set of commands. See the pages below. +> More information: . + +- Show the tldr page for running Transmission's daemon: + +`tldr transmission-daemon` + +- Show the tldr page for interacting with the daemon: + +`tldr transmission-remote` + +- Show the tldr page for creating torrent files: + +`tldr transmission-create` + +- Show the tldr page for modifying torrent files: + +`tldr transmission-edit` + +- Show the tldr page for getting info about torrent files: + +`tldr transmission-show` + +- Show the tldr page for the deprecated method for interacting with the daemon: + +`tldr transmission-cli` diff --git a/pages/common/trap.md b/pages/common/trap.md new file mode 100644 index 00000000000000..98dc02d8b67de3 --- /dev/null +++ b/pages/common/trap.md @@ -0,0 +1,21 @@ +# trap + +> Automatically execute commands after receiving signals by processes or the operating system. +> Can be used to perform cleanups for interruptions by the user or other actions. +> More information: . + +- List available signals to set traps for: + +`trap -l` + +- List active traps for the current shell: + +`trap -p` + +- Set a trap to execute commands when one or more signals are detected: + +`trap 'echo "Caught signal {{SIGHUP}}"' {{SIGHUP}}` + +- Remove active traps: + +`trap - {{SIGHUP}} {{SIGINT}}` diff --git a/pages/common/trash-cli.md b/pages/common/trash-cli.md index a767a76a6f43a6..5a3632e4521443 100644 --- a/pages/common/trash-cli.md +++ b/pages/common/trash-cli.md @@ -1,24 +1,24 @@ # trash-cli -> A command line interface to the trashcan APIs. +> 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/travis.md b/pages/common/travis.md index 4133919216419b..1266633f520ac6 100644 --- a/pages/common/travis.md +++ b/pages/common/travis.md @@ -1,6 +1,6 @@ # travis -> Command line client to interface with Travis CI. +> Command-line client to interface with Travis CI. > More information: . - Display the client version: diff --git a/pages/common/trawl.md b/pages/common/trawl.md index 62d35add9aff10..c28fdcd4f56a63 100644 --- a/pages/common/trawl.md +++ b/pages/common/trawl.md @@ -7,7 +7,7 @@ `trawl -n` -- Filter interface names using a case insensitive regular expression: +- Filter interface names using a case-insensitive regular expression: `trawl -f wi` diff --git a/pages/common/tred.md b/pages/common/tred.md new file mode 100644 index 00000000000000..b1248b7330f95a --- /dev/null +++ b/pages/common/tred.md @@ -0,0 +1,13 @@ +# tred + +> Compute the transitive reduction of directed graphs. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Construct the transitive reduction graph of one or more directed graphs: + +`tred {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Display help: + +`tred -?` diff --git a/pages/linux/tree.md b/pages/common/tree.md similarity index 100% rename from pages/linux/tree.md rename to pages/common/tree.md diff --git a/pages/common/trivy.md b/pages/common/trivy.md new file mode 100644 index 00000000000000..1faaf00be4a3ed --- /dev/null +++ b/pages/common/trivy.md @@ -0,0 +1,20 @@ +# trivy + +> Scanner for vulnerabilities in container images, file systems, and Git repositories, as well as for configuration issues. +> More information: . + +- Scan an image: + +`trivy image {{image:tag}}` + +- Scan the filesystem for vulnerabilities and misconfigurations: + +`trivy fs --security-checks {{vuln,config}} {{path/to/project_directory}}` + +- Scan a directory for misconfigurations: + +`trivy config {{path/to/iac_directory}}` + +- Generate output with a SARIF template: + +`trivy image --format {{template}} --template {{"@sarif.tpl"}} -o {{path/to/report.sarif}} {{image:tag}}` diff --git a/pages/common/troff.md b/pages/common/troff.md new file mode 100644 index 00000000000000..53c257a13da172 --- /dev/null +++ b/pages/common/troff.md @@ -0,0 +1,21 @@ +# troff + +> Typesetting processor for the groff (GNU Troff) document formatting system. +> See also `groff`. +> More information: . + +- Format output for a PostScript printer, saving the output to a file: + +`troff {{path/to/input.roff}} | grops > {{path/to/output.ps}}` + +- Format output for a PostScript printer using the [me] macro package, saving the output to a file: + +`troff -{{me}} {{path/to/input.roff}} | grops > {{path/to/output.ps}}` + +- Format output as [a]SCII text using the [man] macro package: + +`troff -T {{ascii}} -{{man}} {{path/to/input.roff}} | grotty` + +- Format output as a [pdf] file, saving the output to a file: + +`troff -T {{pdf}} {{path/to/input.roff}} | gropdf > {{path/to/output.pdf}}` diff --git a/pages/common/truffle.md b/pages/common/truffle.md new file mode 100644 index 00000000000000..d9e5b6aa99799b --- /dev/null +++ b/pages/common/truffle.md @@ -0,0 +1,24 @@ +# truffle + +> A tool for developing smart contracts for running services on the Ethereum blockchain. +> More information: . + +- Download a pre-built Truffle project (Truffle Box): + +`truffle unbox {{box_name}}` + +- Compile contract source files in the current directory: + +`truffle compile` + +- Run JavaScript and Solidity tests: + +`truffle test` + +- Run migrations to deploy contracts: + +`truffle migrate` + +- Display help for a subcommand: + +`truffle help {{subcommand}}` diff --git a/pages/common/truncate.md b/pages/common/truncate.md index 0fd2bf9a9a8991..d5fd62086a38e1 100644 --- a/pages/common/truncate.md +++ b/pages/common/truncate.md @@ -3,18 +3,22 @@ > Shrink or extend the size of a file to the specified size. > More information: . -- Set a size of 10 GB to an exsting file, or create a new file with the specified size: +- Set a size of 10 GB to an existing file, or create a new file with the specified size: -`truncate -s {{10G}} {{filename}}` +`truncate --size {{10G}} {{filename}}` -- Extend the file size by 50M, fill with holes (which reads as zero bytes): +- Extend the file size by 50 MiB, fill with holes (which reads as zero bytes): -`truncate -s +{{50M}} {{filename}}` +`truncate --size +{{50M}} {{filename}}` -- Shrink the file by 2GiB, by removing data from the end of file: +- Shrink the file by 2 GiB, by removing data from the end of file: -`truncate -s -{{2G}} {{filename}}` +`truncate --size -{{2G}} {{filename}}` - Empty the file's content: -`truncate -s 0 {{filename}}` +`truncate --size 0 {{filename}}` + +- Empty the file's content, but do not create the file if it does not exist: + +`truncate --no-create --size 0 {{filename}}` diff --git a/pages/common/ts-node.md b/pages/common/ts-node.md new file mode 100644 index 00000000000000..02b90aa1fecdd7 --- /dev/null +++ b/pages/common/ts-node.md @@ -0,0 +1,28 @@ +# ts-node + +> Run TypeScript code directly, without any compiling. +> More information: . + +- Execute a TypeScript file without compiling (`node` + `tsc`): + +`ts-node {{path/to/file.ts}}` + +- Execute a TypeScript file without loading `tsconfig.json`: + +`ts-node --skip-project {{path/to/file.ts}}` + +- Evaluate TypeScript code passed as a literal on the command-line: + +`ts-node --eval '{{console.log("Hello World")}}'` + +- Execute a TypeScript file in script mode: + +`ts-node --script-mode {{path/to/file.ts}}` + +- Transpile a TypeScript file to JavaScript without executing it: + +`ts-node --transpile-only {{path/to/file.ts}}` + +- Display TS-Node help: + +`ts-node --help` diff --git a/pages/common/ts.md b/pages/common/ts.md new file mode 100644 index 00000000000000..11dcefa1759985 --- /dev/null +++ b/pages/common/ts.md @@ -0,0 +1,20 @@ +# ts + +> Add timestamps to every line from standard input. +> More information: . + +- Add a timestamp to the beginning of each line: + +`{{some_command}} | ts` + +- Add timestamps with microsecond precision: + +`{{some_command}} | ts "{{%b %d %H:%M:%.S}}"` + +- Add [i]ncremental timestamps with microsecond precision, starting from zero: + +`{{some_command}} | ts -i "{{%H:%M:%.S}}"` + +- Convert existing timestamps in a text file (eg. a log file) into [r]elative format: + +`cat {{path/to/file}} | ts -r` diff --git a/pages/common/tsc.md b/pages/common/tsc.md index b8a855f11665a8..47e3197a06f3fd 100644 --- a/pages/common/tsc.md +++ b/pages/common/tsc.md @@ -19,7 +19,7 @@ `tsc --build {{tsconfig.json}}` -- Run the compiler using command line options and arguments fetched from a text file: +- Run the compiler using command-line options and arguments fetched from a text file: `tsc @{{args.txt}}` diff --git a/pages/common/tslint.md b/pages/common/tslint.md index 8eb8cec8723125..7dccb53d22d692 100644 --- a/pages/common/tslint.md +++ b/pages/common/tslint.md @@ -3,7 +3,7 @@ > A pluggable linting utility for TypeScript. > More information: . -- Create tslint config: +- Create TSLint config: `tslint --init` diff --git a/pages/common/tsort.md b/pages/common/tsort.md index cf75c4d11eec72..6461dc47fe28eb 100644 --- a/pages/common/tsort.md +++ b/pages/common/tsort.md @@ -6,4 +6,4 @@ - Perform a topological sort consistent with a partial sort per line of input separated by blanks: -`tsort {{file}}` +`tsort {{path/to/file}}` diff --git a/pages/common/tsv-filter.md b/pages/common/tsv-filter.md new file mode 100644 index 00000000000000..d4f2020e5b0a5f --- /dev/null +++ b/pages/common/tsv-filter.md @@ -0,0 +1,36 @@ +# tsv-filter + +> Filter lines of a TSV file by running tests against individual fields. +> More information: . + +- Print the lines where a specific column is numerically equal to a given number: + +`tsv-filter -H --eq {{field_name}}:{{number}} {{path/to/tsv_file}}` + +- Print the lines where a specific column is [eq]ual/[n]on [e]qual/[l]ess [t]han/[l]ess than or [e]qual/[g]reater [t]han/[g]reater than or [e]qual to a given number: + +`tsv-filter --{{eq|ne|lt|le|gt|ge}} {{column_number}}:{{number}} {{path/to/tsv_file}}` + +- Print the lines where a specific column is [eq]ual/[n]ot [e]qual/part of/not part of a given string: + +`tsv-filter --str-{{eq|ne|in-fld|not-in-fld}} {{column_number}}:{{string}} {{path/to/tsv_file}}` + +- Filter for non-empty fields: + +`tsv-filter --not-empty {{column_number}} {{path/to/tsv_file}}` + +- Print the lines where a specific column is empty: + +`tsv-filter --invert --not-empty {{column_number}} {{path/to/tsv_file}}` + +- Print the lines that satisfy two conditions: + +`tsv-filter --eq {{column_number1}}:{{number}} --str-eq {{column_number2}}:{{string}} {{path/to/tsv_file}}` + +- Print the lines that match at least one condition: + +`tsv-filter --or --eq {{column_number1}}:{{number}} --str-eq {{column_number2}}:{{string}} {{path/to/tsv_file}}` + +- Count matching lines, interpreting first line as a [H]eader: + +`tsv-filter --count -H --eq {{field_name}}:{{number}} {{path/to/tsv_file}}` diff --git a/pages/common/tts.md b/pages/common/tts.md new file mode 100644 index 00000000000000..b52e4f4a0dd51f --- /dev/null +++ b/pages/common/tts.md @@ -0,0 +1,28 @@ +# tts + +> Synthesize speech on the command line. +> 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/tuckr.md b/pages/common/tuckr.md new file mode 100644 index 00000000000000..1a4b9589b57259 --- /dev/null +++ b/pages/common/tuckr.md @@ -0,0 +1,24 @@ +# tuckr + +> Dotfile manager written in Rust. +> More information: . + +- Check dotfile status: + +`tuckr status` + +- Add all dotfiles to system: + +`tuckr add \*` + +- Add all dotfiles except specified programs: + +`tuckr add \* -e {{program1}},{{program2}}` + +- Remove all dotfiles from the system: + +`tuckr rm \*` + +- Add a program dotfile and run its setup script: + +`tuckr set {{program}}` diff --git a/pages/common/turbo.md b/pages/common/turbo.md new file mode 100644 index 00000000000000..42450cf1a89e18 --- /dev/null +++ b/pages/common/turbo.md @@ -0,0 +1,37 @@ +# turbo + +> High-performance build system for JavaScript and TypeScript codebases. +> See also: `nx`. +> More information: . + +- Log in using the default web browser with a Vercel account: + +`turbo login` + +- Link the current directory to a Vercel organization and enable remote caching: + +`turbo link` + +- Build the current project: + +`turbo run build` + +- Run a task without concurrency: + +`turbo run {{task_name}} --concurrency={{1}}` + +- Run a task ignoring cached artifacts and forcibly re-execute all tasks: + +`turbo run {{task_name}} --force` + +- Run a task in parallel across packages: + +`turbo run {{task_name}} --parallel --no-cache` + +- Unlink the current directory from your Vercel organization and disable Remote Caching: + +`turbo unlink` + +- Generate a Dot graph of a specific task execution (the output file format can be controlled with the filename): + +`turbo run {{task_name}} --graph={{path/to/file}}.{{html|jpg|json|pdf|png|svg}}` diff --git a/pages/common/twine.md b/pages/common/twine.md new file mode 100644 index 00000000000000..a6b1f2ac2d37c4 --- /dev/null +++ b/pages/common/twine.md @@ -0,0 +1,36 @@ +# twine + +> Utility for publishing Python packages on PyPI. +> More information: . + +- Upload to PyPI: + +`twine upload dist/*` + +- Upload to the Test PyPI [r]epository to verify things look right: + +`twine upload -r testpypi dist/*` + +- Upload to PyPI with a specified [u]sername and [p]assword: + +`twine upload -u {{username}} -p {{password}} dist/*` + +- Upload to an alternative repository URL: + +`twine upload --repository-url {{repository_url}} dist/*` + +- Check that your distribution's long description should render correctly on PyPI: + +`twine check dist/*` + +- Upload using a specific pypirc configuration file: + +`twine upload --config-file {{configuration_file}} dist/*` + +- Continue uploading files if one already exists (only valid when uploading to PyPI): + +`twine upload --skip-existing dist/*` + +- Upload to PyPI showing detailed information: + +`twine upload --verbose dist/*` diff --git a/pages/common/twopi.md b/pages/common/twopi.md new file mode 100644 index 00000000000000..cc7de323a93932 --- /dev/null +++ b/pages/common/twopi.md @@ -0,0 +1,25 @@ +# twopi + +> Render an image of a `radial` network graph from a `graphviz` file. +> Layouts: `dot`, `neato`, `twopi`, `circo`, `fdp`, `sfdp`, `osage` & `patchwork`. +> More information: . + +- Render a `png` image with a filename based on the input filename and output format (uppercase -O): + +`twopi -T {{png}} -O {{path/to/input.gv}}` + +- Render a `svg` image with the specified output filename (lowercase -o): + +`twopi -T {{svg}} -o {{path/to/image.svg}} {{path/to/input.gv}}` + +- Render the output in `ps`, `pdf`, `svg`, `fig`, `png`, `gif`, `jpg`, `json`, or `dot` format: + +`twopi -T {{format}} -O {{path/to/input.gv}}` + +- Render a `gif` image using `stdin` and `stdout`: + +`echo "{{digraph {this -> that} }}" | twopi -T {{gif}} > {{path/to/image.gif}}` + +- Display help: + +`twopi -?` diff --git a/pages/common/twurl.md b/pages/common/twurl.md new file mode 100644 index 00000000000000..cd2633f995af74 --- /dev/null +++ b/pages/common/twurl.md @@ -0,0 +1,28 @@ +# twurl + +> Curl-like command but tailored specifically for the Twitter API. +> More information: . + +- Authorize `twurl` to access a Twitter account: + +`twurl authorize --consumer-key {{twitter_api_key}} --consumer-secret {{twitter_api_secret}}` + +- Make a GET request to an API endpoint: + +`twurl -X GET {{twitter_api_endpoint}}` + +- Make a POST request to an API endpoint: + +`twurl -X POST -d '{{endpoint_params}}' {{twitter_api_endpoint}}` + +- Upload media to Twitter: + +`twurl -H "{{twitter_upload_url}}" -X POST "{{twitter_upload_endpoint}}" --file "{{path/to/media.jpg}}" --file-field "media"` + +- Access a different Twitter API host: + +`twurl -H {{twitter_api_url}} -X GET {{twitter_api_endpoint}}` + +- Create an alias for a requested resource: + +`twurl alias {{alias_name}} {{resource}}` diff --git a/pages/common/tye.md b/pages/common/tye.md new file mode 100644 index 00000000000000..9131768b727762 --- /dev/null +++ b/pages/common/tye.md @@ -0,0 +1,28 @@ +# tye + +> Developer tool that makes developing, testing, and deploying microservices and distributed applications easier. +> More information: . + +- Scaffold a `tye.yaml` file representing the application: + +`tye init` + +- Run an application locally: + +`tye run` + +- Build an application's containers: + +`tye build` + +- Push an application's containers: + +`tye push` + +- Deploy an application to Kubernetes: + +`tye deploy` + +- Remove a deployed application from Kubernetes: + +`tye undeploy` diff --git a/pages/common/type.md b/pages/common/type.md index abefe1d3b7d2e5..a692c4296105da 100644 --- a/pages/common/type.md +++ b/pages/common/type.md @@ -1,8 +1,9 @@ # type -> Display the kind of command the shell will execute. +> Display the type of command the shell will execute. +> More information: . -- Display the kind of a command: +- Display the type of a command: `type {{command}}` diff --git a/pages/common/typeorm.md b/pages/common/typeorm.md new file mode 100644 index 00000000000000..a510c298188cbd --- /dev/null +++ b/pages/common/typeorm.md @@ -0,0 +1,36 @@ +# typeorm + +> A JavaScript ORM that can run on Node.js, browser, Cordova, Ionic, React Native, NativeScript, and Electron platforms. +> More information: . + +- Generate a new initial TypeORM project structure: + +`typeorm init` + +- Create an empty migration file: + +`typeorm migration:create --name {{migration_name}}` + +- Create a migration file with the SQL statements to update the schema: + +`typeorm migration:generate --name {{migration_name}}` + +- Run all pending migrations: + +`typeorm migration:run` + +- Create a new entity file in a specific directory: + +`typeorm entity:create --name {{entity}} --dir {{path/to/directory}}` + +- Display the SQL statements to be executed by `typeorm schema:sync` on the default connection: + +`typeorm schema:log` + +- Execute a specific SQL statement on the default connection: + +`typeorm query {{sql_sentence}}` + +- Display help for a subcommand: + +`typeorm {{subcommand}} --help` diff --git a/pages/common/typeset.md b/pages/common/typeset.md new file mode 100644 index 00000000000000..07e8753f997644 --- /dev/null +++ b/pages/common/typeset.md @@ -0,0 +1,28 @@ +# typeset + +> Declare variables and give them attributes. +> More information: . + +- Declare a string variable with the specified value: + +`typeset {{variable}}="{{value}}"` + +- Declare an integer variable with the specified value: + +`typeset -i {{variable}}="{{value}}"` + +- Declare an array variable with the specified value: + +`typeset {{variable}}=({{item_a item_b item_c}})` + +- Declare an associative array variable with the specified value: + +`typeset -A {{variable}}=({{[key_a]=item_a [key_b]=item_b [key_c]=item_c}})` + +- Declare a readonly variable with the specified value: + +`typeset -r {{variable}}="{{value}}"` + +- Declare a global variable within a function with the specified value: + +`typeset -g {{variable}}="{{value}}"` diff --git a/pages/common/u3d.md b/pages/common/u3d.md new file mode 100644 index 00000000000000..8af6aa87925538 --- /dev/null +++ b/pages/common/u3d.md @@ -0,0 +1,24 @@ +# u3d + +> Set of tools to interact with Unity from command line. +> More information: . + +- Open project from the current directory in correct Unity version: + +`u3d` + +- List installed versions of Unity: + +`u3d list` + +- List available versions of Unity that can be downloaded: + +`u3d available` + +- Download and install latest stable Unity version: + +`u3d install latest_stable` + +- Download and install Unity version and editor [p]ackages: + +`u3d install {{2021.2.0f1}} -p {{Unity,iOS,Android}}` diff --git a/pages/common/ufraw-batch.md b/pages/common/ufraw-batch.md index cfa20658a99444..5cde5ebbeab2f2 100644 --- a/pages/common/ufraw-batch.md +++ b/pages/common/ufraw-batch.md @@ -1,12 +1,13 @@ # ufraw-batch > Convert RAW files from cameras into standard image files. +> More information: . -- Simply convert RAW files to jpg: +- Simply convert RAW files to JPG: `ufraw-batch --out-type=jpg {{input_file(s)}}` -- Simply convert RAW files to png: +- Simply convert RAW files to PNG: `ufraw-batch --out-type=png {{input_file(s)}}` diff --git a/pages/common/ugrep.md b/pages/common/ugrep.md new file mode 100644 index 00000000000000..beb719c021db16 --- /dev/null +++ b/pages/common/ugrep.md @@ -0,0 +1,36 @@ +# ugrep + +> Ultra fast search tool with query TUI. +> More information: . + +- Start a query TUI to search files in the current directory recursively (CTRL-Z for help): + +`ugrep --query` + +- Search the current directory recursively for files containing a regex search pattern: + +`ugrep "{{search_pattern}}"` + +- Search in a specific file or in all files in a specific directory, showing line numbers of matches: + +`ugrep --line-number "{{search_pattern}}" {{path/to/file_or_directory}}` + +- Search in all files in the current directory recursively and print the name of each matching file: + +`ugrep --files-with-matches "{{search_pattern}}"` + +- Fuzzy search files with up to 3 extra, missing or mismatching characters in the pattern: + +`ugrep --fuzzy={{3}} "{{search_pattern}}"` + +- Also search compressed files, `zip` and `tar` archives recursively: + +`ugrep --decompress "{{search_pattern}}"` + +- Search only files whose filenames match a specific glob pattern: + +`ugrep --glob="{{glob_pattern}}" "{{search_pattern}}"` + +- Search only C++ source files (use `--file-type=list` to list all file types): + +`ugrep --file-type=cpp "{{search_pattern}}"` diff --git a/pages/common/ulimit.md b/pages/common/ulimit.md index 30e0e89f1f0cb5..9d506339f2258b 100644 --- a/pages/common/ulimit.md +++ b/pages/common/ulimit.md @@ -1,6 +1,7 @@ # ulimit > Get and set user limits. +> More information: . - Get the properties of all the user limits: diff --git a/pages/common/umask.md b/pages/common/umask.md index fb6c23582bc222..3ea5763e081481 100644 --- a/pages/common/umask.md +++ b/pages/common/umask.md @@ -1,6 +1,7 @@ # umask > Manage the read/write/execute permissions that are masked out (i.e. restricted) for newly created files by the user. +> More information: . - Display the current mask in octal notation: diff --git a/pages/common/umount.md b/pages/common/umount.md index 710cc650fd9475..0dffa77ea1a274 100644 --- a/pages/common/umount.md +++ b/pages/common/umount.md @@ -2,6 +2,7 @@ > Unlink a filesystem from its mount point, making it no longer accessible. > A filesystem cannot be unmounted when it is busy. +> More information: . - Unmount a filesystem, by passing the path to the source it is mounted from: diff --git a/pages/common/unalias.md b/pages/common/unalias.md index 8fa7d29d5142da..8c23b65fd4b272 100644 --- a/pages/common/unalias.md +++ b/pages/common/unalias.md @@ -1,6 +1,7 @@ # unalias > Remove aliases. +> More information: . - Remove an alias: diff --git a/pages/common/uname.md b/pages/common/uname.md index 12209bfcf7b4a6..06d412b81ecea1 100644 --- a/pages/common/uname.md +++ b/pages/common/uname.md @@ -1,21 +1,25 @@ # uname > Print details about the current machine and the operating system running on it. -> Note: for additional information about the operating system, try the `lsb_release` command. +> See also `lsb_release`. > More information: . -- Print hardware-related information: machine and processor: +- Print kernel name: -`uname -mp` +`uname` -- Print software-related information: operating system, release number, and version: +- Print system architecture and processor information: -`uname -srv` +`uname --machine --processor` -- Print the nodename (hostname) of the system: +- Print kernel name, kernel release and kernel version: -`uname -n` +`uname --kernel-name --kernel-release --kernel-version` -- Print all available system information (hardware, software, nodename): +- Print system hostname: -`uname -a` +`uname --nodename` + +- Print all available system information: + +`uname --all` diff --git a/pages/common/unar.md b/pages/common/unar.md index e5cfcf2e780599..9666da33d4087f 100644 --- a/pages/common/unar.md +++ b/pages/common/unar.md @@ -1,6 +1,7 @@ # unar > Extract contents from archive files. +> More information: . - Extract an archive to the current directory: diff --git a/pages/common/unclutter.md b/pages/common/unclutter.md index 40848bd6b2ea20..b1824725cf52da 100644 --- a/pages/common/unclutter.md +++ b/pages/common/unclutter.md @@ -1,6 +1,7 @@ # unclutter > Hides the mouse cursor. +> More information: . - Hide mouse cursor after 3 seconds: diff --git a/pages/common/uncrustify.md b/pages/common/uncrustify.md index 792e205c23148b..72d1020249abd7 100644 --- a/pages/common/uncrustify.md +++ b/pages/common/uncrustify.md @@ -7,7 +7,7 @@ `uncrustify -f {{path/to/file.cpp}} -o {{path/to/output.cpp}}` -- Read filenames from stdin, and take backups before writing output back to the original filepaths: +- Read filenames from `stdin`, and take backups before writing output back to the original filepaths: `find . -name "*.cpp" | uncrustify -F - --replace` @@ -15,7 +15,7 @@ `find . -name "*.cpp" | uncrustify -F - --no-backup` -- Use a custom configuration file and write the result to stdout: +- Use a custom configuration file and write the result to `stdout`: `uncrustify -c {{path/to/uncrustify.cfg}} -f {{path/to/file.cpp}}` diff --git a/pages/common/unexpand.md b/pages/common/unexpand.md index dce054fb6d1ef5..47cd89829c7905 100644 --- a/pages/common/unexpand.md +++ b/pages/common/unexpand.md @@ -5,7 +5,7 @@ - Convert blanks in each file to tabs, writing to standard output: -`unexpand {{file}}` +`unexpand {{path/to/file}}` - Convert blanks to tabs, reading from standard output: @@ -13,12 +13,12 @@ - Convert all blanks, instead of just initial blanks: -`unexpand -a {{file}}` +`unexpand -a {{path/to/file}}` - Convert only leading sequences of blanks (overrides -a): -`unexpand --first-only {{file}}` +`unexpand --first-only {{path/to/file}}` - Have tabs a certain number of characters apart, not 8 (enables -a): -`unexpand -t {{number}} {{file}}` +`unexpand -t {{number}} {{path/to/file}}` diff --git a/pages/common/unflatten.md b/pages/common/unflatten.md new file mode 100644 index 00000000000000..aea20ba773cbc6 --- /dev/null +++ b/pages/common/unflatten.md @@ -0,0 +1,17 @@ +# unflatten + +> Adjust directed graphs to improve the layout aspect ratio. +> Graphviz filters: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`. +> More information: . + +- Adjust one or more directed graphs to improve the layout aspect ratio: + +`unflatten {{path/to/input1.gv}} {{path/to/input2.gv ...}} > {{path/to/output.gv}}` + +- Use `unflatten` as a preprocessor for `dot` layout to improve aspect ratio: + +`unflatten {{path/to/input.gv}} | dot -T {{png}} {{path/to/output.png}}` + +- Display help for `unflatten`: + +`unflatten -?` diff --git a/pages/common/uniq.md b/pages/common/uniq.md index a8a3d66cb41f9f..73d0c055361799 100644 --- a/pages/common/uniq.md +++ b/pages/common/uniq.md @@ -6,20 +6,20 @@ - Display each line once: -`sort {{file}} | uniq` +`sort {{path/to/file}} | uniq` - Display only unique lines: -`sort {{file}} | uniq -u` +`sort {{path/to/file}} | uniq -u` - Display only duplicate lines: -`sort {{file}} | uniq -d` +`sort {{path/to/file}} | uniq -d` - Display number of occurrences of each line along with that line: -`sort {{file}} | uniq -c` +`sort {{path/to/file}} | uniq -c` - Display number of occurrences of each line, sorted by the most frequent: -`sort {{file}} | uniq -c | sort -nr` +`sort {{path/to/file}} | uniq -c | sort -nr` diff --git a/pages/common/unison.md b/pages/common/unison.md index c380f36f206f9a..6c3d685971aa7d 100644 --- a/pages/common/unison.md +++ b/pages/common/unison.md @@ -3,7 +3,7 @@ > Bidirectional file synchronisation tool. > More information: . -- Sync two directories (creates log first time these two directories are synchronised): +- Sync two directories (creates log first time these two directories are synchronized): `unison {{path/to/directory_1}} {{path/to/directory_2}}` diff --git a/pages/common/unlzma.md b/pages/common/unlzma.md new file mode 100644 index 00000000000000..b9d99dba4a9180 --- /dev/null +++ b/pages/common/unlzma.md @@ -0,0 +1,8 @@ +# unlzma + +> This command is an alias of `xz --format=lzma --decompress`. +> More information: . + +- View documentation for the original command: + +`tldr xz` diff --git a/pages/common/unrar.md b/pages/common/unrar.md index 15b41b880a43dd..744815cb68292b 100644 --- a/pages/common/unrar.md +++ b/pages/common/unrar.md @@ -1,6 +1,7 @@ # unrar > Extract RAR archives. +> More information: . - Extract files with original directory structure: diff --git a/pages/common/unxz.md b/pages/common/unxz.md new file mode 100644 index 00000000000000..54bd6993015fef --- /dev/null +++ b/pages/common/unxz.md @@ -0,0 +1,8 @@ +# unxz + +> This command is an alias of `xz --decompress`. +> More information: . + +- View documentation for the original command: + +`tldr xz` diff --git a/pages/common/unzip.md b/pages/common/unzip.md index 50dd309961af75..c5817ff570e4cf 100644 --- a/pages/common/unzip.md +++ b/pages/common/unzip.md @@ -1,23 +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: +- 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 in windows, containing files with non-ascii (chinese) 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 new file mode 100644 index 00000000000000..5770b7f64cf2cd --- /dev/null +++ b/pages/common/unzstd.md @@ -0,0 +1,16 @@ +# unzstd + +> Decompress files with Zstandard compression. +> More information: . + +- Decompress files: + +`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}}` diff --git a/pages/common/updog.md b/pages/common/updog.md new file mode 100644 index 00000000000000..d7ea23a290b917 --- /dev/null +++ b/pages/common/updog.md @@ -0,0 +1,25 @@ +# updog + +> A replacement for Python's SimpleHTTPServer. +> It allows uploading and downloading via HTTP/S, can set ad hoc SSL certificates and use HTTP basic auth. +> More information: . + +- Start a HTTP server for the current directory: + +`updog` + +- Start a HTTP server for a specified directory: + +`updog --directory {{/path/to/directory}}` + +- Start a HTTP server on a specified port: + +`updog --port {{port}}` + +- Start a HTTP server with a password (To log in, leave the username blank and enter the password in the password field): + +`updog --password {{password}}` + +- Enable transport encryption via SSL: + +`updog --ssl` diff --git a/pages/common/upx.md b/pages/common/upx.md index 3469e2dd5cdfad..97d5e922e4a0c2 100644 --- a/pages/common/upx.md +++ b/pages/common/upx.md @@ -5,11 +5,11 @@ - Compress executable: -`upx {{file}}` +`upx {{path/to/file}}` - Decompress executable: -`upx -d {{file}}` +`upx -d {{path/to/file}}` - Detailed help: diff --git a/pages/common/users.md b/pages/common/users.md index b6339a242857d6..9ed7512547f443 100644 --- a/pages/common/users.md +++ b/pages/common/users.md @@ -1,12 +1,13 @@ # users > Display a list of logged in users. +> See also: `useradd`, `userdel`, `usermod`. > More information: . -- Display a list of logged in users: +- Print logged in usernames: `users` -- Display a list of logged in users according to a specific file: +- Print logged in usernames according to a given file: `users {{/var/log/wmtp}}` diff --git a/pages/common/uudecode.md b/pages/common/uudecode.md new file mode 100644 index 00000000000000..a017555ac7f396 --- /dev/null +++ b/pages/common/uudecode.md @@ -0,0 +1,12 @@ +# uudecode + +> Decode files encoded by `uuencode`. +> More information: . + +- Decode a file that was encoded with `uuencode` and print the result to `stdout`: + +`uudecode {{path/to/encoded_file}}` + +- Decode a file that was encoded with `uuencode` and write the result to a file: + +`uudecode -o {{path/to/decoded_file}} {{path/to/encoded_file}}` diff --git a/pages/common/uuencode.md b/pages/common/uuencode.md new file mode 100644 index 00000000000000..545a1f18a507e4 --- /dev/null +++ b/pages/common/uuencode.md @@ -0,0 +1,16 @@ +# uuencode + +> Encode binary files into ASCII for transport via mediums that only support simple ASCII encoding. +> More information: . + +- Encode a file and print the result to `stdout`: + +`uuencode {{path/to/input_file}} {{output_file_name_after_decoding}}` + +- Encode a file and write the result to a file: + +`uuencode -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}` + +- Encode a file using Base64 instead of the default uuencode encoding and write the result to a file: + +`uuencode -m -o {{path/to/output_file}} {{path/to/input_file}} {{output_file_name_after_decoding}}` diff --git a/pages/common/vagrant.md b/pages/common/vagrant.md index 5c38b1c409ff65..ca1444af794055 100644 --- a/pages/common/vagrant.md +++ b/pages/common/vagrant.md @@ -7,9 +7,9 @@ `vagrant init` -- Create Vagrantfile with the Ubuntu 14.04 (Trusty Tahr) box from HashiCorp Atlas: +- Create Vagrantfile with the Ubuntu 20.04 (Focal Fossa) box from HashiCorp Atlas: -`vagrant init ubuntu/trusty32` +`vagrant init ubuntu/focal64` - Start and provision the vagrant environment: @@ -30,3 +30,7 @@ - Output the SSH configuration file of the running Vagrant machine: `vagrant ssh-config` + +- List all local boxes: + +`vagrant box list` diff --git a/pages/common/vale.md b/pages/common/vale.md new file mode 100644 index 00000000000000..5383956aab485f --- /dev/null +++ b/pages/common/vale.md @@ -0,0 +1,28 @@ +# vale + +> Extensible style checker that supports multiple markup formats, such as Markdown and AsciiDoc. +> More information: . + +- Check the style of a file: + +`vale {{path/to/file}}` + +- Check the style of a file with a specified configuration: + +`vale --config='{{path/to/.vale.ini}}' {{path/to/file}}` + +- Output the results in JSON format: + +`vale --output=JSON {{path/to/file}}` + +- Check style issues at the specific severity and higher: + +`vale --minAlertLeve={{suggestion|warning|error}} {{path/to/file}}` + +- Check the style from `stdin`, specifying markup format: + +`cat {{file.md}} | vale --ext=.md` + +- List the current configuration: + +`vale ls-config` diff --git a/pages/common/varnishlog.md b/pages/common/varnishlog.md new file mode 100644 index 00000000000000..fecdedcb0d734a --- /dev/null +++ b/pages/common/varnishlog.md @@ -0,0 +1,24 @@ +# varnishlog + +> Display Varnish logs. +> More information: . + +- Display logs in real time: + +`varnishlog` + +- Only display requests to a specific domain: + +`varnishlog -q 'ReqHeader eq "Host: {{example.com}}"'` + +- Only display POST requests: + +`varnishlog -q 'ReqMethod eq "{{POST}}"'` + +- Only display requests to a specific path: + +`varnishlog -q 'ReqURL eq "{{/path}}"'` + +- Only display requests to paths matching a regular expression: + +`varnishlog -q 'ReqURL ~ "{{regex}}"'` diff --git a/pages/common/vboxmanage.md b/pages/common/vboxmanage.md index 4524c664b58087..52a3ced92a4af0 100644 --- a/pages/common/vboxmanage.md +++ b/pages/common/vboxmanage.md @@ -18,7 +18,7 @@ - Start a virtual machine in headless mode: -`VBoxManage startvm {{name|uuid}} -type headless` +`VBoxManage startvm {{name|uuid}} --type headless` - Shutdown the virtual machine and save its current state: diff --git a/pages/common/vdir.md b/pages/common/vdir.md index d02567088aaea1..a9c3de80e337fa 100644 --- a/pages/common/vdir.md +++ b/pages/common/vdir.md @@ -8,7 +8,7 @@ `vdir` -- List with sizes displayed in human readable units (KB, MB, GB): +- List with sizes displayed in human-readable units (KB, MB, GB): `vdir -h` diff --git a/pages/common/vectorize-pixelart.md b/pages/common/vectorize-pixelart.md index c48c255b74847d..19be6efffe617f 100644 --- a/pages/common/vectorize-pixelart.md +++ b/pages/common/vectorize-pixelart.md @@ -3,6 +3,6 @@ > Convert PNG pixel art graphics to SVG/EPS vector images. > More information: . -- Convert a PNG image to a vector image format: +- Convert a PNG to a vector image format: `vectorize-pixelart {{path/to/input.png}} {{path/to/output.svg|.eps}}` diff --git a/pages/common/vegeta.md b/pages/common/vegeta.md index edc05f131976c8..6212d309c765f8 100644 --- a/pages/common/vegeta.md +++ b/pages/common/vegeta.md @@ -1,6 +1,6 @@ # vegeta -> A command line utility and a library for HTTP load testing. +> A command-line utility and a library for HTTP load testing. > See also `ab`. > More information: . @@ -8,7 +8,7 @@ `echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}}` -- Launch an attack on a server with a self-signed https certificate: +- Launch an attack on a server with a self-signed HTTPS certificate: `echo "{{GET https://example.com}}" | vegeta attack -insecure -duration={{30s}}` diff --git a/pages/common/vela.md b/pages/common/vela.md index 8801cce468afd5..ea39a56316b0ed 100644 --- a/pages/common/vela.md +++ b/pages/common/vela.md @@ -1,7 +1,7 @@ # vela -> Command line tools for the Vela pipeline. -> More information: . +> Command-line tools for the Vela pipeline. +> More information: . - Trigger a pipeline to run from a Git branch, commit or tag: diff --git a/pages/common/venv.md b/pages/common/venv.md new file mode 100644 index 00000000000000..43adc3c4606d8e --- /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/verilator.md b/pages/common/verilator.md new file mode 100644 index 00000000000000..bf78d0814b7ab1 --- /dev/null +++ b/pages/common/verilator.md @@ -0,0 +1,20 @@ +# verilator + +> Converts Verilog and SystemVerilog hardware description language (HDL) design into a C++ or SystemC model to be executed after compiling. +> More information: . + +- Build a specific C project in the current directory: + +`verilator --binary --build-jobs 0 -Wall {{path/to/source.v}}` + +- Create a C++ executable in a specific folder: + +`verilator --cc --exe --build --build-jobs 0 -Wall {{path/to/source.cpp}} {{path/to/output.v}}` + +- Perform linting over a code in the current directory: + +`verilator --lint-only -Wall` + +- Create XML output about the design (files, modules, instance hierarchy, logic and data types) to feed into other tools: + +`verilator --xml-output -Wall {{path/to/output.xml}}` diff --git a/pages/common/vgmstream_cli.md b/pages/common/vgmstream_cli.md new file mode 100644 index 00000000000000..00f8b6a3123753 --- /dev/null +++ b/pages/common/vgmstream_cli.md @@ -0,0 +1,28 @@ +# vgmstream_cli + +> Play a wide variety of audio formats used in video games and convert them into `wav`. +> More information: . + +- Decode an `adc` file to `wav`. (Default output name is `input.wav`): + +`vgmstream_cli {{path/to/input.adc}} -o {{path/to/output.wav}}` + +- Print metadata without decoding the audio: + +`vgmstream_cli {{path/to/input.adc}} -m` + +- Decode an audio file without loops: + +`vgmstream_cli {{path/to/input.adc}} -o {{path/to/output.wav}} -i` + +- Decode with three loops, then add a 3s delay followed by a 5s fadeout: + +`vgmstream_cli {{path/to/input.adc}} -o {{path/to/output.wav}} -l {{3.0}} -f {{5.0}} -d {{3.0}}` + +- Convert multiple files to `bgm_(original name).wav` (Default `-o` pattern is `?f.wav`): + +`vgmstream_cli -o {{path/to/bgm_?f.wav}} {{path/to/file1.adc}} {{path/to/file2.adc}}` + +- Play the file looping endlessly (`channels` and `rate` must match metadata): + +`vgmstream_cli {{path/to/input.adc}} -pec | aplay --format cd --channels {{1}} --rate {{44100}}` diff --git a/pages/common/vgrep.md b/pages/common/vgrep.md new file mode 100644 index 00000000000000..75e345abe2ffdc --- /dev/null +++ b/pages/common/vgrep.md @@ -0,0 +1,33 @@ +# vgrep + +> A user friendly pager for grep. +> See also: `ugrep`, `rg`. +> More information: . + +- Recursively search the current directory for a pattern and cache it: + +`vgrep {{search_pattern}}` + +- Display the contents of the cache: + +`vgrep` + +- Open the "4th" match from the cache in the default editor: + +`vgrep --show {{4}}` + +- Display a context of "3" lines for each match in the cache: + +`vgrep --show=context{{3}}` + +- Display the number of matches for each directory in the tree: + +`vgrep --show=tree` + +- Display the number of matches for each file in the tree: + +`vgrep --show=files` + +- Start an interactive shell with cached matches: + +`vgrep --interactive` diff --git a/pages/common/vhs.md b/pages/common/vhs.md new file mode 100644 index 00000000000000..ca752713069a25 --- /dev/null +++ b/pages/common/vhs.md @@ -0,0 +1,28 @@ +# vhs + +> CLI home video recorder to generate terminal gifs from code. +> More information: . + +- Create a tape file (Add commands to the tap file using your 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 a type file's syntax: + +`vhs validate {{path/to/file.tape}}` + +- Create a gif from a tape file: + +`vhs < {{path/to/file.tape}}` + +- Publish a gif to https://vhs.charm.sh and get a shareable URL: + +`vhs publish {{path/to/file.gif}}` diff --git a/pages/common/vi.md b/pages/common/vi.md new file mode 100644 index 00000000000000..7f0639b62e3890 --- /dev/null +++ b/pages/common/vi.md @@ -0,0 +1,7 @@ +# vi + +> This command is an alias of `vim`. + +- View documentation for the original command: + +`tldr vim` diff --git a/pages/common/view.md b/pages/common/view.md index c3e8463007e5fd..f02d6db4151074 100644 --- a/pages/common/view.md +++ b/pages/common/view.md @@ -2,7 +2,8 @@ > A read-only version of `vim`. > This is equivalent to `vim -R`. +> More information: . - Open a file: -`view {{file}}` +`view {{path/to/file}}` diff --git a/pages/common/vifm.md b/pages/common/vifm.md new file mode 100644 index 00000000000000..3eee6c8f050ff6 --- /dev/null +++ b/pages/common/vifm.md @@ -0,0 +1,12 @@ +# vifm + +> Vifm (VI File Manager) is a command line file manager. +> More information: . + +- Open the current directory: + +`vifm .` + +- Open specified directories on left or right plane: + +`vifm {{path/to/directory_1}} {{path/to/directory_2}}` diff --git a/pages/common/vim.md b/pages/common/vim.md index 08d9fdfc8f46bd..a60b72c76f256e 100644 --- a/pages/common/vim.md +++ b/pages/common/vim.md @@ -1,36 +1,37 @@ # vim > Vim (Vi IMproved), a command-line text editor, provides several modes for different kinds of text manipulation. -> Pressing `i` enters edit mode. `` goes back to normal mode, which doesn't allow regular text insertion. +> Pressing `i` in normal mode enters insert mode. Pressing `` goes back to normal mode, which enables the use of Vim commands. +> See also `vimdiff`, `vimtutor`, `nvim`. > More information: . - Open a file: `vim {{path/to/file}}` +- Open a file at a specified line number: + +`vim +{{line_number}} {{path/to/file}}` + - View Vim's help manual: `:help` -- Save and Quit: +- Save and quit the current buffer: `:wq` -- Open a file at a specified line number: - -`vim +{{line_number}} {{path/to/file}}` - -- Undo the last operation: +- Enter normal mode and undo the last operation: -`u` +`u` - Search for a pattern in the file (press `n`/`N` to go to next/previous match): `/{{search_pattern}}` -- Perform a regex substitution in the whole file: +- Perform a regular expression substitution in the whole file: -`:%s/{{pattern}}/{{replacement}}/g` +`:%s/{{regular_expression}}/{{replacement}}/g` - Display the line numbers: diff --git a/pages/common/vimdiff.md b/pages/common/vimdiff.md index 3fb83a05b97670..b2d8452e122e5c 100644 --- a/pages/common/vimdiff.md +++ b/pages/common/vimdiff.md @@ -1,7 +1,7 @@ # vimdiff > Open up two or more files in vim and show the differences between them. -> See also `vim`. +> See also `vim`, `vimtutor`, `nvim`. > More information: . - Open two files and show the differences: @@ -12,11 +12,11 @@ `Ctrl + w {{h|l}}` -- Jump to the next difference: +- Jump to the previous difference: `[c` -- Jump to the previous difference: +- Jump to the next difference: `]c` diff --git a/pages/common/vimtutor.md b/pages/common/vimtutor.md index e00e6d4254873e..1787ea2244b4c9 100644 --- a/pages/common/vimtutor.md +++ b/pages/common/vimtutor.md @@ -1,6 +1,8 @@ # vimtutor > Vim tutor, teaching the basic vim commands. +> See also `vim`, `vimdiff`, `nvim`. +> More information: . - Launch the vim tutor using the given language (en, fr, de, ...): diff --git a/pages/common/virsh-connect.md b/pages/common/virsh-connect.md new file mode 100644 index 00000000000000..5232e84d55a750 --- /dev/null +++ b/pages/common/virsh-connect.md @@ -0,0 +1,21 @@ +# virsh-connect + +> Connect to a virtual machine hypervisor. +> See also: `virsh`. +> More information: . + +- Connect to the default hypervisor: + +`virsh connect` + +- Connect as root to the local QEMU/KVM hypervisor: + +`virsh connect qemu:///system` + +- Launch a new instance of the hypervisor and connect to it as the local user: + +`virsh connect qemu:///session` + +- Connect as root to a remote hypervisor using ssh: + +`virsh connect qemu+ssh://{{user_name@host_name}}/system` diff --git a/pages/common/virsh-domblklist.md b/pages/common/virsh-domblklist.md new file mode 100644 index 00000000000000..dcf4f9cbec67be --- /dev/null +++ b/pages/common/virsh-domblklist.md @@ -0,0 +1,13 @@ +# virsh-domblklist + +> List information about block devices associated with a virtual machine. +> See also: `virsh`. +> More information: . + +- List the target name and source path of the block devices: + +`virsh domblklist --domain {{vm_name}}` + +- List the disk type and device value as well as the target name and source path: + +`virsh domblklist --domain {{vm_name}} --details` diff --git a/pages/common/virsh-help.md b/pages/common/virsh-help.md new file mode 100644 index 00000000000000..e2e1b129c352d6 --- /dev/null +++ b/pages/common/virsh-help.md @@ -0,0 +1,21 @@ +# virsh-help + +> Display information about `virsh` commands or command groups. +> See also: `virsh`. +> More information: . + +- List the `virsh` commands grouped into related categories: + +`virsh help` + +- List the command categories: + +`virsh help | grep "keyword"` + +- List the commands in a category: + +`virsh help {{category_keyword}}` + +- Show help for a command: + +`virsh help {{command}}` diff --git a/pages/common/virsh-list.md b/pages/common/virsh-list.md new file mode 100644 index 00000000000000..88ad062f2f3ce8 --- /dev/null +++ b/pages/common/virsh-list.md @@ -0,0 +1,21 @@ +# virsh-list + +> List the ID, name, and state of virtual machines. +> See also: `virsh`. +> More information: . + +- List information about running virtual machines: + +`virsh list` + +- List information about virtual machines regardless of state: + +`virsh list --all` + +- List information about virtual machines with autostart either enabled or disabled: + +`virsh list --all --{{autostart|no-autostart}}` + +- List information about virtual machines either with or without snapshots: + +`virsh list --all --{{with-snapshot|without-snapshot}}` diff --git a/pages/common/virsh-pool-autostart.md b/pages/common/virsh-pool-autostart.md new file mode 100644 index 00000000000000..2d933b1fb94752 --- /dev/null +++ b/pages/common/virsh-pool-autostart.md @@ -0,0 +1,13 @@ +# virsh pool-autostart + +> Enable or disable autostart for a virtual machine storage pool. +> See also: `virsh`. +> More information: . + +- Enable autostart for the storage pool specified by name or UUID (determine using `virsh pool-list`): + +`virsh pool-autostart --pool {{name|uuid}}` + +- Disable autostart for the storage pool specified by name or UUID: + +`virsh pool-autostart --pool {{name|uuid}} --disable` diff --git a/pages/common/virsh-pool-build.md b/pages/common/virsh-pool-build.md new file mode 100644 index 00000000000000..330dff8df6a5fc --- /dev/null +++ b/pages/common/virsh-pool-build.md @@ -0,0 +1,9 @@ +# virsh pool-build + +> Build the underlying storage system for a virtual machine storage pool as defined in it's configuration file in `/etc/libvirt/storage`. +> See also: `virsh`, `virsh-pool-define-as`, `virsh-pool-start`. +> More information: . + +- Build the storage pool specified by name or UUID (determine using `virsh pool-list`): + +`virsh pool-build --pool {{name|uuid}}` diff --git a/pages/common/virsh-pool-define-as.md b/pages/common/virsh-pool-define-as.md new file mode 100644 index 00000000000000..cd4d7844eed308 --- /dev/null +++ b/pages/common/virsh-pool-define-as.md @@ -0,0 +1,9 @@ +# virsh pool-define-as + +> Create a configuration file in `/etc/libvirt/storage` for a persistent virtual machine storage pool from the provided arguments. +> See also: `virsh`, `virsh-pool-build`, `virsh-pool-start`. +> More information: . + +- Create the configuration file for a storage pool called pool_name using `/var/vms` as the underlying storage system: + +`virsh pool-define-as --name {{pool_name}} --type {{dir}} --target {{/var/vms}}` diff --git a/pages/common/virsh-pool-delete.md b/pages/common/virsh-pool-delete.md new file mode 100644 index 00000000000000..8ce04c261b5dad --- /dev/null +++ b/pages/common/virsh-pool-delete.md @@ -0,0 +1,9 @@ +# virsh pool-delete + +> Delete the underlying storage system of an inactive virtual machine storage pool. +> See also: `virsh`, `virsh-pool-destroy`, `virsh-pool-undefine`. +> More information: . + +- Delete the underlying storage system for the storage pool specified by name or UUID (determine using `virsh pool-list`): + +`virsh pool-delete --pool {{name|uuid}}` diff --git a/pages/common/virsh-pool-destroy.md b/pages/common/virsh-pool-destroy.md new file mode 100644 index 00000000000000..34402e8ca1ca13 --- /dev/null +++ b/pages/common/virsh-pool-destroy.md @@ -0,0 +1,9 @@ +# virsh pool-destroy + +> Stop an active virtual machine storage pool. +> See also: `virsh`, `virsh-pool-delete`. +> More information: . + +- Stop a storage pool specified by name or UUID (determine using `virsh pool-list`): + +`virsh pool-destroy --pool {{name|uuid}}` diff --git a/pages/common/virsh-pool-info.md b/pages/common/virsh-pool-info.md new file mode 100644 index 00000000000000..5b932a0e73aec4 --- /dev/null +++ b/pages/common/virsh-pool-info.md @@ -0,0 +1,9 @@ +# virsh pool-info + +> List information about a virtual machine storage pool. +> See also: `virsh`. +> More information: . + +- List the name, UUID, state, persistence type, autostart status, capacity, space allocated, and space available for the storage pool specified by name or UUID (determine using `virsh pool-list`): + +`virsh pool-info --pool {{name|uuid}}` diff --git a/pages/common/virsh-pool-list.md b/pages/common/virsh-pool-list.md new file mode 100644 index 00000000000000..d35a6dbab22333 --- /dev/null +++ b/pages/common/virsh-pool-list.md @@ -0,0 +1,29 @@ +# virsh pool-list + +> List information about virtual machine storage pools. +> See also: `virsh`, `virsh-pool-autostart`, `virsh-pool-define-as`. +> More information: . + +- List the name, state, and whether autostart is enabled or disabled for active storage pools: + +`virsh pool-list` + +- List information for active and inactive or just inactive storage pools: + +`virsh pool-list --{{all|inactive}}` + +- List extended information about persistence, capacity, allocation, and available space for active storage pools: + +`virsh pool-list --details` + +- List information for active storage pools with either autostart enabled or disabled: + +`virsh pool-list --{{autostart|no-autostart}}` + +- List information for active storage pools that are either persistent or transient: + +`virsh pool-list --{{persistent|transient}}` + +- List the name and UUID of active storage pools: + +`virsh pool-list --name --uuid` diff --git a/pages/common/virsh-pool-start.md b/pages/common/virsh-pool-start.md new file mode 100644 index 00000000000000..e3480e82f0b158 --- /dev/null +++ b/pages/common/virsh-pool-start.md @@ -0,0 +1,9 @@ +# virsh pool-start + +> Start a previously configured but inactive virtual machine storage pool. +> See also: `virsh`, `virsh-pool-define-as`, `virsh-pool-destroy`. +> More information: . + +- Start the storage pool specified by name or UUID (determine using `virsh pool-list`) and create the underlying storage system if it doesn't exist: + +`virsh pool-start --pool {{name|uuid}} --build` diff --git a/pages/common/virsh-pool-undefine.md b/pages/common/virsh-pool-undefine.md new file mode 100644 index 00000000000000..dd57dd52a5b39d --- /dev/null +++ b/pages/common/virsh-pool-undefine.md @@ -0,0 +1,9 @@ +# virsh pool-undefine + +> Delete the configuration file in `/etc/libvirt/storage` for a stopped virtual machine storage pool. +> See also: `virsh`, `virsh-pool-destroy`. +> More information: . + +- Delete the configuration for the storage pool specified name or UUID (determine using `virsh pool-list`): + +`virsh pool-undefine --pool {{name|uuid}}` diff --git a/pages/common/virsh-undefine.md b/pages/common/virsh-undefine.md new file mode 100644 index 00000000000000..fa200736c7799a --- /dev/null +++ b/pages/common/virsh-undefine.md @@ -0,0 +1,16 @@ +# virsh-undefine + +> Delete a virtual machine. +> More information: . + +- Delete only the virtual machine configuration file: + +`virsh undefine --domain {{vm_name}}` + +- Delete the configuration file and all associated storage volumes: + +`virsh undefine --domain {{vm_name}} --remove-all-storage` + +- Delete the configuration file and the specified storage volumes using the target name or the source name (as obtained from the `virsh domblklist` command): + +`virsh undefine --domain {{vm_name}} --storage {{sda,path/to/source}}` diff --git a/pages/common/virsh.md b/pages/common/virsh.md index b34d0bcf19e6c5..76ab0f5c54321d 100644 --- a/pages/common/virsh.md +++ b/pages/common/virsh.md @@ -1,12 +1,12 @@ # virsh -> Manage virsh guest domains. -> NOTE: 'guest_id' can be the id, name or UUID of the guest. +> Manage virsh guest domains. (NOTE: 'guest_id' can be the id, name or UUID of the guest). +> Some subcommands such as `virsh list` have their own usage documentation. > More information: . - Connect to a hypervisor session: -`virsh connect {{qemu://system}}` +`virsh connect {{qemu:///system}}` - List all domains: diff --git a/pages/common/virt-install.md b/pages/common/virt-install.md index 86b9b40c47196e..2d8fdbcc4acd93 100644 --- a/pages/common/virt-install.md +++ b/pages/common/virt-install.md @@ -3,6 +3,22 @@ > Create virtual machines with libvirt and begin OS installation. > More information: . -- Create a virtual machine with 1 GiB RAM and 12 GiB storage and start Debian installation: +- Create a virtual machine with 1 GB RAM and 12 GB storage and start a Debian installation: `virt-install --name {{vm_name}} --memory {{1024}} --disk path={{path/to/image.qcow2}},size={{12}} --cdrom {{path/to/debian.iso}}` + +- Create a x86-64, KVM-accelerated, UEFI-based virtual machine with the Q35 chipset, 4 GiB RAM, 16 GiB RAW storage, and start a Fedora installation: + +`virt-install --name {{vm_name}} --arch {{x86_64}} --virt-type {{kvm}} --machine {{q35}} --boot {{uefi}} --memory {{4096}} --disk path={{path/to/image.raw}},size={{16}} --cdrom {{path/to/fedora.iso}}` + +- 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}}` + +- 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: + +`virt-install --name {{vm_name}} --cpu {{host-model}},topology.sockets={{1}},topology.cores={{4}},topology.threads={{2}} --memory {{16384}} --disk path={{path/to/image.qcow2}},size={{250}} --cdrom {{path/to/debian.iso}}` + +- Create a virtual machine and kickstart an automated deployment based on Fedora 35 using only remote resources (no ISO required): + +`virt-install --name {{vm_name}} --memory {{2048}} --disk path={{path/to/image.qcow2}},size={{20}} --location={{https://download.fedoraproject.org/pub/fedora/linux/releases/35/Everything/x86_64/os/}} --extra-args={{"inst.ks=https://path/to/valid/kickstart.org"}}` diff --git a/pages/common/virt-sparsify.md b/pages/common/virt-sparsify.md index a4d08a39475bbe..b9627e0b2d5b0e 100644 --- a/pages/common/virt-sparsify.md +++ b/pages/common/virt-sparsify.md @@ -2,7 +2,7 @@ > Make virtual machine drive images thin-provisioned. > NOTE: Use only for offline machines to avoid data corruption. -> Home page: . +> More information: . - Create a sparsified compressed image without snapshots from an unsparsified one: diff --git a/pages/common/virt-sysprep.md b/pages/common/virt-sysprep.md new file mode 100644 index 00000000000000..087e1804688e69 --- /dev/null +++ b/pages/common/virt-sysprep.md @@ -0,0 +1,20 @@ +# virt-sysprep + +> Reset, unconfigure, or customize a virtual machine image. +> More information: . + +- List all supported operations (enabled operations are indicated with asterisks): + +`virt-sysprep --list-operations` + +- Run all enabled operations but don't actually apply the changes: + +`virt-sysprep --domain {{vm_name}} --dry-run` + +- Run only the specified operations: + +`virt-sysprep --domain {{vm_name}} --operations {{operation1,operation2,...}}` + +- Generate a new `/etc/machine-id` file and enable customizations to be able to change the host name to avoid network conflicts: + +`virt-sysprep --domain {{vm_name}} --enable {{customizations}} --hostname {{host_name}} --operation {{machine-id}}` diff --git a/pages/common/visudo.md b/pages/common/visudo.md index 18665e8d39f5e0..ad1395dc77b5e3 100644 --- a/pages/common/visudo.md +++ b/pages/common/visudo.md @@ -1,11 +1,20 @@ # visudo > Safely edit the sudoers file. +> More information: . -- Edit sudoers file: +- Edit the sudoers file: `sudo visudo` -- Check sudoers file for errors: +- Check the sudoers file for errors: `sudo visudo -c` + +- Edit the sudoers file using a specific editor: + +`sudo EDITOR={{editor}} visudo` + +- Display version information: + +`visudo --version` diff --git a/pages/common/vite.md b/pages/common/vite.md new file mode 100644 index 00000000000000..d8ff77b500c822 --- /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 new file mode 100644 index 00000000000000..5675a204797cf4 --- /dev/null +++ b/pages/common/viu.md @@ -0,0 +1,24 @@ +# viu + +> A small command-line application to view images from the terminal. +> More information: . + +- Render an image or animated GIF: + +`viu {{path/to/file}}` + +- Render an image or GIF from the internet using `curl`: + +`curl -s {{https://example.com/image.png}} | viu -` + +- Render an image with a transparent background: + +`viu -t {{path/to/file}}` + +- Render an image with a specific width and height in pixels: + +`viu -w {{width}} -h {{height}} {{path/to/file}}` + +- Render an image or GIF and display its file name: + +`viu -n {{path/to/file}}` diff --git a/pages/common/vlc.md b/pages/common/vlc.md index 61f4001464f683..43727ba56ce87b 100644 --- a/pages/common/vlc.md +++ b/pages/common/vlc.md @@ -1,7 +1,7 @@ # vlc > Cross-platform multimedia player. -> More information: . +> More information: . - Play a file: diff --git a/pages/common/volta.md b/pages/common/volta.md new file mode 100644 index 00000000000000..2922baa5e2c4d1 --- /dev/null +++ b/pages/common/volta.md @@ -0,0 +1,28 @@ +# volta + +> A JavaScript Tool Manager that installs Node.js runtimes, npm and Yarn package managers, or any binaries from npm. +> More information: . + +- List all installed tools: + +`volta list` + +- Install the latest version of a tool: + +`volta install {{node|npm|yarn|package_name}}` + +- Install a specific version of a tool: + +`volta install {{node|npm|yarn}}@version` + +- Choose a tool version for a project (will store it in `package.json`): + +`volta pin {{node|npm|yarn}}@version` + +- Display help: + +`volta help` + +- Display help for a subcommand: + +`volta help {{fetch|install|uninstall|pin|list|completions|which|setup|run|help}}` diff --git a/pages/common/vt.md b/pages/common/vt.md new file mode 100644 index 00000000000000..512a50ef1abb8e --- /dev/null +++ b/pages/common/vt.md @@ -0,0 +1,37 @@ +# vt + +> Command-line interface for VirusTotal. +> API key from a VirusTotal account is required for this command. +> More information: . + +- Scan a specific file for viruses: + +`vt scan file {{path/to/file}}` + +- Scan a URL for viruses: + +`vt scan url {{url}}` + +- Display information from a specific analysis: + +`vt analysis {{file_id|analysis_id}}` + +- Download files in encrypted `.zip` format (requires premium account): + +`vt download {{file_id}} --output {{path/to/directory}} --zip --zip-password {{password}}` + +- Initialize or re-initialize `vt` to enter API key interactively: + +`vt init` + +- Display information about a domain: + +`vt domain {{url}}` + +- Display information for a specific URL: + +`vt url {{url}}` + +- Display information for a specific IP address: + +`vt domain {{ip_address}}` diff --git a/pages/common/vue.md b/pages/common/vue.md index e842fb6b4b8c1d..bfcec914fbbf4e 100644 --- a/pages/common/vue.md +++ b/pages/common/vue.md @@ -1,9 +1,10 @@ # vue > Multi-purpose CLI for Vue.js. +> Some subcommands such as `vue build` have their own usage documentation. > More information: . -- Create a new vue project interactively: +- Create a new Vue project interactively: `vue create {{project_name}}` diff --git a/pages/common/vzdump.md b/pages/common/vzdump.md new file mode 100644 index 00000000000000..d26a622c074d98 --- /dev/null +++ b/pages/common/vzdump.md @@ -0,0 +1,28 @@ +# vzdump + +> Backup Utility for virtual machines and containers. +> More information: . + +- Dump a guest virtual machine into the default dump directory (usually `/var/lib/vz/dump/`), excluding snapshots: + +`vzdump {{vm_id}}` + +- Back up the guest virtual machines with the IDs 101, 102, and 103: + +`vzdump {{101 102 103}}` + +- Dump a guest virtual machine using a specific mode: + +`vzdump {{vm_id}} --mode {{suspend|snapshot}}` + +- Back up all guest systems and send an notification email to the root and admin users: + +`vzdump --all --mode {{suspend}} --mailto {{root}} --mailto {{admin}}` + +- Use snapshot mode (no downtime required) and a non-default dump directory: + +`vzdump {{vm_id}} --dumpdir {{path/to/directory}} --mode {{snapshot}}` + +- Back up all guest virtual machines excluding the IDs 101 and 102: + +`vzdump --mode {{suspend}} --exclude {{101, 102}}` diff --git a/pages/common/w.md b/pages/common/w.md index 606db59b865eed..0a765c407f909d 100644 --- a/pages/common/w.md +++ b/pages/common/w.md @@ -2,6 +2,7 @@ > Show who is logged on and what they are doing. > Print user login, TTY, remote host, login time, idle time, current process. +> More information: . - Show logged-in users info: diff --git a/pages/common/waifu2x-ncnn-vulkan.md b/pages/common/waifu2x-ncnn-vulkan.md new file mode 100644 index 00000000000000..1b34184312b1ae --- /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/wait.md b/pages/common/wait.md index 672f2d528ec91f..3a93b082e12315 100644 --- a/pages/common/wait.md +++ b/pages/common/wait.md @@ -1,6 +1,7 @@ # wait > Wait for a process to complete before proceeding. +> More information: . - Wait for a process to finish given its process ID (PID) and return its exit status: diff --git a/pages/common/waitress-serve.md b/pages/common/waitress-serve.md index 8eebc41fbd2cb9..833da7351fd2bb 100644 --- a/pages/common/waitress-serve.md +++ b/pages/common/waitress-serve.md @@ -1,6 +1,7 @@ # waitress-serve > Pure Python WSGI HTTP Server. +> More information: . - Run a Python web app: @@ -22,6 +23,6 @@ `waitress-serve --call {{import.path.wsgi_factory}}` -- Set the URL scheme to https: +- Set the URL scheme to HTTPS: `waitress-serve --url-scheme={{https}} {{import.path:wsgi_func}}` diff --git a/pages/common/wal.md b/pages/common/wal.md index 8630c823462a3d..9c7d525d2af3de 100644 --- a/pages/common/wal.md +++ b/pages/common/wal.md @@ -13,15 +13,15 @@ - Create a light color scheme: -`wal -il {{image.png}}` +`wal -i {{image.png}} -l` - Skip setting the desktop wallpaper: -`wal -in {{image.png}}` +`wal -i {{image.png}} -n` - Skip setting the terminal colors: -`wal -is {{image.png}}` +`wal -i {{image.png}} -s` - Restore the previously generated color scheme and wallpaper: diff --git a/pages/common/wapm.md b/pages/common/wapm.md index 6f4656207032d8..987e7d2332f31c 100644 --- a/pages/common/wapm.md +++ b/pages/common/wapm.md @@ -23,7 +23,7 @@ `wapm uninstall {{package_name}}` -- Print a tree of locally-installed dependencies: +- Print a tree of locally installed dependencies: `wapm list` diff --git a/pages/common/warp-cli.md b/pages/common/warp-cli.md new file mode 100644 index 00000000000000..d037d8341623ac --- /dev/null +++ b/pages/common/warp-cli.md @@ -0,0 +1,28 @@ +# warp-cli + +> Official command-line client for Cloudflare's WARP service. +> More information: . + +- Register the current device to WARP (must be run before first connection): + +`warp-cli register` + +- Connect to WARP: + +`warp-cli connect` + +- Disconnect from WARP: + +`warp-cli disconnect` + +- Display the WARP connection status: + +`warp-cli status` + +- Display help: + +`warp-cli help` + +- Display help for a subcommand: + +`warp-cli help {{subcommand}}` diff --git a/pages/common/warp-diag.md b/pages/common/warp-diag.md new file mode 100644 index 00000000000000..d3e9726b855c62 --- /dev/null +++ b/pages/common/warp-diag.md @@ -0,0 +1,21 @@ +# warp-diag + +> Diagnostic and feedback tool for Cloudflare's WARP service. +> See also: `warp-cli`. +> More information: . + +- Generate a zip file with information about the system configuration and the WARP connection: + +`warp-diag` + +- Generate a zip file with debug information including a timestamp to the output filename: + +`warp-diag --add-ts` + +- Save the output file under a specific directory: + +`warp-diag --output {{path/to/directory}}` + +- Submit a new feedback to Cloudflare's WARP interactively: + +`warp-diag feedback` diff --git a/pages/common/wasm-objdump.md b/pages/common/wasm-objdump.md index 1741660b4edc70..af8422ff4b6283 100644 --- a/pages/common/wasm-objdump.md +++ b/pages/common/wasm-objdump.md @@ -1,6 +1,7 @@ # wasm-objdump > Display information from WebAssembly binaries. +> More information: . - Display the section headers of a given binary: diff --git a/pages/common/wasm-opt.md b/pages/common/wasm-opt.md index f5d9036b2437a3..f472e34e495ff6 100644 --- a/pages/common/wasm-opt.md +++ b/pages/common/wasm-opt.md @@ -1,6 +1,7 @@ # wasm-opt > Optimize WebAssembly binary files. +> More information: . - Apply default optimizations and write to a given file: diff --git a/pages/common/wasm2c.md b/pages/common/wasm2c.md index b29e224837950f..c9684cb10af17f 100644 --- a/pages/common/wasm2c.md +++ b/pages/common/wasm2c.md @@ -1,6 +1,7 @@ # wasm2c > Convert a file from the WebAssembly binary format to a C source file and header. +> More information: . - Convert a file to a C source file and header and display it to the console: diff --git a/pages/common/wasm2wat.md b/pages/common/wasm2wat.md index 230d5554a12d07..cbfc851b7e9d68 100644 --- a/pages/common/wasm2wat.md +++ b/pages/common/wasm2wat.md @@ -1,6 +1,7 @@ # wasm2wat > Convert a file from the WebAssembly binary format to the text format. +> More information: . - Convert a file to the text format and display it to the console: diff --git a/pages/common/watch.md b/pages/common/watch.md index 457d45be4f55f1..0aad04cb1e018c 100644 --- a/pages/common/watch.md +++ b/pages/common/watch.md @@ -1,6 +1,7 @@ # watch > Execute a program periodically, showing output fullscreen. +> More information: . - Repeatedly run a command and show the result: @@ -13,3 +14,7 @@ - Monitor the contents of a directory, highlighting differences as they appear: `watch -d {{ls -l}}` + +- Repeatedly run a pipeline and show the result: + +`watch '{{command_1}} | {{command_2}} | {{command_3}}'` diff --git a/pages/common/watson.md b/pages/common/watson.md index ee643474c34227..fc7f12cf83f593 100644 --- a/pages/common/watson.md +++ b/pages/common/watson.md @@ -15,7 +15,7 @@ `watson stop` -- Display latest working sessions: +- Display the latest working sessions: `watson log` diff --git a/pages/common/wc.md b/pages/common/wc.md index 6f29f3e53458f0..7204e84f413e69 100644 --- a/pages/common/wc.md +++ b/pages/common/wc.md @@ -1,24 +1,28 @@ # wc -> Count lines, words, or bytes. +> Count lines, words, and bytes. > More information: . -- Count lines in file: +- Count all lines in a file: -`wc -l {{file}}` +`wc --lines {{path/to/file}}` -- Count words in file: +- Count all words in a file: -`wc -w {{file}}` +`wc --words {{path/to/file}}` -- Count characters (bytes) in file: +- Count all bytes in a file: -`wc -c {{file}}` +`wc --bytes {{path/to/file}}` -- Count characters in file (taking multi-byte character sets into account): +- Count all characters in a file (taking multi-byte characters into account): -`wc -m {{file}}` +`wc --chars {{path/to/file}}` -- Use standard input to count lines, words and characters (bytes) in that order: +- Count all lines, words and bytes from `stdin`: `{{find .}} | wc` + +- Count the length of the longest line in number of characters: + +`wc --max-line-length {{path/to/file}}` diff --git a/pages/common/weasyprint.md b/pages/common/weasyprint.md index a81391d0c265d5..f75339c7c9df21 100644 --- a/pages/common/weasyprint.md +++ b/pages/common/weasyprint.md @@ -3,11 +3,11 @@ > Render HTML to PDF or PNG. > More information: . -- Render a HTML file to PDF: +- Render an HTML file to PDF: `weasyprint {{path/to/input.html}} {{path/to/output}}.pdf` -- Render a HTML file to PNG, including an additional user stylesheet: +- Render an HTML file to PNG, including an additional user stylesheet: `weasyprint {{path/to/input.html}} {{path/to/output}}.png --stylesheet {{path/to/stylesheet.css}}` @@ -19,6 +19,6 @@ `weasyprint {{path/to/input.html}} {{path/to/output}}.png --resolution {{300}}` -- Specify a base url for relative urls in the input HTML file: +- Specify a base URL for relative URLs in the input HTML file: `weasyprint {{path/to/input.html}} {{path/to/output}}.png --base-url {{url_or_filename}}` diff --git a/pages/common/web-ext.md b/pages/common/web-ext.md index 2fb74316cad065..deeeb0d6f2e24d 100644 --- a/pages/common/web-ext.md +++ b/pages/common/web-ext.md @@ -1,7 +1,7 @@ # web-ext -> A command line tool for managing web extension development. -> More information: . +> A command-line tool for managing web extension development. +> More information: . - Run the web extension in the current directory in Firefox: diff --git a/pages/common/webpack.md b/pages/common/webpack.md index 1ceec62c7187c6..72a7a7357a416c 100644 --- a/pages/common/webpack.md +++ b/pages/common/webpack.md @@ -7,11 +7,11 @@ `webpack {{app.js}} {{bundle.js}}` -- Load css files too from the js file (this uses the css loader for `.css` files): +- Load CSS files too from the JavaScript file (this uses the CSS loader for `.css` files): -`webpack {{app.js}} {{bundle.js}} --module-bind 'css=css'` +`webpack {{app.js}} {{bundle.js}} --module-bind '{{css=css}}'` -- Pass a config file (with eg. the entry script and the output filename) and show compilation progress: +- Pass a config file (with e.g. the entry script and the output filename) and show compilation progress: `webpack --config {{webpack.config.js}} --progress` diff --git a/pages/common/webstorm.md b/pages/common/webstorm.md new file mode 100644 index 00000000000000..39d1e235b2e7c0 --- /dev/null +++ b/pages/common/webstorm.md @@ -0,0 +1,32 @@ +# webstorm + +> The JetBrains JavaScript IDE. +> More information: . + +- Open the current directory in WebStorm: + +`webstorm` + +- Open a specific directory in WebStorm: + +`webstorm {{path/to/directory}}` + +- Open specific files in the LightEdit mode: + +`webstorm -e {{path/to/file1 path/to/file2 ...}}` + +- Open and wait until done editing a specific file in the LightEdit mode: + +`webstorm --wait -e {{path/to/file}}` + +- Open a file with the cursor at the specific line: + +`webstorm --line {{line_number}} {{path/to/file}}` + +- Open and compare files (supports up to 3 files): + +`webstorm diff {{path/to/file1}} {{path/to/file2}}` + +- Open and perform a three-way merge: + +`webstorm merge {{path/to/left_file}} {{path/to/right_file}} {{path/to/target_file}}` diff --git a/pages/common/webtorrent.md b/pages/common/webtorrent.md index e76189929165fd..b56412352b8d02 100644 --- a/pages/common/webtorrent.md +++ b/pages/common/webtorrent.md @@ -1,7 +1,7 @@ # webtorrent -> The command line interface for WebTorrent. -> Supports magnets, urls, info hashes and .torrent files. +> The command-line interface for WebTorrent. +> Supports magnets, URLs, info hashes and `.torrent` files. > More information: . - Download a torrent: @@ -32,6 +32,6 @@ `webtorrent create {{path/to/file}}` -- Display information for a magnet uri or `.torrent` file: +- Display information for a magnet URI or `.torrent` file: `webtorrent info {{path/to/file_or_magnet}}` diff --git a/pages/common/wget.md b/pages/common/wget.md index a682fc008d9f88..711a91b11cbd7c 100644 --- a/pages/common/wget.md +++ b/pages/common/wget.md @@ -4,13 +4,13 @@ > Supports HTTP, HTTPS, and FTP. > More information: . -- Download the contents of an URL to a file (named "foo" in this case): +- Download the contents of a URL to a file (named "foo" in this case): `wget {{https://example.com/foo}}` -- Download the contents of an URL to a file (named "bar" in this case): +- Download the contents of a URL to a file (named "bar" in this case): -`wget -O {{bar}} {{https://example.com/foo}}` +`wget --output-document {{bar}} {{https://example.com/foo}}` - Download a single web page and all its resources with 3-second intervals between requests (scripts, stylesheets, images, etc.): @@ -30,8 +30,8 @@ - Continue an incomplete download: -`wget -c {{https://example.com}}` +`wget --continue {{https://example.com}}` - Download all URLs stored in a text file to a specific directory: -`wget -P {{path/to/directory}} -i {{URLs.txt}}` +`wget --directory-prefix {{path/to/directory}} --input-file {{URLs.txt}}` diff --git a/pages/common/where.md b/pages/common/where.md index 61f6128a4d506a..7de89d95337049 100644 --- a/pages/common/where.md +++ b/pages/common/where.md @@ -2,6 +2,7 @@ > Reports all known instances of a command. > It could be an executable in the PATH environment variable, an alias, or a shell builtin. +> More information: . - Find all instances of a command: diff --git a/pages/common/whereis.md b/pages/common/whereis.md new file mode 100644 index 00000000000000..6ee3f8a0f6c06d --- /dev/null +++ b/pages/common/whereis.md @@ -0,0 +1,28 @@ +# whereis + +> Locate the binary, source, and manual page files for a command. +> More information: . + +- Locate binary, source and man pages for ssh: + +`whereis {{ssh}}` + +- Locate binary and man pages for ls: + +`whereis -bm {{ls}}` + +- Locate source of gcc and man pages for Git: + +`whereis -s {{gcc}} -m {{git}}` + +- Locate binaries for gcc in `/usr/bin/` only: + +`whereis -b -B {{/usr/bin/}} -f {{gcc}}` + +- Locate unusual binaries (those that have more or less than one binary on the system): + +`whereis -u *` + +- Locate binaries that have unusual manual entries (binaries that have more or less than one manual installed): + +`whereis -u -m *` diff --git a/pages/common/which.md b/pages/common/which.md index 36d39414dd4b55..2e809be2939a4c 100644 --- a/pages/common/which.md +++ b/pages/common/which.md @@ -1,6 +1,7 @@ # which > Locate a program in the user's path. +> More information: . - Search the PATH environment variable and display the location of any matching executables: diff --git a/pages/common/while.md b/pages/common/while.md index 066290c91b731d..67cde5af7763e2 100644 --- a/pages/common/while.md +++ b/pages/common/while.md @@ -1,8 +1,9 @@ # while > Simple shell loop. +> More information: . -- Read stdin and perform an action on every line: +- Read `stdin` and perform an action on every line: `while read line; do echo "$line"; done` diff --git a/pages/common/whisper.md b/pages/common/whisper.md new file mode 100644 index 00000000000000..3a3b7819011a21 --- /dev/null +++ b/pages/common/whisper.md @@ -0,0 +1,28 @@ +# whisper + +> CLI tool to convert audio files to txt,vtt,srt,tsv,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/whois.md b/pages/common/whois.md index c860b97954a916..6438a8831d4f50 100644 --- a/pages/common/whois.md +++ b/pages/common/whois.md @@ -1,6 +1,6 @@ # whois -> Commandline client for the WHOIS (RFC 3912) protocol. +> Command-line client for the WHOIS (RFC 3912) protocol. > More information: . - Get information about a domain name: diff --git a/pages/common/wipeclean.md b/pages/common/wipeclean.md new file mode 100644 index 00000000000000..c99ac97143f764 --- /dev/null +++ b/pages/common/wipeclean.md @@ -0,0 +1,12 @@ +# wipeclean + +> Clear the terminal screen using an animated wiper. +> More information: . + +- Clear the terminal screen: + +`wipeclean` + +- Set the animation speed in frames per second (defaults to 150): + +`wipeclean --speed {{speed}}` diff --git a/pages/common/wondershaper.md b/pages/common/wondershaper.md new file mode 100644 index 00000000000000..c7c0a582aaf8b9 --- /dev/null +++ b/pages/common/wondershaper.md @@ -0,0 +1,28 @@ +# wondershaper + +> Allows the user to limit the bandwidth of one or more network adapters. +> More information: . + +- Display [h]elp: + +`wondershaper -h` + +- Show the current [s]tatus of a specific [a]dapter: + +`wondershaper -s -a {{adapter_name}}` + +- Clear limits from a specific [a]dapter: + +`wondershaper -c -a {{adapter_name}}` + +- Set a specific maximum [d]ownload rate (in Kbps): + +`wondershaper -a {{adapter_name}} -d {{1024}}` + +- Set a specific maximum [u]pload rate (in Kbps): + +`wondershaper -a {{adapter_name}} -u {{512}}` + +- Set a specific maximum [d]ownload rate and [u]pload rate (in Kpbs): + +`wondershaper -a {{adapter_name}} -d {{1024}} -u {{512}}` diff --git a/pages/common/wormhole.md b/pages/common/wormhole.md index b3770705131abb..652e8472cc781f 100644 --- a/pages/common/wormhole.md +++ b/pages/common/wormhole.md @@ -1,7 +1,7 @@ # wormhole > Get things from one computer to another, safely. -> More information: . +> More information: . - Send a file: diff --git a/pages/common/wp.md b/pages/common/wp.md new file mode 100644 index 00000000000000..aa019c5a3cc9bf --- /dev/null +++ b/pages/common/wp.md @@ -0,0 +1,32 @@ +# wp + +> The official command-line interface to manage WordPress instances. +> More information: . + +- Print information about the operating system, shell, PHP, and WP-CLI (`wp`) installation: + +`wp --info` + +- Update WP-CLI: + +`wp cli update` + +- Download a fresh WordPress installation to current directory, optionally specifying the locale: + +`wp core download --locale={{locale}}` + +- Create basic `wpconfig` file (assuming database on `localhost`): + +`wp config create --dbname={{dbname}} --dbuser={{dbuser}} --dbpass={{dbpass}}` + +- Install and activate a WordPress plugin: + +`wp plugin install {{plugin}} --activate` + +- Replace all instances of a string in the database: + +`wp search-replace {{old_string}} {{new_string}}` + +- Import the contents of a WordPress Extended RSS (WXR) file: + +`wp import {{path/to/file.xml}}` diff --git a/pages/common/wpa_supplicant.md b/pages/common/wpa_supplicant.md index 7757bb7a5c35f2..26f075afb7f336 100644 --- a/pages/common/wpa_supplicant.md +++ b/pages/common/wpa_supplicant.md @@ -1,6 +1,7 @@ # wpa_supplicant > Manage protected wireless networks. +> More information: . - Join a protected wireless network: diff --git a/pages/common/wpaclean.md b/pages/common/wpaclean.md new file mode 100644 index 00000000000000..abc22556f929aa --- /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 new file mode 100644 index 00000000000000..a538eae82cefaa --- /dev/null +++ b/pages/common/wpm.md @@ -0,0 +1,28 @@ +# wpm + +> Typeracer-like console app for measuring your WPM. +> More information: . + +- Start the program: + +`wpm` + +- Start wpm with short texts: + +`wpm --short` + +- Start wpm using a specific text file: + +`wpm --load {{path/to/file.txt}}` + +- Tag your race scores: + +`wpm --tag {{tag_name}}` + +- Show score statistics grouped by tags: + +`wpm --stats` + +- Start wpm with monochrome colors: + +`wpm --monochrome` diff --git a/pages/common/wpscan.md b/pages/common/wpscan.md index eeb4e11a948aba..afb8a0b119d74b 100644 --- a/pages/common/wpscan.md +++ b/pages/common/wpscan.md @@ -1,36 +1,36 @@ # wpscan -> Wordpress vulnerability scanner. +> WordPress vulnerability scanner. > More information: . - Update the vulnerability database: `wpscan --update` -- Scan a Wordpress website: +- Scan a WordPress website: `wpscan --url {{url}}` -- Scan a Wordpress website, using random user agents and passive detection: +- Scan a WordPress website, using random user agents and passive detection: `wpscan --url {{url}} --stealthy` -- Scan a Wordpress website, checking for vulnerable plugins and specifying the path to the `wp-content` directory: +- Scan a WordPress website, checking for vulnerable plugins and specifying the path to the `wp-content` directory: `wpscan --url {{url}} --enumerate {{vp}} --wp-content-dir {{remote/path/to/wp-content}}` -- Scan a Wordpress website through a proxy: +- Scan a WordPress website through a proxy: `wpscan --url {{url}} --proxy {{protocol://ip:port}} --proxy-auth {{username:password}}` -- Perform user identifiers enumeration on a Wordpress website: +- Perform user identifiers enumeration on a WordPress website: `wpscan --url {{url}} --enumerate {{u}}` -- Execute a password guessing attack on a Wordpress website: +- Execute a password guessing attack on a WordPress website: `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 (https://wpvulndb.com/): `wpscan --url {{url}} --api-token {{token}}` diff --git a/pages/common/wrangler.md b/pages/common/wrangler.md index 11f1d88b4105d2..5c1b40541f1b87 100644 --- a/pages/common/wrangler.md +++ b/pages/common/wrangler.md @@ -1,6 +1,6 @@ # wrangler -> Cloudflare Workers command line tool. +> Cloudflare Workers command-line tool. > More information: . - Initialize a project with a skeleton configuration: diff --git a/pages/common/write.md b/pages/common/write.md index eae6722bc6541b..6a7315d24ff950 100644 --- a/pages/common/write.md +++ b/pages/common/write.md @@ -2,6 +2,7 @@ > Write a message on the terminal of a specified logged in user (ctrl-C to stop writing messages). > Use the `who` command to find out all terminal_ids of all active users active on the system. See also `mesg`. +> More information: . - Send a message to a given user on a given terminal id: @@ -11,6 +12,6 @@ `write {{testuser}} {{tty/5}}` -- Send message to "jhondoe" on pseudo terminal `/dev/pts/5`: +- Send message to "johndoe" on pseudo terminal `/dev/pts/5`: -`write {{jhondoe}} {{pts/5}}` +`write {{johndoe}} {{pts/5}}` diff --git a/pages/common/x11docker.md b/pages/common/x11docker.md new file mode 100644 index 00000000000000..a23554a6d30770 --- /dev/null +++ b/pages/common/x11docker.md @@ -0,0 +1,25 @@ +# x11docker + +> Securely run GUI applications and desktop UIs in Docker containers. +> See also `xephyr`. +> More information: . + +- Launch VLC in a container: + +`x11docker --pulseaudio --share={{$HOME/Videos}} {{jess/vlc}}` + +- Launch Xfce in a window: + +`x11docker --desktop {{x11docker/xfce}}` + +- Launch GNOME in a window: + +`x11docker --desktop --gpu --init={{systemd}} {{x11docker/gnome}}` + +- Launch KDE Plasma in a window: + +`x11docker --desktop --gpu --init={{systemd}} {{x11docker/kde-plasma}}` + +- Display help: + +`x11docker --help` diff --git a/pages/common/xar.md b/pages/common/xar.md new file mode 100644 index 00000000000000..3c15003aee6d01 --- /dev/null +++ b/pages/common/xar.md @@ -0,0 +1,16 @@ +# xar + +> Manage .xar archives. +> More information: . + +- Create a xar archive of all files in a given directory: + +`xar -cf {{archive.xar}} {{path/to/directory}}` + +- List the contents of a given xar archive: + +`xar -tf {{archive.xar}}` + +- Extract the contents of a given xar archive to the current directory: + +`xar -xf {{archive.xar}}` diff --git a/pages/common/xargs.md b/pages/common/xargs.md index 58b68acd805478..bc6b754c143398 100644 --- a/pages/common/xargs.md +++ b/pages/common/xargs.md @@ -2,6 +2,7 @@ > Execute a command with piped arguments coming from another command, a file, etc. > The input is treated as a single block of text and split into separate pieces on spaces, tabs, newlines and end-of-file. +> More information: . - Run a command using the input data as arguments: diff --git a/pages/common/xdelta.md b/pages/common/xdelta.md new file mode 100644 index 00000000000000..067cadc5a0fea8 --- /dev/null +++ b/pages/common/xdelta.md @@ -0,0 +1,13 @@ +# xdelta + +> Delta encoding utility. +> Often used for applying patches to binary files. +> More information: . + +- Apply a patch: + +`xdelta -d -s {{path/to/input_file}} {{path/to/delta_file.xdelta}} {{path/to/output_file}}` + +- Create a patch: + +`xdelta -e -s {{path/to/old_file}} {{path/to/new_file}} {{path/to/output_file.xdelta}}` diff --git a/pages/common/xe.md b/pages/common/xe.md new file mode 100644 index 00000000000000..dfc3f841cd6d3a --- /dev/null +++ b/pages/common/xe.md @@ -0,0 +1,24 @@ +# xe + +> Execute a command once for each line piped from another command or file. +> More information: . + +- Run a command once for each line of input data as arguments: + +`{{arguments_source}} | xe {{command}}` + +- Execute the commands, replacing any occurrence of the placeholder (marked as `{}`) with the input line: + +`{{arguments_source}} | xe {{command}} {} {{optional_extra_arguments}}` + +- Execute a shellscript, joining every `N` lines into a single call: + +`echo -e 'a\nb' | xe -N{{2}} -s 'echo $2 $1'` + +- Delete all files with a `.backup` extension: + +`find . -name {{'*.backup'}} | xe rm -v` + +- Run up to `max-jobs` processes in parallel; the default is 1. If `max-jobs` is 0, xe will run as many processes as cpu cores: + +`{{arguments_source}} | xe -j {{max-jobs}} {{command}}` diff --git a/pages/common/xephyr.md b/pages/common/xephyr.md index 2a4e9fcbce5ae4..dcfdc87d107e9d 100644 --- a/pages/common/xephyr.md +++ b/pages/common/xephyr.md @@ -1,6 +1,7 @@ # Xephyr > A nested X server that runs as an X application. +> More information: . - Create a black window with display ID ":2": diff --git a/pages/common/xetex.md b/pages/common/xetex.md new file mode 100644 index 00000000000000..d37d6d56e2a5f0 --- /dev/null +++ b/pages/common/xetex.md @@ -0,0 +1,16 @@ +# xetex + +> Compile a PDF document from XeTeX source files. +> More information: . + +- Compile a PDF document: + +`xetex {{source.tex}}` + +- Compile a PDF document, specifying an output directory: + +`xetex -output-directory={{path/to/directory}} {{source.tex}}` + +- Compile a PDF document, exiting if errors occur: + +`xetex -halt-on-error {{source.tex}}` diff --git a/pages/common/xev.md b/pages/common/xev.md new file mode 100644 index 00000000000000..5de012bc29e139 --- /dev/null +++ b/pages/common/xev.md @@ -0,0 +1,20 @@ +# xev + +> Print contents of X events. +> More information: . + +- Monitor all occurring X events: + +`xev` + +- Monitor all X events of the root window instead of creating a new one: + +`xev -root` + +- Monitor all X events of a particular window: + +`xev -id {{window_id}}` + +- Monitor X events from a given category (can be specified multiple times): + +`xev -event {{event_category}}` diff --git a/pages/common/xidel.md b/pages/common/xidel.md new file mode 100644 index 00000000000000..b130b9151b59ef --- /dev/null +++ b/pages/common/xidel.md @@ -0,0 +1,36 @@ +# xidel + +> Download and extract data from HTML/XML pages as well as JSON APIs. +> More information: . + +- Print all URLs found by a Google search: + +`xidel {{https://www.google.com/search?q=test}} --extract "//a/extract(@href, 'url[?]q=([^&]+)&', 1)[. != '']"` + +- Print the title of all pages found by a Google search and download them: + +`xidel {{https://www.google.com/search?q=test}} --follow "{{//a/extract(@href, 'url[?]q=([^&]+)&', 1)[. != '']}}" --extract {{//title}} --download {{'{$host}/'}}` + +- Follow all links on a page and print the titles, with XPath: + +`xidel {{https://example.org}} --follow {{//a}} --extract {{//title}}` + +- Follow all links on a page and print the titles, with CSS selectors: + +`xidel {{https://example.org}} --follow "{{css('a')}}" --css {{title}}` + +- Follow all links on a page and print the titles, with pattern matching: + +`xidel {{https://example.org}} --follow "{{{.}*}}" --extract "{{{.}}}"` + +- Read the pattern from example.xml (which will also check if the element containing "ood" is there, and fail otherwise): + +`xidel {{path/to/example.xml}} --extract "{{ood{.}}}"` + +- Print all newest Stack Overflow questions with title and URL using pattern matching on their RSS feed: + +`xidel {{http://stackoverflow.com/feeds}} --extract "{{{title:=.}{uri:=@href}+}}"` + +- Check for unread Reddit mail, Webscraping, combining CSS, XPath, JSONiq, and automatically form evaluation: + +`xidel {{https://reddit.com}} --follow "{{form(css('form.login-form')[1], {'user': '$your_username', 'passwd': '$your_password'})}}" --extract "{{css('#mail')/@title}}"` diff --git a/pages/common/xkill.md b/pages/common/xkill.md index b2c9d72a874f8f..57f9572ddb6543 100644 --- a/pages/common/xkill.md +++ b/pages/common/xkill.md @@ -2,7 +2,12 @@ > Kill a window interactively in a graphical session. > See also `kill` and `killall`. +> More information: . - Display a cursor to kill a window when pressing the left mouse button (press any other mouse button to cancel): `xkill` + +- Display a cursor to select a window to kill by pressing any mouse button: + +`xkill -button any` diff --git a/pages/common/xml-canonic.md b/pages/common/xml-canonic.md new file mode 100644 index 00000000000000..92ccf0fc72cb07 --- /dev/null +++ b/pages/common/xml-canonic.md @@ -0,0 +1,20 @@ +# xml canonic + +> Make XML documents canonical. +> More information: . + +- Make an XML document canonical, preserving comments: + +`xml canonic {{path/to/input.xml|URI}} > {{path/to/output.xml}}` + +- Make an XML document canonical, removing comments: + +`xml canonic --without-comments {{path/to/input.xml|URI}} > {{path/to/output.xml}}` + +- Make XML exclusively canonical, using an XPATH from a file, preserving comments: + +`xml canonic --exc-with-comments {{path/to/input.xml|URI}} {{path/to/c14n.xpath}}` + +- Display help for the `canonic` subcommand: + +`xml canonic --help` diff --git a/pages/common/xml-depyx.md b/pages/common/xml-depyx.md new file mode 100644 index 00000000000000..2c54a1a845a6c7 --- /dev/null +++ b/pages/common/xml-depyx.md @@ -0,0 +1,16 @@ +# xml depyx + +> Convert a PYX (ESIS - ISO 8879) document to XML format. +> More information: . + +- Convert a PYX (ESIS - ISO 8879) document to XML format: + +`xml depyx {{path/to/input.pyx|URI}} > {{path/to/output.xml}}` + +- Convert a PYX document from `stdin` to XML format: + +`cat {{path/to/input.pyx}} | xml depyx > {{path/to/output.xml}}` + +- Display help for the `depyx` subcommand: + +`xml depyx --help` diff --git a/pages/common/xml-edit.md b/pages/common/xml-edit.md new file mode 100644 index 00000000000000..338b71a37e2981 --- /dev/null +++ b/pages/common/xml-edit.md @@ -0,0 +1,28 @@ +# xml edit + +> Edit an XML document. +> More information: . + +- Delete elements matching an XPATH from an XML document: + +`xml edit --delete "{{XPATH1}}" {{path/to/input.xml|URI}}` + +- Move an element node of an XML document from XPATH1 to XPATH2: + +`xml edit --move "{{XPATH1}}" "{{XPATH2}}" {{path/to/input.xml|URI}}` + +- Rename all attributes named "id" to "ID": + +`xml edit --rename "{{//*/@id}}" -v "{{ID}}" {{path/to/input.xml|URI}}` + +- Rename sub-elements of the element "table" that are named "rec" to "record": + +`xml edit --rename "{{/xml/table/rec}}" -v "{{record}}" {{path/to/input.xml|URI}}` + +- Update the XML table record with "id=3" to the value "id=5": + +`xml edit --update "{{xml/table/rec[@id=3]/@id}}" -v {{5}} {{path/to/input.xml|URI}}` + +- Display help for the `edit` subcommand: + +`xml edit --help` diff --git a/pages/common/xml-elements.md b/pages/common/xml-elements.md new file mode 100644 index 00000000000000..c0a09a8efb7f82 --- /dev/null +++ b/pages/common/xml-elements.md @@ -0,0 +1,28 @@ +# xml elements + +> Extract elements and display the structure of an XML document. +> More information: . + +- Extract elements from an XML document (producing XPATH expressions): + +`xml elements {{path/to/input.xml|URI}} > {{path/to/elements.xpath}}` + +- Extract elements and their attributes from an XML document: + +`xml elements -a {{path/to/input.xml|URI}} > {{path/to/elements.xpath}}` + +- Extract elements and their attributes and values from an XML document: + +`xml elements -v {{path/to/input.xml|URI}} > {{path/to/elements.xpath}}` + +- Print sorted unique elements from an XML document to see its structure: + +`xml elements -u {{path/to/input.xml|URI}}` + +- Print sorted unique elements from an XML document up to a depth of 3: + +`xml elements -d{{3}} {{path/to/input.xml|URI}}` + +- Display help for the `elements` subcommand: + +`xml elements --help` diff --git a/pages/common/xml-escape.md b/pages/common/xml-escape.md new file mode 100644 index 00000000000000..7bd4a9f9610d53 --- /dev/null +++ b/pages/common/xml-escape.md @@ -0,0 +1,16 @@ +# xml escape + +> Escape special XML characters, e.g. `` → `<a1>`. +> More information: . + +- Escape special XML characters in a string: + +`xml escape "{{}}"` + +- Escape special XML characters from `stdin`: + +`echo "{{}}" | xml escape` + +- Display help for the `escape` subcommand: + +`xml escape --help` diff --git a/pages/common/xml-format.md b/pages/common/xml-format.md new file mode 100644 index 00000000000000..c824086626e54e --- /dev/null +++ b/pages/common/xml-format.md @@ -0,0 +1,28 @@ +# xml format + +> Format an XML document. +> More information: . + +- Format an XML document, indenting with tabs: + +`xml format --indent-tab {{path/to/input.xml|URI}} > {{path/to/output.xml}}` + +- Format an HTML document, indenting with 4 spaces: + +`xml format --html --indent-spaces {{4}} {{path/to/input.html|URI}} > {{path/to/output.html}}` + +- Recover parsable parts of a malformed XML document, without indenting: + +`xml format --recover --noindent {{path/to/malformed.xml|URI}} > {{path/to/recovered.xml}}` + +- Format an XML document from `stdin`, removing the `DOCTYPE` declaration: + +`cat {{path\to\input.xml}} | xml format --dropdtd > {{path/to/output.xml}}` + +- Format an XML document, omitting the XML declaration: + +`xml format --omit-decl {{path\to\input.xml|URI}} > {{path/to/output.xml}}` + +- Display help for the `format` subcommand: + +`xml format --help` diff --git a/pages/common/xml-list.md b/pages/common/xml-list.md new file mode 100644 index 00000000000000..38548d20e7aa6d --- /dev/null +++ b/pages/common/xml-list.md @@ -0,0 +1,16 @@ +# xml list + +> List a directory's contents (like `ls`) in XML format. +> More information: . + +- Write the current directory's listing to an XML document: + +`xml list > {{path/to/dir_list.xml}}` + +- Write the specified directory's listing to an XML document: + +`xml list {{path/to/directory}} > {{path/to/dir_list.xml}}` + +- Display help for the `list` subcommand: + +`xml list --help` diff --git a/pages/common/xml-pyx.md b/pages/common/xml-pyx.md new file mode 100644 index 00000000000000..0b67115d197cff --- /dev/null +++ b/pages/common/xml-pyx.md @@ -0,0 +1,16 @@ +# xml pyx + +> Convert an XML document to PYX (ESIS - ISO 8879) format. +> More information: . + +- Convert an XML document to PYX format: + +`xml pyx {{path/to/input.xml|URI}} > {{path/to/output.pyx}}` + +- Convert an XML document from `stdin` to PYX format: + +`cat {{path/to/input.xml}} | xml pyx > {{path/to/output.pyx}}` + +- Display help for the `pyx` subcommand: + +`xml pyx --help` diff --git a/pages/common/xml-select.md b/pages/common/xml-select.md new file mode 100644 index 00000000000000..321e2827c595a0 --- /dev/null +++ b/pages/common/xml-select.md @@ -0,0 +1,25 @@ +# xml select + +> Select from XML documents using XPATHs. +> Tip: use `xml elements` to display the XPATHs of an XML document. +> More information: . + +- Select all elements matching "XPATH1" and print the value of their sub-element "XPATH2": + +`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: + +`xml select --text --template --match "{{XPATH1}}" --value-of "{{XPATH2}}" --nl {{path/to/input.xml|URI}}` + +- Count the elements of "XPATH1": + +`xml select --template --value-of "count({{XPATH1}})" {{path/to/input.xml|URI}}` + +- Count all nodes in one or more XML documents: + +`xml select --text --template --inp-name --output " " --value-of "count(node())" --nl {{path/to/input1.xml|URI}} {{path/to/input2.xml|URI}}` + +- Display help for the `select` subcommand: + +`xml select --help` diff --git a/pages/common/xml-transform.md b/pages/common/xml-transform.md new file mode 100644 index 00000000000000..cf8ec5fd6a6aa4 --- /dev/null +++ b/pages/common/xml-transform.md @@ -0,0 +1,12 @@ +# xml transform + +> Transform XML documents using XSLT. +> More information: . + +- Transform an XML document using an XSL stylesheet, passing one XPATH parameter and one literal string parameter: + +`xml transform {{path/to/stylesheet.xsl}} -p "{{Count='count(/xml/table/rec)'}}" -s {{Text="Count="}} {{path/to/input.xml|URI}}` + +- Display help for the `transform` subcommand: + +`xml transform --help` diff --git a/pages/common/xml-unescape.md b/pages/common/xml-unescape.md new file mode 100644 index 00000000000000..78158b1ec1a200 --- /dev/null +++ b/pages/common/xml-unescape.md @@ -0,0 +1,16 @@ +# xml unescape + +> Unescape special XML characters, e.g. `<a1>` → ``. +> More information: . + +- Unescape special XML characters from a string: + +`xml unescape "{{<a1>}}"` + +- Unescape special XML characters from `stdin`: + +`echo "{{<a1>}}" | xml unescape` + +- Display help for the `unescape` subcommand: + +`xml escape --help` diff --git a/pages/common/xml-validate.md b/pages/common/xml-validate.md new file mode 100644 index 00000000000000..8e3938433f1846 --- /dev/null +++ b/pages/common/xml-validate.md @@ -0,0 +1,24 @@ +# xml validate + +> Validate XML documents. +> More information: . + +- Validate one or more XML documents for well-formedness only: + +`xml validate {{path/to/input1.xml|URI}} {{input2.xml ...}}` + +- Validate one or more XML documents against a Document Type Definition (DTD): + +`xml validate --dtd {{path/to/schema.dtd}} {{path/to/input1.xml|URI}} {{input2.xml ...}}` + +- Validate one or more XML documents against an XML Schema Definition (XSD): + +`xml validate --xsd {{path/to/schema.xsd}} {{path/to/input1.xml|URI}} {{input2.xml ...}}` + +- Validate one or more XML documents against a Relax NG schema (RNG): + +`xml validate --relaxng {{path/to/schema.rng}} {{path/to/input1.xml|URI}} {{input2.xml ...}}` + +- Display help for the `validate` subcommand: + +`xml validate --help` diff --git a/pages/common/xml.md b/pages/common/xml.md new file mode 100644 index 00000000000000..11aab2ad74438e --- /dev/null +++ b/pages/common/xml.md @@ -0,0 +1,29 @@ +# xml + +> XMLStarlet Toolkit: Query, edit, check, convert and transform XML documents. +> This command also has documentation about its subcommands, e.g. `xml validate`. +> More information: . + +- Display general help, including the list of subcommands: + +`xml --help` + +- Execute a subcommand with input from a file or URI, printing to `stdout`: + +`xml {{subcommand}} {{options}} {{path/to/input.xml|URI}}` + +- Execute a subcommand using `stdin` and `stdout`: + +`xml {{subcommand}} {{options}}` + +- Execute a subcommand with input from a file or URI and output to a file: + +`xml {{subcommand}} {{options}} {{path/to/input.xml|URI}} > {{path/to/output}}` + +- Display help for a subcommand: + +`xml {{subcommand}} --help` + +- Display the version of the XMLStarlet Toolkit: + +`xml --version` diff --git a/pages/common/xmllint.md b/pages/common/xmllint.md index 8dbb2767a97fb8..da079729c02220 100644 --- a/pages/common/xmllint.md +++ b/pages/common/xmllint.md @@ -1,6 +1,7 @@ # xmllint > XML parser and linter that supports XPath, a syntax for navigating XML trees. +> More information: . - Return all nodes (tags) named "foo": @@ -10,7 +11,7 @@ `xmllint --xpath "string(//{{foo}})" {{source_file.xml}}` -- Return the href attribute of the second anchor element in an html file: +- Return the href attribute of the second anchor element in an HTML file: `xmllint --html --xpath "string(//a[2]/@href)" webpage.xhtml` @@ -18,7 +19,7 @@ `xmllint --format {{source_file.xml}}` -- Check that a XML file meets the requirements of its DOCTYPE declaration: +- Check that an XML file meets the requirements of its DOCTYPE declaration: `xmllint --valid {{source_file.xml}}` diff --git a/pages/common/xplr.md b/pages/common/xplr.md new file mode 100644 index 00000000000000..eb56366ccf4f72 --- /dev/null +++ b/pages/common/xplr.md @@ -0,0 +1,20 @@ +# xplr + +> Terminal-based file system explorer. +> More information: . + +- Open a directory: + +`xplr {{path/to/directory}}` + +- Focus on a file: + +`xplr {{path/to/file}}` + +- Focus on a directory: + +`xplr --force-focus {{path/to/directory}}` + +- Open a directory with specific files or directories selected: + +`xplr {{path/to/directory}} {{path/to/selected_file_or_directory1}} {{path/to/selected_file_or_directory2}}` diff --git a/pages/common/xprop.md b/pages/common/xprop.md new file mode 100644 index 00000000000000..901eced6e5a38f --- /dev/null +++ b/pages/common/xprop.md @@ -0,0 +1,20 @@ +# xprop + +> A tool for displaying window and font properties in an X server. +> More information: . + +- Display the name of the root window: + +`xprop -root WM_NAME` + +- Display the window manager hints for a window: + +`xprop -name "{{window_name}}" WM_HINTS` + +- Display the point size of a font: + +`xprop -font "{{font_name}}" POINT_SIZE` + +- Display all the properties of the window with the id 0x200007: + +`xprop -id {{0x200007}}` diff --git a/pages/common/xsv.md b/pages/common/xsv.md index fb4586d9bdd598..941291fb19e74c 100644 --- a/pages/common/xsv.md +++ b/pages/common/xsv.md @@ -1,6 +1,6 @@ # xsv -> A CSV command line toolkit written in Rust. +> A CSV command-line toolkit written in Rust. > More information: . - Inspect the headers of a file: diff --git a/pages/common/xxd.md b/pages/common/xxd.md index 337607475006f5..3bf94beeea9775 100644 --- a/pages/common/xxd.md +++ b/pages/common/xxd.md @@ -1,6 +1,7 @@ # xxd > Create a hexadecimal representation (hexdump) from a binary file, or vice-versa. +> More information: . - Generate a hexdump from a binary file and display the output: diff --git a/pages/common/xz.md b/pages/common/xz.md index f0cca6e5ee58c2..4a73aaf1215cb1 100644 --- a/pages/common/xz.md +++ b/pages/common/xz.md @@ -5,32 +5,32 @@ - Compress a file to the xz file format: -`xz {{file}}` +`xz {{path/to/file}}` - Decompress a xz file: `xz -d {{file.xz}}` -- Compress a file to the lzma file format: +- Compress a file to the LZMA file format: -`xz --format=lzma {{file}}` +`xz --format={{lzma}} {{path/to/file}}` -- Decompress an lzma file: +- Decompress an LZMA file: -`xz -d --format=lzma {{file.lzma}}` +`xz -d --format={{lzma}} {{file.lzma}}` -- Decompress a file and write to stdout: +- Decompress a file and write to `stdout`: `xz -dc {{file.xz}}` - Compress a file, but don't delete the original: -`xz -k {{file}}` +`xz -k {{path/to/file}}` - Compress a file using the fastest compression: -`xz -0 {{file}}` +`xz -0 {{path/to/file}}` - Compress a file using the best compression: -`xz -9 {{file}}` +`xz -9 {{path/to/file}}` diff --git a/pages/common/xzcat.md b/pages/common/xzcat.md new file mode 100644 index 00000000000000..0de0332ba74fa3 --- /dev/null +++ b/pages/common/xzcat.md @@ -0,0 +1,8 @@ +# xzcat + +> This command is an alias of `xz --decompress --stdout`. +> More information: . + +- View documentation for the original command: + +`tldr xz` diff --git a/pages/common/xzcmp.md b/pages/common/xzcmp.md new file mode 100644 index 00000000000000..07632a649c665b --- /dev/null +++ b/pages/common/xzcmp.md @@ -0,0 +1,8 @@ +# xzcmp + +> Compare compressed files. +> 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 new file mode 100644 index 00000000000000..d494df03c46e8c --- /dev/null +++ b/pages/common/xzdiff.md @@ -0,0 +1,29 @@ +# xzdiff + +> Invokes the diff command on files compressed with xz, lzma, gzip, bzip2, lzop, or zstd. +> All options specified are passed directly to diff. +> More information: . + +- Compare files: + +`xzdiff {{path/to/file1}} {{path/to/file2}}` + +- Compare files, showing the differences side by side: + +`xzdiff --side-by-side {{path/to/file1}} {{path/to/file2}}` + +- Compare files and report only that they differ (no details on what is different): + +`xzdiff --brief {{path/to/file1}} {{path/to/file2}}` + +- Compare files and report when the files are the same: + +`xzdiff --report-identical-files {{path/to/file1}} {{path/to/file2}}` + +- 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/xzgrep.md b/pages/common/xzgrep.md new file mode 100644 index 00000000000000..cb797bb7fa73d7 --- /dev/null +++ b/pages/common/xzgrep.md @@ -0,0 +1,33 @@ +# xzgrep + +> Search possibly compressed files with xz, lzma, gzip, bzip2, lzop, or zstd for regular expressions. +> See also: `grep`. +> More information: . + +- Search for a pattern within a file: + +`xzgrep "{{search_pattern}}" {{path/to/compressed/file}}` + +- Search for an exact string (disables regular expressions): + +`xzgrep --fixed-strings "{{exact_string}}" {{path/to/compressed/file}}` + +- Search for a pattern in all files showing line numbers of matches: + +`xzgrep --line-number "{{search_pattern}}" {{path/to/compressed/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 new file mode 100644 index 00000000000000..fb83766f8ace5a --- /dev/null +++ b/pages/common/xzless.md @@ -0,0 +1,9 @@ +# xzless + +> Display text from `.xz` and `.lzma` files. +> See also: `less`. +> More information: . + +- Open a compressed file: + +`xzless {{path/to/archive.xz}}` diff --git a/pages/common/yacas.md b/pages/common/yacas.md new file mode 100644 index 00000000000000..5c54790b1f9cdd --- /dev/null +++ b/pages/common/yacas.md @@ -0,0 +1,28 @@ +# yacas + +> Yet Another Computer Algebra System. +> More information: . + +- Start an interactive `yacas` session: + +`yacas` + +- While in a `yacas` session, execute a statement: + +`{{Integrate(x)Cos(x)}};` + +- While in a `yacas` session, display an example: + +`{{Example()}};` + +- Quit from a `yacas` session: + +`{{quit}}` + +- Execute one or more `yacas` scripts (without terminal or prompts), then exit: + +`yacas -p -c {{path/to/script1}} {{path/to/script2}}` + +- Execute and print the result of one statement, then exit: + +`echo "{{Echo( Deriv(x)Cos(1/x) );}}" | yacas -p -c /dev/stdin` diff --git a/pages/common/yank.md b/pages/common/yank.md new file mode 100644 index 00000000000000..9917069e6fd18d --- /dev/null +++ b/pages/common/yank.md @@ -0,0 +1,20 @@ +# yank + +> Read input from `stdin` and display a selection interface that allows a field to be selected and copied to the clipboard. +> More information: . + +- Yank using the default delimiters (\f, \n, \r, \s, \t): + +`{{sudo dmesg}} | yank` + +- Yank an entire line: + +`{{sudo dmesg}} | yank -l` + +- Yank using a specific delimiter: + +`{{echo hello=world}} | yank -d {{=}}` + +- Only yank fields matching a specific pattern: + +`{{ps ux}} | yank -g "{{[0-9]+}}"` diff --git a/pages/common/yarn-why.md b/pages/common/yarn-why.md index 2700f22e956410..2c005e37e87d64 100644 --- a/pages/common/yarn-why.md +++ b/pages/common/yarn-why.md @@ -1,7 +1,7 @@ # yarn-why > Identifies why a Yarn package has been installed. -> More information: . +> More information: . - Show why a Yarn package is installed: diff --git a/pages/common/ybacklight.md b/pages/common/ybacklight.md new file mode 100644 index 00000000000000..a0c2600edfb533 --- /dev/null +++ b/pages/common/ybacklight.md @@ -0,0 +1,20 @@ +# ybacklight + +> Manage screen backlight brightness. See also `xbacklight`. +> More information: . + +- Print current brightness and maximal brightness, shortened and separated by a slash: + +`ybacklight Sc/Sm` + +- Set the brightness to 420: + +`ybacklight s{{420}}` + +- Increase the brightness by 42 big steps (4200 by default): + +`ybacklight Si{{42}}` + +- Decrease the brightness by 300: + +`ybacklight d{{300}}` diff --git a/pages/common/yesod.md b/pages/common/yesod.md index bef5b36dde9fdb..27020361833823 100644 --- a/pages/common/yesod.md +++ b/pages/common/yesod.md @@ -4,7 +4,7 @@ > All Yesod commands are invoked through the `stack` project manager. > More information: . -- Create a new scaffolded site, with sqlite as backend, in the `my-project` directory: +- Create a new scaffolded site, with SQLite as backend, in the `my-project` directory: `stack new {{my-project}} {{yesod-sqlite}}` diff --git a/pages/common/ykinfo.md b/pages/common/ykinfo.md new file mode 100644 index 00000000000000..deecae711d32a7 --- /dev/null +++ b/pages/common/ykinfo.md @@ -0,0 +1,16 @@ +# ykinfo + +> Get basic information from a YubiKey. +> More information: . + +- Display all information from YubiKey: + +`ykinfo -a` + +- Get only serial in decimal from YubiKey: + +`ykinfo -s -q` + +- Get capabilities from YubiKey: + +`ykinfo -c` diff --git a/pages/common/ykman.md b/pages/common/ykman.md new file mode 100644 index 00000000000000..3ae4c96d6ad4b3 --- /dev/null +++ b/pages/common/ykman.md @@ -0,0 +1,20 @@ +# ykman + +> The YubiKey Manager can be used to configure all aspects of the YubiKey. +> More information: . + +- Get information from YubiKey: + +`ykman info` + +- Get information for a given application from YubiKey: + +`ykman {{fido|oath|openpgp|otp|piv}} info` + +- Get a list of enabled applications over NFC from YubiKey: + +`ykman config nfc --list` + +- Enable application over USB on YubiKey: + +`ykman config usb --enable {{OTP|U2F|FIDO2|OATH|PIV|OPENPGP|HSMAUTH}}` diff --git a/pages/common/yolo.md b/pages/common/yolo.md new file mode 100644 index 00000000000000..c65b1f4d69b1c3 --- /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/you-get.md b/pages/common/you-get.md new file mode 100644 index 00000000000000..e6dec4a8ae0c68 --- /dev/null +++ b/pages/common/you-get.md @@ -0,0 +1,24 @@ +# you-get + +> Download media contents (videos, audios, images) from the Web. +> More information: . + +- Print media information about a specific media on the web: + +`you-get --info {{https://example.com/video?id=value}}` + +- Download a media from a specific URL: + +`you-get {{https://example.com/video?id=value}}` + +- Search on Google Videos and download: + +`you-get {{keywords}}` + +- Download a media to a specific location: + +`you-get --output-dir {{path/to/directory}} --output-filename {{filename}} {{https://example.com/watch?v=value}}` + +- Download a media using a proxy: + +`you-get --http-proxy {{proxy_server}} {{https://example.com/watch?v=value}}` diff --git a/pages/common/youtube-dl.md b/pages/common/youtube-dl.md index 8178bbf612dd5e..9aa3ee7e30cb08 100644 --- a/pages/common/youtube-dl.md +++ b/pages/common/youtube-dl.md @@ -25,12 +25,12 @@ - Download video(s) as MP4 files with custom filenames: -`youtube-dl --format {{mp4}} -o "{{%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s}}" '{{url}}'` +`youtube-dl --format {{mp4}} -o "{{%(playlist_index)s-%(title)s by %(uploader)s on %(upload_date)s in %(playlist)s.%(ext)s}}" '{{url}}'` - Download a particular language's subtitles along with the video: `youtube-dl --sub-lang {{en}} --write-sub '{{https://www.youtube.com/watch?v=Mwa0_nE9H7A}}'` -- Download a playlist and extract mp3 from it: +- Download a playlist and extract MP3s from it: `youtube-dl -f "bestaudio" --continue --no-overwrites --ignore-errors --extract-audio --audio-format mp3 -o "%(title)s.%(ext)s" {{url_to_playlist}}` diff --git a/pages/common/youtube-viewer.md b/pages/common/youtube-viewer.md index 184e10cb146e22..7d4b0197402095 100644 --- a/pages/common/youtube-viewer.md +++ b/pages/common/youtube-viewer.md @@ -7,7 +7,7 @@ `youtube-viewer {{search_term}}` -- Login to your YouTube account: +- Log in to your YouTube account: `youtube-viewer --login` diff --git a/pages/common/yq.md b/pages/common/yq.md index 83ddf3ab1d4adb..bd32fe6370a6ea 100644 --- a/pages/common/yq.md +++ b/pages/common/yq.md @@ -27,10 +27,10 @@ `yq write --inplace {{path/to/file.yaml}} '{{key}}' '{{value}}'` -- Merge two files and print to stdout (v4+): +- Merge two files and print to `stdout` (v4+): `yq eval-all 'select(filename == "{{path/to/file1.yaml}}") * select(filename == "{{path/to/file2.yaml}}")' {{path/to/file1.yaml}} {{path/to/file2.yaml}}` -- Merge two files and print to stdout (v3): +- Merge two files and print to `stdout` (v3): `yq merge {{path/to/file1.yaml}} {{path/to/file2.yaml}} --colors` diff --git a/pages/common/yt-dlp.md b/pages/common/yt-dlp.md new file mode 100644 index 00000000000000..d560237a4b091f --- /dev/null +++ b/pages/common/yt-dlp.md @@ -0,0 +1,37 @@ +# yt-dlp + +> A youtube-dl fork with additional features and fixes. +> Download videos from YouTube and other websites. +> More information: . + +- Download a video or playlist (with the default options from command below): + +`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 a video (requires ffmpeg or ffprobe): + +`yt-dlp --extract-audio "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"` + +- 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}}"` + +- Download all playlists of YouTube channel/user keeping each playlist in separate directory: + +`yt-dlp -o "{{%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s}}" "{{https://www.youtube.com/user/TheLinuxFoundation/playlists}}"` + +- Download Udemy course keeping each chapter in separate directory under MyVideos directory in your home: + +`yt-dlp -u {{user}} -p {{password}} -P "{{~/MyVideos}}" -o "{{%(playlist)s/%(chapter_number)s - %(chapter)s/%(title)s.%(ext)s}}" "{{https://www.udemy.com/java-tutorial}}"` + +- Download entire series season keeping each series and each season in separate directory under C:/MyVideos: + +`yt-dlp -P "{{C:/MyVideos}}" -o "{{%(series)s/%(season_number)s - %(season)s/%(episode_number)s - %(episode)s.%(ext)s}}" "{{https://videomore.ru/kino_v_detalayah/5_sezon/367617}}"` diff --git a/pages/common/z.md b/pages/common/z.md index badd1f2d308be5..ed5d4af1ef4728 100644 --- a/pages/common/z.md +++ b/pages/common/z.md @@ -1,6 +1,6 @@ # z -> Tracks the most used (by frecency) directories and enables quickly navigating to them using string or regex patterns. +> Tracks the most used (by frecency) directories and enables quickly navigating to them using string patterns or regular expressions. > More information: . - Go to a directory that contains "foo" in the name: diff --git a/pages/common/zcat.md b/pages/common/zcat.md index 4b0d7aec3851f6..374413b94fa523 100644 --- a/pages/common/zcat.md +++ b/pages/common/zcat.md @@ -1,6 +1,7 @@ # zcat > Print data from gzip compressed files. +> More information: . - Print the uncompressed contents of a gzipped file to the standard output: diff --git a/pages/common/zcmp.md b/pages/common/zcmp.md new file mode 100644 index 00000000000000..44ef885d139842 --- /dev/null +++ b/pages/common/zcmp.md @@ -0,0 +1,12 @@ +# zcmp + +> Compare compressed files. +> More information: . + +- Invoke `cmp` on two files compressed via `gzip`: + +`zcmp {{path/to/file1.gz}} {{path/to/file2.gz}}` + +- Compare a file to its gzipped version (assuming `.gz` exists already): + +`zcmp {{path/to/file}}` diff --git a/pages/common/zdb.md b/pages/common/zdb.md index a1726c8362fbdf..163f7e9468ef5c 100644 --- a/pages/common/zdb.md +++ b/pages/common/zdb.md @@ -1,6 +1,7 @@ # zdb > ZFS debugger. +> More information: . - Show detailed configuration of all mounted ZFS zpools: diff --git a/pages/common/zdiff.md b/pages/common/zdiff.md new file mode 100644 index 00000000000000..72e5e3c9bbd481 --- /dev/null +++ b/pages/common/zdiff.md @@ -0,0 +1,12 @@ +# zdiff + +> Invoke `diff` on gzipped files. +> More information: . + +- Compare two files, uncompressing them if necessary: + +`zdiff {{path/to/file1.gz}} {{path/to/file2.gz}}` + +- Compare a file to a gzipped archive with the same name: + +`zdiff {{path/to/file}}` diff --git a/pages/common/zeek.md b/pages/common/zeek.md index 0e6f2b5e7f5899..c34be6e8fbf9c2 100644 --- a/pages/common/zeek.md +++ b/pages/common/zeek.md @@ -1,6 +1,6 @@ # zeek -> Passive network traffic analyser. +> Passive network traffic analyzer. > Any output and log files will be saved to the current working directory. > More information: . diff --git a/pages/common/zegrep.md b/pages/common/zegrep.md new file mode 100644 index 00000000000000..820cb4326010f6 --- /dev/null +++ b/pages/common/zegrep.md @@ -0,0 +1,28 @@ +# zegrep + +> Find extended regular expression patterns in compressed files using `egrep`. +> More information: . + +- Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-sensitive): + +`zegrep "{{search_pattern}}" {{path/to/file}}` + +- Search for extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`) in a compressed file (case-insensitive): + +`zegrep --ignore-case "{{search_pattern}}" {{path/to/file}}` + +- Search for lines that do not match a pattern: + +`zegrep --invert-match "{{search_pattern}}" {{path/to/file}}` + +- Print file name and line number for each match: + +`zegrep --with-filename --line-number "{{search_pattern}}" {{path/to/file}}` + +- Search for lines matching a pattern, printing only the matched text: + +`zegrep --only-matching "{{search_pattern}}" {{path/to/file}}` + +- Recursively search files in a compressed file for a pattern: + +`zegrep --recursive "{{search_pattern}}" {{path/to/file}}` diff --git a/pages/common/zek.md b/pages/common/zek.md new file mode 100644 index 00000000000000..8acfea324b8e4b --- /dev/null +++ b/pages/common/zek.md @@ -0,0 +1,16 @@ +# zek + +> Generate a Go struct from XML. +> More information: . + +- Generate a Go struct from a given XML from `stdin` and display output on `stdout`: + +`cat {{path/to/input.xml}} | zek` + +- Generate a Go struct from a given XML from `stdin` and send output to a file: + +`curl -s {{https://url/to/xml}} | zek -o {{path/to/output.go}}` + +- Generate an example Go program from a given XML from `stdin` and send output to a file: + +`cat {{path/to/input.xml}} | zek -p -o {{path/to/output.go}}` diff --git a/pages/common/zellij.md b/pages/common/zellij.md new file mode 100644 index 00000000000000..9c74aac739595c --- /dev/null +++ b/pages/common/zellij.md @@ -0,0 +1,25 @@ +# zellij + +> Terminal multiplexer with batteries included. +> See also `tmux` and `screen`. +> More information: . + +- Start a new named session: + +`zellij --session {{name}}` + +- List existing sessions: + +`zellij list-sessions` + +- Attach to the most recently used session: + +`zellij attach` + +- Open a new pane (inside a zellij session): + +`Alt + N` + +- Detach from the current session (inside a zellij session): + +`Ctrl + N, D` diff --git a/pages/common/zfgrep.md b/pages/common/zfgrep.md new file mode 100644 index 00000000000000..ca6299cc781cc8 --- /dev/null +++ b/pages/common/zfgrep.md @@ -0,0 +1,25 @@ +# zfgrep + +> Matches fixed strings in possibly compressed files. +> Equivalent to `grep -F` with input decompressed first if necessary. +> More information: . + +- Search for an exact string in a file: + +`zfgrep {{search_string}} {{path/to/file}}` + +- Count the number of lines that match the given string in a file: + +`zfgrep --count {{search_string}} {{path/to/file}}` + +- Show the line number in the file along with the matching lines: + +`zfgrep --line-number {{search_string}} {{path/to/file}}` + +- Display all lines except those that contain the search string: + +`zfgrep --invert-match {{search_string}} {{path/to/file}}` + +- List only filenames whose content matches the search string at least once: + +`zfgrep --files-with-matches {{search_string}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/common/zfs.md b/pages/common/zfs.md index a38734340749de..0a7347c48273d1 100644 --- a/pages/common/zfs.md +++ b/pages/common/zfs.md @@ -1,6 +1,7 @@ # zfs > Manage ZFS filesystems. +> More information: . - List all available zfs filesystems: diff --git a/pages/linux/zgrep.md b/pages/common/zgrep.md similarity index 90% rename from pages/linux/zgrep.md rename to pages/common/zgrep.md index 1d7a89918178cb..143964054fb89a 100644 --- a/pages/linux/zgrep.md +++ b/pages/common/zgrep.md @@ -1,6 +1,7 @@ # zgrep > Grep text patterns from files within compressed file (equivalent to grep -Z). +> More information: . - Grep a pattern in a compressed file (case-sensitive): @@ -24,7 +25,7 @@ - Use extended regular expressions (supporting `?`, `+`, `{}`, `()` and `|`): -`zgrep -E {{^regex$}} {{path/to/file}}` +`zgrep -E {{regular_expression}} {{path/to/file}}` - Print 3 lines of [C]ontext around, [B]efore, or [A]fter each match: diff --git a/pages/common/zig.md b/pages/common/zig.md new file mode 100644 index 00000000000000..42b43439b44c2a --- /dev/null +++ b/pages/common/zig.md @@ -0,0 +1,36 @@ +# zig + +> The Zig compiler and toolchain. +> More information: . + +- Compile the project in the current directory: + +`zig build` + +- Compile and run the project in the current directory: + +`zig build run` + +- Initialize a `zig build` application: + +`zig init-exe` + +- Initialize a `zig build` library: + +`zig init-lib` + +- Create and run a test build: + +`zig test {{path/to/file.zig}}` + +- Reformat Zig source into canonical form: + +`zig fmt {{path/to/file.zig}}` + +- Use Zig as a drop-in C compiler: + +`zig cc {{path/to/file.c}}` + +- Use Zig as a drop-in C++ compiler: + +`zig c++ {{path/to/file.cpp}}` diff --git a/pages/common/zip.md b/pages/common/zip.md index 5d78d3b4428d07..5df8e650831b4c 100644 --- a/pages/common/zip.md +++ b/pages/common/zip.md @@ -1,35 +1,33 @@ # zip > Package and compress (archive) files into zip file. +> See also: `unzip`. +> More information: . -- Package and compress files and directories [r]ecursively: +- Add files/directories to a specific archive ([r]ecursively): -`zip -r {{compressed.zip}} {{path/to/file}} {{path/to/directory1}} {{path/to/directory2}}` +`zip -r {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- E[x]clude unwanted files from being added to the compressed archive: +- Remove files/directories from a specific archive ([d]elete): -`zip -r {{compressed.zip}} {{path/to/directory}} -x {{path/to/exclude}}` +`zip -d {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Archive a directory and its contents with the highest level [9] of compression: +- Archive files/directories e[x]cluding specified ones: -`zip -r -{{9}} {{compressed.zip}} {{path/to/directory}}` +`zip -r {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} -x {{path/to/excluded_files_or_directories}}` -- Create an encrypted archive (user will be prompted for a password): +- Archive files/directories with a specific compression level (`0` - the lowest, `9` - the highest): -`zip -e -r {{compressed.zip}} {{path/to/directory}}` +`zip -r -{{0-9}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Add files to an existing zip file: +- Create an [e]ncrypted archive with a specific password: -`zip {{compressed.zip}} {{path/to/file}}` +`zip -r -e {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Delete files from an existing zip file: +- Archive files/directories to a multi-part [s]plit zip file (e.g. 3 GB parts): -`zip -d {{compressed.zip}} "{{foo/*.tmp}}"` +`zip -r -s {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` -- Archive a directory and its contents to a multi-part [s]plit zip file (e.g. 3GB parts): +- Print a specific archive contents: -`zip -r -s {{3g}} {{compressed.zip}} {{path/to/directory}}` - -- List files within a specified archive (without extracting them): - -`zip -sf {{compressed.zip}}` +`zip -sf {{path/to/compressed.zip}}` diff --git a/pages/common/zip2john.md b/pages/common/zip2john.md new file mode 100644 index 00000000000000..47193b74323d40 --- /dev/null +++ b/pages/common/zip2john.md @@ -0,0 +1,17 @@ +# zip2john + +> A tool to extract password hashes from zip files for use with John the Ripper password cracker. +> This is a utility tool usually installed as part of the John the Ripper installation. +> More information: . + +- Extract the password hash from an archive, listing all files in the archive: + +`zip2john {{path/to/file.zip}}` + +- Extract the password hash using [o]nly a specific compressed file: + +`zip2john -o {{path/to/compressed_file}} {{path/to/file.zip}}` + +- Extract the password hash from a compressed file to a specific file (for use with John the Ripper): + +`zip2john -o {{path/to/compressed_file}} {{path/to/file.zip}} > {{file.hash}}` diff --git a/pages/common/zipgrep.md b/pages/common/zipgrep.md new file mode 100644 index 00000000000000..a853008572de56 --- /dev/null +++ b/pages/common/zipgrep.md @@ -0,0 +1,24 @@ +# zipgrep + +> Find patterns in files in a ZIP archive using extended regular expression (supports `?`, `+`, `{}`, `()` and `|`). +> More information: . + +- Search for a pattern within a ZIP archive: + +`zipgrep "{{search_pattern}}" {{path/to/file.zip}}` + +- Print file name and line number for each match: + +`zipgrep -H -n "{{search_pattern}}" {{path/to/file.zip}}` + +- Search for lines that do not match a pattern: + +`zipgrep -v "{{search_pattern}}" {{path/to/file.zip}}` + +- Specify files inside a ZIP archive from search: + +`zipgrep "{{search_pattern}}" {{path/to/file.zip}} {{file/to/search1}} {{file/to/search2}}` + +- Exclude files inside a ZIP archive from search: + +`zipgrep "{{search_pattern}}" {{path/to/file.zip}} -x {{file/to/exclude1}} {{file/to/exclude2}}` diff --git a/pages/common/zipinfo.md b/pages/common/zipinfo.md new file mode 100644 index 00000000000000..b8eb089ff6907f --- /dev/null +++ b/pages/common/zipinfo.md @@ -0,0 +1,12 @@ +# zipinfo + +> List detailed information about the contents of a `.zip` file. +> More information: . + +- List all files in a `.zip` file in long format (permissions, ownership, size, and modification date): + +`zipinfo {{path/to/archive.zip}}` + +- List all files in a `.zip` file: + +`zipinfo -1 {{path/to/archive.zip}}` diff --git a/pages/common/zipnote.md b/pages/common/zipnote.md new file mode 100644 index 00000000000000..0b975708e33487 --- /dev/null +++ b/pages/common/zipnote.md @@ -0,0 +1,17 @@ +# zipnote + +> View, add, or edit a zip archive's comments. +> Files can also be renamed in the zip archive. +> More information: . + +- View the comments on a zip archive: + +`zipnote {{path/to/file.zip}}` + +- Extract the comments on a zip archive to a file: + +`zipnote {{path/to/file.zip}} > {{path/to/file.txt}}` + +- Add/Update comments in a zip archive from a file: + +`zipnote -w {{path/to/file.zip}} < {{path/to/file.txt}}` diff --git a/pages/common/zless.md b/pages/common/zless.md index 19188479e465d1..e911fb47c6418b 100644 --- a/pages/common/zless.md +++ b/pages/common/zless.md @@ -1,7 +1,8 @@ # zless -> View compressed files. +> View `gzip` and `xz` compressed files. +> More information: . -- Page through a compressed archive with `less`: +- Page through a `gzip` compressed file with `less`: `zless {{file.txt.gz}}` diff --git a/pages/common/zlib-flate.md b/pages/common/zlib-flate.md new file mode 100644 index 00000000000000..43b99d6d86cd01 --- /dev/null +++ b/pages/common/zlib-flate.md @@ -0,0 +1,17 @@ +# zlib-flate + +> Raw zlib compression and decompression program. +> Part of `qpdf`. +> More information: . + +- Compress a file: + +`zlib-flate -compress < {{path/to/input_file}} > {{path/to/compressed.zlib}}` + +- Uncompress a file: + +`zlib-flate -uncompress < {{path/to/compressed.zlib}} > {{path/to/output_file}}` + +- Compress a file with a specified compression level. 0=Fastest (Worst), 9=Slowest (Best): + +`zlib-flate -compress={{compression_level}} < {{path/to/input_file}} > {{path/to/compressed.zlib}}` diff --git a/pages/common/zm.md b/pages/common/zm.md new file mode 100644 index 00000000000000..896c708fbba5de --- /dev/null +++ b/pages/common/zm.md @@ -0,0 +1,16 @@ +# zm + +> A tool for managing articles of newspapers and blogs. +> More information: . + +- Make a new draft: + +`zm new` + +- Edit a draft: + +`zm edit` + +- Publish a draft and commit it with git: + +`zm publish` diff --git a/pages/common/zmore.md b/pages/common/zmore.md new file mode 100644 index 00000000000000..e905152e112b4c --- /dev/null +++ b/pages/common/zmore.md @@ -0,0 +1,24 @@ +# zmore + +> View gzip compressed files with `more`. +> More information: . + +- Open a compressed file: + +`zmore {{path/to/file.txt.gz}}` + +- Display the next page of the file: + +`` + +- Search for a pattern in the file (press `n` to go to next match): + +`/{{regular_expression}}` + +- Exit: + +`q` + +- Display interactive command help: + +`h` diff --git a/pages/common/zmv.md b/pages/common/zmv.md index 291ecf78b62572..06ac6a68138636 100644 --- a/pages/common/zmv.md +++ b/pages/common/zmv.md @@ -4,7 +4,7 @@ > See also `zcp` and `zln`. > More information: . -- Move files using a regex-like pattern: +- Move files using a regular expression-like pattern: `zmv '{{(*).log}}' '{{$1.txt}}'` diff --git a/pages/common/znew.md b/pages/common/znew.md new file mode 100644 index 00000000000000..022611d133e338 --- /dev/null +++ b/pages/common/znew.md @@ -0,0 +1,20 @@ +# znew + +> Recompress files from `.Z` to `.gz` format. +> More information: . + +- Recompress a file from `.Z` to `.gz` format: + +`znew {{path/to/file1.Z}}` + +- Recompress multiple files and display the achieved size reduction % per file: + +`znew -v {{path/to/file1.Z}} {{path/to/file2.Z}} {{path/to/file3.Z}}` + +- Recompress a file using the slowest compression method (for optimal compression): + +`znew -9 {{path/to/file1.Z}}` + +- Recompress a file, [K]eeping the `.Z` file if it is smaller than the `.gz` file: + +`znew -K {{path/to/file1.Z}}` diff --git a/pages/common/zopflipng.md b/pages/common/zopflipng.md index b339bcd9d8e22a..0f535b8be7a9d9 100644 --- a/pages/common/zopflipng.md +++ b/pages/common/zopflipng.md @@ -1,12 +1,12 @@ # zopflipng -> PNG image compression utility. +> PNG compression utility. > More information: . -- Optimize a PNG image: +- Optimize a PNG: `zopflipng {{input.png}} {{output.png}}` -- Optimize several PNG images and save with given prefix: +- Optimize several PNGs and save with given prefix: `zopflipng --prefix={{prefix}} {{image1.png}} {{image2.png}} {{image3.png}}` diff --git a/pages/common/zoxide.md b/pages/common/zoxide.md index 6662c9b3c2bab1..9a564d9fadcdf9 100644 --- a/pages/common/zoxide.md +++ b/pages/common/zoxide.md @@ -20,9 +20,9 @@ `zoxide add {{path/to/directory}}` -- Remove a directory from `zoxide`'s database: +- Remove a directory from `zoxide`'s database interactively: -`zoxide remove {{path/to/directory}}` +`zoxide remove {{path/to/directory}} --interactive` - Generate shell configuration for command aliases (`z`, `za`, `zi`, `zq`, `zr`): diff --git a/pages/common/zpool.md b/pages/common/zpool.md index 6bbe9f1bde9eea..7e7e6fbcaa045a 100644 --- a/pages/common/zpool.md +++ b/pages/common/zpool.md @@ -1,6 +1,7 @@ # zpool > Manage ZFS pools. +> More information: . - Show the configuration and status of all ZFS zpools: diff --git a/pages/common/zsh.md b/pages/common/zsh.md index 443108a383660f..0af599ebd0f4a6 100644 --- a/pages/common/zsh.md +++ b/pages/common/zsh.md @@ -1,25 +1,37 @@ # zsh -> Z SHell, a Bash-compatible command line interpreter. -> See also `histexpand` for history expansion. +> Z SHell, a Bash-compatible command-line interpreter. +> 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}}` - Start an interactive shell session in verbose mode, printing each command before executing it: `zsh --verbose` + +- Execute a specific command inside `zsh` with disabled glob patterns: + +`noglob {{command}}` diff --git a/pages/common/zstd.md b/pages/common/zstd.md index eaaacca6a65e9e..4b8d7838f8b0bd 100644 --- a/pages/common/zstd.md +++ b/pages/common/zstd.md @@ -5,20 +5,20 @@ - Compress a file into a new file with the `.zst` suffix: -`zstd {{file}}` +`zstd {{path/to/file}}` - Decompress a file: -`zstd -d {{file}}.zst` +`zstd -d {{path/to/file}}.zst` -- Decompress to stdout: +- Decompress to `stdout`: -`zstd -dc {{file}}.zst` +`zstd -dc {{path/to/file}}.zst` - Compress a file specifying the compression level, where 1=fastest, 19=slowest and 3=default: -`zstd -{{level}} {{file}}` +`zstd -{{level}} {{path/to/file}}` - Unlock higher compression levels (up to 22) using more memory (both for compression and decompression): -`zstd --ultra -{{level}} {{file}}` +`zstd --ultra -{{level}} {{path/to/file}}` diff --git a/pages/common/zstdless.md b/pages/common/zstdless.md new file mode 100644 index 00000000000000..d5ff76d4d32253 --- /dev/null +++ b/pages/common/zstdless.md @@ -0,0 +1,9 @@ +# zstdless + +> Open a `zstd` compressed file for interactive reading, allowing scrolling and search. +> See also: `zstd`, `less`. +> More information: . + +- Open a `zstd` compressed file: + +`zstdless {{path/to/file.zst}}` diff --git a/pages/common/zsteg.md b/pages/common/zsteg.md index c15508fa6b0b2e..5c15c7d8eb3d9f 100644 --- a/pages/common/zsteg.md +++ b/pages/common/zsteg.md @@ -4,7 +4,7 @@ > It detects LSB steganography, ZLIB-compressed data, OpenStego, Camouflage and LSB with the Eratosthenes set. > More information: . -- Detect embedded data in a PNG image: +- Detect embedded data in a PNG: `zsteg {{path/to/image.png}}` @@ -12,7 +12,7 @@ `zsteg --all {{path/to/image.bmp}}` -- Detect embedded data in a PNG image, iterating pixels vertically and using MSB first: +- Detect embedded data in a PNG, iterating pixels vertically and using MSB first: `zsteg --msb --order yx {{path/to/image.png}}` @@ -20,7 +20,7 @@ `zsteg --bits {{1,2,3|1-3}} {{path/to/image.bmp}}` -- Detect embedded data in a PNG image, extracting only prime pixels and inverting bits: +- Detect embedded data in a PNG, extracting only prime pixels and inverting bits: `zsteg --prime --invert {{path/to/image.png}}` diff --git a/pages/linux/a2query.md b/pages/linux/a2query.md index df57242dda3b70..15568926f12e27 100644 --- a/pages/linux/a2query.md +++ b/pages/linux/a2query.md @@ -1,7 +1,7 @@ # a2query > Retrieve runtime configuration from Apache on Debian-based OSes. -> More information: . +> More information: . - List enabled Apache modules: diff --git a/pages/linux/abbr.md b/pages/linux/abbr.md new file mode 100644 index 00000000000000..125fd93b7b4de3 --- /dev/null +++ b/pages/linux/abbr.md @@ -0,0 +1,21 @@ +# abbr + +> Manage abbreviations for the fish shell. +> User-defined words are replaced with longer phrases after they are entered. +> More information: . + +- Add a new abbreviation: + +`abbr --add {{abbreviation_name}} {{command}} {{command_arguments}}` + +- Rename an existing abbreviation: + +`abbr --rename {{old_name}} {{new_name}}` + +- Erase an existing abbreviation: + +`abbr --erase {{abbreviation_name}}` + +- Import the abbreviations defined on another host over SSH: + +`ssh {{host_name}} abbr --show | source` diff --git a/pages/linux/abroot.md b/pages/linux/abroot.md new file mode 100644 index 00000000000000..8c97add8d98caa --- /dev/null +++ b/pages/linux/abroot.md @@ -0,0 +1,33 @@ +# abroot + +> ABRoot utility provides full immutability and atomicity by transacting between 2 root partition states (A⟺B). +> It also allows on-demand transactions via a transactional shell. +> More information: . + +- Output the current or future root partition state: + +`sudo abroot get {{present|future}}` + +- Enter the transactional shell in the future root partition and switch root on the next boot: + +`sudo abroot shell` + +- Execute a specific command in the transactional shell in the future root partition and switch to it on the next boot: + +`sudo abroot exec "{{command}}"` + +- Install specific packages in the host inside the transactional shell in the future root partition and switch to it on the next boot: + +`sudo abroot exec apt install {{package1 package2 ...}}` + +- Update the boot partition (for advanced users only): + +`sudo abroot _update-boot` + +- Display help: + +`abroot --help` + +- Display version: + +`abroot --version` diff --git a/pages/linux/ac.md b/pages/linux/ac.md index 728f1e14cfb92f..5318fe662694f0 100644 --- a/pages/linux/ac.md +++ b/pages/linux/ac.md @@ -1,6 +1,7 @@ # ac > Print statistics on how long users have been connected. +> More information: . - Print how long the current user has been connected in hours: diff --git a/pages/linux/acountry.md b/pages/linux/acountry.md new file mode 100644 index 00000000000000..7abc849e1494f5 --- /dev/null +++ b/pages/linux/acountry.md @@ -0,0 +1,16 @@ +# acountry + +> Print the country where an IPv4 address or hostname is located. +> More information: . + +- Print a country where an IPv4 address or host is located: + +`acountry {{example.com}}` + +- Print extra [d]ebugging output: + +`acountry -d {{example.com}}` + +- Print more [v]erbose information: + +`acountry -v {{example.com}}` diff --git a/pages/linux/add-apt-repository.md b/pages/linux/add-apt-repository.md index 154a62ebd45b38..b5f97b15ed79d5 100644 --- a/pages/linux/add-apt-repository.md +++ b/pages/linux/add-apt-repository.md @@ -1,6 +1,7 @@ # add-apt-repository > Manages apt repository definitions. +> More information: . - Add a new apt repository: @@ -14,6 +15,6 @@ `add-apt-repository --update {{repository_spec}}` -- Enable source packages: +- Allow source packages to be downloaded from the repository: `add-apt-repository --enable-source {{repository_spec}}` diff --git a/pages/linux/addr2line.md b/pages/linux/addr2line.md index 4601e468a663c0..ec58cdf48d1d01 100644 --- a/pages/linux/addr2line.md +++ b/pages/linux/addr2line.md @@ -1,6 +1,7 @@ # addr2line > Convert addresses of a binary into file names and line numbers. +> More information: . - Display the filename and line number of the source code from an instruction address of an executable: diff --git a/pages/linux/adduser.md b/pages/linux/adduser.md index 15738860606ab2..7328769262d745 100644 --- a/pages/linux/adduser.md +++ b/pages/linux/adduser.md @@ -22,7 +22,3 @@ - Create a new user belonging to the specified group: `adduser --ingroup {{group}} {{username}}` - -- Add an existing user to the specified group: - -`adduser {{username}} {{group}}` diff --git a/pages/linux/adig.md b/pages/linux/adig.md new file mode 100644 index 00000000000000..bc922d747b0a62 --- /dev/null +++ b/pages/linux/adig.md @@ -0,0 +1,24 @@ +# adig + +> Prints information received from Domain Name System (DNS) servers. +> More information: . + +- Display A (default) record from DNS for hostname(s): + +`adig {{example.com}}` + +- Display extra [d]ebugging output: + +`adig -d {{example.com}}` + +- Connect to a specific DNS [s]erver: + +`adig -s {{1.2.3.4}} {{example.com}}` + +- Use a specific TCP port to connect to a DNS server: + +`adig -T {{port}} {{example.com}}` + +- Use a specific UDP port to connect to a DNS server: + +`adig -U {{port}} {{example.com}}` diff --git a/pages/linux/ahost.md b/pages/linux/ahost.md new file mode 100644 index 00000000000000..c8c13296043082 --- /dev/null +++ b/pages/linux/ahost.md @@ -0,0 +1,16 @@ +# ahost + +> DNS lookup utility to display the A or AAAA record linked with a hostname or IP address. +> More information: . + +- Print an `A` or `AAAA` record associated with a hostname or IP address: + +`ahost {{example.com}}` + +- Display some extra debugging output: + +`ahost -d {{example.com}}` + +- Display the record with a specified type: + +`ahost -t {{a|aaaa|u}} {{example.com}}` diff --git a/pages/linux/alien.md b/pages/linux/alien.md new file mode 100644 index 00000000000000..b755e1a96541a1 --- /dev/null +++ b/pages/linux/alien.md @@ -0,0 +1,20 @@ +# alien + +> Convert different installation packages to other formats. +> More information: . + +- Convert a specific installation file to Debian format (`.deb` extension): + +`sudo alien --to-deb {{path/to/file}}` + +- Convert a specific installation file to Red Hat format (`.rpm` extension): + +`sudo alien --to-rpm {{path/to/file}}` + +- Convert a specific installation file to a Slackware installation file (`.tgz` extension): + +`sudo alien --to-tgz {{path/to/file}}` + +- Convert a specific installation file to Debian format and install on the system: + +`sudo alien --to-deb --install {{path/to/file}}` diff --git a/pages/linux/alpine.md b/pages/linux/alpine.md index baf1b6ac5d04e0..928caa862bfafc 100644 --- a/pages/linux/alpine.md +++ b/pages/linux/alpine.md @@ -2,6 +2,7 @@ > An email client and Usenet newsgroup program with a pico/nano-inspired interface. > Supports most modern email services through IMAP. +> More information: . - Open alpine normally: diff --git a/pages/linux/alternatives.md b/pages/linux/alternatives.md new file mode 100644 index 00000000000000..5d23ee6830ca61 --- /dev/null +++ b/pages/linux/alternatives.md @@ -0,0 +1,8 @@ +# alternatives + +> This command is an alias of `update-alternatives`. +> More information: . + +- View documentation for the original command: + +`tldr update-alternatives` diff --git a/pages/linux/amixer.md b/pages/linux/amixer.md index fe7b71dec0d8ab..732c62118d0098 100644 --- a/pages/linux/amixer.md +++ b/pages/linux/amixer.md @@ -1,6 +1,7 @@ # amixer > Mixer for ALSA soundcard driver. +> More information: . - Turn up the master volume by 10%: diff --git a/pages/linux/anbox.md b/pages/linux/anbox.md new file mode 100644 index 00000000000000..6542bf7a9286d8 --- /dev/null +++ b/pages/linux/anbox.md @@ -0,0 +1,8 @@ +# anbox + +> Run Android applications on any GNU/Linux operating system. +> More information: . + +- Launch Anbox into the app manager: + +`anbox launch --package={{org.anbox.appmgr}} --component={{org.anbox.appmgr.AppViewActivity}}` diff --git a/pages/linux/apk.md b/pages/linux/apk.md index b2f9324bcca2f2..9bd6f5813e5f48 100644 --- a/pages/linux/apk.md +++ b/pages/linux/apk.md @@ -1,6 +1,7 @@ # apk > Alpine Linux package management tool. +> More information: . - Update repository indexes from all remote repositories: @@ -14,14 +15,14 @@ `apk del {{package}}` -- Repair package or upgrade it without modifying main dependencies: +- Repair a package or upgrade it without modifying main dependencies: `apk fix {{package}}` -- Search package via keyword: +- Search for a package via keywords: -`apk search {{keyword}}` +`apk search {{keywords}}` -- Get info about a specific package: +- Display information about a specific package: `apk info {{package}}` diff --git a/pages/linux/aplay.md b/pages/linux/aplay.md index 562eac8a1ec898..f99234550bbf68 100644 --- a/pages/linux/aplay.md +++ b/pages/linux/aplay.md @@ -7,10 +7,10 @@ `aplay {{path/to/file}}` -- Play the first 10 seconds of a specific file at 2500Hz: +- Play the first 10 seconds of a specific file at 2500 Hz: `aplay --duration={{10}} --rate={{2500}} {{path/to/file}}` -- Play the raw file as a 22050Hz, mono, 8-bit, Mu-Law `.au` file: +- Play the raw file as a 22050 Hz, mono, 8-bit, Mu-Law `.au` file: `aplay --channels={{1}} --file-type {{raw}} --rate={{22050}} --format={{mu_law}} {{path/to/file}}` diff --git a/pages/linux/apt-file.md b/pages/linux/apt-file.md index 27ac4167b9a6d6..558293f6836f5f 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}}` -- Search for packages that match the regular expresssion given in `pattern`: +- Search for packages that match the `regular_expression`: -`apt-file {{search|find}} --regexp {{pattern}}` +`apt-file {{search|find}} --regexp {{regular_expression}}` diff --git a/pages/linux/apt-moo.md b/pages/linux/apt-moo.md new file mode 100644 index 00000000000000..2035150a70c3a7 --- /dev/null +++ b/pages/linux/apt-moo.md @@ -0,0 +1,8 @@ +# apt moo + +> An `APT` easter egg. +> More information: . + +- Print a cow easter egg: + +`apt moo` diff --git a/pages/linux/apt.md b/pages/linux/apt.md index 093e9116db1e0c..0f86dd550bc6c4 100644 --- a/pages/linux/apt.md +++ b/pages/linux/apt.md @@ -1,7 +1,8 @@ # apt > Package management utility for Debian based distributions. -> Recommended replacement for apt-get when used interactively in Ubuntu versions 16.04 and later. +> Recommended replacement for `apt-get` when used interactively in Ubuntu versions 16.04 and later. +> For equivalent commands in other package managers, see . > More information: . - Update the list of available packages and versions (it's recommended to run this before other `apt` commands): diff --git a/pages/linux/aptitude.md b/pages/linux/aptitude.md index ae767a7bac9a6b..16491547bca6d2 100644 --- a/pages/linux/aptitude.md +++ b/pages/linux/aptitude.md @@ -23,7 +23,7 @@ `aptitude remove {{package}}` -- Upgrade installed packages to newest available versions: +- Upgrade installed packages to the newest available versions: `aptitude upgrade` diff --git a/pages/linux/apx.md b/pages/linux/apx.md new file mode 100644 index 00000000000000..98ed75c93cc56d --- /dev/null +++ b/pages/linux/apx.md @@ -0,0 +1,37 @@ +# apx + +> Package management utility. +> Install packages inside managed containers from multiple sources (`apx` supports --aur,--dnf, --apk flags in all commands). +> More information: . + +- Initialize or reinitialize a specific container: + +`apx init` + +- Install specific packages in the container: + +`apx install {{package1 package2 ...}}` + +- Install a DEB/RPM package inside the container (Use `--dnf` flag for installing RPMs): + +`apx install --sideload {{path/to/package}}` + +- Remove specific packages from the container: + +`apx remove {{package1 package2 ...}}` + +- Search for specific packages: + +`apx search {{package1 package2 ...}}` + +- Enter the managed container shell to execute commands (type `exit` to exit the container): + +`apx enter` + +- Update the list of available packages in the container: + +`apx update` + +- Upgrade all installed packages in the container to their newest available version: + +`apx upgrade` diff --git a/pages/linux/archey.md b/pages/linux/archey.md index 297fcc661d1665..f51a842bdfa402 100644 --- a/pages/linux/archey.md +++ b/pages/linux/archey.md @@ -1,6 +1,7 @@ # archey > Simple tool for stylishly displaying system information. +> More information: . - Show system information: diff --git a/pages/linux/archivemount.md b/pages/linux/archivemount.md new file mode 100644 index 00000000000000..38afe7cc6c0da0 --- /dev/null +++ b/pages/linux/archivemount.md @@ -0,0 +1,8 @@ +# archivemount + +> Mount an archive for access as a filesystem. +> More information: . + +- Mount an archive to a specific mountpoint: + +`archivemount {{path/to/archive}} {{path/to/mount_point}}` diff --git a/pages/linux/arecord.md b/pages/linux/arecord.md index daded85b06d309..e8ffa5e4532cf9 100644 --- a/pages/linux/arecord.md +++ b/pages/linux/arecord.md @@ -11,7 +11,7 @@ `arecord -vv --format=cd --duration={{10}} {{path/to/file.wav}}` -- Record a snippet and save it as mp3 (finish with Ctrl-C when done): +- Record a snippet and save it as an MP3 (finish with Ctrl-C when done): `arecord -vv --format=cd --file-type raw | lame -r - {{path/to/file.mp3}}` diff --git a/pages/linux/ark.md b/pages/linux/ark.md index 8bf5b62e952830..5d582e4c1c4463 100644 --- a/pages/linux/ark.md +++ b/pages/linux/ark.md @@ -1,16 +1,16 @@ # ark -> KDE archiving tool. -> More information: . +> KDE's archiving tool. +> More information: . -- Extract an archive into the current directory: +- Extract a specific archive into the current directory: -`ark --batch {{archive}}` +`ark --batch {{path/to/archive}}` -- Change extraction directory: +- Extract an archive into a specific directory: -`ark --batch --destination {{path/to/directory}} {{archive}}` +`ark --batch --destination {{path/to/directory}} {{path/to/archive}}` -- Create an archive if it does not exist and add files to it: +- Create an archive if it does not exist and add specific files to it: -`ark --add-to {{archive}} {{file1}} {{file2}}` +`ark --add-to {{path/to/archive}} {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/linux/arp-scan.md b/pages/linux/arp-scan.md deleted file mode 100644 index 6458744eb126d9..00000000000000 --- a/pages/linux/arp-scan.md +++ /dev/null @@ -1,19 +0,0 @@ -# arp-scan - -> Send ARP packets to hosts (specified as IP addresses or hostnames) to scan the local network. - -- Scan the current local network: - -`arp-scan --localnet` - -- Scan an IP network with a custom bitmask: - -`arp-scan {{192.168.1.1}}/{{24}}` - -- Scan an IP network within a custom range: - -`arp-scan {{127.0.0.0}}-{{127.0.0.31}}` - -- Scan an IP network with a custom net mask: - -`arp-scan {{10.0.0.0}}:{{255.255.255.0}}` diff --git a/pages/linux/arpaname.md b/pages/linux/arpaname.md new file mode 100644 index 00000000000000..023f9ee48207ea --- /dev/null +++ b/pages/linux/arpaname.md @@ -0,0 +1,8 @@ +# arpaname + +> Provides corresponding ARPA name for IP addresses. +> More information: . + +- Translate IP addresses (IPv4 and IPv6) to the corresponding ARPA name: + +`arpaname {{ip_address}}` diff --git a/pages/linux/arpspoof.md b/pages/linux/arpspoof.md new file mode 100644 index 00000000000000..4c9dfbe31b001f --- /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/as.md b/pages/linux/as.md index 9f9d95c19f5705..f2fbb228b5f26c 100644 --- a/pages/linux/as.md +++ b/pages/linux/as.md @@ -2,6 +2,7 @@ > Portable GNU assembler. > Primarily intended to assemble output from `gcc` to be used by `ld`. +> More information: . - Assemble a file, writing the output to `a.out`: diff --git a/pages/linux/asciiart.md b/pages/linux/asciiart.md index 0abe7180fd81f8..cd5792b872215b 100644 --- a/pages/linux/asciiart.md +++ b/pages/linux/asciiart.md @@ -13,7 +13,7 @@ - Choose the output width (default is 100): -`asciiart -width {{50}} {{path/to/image.jpg}}` +`asciiart --width {{50}} {{path/to/image.jpg}}` - Colorize the ASCII output: diff --git a/pages/linux/aspell.md b/pages/linux/aspell.md index 52375f454c2857..7a83563923a885 100644 --- a/pages/linux/aspell.md +++ b/pages/linux/aspell.md @@ -1,6 +1,7 @@ # aspell > Interactive spell checker. +> More information: . - Spell check a single file: @@ -8,16 +9,16 @@ - List misspelled words from standard input: -`cat {{file}} | aspell list` +`cat {{path/to/file}} | aspell list` - Show available dictionary languages: `aspell dicts` -- Run aspell with different language (takes two letter ISO 639 language code): +- Run `aspell` with a different language (takes two-letter ISO 639 language code): `aspell --lang={{cs}}` - List misspelled words from standard input and ignore words from personal word list: -`cat {{file}} | aspell --personal={{personal-word-list.pws}} {{list}}` +`cat {{path/to/file}} | aspell --personal={{personal-word-list.pws}} list` diff --git a/pages/linux/at.md b/pages/linux/at.md index bc35c909d4b68e..8f25085ae5f4f0 100644 --- a/pages/linux/at.md +++ b/pages/linux/at.md @@ -7,7 +7,7 @@ `at {{hh:mm}}` -- Execute the commands and email the result using a local mailing program such as sendmail: +- Execute the commands and email the result using a local mailing program such as Sendmail: `at {{hh:mm}} -m` diff --git a/pages/linux/atool.md b/pages/linux/atool.md new file mode 100644 index 00000000000000..744b306de2b4cc --- /dev/null +++ b/pages/linux/atool.md @@ -0,0 +1,20 @@ +# atool + +> Manage archives of various formats. +> More information: . + +- List files in a zip archive: + +`atool --list {{path/to/archive.zip}}` + +- Unpack a tar.gz archive into a new subdirectory (or current directory if it contains only one file): + +`atool --extract {{path/to/archive.tar.gz}}` + +- Create a new 7zip archive with two files: + +`atool --add {{path/to/archive.7z}} {{path/to/file1 path/to/file2 ...}}` + +- Extract all zip and rar archives in the current directory: + +`atool --each --extract {{*.zip *.rar}}` diff --git a/pages/linux/atop.md b/pages/linux/atop.md new file mode 100644 index 00000000000000..728ade46feb365 --- /dev/null +++ b/pages/linux/atop.md @@ -0,0 +1,32 @@ +# atop + +> Linux system and process monitor. +> More information: . + +- Start: + +`atop` + +- Start and display memory consumption for each process: + +`atop -m` + +- Start and display disk information: + +`atop -d` + +- Start and display background process information: + +`atop -c` + +- Start and display thread-specific resource utilization information: + +`atop -y` + +- Start and display the number of processes for each user: + +`atop -au` + +- Display help about interactive commands: + +`?` diff --git a/pages/linux/aura.md b/pages/linux/aura.md new file mode 100644 index 00000000000000..34ac65449c8cfb --- /dev/null +++ b/pages/linux/aura.md @@ -0,0 +1,36 @@ +# aura + +> The Aura Package Manager: A secure, multilingual package manager for Arch Linux and the AUR. +> More information: . + +- Search for packages from the official repositories and AUR: + +`aura --aursync --both --search {{package_name|search_regex}}` + +- Install a package from the AUR: + +`aura --aursync {{package_name}}` + +- Update all AUR packages in a verbose mode and remove all make dependencies: + +`aura --aursync --diff --sysupgrade --delmakedeps --unsuppress` + +- Install a package from the official repositories: + +`aura --sync {{package_name}}` + +- Synchronize and update all packages from the official repositories: + +`aura --sync --refresh --sysupgrade` + +- Downgrade a package using the package cache: + +`aura --downgrade {{package_name}}` + +- Remove a package and its dependencies: + +`aura --remove --recursive --unneeded {{package_name}}` + +- Remove orphan packages (installed as dependencies but not required by any package): + +`aura --orphans --abandon` diff --git a/pages/linux/auracle.md b/pages/linux/auracle.md index 5f9cb22e1ce963..f60157befa3c75 100644 --- a/pages/linux/auracle.md +++ b/pages/linux/auracle.md @@ -1,11 +1,11 @@ # auracle -> Command line tool used to interact with Arch Linux's User Repository, commonly referred to as the AUR. +> Command-line tool used to interact with Arch Linux's User Repository, commonly referred to as the AUR. > More information: . - Display AUR packages that match a regular expression: -`auracle search '{{regex}}'` +`auracle search '{{regular_expression}}'` - Display package information for a space-separated list of AUR packages: diff --git a/pages/linux/aurvote.md b/pages/linux/aurvote.md new file mode 100644 index 00000000000000..b5cdeec4e630f9 --- /dev/null +++ b/pages/linux/aurvote.md @@ -0,0 +1,25 @@ +# aurvote + +> Vote for packages in the Arch User Repository. +> To be able to vote, the file `~/.config/aurvote` must exist and contain your AUR credentials. +> More information: . + +- Interactively create the file `~/.config/aurvote` containing your AUR username and password: + +`aurvote --configure` + +- Vote for one or more AUR packages: + +`aurvote {{package1 package2 ...}}` + +- Unvote one or more AUR packages: + +`aurvote --unvote {{package1 package2 ...}}` + +- Check if one or more AUR packages have already been voted: + +`aurvote --check {{package1 package2 ...}}` + +- Show help for `aurvote`: + +`aurvote --help` diff --git a/pages/linux/ausyscall.md b/pages/linux/ausyscall.md new file mode 100644 index 00000000000000..6f7889eb34abbb --- /dev/null +++ b/pages/linux/ausyscall.md @@ -0,0 +1,16 @@ +# ausyscall + +> Program that allows mapping syscall names and numbers. +> More information: . + +- Display syscall number of a specific system call: + +`ausyscall {{search_pattern}}` + +- Display name of a specific system call number: + +`ausyscall {{system_call_number}}` + +- Display all system calls for a specific architecture: + +`ausyscall {{architecture}} --dump` diff --git a/pages/linux/authconfig.md b/pages/linux/authconfig.md index 90ff080600ce9a..2c932070da3354 100644 --- a/pages/linux/authconfig.md +++ b/pages/linux/authconfig.md @@ -1,6 +1,7 @@ # authconfig > A CLI interface for configuring system authentication resources. +> More information: . - Display the current configuration (or dry run): diff --git a/pages/linux/autopkgtest.md b/pages/linux/autopkgtest.md new file mode 100644 index 00000000000000..e1f004ed64af57 --- /dev/null +++ b/pages/linux/autopkgtest.md @@ -0,0 +1,24 @@ +# autopkgtest + +> Run tests on Debian packages. +> More information: . + +- Build the package in the current directory and run all tests directly on the system: + +`autopkgtest -- {{null}}` + +- Run a specific test for the package in the current directory: + +`autopkgtest --test-name={{test_name}} -- {{null}}` + +- Download and build a specific package with `apt-get`, then run all tests: + +`autopkgtest {{package}} -- {{null}}` + +- Test the package in the current directory using a new root directory: + +`autopkgtest -- {{chroot}} {{path/to/new/root}}` + +- Test the package in the current directory without rebuilding it: + +`autopkgtest --no-built-binaries -- {{null}}` diff --git a/pages/linux/autorandr.md b/pages/linux/autorandr.md index 106fca3dde272f..ee604e41b036b6 100644 --- a/pages/linux/autorandr.md +++ b/pages/linux/autorandr.md @@ -1,19 +1,24 @@ # autorandr > Automatically change screen layout. +> More information: . - 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/avifenc.md b/pages/linux/avifenc.md new file mode 100644 index 00000000000000..da9398fa44af49 --- /dev/null +++ b/pages/linux/avifenc.md @@ -0,0 +1,12 @@ +# avifenc + +> AV1 Image File Format (AVIF) encoder. +> More information: . + +- Convert a specific PNG image to AVIF: + +`avifenc {{path/to/image.png}} {{path/to/image.avif}}` + +- Encode with a specific speed, where 0=slowest, 10=fastest, and 6=default: + +`avifenc --speed {{2}} {{path/to/image.png}} {{path/to/image.avif}}` diff --git a/pages/linux/backlight_control.md b/pages/linux/backlight_control.md new file mode 100644 index 00000000000000..cd5972c3d3dc1f --- /dev/null +++ b/pages/linux/backlight_control.md @@ -0,0 +1,16 @@ +# backlight_control + +> Control a linux machine's backlight using percentage values. +> More information: . + +- Increase/decrease the backlight by a specific percent count: + +`backlight_control {{+|-}}{{5}}` + +- Set the backlight strength to a specific percent count: + +`backlight_control {{90}}` + +- Print the help: + +`backlight_control` diff --git a/pages/linux/batcat.md b/pages/linux/batcat.md new file mode 100644 index 00000000000000..95e51618af31bf --- /dev/null +++ b/pages/linux/batcat.md @@ -0,0 +1,8 @@ +# batcat + +> This command is an alias of `bat`. +> More information: . + +- View documentation for the original command: + +`tldr bat` diff --git a/pages/linux/battop.md b/pages/linux/battop.md new file mode 100644 index 00000000000000..42220aab98f62f --- /dev/null +++ b/pages/linux/battop.md @@ -0,0 +1,12 @@ +# battop + +> An interactive viewer for the batteries installed in your notebook. +> More information: . + +- Display battery information: + +`battop` + +- Change battery information measurement [u]nit (default: human): + +`battop -u {{human|si}}` diff --git a/pages/linux/beep.md b/pages/linux/beep.md index bb3127b4f11568..12993b3c07cb78 100644 --- a/pages/linux/beep.md +++ b/pages/linux/beep.md @@ -1,6 +1,7 @@ # beep > A utility to beep the PC speaker. +> More information: . - Play a beep: @@ -20,4 +21,4 @@ - Play the C major scale: -`beep -f 262 -n -f 294 -n -f 330 -n -f 349 -n -f 392 -n -f 440 -n -f 494 -n -f 523` +`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/linux/betterdiscordctl.md b/pages/linux/betterdiscordctl.md new file mode 100644 index 00000000000000..656e30409ecbee --- /dev/null +++ b/pages/linux/betterdiscordctl.md @@ -0,0 +1,24 @@ +# betterdiscordctl + +> A program for managing BetterDiscord on Linux. +> More information: . + +- Install BetterDiscord on Discord Stable: + +`sudo betterdiscordctl install` + +- Install BetterDiscord on Discord Canary: + +`sudo betterdiscordctl --d-flavors canary install` + +- Install BetterDiscord on Discord PTB: + +`sudo betterdiscordctl --d-flavors ptb install` + +- Install BetterDiscord on Discord installed with Flatpak: + +`sudo betterdiscordctl --d-install flatpak install` + +- Install BetterDiscord on Discord installed with Snap: + +`sudo betterdiscordctl --d-install snap install` diff --git a/pages/linux/betterlockscreen.md b/pages/linux/betterlockscreen.md index b73f44a54f5278..0d56531e32ffd1 100644 --- a/pages/linux/betterlockscreen.md +++ b/pages/linux/betterlockscreen.md @@ -1,6 +1,7 @@ # betterlockscreen > Simple, minimal lock screen. +> More information: . - Lock the screen: diff --git a/pages/linux/blastn.md b/pages/linux/blastn.md new file mode 100644 index 00000000000000..551a3799564f03 --- /dev/null +++ b/pages/linux/blastn.md @@ -0,0 +1,28 @@ +# blastn + +> Nucleotide-Nucleotide BLAST. +> More information: . + +- Align two or more sequences using megablast (default), with the e-value threshold of 1e-9, pairwise output format (default): + +`blastn -query {{query.fa}} -subject {{subject.fa}} -evalue {{1e-9}}` + +- Align two or more sequences using blastn: + +`blastn -task blastn -query {{query.fa}} -subject {{subject.fa}}` + +- Align two or more sequences, custom tabular output format, output to file: + +`blastn -query {{query.fa}} -subject {{subject.fa}} -outfmt {{'6 qseqid qlen qstart qend sseqid slen sstart send bitscore evalue pident'}} -out {{output.tsv}}` + +- Search nucleotide databases using a nucleotide query, 16 threads (CPUs) to use in the BLAST search, with a maximum number of 10 aligned sequences to keep: + +`blastn -query {{query.fa}} -db {{path/to/blast_db}} -num_threads {{16}} -max_target_seqs {{10}}` + +- Search the remote non-redundant nucleotide database using a nucleotide query: + +`blastn -query {{query.fa}} -db {{nt}} -remote` + +- Display help (use `-help` for detailed help): + +`blastn -h` diff --git a/pages/linux/blastp.md b/pages/linux/blastp.md new file mode 100644 index 00000000000000..9b0f05a4c30088 --- /dev/null +++ b/pages/linux/blastp.md @@ -0,0 +1,28 @@ +# blastp + +> Protein-Protein BLAST. +> More information: . + +- Align two or more sequences using blastp, with the e-value threshold of 1e-9, pairwise output format, output to screen: + +`blastp -query {{query.fa}} -subject {{subject.fa}} -evalue {{1e-9}}` + +- Align two or more sequences using blastp-fast: + +`blastp -task blastp-fast -query {{query.fa}} -subject {{subject.fa}}` + +- Align two or more sequences, custom tabular output format, output to file: + +`blastp -query {{query.fa}} -subject {{subject.fa}} -outfmt '{{6 qseqid qlen qstart qend sseqid slen sstart send bitscore evalue pident}}' -out {{output.tsv}}` + +- Search protein databases using a protein query, 16 threads to use in the BLAST search, with a maximum number of 10 aligned sequences to keep: + +`blastp -query {{query.fa}} -db {{blast_database_name}} -num_threads {{16}} -max_target_seqs {{10}}` + +- Search the remote non-redundant protein database using a protein query: + +`blastp -query {{query.fa}} -db {{nr}} -remote` + +- Display help (use `-help` for detailed help): + +`blastp -h` diff --git a/pages/linux/blight.md b/pages/linux/blight.md new file mode 100644 index 00000000000000..002cf382721cbb --- /dev/null +++ b/pages/linux/blight.md @@ -0,0 +1,24 @@ +# blight + +> Utility for changing the display brightness. +> More information: . + +- Set display brightness to 50%: + +`blight set {{50}} -r` + +- Show current display brightness: + +`blight show` + +- Print maximum display brightness: + +`blight max` + +- Increase display brightness in %: + +`blight inc {{number}} -r` + +- Decrease display brightness with internal units: + +`blight dec {{number}}` diff --git a/pages/linux/blkdiscard.md b/pages/linux/blkdiscard.md index aef677e0469e40..3937625e24e8fd 100644 --- a/pages/linux/blkdiscard.md +++ b/pages/linux/blkdiscard.md @@ -1,6 +1,7 @@ # blkdiscard > Discards device sectors on storage devices. Useful for SSDs. +> More information: . - Discard all sectors on a device, removing all data: @@ -10,6 +11,6 @@ `blkdiscard --secure /dev/{{device}}` -- Discard the first 100MB of a device: +- Discard the first 100 MB of a device: `blkdiscard --length {{100MB}} /dev/{{device}}` diff --git a/pages/linux/blkid.md b/pages/linux/blkid.md index 9c9756e6868d25..e175122fe95793 100644 --- a/pages/linux/blkid.md +++ b/pages/linux/blkid.md @@ -1,6 +1,7 @@ # blkid > Lists all recognized partitions and their Universally Unique Identifier (UUID). +> More information: . - List all partitions: diff --git a/pages/linux/bluetoothctl.md b/pages/linux/bluetoothctl.md index 162fd5cc0e2e7f..2caf93e90f6b2e 100644 --- a/pages/linux/bluetoothctl.md +++ b/pages/linux/bluetoothctl.md @@ -1,27 +1,36 @@ # bluetoothctl -> Handling bluetooth devices from the shell. +> Manage Bluetooth devices from the command-line. +> More information: . -- Enter the bluetoothctl shell: +- Enter the `bluetoothctl` shell: `bluetoothctl` -- List devices: +- List all known devices: -`bluetoothctl -- devices` +`bluetoothctl devices` -- Pair a device: +- Power the Bluetooth controller on or off: -`bluetoothctl -- pair {{mac_address}}` +`bluetoothctl power {{on|off}}` + +- Pair with a device: + +`bluetoothctl pair {{mac_address}}` - Remove a device: -`bluetoothctl -- remove {{mac_address}}` +`bluetoothctl remove {{mac_address}}` + +- Connect to a paired device: + +`bluetoothctl connect {{mac_address}}` -- Connect a paired device: +- Disconnect from a paired device: -`bluetoothctl -- connect {{mac_address}}` +`bluetoothctl disconnect {{mac_address}}` -- Disconnect a paired device: +- Display help: -`bluetoothctl -- disconnect {{mac_address}}` +`bluetoothctl help` diff --git a/pages/linux/bluetoothd.md b/pages/linux/bluetoothd.md new file mode 100644 index 00000000000000..0fd10ca45531b6 --- /dev/null +++ b/pages/linux/bluetoothd.md @@ -0,0 +1,24 @@ +# bluetoothd + +> Daemon to manage bluetooth devices. +> More information: . + +- Start the daemon: + +`bluetoothd` + +- Start the daemon, logging to `stdout`: + +`bluetoothd --nodetach` + +- Start the daemon with a specific configuration file (defaults to `/etc/bluetooth/main.conf`): + +`bluetoothd --configfile {{path/to/file}}` + +- Start the daemon with verbose output to `stderr`: + +`bluetoothd --debug` + +- Start the daemon with verbose output coming from specific files in the bluetoothd or plugins source: + +`bluetoothd --debug={{path/to/file1}}:{{path/to/file2}}:{{path/to/file3}}` diff --git a/pages/linux/blurlock.md b/pages/linux/blurlock.md new file mode 100644 index 00000000000000..253d7a4d7eae05 --- /dev/null +++ b/pages/linux/blurlock.md @@ -0,0 +1,21 @@ +# blurlock + +> A simple wrapper around the i3 screen locker `i3lock`, which blurs the screen. +> See also: `i3lock`. +> More information: . + +- Lock the screen to a blurred screenshot of the current screen: + +`blurlock` + +- Lock the screen and disable the unlock indicator (removes feedback on keypress): + +`blurlock --no-unlock-indicator` + +- Lock the screen and don't hide the mouse pointer: + +`blurlock --pointer {{default}}` + +- Lock the screen and show the number of failed login attempts: + +`blurlock --show-failed-attempts` diff --git a/pages/linux/bmon.md b/pages/linux/bmon.md index 6a5dd53b94fa22..b0a87cde94e50e 100644 --- a/pages/linux/bmon.md +++ b/pages/linux/bmon.md @@ -1,6 +1,7 @@ # bmon > Monitor bandwidth and capture network related statistics. +> More information: . - Display the list of all the interfaces: diff --git a/pages/linux/boltctl.md b/pages/linux/boltctl.md new file mode 100644 index 00000000000000..b059f815378f0d --- /dev/null +++ b/pages/linux/boltctl.md @@ -0,0 +1,28 @@ +# boltctl + +> Control thunderbolt devices. +> More information: . + +- List connected (and authorized) devices: + +`boltctl` + +- List connected devices, including unauthorized ones: + +`boltctl list` + +- Authorize a device temporarily: + +`boltctl authorize {{device_uuid}}` + +- Authorize and remember a device: + +`boltctl enroll {{device_uuid}}` + +- Revoke a previously authorized device: + +`boltctl forget {{device_uuid}}` + +- Show more information about a device: + +`boltctl info {{device_uuid}}` diff --git a/pages/linux/bpftool.md b/pages/linux/bpftool.md new file mode 100644 index 00000000000000..0f438fd04a210d --- /dev/null +++ b/pages/linux/bpftool.md @@ -0,0 +1,37 @@ +# bpftool + +> Tool for inspection and simple manipulation of eBPF programs and maps. +> Some subcommands such as `bpftool prog` have their own usage documentation. +> More information: . + +- List information about loaded `eBPF` programs: + +`bpftool prog list` + +- List `eBPF` program attachments in the kernel networking subsystem: + +`bpftool net list` + +- List all active links: + +`bpftool link list` + +- List all `raw_tracepoint`, `tracepoint`, `kprobe` attachments in the system: + +`bpftool perf list` + +- List `BPF Type Format (BTF)` data: + +`bpftool btf list` + +- List information about loaded maps: + +`bpftool map list` + +- Probe a network device "eth0" for supported `eBPF` features: + +`bpftool feature probe dev {{eth0}}` + +- Run commands in batch mode from a file: + +`bpftool batch file {{myfile}}` diff --git a/pages/linux/bpftrace.md b/pages/linux/bpftrace.md index 02e3d26737632d..a27704c25b32ff 100644 --- a/pages/linux/bpftrace.md +++ b/pages/linux/bpftrace.md @@ -11,7 +11,7 @@ `sudo bpftrace -l` -- Run a one-liner program (e.g syscall count by program): +- Run a one-liner program (e.g. syscall count by program): `sudo bpftrace -e '{{tracepoint:raw_syscalls:sys_enter { @[comm] = count(); }}}'` diff --git a/pages/linux/br.md b/pages/linux/br.md new file mode 100644 index 00000000000000..93e39fcd3de6b5 --- /dev/null +++ b/pages/linux/br.md @@ -0,0 +1,25 @@ +# br + +> Navigate directory trees interactively. +> See also: `broot`. +> More information: . + +- Start and navigate the current directory tree interactively: + +`br` + +- Start displaying the size of files and directories: + +`br --sizes` + +- Start displaying permissions: + +`br --permissions` + +- Start displaying directories only: + +`br --only-folders` + +- Start displaying hidden files and directories: + +`br --hidden` diff --git a/pages/linux/braa.md b/pages/linux/braa.md new file mode 100644 index 00000000000000..4bdbdf5e964cd1 --- /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/brctl.md b/pages/linux/brctl.md index 60dec317734d45..a3246724c4c2f3 100644 --- a/pages/linux/brctl.md +++ b/pages/linux/brctl.md @@ -1,16 +1,17 @@ # brctl > Ethernet bridge administration. +> More information: . -- Show a list with information about currently existing ethernet bridges: +- Show a list with information about currently existing Ethernet bridges: `sudo brctl show` -- Create a new ethernet bridge interface: +- Create a new Ethernet bridge interface: `sudo brctl add {{bridge_name}}` -- Delete an existing ethernet bridge interface: +- Delete an existing Ethernet bridge interface: `sudo brctl del {{bridge_name}}` diff --git a/pages/linux/brightnessctl.md b/pages/linux/brightnessctl.md new file mode 100644 index 00000000000000..f5b4b6175e8b86 --- /dev/null +++ b/pages/linux/brightnessctl.md @@ -0,0 +1,24 @@ +# brightnessctl + +> Utility for reading and controlling device brightness for GNU/Linux operating systems. +> More information: . + +- List devices with changeable brightness: + +`brightnessctl --list` + +- Print the current brightness of the display backlight: + +`brightnessctl get` + +- Set the brightness of the display backlight to a specified percentage within range: + +`brightnessctl set {{50%}}` + +- Increase brightness by a specified increment: + +`brightnessctl set {{+10%}}` + +- Decrease brightness by a specified decrement: + +`brightnessctl set {{10%-}}` diff --git a/pages/linux/broot.md b/pages/linux/broot.md new file mode 100644 index 00000000000000..8dc8299cd59493 --- /dev/null +++ b/pages/linux/broot.md @@ -0,0 +1,9 @@ +# broot + +> Navigate directory trees interactively. +> See also: `br`. +> More information: . + +- Install or reinstall the `br` shell function: + +`broot --install` diff --git a/pages/linux/bspc.md b/pages/linux/bspc.md new file mode 100644 index 00000000000000..9dcc19260a46d1 --- /dev/null +++ b/pages/linux/bspc.md @@ -0,0 +1,24 @@ +# bspc + +> A tool to control `bspwm`. +> More information: . + +- Define two virtual desktop: + +`bspc monitor --reset-desktops {{1}} {{2}}` + +- Focus the given desktop: + +`bspc desktop --focus {{number}}` + +- Close the windows rooted at the selected node: + +`bspc node --close` + +- Send the selected node to the given desktop: + +`bspc node --to-desktop {{number}}` + +- Toggle full screen mode for the selected node: + +`bspc node --state ~fullscreen` diff --git a/pages/linux/bspwm.md b/pages/linux/bspwm.md new file mode 100644 index 00000000000000..b69072461948ad --- /dev/null +++ b/pages/linux/bspwm.md @@ -0,0 +1,12 @@ +# bspwm + +> A tiling window manager based on binary space partitioning. +> More information: . + +- Start `bspwm` (note that a pre-existing window manager must not be open when this command is run): + +`bspwm -c {{path/to/config}}` + +- View documentation for `bspc`: + +`tldr bspc` diff --git a/pages/linux/btrbk.md b/pages/linux/btrbk.md new file mode 100644 index 00000000000000..2a07d4ce6bd34d --- /dev/null +++ b/pages/linux/btrbk.md @@ -0,0 +1,24 @@ +# btrbk + +> A tool for creating snapshots and remote backups of btrfs subvolumes. +> More information: . + +- Print statistics about configured subvolumes and snapshots: + +`sudo btrbk stats` + +- List configured subvolumes and snapshots: + +`sudo btrbk list` + +- Print what would happen in a run without making the displayed changes: + +`sudo btrbk --verbose dryrun` + +- Run backup routines verbosely, show progress bar: + +`sudo btrbk --progress --verbose run` + +- Only create snapshots for configured subvolumes: + +`sudo btrbk snapshot` diff --git a/pages/linux/btrfs-balance.md b/pages/linux/btrfs-balance.md new file mode 100644 index 00000000000000..f4d87f58a535f9 --- /dev/null +++ b/pages/linux/btrfs-balance.md @@ -0,0 +1,32 @@ +# btrfs balance + +> Balance block groups on a btrfs filesystem. +> More information: . + +- Show the status of a running or paused balance operation: + +`sudo btrfs balance status {{path/to/btrfs_filesystem}}` + +- Balance all block groups (slow; rewrites all blocks in filesystem): + +`sudo btrfs balance start {{path/to/btrfs_filesystem}}` + +- Balance data block groups which are less than 15% utilized, running the operation in the background: + +`sudo btrfs balance start --bg -dusage={{15}} {{path/to/btrfs_filesystem}}` + +- Balance a max of 10 metadata chunks with less than 20% utilization and at least 1 chunk on a given device `devid` (see `btrfs filesystem show`): + +`sudo btrfs balance start -musage={{20}},limit={{10}},devid={{devid}} {{path/to/btrfs_filesystem}}` + +- Convert data blocks to the raid6 and metadata to raid1c3 (see mkfs.btrfs(8) for profiles): + +`sudo btrfs balance start -dconvert={{raid6}} -mconvert={{raid1c3}} {{path/to/btrfs_filesystem}}` + +- Convert data blocks to raid1, skipping already converted chunks (e.g. after a previous cancelled conversion operation): + +`sudo btrfs balance start -dconvert={{raid1}},soft {{path/to/btrfs_filesystem}}` + +- Cancel, pause, or resume a running or paused balance operation: + +`sudo btrfs balance {{cancel|pause|resume}} {{path/to/btrfs_filesystem}}` diff --git a/pages/linux/btrfs-check.md b/pages/linux/btrfs-check.md new file mode 100644 index 00000000000000..e135ce4af221cf --- /dev/null +++ b/pages/linux/btrfs-check.md @@ -0,0 +1,32 @@ +# btrfs check + +> Check or repair a btrfs filesystem. +> More information: . + +- Check a btrfs filesystem: + +`sudo btrfs check {{path/to/partition}}` + +- Check and repair a btrfs filesystem (dangerous): + +`sudo btrfs check --repair {{path/to/partition}}` + +- Show the progress of the check: + +`sudo btrfs check --progress {{path/to/partition}}` + +- Verify the checksum of each data block (if the filesystem is good): + +`sudo btrfs check --check-data-csum {{path/to/partition}}` + +- Use the `n`-th superblock (`n` can be 0, 1 or 2): + +`sudo btrfs check --super {{n}} {{path/to/partition}}` + +- Rebuild the checksum tree: + +`sudo btrfs check --repair --init-csum-tree {{path/to/partition}}` + +- Rebuild the extent tree: + +`sudo btrfs check --repair --init-extent-tree {{path/to/partition}}` diff --git a/pages/linux/btrfs-device.md b/pages/linux/btrfs-device.md index 4d308d0dec6d3b..a10b066adee511 100644 --- a/pages/linux/btrfs-device.md +++ b/pages/linux/btrfs-device.md @@ -1,7 +1,7 @@ # btrfs device > Manage devices in a btrfs filesystem. -> More information: . +> More information: . - Add one or more devices to a btrfs filesystem: diff --git a/pages/linux/btrfs-filesystem.md b/pages/linux/btrfs-filesystem.md index 40177aa1eec0d5..66f2f04c754b22 100644 --- a/pages/linux/btrfs-filesystem.md +++ b/pages/linux/btrfs-filesystem.md @@ -1,7 +1,7 @@ # btrfs filesystem > Manage btrfs filesystems. -> More information: . +> More information: . - Show filesystem usage (optionally run as root to show detailed information): diff --git a/pages/linux/btrfs-inspect-internal.md b/pages/linux/btrfs-inspect-internal.md new file mode 100644 index 00000000000000..e63cab25f69375 --- /dev/null +++ b/pages/linux/btrfs-inspect-internal.md @@ -0,0 +1,28 @@ +# btrfs inspect-internal + +> Query internal information of a btrfs filesystem. +> More information: . + +- Print superblock's information: + +`sudo btrfs inspect-internal dump-super {{path/to/partition}}` + +- Print superblock's and all of its copies' information: + +`sudo btrfs inspect-internal dump-super --all {{path/to/partition}}` + +- Print filesystem's metadata information: + +`sudo btrfs inspect-internal dump-tree {{path/to/partition}}` + +- Print list of files in inode `n`-th: + +`sudo btrfs inspect-internal inode-resolve {{n}} {{path/to/btrfs_mount}}` + +- Print list of files at a given logical address: + +`sudo btrfs inspect-internal logical-resolve {{logical_address}} {{path/to/btrfs_mount}}` + +- Print stats of root, extent, csum and fs trees: + +`sudo btrfs inspect-internal tree-stats {{path/to/partition}}` diff --git a/pages/linux/btrfs-property.md b/pages/linux/btrfs-property.md new file mode 100644 index 00000000000000..4af4baaf4fd025 --- /dev/null +++ b/pages/linux/btrfs-property.md @@ -0,0 +1,24 @@ +# btrfs property + +> Get, set, or list properties for a given btrfs filesystem object (files, directories, subvolumes, filesystems, or devices). +> More information: . + +- List available properties (and descriptions) for the given btrfs object: + +`sudo btrfs property list {{path/to/btrfs_object}}` + +- Get all properties for the given btrfs object: + +`sudo btrfs property get {{path/to/btrfs_object}}` + +- Get the `label` property for the given btrfs filesystem or device: + +`sudo btrfs property get {{path/to/btrfs_filesystem}} label` + +- Get all object type-specific properties for the given btrfs filesystem or device: + +`sudo btrfs property get -t {{subvol|filesystem|inode|device}} {{path/to/btrfs_filesystem}}` + +- Set the `compression` property for a given btrfs inode (either a file or directory): + +`sudo btrfs property set {{path/to/btrfs_inode}} compression {{zstd|zlib|lzo|none}}` diff --git a/pages/linux/btrfs-rescue.md b/pages/linux/btrfs-rescue.md new file mode 100644 index 00000000000000..d8196ec6a7e911 --- /dev/null +++ b/pages/linux/btrfs-rescue.md @@ -0,0 +1,24 @@ +# btrfs rescue + +> Try to recover a damaged btrfs filesystem. +> More information: . + +- Rebuild the filesystem metadata tree (very slow): + +`sudo btrfs rescue chunk-recover {{path/to/partition}}` + +- Fix device size alignment related problems (e.g. unable to mount the filesystem with super total bytes mismatch): + +`sudo btrfs rescue fix-device-size {{path/to/partition}}` + +- Recover a corrupted superblock from correct copies (recover the root of filesystem tree): + +`sudo btrfs rescue super-recover {{path/to/partition}}` + +- Recover from an interrupted transactions (fixes log replay problems): + +`sudo btrfs rescue zero-log {{path/to/partition}}` + +- Create a `/dev/btrfs-control` control device when `mknod` is not installed: + +`sudo btrfs rescue create-control-device` diff --git a/pages/linux/btrfs-restore.md b/pages/linux/btrfs-restore.md new file mode 100644 index 00000000000000..46e8fb90388bd6 --- /dev/null +++ b/pages/linux/btrfs-restore.md @@ -0,0 +1,24 @@ +# btrfs restore + +> Try to salvage files from a damaged btrfs filesystem. +> More information: . + +- Restore all files from a btrfs filesystem to a given directory: + +`sudo btrfs restore {{path/to/btrfs_device}} {{path/to/target_directory}}` + +- List (don't write) files to be restored from a btrfs filesystem: + +`sudo btrfs restore --dry-run {{path/to/btrfs_device}} {{path/to/target_directory}}` + +- Restore files matching a given regex ([c]ase-insensitive) files to be restored from a btrfs filesystem (all parent directories of target file(s) must match as well): + +`sudo btrfs restore --path-regex {{regex}} -c {{path/to/btrfs_device}} {{path/to/target_directory}}` + +- Restore files from a btrfs filesystem using a specific root tree `bytenr` (see `btrfs-find-root`): + +`sudo btrfs restore -t {{bytenr}} {{path/to/btrfs_device}} {{path/to/target_directory}}` + +- Restore files from a btrfs filesystem (along with metadata, extended attributes, and Symlinks), overwriting files in the target: + +`sudo btrfs restore --metadata --xattr --symlinks --overwrite {{path/to/btrfs_device}} {{path/to/target_directory}}` diff --git a/pages/linux/btrfs-scrub.md b/pages/linux/btrfs-scrub.md index c962250811be9e..a5b354b0f059cc 100644 --- a/pages/linux/btrfs-scrub.md +++ b/pages/linux/btrfs-scrub.md @@ -2,7 +2,7 @@ > Scrub btrfs filesystems to verify data integrity. > It is recommended to run a scrub once a month. -> More information: . +> More information: . - Start a scrub: diff --git a/pages/linux/btrfs-subvolume.md b/pages/linux/btrfs-subvolume.md index e59e115963da05..57bf3aeae8d14f 100644 --- a/pages/linux/btrfs-subvolume.md +++ b/pages/linux/btrfs-subvolume.md @@ -1,7 +1,7 @@ # btrfs subvolume > Manage btrfs subvolumes and snapshots. -> More information: . +> More information: . - Create a new empty subvolume: diff --git a/pages/linux/btrfs-version.md b/pages/linux/btrfs-version.md new file mode 100644 index 00000000000000..9f94aab4b84ae6 --- /dev/null +++ b/pages/linux/btrfs-version.md @@ -0,0 +1,12 @@ +# btrfs version + +> Display btrfs-progs version. +> More information: . + +- Display btrfs-progs version: + +`btrfs version` + +- Display help: + +`btrfs version --help` diff --git a/pages/linux/btrfs.md b/pages/linux/btrfs.md index d0c5346434ab2a..947a16bfb3cd47 100644 --- a/pages/linux/btrfs.md +++ b/pages/linux/btrfs.md @@ -1,6 +1,8 @@ # btrfs > A filesystem based on the copy-on-write (COW) principle for Linux. +> Some subcommands such as `btrfs device` have their own usage documentation. +> More information: . - Create subvolume: diff --git a/pages/linux/bully.md b/pages/linux/bully.md new file mode 100644 index 00000000000000..dce54a6ff65fd1 --- /dev/null +++ b/pages/linux/bully.md @@ -0,0 +1,13 @@ +# bully + +> Brute-force the WPS pin of a wireless access point. +> Necessary information must be gathered with `airmon-ng` and `airodump-ng` before using `bully`. +> More information: . + +- Crack the password: + +`bully --bssid "{{mac}}" --channel "{{channel}}" --bruteforce "{{interface}}"` + +- Display help: + +`bully --help` diff --git a/pages/linux/burpsuite.md b/pages/linux/burpsuite.md new file mode 100644 index 00000000000000..ca11fd2e6e4cce --- /dev/null +++ b/pages/linux/burpsuite.md @@ -0,0 +1,24 @@ +# burpsuite + +> A GUI based application mainly used in web application penetration testing. +> More information: . + +- Start Burp Suite: + +`burpsuite` + +- Start Burp Suite using the default configuration: + +`burpsuite --use-defaults` + +- Open a specific project file: + +`burpsuite --project-file={{path/to/file}}` + +- Load a specific configuration file: + +`burpsuite --config-file={{path/to/file}}` + +- Start without extensions: + +`burpsuite --disable-extensions` diff --git a/pages/linux/caffeinate.md b/pages/linux/caffeinate.md new file mode 100644 index 00000000000000..4264668fa91ad0 --- /dev/null +++ b/pages/linux/caffeinate.md @@ -0,0 +1,8 @@ +# caffeinate + +> Prevent desktop from sleeping. +> More information: . + +- Prevent desktop from sleeping (use `Ctrl + C` to exit): + +`caffeinate` diff --git a/pages/linux/caffeine-indicator.md b/pages/linux/caffeine-indicator.md new file mode 100644 index 00000000000000..513decf86ef134 --- /dev/null +++ b/pages/linux/caffeine-indicator.md @@ -0,0 +1,8 @@ +# caffeine-indicator + +> Manually inhibit desktop idleness with a toggle. +> More information: . + +- Manually inhibit desktop idleness with a toggle: + +`caffeine-indicator` diff --git a/pages/linux/caffeine.md b/pages/linux/caffeine.md new file mode 100644 index 00000000000000..5fb305c3987d4f --- /dev/null +++ b/pages/linux/caffeine.md @@ -0,0 +1,16 @@ +# caffeine + +> Prevent desktop idleness in full-screen mode. +> More information: . + +- Start a caffeine server: + +`caffeine` + +- Display help: + +`caffeine --help` + +- Display version: + +`caffeine --version` diff --git a/pages/linux/caja.md b/pages/linux/caja.md new file mode 100644 index 00000000000000..78bc8e4f830218 --- /dev/null +++ b/pages/linux/caja.md @@ -0,0 +1,24 @@ +# caja + +> Manages files and directories in MATE desktop environment. +> More information: . + +- Open the current user home directory: + +`caja` + +- Open specific directories in separate windows: + +`caja {{path/to/directory1 path/to/directory2 ...}}` + +- Open specific directories in tabs: + +`caja --tabs {{path/to/directory1 path/to/directory2 ...}}` + +- Open a directory with a specific window size: + +`caja --geometry={{600}}x{{400}} {{path/to/directory}}` + +- Close all windows: + +`caja --quit` diff --git a/pages/linux/cal.md b/pages/linux/cal.md index 44719630042ba2..da909d75a258dd 100644 --- a/pages/linux/cal.md +++ b/pages/linux/cal.md @@ -1,6 +1,7 @@ # cal > Prints calendar information, with the current day highlighted. +> More information: . - Display a calendar for the current month: @@ -10,7 +11,7 @@ `cal -3` -- Use monday as the first day of the week: +- Use Monday as the first day of the week: `cal --monday` diff --git a/pages/linux/calc.md b/pages/linux/calc.md deleted file mode 100644 index e16afd303d6f48..00000000000000 --- a/pages/linux/calc.md +++ /dev/null @@ -1,11 +0,0 @@ -# calc - -> An interactive arbitrary-precision calculator on the terminal. - -- Start calc in interactive mode: - -`calc` - -- Perform a calculation in non-interactive mode: - -`calc -p '{{85 * (36 / 4)}}'` diff --git a/pages/linux/calcurse.md b/pages/linux/calcurse.md index a47ed4d1ae96e4..6f6534735077e1 100644 --- a/pages/linux/calcurse.md +++ b/pages/linux/calcurse.md @@ -1,6 +1,6 @@ # calcurse -> A text-based calendar and scheduling application for the command line. +> A text-based calendar and scheduling application for the command-line. > More information: . - Start calcurse on interactive mode: diff --git a/pages/linux/cat.md b/pages/linux/cat.md new file mode 100644 index 00000000000000..b7de6331b51bb1 --- /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 the standard output: + +`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/cc.md b/pages/linux/cc.md new file mode 100644 index 00000000000000..58c9e98e2acba6 --- /dev/null +++ b/pages/linux/cc.md @@ -0,0 +1,8 @@ +# cc + +> This command is an alias of `gcc`. +> More information: . + +- View documentation for the original command: + +`tldr gcc` diff --git a/pages/linux/cgcreate.md b/pages/linux/cgcreate.md new file mode 100644 index 00000000000000..4dde315d12a61a --- /dev/null +++ b/pages/linux/cgcreate.md @@ -0,0 +1,17 @@ +# cgcreate + +> Create cgroups, used to limit, measure, and control resources used by processes. +> `cgroups` types can be `memory`, `cpu`, `net_cls`, etc. +> More information: . + +- Create a new group: + +`cgcreate -g {{group_type}}:{{group_name}}` + +- Create a new group with multiple cgroup types: + +`cgcreate -g {{group_type1}},{{group_type2}}:{{group_name}}` + +- Create a subgroup: + +`mkdir /sys/fs/cgroup/{{group_type}}/{{group_name}}/{{subgroup_name}}` diff --git a/pages/linux/cgexec.md b/pages/linux/cgexec.md new file mode 100644 index 00000000000000..426fc91cf44f97 --- /dev/null +++ b/pages/linux/cgexec.md @@ -0,0 +1,9 @@ +# cgexec + +> Limit, measure, and control resources used by processes. +> Multiple cgroup types (aka controllers) exist, such as `cpu`, `memory`, etc. +> More information: . + +- Execute a process in a given cgroup with given controller: + +`cgexec -g {{controller}}:{{cgroup_name}} {{process_name}}` diff --git a/pages/linux/cgroups.md b/pages/linux/cgroups.md new file mode 100644 index 00000000000000..738d9eba215b87 --- /dev/null +++ b/pages/linux/cgroups.md @@ -0,0 +1,17 @@ +# cgroups + +> Cgroups aka control groups is a Linux kernel feature for limiting, measuring, and controlling resource usage by processes. +> Cgroups however is not a command, but rather a collection of commands, see the relevant pages below. +> More information: . + +- Show the tldr page for `cgclassify`: + +`tldr cgclassify` + +- Show the tldr page for `cgcreate`: + +`tldr cgcreate` + +- Show the tldr page for `cgexec`: + +`tldr cgexec` diff --git a/pages/linux/chage.md b/pages/linux/chage.md index 6edcb2f9337222..42036ca651ce26 100644 --- a/pages/linux/chage.md +++ b/pages/linux/chage.md @@ -1,23 +1,24 @@ # chage > Change user account and password expiry information. +> More information: . - List password information for the user: -`chage -l {{username}}` +`chage --list {{username}}` - Enable password expiration in 10 days: -`sudo chage -M {{10}} {{username}}` +`sudo chage --maxdays {{10}} {{username}}` - Disable password expiration: -`sudo chage -M -1 {{username}}` +`sudo chage --maxdays {{-1}} {{username}}` - Set account expiration date: -`sudo chage -E {{YYYY-MM-DD}}` +`sudo chage --expiredate {{YYYY-MM-DD}} {{username}}` - Force user to change password on next log in: -`sudo chage -d 0` +`sudo chage --lastday {{0}} {{username}}` diff --git a/pages/linux/chattr.md b/pages/linux/chattr.md index 54a5446b7070ee..15430a652dea68 100644 --- a/pages/linux/chattr.md +++ b/pages/linux/chattr.md @@ -1,6 +1,7 @@ # chattr > Change attributes of files or directories. +> More information: . - Make a file or directory immutable to changes and deletion, even by superuser: diff --git a/pages/common/chcon.md b/pages/linux/chcon.md similarity index 100% rename from pages/common/chcon.md rename to pages/linux/chcon.md diff --git a/pages/linux/chcpu.md b/pages/linux/chcpu.md index 3c761c639c6d4b..180ecf7ca62905 100644 --- a/pages/linux/chcpu.md +++ b/pages/linux/chcpu.md @@ -1,6 +1,7 @@ # chcpu > Enable/disable a system's CPUs. +> More information: . - Disable CPUs via a list of CPU ID numbers: diff --git a/pages/linux/check-language-support.md b/pages/linux/check-language-support.md new file mode 100644 index 00000000000000..07354536fd6362 --- /dev/null +++ b/pages/linux/check-language-support.md @@ -0,0 +1,16 @@ +# check-language-support + +> Display a list of missing language packages on Ubuntu. +> More information: . + +- Display a list of missing language packages based on installed software and enabled locales: + +`check-language-support` + +- List packages for a specific locale: + +`check-language-support --language {{en}}` + +- Display installed packages as well as missing ones: + +`check-language-support --show-installed` diff --git a/pages/linux/check-support-status.md b/pages/linux/check-support-status.md index 606a57e63a442a..8d2b7f7884a58e 100644 --- a/pages/linux/check-support-status.md +++ b/pages/linux/check-support-status.md @@ -1,7 +1,7 @@ # check-support-status > Identify installed Debian packages for which support has had to be limited or prematurely ended. -> More information: . +> More information: . - Display packages whose support is limited, has already ended or will end earlier than the distribution's end of life: diff --git a/pages/linux/checkinstall.md b/pages/linux/checkinstall.md new file mode 100644 index 00000000000000..50954c2395ac4e --- /dev/null +++ b/pages/linux/checkinstall.md @@ -0,0 +1,24 @@ +# checkinstall + +> Track the local installation of a software package, and produce a binary package which can be used with a system's native package manager. +> More information: . + +- Create and install a package with default settings: + +`sudo checkinstall --default` + +- Create a package but don't install it: + +`sudo checkinstall --install={{no}}` + +- Create a package without documentation: + +`sudo checkinstall --nodoc` + +- Create a package and set the name: + +`sudo checkinstall --pkgname {{package}}` + +- Create a package and specify where to save it: + +`sudo checkinstall --pakdir {{path/to/directory}}` diff --git a/pages/linux/checkupdates-aur.md b/pages/linux/checkupdates-aur.md new file mode 100644 index 00000000000000..1be38a0cbf6753 --- /dev/null +++ b/pages/linux/checkupdates-aur.md @@ -0,0 +1,16 @@ +# checkupdates-aur + +> Tool to check pending updates from the Arch User Repository (AUR). +> More information: . + +- List pending updates for AUR packages: + +`checkupdates-aur` + +- List pending updates for AUR packages in debug mode: + +`CHECKUPDATES_DEBUG=1 checkupdates-aur` + +- Display help: + +`checkupdates-aur --help` diff --git a/pages/linux/checkupdates.md b/pages/linux/checkupdates.md new file mode 100644 index 00000000000000..a000118dece1c6 --- /dev/null +++ b/pages/linux/checkupdates.md @@ -0,0 +1,20 @@ +# checkupdates + +> Tool to check pending updates in Arch Linux. +> More information: . + +- List pending updates: + +`checkupdates` + +- List pending updates and download the packages to the pacman cache: + +`checkupdates --download` + +- List pending updates using a specific pacman database: + +`CHECKUPDATES_DB={{path/to/directory}} checkupdates` + +- Display help: + +`checkupdates --help` diff --git a/pages/linux/chfn.md b/pages/linux/chfn.md index 10429826316682..dabb6c4d578fa9 100644 --- a/pages/linux/chfn.md +++ b/pages/linux/chfn.md @@ -1,6 +1,7 @@ # chfn > Update `finger` info for a user. +> More information: . - Update a user's "Name" field in the output of `finger`: diff --git a/pages/linux/chkconfig.md b/pages/linux/chkconfig.md index 8ce18f285ec0fb..f20847ff3a690e 100644 --- a/pages/linux/chkconfig.md +++ b/pages/linux/chkconfig.md @@ -1,6 +1,7 @@ # chkconfig > Manage the runlevel of services on CentOS 6. +> More information: . - List services with runlevel: diff --git a/pages/linux/chntpw.md b/pages/linux/chntpw.md new file mode 100644 index 00000000000000..6a98b02225f8bf --- /dev/null +++ b/pages/linux/chntpw.md @@ -0,0 +1,17 @@ +# chntpw + +> A utility that can edit windows registry, reset user password, promote users to administrator by modifying the Windows SAM. +> Boot target machine with live cd like Kali Linux and run with elevated privileges. +> More information: . + +- List all users in the SAM file: + +`chntpw -l {{path/to/sam_file}}` + +- Edit [u]ser interactively: + +`chntpw -u {{username}} {{path/to/sam_file}}` + +- Use chntpw [i]nteractively: + +`chntpw -i {{path/to/sam_file}}` diff --git a/pages/linux/chpasswd.md b/pages/linux/chpasswd.md new file mode 100644 index 00000000000000..8af261b882b5fe --- /dev/null +++ b/pages/linux/chpasswd.md @@ -0,0 +1,20 @@ +# chpasswd + +> Change the passwords for multiple users by using `stdin`. +> More information: . + +- Change the password for a specific user: + +`printf "{{username}}:{{new_password}}" | sudo chpasswd` + +- Change the passwords for multiple users (The input text must not contain any spaces.): + +`printf "{{username_1}}:{{new_password_1}}\n{{username_2}}:{{new_password_2}}" | sudo chpasswd` + +- Change the password for a specific user, and specify it in encrypted form: + +`printf "{{username}}:{{new_encrypted_password}}" | sudo chpasswd --encrypted` + +- Change the password for a specific user, and use a specific encryption for the stored password: + +`printf "{{username}}:{{new_password}}" | sudo chpasswd --crypt-method {{NONE|DES|MD5|SHA256|SHA512}}` diff --git a/pages/linux/chronyc.md b/pages/linux/chronyc.md new file mode 100644 index 00000000000000..64f187c4b6ca78 --- /dev/null +++ b/pages/linux/chronyc.md @@ -0,0 +1,28 @@ +# chronyc + +> Query the Chrony NTP daemon. +> More information: . + +- Start chronyc in interactive mode: + +`chronyc` + +- Display tracking stats for the Chrony daemon: + +`chronyc tracking` + +- Print the time sources that Chrony is currently using: + +`chronyc sources` + +- Display stats for sources currently used by chrony daemon as a time source: + +`chronyc sourcestats` + +- Step the system clock immediately, bypassing any slewing: + +`chronyc makestep` + +- Display verbose information about each NTP source: + +`chronyc ntpdata` diff --git a/pages/linux/clamav.md b/pages/linux/clamav.md deleted file mode 100644 index 5b0abef721ceb6..00000000000000 --- a/pages/linux/clamav.md +++ /dev/null @@ -1,21 +0,0 @@ -# clamav - -> Open-source anti-virus program. -> Designed especially for e-mail scanning on mail gateways, but can be used in other contexts. -> More information: . - -- Update virus definitions: - -`freshclam` - -- Scan a file for viruses: - -`clamscan {{path/to/file}}` - -- Scan directories recursively and print out infected files: - -`clamscan --recursive --infected {{path/to/directory}}` - -- Scan directories recursively and move them into quarantine: - -`clamscan --recursive --move={{directory}}` diff --git a/pages/linux/cloud-init.md b/pages/linux/cloud-init.md new file mode 100644 index 00000000000000..a591d86be198eb --- /dev/null +++ b/pages/linux/cloud-init.md @@ -0,0 +1,24 @@ +# cloud-init + +> Command line tool for managing cloud instance initialization. +> More information: . + +- Display the status of the most recent cloud-init run: + +`cloud-init status` + +- Wait for cloud-init to finish running and then report status: + +`cloud-init status --wait` + +- List available top-level metadata keys to query: + +`cloud-init query --list-keys` + +- Query cached instance metadata for data: + +`cloud-init query {{dot_delimited_variable_path}}` + +- Clean logs and artifacts to allow cloud-init to rerun: + +`cloud-init clean` diff --git a/pages/linux/cmus.md b/pages/linux/cmus.md index cbeabeb5f9227e..f58d062313068b 100644 --- a/pages/linux/cmus.md +++ b/pages/linux/cmus.md @@ -1,7 +1,8 @@ # cmus -> Commandline Music Player. +> Command-line Music Player. > Use arrow keys to navigate, `` to select, and numbers 1-8 switch between different views. +> More information: . - Open cmus into the specified directory (this will become your new working directory): diff --git a/pages/linux/cockpit-bridge.md b/pages/linux/cockpit-bridge.md new file mode 100644 index 00000000000000..f0929f61c3a7f9 --- /dev/null +++ b/pages/linux/cockpit-bridge.md @@ -0,0 +1,12 @@ +# cockpit-bridge + +> Relay messages and commands between the front end and server in the cockpit suite. +> More information: . + +- List all cockpit packages: + +`cockpit-bridge --packages` + +- Display help: + +`cockpit-bridge --help` diff --git a/pages/linux/cockpit-desktop.md b/pages/linux/cockpit-desktop.md new file mode 100644 index 00000000000000..35af50aa86e5ef --- /dev/null +++ b/pages/linux/cockpit-desktop.md @@ -0,0 +1,13 @@ +# cockpit-desktop + +> Provides secure access to Cockpit pages in an already running session. +> It starts `cockpit-ws` and a web browser in an isolated network space and a `cockpit-bridge` in a running user session. +> More information: . + +- Open a page: + +`cockpit-desktop {{url}} {{SSH_host}}` + +- Open storage page: + +`cockpit-desktop {{/cockpit/@localhost/storage/index.html}}` diff --git a/pages/linux/cockpit-tls.md b/pages/linux/cockpit-tls.md new file mode 100644 index 00000000000000..5ff2e0ae338b82 --- /dev/null +++ b/pages/linux/cockpit-tls.md @@ -0,0 +1,12 @@ +# cockpit-tls + +> TLS terminating HTTP proxy to encrypt traffic between a client and `cockpit-ws`. +> More information: . + +- Serve HTTP requests to a specific port instead of port `9090`: + +`cockpit-tls --port {{port}}` + +- Display help: + +`cockpit-tls --help` diff --git a/pages/linux/cockpit-ws.md b/pages/linux/cockpit-ws.md new file mode 100644 index 00000000000000..b63d8afeaba695 --- /dev/null +++ b/pages/linux/cockpit-ws.md @@ -0,0 +1,24 @@ +# cockpit-ws + +> Communicate between the browser application and various configuration tools and services like `cockpit-bridge`. +> More information: . + +- Start with authentication via SSH at `127.0.0.1` with port `22` enabled: + +`cockpit-ws --local-ssh` + +- Start an HTTP server on a specific port: + +`cockpit-ws --port {{port}}` + +- Start and bind to a specific IP address (defaults to `0.0.0.0`): + +`cockpit-ws --address {{ip_address}}` + +- Start without TLS: + +`cockpit-ws --no-tls` + +- Display help: + +`cockpit-ws --help` diff --git a/pages/linux/colrm.md b/pages/linux/colrm.md index dad912ac8d730f..2c0693eb5303e8 100644 --- a/pages/linux/colrm.md +++ b/pages/linux/colrm.md @@ -1,8 +1,9 @@ # colrm -> Remove columns from stdin. +> Remove columns from `stdin`. +> More information: . -- Remove first column of stdin: +- Remove first column of `stdin`: `colrm {{1 1}}` diff --git a/pages/linux/compgen.md b/pages/linux/compgen.md deleted file mode 100644 index 15e35051948370..00000000000000 --- a/pages/linux/compgen.md +++ /dev/null @@ -1,23 +0,0 @@ -# compgen - -> A built-in command for auto-completion in bash, which is called on pressing TAB key twice. - -- List all commands that you could run: - -`compgen -c` - -- List all aliases: - -`compgen -a` - -- List all functions that you could run: - -`compgen -A function` - -- Show shell reserved key words: - -`compgen -k` - -- See all available commands/aliases starting with 'ls': - -`compgen -ac {{ls}}` diff --git a/pages/linux/compopt.md b/pages/linux/compopt.md new file mode 100644 index 00000000000000..d76e6316e5e632 --- /dev/null +++ b/pages/linux/compopt.md @@ -0,0 +1,12 @@ +# compopt + +> Print or change the completion options for a command. +> More information: . + +- Print the options for the currently executing completion: + +`compopt` + +- Print the completion options for given command: + +`compopt {{command}}` diff --git a/pages/linux/compose.md b/pages/linux/compose.md index 3930de4920f67e..7de476d507167c 100644 --- a/pages/linux/compose.md +++ b/pages/linux/compose.md @@ -2,6 +2,7 @@ > An alias to a `run-mailcap`'s action compose. > Originally `run-mailcap` is used to mime-type/file. +> More information: . - Compose action can be used to compose any existing file or new on default mailcap edit tool: diff --git a/pages/linux/conky.md b/pages/linux/conky.md index 4cdc80fe793fb3..504f61ed1979da 100644 --- a/pages/linux/conky.md +++ b/pages/linux/conky.md @@ -11,7 +11,7 @@ `conky -C > ~/.conkyrc` -- Launch conky with a given config file: +- Launch Conky with a given config file: `conky -c {{path/to/config}}` @@ -19,9 +19,9 @@ `conky -d` -- Align conky on the desktop: +- Align Conky on the desktop: -`conky -a {{{top,bottom,middle}_{left,right,middle}}}` +`conky -a {{top|bottom|middle}}_{{left|right|middle}}` - Pause for 5 seconds at startup before launching: diff --git a/pages/linux/conntrack.md b/pages/linux/conntrack.md new file mode 100644 index 00000000000000..603fd4895ae9bf --- /dev/null +++ b/pages/linux/conntrack.md @@ -0,0 +1,25 @@ +# conntrack + +> Interact with the Netfilter connection tracking system. +> Search, list, inspect, modify, and delete connection flows. +> More information: . + +- List all currently tracked connections: + +`conntrack --dump` + +- Display a real-time event log of connection changes: + +`conntrack --event` + +- Display a real-time event log of connection changes and associated timestamps: + +`conntrack --event -o timestamp` + +- Display a real-time event log of connection changes for a specific IP address: + +`conntrack --event --orig-src {{ip_address}}` + +- Delete all flows for a specific source IP address: + +`conntrack --delete --orig-src {{ip_address}}` diff --git a/pages/linux/coproc.md b/pages/linux/coproc.md new file mode 100644 index 00000000000000..32104f4996b13a --- /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 ede074ec3fb2f9..ccb722da720711 100644 --- a/pages/linux/cp.md +++ b/pages/linux/cp.md @@ -1,6 +1,7 @@ # cp > Copy files and directories. +> More information: . - Copy a file to another location: @@ -18,11 +19,15 @@ `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}}` -- Dereference symbolic links before copying: +- Follow symbolic links before copying: `cp -L {{link}} {{path/to/target_directory}}` diff --git a/pages/linux/cpufreq-aperf.md b/pages/linux/cpufreq-aperf.md index f18f3e3c3f792e..e7f1a010c2abaa 100644 --- a/pages/linux/cpufreq-aperf.md +++ b/pages/linux/cpufreq-aperf.md @@ -2,6 +2,7 @@ > Calculate the average CPU frequency over a time period. > Requires root privileges. +> More information: . - Start calculating, defaulting to all CPU cores and 1 second refresh interval: @@ -11,7 +12,7 @@ `sudo cpufreq-aperf -c {{1}}` -- Start calculating with a 3 seconds refresh interval for all CPU cores: +- Start calculating with a 3 second refresh interval for all CPU cores: `sudo cpufreq-aperf -i {{3}}` diff --git a/pages/linux/cpufreq-info.md b/pages/linux/cpufreq-info.md index af14d1a672f615..f2c2cf4ece84af 100644 --- a/pages/linux/cpufreq-info.md +++ b/pages/linux/cpufreq-info.md @@ -1,6 +1,7 @@ # cpufreq-info > A tool to show CPU frequency information. +> More information: . - Show CPU frequency information for all CPUs: diff --git a/pages/linux/cpufreq-set.md b/pages/linux/cpufreq-set.md index 57e973857f4253..4c4c1ee2f6d289 100644 --- a/pages/linux/cpufreq-set.md +++ b/pages/linux/cpufreq-set.md @@ -2,6 +2,7 @@ > A tool to modify CPU frequency settings. > The frequency value should range between the output of command `cpufreq-info -l`. +> More information: . - Set the CPU frequency policy of CPU 1 to "userspace": diff --git a/pages/linux/cpuid.md b/pages/linux/cpuid.md index 24d7c72731941b..97d9710d28907c 100644 --- a/pages/linux/cpuid.md +++ b/pages/linux/cpuid.md @@ -1,6 +1,7 @@ # cpuid > Display detailed information about all CPUs. +> More information: . - Display information for all CPUs: diff --git a/pages/linux/cpupower.md b/pages/linux/cpupower.md new file mode 100644 index 00000000000000..ae4755d0a1468c --- /dev/null +++ b/pages/linux/cpupower.md @@ -0,0 +1,25 @@ +# cpupower + +> Tools regarding CPU power and tuning options. +> This command is available as part of the `cpupower` package, or as part of `kernel-tools` on Fedora. +> More information: . + +- List CPUs: + +`sudo cpupower --cpu {{all}} info` + +- Print information about all cores: + +`sudo cpupower --cpu {{all}} info` + +- Set all CPUs to a power-saving frequency governor: + +`sudo cpupower --cpu {{all}} frequency-set --governor {{powersave}}` + +- Print CPU 0's available frequency [g]overnors: + +`sudo cpupower --cpu {{0}} frequency-info g | grep "analyzing\|governors"` + +- Print CPU 4's frequency from the hardware, in a human-readable format: + +`sudo cpupower --cpu {{4}} frequency-info --hwfreq --human` diff --git a/pages/linux/create_ap.md b/pages/linux/create_ap.md index e729db08d02dfe..84ef7ae2e1e45c 100644 --- a/pages/linux/create_ap.md +++ b/pages/linux/create_ap.md @@ -1,6 +1,7 @@ # create_ap > Create an AP (Access Point) at any channel. +> More information: . - Create an open network with no passphrase: @@ -12,7 +13,7 @@ - Create an access point without Internet sharing: -`create_ap -n {{wlan0}} {{acces_point_ssid}} {{passphrase}}` +`create_ap -n {{wlan0}} {{access_point_ssid}} {{passphrase}}` - Create a bridged network with Internet sharing: @@ -22,10 +23,10 @@ `create_ap -m bridge {{wlan0}} {{br0}} {{access_point_ssid}} {{passphrase}}` -- Create an access port for Internet sharing from the same WiFi interface: +- Create an access port for Internet sharing from the same Wi-Fi interface: `create_ap {{wlan0}} {{wlan0}} {{access_point_ssid}} {{passphrase}}` -- Choose a different WiFi adapter driver: +- Choose a different Wi-Fi adapter driver: `create_ap --driver {{wifi_adapter}} {{wlan0}} {{eth0}} {{access_point_ssid}} {{passphrase}}` diff --git a/pages/linux/createrepo.md b/pages/linux/createrepo.md new file mode 100644 index 00000000000000..3a6b370485a990 --- /dev/null +++ b/pages/linux/createrepo.md @@ -0,0 +1,16 @@ +# createrepo + +> Initializes an RPM repository in the given directory, including all XML and SQLite files. +> More information: . + +- Initialize a basic repository in a directory: + +`createrepo {{path/to/directory}}` + +- Initialize a repository, exclude test RPMs and display verbose logs: + +`createrepo -v -x {{test_*.rpm}} {{path/to/directory}}` + +- Initialize a repository, using SHA1 as the checksum algorithm, and ignoring symbolic links: + +`createrepo -S -s {{sha1}} {{path/to/directory}}` diff --git a/pages/linux/cryptcat.md b/pages/linux/cryptcat.md new file mode 100644 index 00000000000000..39b0b78d796fae --- /dev/null +++ b/pages/linux/cryptcat.md @@ -0,0 +1,24 @@ +# cryptcat + +> Cryptcat is netcat with encryption capabilities. +> More information: . + +- [l]isten on a specified [p]ort and print any data received: + +`cryptcat -k {{password}} -l -p {{port}}` + +- Connect to a certain port: + +`cryptcat -k {{password}} {{ip_address}} {{port}}` + +- Set a timeout [w]: + +`cryptcat -k {{password}} -w {{timeout_in_seconds}} {{ip_address}} {{port}}` + +- Scan [z] the open ports of a specified host: + +`cryptcat -v -z {{ip_address}} {{port}}` + +- Act as proxy and forward data from a local TCP port to the given remote host: + +`cryptcat -k {{password}} -l -p {{local_port}} | cryptcat -k {{password}} {{hostname}} {{remote_port}}` diff --git a/pages/linux/cryptsetup.md b/pages/linux/cryptsetup.md index 246523a385371a..c5ca535cefec75 100644 --- a/pages/linux/cryptsetup.md +++ b/pages/linux/cryptsetup.md @@ -1,6 +1,7 @@ # cryptsetup > Manage plain dm-crypt and LUKS (Linux Unified Key Setup) encrypted volumes. +> More information: . - Initialize a LUKS volume (overwrites all data on the partition): diff --git a/pages/linux/csplit.md b/pages/linux/csplit.md index 3ccb8feaf4303b..43c80b9ca31851 100644 --- a/pages/linux/csplit.md +++ b/pages/linux/csplit.md @@ -6,20 +6,20 @@ - Split a file at lines 5 and 23: -`csplit {{file}} {{5}} {{23}}` +`csplit {{path/to/file}} {{5}} {{23}}` - Split a file every 5 lines (this will fail if the total number of lines is not divisible by 5): -`csplit {{file}} {{5}} {*}` +`csplit {{path/to/file}} {{5}} {*}` - Split a file every 5 lines, ignoring exact-division error: -`csplit -k {{file}} {{5}} {*}` +`csplit -k {{path/to/file}} {{5}} {*}` - Split a file at line 5 and use a custom prefix for the output files: -`csplit {{file}} {{5}} -f {{prefix}}` +`csplit {{path/to/file}} {{5}} -f {{prefix}}` - Split a file at a line matching a regular expression: -`csplit {{file}} /{{regex}}/` +`csplit {{path/to/file}} /{{regular_expression}}/` diff --git a/pages/linux/ctr.md b/pages/linux/ctr.md index b643e39bebf307..500623b0bfee35 100644 --- a/pages/linux/ctr.md +++ b/pages/linux/ctr.md @@ -1,6 +1,6 @@ # ctr -> Manage Containerd containers and images. +> Manage `containerd` containers and images. > More information: . - List all containers (running and stopped): @@ -17,4 +17,4 @@ - Tag an image: -`ctr images tag {{souce_image}}:{{source_tag}} {{target_image}}:{{target_tag}}` +`ctr images tag {{source_image}}:{{source_tag}} {{target_image}}:{{target_tag}}` diff --git a/pages/linux/ctrlaltdel.md b/pages/linux/ctrlaltdel.md index 897ef25c3529c7..50784e07e4292a 100644 --- a/pages/linux/ctrlaltdel.md +++ b/pages/linux/ctrlaltdel.md @@ -1,6 +1,7 @@ # ctrlaltdel > Utility to control what happens when CTRL+ALT+DEL is pressed. +> More information: . - Get current setting: diff --git a/pages/linux/curlie.md b/pages/linux/curlie.md new file mode 100644 index 00000000000000..2110adc886645f --- /dev/null +++ b/pages/linux/curlie.md @@ -0,0 +1,20 @@ +# curlie + +> Curlie is a frontend to curl that adds the ease of use of httpie. +> More information: . + +- Send a GET request: + +`curlie {{httpbin.org/get}}` + +- Send a POST request: + +`curlie post {{httpbin.org/post}} {{name=john}} {{age:=25}}` + +- Send a GET request with query parameters (e.g. `first_param=5&second_param=true`): + +`curlie get {{httpbin.org/get}} {{first_param==5}} {{second_param==true}}` + +- Send a GET request with a custom header: + +`curlie get {{httpbin.org/get}} {{header-name:header-value}}` diff --git a/pages/linux/daemon.md b/pages/linux/daemon.md new file mode 100644 index 00000000000000..8f5ad57ff08536 --- /dev/null +++ b/pages/linux/daemon.md @@ -0,0 +1,28 @@ +# daemon + +> Run processes into daemons. +> More information: . + +- Run a command as a daemon: + +`daemon --name="{{name}}" {{command}}` + +- Run a command as a daemon which will restart if the command crashes: + +`daemon --name="{{name}}" --respawn {{command}}` + +- Run a command as a daemon which will restart if it crashes, with two attempts every 10 seconds: + +`daemon --name="{{name}}" --respawn --attempts=2 --delay=10 {{command}}` + +- Run a command as a daemon, writing logs to a specific file: + +`daemon --name="{{name}}" --errlog={{path/to/file.log}} {{command}}` + +- Kill a daemon (SIGTERM): + +`daemon --name="{{name}}" --stop` + +- List daemons: + +`daemon --list` diff --git a/pages/linux/daemonize.md b/pages/linux/daemonize.md index 602e962f62af29..69b186fcba998b 100644 --- a/pages/linux/daemonize.md +++ b/pages/linux/daemonize.md @@ -7,7 +7,7 @@ `daemonize {{command}} {{command_arguments}}` -- Write the pid to the specified file: +- Write the PID to the specified file: `daemonize -p {{path/to/pidfile}} {{command}} {{command_arguments}}` diff --git a/pages/linux/datamash.md b/pages/linux/datamash.md index 35fe08e3e9d0f0..bbc79541a0073d 100644 --- a/pages/linux/datamash.md +++ b/pages/linux/datamash.md @@ -1,6 +1,7 @@ # datamash > Tool to perform basic numeric, textual and statistical operations on input textual data files. +> More information: . - Get max, min, mean and median of a single column of numbers: diff --git a/pages/linux/dbclient.md b/pages/linux/dbclient.md new file mode 100644 index 00000000000000..07b3714a8a434a --- /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/dbus-daemon.md b/pages/linux/dbus-daemon.md index d8aee28dbd67d8..e2d279753378c7 100644 --- a/pages/linux/dbus-daemon.md +++ b/pages/linux/dbus-daemon.md @@ -1,6 +1,7 @@ # dbus-daemon > The D-Bus message daemon, allowing multiple programs to exchange messages. +> More information: . - Run the daemon with a configuration file: @@ -18,7 +19,7 @@ `dbus-daemon --address {{address}}` -- Output the process id to stdout: +- Output the process ID to `stdout`: `dbus-daemon --print-pid` diff --git a/pages/linux/dconf-read.md b/pages/linux/dconf-read.md new file mode 100644 index 00000000000000..c18e3f4a658d6e --- /dev/null +++ b/pages/linux/dconf-read.md @@ -0,0 +1,13 @@ +# dconf read + +> Read key values from dconf databases. +> See also: `dconf`. +> More information: . + +- Print a specific key value: + +`dconf read {{/path/to/key}}` + +- Print a specific key [d]efault value: + +`dconf read -d {{/path/to/key}}` diff --git a/pages/linux/dconf-reset.md b/pages/linux/dconf-reset.md new file mode 100644 index 00000000000000..5752c659be639c --- /dev/null +++ b/pages/linux/dconf-reset.md @@ -0,0 +1,13 @@ +# dconf reset + +> Reset key values in dconf databases. +> See also: `dconf`. +> More information: . + +- Reset a specific key value: + +`dconf read {{/path/to/key}}` + +- Reset a specific directory: + +`dconf read -d {{/path/to/directory/}}` diff --git a/pages/linux/dconf-write.md b/pages/linux/dconf-write.md new file mode 100644 index 00000000000000..637f35c7935861 --- /dev/null +++ b/pages/linux/dconf-write.md @@ -0,0 +1,29 @@ +# dconf write + +> Write key values in dconf databases. +> See also: `dconf`. +> More information: . + +- Write a specific key value: + +`dconf write {{/path/to/key}} "{{value}}"` + +- Write a specific string key value: + +`dconf write {{/path/to/key}} "'{{string}}'"` + +- Write a specific integer key value: + +`dconf write {{/path/to/key}} "{{5}}"` + +- Write a specific boolean key value: + +`dconf write {{/path/to/key}} "{{true|false}}"` + +- Write a specific array key value: + +`dconf write {{/path/to/key}} "[{{'first', 'second', ...}}]"` + +- Write a specific empty array key value: + +`dconf write {{/path/to/key}} "@as []"` diff --git a/pages/linux/dconf.md b/pages/linux/dconf.md new file mode 100644 index 00000000000000..66c95751252e30 --- /dev/null +++ b/pages/linux/dconf.md @@ -0,0 +1,29 @@ +# dconf + +> Manage dconf databases. +> See also: `dconf-read`, `dconf-reset`, `dconf-write`, `gsettings`. +> More information: . + +- Print a specific key value: + +`dconf read {{/path/to/key}}` + +- Print a specific path sub-directories and sub-keys: + +`dconf list {{/path/to/directory/}}` + +- Write a specific key value: + +`dconf write {{/path/to/key}} "{{value}}"` + +- Reset a specific key value: + +`dconf reset {{/path/to/key}}` + +- Watch a specific key/directory for changes: + +`dconf watch {{/path/to/key|/path/to/directory/}}` + +- Dump a specific directory in INI file format: + +`dconf dump {{/path/to/directory/}}` diff --git a/pages/linux/dd.md b/pages/linux/dd.md new file mode 100644 index 00000000000000..04392116464bdd --- /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/ddcutil.md b/pages/linux/ddcutil.md new file mode 100644 index 00000000000000..cece71b376c20b --- /dev/null +++ b/pages/linux/ddcutil.md @@ -0,0 +1,21 @@ +# ddcutil + +> Control the settings of connected displays via DDC/CI. +> This command requires the kernel module `i2c-dev` to be loaded. See also: `modprobe`. +> More information: . + +- List all compatible displays: + +`ddcutil detect` + +- Change the brightness (option 0x10) of display 1 to 50%: + +`ddcutil --display {{1}} setvcp {{10}} {{50}}` + +- Increase the contrast (option 0x12) of display 1 by 5%: + +`ddcutil -d {{1}} setvcp {{12}} {{+}} {{5}}` + +- Read the settings of display 1: + +`ddcutil -d {{1}} getvcp {{ALL}}` diff --git a/pages/linux/debman.md b/pages/linux/debman.md index ee2522bf1a9f90..44b004e0271c76 100644 --- a/pages/linux/debman.md +++ b/pages/linux/debman.md @@ -1,6 +1,7 @@ # debman > Read man pages from uninstalled packages. +> More information: . - Read a man page for a command that is provided by a specified package name: diff --git a/pages/linux/debootstrap.md b/pages/linux/debootstrap.md index 2da3d54030d070..30ce05d64dd0ac 100644 --- a/pages/linux/debootstrap.md +++ b/pages/linux/debootstrap.md @@ -7,6 +7,10 @@ `sudo debootstrap stable {{path/to/debian-root/}} http://deb.debian.org/debian` +- Create a minimal system including only required packages: + +`sudo debootstrap --variant=minbase stable {{path/to/debian-root/}}` + - Create an Ubuntu 20.04 system inside the `focal-root` directory with a local mirror: `sudo debootstrap focal {{path/to/focal-root/}} {{file:///path/to/mirror/}}` diff --git a/pages/linux/deborphan.md b/pages/linux/deborphan.md new file mode 100644 index 00000000000000..b54084da72c123 --- /dev/null +++ b/pages/linux/deborphan.md @@ -0,0 +1,16 @@ +# deborphan + +> Display orphan packages on operating systems using the APT package manager. +> More information: . + +- Display library packages (from the "libs" section of the package repository) which are not required by another package: + +`deborphan` + +- List orphan packages from the "libs" section as well as orphan packages that have a name that looks like a library name: + +`deborphan --guess-all` + +- Find packages which are only recommended or suggested (but not required) by another package: + +`deborphan --nice-mode` diff --git a/pages/linux/debsecan.md b/pages/linux/debsecan.md new file mode 100644 index 00000000000000..68104f51ecefa5 --- /dev/null +++ b/pages/linux/debsecan.md @@ -0,0 +1,24 @@ +# debsecan + +> Debian Security Analyzer, a tool to list vulnerabilities on a particular Debian installation. +> More information: . + +- List vulnerable installed packages on the current host: + +`debsecan` + +- List vulnerable installed packages of a specific suite: + +`debsecan --suite {{release_code_name}}` + +- List only fixed vulnerabilities: + +`debsecan --suite {{release_code_name}} --only-fixed` + +- List only fixed vulnerabilities of unstable ("sid") and mail to root: + +`debsecan --suite {{sid}} --only-fixed --format {{report}} --mailto {{root}} --update-history` + +- Upgrade vulnerable installed packages: + +`sudo apt upgrade $(debsecan --only-fixed --format {{packages}})` diff --git a/pages/linux/debtap.md b/pages/linux/debtap.md new file mode 100644 index 00000000000000..c880cd01eff334 --- /dev/null +++ b/pages/linux/debtap.md @@ -0,0 +1,21 @@ +# debtap + +> Convert Debian packages into Arch Linux packages. +> See also: `pacman-upgrade`. +> More information: . + +- Update debtap database (before the first run): + +`sudo debtap --update` + +- Convert the specified package: + +`debtap {{path/to/package.deb}}` + +- Convert the specified package bypassing all questions, except for editing metadata files: + +`debtap --quiet {{path/to/package.deb}}` + +- Generate a PKGBUILD file: + +`debtap --pkgbuild {{path/to/package.deb}}` diff --git a/pages/linux/debugfs.md b/pages/linux/debugfs.md index 3e282fdd94a041..f8d92a766f90c6 100644 --- a/pages/linux/debugfs.md +++ b/pages/linux/debugfs.md @@ -1,6 +1,7 @@ # debugfs > An interactive ext2/ext3/ext4 filesystem debugger. +> More information: . - Open the filesystem in read only mode: diff --git a/pages/linux/deluser.md b/pages/linux/deluser.md index 2f86ffb4a2816d..4fe330f6c8c821 100644 --- a/pages/linux/deluser.md +++ b/pages/linux/deluser.md @@ -1,21 +1,20 @@ # deluser > Delete a user from the system. -> Note: all commands must be executed as root. > More information: . - Remove a user: -`deluser {{username}}` +`sudo deluser {{username}}` - Remove a user and their home directory: -`deluser --remove-home {{username}}` +`sudo deluser --remove-home {{username}}` - Remove a user and their home, but backup their files into a `.tar.gz` file in the specified directory: -`deluser --backup-to {{path/to/backup_directory}} --remove-home {{username}}` +`sudo deluser --backup-to {{path/to/backup_directory}} --remove-home {{username}}` - Remove a user, and all files owned by them: -`deluser --remove-all-files {{username}}` +`sudo deluser --remove-all-files {{username}}` diff --git a/pages/linux/diff3.md b/pages/linux/diff3.md index 4f01f7d4f8d9f0..bbd226e35d8f04 100644 --- a/pages/linux/diff3.md +++ b/pages/linux/diff3.md @@ -1,6 +1,7 @@ # diff3 > Compare three files line by line. +> More information: . - Compare files: diff --git a/pages/linux/dir.md b/pages/linux/dir.md new file mode 100644 index 00000000000000..ea7af133295253 --- /dev/null +++ b/pages/linux/dir.md @@ -0,0 +1,25 @@ +# dir + +> List directory contents using one line per file, special characters are represented by backslash escape sequences. +> Works as `ls -C --escape`. +> More information: . + +- List all files, including hidden files: + +`dir -all` + +- List files including their author (`-l` is required): + +`dir -l --author` + +- List files excluding those that match a specified blob pattern: + +`dir --hide={{pattern}}` + +- List subdirectories recursively: + +`dir --recursive` + +- Display help: + +`dir --help` diff --git a/pages/linux/dirb.md b/pages/linux/dirb.md new file mode 100644 index 00000000000000..6e2fe049c85f9c --- /dev/null +++ b/pages/linux/dirb.md @@ -0,0 +1,20 @@ +# dirb + +> Scan HTTP-based webservers for directories and files. +> More information: . + +- Scan a webserver using the default wordlist: + +`dirb {{https://example.org}}` + +- Scan a webserver using a custom wordlist: + +`dirb {{https://example.org}} {{path/to/wordlist.txt}}` + +- Scan a webserver non-recursively: + +`dirb {{https://example.org}} -r` + +- Scan a webserver using a specified user-agent and cookie for HTTP-requests: + +`dirb {{https://example.org}} -a {{user_agent_string}} -c {{cookie_string}}` diff --git a/pages/linux/disown.md b/pages/linux/disown.md index b808737cf6577c..75cc98d73900e3 100644 --- a/pages/linux/disown.md +++ b/pages/linux/disown.md @@ -2,6 +2,7 @@ > Allow sub-processes to live beyond the shell that they are attached to. > See also the `jobs` command. +> More information: . - Disown the current job: diff --git a/pages/linux/distrobox-create.md b/pages/linux/distrobox-create.md new file mode 100644 index 00000000000000..7b00b5026894b7 --- /dev/null +++ b/pages/linux/distrobox-create.md @@ -0,0 +1,13 @@ +# distrobox-create + +> 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 container using the Ubuntu image: + +`distrobox-create {{container_name}} --image {{ubuntu:latest}}` + +- 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 new file mode 100644 index 00000000000000..94aecbfda2f64a --- /dev/null +++ b/pages/linux/distrobox-enter.md @@ -0,0 +1,17 @@ +# distrobox-enter + +> 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 container: + +`distrobox-enter {{container_name}}` + +- Enter a distrobox container and run a command at login: + +`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 00000000000000..35fb8eb4de13a0 --- /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_name}} --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 00000000000000..5ac9ac410e023e --- /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 new file mode 100644 index 00000000000000..8bdf5f65c64cfb --- /dev/null +++ b/pages/linux/distrobox-list.md @@ -0,0 +1,13 @@ +# distrobox-list + +> 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: + +`distrobox-list` + +- List all distrobox containers with verbose information: + +`distrobox-list --verbose` diff --git a/pages/linux/distrobox-rm.md b/pages/linux/distrobox-rm.md new file mode 100644 index 00000000000000..cd41263da30602 --- /dev/null +++ b/pages/linux/distrobox-rm.md @@ -0,0 +1,13 @@ +# distrobox-rm + +> Remove a distrobox container. +> Subcommand of `distrobox`. See also: `tldr distrobox`. +> More information: . + +- Remove a distrobox container (Tip: Stop the container before removing it): + +`distrobox-rm {{container_name}}` + +- 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 00000000000000..95abd58c0612a7 --- /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 00000000000000..1727adeb893d99 --- /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 00000000000000..4963ee4147cd0d --- /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/dm-tool.md b/pages/linux/dm-tool.md new file mode 100644 index 00000000000000..553c8688c4be66 --- /dev/null +++ b/pages/linux/dm-tool.md @@ -0,0 +1,20 @@ +# dm-tool + +> A tool to communicate with the display manager. +> More information: . + +- Show the greeter while keeping current desktop session open and waiting to be restored upon authentication by logged in user: + +`dm-tool switch-to-greeter` + +- Lock the current session: + +`dm-tool lock` + +- Switch to a specific user, showing an authentication prompt if required: + +`dm-tool switch-to-user {{username}} {{session}}` + +- Add a dynamic seat from within a running LightDM session: + +`dm-tool add-seat {{xlocal}} {{name}}={{value}}` diff --git a/pages/linux/dmenu.md b/pages/linux/dmenu.md index a102df88659cdc..5201208a3ca24e 100644 --- a/pages/linux/dmenu.md +++ b/pages/linux/dmenu.md @@ -2,6 +2,7 @@ > Dynamic menu. > Creates a menu from a text input with each item on a new line. +> More information: . - Display a menu of the output of the `ls` command: diff --git a/pages/linux/dmesg.md b/pages/linux/dmesg.md index 92d1dfab130dd1..e561bea4ceb42d 100644 --- a/pages/linux/dmesg.md +++ b/pages/linux/dmesg.md @@ -1,6 +1,7 @@ # dmesg > Write the kernel messages to standard output. +> More information: . - Show kernel messages: diff --git a/pages/linux/dmidecode.md b/pages/linux/dmidecode.md index f23ce42bbb9fca..0bd2b612b44ac0 100644 --- a/pages/linux/dmidecode.md +++ b/pages/linux/dmidecode.md @@ -2,6 +2,7 @@ > Display the DMI (alternatively known as SMBIOS) table contents in a human-readable format. > Requires root privileges. +> More information: . - Show all DMI table contents: diff --git a/pages/linux/dnf.md b/pages/linux/dnf.md index 459981647c9523..8007f007d67c75 100644 --- a/pages/linux/dnf.md +++ b/pages/linux/dnf.md @@ -1,7 +1,8 @@ # dnf > Package management utility for RHEL, Fedora, and CentOS (replaces yum). -> More information: . +> For equivalent commands in other package managers, see . +> More information: . - Upgrade installed packages to the newest available versions: @@ -15,14 +16,10 @@ `dnf info {{package}}` -- Install a new package: +- Install a new package (use `-y` to confirm all prompts automatically): `sudo dnf install {{package}}` -- Install a new package and assume yes to all questions: - -`sudo dnf -y install {{package}}` - - Remove a package: `sudo dnf remove {{package}}` @@ -34,3 +31,7 @@ - Find which packages provide a given file: `dnf provides {{file}}` + +- View all past operations: + +`dnf history` diff --git a/pages/linux/dnsmap.md b/pages/linux/dnsmap.md new file mode 100644 index 00000000000000..f597dd5c3bf820 --- /dev/null +++ b/pages/linux/dnsmap.md @@ -0,0 +1,20 @@ +# dnsmap + +> The dnsmap command scans a domain for common subdomains e.g. smtp.domain.org. +> More information: . + +- Scan for subdomains using the internal wordlist: + +`dnsmap {{example.com}}` + +- Specify a list of subdomains to check for: + +`dnsmap {{example.com}} -w {{path/to/wordlist.txt}}` + +- Store results to a CSV file: + +`dnsmap {{example.com}} -c {{path/to/file.csv}}` + +- Ignore 2 IPs that are false positives (up to 5 possible): + +`dnsmap {{example.com}} -i {{123.45.67.89,98.76.54.32}}` diff --git a/pages/linux/dnsrecon.md b/pages/linux/dnsrecon.md index b3f897a6f29d4e..7c0e498c6ca02d 100644 --- a/pages/linux/dnsrecon.md +++ b/pages/linux/dnsrecon.md @@ -11,7 +11,7 @@ `dnsrecon --domain {{example.com}} --name_server {{nameserver.example.com}} --type axfr` -- Scan a domain, using a dictionary of subdomains and hostnames for bruteforcing: +- Scan a domain, using a brute-force attack and a dictionary of subdomains and hostnames: `dnsrecon --domain {{example.com}} --dictionary {{path/to/dictionary.txt}} --type brt` diff --git a/pages/linux/dnstracer.md b/pages/linux/dnstracer.md new file mode 100644 index 00000000000000..894d52006746e0 --- /dev/null +++ b/pages/linux/dnstracer.md @@ -0,0 +1,28 @@ +# dnstracer + +> The dnstracer command determines where a DNS gets its information from. +> More information: . + +- Find out where your local DNS got the information on www.example.com: + +`dnstracer {{www.example.com}}` + +- Start with a [s]pecific DNS that you already know: + +`dnstracer -s {{dns.example.org}} {{www.example.com}}` + +- Only query IPv4 servers: + +`dnstracer -4 {{www.example.com}}` + +- Retry each request 5 times on failure: + +`dnstracer -r {{5}} {{www.example.com}}` + +- Display all steps during execution: + +`dnstracer -v {{www.example.com}}` + +- Display an [o]verview of all received answers after execution: + +`dnstracer -o {{www.example.com}}` diff --git a/pages/linux/do-release-upgrade.md b/pages/linux/do-release-upgrade.md index 1ae1d18cf20933..b9b445d401344b 100644 --- a/pages/linux/do-release-upgrade.md +++ b/pages/linux/do-release-upgrade.md @@ -1,6 +1,7 @@ # do-release-upgrade > The Ubuntu release upgrader. +> More information: . - Upgrade to the latest release: diff --git a/pages/linux/dockerd.md b/pages/linux/dockerd.md index 6af6294ff28ef6..1b310723842580 100644 --- a/pages/linux/dockerd.md +++ b/pages/linux/dockerd.md @@ -7,7 +7,7 @@ `dockerd` -- Run docker daemon and config it to listen to specific sockets(unix,tcp): +- Run docker daemon and config it to listen to specific sockets (UNIX and TCP): `dockerd --host unix://{{path/to/tmp.sock}} --host tcp://{{ip}}` diff --git a/pages/linux/dolphin.md b/pages/linux/dolphin.md new file mode 100644 index 00000000000000..022a89c545308b --- /dev/null +++ b/pages/linux/dolphin.md @@ -0,0 +1,32 @@ +# dolphin + +> KDE's file manager to manage files and directories. +> More information: . + +- Launch the file manager: + +`dolphin` + +- Open specific directories: + +`dolphin {{path/to/directory1 path/to/directory2 ...}}` + +- Open with specific files or directories selected: + +`dolphin --select {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Open a new window: + +`dolphin --new-window` + +- Open specific directories in split view: + +`dolphin --split {{path/to/directory1}} {{path/to/directory2}}` + +- Launch the daemon (only required to use the DBus interface): + +`dolphin --daemon` + +- Display help: + +`dolphin --help` diff --git a/pages/linux/dos2unix.md b/pages/linux/dos2unix.md index a3722cc09d8c4d..5c3a2aeff19a67 100644 --- a/pages/linux/dos2unix.md +++ b/pages/linux/dos2unix.md @@ -1,7 +1,8 @@ # dos2unix > Change DOS-style line endings to Unix-style. -> Replaces CRLF with CR. +> Replaces CRLF with LF. +> More information: . - Change the line endings of a file: diff --git a/pages/linux/dphys-swapfile.md b/pages/linux/dphys-swapfile.md new file mode 100644 index 00000000000000..33cc91062eef9a --- /dev/null +++ b/pages/linux/dphys-swapfile.md @@ -0,0 +1,16 @@ +# dphys-swapfile + +> Manage the swap file on Debian-based Linux systems. +> More information: . + +- Disable the swap file: + +`dphys-swapfile swapoff` + +- Enable the swap file: + +`dphys-swapfile swapon` + +- Create a new swap file: + +`dphys-swapfile setup` diff --git a/pages/linux/dpkg-deb.md b/pages/linux/dpkg-deb.md index 7eb47d1252bd97..b06f8be494f2eb 100644 --- a/pages/linux/dpkg-deb.md +++ b/pages/linux/dpkg-deb.md @@ -1,7 +1,7 @@ # dpkg-deb > Pack, unpack and provide information about Debian archives. -> More information: . +> More information: . - Display information about a package: diff --git a/pages/linux/dpkg-query.md b/pages/linux/dpkg-query.md index b6069ad9a70134..d1930c674ce5cc 100644 --- a/pages/linux/dpkg-query.md +++ b/pages/linux/dpkg-query.md @@ -1,19 +1,24 @@ # dpkg-query > A tool that shows information about installed packages. +> More information: . - List all installed packages: -`dpkg-query -l` +`dpkg-query --list` - List installed packages matching a pattern: -`dpkg-query -l '{{pattern}}'` +`dpkg-query --list '{{libc6*}}'` - List all files installed by a package: -`dpkg-query -L {{package_name}}` +`dpkg-query --listfiles {{libc6}}` - Show information about a package: -`dpkg-query -s {{package_name}}` +`dpkg-query --status {{libc6}}` + +- Search for packages that own files matching a pattern: + +`dpkg-query --search {{/etc/ld.so.conf.d}}` diff --git a/pages/linux/dpkg.md b/pages/linux/dpkg.md index 7560b6d7a3166f..4e80a4ea93ad95 100644 --- a/pages/linux/dpkg.md +++ b/pages/linux/dpkg.md @@ -1,7 +1,9 @@ # dpkg > Debian package manager. -> More information: . +> Some subcommands such as `dpkg deb` have their own usage documentation. +> For equivalent commands in other package managers, see . +> More information: . - Install a package: diff --git a/pages/linux/drawing.md b/pages/linux/drawing.md new file mode 100644 index 00000000000000..d8494b84204b19 --- /dev/null +++ b/pages/linux/drawing.md @@ -0,0 +1,16 @@ +# drawing + +> Free basic raster image editor in GNOME desktop environment. +> More information: . + +- Start Drawing: + +`drawing` + +- Open specific files: + +`drawing {{path/to/image1 path/to/image2 ...}}` + +- Open specific files in a new window: + +`drawing --new-window {{path/to/image1 path/to/image2 ...}}` diff --git a/pages/linux/dropbearconvert.md b/pages/linux/dropbearconvert.md new file mode 100644 index 00000000000000..466997a3c4c391 --- /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 00000000000000..5992d249216ce3 --- /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/duc.md b/pages/linux/duc.md new file mode 100644 index 00000000000000..425ccea0b8a694 --- /dev/null +++ b/pages/linux/duc.md @@ -0,0 +1,28 @@ +# duc + +> Duc is a collection of tools for indexing, inspecting and visualizing disk usage. Duc maintains a database of accumulated sizes of directories of the file system, allowing queries this database, or create fancy graphs to show where data is. +> More information: . + +- Index the /usr directory, writing to the default database location ~/.duc.db: + +`duc index {{/usr}}` + +- List all files and directories under /usr/local, showing relative file sizes in a [g]raph: + +`duc ls --classify --graph {{/usr/local}}` + +- List all files and directories under /usr/local using treeview recursively: + +`duc ls --classify --graph --recursive {{/usr/local}}` + +- Start the graphical interface to explore the file system using sunburst graphs: + +`duc gui {{/usr}}` + +- Run the ncurses console interface to explore the file system: + +`duc ui {{/usr}}` + +- Dump database info: + +`duc info` diff --git a/pages/linux/dumpe2fs.md b/pages/linux/dumpe2fs.md index 5abe7ce8f2c70d..a4019694abd3ca 100644 --- a/pages/linux/dumpe2fs.md +++ b/pages/linux/dumpe2fs.md @@ -12,7 +12,7 @@ `dumpe2fs -b {{/dev/sdXN}}` -- Force display filesystem information even with non-recognisable feature flags: +- Force display filesystem information even with unrecognizable feature flags: `dumpe2fs -f {{/dev/sdXN}}` diff --git a/pages/linux/dunstctl.md b/pages/linux/dunstctl.md new file mode 100644 index 00000000000000..5eb32e0bf5ac80 --- /dev/null +++ b/pages/linux/dunstctl.md @@ -0,0 +1,20 @@ +# dunstctl + +> Control command for `dunst`. +> More information: . + +- Pause notifications: + +`dunstctl set-paused true` + +- Un-pause notifications: + +`dunstctl set-paused false` + +- Close all notifications: + +`dunstctl close-all` + +- Display help: + +`dunstctl --help` diff --git a/pages/linux/dunstify.md b/pages/linux/dunstify.md index 309c9919533773..ef9c5eca31029b 100644 --- a/pages/linux/dunstify.md +++ b/pages/linux/dunstify.md @@ -2,6 +2,7 @@ > A notification tool that is an extension of notify-send, but has more features based around dunst. > Works with all options that work for notify-send. +> More information: . - Show a notification with a given title and message: diff --git a/pages/linux/e2fsck.md b/pages/linux/e2fsck.md index 4ab434a495e764..be05b19c25926c 100644 --- a/pages/linux/e2fsck.md +++ b/pages/linux/e2fsck.md @@ -1,15 +1,20 @@ # e2fsck -> Check a Linux ext2/ext3/ext4 filesystem. The filesystem should be unmounted at the time the command is run. +> Check a Linux ext2/ext3/ext4 filesystem. The partition should be unmounted. +> More information: . - Check filesystem, reporting any damaged blocks: -`e2fsck {{/dev/sdXN}}` +`sudo e2fsck {{/dev/sdXN}}` - Check filesystem and automatically repair any damaged blocks: -`e2fsck -p {{/dev/sdXN}}` +`sudo e2fsck -p {{/dev/sdXN}}` - Check filesystem in read only mode: -`e2fsck -c {{/dev/sdXN}}` +`sudo e2fsck -c {{/dev/sdXN}}` + +- Perform an exhaustive, non-destructive read-write test for bad blocks and blacklist them: + +`sudo e2fsck -fccky {{/dev/sdXN}}` diff --git a/pages/linux/e2image.md b/pages/linux/e2image.md index e13bb4812034f6..c4d68a3b698523 100644 --- a/pages/linux/e2image.md +++ b/pages/linux/e2image.md @@ -7,7 +7,7 @@ `e2image {{/dev/sdXN}} {{path/to/image_file}}` -- Print metadata located on device to stdout: +- Print metadata located on device to `stdout`: `e2image {{/dev/sdXN}} -` diff --git a/pages/linux/e2label.md b/pages/linux/e2label.md index 280e2bd0d1b3cc..01b9f21797c1d1 100644 --- a/pages/linux/e2label.md +++ b/pages/linux/e2label.md @@ -1,6 +1,7 @@ # e2label > Change the label on an ext2/ext3/ext4 filesystem. +> More information: . - Change the volume label on a specific ext partition: diff --git a/pages/linux/e4defrag.md b/pages/linux/e4defrag.md index e3249d589e7713..788e05d1460058 100644 --- a/pages/linux/e4defrag.md +++ b/pages/linux/e4defrag.md @@ -1,6 +1,7 @@ # e4defrag > Defragment an ext4 filesystem. +> More information: . - Defragment the filesystem: diff --git a/pages/linux/ebuild.md b/pages/linux/ebuild.md index 6ee5a3345c7146..9ed701d06ea372 100644 --- a/pages/linux/ebuild.md +++ b/pages/linux/ebuild.md @@ -1,6 +1,7 @@ # ebuild > A low level interface to the Gentoo Portage system. +> More information: . - Create or update the package manifest: diff --git a/pages/linux/edit.md b/pages/linux/edit.md index 2b62046770215d..1cabfb8c32a82b 100644 --- a/pages/linux/edit.md +++ b/pages/linux/edit.md @@ -2,6 +2,7 @@ > An alias to a `run-mailcap`'s action edit. > Originally `run-mailcap` is used to process/edit mime-type/file. +> More information: . - Edit action can be used to view any file on default mailcap explorer: diff --git a/pages/linux/edquota.md b/pages/linux/edquota.md index bd3b261a27d3bc..9931a4386f8389 100644 --- a/pages/linux/edquota.md +++ b/pages/linux/edquota.md @@ -2,6 +2,7 @@ > Edit quotas for a user or group. By default it operates on all filesystems with quotas. > Quota information is stored permanently in the `quota.user` and `quota.group` files in the root of the filesystem. +> More information: . - Edit quota of the current user: diff --git a/pages/linux/efibootmgr.md b/pages/linux/efibootmgr.md index 2f6fb97768a6c9..dc1cb238605abd 100644 --- a/pages/linux/efibootmgr.md +++ b/pages/linux/efibootmgr.md @@ -1,9 +1,9 @@ # efibootmgr -> Manipulate the UEFI Boot Manager (the Bootoptions). +> Manipulate the UEFI Boot Manager. > More information: . -- List the current settings / bootnums: +- List the current settings then bootnums with their name: `efibootmgr` diff --git a/pages/linux/ego.md b/pages/linux/ego.md new file mode 100644 index 00000000000000..e5cb7c05a73036 --- /dev/null +++ b/pages/linux/ego.md @@ -0,0 +1,28 @@ +# ego + +> Funtoo's official system personality management tool. +> More information: . + +- Synchronize the Portage tree: + +`ego sync` + +- Update the bootloader configuration: + +`ego boot update` + +- Read a Funtoo wiki page by name: + +`ego doc {{wiki_page}}` + +- Print current profile: + +`ego profile show` + +- Enable/Disable mix-ins: + +`ego profile mix-in +{{gnome}} -{{kde-plasma-5}}` + +- Query Funtoo bugs, related to a specified package: + +`ego query bug {{package}}` diff --git a/pages/linux/einfo.md b/pages/linux/einfo.md new file mode 100644 index 00000000000000..037261245c1a2c --- /dev/null +++ b/pages/linux/einfo.md @@ -0,0 +1,20 @@ +# einfo + +> Provides the number of records indexed in each field of a given database, the date of the last update of the database, and the available links from the database to other Entrez databases. +> More information: . + +- Print all database names: + +`einfo -dbs` + +- Print all information of the protein database in XML format: + +`einfo -db {{protein}}` + +- Print all fields of the nuccore database: + +`einfo -db {{nuccore}} -fields` + +- Print all links of the protein database: + +`einfo -db {{protein}} -links` diff --git a/pages/linux/eix.md b/pages/linux/eix.md index 7239454ef837d3..71957d868829da 100644 --- a/pages/linux/eix.md +++ b/pages/linux/eix.md @@ -2,6 +2,7 @@ > Utilities for searching local Gentoo packages. > Update local package cache using `eix-update`. +> More information: . - Search for a package: diff --git a/pages/linux/eject.md b/pages/linux/eject.md index 11bf9ae5527b41..46bb480d016cc1 100644 --- a/pages/linux/eject.md +++ b/pages/linux/eject.md @@ -1,6 +1,7 @@ # eject > Eject cds, floppy disks and tape drives. +> More information: . - Display the default device: diff --git a/pages/linux/elink.md b/pages/linux/elink.md new file mode 100644 index 00000000000000..e39709539c8ff5 --- /dev/null +++ b/pages/linux/elink.md @@ -0,0 +1,13 @@ +# elink + +> Look up precomputed neighbors within a database, or find associated records in other databases. +> It is part of the `edirect` package. +> More information: . + +- Search pubmed then find related sequences: + +`esearch -db pubmed -query "{{selective serotonin reuptake inhibitor}}" | elink -target nuccore` + +- Search nucleotide then find related biosamples: + +`esearch -db nuccore -query "{{insulin [PROT] AND rodents [ORGN]}}" | elink -target biosample` diff --git a/pages/linux/emerge.md b/pages/linux/emerge.md index 3eee53fd3ad7a9..87ff76ad8ef642 100644 --- a/pages/linux/emerge.md +++ b/pages/linux/emerge.md @@ -1,6 +1,8 @@ # emerge > Gentoo Linux package manager utility. +> For equivalent commands in other package managers, see . +> More information: . - Synchronize all packages: diff --git a/pages/linux/engrampa.md b/pages/linux/engrampa.md new file mode 100644 index 00000000000000..6f48e64b604322 --- /dev/null +++ b/pages/linux/engrampa.md @@ -0,0 +1,21 @@ +# engrampa + +> Package files into zip/tar file in MATE desktop environment. +> See also: `zip`, `tar`. +> More information: . + +- Start engrampa: + +`engrampa` + +- Open specific archives: + +`engrampa {{path/to/archive1.tar path/to/archive2.tar ...}}` + +- Archive specific files and/or directories recursively: + +`engrampa --add-to={{path/to/compressed.tar}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Extract files and/or directories from archives to a specific path: + +`engrampa --extract-to={{path/to/directory}} {{path/to/archive1.tar path/to/archive2.tar ...}}` diff --git a/pages/linux/enum4linux.md b/pages/linux/enum4linux.md index 75bcbc90892772..5d22de64de1851 100644 --- a/pages/linux/enum4linux.md +++ b/pages/linux/enum4linux.md @@ -1,7 +1,7 @@ # enum4linux > Tool for enumerating Windows and Samba information from remote systems. -> It attempts to offer similar functionality to enum.exe formerly available from www.bindview.com. +> More information: . - Try to enumerate using all methods: @@ -9,16 +9,16 @@ - Enumerate using given login credentials: -`enum4liux -u {{user_name}} -p {{password}} {{remote_host}}` +`enum4linux -u {{user_name}} -p {{password}} {{remote_host}}` - List usernames from a given host: -`enum4liux -U {{remote_host}}` +`enum4linux -U {{remote_host}}` - List shares: -`enum4liux -S {{remote_host}}` +`enum4linux -S {{remote_host}}` - Get OS information: -`enum4liux -o {{remote_host}}` +`enum4linux -o {{remote_host}}` diff --git a/pages/linux/envycontrol.md b/pages/linux/envycontrol.md new file mode 100644 index 00000000000000..f0b7c477fb4680 --- /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 new file mode 100644 index 00000000000000..e7f0352f5de2c2 --- /dev/null +++ b/pages/linux/eopkg.md @@ -0,0 +1,16 @@ +# eopkg + +> Package manager for Solus. +> More information: . + +- Install a specific package: + +`sudo eopkg install {{package_name}}` + +- Update all packages: + +`sudo eopkg upgrade` + +- Search for packages: + +`sudo eopkg search {{search_term}}` diff --git a/pages/linux/equery.md b/pages/linux/equery.md index d785f1975abd89..3641bfd4a59f6d 100644 --- a/pages/linux/equery.md +++ b/pages/linux/equery.md @@ -1,6 +1,7 @@ # equery > View information about Portage packages. +> More information: . - List all installed packages: diff --git a/pages/linux/esa-snap.md b/pages/linux/esa-snap.md new file mode 100644 index 00000000000000..9527b42930648f --- /dev/null +++ b/pages/linux/esa-snap.md @@ -0,0 +1,12 @@ +# snap + +> Sentinel Application Platform (SNAP) for processing satellite data from the European Space Agency (ESA). +> More information: . + +- Display all updates: + +`snap --nosplash --nogui --modules --list --refresh` + +- Display help: + +`snap --help` diff --git a/pages/linux/esearch.md b/pages/linux/esearch.md new file mode 100644 index 00000000000000..55b87216c07172 --- /dev/null +++ b/pages/linux/esearch.md @@ -0,0 +1,21 @@ +# esearch + +> Perform a new Entrez search using terms in indexed fields. +> It is part of the `edirect` package. +> More information: . + +- Search the pubmed database for selective serotonin reuptake inhibitor: + +`esearch -db pubmed -query "{{selective serotonin reuptake inhibitor}}"` + +- Search the protein database using a query and regexp: + +`esearch -db {{protein}} -query {{'Escherichia*'}}` + +- Search the nucleotide database for sequences whose metadata contain insulin and rodents: + +`esearch -db nuccore -query "{{insulin [PROT] AND rodents [ORGN]}}"` + +- Display [h]elp: + +`esearch -h` diff --git a/pages/linux/ethtool.md b/pages/linux/ethtool.md index 2396728b87966b..2d3484243b665e 100644 --- a/pages/linux/ethtool.md +++ b/pages/linux/ethtool.md @@ -11,6 +11,10 @@ `ethtool --driver {{eth0}}` +- Display all supported features for an interface: + +`ethtool --show-features {{eth0}}` + - Display the network usage statistics for an interface: `ethtool --statistics {{eth0}}` @@ -19,6 +23,6 @@ `ethtool --identify {{eth0}} {{10}}` -- Set the link speed, duplex mode, and parameter autonegotiation for a given interface: +- Set the link speed, duplex mode, and parameter auto-negotiation for a given interface: `ethtool -s {{eth0}} speed {{10|100|1000}} duplex {{half|full}} autoneg {{on|off}}` diff --git a/pages/linux/eval.md b/pages/linux/eval.md deleted file mode 100644 index ee1135a91db1a5..00000000000000 --- a/pages/linux/eval.md +++ /dev/null @@ -1,11 +0,0 @@ -# eval - -> Execute arguments as a single command in the current shell and return its result. - -- Call `echo` with the "foo" argument: - -`eval "{{echo foo}}"` - -- Set a variable in the current shell: - -`eval "{{foo=bar}}"` diff --git a/pages/linux/export.md b/pages/linux/export.md deleted file mode 100644 index 06ebceb93bb05b..00000000000000 --- a/pages/linux/export.md +++ /dev/null @@ -1,19 +0,0 @@ -# export - -> Command to mark shell variables in the current environment to be exported with any newly forked child processes. - -- Set a new environment variable: - -`export {{VARIABLE}}={{value}}` - -- Remove an environment variable: - -`export -n {{VARIABLE}}` - -- Mark a shell function for export: - -`export -f {{FUNCTION_NAME}}` - -- Append something to the PATH variable: - -`export PATH=$PATH:{{path/to/append}}` diff --git a/pages/linux/eyed3.md b/pages/linux/eyed3.md index 444818f9f964c7..a4f23009a22074 100644 --- a/pages/linux/eyed3.md +++ b/pages/linux/eyed3.md @@ -1,7 +1,7 @@ # eyeD3 > Read and manipulate metadata of MP3 files. -> More information: . +> More information: . - View information about an MP3 file: diff --git a/pages/linux/f5fpc.md b/pages/linux/f5fpc.md index a9d32c87820715..18dd03527f3606 100644 --- a/pages/linux/f5fpc.md +++ b/pages/linux/f5fpc.md @@ -1,6 +1,7 @@ # f5fpc -> A proprietry commercial SSL VPN client by BIG-IP Edge. +> A proprietary commercial SSL VPN client by BIG-IP Edge. +> More information: . - Open a new VPN connection: diff --git a/pages/linux/faillock.md b/pages/linux/faillock.md new file mode 100644 index 00000000000000..01ce47c0836d8e --- /dev/null +++ b/pages/linux/faillock.md @@ -0,0 +1,16 @@ +# faillock + +> Display and modify authentication failure record files. +> More information: . + +- List login failures of all users: + +`sudo faillock` + +- List login failures of the specified user: + +`sudo faillock --user {{user}}` + +- Reset the failure records of the specified user: + +`sudo faillock --user {{user}} --reset` diff --git a/pages/linux/fakeroot.md b/pages/linux/fakeroot.md new file mode 100644 index 00000000000000..3ebdc7348b1f70 --- /dev/null +++ b/pages/linux/fakeroot.md @@ -0,0 +1,28 @@ +# fakeroot + +> Run a command in an environment faking root privileges for file manipulation. +> More information: . + +- Start the default shell as fakeroot: + +`fakeroot` + +- Run a command as fakeroot: + +`fakeroot -- {{command}} {{command_arguments}}` + +- Run a command as fakeroot and save the environment to a file on exit: + +`fakeroot -s {{path/to/file}} -- {{command}} {{command_arguments}}` + +- Load a fakeroot environment and run a command as fakeroot: + +`fakeroot -i {{path/to/file}} -- {{command}} {{command_arguments}}` + +- Run a command keeping the real ownership of files instead of pretending they are owned by root: + +`fakeroot --unknown-is-real -- {{command}} {{command_arguments}}` + +- Display help: + +`fakeroot --help` diff --git a/pages/linux/faketime.md b/pages/linux/faketime.md index b5c2b75c1c4abb..3c7119d7c8401c 100644 --- a/pages/linux/faketime.md +++ b/pages/linux/faketime.md @@ -1,7 +1,7 @@ # faketime > Fake the system time for a given command. -> More information: . +> More information: . - Fake the time to this evening, before printing the result of `date`: @@ -11,6 +11,6 @@ `faketime '{{yesterday}}' {{bash}}` -- Simulate how any program would act next friday night: +- Simulate how a program would act next Friday night: -`faketime '{{next Friday 1 am}}' {{path/to/any/program}}` +`faketime '{{next Friday 1 am}}' {{path/to/program}}` diff --git a/pages/linux/fallocate.md b/pages/linux/fallocate.md index 49e474fd76b179..a6f8637b255f76 100644 --- a/pages/linux/fallocate.md +++ b/pages/linux/fallocate.md @@ -2,15 +2,16 @@ > Reserve or deallocate disk space to files. > The utility allocates space without zeroing. +> More information: . -- Reserve a file taking up 700MB of disk space: +- Reserve a file taking up 700 MiB of disk space: `fallocate --length {{700M}} {{path/to/file}}` -- Shrink an already allocated file by 200MB: +- Shrink an already allocated file by 200 MiB: `fallocate --collapse-range --length {{200M}} {{path/to/file}}` -- Shrink 20MB of space after 100MB in a file: +- Shrink 20 MB of space after 100 MiB in a file: `fallocate --collapse-range --offset {{100M}} --length {{20M}} {{path/to/file}}` diff --git a/pages/linux/fatlabel.md b/pages/linux/fatlabel.md index 9a742ce4de8166..1b100d3059870c 100644 --- a/pages/linux/fatlabel.md +++ b/pages/linux/fatlabel.md @@ -1,6 +1,7 @@ # fatlabel > Sets or gets the label of a FAT32 partition. +> More information: . - Get the label of a FAT32 partition: diff --git a/pages/linux/fc-cache.md b/pages/linux/fc-cache.md deleted file mode 100644 index 47e8592aa2c87c..00000000000000 --- a/pages/linux/fc-cache.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc-cache - -> Scan font directories in order to build font cache files. - -- Generate font cache files: - -`fc-cache` - -- Force a rebuild of all font cache files, without checking if cache is up-to-date: - -`fc-cache -f` - -- Erase font cache files, then generate new font cache files: - -`fc-cache -r` diff --git a/pages/linux/fc-list.md b/pages/linux/fc-list.md deleted file mode 100644 index d0e38f14aa29f0..00000000000000 --- a/pages/linux/fc-list.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc-list - -> List available fonts installed on the system. - -- Return a list of installed fonts in your system: - -`fc-list` - -- Return a list of installed fonts with given name: - -`fc-list | grep '{{DejaVu Serif}}'` - -- Return the number of installed fonts in your system: - -`fc-list | wc -l` diff --git a/pages/linux/fc-match.md b/pages/linux/fc-match.md deleted file mode 100644 index 9af18eefba66c2..00000000000000 --- a/pages/linux/fc-match.md +++ /dev/null @@ -1,7 +0,0 @@ -# fc-match - -> Match available fonts. - -- Return a sorted list of best matching fonts: - -`fc-match -s '{{DejaVu Serif}}'` diff --git a/pages/linux/fc-pattern.md b/pages/linux/fc-pattern.md deleted file mode 100644 index 3ca45e60db4cf1..00000000000000 --- a/pages/linux/fc-pattern.md +++ /dev/null @@ -1,7 +0,0 @@ -# fc-pattern - -> Shows information about a font matching a pattern. - -- Display default information about a font: - -`fc-pattern -d '{{DejaVu Serif}}'` diff --git a/pages/linux/fc.md b/pages/linux/fc.md deleted file mode 100644 index 7e6c464104e3d5..00000000000000 --- a/pages/linux/fc.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc - -> Open the most recent command and edit it. - -- Open in the default system editor: - -`fc` - -- Specify an editor to open with: - -`fc -e {{'emacs'}}` - -- List recent commands from history: - -`fc -l` diff --git a/pages/linux/fcrackzip.md b/pages/linux/fcrackzip.md index 54701fed748adf..bb41eb44bbd68b 100644 --- a/pages/linux/fcrackzip.md +++ b/pages/linux/fcrackzip.md @@ -1,6 +1,7 @@ # fcrackzip > ZIP archive password cracking utility. +> More information: . - Brute-force a password with a length of 4 to 8 characters, and contains only alphanumeric characters (order matters): diff --git a/pages/linux/fdisk.md b/pages/linux/fdisk.md index aa2f20ffc09b79..c99d7662be84c2 100644 --- a/pages/linux/fdisk.md +++ b/pages/linux/fdisk.md @@ -1,11 +1,37 @@ # fdisk > A program for managing partition tables and partitions on a hard disk. +> See also: `partprobe`. +> More information: . - List partitions: -`fdisk -l` +`sudo fdisk -l` - Start the partition manipulator: -`fdisk {{/dev/sdX}}` +`sudo fdisk {{/dev/sdX}}` + +- Once partitioning a disk, create a partition: + +`n` + +- Once partitioning a disk, select a partition to delete: + +`d` + +- Once partitioning a disk, view the partition table: + +`p` + +- Once partitioning a disk, write the changes made: + +`w` + +- Once partitioning a disk, discard the changes made: + +`q` + +- Once partitioning a disk, open a help menu: + +`m` diff --git a/pages/linux/feh.md b/pages/linux/feh.md deleted file mode 100644 index 84bb2da0341d91..00000000000000 --- a/pages/linux/feh.md +++ /dev/null @@ -1,31 +0,0 @@ -# feh - -> Lightweight image viewing utility. - -- View images locally or using a URL: - -`feh {{path/to/images}}` - -- View images recursively: - -`feh --recursive {{path/to/images}}` - -- View images without window borders: - -`feh --borderless {{path/to/images}}` - -- Exit after the last image: - -`feh --cycle-once {{path/to/images}}` - -- Set the slideshow cycle delay: - -`feh --slideshow-delay {{seconds}} {{path/to/images}}` - -- Set your wallpaper (centered, filled, maximized, scaled or tiled): - -`feh --bg-{{center|fill|max|scale|tile}} {{path/to/image}}` - -- Create a montage of all images within a directory. Outputs as a new image: - -`feh --montage --thumb-height {{150}} --thumb-width {{150}} --index-info "{{%nn%wx%h}}" --output {{path/to/montage_image.png}}` diff --git a/pages/linux/ffuf.md b/pages/linux/ffuf.md new file mode 100644 index 00000000000000..8b38af23963dcd --- /dev/null +++ b/pages/linux/ffuf.md @@ -0,0 +1,28 @@ +# ffuf + +> Subdomain and directory discovery tool. +> More information: . + +- Discover directories using a [w]ordlist on a target [u]rl with [c]olorized and [v]erbose output: + +`ffuf -w {{path/to/wordlist}} -u {{https://target/FUZZ}} -c -v` + +- Fuzz host-[H]eaders with a host file on a target website and [m]atch HTTP 200 [c]ode responses: + +`ffuf -w {{hosts.txt}} -u {{https://example.org}} -H "{{Host: FUZZ}}" -mc {{200}}` + +- Discover directories using a [w]ordlist on a target website with a max individual job time of 60 seconds and recursion discovery depth of 2 levels: + +`ffuf -w {{path/to/wordlist}} -u {{https://target/FUZZ}} -maxtime-job {{60}} -recursion -recursion-depth {{2}}` + +- Fuzz GET parameter on a target website and [f]ilter out message [s]ize response of 4242 bytes: + +`ffuf -w {{path/to/param_names.txt}} -u {{https://target/script.php?FUZZ=test_value}} -fs {{4242}}` + +- Fuzz POST method with POST [d]ata of password on a target website and [f]ilter out HTTP response [c]ode 401: + +`ffuf -w {{path/to/postdata.txt}} -X {{POST}} -d "{{username=admin\&password=FUZZ}}" -u {{https://target/login.php}} -fc {{401}}` + +- Discover subdomains using a subdomain list on a target website: + +`ffuf -w {{subdomains.txt}} -u {{https://website.com}} -H "{{Host: FUZZ.website.com}}"` diff --git a/pages/linux/file-rename.md b/pages/linux/file-rename.md index e183bc9e4e9003..bcd97470fd4a95 100644 --- a/pages/linux/file-rename.md +++ b/pages/linux/file-rename.md @@ -1,7 +1,8 @@ # rename > Rename multiple files. -> NOTE: this page refers to the command from the `file-rename` Debian package. +> NOTE: this page refers to the command from the `rename` Debian package. +> More information: . - Rename files using a Perl Common Regular Expression (substitute 'foo' with 'bar' wherever found): diff --git a/pages/linux/file.md b/pages/linux/file.md deleted file mode 100644 index 785cee746bcc03..00000000000000 --- a/pages/linux/file.md +++ /dev/null @@ -1,23 +0,0 @@ -# file - -> Determine file type. - -- Give a description of the type of the specified file. Works fine for files with no file extension: - -`file {{filename}}` - -- Look inside a zipped file and determine the file type(s) inside: - -`file -z {{foo.zip}}` - -- Allow file to work with special or device files: - -`file -s {{filename}}` - -- Don't stop at first file type match; keep going until the end of the file: - -`file -k {{filename}}` - -- Determine the mime encoding type of a file: - -`file -i {{filename}}` diff --git a/pages/linux/findmnt.md b/pages/linux/findmnt.md index f3d7c3eb000b07..d475e5df6b55c1 100644 --- a/pages/linux/findmnt.md +++ b/pages/linux/findmnt.md @@ -1,6 +1,7 @@ # findmnt > Find your filesystem. +> More information: . - List all mounted filesystems: diff --git a/pages/linux/firejail.md b/pages/linux/firejail.md index 4d98dd035968b5..688a7481f1e53b 100644 --- a/pages/linux/firejail.md +++ b/pages/linux/firejail.md @@ -1,6 +1,7 @@ # firejail > Securely sandboxes processes to containers using built-in Linux capabilities. +> More information: . - Integrate firejail with your desktop environment: diff --git a/pages/linux/firewall-cmd.md b/pages/linux/firewall-cmd.md index 61275c03453051..37330cfff824ce 100644 --- a/pages/linux/firewall-cmd.md +++ b/pages/linux/firewall-cmd.md @@ -1,6 +1,7 @@ # firewall-cmd -> The firewalld command line client. +> The firewalld command-line client. +> More information: . - View the available firewall zones: diff --git a/pages/linux/flameshot.md b/pages/linux/flameshot.md index 321d9900826051..13f6f1a4cb95b5 100644 --- a/pages/linux/flameshot.md +++ b/pages/linux/flameshot.md @@ -1,25 +1,37 @@ # flameshot -> Screenshot utility with a gui interface. +> Screenshot utility with a GUI. > Supports basic image editing, such as text, shapes, colors, and imgur. -> More information: . +> More information: . -- Launch flameshot in gui mode: +- Create a fullscreen screenshot: -`flameshot launcher` +`flameshot full` -- Take a screenshot by clicking and dragging: +- Create a screenshot interactively: `flameshot gui` -- Take a full screen screenshot: +- Create a screenshot and save it to a specific path: -`flameshot full` +`flameshot gui --path {{path/to/directory}}` + +- Create a screenshot interactively in a simplified mode: + +`flameshot launcher` + +- Create a screenshot from a specific monitor: + +`flameshot screen --number {{2}}` + +- Create a screenshot and print it to the standard output: + +`flameshot gui --raw` -- Set the save path to write screenshots to: +- Create a screenshot and copy it to the clipboard: -`flameshot full --path {{path/to/directory}}` +`flameshot gui --clipboard` -- Delay the screenshot for N milliseconds and output to clipboard: +- Create a screenshot with a specific delay in milliseconds: -`flameshot full --delay {{2000}} --clipboard` +`flameshot full --delay {{5000}}` diff --git a/pages/linux/flashrom.md b/pages/linux/flashrom.md index f3b898ad10324a..b316a9226542d6 100644 --- a/pages/linux/flashrom.md +++ b/pages/linux/flashrom.md @@ -19,6 +19,6 @@ `flashrom -p {{programmer}} --verify {{path/to/file}}` -- Probe the chip using RaspberryPi: +- Probe the chip using Raspberry Pi: `flashrom -p {{linux_spi:dev=/dev/spidev0.0}}` diff --git a/pages/linux/flatpak-builder.md b/pages/linux/flatpak-builder.md new file mode 100644 index 00000000000000..0b1ab7b2affd7b --- /dev/null +++ b/pages/linux/flatpak-builder.md @@ -0,0 +1,24 @@ +# flatpak-builder + +> Help build application dependencies. +> More information: . + +- Build a Flatpak and export it to a new repository: + +`flatpak-builder {{path/to/build_directory}} {{path/to/manifest}}` + +- Build a Flatpak and export it to the specified repository: + +`flatpak-builder --repo={{repository_name}} {{path/to/build_directory}} {{path/to/manifest}}` + +- Build a Flatpak and install it locally: + +`flatpak-builder --install {{path/to/build_directory}} {{path/to/manifest}}` + +- Build and sign a Flatpak and export it to the specified repository: + +`flatpak-builder --gpg-sign={{key_id}} --repo={{repository_name}} {{path/to/manifest}}` + +- Run a shell inside of an application sandbox without installing it: + +`flatpak-builder --run {{path/to/build_directory}} {{path/to/manifest}} {{sh}}` diff --git a/pages/linux/flatpak.md b/pages/linux/flatpak.md index 5270c887441111..e576a91e60cda3 100644 --- a/pages/linux/flatpak.md +++ b/pages/linux/flatpak.md @@ -1,6 +1,7 @@ # flatpak > Build, install and run flatpak applications and runtimes. +> More information: . - Run an installed application: @@ -22,14 +23,14 @@ `flatpak remote-add --if-not-exists {{remote_name}} {{remote_url}}` -- List all configured remote sources: - -`flatpak remote-list` - - Remove an installed application: `flatpak remove {{name}}` +- Remove all unused applications: + +`flatpak remove --unused` + - Show information about an installed application: `flatpak info {{name}}` diff --git a/pages/linux/flock.md b/pages/linux/flock.md new file mode 100644 index 00000000000000..f1b4de436b1f8d --- /dev/null +++ b/pages/linux/flock.md @@ -0,0 +1,17 @@ +# flock + +> Manage locks from shell scripts. +> It can be used to ensure that only one process of a command is running. +> More information: . + +- Run a command with a file lock as soon as the lock is not required by others: + +`flock {{path/to/lock.lock}} --command "{{command}}"` + +- Run a command with a file lock, and exit if the lock doesn't exist: + +`flock {{path/to/lock.lock}} --nonblock --command "{{command}}"` + +- Run a command with a file lock, and exit with a specific error code if the lock doesn't exist: + +`flock {{path/to/lock.lock}} --nonblock --conflict-exit-code {{error_code}} -c "{{command}}"` diff --git a/pages/linux/foreman.md b/pages/linux/foreman.md index 67c4e35ceb94df..288c64c684b938 100644 --- a/pages/linux/foreman.md +++ b/pages/linux/foreman.md @@ -1,6 +1,7 @@ # foreman > Manage Procfile-based applications. +> More information: . - Start an application with the Procfile in the current directory: diff --git a/pages/linux/fprind.md b/pages/linux/fprind.md new file mode 100644 index 00000000000000..5b68a94ec436fb --- /dev/null +++ b/pages/linux/fprind.md @@ -0,0 +1,8 @@ +# fprintd + +> Fingerprint management daemon. +> More information: . + +- Display the man page for `fprintd`: + +`man fprintd` diff --git a/pages/linux/fprintd-delete.md b/pages/linux/fprintd-delete.md new file mode 100644 index 00000000000000..c14b3fa162c9aa --- /dev/null +++ b/pages/linux/fprintd-delete.md @@ -0,0 +1,16 @@ +# fprintd-delete + +> Remove fingerprints from the database. +> More information: . + +- Remove all fingerprints for a specific user: + +`fprintd-delete {{username}}` + +- Remove a specific fingerprints for a specific user: + +`fprintd-delete {{username}} --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` + +- Display help: + +`fprintd-delete` diff --git a/pages/linux/fprintd-enroll.md b/pages/linux/fprintd-enroll.md new file mode 100644 index 00000000000000..67dcb9fc4f5af6 --- /dev/null +++ b/pages/linux/fprintd-enroll.md @@ -0,0 +1,24 @@ +# fprintd-enroll + +> Enroll fingerprints into the database. +> More information: . + +- Enroll the right index finger for the current user: + +`fprintd-enroll` + +- Enroll a specific finger for the current user: + +`fprintd-enroll --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` + +- Enroll the right index finger for a specific user: + +`fprintd-enroll {{username}}` + +- Enroll a specific finger for a specific user: + +`fprintd-enroll --finger {{finger_name}} {{username}}` + +- Display help: + +`fprintd-enroll --help` diff --git a/pages/linux/fprintd-list.md b/pages/linux/fprintd-list.md new file mode 100644 index 00000000000000..3caaac5f560915 --- /dev/null +++ b/pages/linux/fprintd-list.md @@ -0,0 +1,16 @@ +# fprintd-list + +> List enrolled fingerprints. +> More information: . + +- List enrolled fingerprints for a specific user: + +`fprintd-list {{username}}` + +- List enrolled fingerprints for a space-separated list of users: + +`fprintd-list {{username1 username2 ...}}` + +- Display help: + +`fprintd-list` diff --git a/pages/linux/fprintd-verify.md b/pages/linux/fprintd-verify.md new file mode 100644 index 00000000000000..68bf64cf655a13 --- /dev/null +++ b/pages/linux/fprintd-verify.md @@ -0,0 +1,28 @@ +# fprintd-verify + +> Verify fingerprints against the database. +> More information: . + +- Verify all stored fingerprints for the current user: + +`fprintd-verify` + +- Verify a specific fingerprint for the current user: + +`fprintd-verify --finger {{left-thumb|left-index-finger|left-middle-finger|left-ring-finger|left-little-finger|right-thumb|right-index-finger|right-middle-finger|right-ring-finger|right-little-finger}}` + +- Verify fingerprints for a specific user: + +`fprint-verify {{username}}` + +- Verify a specific fingerprint for a specific user: + +`fprintd-verify --finger {{finger_name}} {{username}}` + +- Fail the process if a fingerprint doesn't match with ones stored in the database for the current user: + +`fprint-verify --g-fatal-warnings` + +- Display help: + +`fprintd-verify --help` diff --git a/pages/linux/free.md b/pages/linux/free.md index 405326a6652fed..8424c10daf89e6 100644 --- a/pages/linux/free.md +++ b/pages/linux/free.md @@ -1,6 +1,7 @@ # free > Display amount of free and used memory in the system. +> More information: . - Display system memory: @@ -10,7 +11,7 @@ `free -{{b|k|m|g}}` -- Display memory in human readable units: +- Display memory in human-readable units: `free -h` diff --git a/pages/linux/fsck.md b/pages/linux/fsck.md index f627dc567ebac7..c119e0dcb83184 100644 --- a/pages/linux/fsck.md +++ b/pages/linux/fsck.md @@ -1,15 +1,16 @@ # fsck > Check the integrity of a filesystem or repair it. The filesystem should be unmounted at the time the command is run. +> More information: . -- Check filesystem `/dev/sdX`, reporting any damaged blocks: +- Check filesystem `/dev/sdXN`, reporting any damaged blocks: -`fsck {{/dev/sdX}}` +`sudo fsck {{/dev/sdXN}}` -- Check filesystem `/dev/sdX`, reporting any damaged blocks and interactively letting the user choose to repair each one: +- Check filesystem `/dev/sdXN`, reporting any damaged blocks and interactively letting the user choose to repair each one: -`fsck -r {{/dev/sdX}}` +`sudo fsck -r {{/dev/sdXN}}` -- Check filesystem `/dev/sdX`, reporting any damaged blocks and automatically repairing them: +- Check filesystem `/dev/sdXN`, reporting any damaged blocks and automatically repairing them: -`fsck -a {{/dev/sdX}}` +`sudo fsck -a {{/dev/sdXN}}` diff --git a/pages/linux/fscrypt.md b/pages/linux/fscrypt.md new file mode 100644 index 00000000000000..2abe8a38b24c4b --- /dev/null +++ b/pages/linux/fscrypt.md @@ -0,0 +1,20 @@ +# fscrypt + +> Go tool for managing Linux filesystem encryption. +> More information: . + +- Prepare the root filesystem for use with fscrypt: + +`fscrypt setup` + +- Enable filesystem encryption for a directory: + +`fscrypt encrypt {{path/to/directory}}` + +- Unlock an encrypted directory: + +`fscrypt unlock {{path/to/encrypted_directory}}` + +- Lock an encrypted directory: + +`fscrypt lock {{path/to/encrypted_directory}}` diff --git a/pages/linux/fstrim.md b/pages/linux/fstrim.md index 262f9d4c4388ae..7e5a858924af01 100644 --- a/pages/linux/fstrim.md +++ b/pages/linux/fstrim.md @@ -2,6 +2,7 @@ > Discard unused blocks on a mounted filesystem. > Only supported by flash memory devices such as SSDs and microSD cards. +> More information: . - Trim unused blocks on all mounted partitions that support it: diff --git a/pages/linux/fuser.md b/pages/linux/fuser.md index 442892048d2532..2d251a5a56d72c 100644 --- a/pages/linux/fuser.md +++ b/pages/linux/fuser.md @@ -1,6 +1,7 @@ # fuser > Display process IDs currently using files or sockets. +> More information: . - Find which processes are accessing a file or directory: @@ -21,3 +22,7 @@ - Find which processes are accessing the filesystem containing a specific file or directory: `fuser --mount {{path/to/file_or_directory}}` + +- Kill all processes with a TCP connection on a specific port: + +`fuser --kill {{port}}/tcp` diff --git a/pages/linux/fwupdmgr.md b/pages/linux/fwupdmgr.md new file mode 100644 index 00000000000000..9c3f917b257234 --- /dev/null +++ b/pages/linux/fwupdmgr.md @@ -0,0 +1,20 @@ +# fwupdmgr + +> A tool for updating device firmware, including UEFI, using `fwupd`. +> More information: . + +- Display all devices detected by fwupd: + +`fwupdmgr get-devices` + +- Download the latest firmware metadata from LVFS: + +`fwupdmgr refresh` + +- List the updates available for devices on your system: + +`fwupdmgr get-updates` + +- Install firmware updates: + +`fwupdmgr update` diff --git a/pages/linux/gbp.md b/pages/linux/gbp.md new file mode 100644 index 00000000000000..155ad139f93a0f --- /dev/null +++ b/pages/linux/gbp.md @@ -0,0 +1,24 @@ +# gbp + +> A system to integrate the Debian package build system with Git. +> More information: . + +- Convert an existing Debian package to gbp: + +`gbp import-dsc {{path/to/package.dsc}}` + +- Build the package in the current directory using the default builder (`debuild`): + +`gbp buildpackage -jauto -us -uc` + +- Build a package in a `pbuilder` environment for Debian Bullseye: + +`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): + +`gbp buildpackage -jauto -us -uc --changes-options={{-S}}` + +- Import a new upstream release: + +`gbp import-orig --pristine-tar {{path/to/package.tar.gz}}` diff --git a/pages/linux/gcov.md b/pages/linux/gcov.md index b592fcd4e78590..c03c9d059a30f7 100644 --- a/pages/linux/gcov.md +++ b/pages/linux/gcov.md @@ -12,7 +12,7 @@ `gcov --all-blocks {{path/to/file.cpp}}` -- Write branch frequencies to the output file and print summary information to stdout as a percentage: +- Write branch frequencies to the output file and print summary information to `stdout` as a percentage: `gcov --branch-probabilities {{path/to/file.cpp}}` diff --git a/pages/linux/gedit.md b/pages/linux/gedit.md index 0486e170c7add1..f14ddfd944f10e 100644 --- a/pages/linux/gedit.md +++ b/pages/linux/gedit.md @@ -1,6 +1,7 @@ # gedit > Text editor of the GNOME Desktop project. +> More information: . - Open a text file: diff --git a/pages/linux/genid.md b/pages/linux/genid.md new file mode 100644 index 00000000000000..2178fdb647ac53 --- /dev/null +++ b/pages/linux/genid.md @@ -0,0 +1,24 @@ +# genid + +> Generate IDs, such as snowflakes, UUIDs, and a new GAID. +> More information: . + +- Generate a UUIDv4: + +`genid uuid` + +- Generate a UUIDv5 using a namespace UUID and a specific name: + +`genid uuidv5 {{{ce598faa-8dd0-49ee-8525-9e24fff71dca}}} {{name}}` + +- Generate a Discord Snowflake, without a trailing newline (useful in shell scripts): + +`genid --script snowflake` + +- Generate a Generic Anonymous ID with a specific "real ID": + +`genid gaid {{real_id}}` + +- Generate a Snowflake with the epoch set to a specific date: + +`genid snowflake --epoch={{unix_epoch_time}}` diff --git a/pages/linux/genisoimage.md b/pages/linux/genisoimage.md new file mode 100644 index 00000000000000..81a7d6529c9568 --- /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/genkernel.md b/pages/linux/genkernel.md index 7b5320bd54df0b..ac0ef9e7b48d05 100644 --- a/pages/linux/genkernel.md +++ b/pages/linux/genkernel.md @@ -1,6 +1,7 @@ # genkernel > Gentoo Linux utility to compile and install kernels. +> More information: . - Automatically compile and install a generic kernel: @@ -18,6 +19,6 @@ `sudo genkernel --kernname={{custom_name}} all` -- Use a kernel source outside of the default directory `/usr/src/linux`: +- Use a kernel source outside the default directory `/usr/src/linux`: `sudo genkernel --kerneldir={{path/to/directory}} all` diff --git a/pages/linux/getcap.md b/pages/linux/getcap.md new file mode 100644 index 00000000000000..a39708f770842d --- /dev/null +++ b/pages/linux/getcap.md @@ -0,0 +1,16 @@ +# getcap + +> Command to display the name and capabilities of each specified file. +> More information: . + +- Get capabilities for the given files: + +`getcap {{path/to/file1 path/to/file2 ...}}` + +- Get capabilities for all the files recursively under the given directories: + +`getcap -r {{path/to/directory1 path/to/directory2 ...}}` + +- Displays all searched entries even if no capabilities are set: + +`getcap -v {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/linux/getconf.md b/pages/linux/getconf.md new file mode 100644 index 00000000000000..5bd6b4e3025bd8 --- /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/getent.md b/pages/linux/getent.md index c0b86ed5430b13..b5785a360d1629 100644 --- a/pages/linux/getent.md +++ b/pages/linux/getent.md @@ -1,6 +1,7 @@ # getent > Get entries from Name Service Switch libraries. +> More information: . - Get list of all groups: diff --git a/pages/linux/getfacl.md b/pages/linux/getfacl.md index 5a930ce1bcb91b..968af59a9349ff 100644 --- a/pages/linux/getfacl.md +++ b/pages/linux/getfacl.md @@ -1,6 +1,7 @@ # getfacl > Get file access control lists. +> More information: . - Display the file access control list: diff --git a/pages/linux/getopt.md b/pages/linux/getopt.md new file mode 100644 index 00000000000000..ec41facf9ec770 --- /dev/null +++ b/pages/linux/getopt.md @@ -0,0 +1,20 @@ +# getopt + +> Parse command line arguments. +> More information: . + +- Parse optional `verbose`/`version` flags with shorthands: + +`getopt --options vV --longoptions verbose,version -- --version --verbose` + +- Add a `--file` option with a required argument with shorthand `-f`: + +`getopt --options f: --longoptions file: -- --file=somefile` + +- Add a `--verbose` option with an optional argument with shorthand `-v`, and pass a non-option parameter `arg`: + +`getopt --options v:: --longoptions verbose:: -- --verbose arg` + +- Accept a `-r` and `--verbose` flag, a `--accept` option with an optional argument and add a `--target` with a required argument option with shorthands: + +`getopt --options rv::s::t: --longoptions verbose,source::,target: -- -v --target target` diff --git a/pages/linux/gnome-calculator.md b/pages/linux/gnome-calculator.md new file mode 100644 index 00000000000000..985f1db475385f --- /dev/null +++ b/pages/linux/gnome-calculator.md @@ -0,0 +1,16 @@ +# gnome-calculator + +> The official calculator for the GNOME desktop environment. +> More information: . + +- Launch the GNOME Calculator GUI: + +`gnome-calculator` + +- Solve the specified equation on the command-line without launching the desktop application: + +`gnome-calculator --solve {{2^5 * 2 + 5}}` + +- Display the version: + +`gnome-calculator --version` diff --git a/pages/linux/gnome-extensions.md b/pages/linux/gnome-extensions.md index 8bcdaa1054189f..6497a84533b858 100644 --- a/pages/linux/gnome-extensions.md +++ b/pages/linux/gnome-extensions.md @@ -29,4 +29,4 @@ - Uninstall a specific extension: -`gnome-extension unistall "{{extension_id}}"` +`gnome-extension uninstall "{{extension_id}}"` diff --git a/pages/linux/gnome-screenshot.md b/pages/linux/gnome-screenshot.md new file mode 100644 index 00000000000000..aaed14a7c05c62 --- /dev/null +++ b/pages/linux/gnome-screenshot.md @@ -0,0 +1,36 @@ +# gnome-screenshot + +> Capture the screen, a window, or a user-defined area and save the image to a file. +> More information: . + +- Take a screenshot and save it to the default location, normally `~/Pictures`: + +`gnome-screenshot` + +- Take a screenshot and save it to the named file location: + +`gnome-screenshot --file {{path/to/file}}` + +- Take a screenshot and save it to the clipboard: + +`gnome-screenshot --clipboard` + +- Take a screenshot after the specified number of seconds: + +`gnome-screenshot --delay {{5}}` + +- Launch the GNOME Screenshot GUI: + +`gnome-screenshot --interactive` + +- Take a screenshot of the current window and save it to the specified file location: + +`gnome-screenshot --window --file {{path/to/file}}` + +- Take a screenshot after the specified number of seconds and save it to the clipboard: + +`gnome-screenshot --delay {{10}} --clipboard` + +- Display the version: + +`gnome-screenshot --version` diff --git a/pages/linux/gnome-software.md b/pages/linux/gnome-software.md new file mode 100644 index 00000000000000..b5cc8e10d984cc --- /dev/null +++ b/pages/linux/gnome-software.md @@ -0,0 +1,20 @@ +# gnome-software + +> Add and remove applications and update your system. +> More information: . + +- Launch the GNOME Software GUI if it's not already running: + +`gnome-software` + +- Launch the GNOME Software GUI if it's not open, and navigate to the specified page: + +`gnome-software --mode {{updates|updated|installed|overview}}` + +- Launch the GNOME Software GUI if it's not open, and view the specified package: + +`gnome-software --details {{package_name}}` + +- Display the version: + +`gnome-software --version` diff --git a/pages/linux/gnome-terminal.md b/pages/linux/gnome-terminal.md index cd9ccae4323831..9f530a781e92ba 100644 --- a/pages/linux/gnome-terminal.md +++ b/pages/linux/gnome-terminal.md @@ -1,6 +1,7 @@ # gnome-terminal > The GNOME Terminal emulator. +> More information: . - Open a new GNOME terminal window: diff --git a/pages/linux/goaccess.md b/pages/linux/goaccess.md new file mode 100644 index 00000000000000..a5ee6e6045114f --- /dev/null +++ b/pages/linux/goaccess.md @@ -0,0 +1,20 @@ +# goaccess + +> An open source real-time web log analyzer. +> More information: . + +- Analyze one or more log files in interactive mode: + +`goaccess {{path/to/logfile1 path/to/file2 ...}}` + +- Use a specific log-format (or pre-defined formats like "combined"): + +`goaccess {{path/to/logfile}} --log-format={{format}}` + +- Analyze a log from `stdin`: + +`tail -f {{path/to/logfile}} | goaccess -` + +- Analyze a log and write it to an HTML file in real-time: + +`goaccess {{path/to/logfile}} --output {{path/to/file.html}} --real-time-html` diff --git a/pages/linux/goldeneye.py.md b/pages/linux/goldeneye.py.md new file mode 100644 index 00000000000000..ec233076e251a0 --- /dev/null +++ b/pages/linux/goldeneye.py.md @@ -0,0 +1,24 @@ +# goldeneye.py + +> A HTTP DoS test tool. +> More information: . + +- Test a specific website: + +`./goldeneye.py {{url}}` + +- Test a specific website with 100 user agents and 200 concurrent sockets: + +`./goldeneye.py {{url}} --useragents 100 --sockets 200` + +- Test a specific website without verifying the SSL certificate: + +`./goldeneye.py {{url}} --nosslcheck` + +- Test a specific website in debug mode: + +`./goldeneye.py {{url}} --debug` + +- Display help: + +`./goldeneye.py --help` diff --git a/pages/linux/goobook.md b/pages/linux/goobook.md new file mode 100644 index 00000000000000..24fc7ef9c2f6b7 --- /dev/null +++ b/pages/linux/goobook.md @@ -0,0 +1,12 @@ +# goobook + +> 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): + +`goobook dump_contacts` diff --git a/pages/linux/google-chrome.md b/pages/linux/google-chrome.md deleted file mode 100644 index 42486f4bed653d..00000000000000 --- a/pages/linux/google-chrome.md +++ /dev/null @@ -1,12 +0,0 @@ -# google-chrome - -> The web browser from Google. -> More information: . - -- Run with a custom profile directory: - -`google-chrome --user-data-dir={{path/to/directory}}` - -- Run without CORS validation, useful to test an API: - -`google-chrome --user-data-dir={{path/to/directory}} --disable-web-security` diff --git a/pages/linux/gpasswd.md b/pages/linux/gpasswd.md index 78008fba8df931..1fb9349bf8dff9 100644 --- a/pages/linux/gpasswd.md +++ b/pages/linux/gpasswd.md @@ -1,6 +1,7 @@ # gpasswd > Administer `/etc/group` and `/etc/gshadow`. +> More information: . - Define group administrators: diff --git a/pages/linux/grim.md b/pages/linux/grim.md new file mode 100644 index 00000000000000..d03049c8768862 --- /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/groupadd.md b/pages/linux/groupadd.md index d579e538bbee9f..17aac0c653c185 100644 --- a/pages/linux/groupadd.md +++ b/pages/linux/groupadd.md @@ -1,12 +1,17 @@ # groupadd > Add user groups to the system. +> See also: `groups`, `groupdel`, `groupmod`. > More information: . -- Create a new Linux group: +- Create a new group: -`groupadd {{group_name}}` +`sudo groupadd {{group_name}}` -- Create new group with a specific groupid: +- Create a new system group: -`groupadd {{group_name}} -g {{group_id}}` +`sudo groupadd --system {{group_name}}` + +- Create a new group with the specific groupid: + +`sudo groupadd --gid {{id}} {{group_name}}` diff --git a/pages/linux/groupdel.md b/pages/linux/groupdel.md index 92f016d6052caa..d2c7b63fc97721 100644 --- a/pages/linux/groupdel.md +++ b/pages/linux/groupdel.md @@ -1,8 +1,9 @@ # groupdel > Delete existing user groups from the system. +> See also: `groups`, `groupadd`, `groupmod`. > More information: . - Delete an existing group: -`groupdel {{group_name}}` +`sudo groupdel {{group_name}}` diff --git a/pages/linux/groupmod.md b/pages/linux/groupmod.md index ae71122ec1fcf9..0a59edaa6a67b3 100644 --- a/pages/linux/groupmod.md +++ b/pages/linux/groupmod.md @@ -1,12 +1,13 @@ # groupmod > Modify existing user groups in the system. +> See also: `groups`, `groupadd`, `groupdel`. > More information: . - Change the group name: -`groupmod -n {{new_group_name}} {{old_group_name}}` +`sudo groupmod --new-name {{new_group}} {{group_name}}` - Change the group id: -`groupmod -g {{new_group_id}} {{old_group_name}}` +`sudo groupmod --gid {{new_id}} {{group_name}}` diff --git a/pages/linux/grub-bios-setup.md b/pages/linux/grub-bios-setup.md new file mode 100644 index 00000000000000..d91ee25164b8ee --- /dev/null +++ b/pages/linux/grub-bios-setup.md @@ -0,0 +1,17 @@ +# grub-bios-setup + +> Set up a device to use GRUB with a BIOS configuration. +> You should use `grub-install` instead of `grub-bios-setup` in most cases. +> More information: . + +- Set up a device to boot with GRUB: + +`grub-bios-setup {{/dev/sdX}}` + +- Install even if problems are detected: + +`grub-bios-setup --force {{/dev/sdX}}` + +- Install GRUB in a specific directory: + +`grub-bios-setup --directory={{/boot/grub}} {{/dev/sdX}}` diff --git a/pages/linux/grub-file.md b/pages/linux/grub-file.md new file mode 100644 index 00000000000000..c38c8c89d997f6 --- /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-mkconfig.md b/pages/linux/grub-mkconfig.md index 1527f2310cf55a..7d0f853cb796fc 100644 --- a/pages/linux/grub-mkconfig.md +++ b/pages/linux/grub-mkconfig.md @@ -3,7 +3,7 @@ > Generate a GRUB configuration file. > More information: . -- Do a dry run and print the configuration to stdout: +- Do a dry run and print the configuration to `stdout`: `sudo grub-mkconfig` diff --git a/pages/linux/grub-reboot.md b/pages/linux/grub-reboot.md new file mode 100644 index 00000000000000..97242b1e33df5c --- /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 new file mode 100644 index 00000000000000..9d13e69c9e2461 --- /dev/null +++ b/pages/linux/grub-script-check.md @@ -0,0 +1,21 @@ +# 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. +> More information: . + +- Check a specific script file for syntax errors: + +`grub-script-check {{path/to/grub_config_file}}` + +- Display each line of input after reading it: + +`grub-script-check --verbose` + +- Display version: + +`grub-script-check --version` + +- Display help: + +`grub-script-check --help` diff --git a/pages/linux/grub-set-default.md b/pages/linux/grub-set-default.md new file mode 100644 index 00000000000000..f1435d9ff01a70 --- /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/gs.md b/pages/linux/gs.md index ed5d9de94174a9..91bef61617ded8 100644 --- a/pages/linux/gs.md +++ b/pages/linux/gs.md @@ -1,12 +1,13 @@ # gs > GhostScript is a PDF and PostScript interpreter. +> More information: . - To view a file: `gs -dQUIET -dBATCH {{file.pdf}}` -- Reduce PDF file size to 150 dpi images for reading on a ebook device: +- Reduce PDF file size to 150 dpi images for reading on a e-book device: `gs -dNOPAUSE -dQUIET -dBATCH -sDEVICE=pdfwrite -dPDFSETTINGS=/ebook -sOutputFile={{output.pdf}} {{input.pdf}}` diff --git a/pages/linux/gsettings.md b/pages/linux/gsettings.md new file mode 100644 index 00000000000000..222fcc1ff2270c --- /dev/null +++ b/pages/linux/gsettings.md @@ -0,0 +1,32 @@ +# gsettings + +> Query and modify dconf settings with schema validation. +> More information: . + +- Set the value of a key. Fails if the key doesn't exist or the value is out of range: + +`gsettings set {{org.example.schema}} {{example-key}} {{value}}` + +- Print the value of a key or the schema-provided default if the key has not been set in `dconf`: + +`gsettings get {{org.example.schema}} {{example-key}}` + +- Unset a key, so that its schema default value will be used: + +`gsettings reset {{org.example.schema}} {{example-key}}` + +- Display all (non-relocatable) schemas, keys, and values: + +`gsettings list-recursively` + +- Display all keys and values (default if not set) from one schema: + +`gsettings list-recursively {{org.example.schema}}` + +- Display schema-allowed values for a key (helpful with enum keys): + +`gsettings range {{org.example.schema}} {{example-key}}` + +- Display the human-readable description of a key: + +`gsettings describe {{org.example.schema}} {{example-key}}` diff --git a/pages/linux/guake.md b/pages/linux/guake.md index 3fa98e48b88ddb..c1f5693a2ef1e4 100644 --- a/pages/linux/guake.md +++ b/pages/linux/guake.md @@ -1,6 +1,7 @@ # guake > A drop-down terminal for GNOME. +> More information: . - Toggle Guake visibility: diff --git a/pages/linux/guix-package.md b/pages/linux/guix-package.md index a3b054480e647d..07b688171551e9 100644 --- a/pages/linux/guix-package.md +++ b/pages/linux/guix-package.md @@ -1,6 +1,7 @@ # guix package > Install, upgrade and remove Guix packages, or rollback to previous configurations. +> More information: . - Install a new package: diff --git a/pages/linux/gummy.md b/pages/linux/gummy.md new file mode 100644 index 00000000000000..a19674672fa12d --- /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/handlr.md b/pages/linux/handlr.md new file mode 100644 index 00000000000000..b16b1cd43ca24b --- /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 57deb9973a575a..530d7976142432 100644 --- a/pages/linux/hardinfo.md +++ b/pages/linux/hardinfo.md @@ -1,6 +1,7 @@ # hardinfo > Show hardware information in GUI window. +> More information: . - Start hardinfo: diff --git a/pages/linux/hashcat.md b/pages/linux/hashcat.md new file mode 100644 index 00000000000000..4bf2eeeb70fde6 --- /dev/null +++ b/pages/linux/hashcat.md @@ -0,0 +1,32 @@ +# hashcat + +> Fast and advanced password recovery tool. +> More information: . + +- Perform a brute-force attack (mode 3) with the default hashcat mask: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{3}} {{hash_value}}` + +- Perform a brute-force attack (mode 3) with a known pattern of 4 digits: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{3}} {{hash_value}} "{{?d?d?d?d}}"` + +- Perform a brute-force attack (mode 3) using at most 8 of all printable ASCII characters: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{3}} --increment {{hash_value}} "{{?a?a?a?a?a?a?a?a}}"` + +- Perform a dictionary attack (mode 0) using the RockYou wordlist of a Kali Linux box: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{0}} {{hash_value}} {{/usr/share/wordlists/rockyou.txt}}` + +- Perform a rule-based dictionary attack (mode 0) using the RockYou wordlist mutated with common password variations: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{0}} --rules-file {{/usr/share/hashcat/rules/best64.rule}} {{hash_value}} {{/usr/share/wordlists/rockyou.txt}}` + +- Perform a combination attack (mode 1) using the concatenation of words from two different custom dictionaries: + +`hashcat --hash-type {{hash_type_id}} --attack-mode {{1}} {{hash_value}} {{/path/to/dictionary1.txt}} {{/path/to/dictionary2.txt}}` + +- Show result of an already cracked hash: + +`hashcat --show {{hash_value}}` diff --git a/pages/linux/hcitool.md b/pages/linux/hcitool.md new file mode 100644 index 00000000000000..eaa9c9b3e0b2d9 --- /dev/null +++ b/pages/linux/hcitool.md @@ -0,0 +1,36 @@ +# hcitool + +> Monitor, configure connections, and send special commands to Bluetooth devices. +> More information: . + +- Scan for Bluetooth devices: + +`hcitool scan` + +- Output the name of a device, returning its MAC address: + +`hcitool name {{bdaddr}}` + +- Fetch information about a remote Bluetooth device: + +`hcitool info {{bdaddr}}` + +- Check the link quality to a Bluetooth device: + +`hcitool lq {{bdaddr}}` + +- Modify the transmit power level: + +`hcitool tpl {{bdaddr}} {{0|1}}` + +- Display the link policy: + +`hcitool lp` + +- Request authentication with a specific device: + +`hcitool auth {{bdaddr}}` + +- Display local devices: + +`hcitool dev` diff --git a/pages/linux/hdparm.md b/pages/linux/hdparm.md index 964b3641caae70..fda07224609607 100644 --- a/pages/linux/hdparm.md +++ b/pages/linux/hdparm.md @@ -1,6 +1,7 @@ # hdparm > Get and set SATA and IDE hard drive parameters. +> More information: . - Request the identification info of a given device: @@ -25,3 +26,7 @@ - Put the drive into idle (low-power) mode, also setting its standby timeout: `sudo hdparm -S {{standby_timeout}} {{device}}` + +- Test the read speed of a specific device: + +`sudo hdparm -tT {{device}}` diff --git a/pages/linux/head.md b/pages/linux/head.md new file mode 100644 index 00000000000000..358fcff6ab59fb --- /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/hexdump.md b/pages/linux/hexdump.md deleted file mode 100644 index b0463261cfcb6e..00000000000000 --- a/pages/linux/hexdump.md +++ /dev/null @@ -1,15 +0,0 @@ -# hexdump - -> An ASCII, decimal, hexadecimal, octal dump. - -- Print the hexadecimal representation of a file: - -`hexdump {{file}}` - -- Display the input offset in hexadecimal and its ASCII representation in two columns: - -`hexdump -C {{file}}` - -- Display the hexadecimal representation of a file, but interpret only n bytes of the input: - -`hexdump -C -n{{number_of_bytes}} {{file}}` diff --git a/pages/linux/homectl.md b/pages/linux/homectl.md index c4d6cb4b236caa..7a957fac278a11 100644 --- a/pages/linux/homectl.md +++ b/pages/linux/homectl.md @@ -1,7 +1,7 @@ # homectl > Create, remove, change or inspect home directories using the systemd-homed service. -> More information: . +> More information: . - List user accounts and their associated home directories: diff --git a/pages/linux/hostname.md b/pages/linux/hostname.md deleted file mode 100644 index b336937a20078a..00000000000000 --- a/pages/linux/hostname.md +++ /dev/null @@ -1,23 +0,0 @@ -# hostname - -> Show or set the system's host name. - -- Show current host name: - -`hostname` - -- Show the network address of the host name: - -`hostname -i` - -- Show all network addresses of the host: - -`hostname -I` - -- Show the FQDN (Fully Qualified Domain Name): - -`hostname --fqdn` - -- Set current host name: - -`hostname {{new_hostname}}` diff --git a/pages/linux/hostnamectl.md b/pages/linux/hostnamectl.md index 4ddb5b73a450ed..2eacee0559d0a7 100644 --- a/pages/linux/hostnamectl.md +++ b/pages/linux/hostnamectl.md @@ -1,6 +1,7 @@ # hostnamectl > Get or set the hostname of the computer. +> More information: . - Get the hostname of the computer: diff --git a/pages/linux/htpdate.md b/pages/linux/htpdate.md index 8dff6569112c7b..37997535a14595 100644 --- a/pages/linux/htpdate.md +++ b/pages/linux/htpdate.md @@ -11,7 +11,7 @@ `htpdate -q {{host}}` -- Compensate the systematisch clock drift: +- Compensate the systematic clock drift: `sudo htpdate -x {{host}}` diff --git a/pages/linux/http-prompt.md b/pages/linux/http-prompt.md index d08a1b0d004bc2..673bdc5b018fef 100644 --- a/pages/linux/http-prompt.md +++ b/pages/linux/http-prompt.md @@ -1,12 +1,13 @@ # http-prompt > 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 http://localhost:8000 or the previous session: `http-prompt` -- Launch a session with a given url: +- Launch a session with a given URL: `http-prompt {{http://example.com}}` diff --git a/pages/linux/http_load.md b/pages/linux/http_load.md index 6f39bd7fa1d6f5..734488184c96be 100644 --- a/pages/linux/http_load.md +++ b/pages/linux/http_load.md @@ -1,6 +1,6 @@ # http_load -> A HTTP benchmarking tool. +> An HTTP benchmarking tool. > Runs multiple HTTP fetches in parallel to test the throughput of a web server. > More information: . diff --git a/pages/linux/httpie.md b/pages/linux/httpie.md index e5791c8cd71f1b..2cdb7d2ffe942f 100644 --- a/pages/linux/httpie.md +++ b/pages/linux/httpie.md @@ -1,6 +1,7 @@ # httpie -> A user friendly command line HTTP tool. +> A user friendly command-line HTTP tool. +> More information: . - Send a GET request (default method with no request data): @@ -14,7 +15,7 @@ `http {{https://example.com}} < {{file.json}}` -- Send a PUT request with a given json body: +- Send a PUT request with a given JSON body: `http PUT {{https://example.com/todos/7}} {{hello=world}}` @@ -29,3 +30,7 @@ - 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/linux/hwclock.md b/pages/linux/hwclock.md index 4bfec0ad80e3c3..2fd66c8f8579c7 100644 --- a/pages/linux/hwclock.md +++ b/pages/linux/hwclock.md @@ -1,6 +1,7 @@ # hwclock > Used for reading or changing the hardware clock. Usually requires root. +> More information: . - Display the current time as reported by the hardware clock: diff --git a/pages/linux/i3-scrot.md b/pages/linux/i3-scrot.md new file mode 100644 index 00000000000000..18b2207e6035e7 --- /dev/null +++ b/pages/linux/i3-scrot.md @@ -0,0 +1,33 @@ +# i3-scrot + +> Wrapper script around the screenshot utility `scrot` for the i3 window manager. +> The default save location is `~/Pictures` and can be changed in `~/.config/i3-scrot.conf`. +> More information: . + +- Capture a screenshot of the whole screen and save it to the default directory: + +`i3-scrot` + +- Capture a screenshot of the active window: + +`i3-scrot --window` + +- Capture a screenshot of a specific rectangular selection: + +`i3-scrot --select` + +- Capture a screenshot of the whole screen and copy it to the clipboard: + +`i3-scrot --desk-to-clipboard` + +- Capture a screenshot of the active window and copy it to the clipboard: + +`i3-scrot --window-to-clipboard` + +- Capture a screenshot of a specific selection and copy it to the clipboard: + +`i3-scrot --select-to-clibpoard` + +- Capture a screenshot of the active window after a delay of 5 seconds: + +`i3-scrot --window {{5}}` diff --git a/pages/linux/i3exit.md b/pages/linux/i3exit.md new file mode 100644 index 00000000000000..50873de0f132dd --- /dev/null +++ b/pages/linux/i3exit.md @@ -0,0 +1,32 @@ +# i3exit + +> Exit the i3 window manager. +> More information: . + +- Log out of i3: + +`i3exit logout` + +- Lock i3: + +`i3exit lock` + +- Shut down the system: + +`i3exit shutdown` + +- Suspend the system: + +`i3exit suspend` + +- Switch to the login screen to log in as a different user: + +`i3exit switch_user` + +- Hibernate the system: + +`i3exit hibernate` + +- Reboot the system: + +`i3exit reboot` diff --git a/pages/linux/i3lock.md b/pages/linux/i3lock.md index f17d952fb454c1..b90c3ff61a757a 100644 --- a/pages/linux/i3lock.md +++ b/pages/linux/i3lock.md @@ -3,22 +3,30 @@ > Simple screen locker built for the i3 window manager. > More information: . -- Lock screen with a simple color background (rrggbb format): +- Lock the screen showing a white background: -`i3lock -c {{0000ff}}` +`i3lock` -- Lock screen to a PNG background: +- Lock the screen with a simple color background (rrggbb format): -`i3lock -i {{path/to/picture.png}}` +`i3lock --color {{0000ff}}` -- Disable the unlock indicator (removes feedback on keypress): +- Lock the screen to a PNG background: -`i3lock -u` +`i3lock --image {{path/to/file.png}}` -- Display mouse pointer instead of hiding it ('default' for default pointer, 'win' for a MS Windows pointer): +- Lock the screen and disable the unlock indicator (removes feedback on keypress): -`i3lock -p {{default|win}}` +`i3lock --no-unlock-indicator` -- Lock screen to a PNG background displayed in multiple monitors, with enabled mouse pointer: +- Lock the screen and don't hide the mouse pointer: -`i3lock -i {{path/to/picture.png}} -p {{default|win}} -t` +`i3lock --pointer {{default}}` + +- Lock the screen to a PNG background tiled over all monitors: + +`i3lock --image {{path/to/file.png}} --tiling` + +- Lock the screen and show the number of failed login attempts: + +`i3lock --show-failed-attempts` diff --git a/pages/linux/i3status.md b/pages/linux/i3status.md new file mode 100644 index 00000000000000..4318d3d697b4ef --- /dev/null +++ b/pages/linux/i3status.md @@ -0,0 +1,17 @@ +# i3status + +> Status line for the i3 window manager. +> This command is usually called from the i3 configuration file. +> More information: . + +- Print the status line to `stdout` periodically, using the default configuration: + +`i3status` + +- Print the status line to `stdout` periodically, using a specific configuration: + +`i3status -c {{path/to/i3status.conf}}` + +- Display the `i3status` version and help: + +`i3status -h` diff --git a/pages/linux/i7z.md b/pages/linux/i7z.md index f7ce938f407082..5a65b1ee3c349f 100644 --- a/pages/linux/i7z.md +++ b/pages/linux/i7z.md @@ -1,7 +1,8 @@ # i7z > An Intel CPU (only i3, i5 and i7) realtime reporting tool. +> More information: . -- Start i7z (needs to be run in super user mode): +- Start i7z (needs to be run in superuser mode): `sudo i7z` diff --git a/pages/linux/id3v2.md b/pages/linux/id3v2.md new file mode 100644 index 00000000000000..8ad66833f7f975 --- /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 00000000000000..e84dd94ad09214 --- /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/img2txt.md b/pages/linux/img2txt.md new file mode 100644 index 00000000000000..46f0db548564d2 --- /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/imgp.md b/pages/linux/imgp.md index 5bf3d60506833c..17ca4c07d70acc 100644 --- a/pages/linux/imgp.md +++ b/pages/linux/imgp.md @@ -1,6 +1,7 @@ # imgp -> Command line image resizer and rotator for JPEG and PNG images. +> Command-line image resizer and rotator for JPEG and PNG images. +> More information: . - Convert single images and/or whole directories containing valid image formats: diff --git a/pages/linux/inotifywait.md b/pages/linux/inotifywait.md index 2931e07dc267bd..9ff333ab769a31 100644 --- a/pages/linux/inotifywait.md +++ b/pages/linux/inotifywait.md @@ -1,27 +1,36 @@ # inotifywait > Waits for changes to one or more files. +> More information: . -- Run a command when a file changes: +- Watch a specific file for events, exiting after the first one: -`while inotifywait {{path/to/file}}; do {{command}}; done` +`inotifywait {{path/to/file}}` -- Be quiet about watching for changes: +- Continuously watch a specific file for events without exiting: -`while inotifywait --quiet {{path/to/file}}; do {{command}}; done` +`inotifywait --monitor {{path/to/file}}` -- Watch a directory recursively for changes: +- Watch a directory recursively for events: -`while inotifywait --recursive {{path/to/directory}}; do {{command}}; done` +`inotifywait --monitor --recursive {{path/to/directory}}` -- Exclude files matching a regular expression: +- Watch a directory for changes, excluding files, whose names match a regular expression: -`while inotifywait --recursive {{path/to/directory}} --exlude '{{regex}}'; do {{command}}; done` +`inotifywait --monitor --recursive --exclude "{{regular_expression}}" {{path/to/directory}}` -- Wait at most 30 seconds: +- Watch a file for changes, exiting when no event occurs for 30 seconds: -`while inotifywait --timeout {{30}} {{path/to/file}}; do {{command}}; done` +`inotifywait --monitor --timeout {{30}} {{path/to/file}}` -- Only watch for file modification events: +- Only watch a file for file modification events: -`while inotifywait --event {{modify}} {{path/to/file}}; do {{command}}; done` +`inotifywait --event {{modify}} {{path/to/file}}` + +- Watch a file printing only events, and no status messages: + +`inotifywait --quiet {{path/to/file}}` + +- Run a command when a file is accessed: + +`inotifywait --event {{access}} {{path/to/file}} && {{command}}` diff --git a/pages/linux/insmod.md b/pages/linux/insmod.md new file mode 100644 index 00000000000000..e972b4ef78edef --- /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/inxi.md b/pages/linux/inxi.md index 17c840fad292ba..2fca1b4b29ebe5 100644 --- a/pages/linux/inxi.md +++ b/pages/linux/inxi.md @@ -1,8 +1,9 @@ # inxi > Print a summary of system information and resources for debugging purposes. +> More information: . -- Print a short summary of CPU, memory, hard drive and kernel information: +- Print a summary of CPU, memory, hard drive and kernel information: `inxi` diff --git a/pages/linux/iostat.md b/pages/linux/iostat.md index 4b50fdccbfd559..4efa034bef4b39 100644 --- a/pages/linux/iostat.md +++ b/pages/linux/iostat.md @@ -1,6 +1,7 @@ # iostat > Report statistics for devices and partitions. +> More information: . - Display a report of CPU and disk statistics since system startup: diff --git a/pages/linux/ip-address.md b/pages/linux/ip-address.md index 335f4420124ea6..7ec46fa96083b5 100644 --- a/pages/linux/ip-address.md +++ b/pages/linux/ip-address.md @@ -1,6 +1,7 @@ # ip address > IP Address management subcommand. +> More information: . - List network interfaces and their associated IP addresses: diff --git a/pages/linux/ip-neighbour.md b/pages/linux/ip-neighbour.md index 13bf8108677c3b..e1e2a31bf2e9b2 100644 --- a/pages/linux/ip-neighbour.md +++ b/pages/linux/ip-neighbour.md @@ -1,4 +1,4 @@ -# ip-neighbour +# ip neighbour > Neighbour/ARP tables management IP subcommand. > More information: . diff --git a/pages/linux/ip-route-list.md b/pages/linux/ip-route-list.md new file mode 100644 index 00000000000000..eba0b576c19393 --- /dev/null +++ b/pages/linux/ip-route-list.md @@ -0,0 +1,7 @@ +# ip route list + +> This command is an alias of `ip route show`. + +- View documentation for the original command: + +`tldr ip-route-show` diff --git a/pages/linux/ip-route-show.md b/pages/linux/ip-route-show.md new file mode 100644 index 00000000000000..9ef7dca95f5b20 --- /dev/null +++ b/pages/linux/ip-route-show.md @@ -0,0 +1,36 @@ +# ip route show + +> Display subcommand for IP Routing table management. +> More information: . + +- Display the routing table: + +`ip route show` + +- Display the main routing table (same as first example): + +`ip route show {{main|254}}` + +- Display the local routing table: + +`ip route show table {{local|255}}` + +- Display all routing tables: + +`ip route show table {{all|unspec|0}}` + +- List routes from a given device only: + +`ip route show dev {{eth0}}` + +- List routes within a given scope: + +`ip route show scope link` + +- Display the routing cache: + +`ip route show cache` + +- Display only IPv6 or IPv4 routes: + +`ip {{-6|-4}} route show` diff --git a/pages/linux/ip-rule.md b/pages/linux/ip-rule.md new file mode 100644 index 00000000000000..46b729051a0784 --- /dev/null +++ b/pages/linux/ip-rule.md @@ -0,0 +1,36 @@ +# ip rule + +> IP routing policy database management. +> More information: . + +- Display the routing policy: + +`ip rule {{show|list}}` + +- Add a new rule based on packet source addresses: + +`sudo ip rule add from {{192.168.178.2/32}}` + +- Add a new rule based on packet destination addresses: + +`sudo ip rule add to {{192.168.178.2/32}}` + +- Delete a rule based on packet source addresses: + +`sudo ip rule delete from {{192.168.178.2/32}}` + +- Delete a rule based on packet destination addresses: + +`sudo ip rule delete to {{192.168.178.2/32}}` + +- Flush all deleted rules: + +`ip rule flush` + +- Save all rules to a file: + +`ip rule save > {{path/to/ip_rules.dat}}` + +- Restore all rules from a file: + +`ip rule restore < {{path/to/ip_rules.dat}}` diff --git a/pages/linux/ip.md b/pages/linux/ip.md index 90948a72272dd0..8d0333f151ce00 100644 --- a/pages/linux/ip.md +++ b/pages/linux/ip.md @@ -1,6 +1,7 @@ # ip > Show / manipulate routing, devices, policy routing and tunnels. +> Some subcommands such as `ip address` have their own usage documentation. > More information: . - List interfaces with detailed info: @@ -27,7 +28,7 @@ `ip link set {{interface}} up/down` -- Add/Delete an ip address to an interface: +- Add/Delete an IP address to an interface: `ip addr add/del {{ip}}/{{mask}} dev {{interface}}` diff --git a/pages/linux/ipcalc.md b/pages/linux/ipcalc.md index 01eab4f080c1b4..0752f41fe39a6e 100644 --- a/pages/linux/ipcalc.md +++ b/pages/linux/ipcalc.md @@ -1,6 +1,7 @@ # ipcalc > Perform simple operations and calculations on IP addresses and networks. +> More information: . - Show information about an address or network with a given subnet mask: diff --git a/pages/linux/ipcmk.md b/pages/linux/ipcmk.md index 3730712f2d7977..7dd6d466436bbe 100644 --- a/pages/linux/ipcmk.md +++ b/pages/linux/ipcmk.md @@ -1,6 +1,7 @@ # ipcmk > Create IPC (Inter-process Communication) resources. +> More information: . - Create a shared memory segment: @@ -16,4 +17,4 @@ - Create a shared memory segment with specific permissions (default is 0644): -`ipcmk --shmem {{segment_size_in_bytes}} {{octal_permissons}}` +`ipcmk --shmem {{segment_size_in_bytes}} {{octal_permissions}}` diff --git a/pages/linux/ipcrm.md b/pages/linux/ipcrm.md index 1462087d6552a3..4f252e2128b279 100644 --- a/pages/linux/ipcrm.md +++ b/pages/linux/ipcrm.md @@ -1,6 +1,7 @@ # ipcrm > Delete IPC (Inter-process Communication) resources. +> More information: . - Delete a shared memory segment by ID: diff --git a/pages/linux/ipset.md b/pages/linux/ipset.md new file mode 100644 index 00000000000000..169114a5385f63 --- /dev/null +++ b/pages/linux/ipset.md @@ -0,0 +1,24 @@ +# ipset + +> A tool to create IP sets for firewall rules. +> More information: . + +- Create an empty IP set which will contain IP addresses: + +`ipset create {{set_name}} hash:ip` + +- Destroy a specific IP set: + +`ipset destroy {{set_name}}` + +- Add an IP address to a specific set: + +`ipset add {{set_name}} {{192.168.1.25}}` + +- Delete a specific IP address from a set: + +`ipset del {{set_name}} {{192.168.1.25}}` + +- Save an IP set: + +`ipset save {{set_name}} > {{path/to/ip_set}}` diff --git a/pages/linux/iptables.md b/pages/linux/iptables.md index 5b1db17695a732..8a182af391af59 100644 --- a/pages/linux/iptables.md +++ b/pages/linux/iptables.md @@ -19,6 +19,10 @@ `sudo iptables -A {{chain}} -s {{ip}} -p {{protocol}} --dport {{port}} -j {{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}}` + - Delete chain rule: `sudo iptables -D {{chain}} {{rule_line_number}}` diff --git a/pages/linux/isoinfo.md b/pages/linux/isoinfo.md index 1d62fe9f9d732a..e914f9d19096b8 100644 --- a/pages/linux/isoinfo.md +++ b/pages/linux/isoinfo.md @@ -1,12 +1,13 @@ # isoinfo > Utility programs for dumping and verifying ISO disk images. +> More information: . - List all the files included in an ISO image: `isoinfo -f -i {{path/to/image.iso}}` -- E[x]tract a specific file from an ISO image and send it out stdout: +- E[x]tract a specific file from an ISO image and send it out `stdout`: `isoinfo -i {{path/to/image.iso}} -x {{/PATH/TO/FILE/INSIDE/ISO.EXT}}` diff --git a/pages/linux/ispell.md b/pages/linux/ispell.md new file mode 100644 index 00000000000000..ac1b28de6242e0 --- /dev/null +++ b/pages/linux/ispell.md @@ -0,0 +1,16 @@ +# ispell + +> Interactive spell checking. +> More information: . + +- Start an interactive session: + +`ispell` + +- Check for typos in the specified file and interactively apply suggestions: + +`ispell {{path/to/file}}` + +- Display the version: + +`ispell -v` diff --git a/pages/linux/iw.md b/pages/linux/iw.md index f9389d117ed2b0..23626751de0d9a 100644 --- a/pages/linux/iw.md +++ b/pages/linux/iw.md @@ -1,6 +1,7 @@ # iw > Show and manipulate wireless devices. +> More information: . - Scan for available wireless networks: diff --git a/pages/linux/iwconfig.md b/pages/linux/iwconfig.md index fe2adc332f2228..49aba727af356d 100644 --- a/pages/linux/iwconfig.md +++ b/pages/linux/iwconfig.md @@ -11,7 +11,7 @@ `iwconfig {{interface}}` -- Set the ESSID (network name) of the specified interface (e.g., eth0 or wlp2s0): +- Set the ESSID (network name) of the specified interface (e.g. eth0 or wlp2s0): `iwconfig {{interface}} {{new_network_name}}` diff --git a/pages/linux/iwctl.md b/pages/linux/iwctl.md index 56ee4740782877..693d18cd84eec1 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. +> A command-line tool for controlling the iwd network supplicant. > More information: . - Start the interactive mode, in this mode you can enter the commands directly, with autocompletion: @@ -11,7 +11,7 @@ `iwctl --help` -- Display your wifi stations: +- Display your Wi-Fi stations: `iwctl station list` diff --git a/pages/linux/jobs.md b/pages/linux/jobs.md index 24a0331d87c8e6..8db55e3bbf2805 100644 --- a/pages/linux/jobs.md +++ b/pages/linux/jobs.md @@ -1,12 +1,13 @@ # jobs > BASH builtin for viewing information about processes spawned by the current shell. +> More information: . - View jobs spawned by the current shell: `jobs` -- List jobs and their process ids: +- List jobs and their process IDs: `jobs -l` @@ -14,7 +15,7 @@ `jobs -n` -- Display process id of process group leader: +- Display process ID of process group leader: `jobs -p` diff --git a/pages/linux/journalctl.md b/pages/linux/journalctl.md index f0e2527048d05e..1666029611f4cc 100644 --- a/pages/linux/journalctl.md +++ b/pages/linux/journalctl.md @@ -1,24 +1,25 @@ # journalctl > Query the systemd journal. +> More information: . -- Show all messages from this boot: +- Show all messages with priority level 3 (errors) from this [b]oot: -`journalctl -b` +`journalctl -b --priority={{3}}` -- Show all messages from last boot: +- Show all messages from last [b]oot: `journalctl -b -1` -- Show all messages with priority level 3 (errors) from this boot: +- Delete journal logs which are older than 2 days: -`journalctl -b --priority={{3}}` +`journalctl --vacuum-time={{2d}}` -- Follow new messages (like `tail -f` for traditional syslog): +- [f]ollow new messages (like `tail -f` for traditional syslog): `journalctl -f` -- Show all messages by a specific unit: +- Show all messages by a specific [u]nit: `journalctl -u {{unit}}` diff --git a/pages/linux/jpegtran.md b/pages/linux/jpegtran.md index b424b11263d880..55925a07087404 100644 --- a/pages/linux/jpegtran.md +++ b/pages/linux/jpegtran.md @@ -11,7 +11,7 @@ `jpegtran -rotate {{90|180|270}} {{path/to/image.jpg}} > {{path/to/output.jpg}}` -- Transpose the image across the upper left to lower right axis: +- Transpose the image across the upper-left to lower right axis: `jpegtran -transpose {{path/to/image.jpg}} > {{path/to/output.jpg}}` @@ -23,10 +23,10 @@ `jpegtran -grayscale {{path/to/image.jpg}} > {{path/to/output.jpg}}` -- Crop the image to a rectangular region of width `W` and height `H` from the upper left corner, saving the output to a specific file: +- Crop the image to a rectangular region of width `W` and height `H` from the upper-left corner, saving the output to a specific file: `jpegtran -crop {{W}}x{{H}} -outfile {{path/to/output.jpg}} {{path/to/image.jpg}}` -- Crop the image to a rectangular region of width `W` and height `H`, starting at point `X` and `Y` from the upper left corner: +- Crop the image to a rectangular region of width `W` and height `H`, starting at point `X` and `Y` from the upper-left corner: `jpegtran -crop {{W}}x{{H}}+{{X}}+{{Y}} {{path/to/image.jpg}} > {{path/to/output.jpg}}` diff --git a/pages/linux/just-js.md b/pages/linux/just-js.md new file mode 100644 index 00000000000000..68868cd34ed4c7 --- /dev/null +++ b/pages/linux/just-js.md @@ -0,0 +1,24 @@ +# just + +> A V8 JavaScript runtime for Linux. +> More information: . + +- Start a REPL (interactive shell): + +`just` + +- Run a JavaScript file: + +`just {{path/to/file.js}}` + +- Evaluate JavaScript code by passing it as an argument: + +`just eval "{{code}}"` + +- Initialize a new project in a directory of the same name: + +`just init {{project_name}}` + +- Build a JavaScript application into an executable: + +`just build {{path/to/file.js}} --static` diff --git a/pages/linux/kde-inhibit.md b/pages/linux/kde-inhibit.md index c72b5b8d5ad886..e9fa3471832b35 100644 --- a/pages/linux/kde-inhibit.md +++ b/pages/linux/kde-inhibit.md @@ -1,6 +1,7 @@ # kde-inhibit > Inhibit various desktop functions while a command runs. +> More information: . - Inhibit power management: @@ -10,6 +11,6 @@ `kde-inhibit --screenSaver {{command}} {{command_arguments}}` -- Launch vlc, and inhibit colour correction (night mode) while it's running: +- Launch VLC, and inhibit color correction (night mode) while it's running: `kde-inhibit --colorCorrect {{vlc}}` diff --git a/pages/linux/kdialog.md b/pages/linux/kdialog.md new file mode 100644 index 00000000000000..737b58731723ec --- /dev/null +++ b/pages/linux/kdialog.md @@ -0,0 +1,36 @@ +# kdialog + +> Show KDE dialog boxes from within shell scripts. +> More information: . + +- Open a dialog box displaying a specific message: + +`kdialog --msgbox "{{message}}" "{{optional_detailed_message}}"` + +- Open a question dialog with a `yes` and `no` button, returning `0` and `1`, respectively: + +`kdialog --yesno "{{message}}"` + +- Open a warning dialog with a `yes`, `no`, and `cancel` button, returning `0`, `1`, or `2` respectively: + +`kdialog --warningyesnocancel "{{message}}"` + +- Open an input dialog box and print the input to `stdout` when `OK` is pressed: + +`kdialog --inputbox "{{message}}" "{{optional_default_text}}"` + +- Open a dialog to prompt for a specific password and print it to `stdout`: + +`kdialog --password "{{message}}"` + +- Open a dialog containing a specific dropdown menu and print the selected item to `stdout`: + +`kdialog --combobx "{{message}}" "{{item1}}" "{{item2}}" "{{...}}"` + +- Open a file chooser dialog and print the selected file's path to `stdout`: + +`kdialog --getopenfilename` + +- Open a progressbar dialog and print a DBUS reference for communication to `stdout`: + +`kdialog --progressbar "{{message}}"` diff --git a/pages/linux/kdocker.md b/pages/linux/kdocker.md new file mode 100644 index 00000000000000..89aae24cc1c09c --- /dev/null +++ b/pages/linux/kdocker.md @@ -0,0 +1,28 @@ +# kdocker + +> Easily dock applications to the system tray. +> More information: . + +- Display a cursor to send a window to the system tray when pressing the left mouse button (press any other mouse button to cancel): + +`kdocker` + +- Open an application and send it to the system tray: + +`kdocker {{application}}` + +- Send focused window to the system tray: + +`kdocker -f` + +- Display a cursor to send a window to the system tray with a custom icon when pressing the left mouse button: + +`kdocker -i {{/path/to/icon}}` + +- Open an application, send it to the system tray and if focus is lost, minimize it: + +`kdocker -l {{application}}` + +- Print version: + +`kdocker --version` diff --git a/pages/linux/kexec.md b/pages/linux/kexec.md index eebac3cc88dbfd..1ae09438b260d1 100644 --- a/pages/linux/kexec.md +++ b/pages/linux/kexec.md @@ -1,6 +1,7 @@ # kexec > Directly reboot into a new kernel. +> More information: . - Load a new kernel: diff --git a/pages/linux/keyctl.md b/pages/linux/keyctl.md new file mode 100644 index 00000000000000..766c2a6816f3c6 --- /dev/null +++ b/pages/linux/keyctl.md @@ -0,0 +1,36 @@ +# keyctl + +> Manipulate the Linux kernel keyring. +> More information: . + +- List keys in a specific keyring: + +`keyctl list {{target_keyring}}` + +- List current keys in the user default session: + +`keyctl list {{@us}}` + +- Store a key in a specific keyring: + +`keyctl add {{type_keyring}} {{key_name}} {{key_value}} {{target_keyring}}` + +- Store a key with its value from standard input: + +`echo -n {{key_value}} | keyctl padd {{type_keyring}} {{key_name}} {{target_keyring}}` + +- Put a timeout on a key: + +`keyctl timeout {{key_name}} {{timeout_in_seconds}}` + +- Read a key and format it as a hex-dump if not printable: + +`keyctl read {{key_name}}` + +- Read a key and format as-is: + +`keyctl pipe {{key_name}}` + +- Revoke a key and prevent any further action on it: + +`keyctl revoke {{key_name}}` diff --git a/pages/linux/killall.md b/pages/linux/killall.md new file mode 100644 index 00000000000000..351073e89141ed --- /dev/null +++ b/pages/linux/killall.md @@ -0,0 +1,25 @@ +# killall + +> Send kill signal to all instances of a process by name (must be exact name). +> All signals except SIGKILL and SIGSTOP can be intercepted by the process, allowing a clean exit. +> More information: . + +- Terminate a process using the default SIGTERM (terminate) signal: + +`killall {{process_name}}` + +- List available signal names (to be used without the 'SIG' prefix): + +`killall --list` + +- Interactively ask for confirmation before termination: + +`killall -i {{process_name}}` + +- Terminate a process using the SIGINT (interrupt) signal, which is the same signal sent by pressing `Ctrl + C`: + +`killall -INT {{process_name}}` + +- Force kill a process: + +`killall -KILL {{process_name}}` diff --git a/pages/linux/konsave.md b/pages/linux/konsave.md new file mode 100644 index 00000000000000..4c5919594c8c31 --- /dev/null +++ b/pages/linux/konsave.md @@ -0,0 +1,32 @@ +# konsave + +> A CLI program that lets you 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/konsole.md b/pages/linux/konsole.md index 5c01b7f4f1ebcf..ec5f97ef983069 100644 --- a/pages/linux/konsole.md +++ b/pages/linux/konsole.md @@ -1,24 +1,20 @@ # konsole -> Konsole: The KDE terminal emulator. -> More information: . +> KDE's terminal emulator. +> More information: . -- Open a new Konsole in a specific directory: +- Open the terminal in a specific directory: `konsole --workdir {{path/to/directory}}` -- Run a specific command and do not close the window after it exits: +- [e]xecute a specific command and don't close the window after it exits: -`konsole --noclose -e {{command}}` +`konsole --noclose -e "{{command}}"` - Open a new tab: `konsole --new-tab` -- Open a Konsole in the background and bring to the front when Ctrl+Shift+F12 (by default) is pressed: +- Open the terminal in the background and bring to the front when `Ctrl+Shift+F12` is pressed: `konsole --background-mode` - -- Open a Konsole with the emergency FALLBACK profile: - -`konsole --fallback-profile` diff --git a/pages/linux/kpartx.md b/pages/linux/kpartx.md index 141a32c6770038..e4065a0fad4782 100644 --- a/pages/linux/kpartx.md +++ b/pages/linux/kpartx.md @@ -1,6 +1,7 @@ # kpartx > Create device maps from partition tables. +> More information: . - Add partition mappings: diff --git a/pages/linux/krita.md b/pages/linux/krita.md new file mode 100644 index 00000000000000..5dd3b31b9c0d28 --- /dev/null +++ b/pages/linux/krita.md @@ -0,0 +1,25 @@ +# krita + +> Krita is a sketching and painting program designed for digital artists. +> See also: `gimp`. +> More information: . + +- Start Krita: + +`krita` + +- Open specific files: + +`krita {{path/to/image1 path/to/image2 ...}}` + +- Start without a splash screen: + +`krita --nosplash` + +- Start with a specific workspace: + +`krita --workspace {{Animation}}` + +- Start in fullscreen mode: + +`krita --fullscreen` diff --git a/pages/linux/kscreen-console.md b/pages/linux/kscreen-console.md new file mode 100644 index 00000000000000..fdc1a4a1c29843 --- /dev/null +++ b/pages/linux/kscreen-console.md @@ -0,0 +1,32 @@ +# kscreen-console + +> Command-line tool to query KScreen's status. +> More information: . + +- Show all outputs and configuration files to attach to a bug report: + +`kscreen-console bug` + +- Show paths to KScreen configuration files: + +`kscreen-console config` + +- Show KScreen output information and configuration: + +`kscreen-console outputs` + +- Monitor for changes: + +`kscreen-console monitor` + +- Show the current KScreen configuration as JSON: + +`kscreen-console json` + +- Display help: + +`kscreen-console --help` + +- Display help including Qt specific command-line options: + +`kscreen-console --help-all` diff --git a/pages/linux/kscreen-doctor.md b/pages/linux/kscreen-doctor.md new file mode 100644 index 00000000000000..338b4104ce2287 --- /dev/null +++ b/pages/linux/kscreen-doctor.md @@ -0,0 +1,16 @@ +# kscreen-doctor + +> Change and manipulate the screen setup from the command-line. +> More information: . + +- Show display output information: + +`kscreen-doctor --outputs` + +- Set the rotation of a display output with an ID of 1 to the right: + +`kscreen-doctor {{output.1.rotation.right}}` + +- Set the scale of a display output with an ID of `HDMI-2` to 2 (200%): + +`kscreen-doctor {{output.HDMI-2.scale.2}}` diff --git a/pages/linux/kwrite.md b/pages/linux/kwrite.md new file mode 100644 index 00000000000000..e4c639d0b5bb3c --- /dev/null +++ b/pages/linux/kwrite.md @@ -0,0 +1,21 @@ +# kwrite + +> Text editor of the KDE Desktop project. +> See also `kate`. +> More information: . + +- Open a text file: + +`kwrite {{path/to/file}}` + +- Open multiple text files: + +`kwrite {{file1 file2 ...}}` + +- Open a text file with a specific encoding: + +`kwrite --encoding={{UTF-8}} {{path/to/file}}` + +- Open a text file and navigate to a specific line and column: + +`kwrite --line {{line_number}} --column {{column_number}} {{path/to/file}}` diff --git a/pages/linux/laptop-detect.md b/pages/linux/laptop-detect.md new file mode 100644 index 00000000000000..9893237512db19 --- /dev/null +++ b/pages/linux/laptop-detect.md @@ -0,0 +1,16 @@ +# laptop-detect + +> Attempt to determine if the script is running on a laptop or desktop. +> More information: . + +- Return an exit status of 0 if the current device is likely a laptop, else returns 1: + +`laptop-detect` + +- Print the type of device that the current system is detected as: + +`laptop-detect --verbose` + +- Display the version: + +`laptop-detect --version` diff --git a/pages/linux/lastb.md b/pages/linux/lastb.md index 248b08042e7392..672b795d1e3b70 100644 --- a/pages/linux/lastb.md +++ b/pages/linux/lastb.md @@ -1,6 +1,7 @@ # lastb > Show a listing of last logged in users. +> More information: . - Show a list of all last logged in users: diff --git a/pages/linux/lastcomm.md b/pages/linux/lastcomm.md index 1aecfe0b8f932b..82a15df64e463e 100644 --- a/pages/linux/lastcomm.md +++ b/pages/linux/lastcomm.md @@ -3,7 +3,7 @@ > Show last commands executed. > More information: . -- Print information about all of the commands in the acct (record file): +- Print information about all the commands in the acct (record file): `lastcomm` diff --git a/pages/linux/lastlog.md b/pages/linux/lastlog.md index 6ea64247ca29d1..1aa8da1315c6c6 100644 --- a/pages/linux/lastlog.md +++ b/pages/linux/lastlog.md @@ -1,19 +1,20 @@ # lastlog > Show the most recent login of all users or of a given user. +> More information: . - Display the most recent login of all users: `lastlog` -- Display lastlog record of the specified user: +- Display the lastlog record of the specified user: -`lastlog -u {{username}}` +`lastlog --user {{username}}` -- Display records before than 7 days: +- Display records older than 7 days: -`lastlog -b {{7}}` +`lastlog --before {{7}}` - Display records more recent than 3 days: -`lastlog -t {{3}}` +`lastlog -time {{3}}` diff --git a/pages/linux/latte-dock.md b/pages/linux/latte-dock.md new file mode 100644 index 00000000000000..966a1c8e2e09e3 --- /dev/null +++ b/pages/linux/latte-dock.md @@ -0,0 +1,20 @@ +# latte-dock + +> Replacement dock for Plasma desktop. +> More information: . + +- Clear QML cache: + +`latte-dock --clear-cache` + +- Import and load default layout on startup: + +`latte-dock --default-layout` + +- Load a specific layout on startup: + +`latte-dock --layout {{layout_name}}` + +- Import and load a specific layout: + +`latte-dock --import-layout {{path/to/file}}` diff --git a/pages/linux/lci.md b/pages/linux/lci.md new file mode 100644 index 00000000000000..dc794b61e98b6b --- /dev/null +++ b/pages/linux/lci.md @@ -0,0 +1,16 @@ +# lci + +> LOLCODE interpreter written in C. +> More information: . + +- Run a LOLCODE file: + +`lci {{path/to/file}}` + +- Display version: + +`lci -v` + +- Display help: + +`lci -h` diff --git a/pages/linux/ldapdomaindump.md b/pages/linux/ldapdomaindump.md new file mode 100644 index 00000000000000..c481adc21016fa --- /dev/null +++ b/pages/linux/ldapdomaindump.md @@ -0,0 +1,21 @@ +# ldapdomaindump + +> Dump users, computers, groups, OS and membership information via LDAP to HTML, JSON and greppable output. +> See also `ldapsearch`. +> More information: . + +- Dump all information using the given LDAP account: + +`ldapdomaindump --user {{domain}}\\{{administrator}} --password {{password|ntlm_hash}} {{hostname|ip}}` + +- Dump all information, resolving computer hostnames: + +`ldapdomaindump --resolve --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` + +- Dump all information, resolving computer hostnames with the selected DNS server: + +`ldapdomaindump --resolve --dns-server {{domain_controller_ip}} --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` + +- Dump all information to the given directory without JSON output: + +`ldapdomaindump --no-json --outdir {{path/to/directory}} --user {{domain}}\\{{administrator}} --password {{password}} {{hostname|ip}}` diff --git a/pages/linux/ldconfig.md b/pages/linux/ldconfig.md index a8ee1d5a5e4715..ffb770a9174e62 100644 --- a/pages/linux/ldconfig.md +++ b/pages/linux/ldconfig.md @@ -1,6 +1,7 @@ # ldconfig > Configure symlinks and cache for shared library dependencies. +> More information: . - Update symlinks and rebuild the cache (usually run when a new library is installed): diff --git a/pages/linux/ldd.md b/pages/linux/ldd.md index a8cc72adde02fc..72cd6eb074d627 100644 --- a/pages/linux/ldd.md +++ b/pages/linux/ldd.md @@ -1,11 +1,25 @@ # ldd -> Display shared library dependencies. +> Display shared library dependencies of a binary. +> Do not use on an untrusted binary, use objdump for that instead. +> More information: . - Display shared library dependencies of a binary: `ldd {{path/to/binary}}` +- Display all information about dependencies: + +`ldd --verbose {{path/to/binary}}` + - Display unused direct dependencies: -`ldd -u {{path/to/binary}}` +`ldd --unused {{path/to/binary}}` + +- Report missing data objects and perform data relocations: + +`ldd --data-relocs {{path/to/binary}}` + +- Report missing data objects and functions, and perform relocations for both: + +`ldd --function-relocs {{path/to/binary}}` diff --git a/pages/linux/lddd.md b/pages/linux/lddd.md new file mode 100644 index 00000000000000..26a9cd70d1246c --- /dev/null +++ b/pages/linux/lddd.md @@ -0,0 +1,9 @@ +# lddd + +> Find broken library links on the system. +> This tool is only available on Arch Linux. +> More information: . + +- Scan directories to find and list packages with broken library links that need to be rebuilt: + +`lddd` diff --git a/pages/linux/ledctl.md b/pages/linux/ledctl.md new file mode 100644 index 00000000000000..21acc252bb9f36 --- /dev/null +++ b/pages/linux/ledctl.md @@ -0,0 +1,20 @@ +# ledctl + +> Intel(R) Enclosure LED Control Application. +> More information: . + +- Turn on the "Locate" LED for specified device(s): + +`sudo ledctl locate={{/dev/sda,/dev/sdb,...}}` + +- Turn off the "Locate" LED for specified device(s): + +`sudo ledctl locate_off={{/dev/sda,/dev/sdb,...}}` + +- Turn off the "Status" LED and "Failure" LED for specified device(s): + +`sudo ledctl off={{/dev/sda,/dev/sdb,...}}` + +- Turn off the "Status" LED, "Failure" LED and "Locate" LED for specified device(s): + +`sudo ledctl normal={{/dev/sda,/dev/sdb,...}}` diff --git a/pages/linux/lex.md b/pages/linux/lex.md new file mode 100644 index 00000000000000..cfa56219494a8e --- /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 9e50727d3c5bd6..b8e349d82e23c4 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/libreoffice.md b/pages/linux/libreoffice.md index eb18c49f289a41..413567017e0ce6 100644 --- a/pages/linux/libreoffice.md +++ b/pages/linux/libreoffice.md @@ -15,6 +15,6 @@ `libreoffice --pt {{printer_name}} {{path/to/file1}} {{path/to/file2}}` -- Convert all `.doc` files in current directory to pdf: +- Convert all `.doc` files in current directory to PDF: `libreoffice --convert-to {{pdf}} {{*.doc}}` diff --git a/pages/linux/light.md b/pages/linux/light.md index 0421f7c2bd2d35..5ce1bdf61f29a1 100644 --- a/pages/linux/light.md +++ b/pages/linux/light.md @@ -1,6 +1,7 @@ # light > CLI to control the backlight of your screen. +> More information: . - Get the current backlight value in percent: diff --git a/pages/linux/line.md b/pages/linux/line.md index 94ed7c0bdc22ac..20f6fceb3a8146 100644 --- a/pages/linux/line.md +++ b/pages/linux/line.md @@ -1,6 +1,7 @@ # line > Read a single line of input. +> More information: . - Read input: diff --git a/pages/linux/links.md b/pages/linux/links.md new file mode 100644 index 00000000000000..a3be7953a5af3c --- /dev/null +++ b/pages/linux/links.md @@ -0,0 +1,28 @@ +# links + +> Command-line web browser. +> More information: . + +- Visit a website: + +`links {{https://example.com}}` + +- Apply restrictions for anonymous account: + +`links -anonymous {{https://example.com}}` + +- Enable Cookies (`1` to enable): + +`links -enable-cookies {{0|1}} {{https://example.com}}` + +- Navigate forwards and backwards through the links on a page: + +`Up arrow key, Down arrow key` + +- Go forwards and backwards one page: + +`Left arrow key, Right arrow key` + +- Exit: + +`q then y` diff --git a/pages/linux/lnav.md b/pages/linux/lnav.md new file mode 100644 index 00000000000000..670f94cfa79af8 --- /dev/null +++ b/pages/linux/lnav.md @@ -0,0 +1,16 @@ +# lnav + +> Advanced log file viewer to analyze logs with little to no setup. +> More information: . + +- View logs of a program, specifying log files, directories or URLs: + +`lnav {{path/to/log_or_directory|url}}` + +- View logs of a specific remote host (SSH passwordless login required): + +`lnav {{ssh}} {{user}}@{{host1.example.com}}:{{/var/log/syslog.log}}` + +- Validate the format of log files against the configuration and report any errors: + +`lnav -C {{path/to/log_directory}}` diff --git a/pages/linux/loadkeys.md b/pages/linux/loadkeys.md new file mode 100644 index 00000000000000..2e56485422ab21 --- /dev/null +++ b/pages/linux/loadkeys.md @@ -0,0 +1,36 @@ +# loadkeys + +> Load the kernel keymap for the console. +> More information: . + +- Load a default keymap: + +`loadkeys --default` + +- Load default keymap when an unusual keymap is loaded and `-` sign cannot be found: + +`loadkeys defmap` + +- Create a kernel source table: + +`loadkeys --mktable` + +- Create a binary keymap: + +`loadkeys --bkeymap` + +- Search and parse keymap without action: + +`loadkeys --parse` + +- Load the keymap suppressing all output: + +`loadkeys --quiet` + +- Load a keymap from the specified file for the console: + +`loadkeys --console {{/dev/ttyN}} {{/path/to/file}}` + +- Use standard names for keymaps of different locales: + +`loadkeys --console {{/dev/ttyN}} {{uk}}` diff --git a/pages/linux/locale.md b/pages/linux/locale.md new file mode 100644 index 00000000000000..494f649661efe8 --- /dev/null +++ b/pages/linux/locale.md @@ -0,0 +1,20 @@ +# locale + +> Get locale-specific information. +> More information: . + +- List all global environment variables describing the user's locale: + +`locale` + +- List all available locales: + +`locale --all-locales` + +- Display all available locales and the associated metadata: + +`locale --all-locales --verbose` + +- Display the current date format: + +`locale date_fmt` diff --git a/pages/linux/localectl.md b/pages/linux/localectl.md new file mode 100644 index 00000000000000..9684fdffafe6e8 --- /dev/null +++ b/pages/linux/localectl.md @@ -0,0 +1,24 @@ +# localectl + +> Control the system locale and keyboard layout settings. +> More information: . + +- Show the current settings of the system locale and keyboard mapping: + +`localectl` + +- List available locales: + +`localectl list-locales` + +- Set a system locale variable: + +`localectl set-locale {{LANG}}={{en_US.UTF-8}}` + +- List available keymaps: + +`localectl list-keymaps` + +- Set the system keyboard mapping for the console and X11: + +`localectl set-keymap {{us}}` diff --git a/pages/linux/locate.md b/pages/linux/locate.md index ff8589a79ab270..65f16ef5a15bcd 100644 --- a/pages/linux/locate.md +++ b/pages/linux/locate.md @@ -1,6 +1,7 @@ # locate > Find filenames quickly. +> More information: . - Look for pattern in the database. Note: the database is recomputed periodically (usually weekly or daily): diff --git a/pages/linux/logger.md b/pages/linux/logger.md deleted file mode 100644 index c1fbb3debcae79..00000000000000 --- a/pages/linux/logger.md +++ /dev/null @@ -1,23 +0,0 @@ -# logger - -> Add messages to syslog (/var/log/syslog). - -- Log a message to syslog: - -`logger {{message}}` - -- Take input from stdin and log to syslog: - -`echo {{log_entry}} | logger` - -- Send the output to a remote syslog server running at a given port. Default port is 514: - -`echo {{log_entry}} | logger --server {{hostname}} --port {{port}}` - -- Use a specific tag for every line logged. Default is the name of logged in user: - -`echo {{log_entry}} | logger --tag {{tag}}` - -- Log messages with a given priority. Default is `user.notice`. See `man logger` for all priority options: - -`echo {{log_entry}} | logger --priority {{user.warning}}` diff --git a/pages/linux/login.md b/pages/linux/login.md index d004e47b0b1b71..96a90e9b167c91 100644 --- a/pages/linux/login.md +++ b/pages/linux/login.md @@ -1,19 +1,20 @@ # login > Initiates a session for a user. +> More information: . -- Login as a user: +- Log in as a user: `login {{user}}` -- Login as user without authentication if user is preauthenticated: +- Log in as user without authentication if user is preauthenticated: `login -f {{user}}` -- Login as user and preserve environment: +- Log in as user and preserve environment: `login -p {{user}}` -- Login as a user on a remote host: +- Log in as a user on a remote host: `login -h {{host}} {{user}}` diff --git a/pages/linux/loginctl.md b/pages/linux/loginctl.md new file mode 100644 index 00000000000000..445ba7d50fc4b3 --- /dev/null +++ b/pages/linux/loginctl.md @@ -0,0 +1,24 @@ +# loginctl + +> Manage the systemd login manager. +> More information: . + +- Print all current sessions: + +`loginctl list-sessions` + +- Print all properties of a specific session: + +`loginctl show-session {{session_id}} --all` + +- Print all properties of a specific user: + +`loginctl show-user {{username}}` + +- Print a specific property of a user: + +`loginctl show-user {{username}} --property={{property_name}}` + +- Execute a `loginctl` operation on a remote host: + +`loginctl list-users -H {{hostname}}` diff --git a/pages/linux/logrotate.md b/pages/linux/logrotate.md new file mode 100644 index 00000000000000..9717c545137cc2 --- /dev/null +++ b/pages/linux/logrotate.md @@ -0,0 +1,24 @@ +# logrotate + +> Rotates, compresses, and mails system logs. +> More information: . + +- Trigger a run manually: + +`logrotate {{path/to/logrotate.conf}} --force` + +- Run using a specific command to mail reports: + +`logrotate {{path/to/logrotate.conf}} --mail {{/usr/bin/mail_command}}` + +- Run without using a state (lock) file: + +`logrotate {{path/to/logrotate.conf}} --state /dev/null` + +- Run and skip the state (lock) file check: + +`logrotate {{path/to/logrotate.conf}} --skip-state-lock` + +- Tell `logrotate` to log verbose output into the log file: + +`logrotate {{path/to/logrotate.conf}} --log {{path/to/log_file}}` diff --git a/pages/linux/logwatch.md b/pages/linux/logwatch.md index 3d6aaa65c75223..5520d886fad767 100644 --- a/pages/linux/logwatch.md +++ b/pages/linux/logwatch.md @@ -1,8 +1,9 @@ # logwatch -> Summarizes many different logs for common services (e.g., apache, pam_unix, sshd, etc.) in a single report. +> Summarizes many different logs for common services (e.g. apache, pam_unix, sshd, etc.) in a single report. +> More information: . -- Analyze logs for a range of dates at certain level of detail: +- Analyze logs for a range of dates at a certain level of detail: `logwatch --range {{yesterday|today|all|help}} --detail {{low|medium|others}}'` diff --git a/pages/linux/losetup.md b/pages/linux/losetup.md index 9410443d46d9c2..78a47064cb92ca 100644 --- a/pages/linux/losetup.md +++ b/pages/linux/losetup.md @@ -1,6 +1,7 @@ # losetup > Set up and control loop devices. +> More information: . - List loop devices with detailed info: diff --git a/pages/linux/lrunzip.md b/pages/linux/lrunzip.md index 69da8af0003605..5bf30986cc4115 100644 --- a/pages/linux/lrunzip.md +++ b/pages/linux/lrunzip.md @@ -2,6 +2,7 @@ > A large file decompression program. > See also `lrzip`, `lrztar`, `lrzuntar`. +> More information: . - Decompress a file: diff --git a/pages/linux/lrzip.md b/pages/linux/lrzip.md index d372db9a1dd8c8..8b72da5d59768c 100644 --- a/pages/linux/lrzip.md +++ b/pages/linux/lrzip.md @@ -2,6 +2,7 @@ > A large file compression program. > See also `lrunzip`, `lrztar`, `lrzuntar`. +> More information: . - Compress a file with LZMA - slow compression, fast decompression: diff --git a/pages/linux/lrztar.md b/pages/linux/lrztar.md index 233a51bd7584e0..3099859febb33b 100644 --- a/pages/linux/lrztar.md +++ b/pages/linux/lrztar.md @@ -2,6 +2,7 @@ > A wrapper for `lrzip` to simplify compression of directories. > See also: `tar`, `lrzuntar`, `lrunzip`. +> More information: . - Archive a directory with `tar`, then compress: diff --git a/pages/linux/lrzuntar.md b/pages/linux/lrzuntar.md index e0d87688f08f28..34746a62c18741 100644 --- a/pages/linux/lrzuntar.md +++ b/pages/linux/lrzuntar.md @@ -2,6 +2,7 @@ > A wrapper for `lrunzip` to simplify decompression of directories. > See also: `lrztar`, `lrzip`. +> More information: . - Decompress from a file to the current directory: diff --git a/pages/linux/lsattr.md b/pages/linux/lsattr.md index 405c2ac9383ad2..be102f4dde507e 100644 --- a/pages/linux/lsattr.md +++ b/pages/linux/lsattr.md @@ -1,6 +1,7 @@ # lsattr > List file attributes on a Linux filesystem. +> More information: . - Display the attributes of the files in the current directory: diff --git a/pages/linux/lsb_release.md b/pages/linux/lsb_release.md index 4c831b9ce4d9a5..fd54439aa0cfe2 100644 --- a/pages/linux/lsb_release.md +++ b/pages/linux/lsb_release.md @@ -1,6 +1,7 @@ # lsb_release > Provides certain LSB (Linux Standard Base) and distribution-specific information. +> More information: . - Print all available information: diff --git a/pages/linux/lsblk.md b/pages/linux/lsblk.md index 37afe23ff27a81..b684132c8e2b1f 100644 --- a/pages/linux/lsblk.md +++ b/pages/linux/lsblk.md @@ -1,6 +1,7 @@ # lsblk > Lists information about devices. +> More information: . - List all storage devices in a tree-like format: diff --git a/pages/linux/lscpu.md b/pages/linux/lscpu.md index 161bb68c1350cf..2d5c72a6956c06 100644 --- a/pages/linux/lscpu.md +++ b/pages/linux/lscpu.md @@ -1,6 +1,7 @@ # lscpu > Displays information about the CPU architecture. +> More information: . - Display information about all CPUs: diff --git a/pages/linux/lshw.md b/pages/linux/lshw.md index 8f8f27e7047336..b16f116655f0f5 100644 --- a/pages/linux/lshw.md +++ b/pages/linux/lshw.md @@ -1,12 +1,13 @@ # lshw > List detailed information about hardware configurations as root user. +> More information: . - Launch the GUI: `sudo lshw -X` -- List all hardwares in tabular format: +- List all hardware in tabular format: `sudo lshw -short` diff --git a/pages/linux/lslocks.md b/pages/linux/lslocks.md index d1728daea9fb4c..495d0cc1dc95cb 100644 --- a/pages/linux/lslocks.md +++ b/pages/linux/lslocks.md @@ -1,6 +1,7 @@ # lslocks > List local system locks. +> More information: . - List all local system locks: @@ -18,6 +19,6 @@ `lslocks --pid {{PID}}` -- List locks with json output to stdout: +- List locks with JSON output to `stdout`: `lslocks --json` diff --git a/pages/linux/lsmod.md b/pages/linux/lsmod.md index 47077038911fcc..9f94f6d34d776b 100644 --- a/pages/linux/lsmod.md +++ b/pages/linux/lsmod.md @@ -1,7 +1,8 @@ # lsmod -> Shows the status of linux kernel modules. +> Shows the status of Linux kernel modules. > See also `modprobe`, which loads kernel modules. +> More information: . - List all currently loaded kernel modules: diff --git a/pages/linux/lsns.md b/pages/linux/lsns.md new file mode 100644 index 00000000000000..b6066898689346 --- /dev/null +++ b/pages/linux/lsns.md @@ -0,0 +1,24 @@ +# lsns + +> List information about all namespaces or about the specified namespace. +> More information: . + +- List all namespaces: + +`lsns` + +- List namespaces in JSON format: + +`lsns --json` + +- List namespaces associated with {{pid}}: + +`lsns --task {{pid}}` + +- List the specified type of namespaces only: + +`lsns --type ` + +- List namespaces, only showing the namespace ID, type, PID, and command: + +`lsns --output NS,TYPE,PID,COMMAND` diff --git a/pages/linux/lspci.md b/pages/linux/lspci.md index f7ce0c76b95f17..9daec5ec6a6466 100644 --- a/pages/linux/lspci.md +++ b/pages/linux/lspci.md @@ -1,6 +1,7 @@ # lspci > List all PCI devices. +> More information: . - Show a brief list of devices: diff --git a/pages/linux/lsscsi.md b/pages/linux/lsscsi.md index f640774a1e63be..20a51bea5e21f9 100644 --- a/pages/linux/lsscsi.md +++ b/pages/linux/lsscsi.md @@ -1,6 +1,7 @@ # lsscsi > List SCSI devices (or hosts) and their attributes. +> More information: . - List all SCSI devices: @@ -10,6 +11,6 @@ `lsscsi -L` -- List all SCSI devices with human readable disk capacity: +- List all SCSI devices with human-readable disk capacity: `lsscsi -s` diff --git a/pages/linux/lsusb.md b/pages/linux/lsusb.md index c10dd871c48989..91ef7265525039 100644 --- a/pages/linux/lsusb.md +++ b/pages/linux/lsusb.md @@ -1,6 +1,7 @@ # lsusb > Display information about USB buses and devices connected to them. +> More information: . - List all the USB devices available: @@ -18,6 +19,6 @@ `lsusb -D {{device}}` -- List devices with a specified vendor and product id only: +- List devices with a specified vendor and product ID only: `lsusb -d {{vendor}}:{{product}}` diff --git a/pages/linux/lvcreate.md b/pages/linux/lvcreate.md index a2243c9d7d4610..7470bf2d7cd3c1 100644 --- a/pages/linux/lvcreate.md +++ b/pages/linux/lvcreate.md @@ -16,6 +16,6 @@ `lvcreate -l {{60%VG}} -n {{mylv}} {{vg1}}` -- Create a logical volume called mylv that uses all of the unallocated space in the volume group vg1: +- Create a logical volume called mylv that uses all the unallocated space in the volume group vg1: `lvcreate -l {{100%FREE}} -n {{mylv}} {{vg1}}` diff --git a/pages/linux/lvextend.md b/pages/linux/lvextend.md index f52212262b76f0..8948df2c4cbebb 100644 --- a/pages/linux/lvextend.md +++ b/pages/linux/lvextend.md @@ -4,11 +4,11 @@ > See also: `lvm`. > More information: . -- Increase a volume's size to 120GB: +- Increase a volume's size to 120 GB: `lvextend --size {{120G}} {{logical_volume}}` -- Increase a volume's size by 40GB as well as the underlying filesystem: +- Increase a volume's size by 40 GB as well as the underlying filesystem: `lvextend --size +{{40G}} -r {{logical_volume}}` diff --git a/pages/linux/lvreduce.md b/pages/linux/lvreduce.md index 324e7f1e13226b..62053ce6e75f86 100644 --- a/pages/linux/lvreduce.md +++ b/pages/linux/lvreduce.md @@ -4,10 +4,10 @@ > See also: `lvm`. > More information: . -- Reduce a volume's size to 120GB: +- Reduce a volume's size to 120 GB: `lvreduce --size {{120G}} {{logical_volume}}` -- Reduce a volume's size by 40GB as well as the underlying filesystem: +- Reduce a volume's size by 40 GB as well as the underlying filesystem: `lvreduce --size -{{40G}} -r {{logical_volume}}` diff --git a/pages/linux/lvresize.md b/pages/linux/lvresize.md index 3a72c4f946d5d4..a5dea44a8d167a 100644 --- a/pages/linux/lvresize.md +++ b/pages/linux/lvresize.md @@ -4,11 +4,11 @@ > See also: `lvm`. > More information: . -- Change the size of a logical volume to 120GB: +- Change the size of a logical volume to 120 GB: `lvresize --size {{120G}} {{volume_group}}/{{logical_volume}}` -- Extend the size of a logical volume as well as the underlying filesystem by 120GB: +- Extend the size of a logical volume as well as the underlying filesystem by 120 GB: `lvresize --size +{{120G}} --resizefs {{volume_group}}/{{logical_volume}}` @@ -16,6 +16,6 @@ `lvresize --size {{100}}%FREE {{volume_group}}/{{logical_volume}}` -- Reduce the size of a logical volume as well as the underlying filesystem by 120GB: +- Reduce the size of a logical volume as well as the underlying filesystem by 120 GB: `lvresize --size -{{120G}} --resizefs {{volume_group}}/{{logical_volume}}` diff --git a/pages/linux/lxc-network.md b/pages/linux/lxc-network.md new file mode 100644 index 00000000000000..6e9686982dfcc5 --- /dev/null +++ b/pages/linux/lxc-network.md @@ -0,0 +1,28 @@ +# lxc network + +> Manage networks for LXD containers. +> More information: . + +- List all available networks: + +`lxc network list` + +- Show the configuration of a specific network: + +`lxc network show {{network_name}}` + +- Add a running instance to a specific network: + +`lxc network attach {{network_name}} {{container_name}}` + +- Create a new managed network: + +`lxc network create {{network_name}}` + +- Set a bridge interface of a specific network: + +`lxc network set {{network_name}} bridge.external_interfaces {{eth0}}` + +- Disable NAT for a specific network: + +`lxc network set {{network_name}} ipv{{4}}.nat false` diff --git a/pages/linux/lxc-profile.md b/pages/linux/lxc-profile.md new file mode 100644 index 00000000000000..84ee0938c0d63d --- /dev/null +++ b/pages/linux/lxc-profile.md @@ -0,0 +1,28 @@ +# lxc profile + +> Manage profiles for LXD containers. +> More information: . + +- List all available profiles: + +`lxc profile list` + +- Show the configuration of a specific profile: + +`lxc profile show {{profile_name}}` + +- Edit a specific profile in the default editor: + +`lxc profile edit {{profile_name}}` + +- Edit a specific profile importing the configuration values from a file: + +`lxc profile edit {{profile_name}} < {{config.yaml}}` + +- Launch a new container with specific profiles: + +`lxc launch {{container_image}} {{container_name}} --profile {{profile1}} --profile {{profile2}}` + +- Change the profiles of a running container: + +`lxc profile assign {{container_name}} {{profile1,profile2}}` diff --git a/pages/linux/lxc.md b/pages/linux/lxc.md index 55f12f48e65637..897e6a54e3666b 100644 --- a/pages/linux/lxc.md +++ b/pages/linux/lxc.md @@ -2,6 +2,7 @@ > Manage Linux containers using the lxd REST API. > Any container names or patterns can be prefixed with the name of a remote server. +> More information: . - List local containers matching a string. Omit the string to list all local containers: @@ -30,3 +31,7 @@ - Take a snapshot of a container: `lxc snapshot [{{remote}}:]{{container}} {{snapshot}}` + +- Execute a specific command inside a container: + +`lxc exec [{{remote}}:]{{container}} {{command}}` diff --git a/pages/linux/lxi.md b/pages/linux/lxi.md new file mode 100644 index 00000000000000..e41e077bffea60 --- /dev/null +++ b/pages/linux/lxi.md @@ -0,0 +1,24 @@ +# lxi + +> Control LXI compatible instruments such as oscilloscopes. +> More information: . + +- Discover LXI devices on available networks: + +`lxi discover` + +- Capture a screenshot, detecting a plugin automatically: + +`lxi screenshot --address {{ip_address}}` + +- Capture a screenshot using a specified plugin: + +`lxi screenshot --address {{ip_address}} --plugin {{rigol-1000z}}` + +- Send an SCPI command to an instrument: + +`lxi scpi --address {{ip_address}} "{{*IDN?}}"` + +- Run a benchmark for request and response performance: + +`lxi benchmark --address {{ip_address}}` diff --git a/pages/linux/lxterminal.md b/pages/linux/lxterminal.md new file mode 100644 index 00000000000000..d4ce43035202b7 --- /dev/null +++ b/pages/linux/lxterminal.md @@ -0,0 +1,24 @@ +# lxterminal + +> Terminal emulator for LXDE. +> More information: . + +- Open an LXTerminal window: + +`lxterminal` + +- Open an LXTerminal window, run a command, and then exit: + +`lxterminal -e "{{command}}"` + +- Open an LXTerminal window with multiple tabs: + +`lxterminal --tabs={{tab_name1,tab_name2,...}}` + +- Open an LXTerminal window with a specific title: + +`lxterminal --title={{title_name}}` + +- Open an LXTerminal window with a specific working directory: + +`lxterminal --working-directory={{path/to/directory}}` diff --git a/pages/linux/mac2unix.md b/pages/linux/mac2unix.md index 5fe8e3d771d89d..5a7f4235c8bc54 100644 --- a/pages/linux/mac2unix.md +++ b/pages/linux/mac2unix.md @@ -1,7 +1,8 @@ # mac2unix > Change macOS-style line endings to Unix-style. -> Replaces LF with CR. +> Replaces CR with LF. +> More information: . - Change the line endings of a file: diff --git a/pages/linux/macchanger.md b/pages/linux/macchanger.md index 1cf1fbd75891ea..63f277f392aef7 100644 --- a/pages/linux/macchanger.md +++ b/pages/linux/macchanger.md @@ -1,6 +1,7 @@ # macchanger > Command-line utility for manipulating network interface MAC addresses. +> More information: . - View the current and permanent MAC addresses of a interface: diff --git a/pages/linux/makepkg.md b/pages/linux/makepkg.md index c81d7d5347c0ef..3d7fd7ba02c1a5 100644 --- a/pages/linux/makepkg.md +++ b/pages/linux/makepkg.md @@ -1,10 +1,10 @@ # makepkg -> Creates a package installable with the `pacman` package manager. -> Runs the commands from a PKGBUILD file to build the package. -> More information: . +> Create a package which can be used with `pacman`. +> Uses the `PKGBUILD` file in the current working directory by default. +> More information: . -- Make a package (run in the same directory as a PKGBUILD): +- Make a package: `makepkg` @@ -12,10 +12,22 @@ `makepkg --syncdeps` -- Same as above, but install the package with `pacman` when done: +- Make a package, install its dependencies then install it to the system: `makepkg --syncdeps --install` -- Make a package, but skip source checksums: +- Make a package, but skip checking the source's hashes: `makepkg --skipchecksums` + +- Clean up work directories after a successful build: + +`makepkg --clean` + +- Verify the hashes of the sources: + +`makepkg --verifysource` + +- Generate and save the source information into `.SRCINFO`: + +`makepkg --printsrcinfo > .SRCINFO` diff --git a/pages/linux/man.md b/pages/linux/man.md new file mode 100644 index 00000000000000..bed367459aa680 --- /dev/null +++ b/pages/linux/man.md @@ -0,0 +1,32 @@ +# man + +> Format and display manual pages. +> More information: . + +- Display the man page for a command: + +`man {{command}}` + +- Display the man page for a command from section 7: + +`man {{7}} {{command}}` + +- List all available sections for a command: + +`man --whatis {{command}}` + +- Display the path searched for manpages: + +`man --path` + +- Display the location of a manpage rather than the manpage itself: + +`man --where {{command}}` + +- Display the man page using a specific locale: + +`man --locale={{locale}} {{command}}` + +- Search for manpages containing a search string: + +`man --apropos "{{search_string}}"` diff --git a/pages/linux/manpath.md b/pages/linux/manpath.md index 6372d04fc44f57..5e608931f590e8 100644 --- a/pages/linux/manpath.md +++ b/pages/linux/manpath.md @@ -1,6 +1,7 @@ # manpath > Determine the search path for manual pages. +> More information: . - Display the search path used to find man pages: diff --git a/pages/linux/mashtree.md b/pages/linux/mashtree.md new file mode 100644 index 00000000000000..224c2e2a561498 --- /dev/null +++ b/pages/linux/mashtree.md @@ -0,0 +1,17 @@ +# mashtree + +> Makes a fast tree from genomes. +> Does not make a phylogeny. +> More information: . + +- Fastest method in mashtree to create a tree from fastq and/or fasta files using multiple threads, piping into a newick file: + +`mashtree --numcpus {{12}} {{*.fastq.gz}} {{*.fasta}} > {{mashtree.dnd}}` + +- Most accurate method in mashtree to create a tree from fastq and/or fasta files using multiple threads, piping into a newick file: + +`mashtree --mindepth {{0}} --numcpus {{12}} {{*.fastq.gz}} {{*.fasta}} > {{mashtree.dnd}}` + +- Most accurate method to create a tree with confidence values (note that any options for `mashtree` itself has to be on the right side of the `--`): + +`mashtree_bootstrap.pl --reps {{100}} --numcpus {{12}} {{*.fastq.gz}} -- --min-depth {{0}} > {{mashtree.bootstrap.dnd}}` diff --git a/pages/linux/mate-about.md b/pages/linux/mate-about.md new file mode 100644 index 00000000000000..db19363a0f826c --- /dev/null +++ b/pages/linux/mate-about.md @@ -0,0 +1,8 @@ +# mate-about + +> Show information about MATE desktop environment. +> More information: . + +- Print MATE version: + +`mate-about --version` diff --git a/pages/linux/mate-calc-cmd.md b/pages/linux/mate-calc-cmd.md new file mode 100644 index 00000000000000..cb13097e944c58 --- /dev/null +++ b/pages/linux/mate-calc-cmd.md @@ -0,0 +1,12 @@ +# mate-calc-cmd + +> Calculate mathematic expressions in MATE desktop environment in terminal. +> More information: . + +- Start an interactive calculator session: + +`mate-calc-cmd` + +- Calculate a specific mathematic expression: + +`{{2 + 5}}` diff --git a/pages/linux/mate-calc.md b/pages/linux/mate-calc.md new file mode 100644 index 00000000000000..318b976c4419c6 --- /dev/null +++ b/pages/linux/mate-calc.md @@ -0,0 +1,12 @@ +# mate-calc + +> Calculate mathematic expressions in MATE desktop environment. +> More information: . + +- Start the calculator: + +`mate-calc` + +- Calculate a specific mathematic expression: + +`mate-calc --solve {{2 + 5}}` diff --git a/pages/linux/mate-screenshot.md b/pages/linux/mate-screenshot.md new file mode 100644 index 00000000000000..776a74222c4582 --- /dev/null +++ b/pages/linux/mate-screenshot.md @@ -0,0 +1,32 @@ +# mate-screenshot + +> Make screenshots in MATE desktop environment. +> More information: . + +- Create a fullscreen screenshot: + +`mate-screenshot` + +- Create an active window screenshot: + +`mate-screenshot --window` + +- Create a specific area screenshot: + +`mate-screenshot --area` + +- Create a screenshot interactively: + +`mate-screenshot --interactive` + +- Create a screenshot without borders: + +`mate-screenshot --window --remove-border` + +- Create a screenshot with a specific effect: + +`mate-screenshot --effect={{shadow|border|none}}` + +- Create a screenshot with a specific delay in seconds: + +`mate-screenshot --delay={{5}}` diff --git a/pages/linux/mate-search-tool.md b/pages/linux/mate-search-tool.md new file mode 100644 index 00000000000000..e300979f8cf71d --- /dev/null +++ b/pages/linux/mate-search-tool.md @@ -0,0 +1,28 @@ +# mate-search-tool + +> Search files in MATE desktop environment. +> More information: . + +- Search files containing a specific string in their name in a specific directory: + +`mate-search-tool --named={{string}} --path={{path/to/directory}}` + +- Search files without waiting a user confirmation: + +`mate-search-tool --start --named={{string}} --path={{path/to/directory}}` + +- Search files with name matching a specific regular expression: + +`mate-search-tool --start --regex={{string}} --path={{path/to/directory}}` + +- Set a sorting order in search results: + +`mate-search-tool --start --named={{string}} --path={{path/to/directory}} --sortby={{name|folder|size|type|date}}` + +- Set a descending sorting order: + +`mate-search-tool --start --named={{string}} --path={{path/to/directory}} --descending` + +- Search files owned by a specific user/group: + +`mate-search-tool --start --{{user|group}}={{value}} --path={{path/to/directory}}` diff --git a/pages/linux/mcookie.md b/pages/linux/mcookie.md index c0473cfdaf41e3..97b47679b6a9a7 100644 --- a/pages/linux/mcookie.md +++ b/pages/linux/mcookie.md @@ -1,6 +1,7 @@ # mcookie -> Generates random 128 bit hexadecimal numbers. +> Generates random 128-bit hexadecimal numbers. +> More information: . - Generate a random number: diff --git a/pages/linux/mdadm.md b/pages/linux/mdadm.md index 4ff47b73f448af..daaf851837f1ce 100644 --- a/pages/linux/mdadm.md +++ b/pages/linux/mdadm.md @@ -5,24 +5,28 @@ - Create array: -`mdadm --create {{/dev/md/MyRAID}} --level {{raid_level}} --raid-devices {{number_of_disks}} {{/dev/sdXN}}` +`sudo mdadm --create {{/dev/md/MyRAID}} --level {{raid_level}} --raid-devices {{number_of_disks}} {{/dev/sdXN}}` - Stop array: -`mdadm --stop {{/dev/md0}}` +`sudo mdadm --stop {{/dev/md0}}` - Mark disk as failed: -`mdadm --fail {{/dev/md0}} {{/dev/sdXN}}` +`sudo mdadm --fail {{/dev/md0}} {{/dev/sdXN}}` - Remove disk: -`mdadm --remove {{/dev/md0}} {{/dev/sdXN}}` +`sudo mdadm --remove {{/dev/md0}} {{/dev/sdXN}}` - Add disk to array: -`mdadm --assemble {{/dev/md0}} {{/dev/sdXN}}` +`sudo mdadm --assemble {{/dev/md0}} {{/dev/sdXN}}` - Show RAID info: -`mdadm --detail {{/dev/md0}}` +`sudo mdadm --detail {{/dev/md0}}` + +- Reset disk by deleting RAID metadata: + +`sudo mdadm --zero-superblock {{/dev/sdXN}}` diff --git a/pages/linux/mdbook.md b/pages/linux/mdbook.md index f4495960c8b832..15919da012c98d 100644 --- a/pages/linux/mdbook.md +++ b/pages/linux/mdbook.md @@ -1,6 +1,6 @@ # mdbook -> Create online books by writing makrdown files. +> Create online books by writing Markdown files. > More information: . - Create a mdbook project in the current directory: diff --git a/pages/linux/medusa.md b/pages/linux/medusa.md index 3985fbab88b21c..8ac906ccb6ccbd 100644 --- a/pages/linux/medusa.md +++ b/pages/linux/medusa.md @@ -1,12 +1,13 @@ # Medusa > A modular and parallel login brute-forcer for a variety of protocols. +> More information: . - Execute brute force against an FTP server using a file containing usernames and a file containing passwords: `medusa -M ftp -h host -U {{path/to/username_file}} -P {{path/to/password_file}}` -- Execute a login attempt against a HTTP server using the username, password and user-agent specified: +- Execute a login attempt against an HTTP server using the username, password and user-agent specified: `medusa -M HTTP -h host -u {{username}} -p {{password}} -m USER-AGENT:"{{Agent}}"` diff --git a/pages/linux/megadl.md b/pages/linux/megadl.md new file mode 100644 index 00000000000000..fefd38e3c91cea --- /dev/null +++ b/pages/linux/megadl.md @@ -0,0 +1,8 @@ +# megadl + +> This command is an alias of `megatools-dl`. +> More information: . + +- View documentation for the original command: + +`tldr megatools-dl` diff --git a/pages/linux/megatools-dl.md b/pages/linux/megatools-dl.md new file mode 100644 index 00000000000000..b764c22fb425a8 --- /dev/null +++ b/pages/linux/megatools-dl.md @@ -0,0 +1,21 @@ +# megatools-dl + +> Download files from `mega.nz`. +> Part of the `megatools` suite. +> More information: . + +- Download files from a `mega.nz` link into the current directory: + +`megatools-dl {{https://mega.nz/...}}` + +- Download files from a `mega.nz` link into a specific directory: + +`megatools-dl --path {{path/to/directory}} {{https://mega.nz/...}}` + +- Interactively choose which files to download: + +`megatools-dl --choose-files {{https://mega.nz/...}}` + +- Limit the download speed in KiB/s: + +`megatools-dl --limit-speed {{speed}} {{https://mega.nz/...}}` diff --git a/pages/linux/microcom.md b/pages/linux/microcom.md index 460cd69de0d05f..9b2f3069020991 100644 --- a/pages/linux/microcom.md +++ b/pages/linux/microcom.md @@ -1,6 +1,7 @@ # microcom > A minimalistic terminal program, used to access remote devices via a serial, CAN or telnet connection from the console. +> More information: . - Open a serial port using the specified baud rate: diff --git a/pages/linux/mimetype.md b/pages/linux/mimetype.md index e6de211e73e039..4e0df0d7a900e2 100644 --- a/pages/linux/mimetype.md +++ b/pages/linux/mimetype.md @@ -1,6 +1,7 @@ # mimetype > Automatically determine the MIME type of a file. +> More information: . - Print the MIME type of a given file: @@ -14,7 +15,7 @@ `mimetype --describe {{path/to/file}}` -- Determine the MIME type of stdin (does not check a filename): +- Determine the MIME type of `stdin` (does not check a filename): `{{some_command}} | mimetype --stdin` diff --git a/pages/linux/minicom.md b/pages/linux/minicom.md new file mode 100644 index 00000000000000..abbcef3f4f86b5 --- /dev/null +++ b/pages/linux/minicom.md @@ -0,0 +1,16 @@ +# minicom + +> A program to communicate with the serial interface of a device. +> More information: . + +- Open a given serial port: + +`sudo minicom --device {{/dev/ttyUSB0}}` + +- Open a given serial port with a given baud rate: + +`sudo minicom --device {{/dev/ttyUSB0}} --baudrate {{115200}}` + +- Enter the configuration menu before communicating with a given serial port: + +`sudo minicom --device {{/dev/ttyUSB0}} --setup` diff --git a/pages/linux/mke2fs.md b/pages/linux/mke2fs.md index 365f36a7035854..9301f55aff2d12 100644 --- a/pages/linux/mke2fs.md +++ b/pages/linux/mke2fs.md @@ -1,6 +1,7 @@ # mke2fs > Creates a Linux filesystem inside a partition. +> More information: . - Create an ext2 filesystem in partition 1 of device b (`sdb1`): @@ -10,6 +11,6 @@ `mkfs.ext3 {{/dev/sdb1}}` -- Create an ext3 filesystem in partition 1 of device b (`sdb1`): +- Create an ext4 filesystem in partition 1 of device b (`sdb1`): -`mkfs.ext3 {{/dev/sdb1}}` +`mkfs.ext4 {{/dev/sdb1}}` diff --git a/pages/linux/mkfs.btrfs.md b/pages/linux/mkfs.btrfs.md index a70aac0b53261e..6efdf3d41aa0e5 100644 --- a/pages/linux/mkfs.btrfs.md +++ b/pages/linux/mkfs.btrfs.md @@ -2,7 +2,7 @@ > Create a btrfs filesystem. > Defaults to `raid1`, which specifies 2 copies of a given data block spread across 2 different devices. -> More information: . +> More information: . - Create a btrfs filesystem on a single device: diff --git a/pages/linux/mkfs.cramfs.md b/pages/linux/mkfs.cramfs.md index 57f5cff84d5a17..f2341b5b85a6e1 100644 --- a/pages/linux/mkfs.cramfs.md +++ b/pages/linux/mkfs.cramfs.md @@ -1,6 +1,7 @@ # mkfs.cramfs > Creates a ROM filesystem inside a partition. +> More information: . - Create a ROM filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.exfat.md b/pages/linux/mkfs.exfat.md index f8d05c2a79b1b1..da5213a74dbc6c 100644 --- a/pages/linux/mkfs.exfat.md +++ b/pages/linux/mkfs.exfat.md @@ -1,6 +1,7 @@ # mkfs.exfat > Creates an exfat filesystem inside a partition. +> More information: . - Create an exfat filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.ext4.md b/pages/linux/mkfs.ext4.md index 1add3e42192bf4..aa479958bb5024 100644 --- a/pages/linux/mkfs.ext4.md +++ b/pages/linux/mkfs.ext4.md @@ -1,6 +1,7 @@ # mkfs.ext4 > Creates an ext4 filesystem inside a partition. +> More information: . - Create an ext4 filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.fat.md b/pages/linux/mkfs.fat.md index d2d1d0673e6234..3c44843a7c8398 100644 --- a/pages/linux/mkfs.fat.md +++ b/pages/linux/mkfs.fat.md @@ -1,6 +1,7 @@ # mkfs.fat > Creates an MS-DOS filesystem inside a partition. +> More information: . - Create a fat filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.md b/pages/linux/mkfs.md index 40715330d2d233..b455e94e43145e 100644 --- a/pages/linux/mkfs.md +++ b/pages/linux/mkfs.md @@ -2,6 +2,7 @@ > Build a Linux filesystem on a hard disk partition. > This command is deprecated in favor of filesystem specific mkfs. utils. +> More information: . - Build a Linux ext2 filesystem on a partition: diff --git a/pages/linux/mkfs.minix.md b/pages/linux/mkfs.minix.md index ce1fc15c6c8548..d7903fcce48ab6 100644 --- a/pages/linux/mkfs.minix.md +++ b/pages/linux/mkfs.minix.md @@ -1,6 +1,7 @@ # mkfs.minix > Creates a Minix filesystem inside a partition. +> More information: . - Create a Minix filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.ntfs.md b/pages/linux/mkfs.ntfs.md index 33d26f879a99af..836b854cc1cc1e 100644 --- a/pages/linux/mkfs.ntfs.md +++ b/pages/linux/mkfs.ntfs.md @@ -1,6 +1,7 @@ # mkfs.ntfs > Creates a NTFS filesystem inside a partition. +> More information: . - Create a NTFS filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkfs.vfat.md b/pages/linux/mkfs.vfat.md index 9a6a0d92458d6a..9a9e24c2b1e63a 100644 --- a/pages/linux/mkfs.vfat.md +++ b/pages/linux/mkfs.vfat.md @@ -1,6 +1,7 @@ # mkfs.vfat > Creates an MS-DOS filesystem inside a partition. +> More information: . - Create a vfat filesystem inside partition 1 on device b (`sdb1`): diff --git a/pages/linux/mkisofs.md b/pages/linux/mkisofs.md index bf170653723f55..88097deb923e5e 100644 --- a/pages/linux/mkisofs.md +++ b/pages/linux/mkisofs.md @@ -2,6 +2,7 @@ > Create ISO files from directories. > Also aliased as `genisoimage`. +> More information: . - Create an ISO from a directory: diff --git a/pages/linux/mklost+found.md b/pages/linux/mklost+found.md new file mode 100644 index 00000000000000..b038553094b405 --- /dev/null +++ b/pages/linux/mklost+found.md @@ -0,0 +1,8 @@ +# mklost+found + +> Create a lost+found directory. +> More information: . + +- Create a `lost+found` directory in the current directory: + +`mklost+found` diff --git a/pages/linux/mkswap.md b/pages/linux/mkswap.md index 263afd6a3634c3..6dcabd927286a8 100644 --- a/pages/linux/mkswap.md +++ b/pages/linux/mkswap.md @@ -1,6 +1,7 @@ # mkswap > Sets up a Linux swap area on a device or in a file. +> More information: . - Setup a given partition as swap area: diff --git a/pages/linux/mktemp.md b/pages/linux/mktemp.md new file mode 100644 index 00000000000000..999e7c693db9de --- /dev/null +++ b/pages/linux/mktemp.md @@ -0,0 +1,16 @@ +# mktemp + +> Create a temporary file or directory. +> More information: . + +- Create an empty temporary file and print the absolute path to it: + +`mktemp` + +- Create an empty temporary file with a given suffix and print the absolute path to file: + +`mktemp --suffix "{{.ext}}"` + +- Create a temporary directory and print the absolute path to it: + +`mktemp --directory` diff --git a/pages/linux/mmcli.md b/pages/linux/mmcli.md new file mode 100644 index 00000000000000..905061b19d59bc --- /dev/null +++ b/pages/linux/mmcli.md @@ -0,0 +1,12 @@ +# mmcli + +> Control and monitor the ModemManager. +> More information: . + +- List SMS messages available on the modem: + +`sudo mmcli --modem={{modem}} --messaging-list-sms` + +- Delete a message from the modem, specifying its path: + +`sudo mmcli --modem={{modem}} --messaging-delete-sms={{path/to/message_file}}` diff --git a/pages/linux/mmdebstrap.md b/pages/linux/mmdebstrap.md new file mode 100644 index 00000000000000..8922bddcc0552a --- /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/mocp.md b/pages/linux/mocp.md index 7fdb3bce8845d4..a1c0e68f463015 100644 --- a/pages/linux/mocp.md +++ b/pages/linux/mocp.md @@ -31,6 +31,6 @@ `mocp --{{play|stop}}` -- Stop the MOC server while it's in the backgroud: +- Stop the MOC server while it's in the background: `mocp --exit` diff --git a/pages/linux/modinfo.md b/pages/linux/modinfo.md index a10d7a2ba6c7f7..b248545d74ff4a 100644 --- a/pages/linux/modinfo.md +++ b/pages/linux/modinfo.md @@ -1,6 +1,7 @@ # modinfo > Extract information about a Linux kernel module. +> More information: . - List all attributes of a kernel module: diff --git a/pages/linux/modprobe.md b/pages/linux/modprobe.md index 27c3d8b26144c1..fe991cf3ccf40e 100644 --- a/pages/linux/modprobe.md +++ b/pages/linux/modprobe.md @@ -1,6 +1,7 @@ # modprobe > Add or remove modules from the Linux kernel. +> More information: . - Pretend to load a module into the kernel, but don't actually do it: diff --git a/pages/linux/module.md b/pages/linux/module.md index 828eec5d3193b2..3dba844fcfce0d 100644 --- a/pages/linux/module.md +++ b/pages/linux/module.md @@ -9,7 +9,7 @@ - Search for a module by name: -`module spider {{module_name}}` +`module avail {{module_name}}` - Load a module: @@ -21,8 +21,12 @@ - Unload a specific loaded module: -`module {{module_name}}` +`module unload {{module_name}}` - Unload all loaded modules: `module purge` + +- Specify user-created modules: + +`module use {{path/to/modulefiles}}` diff --git a/pages/linux/mountpoint.md b/pages/linux/mountpoint.md index d22a9e35ea4d98..020818c3b3fb2e 100644 --- a/pages/linux/mountpoint.md +++ b/pages/linux/mountpoint.md @@ -1,6 +1,7 @@ # mountpoint > Test if a directory is a filesystem mountpoint. +> More information: . - Check if a directory is a mountpoint: diff --git a/pages/linux/mpg123.md b/pages/linux/mpg123.md new file mode 100644 index 00000000000000..e06d41ab0a0379 --- /dev/null +++ b/pages/linux/mpg123.md @@ -0,0 +1,32 @@ +# mpg123 + +> Console MPEG audio player. +> More information: . + +- Play the specified mp3 files: + +`mpg123 {{path/to/file1.mp3 path/to/file2.mp3 ...}}` + +- Play the mp3 from `stdin`: + +`cat {{file.mp3}} | mpg123 -` + +- Jump forward to the next song: + +`f` + +- Jump back to the beginning for the song: + +`b` + +- Stop or replay the current file: + +`s` + +- Fast forward: + +`.` + +- Quit: + +`q` diff --git a/pages/linux/mpicc.md b/pages/linux/mpicc.md new file mode 100644 index 00000000000000..43b275ce17ff88 --- /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/mpstat.md b/pages/linux/mpstat.md index 8ca1319338e450..c6a3020a1e3ca6 100644 --- a/pages/linux/mpstat.md +++ b/pages/linux/mpstat.md @@ -1,6 +1,7 @@ # mpstat > Report CPU statistics. +> More information: . - Display CPU statistics every 2 seconds: diff --git a/pages/linux/mssh.md b/pages/linux/mssh.md index 160aa75a2eebea..4164c43bd3b430 100644 --- a/pages/linux/mssh.md +++ b/pages/linux/mssh.md @@ -1,6 +1,7 @@ # mssh > GTK+ based SSH client for interacting with multiple SSH servers at once. +> More information: . - Open a new window and connect to multiple SSH servers: diff --git a/pages/linux/mt.md b/pages/linux/mt.md new file mode 100644 index 00000000000000..c02c73cd64dd05 --- /dev/null +++ b/pages/linux/mt.md @@ -0,0 +1,32 @@ +# mt + +> Control magnetic tape drive operation (commonly LTO tape). +> More information: . + +- Check the status of a tape drive: + +`mt -f {{/dev/nstX}} status` + +- Rewind the tape to beginning: + +`mt -f {{/dev/nstX}} rewind` + +- Move forward a given files, then position the tape on first block of next file: + +`mt -f {{/dev/nstX}} fsf {{count}}` + +- Rewind the tape, then position the tape at beginning of the given file: + +`mt -f {{/dev/nstX}} asf {{count}}` + +- Position the tape at the end of valid data: + +`mt -f {{/dev/nstX}} eod` + +- Rewind the tape and unload/eject it: + +`mt -f {{/dev/nstX}} eject` + +- Write EOF (End-of-file) mark at the current position: + +`mt -f {{/dev/nstX} eof` diff --git a/pages/linux/mycli.md b/pages/linux/mycli.md index 72490483cdb08a..dc14eac447fe9d 100644 --- a/pages/linux/mycli.md +++ b/pages/linux/mycli.md @@ -1,6 +1,7 @@ # mycli > A CLI for MySQL, MariaDB, and Percona with auto-completion and syntax highlighting. +> More information: . - Connect to a database with the currently logged in user: diff --git a/pages/linux/n.md b/pages/linux/n.md deleted file mode 100644 index cc3db8f9f5666d..00000000000000 --- a/pages/linux/n.md +++ /dev/null @@ -1,23 +0,0 @@ -# n - -> Tool to manage multiple node versions. - -- Install a given version of node. If the version is already installed, it will be activated: - -`n {{version}}` - -- Display installed versions and interactively activate one of them: - -`n` - -- Remove a version: - -`n rm {{version}}` - -- Execute a file with a given version: - -`n use {{version}} {{file.js}}` - -- Output binary path for a version: - -`n bin {{version}}` diff --git a/pages/linux/nala.md b/pages/linux/nala.md new file mode 100644 index 00000000000000..3096140be40105 --- /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: + +`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: + +`sudo nala search "{{pattern}}"` + +- Update the list of available packages and upgrade the system: + +`nala upgrade` + +- Remove all unused packages and dependencies from your system: + +`nala autoremove` + +- Fetch fast mirrors to improve download speeds: + +`nala fetch` + +- Display the history of all transactions: + +`nala history` diff --git a/pages/linux/namcap.md b/pages/linux/namcap.md new file mode 100644 index 00000000000000..7756670f4997fa --- /dev/null +++ b/pages/linux/namcap.md @@ -0,0 +1,16 @@ +# namcap + +> Check binary packages and source `PKGBUILD`s for common packaging mistakes. +> More information: . + +- Check a specific `PKGBUILD` file: + +`namcap {{path/to/pkgbuild}}` + +- Check a specific package file: + +`namcap {{path/to/package.pkg.tar.zst}}` + +- Check a file, printing extra [i]nformational messages: + +`namcap -i {{path/to/file}}` diff --git a/pages/linux/namei.md b/pages/linux/namei.md index 211f24f58560b1..f2c60358651ebe 100644 --- a/pages/linux/namei.md +++ b/pages/linux/namei.md @@ -2,6 +2,7 @@ > Follows a pathname (which can be a symbolic link) until a terminal point is found (a file/directory/char device etc). > This program is useful for finding "too many levels of symbolic links" problems. +> More information: . - Resolve the pathnames specified as the argument parameters: diff --git a/pages/linux/ncal.md b/pages/linux/ncal.md new file mode 100644 index 00000000000000..a415ed6246cd00 --- /dev/null +++ b/pages/linux/ncal.md @@ -0,0 +1,8 @@ +# ncal + +> This command is an alias of `cal`. +> More information: . + +- View documentation for the original command: + +`tldr cal` diff --git a/pages/linux/ncat.md b/pages/linux/ncat.md index c8da3aad513ac6..569cd8365751eb 100644 --- a/pages/linux/ncat.md +++ b/pages/linux/ncat.md @@ -1,6 +1,7 @@ # ncat > Use the normal `cat` functionality over networks. +> More information: . - Listen for input on the specified port and write it to the specified file: diff --git a/pages/linux/ncdu.md b/pages/linux/ncdu.md deleted file mode 100644 index f2c14616e1f8a7..00000000000000 --- a/pages/linux/ncdu.md +++ /dev/null @@ -1,19 +0,0 @@ -# ncdu - -> Disk usage analyzer with an ncurses interface. - -- Analyze the current working directory: - -`ncdu` - -- Analyze a given directory: - -`ncdu {{path/to/directory}}` - -- Save results to a file: - -`ncdu -o {{path/to/file}}` - -- Exclude files that match a pattern, argument can be given multiple times to add more patterns: - -`ncdu --exclude '{{*.txt}}'` diff --git a/pages/linux/ndctl.md b/pages/linux/ndctl.md index d0c7fb29e6e9ce..583eaa69a5068b 100644 --- a/pages/linux/ndctl.md +++ b/pages/linux/ndctl.md @@ -1,6 +1,7 @@ # ndctl > Utility for managing Non-Volatile DIMMs. +> More information: . - Create an 'fsdax' mode namespace: diff --git a/pages/linux/needrestart.md b/pages/linux/needrestart.md new file mode 100644 index 00000000000000..62075addadb569 --- /dev/null +++ b/pages/linux/needrestart.md @@ -0,0 +1,36 @@ +# needrestart + +> Check which daemons need to be restarted after library upgrades. +> More information: . + +- List outdated processes: + +`needrestart` + +- Interactively restart services: + +`sudo needrestart` + +- List outdated processes in [v]erbose or [q]uiet mode: + +`needrestart -{{v|q}}` + +- Check if the [k]ernel is outdated: + +`needrestart -k` + +- Check if the CPU microcode is outdated: + +`needrestart -w` + +- List outdated processes in [b]atch mode: + +`needrestart -b` + +- List outdated processed using a specific [c]onfiguration file: + +`needrestart -c {{path/to/config}}` + +- Display help: + +`needrestart --help` diff --git a/pages/linux/nemo.md b/pages/linux/nemo.md index 8603487eb67428..c67fc8e0ce5927 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/netselect-apt.md b/pages/linux/netselect-apt.md index 995d0f0bd3396e..ba50852138390a 100644 --- a/pages/linux/netselect-apt.md +++ b/pages/linux/netselect-apt.md @@ -1,7 +1,7 @@ # netselect-apt > Create a `sources.list` file for a Debian mirror with the lowest latency. -> More information: . +> More information: . - Create `sources.list` using the lowest latency server: diff --git a/pages/linux/networkctl.md b/pages/linux/networkctl.md new file mode 100644 index 00000000000000..e7ee2ad97dca6a --- /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/newgrp.md b/pages/linux/newgrp.md index 972cac55978fbb..55135a994793a4 100644 --- a/pages/linux/newgrp.md +++ b/pages/linux/newgrp.md @@ -1,6 +1,7 @@ # newgrp > Switch primary group membership. +> More information: . - Change user's primary group membership: diff --git a/pages/linux/nft.md b/pages/linux/nft.md index 329cd5d310c4fa..bb844b2636d9cd 100644 --- a/pages/linux/nft.md +++ b/pages/linux/nft.md @@ -2,6 +2,7 @@ > Allows configuration of tables, chains and rules provided by the Linux kernel firewall. > Nftables replaces iptables. +> More information: . - View current configuration: @@ -19,6 +20,10 @@ `sudo nft add rule {{inet}} {{filter}} {{input}} {{tcp}} {{dport \{ telnet, ssh, http, https \} accept}}` +- Add a NAT rule to translate all traffic from the `192.168.0.0/24` subnet to the host's public IP: + +`sudo nft add rule {{nat}} {{postrouting}} ip saddr {{192.168.0.0/24}} {{masquerade}}` + - Show rule handles: `sudo nft --handle --numeric list chain {{family}} {{table}} {{chain}}` diff --git a/pages/linux/nitrogen.md b/pages/linux/nitrogen.md new file mode 100644 index 00000000000000..f5f8b8662d2674 --- /dev/null +++ b/pages/linux/nitrogen.md @@ -0,0 +1,16 @@ +# nitrogen + +> Desktop background browser and setter for X Window. +> More information: . + +- View and set the wallpapers from a specific directory: + +`nitrogen {{path/to/directory}}` + +- Set the wallpaper with automatic size settings: + +`nitrogen --set-auto {{path/to/file}}` + +- Restore the previous wallpaper: + +`nitrogen --restore` diff --git a/pages/linux/nixos-container.md b/pages/linux/nixos-container.md new file mode 100644 index 00000000000000..38c7395cf98f58 --- /dev/null +++ b/pages/linux/nixos-container.md @@ -0,0 +1,28 @@ +# nixos-container + +> Starts NixOS containers using Linux containers. +> More information: . + +- List running containers: + +`sudo nixos-container list` + +- Create a NixOS container with a specific configuration file: + +`sudo nixos-container create {{container_name}} --config-file {{nix_config_file_path}}` + +- Start, stop, terminate, or destroy a specific container: + +`sudo nixos-container {{start|stop|terminate|destroy|status}} {{container_name}}` + +- Run a command in a running container: + +`sudo nixos-container run {{container_name}} -- {{command}} {{command_arguments}}` + +- Update a container configuration: + +`sudo $EDITOR /var/lib/container/{{container_name}}/etc/nixos/configuration.nix && sudo nixos-container update {{container_name}}` + +- Enter an interactive shell session on an already-running container: + +`sudo nixos-container root-login {{container_name}}` diff --git a/pages/linux/nixos-option.md b/pages/linux/nixos-option.md new file mode 100644 index 00000000000000..161979226de5cb --- /dev/null +++ b/pages/linux/nixos-option.md @@ -0,0 +1,28 @@ +# nixos-option + +> Inspect a NixOS configuration. +> More information: . + +- List all subkeys of a given option key: + +`nixos-option {{option_key}}` + +- List current boot kernel modules: + +`nixos-option boot.kernelModules` + +- List authorized keys for a specific user: + +`nixos-option users.users.{{username}}.openssh.authorizedKeys.{{keyFiles|keys}}` + +- List all remote builders: + +`nixos-option nix.buildMachines` + +- List all subkeys of a given key on another NixOS configuration: + +`NIXOS_CONFIG={{path_to_configuration.nix}} nixos-option {{option_key}}` + +- Show recursively all values of a user: + +`nixos-option -r users.users.{{user}}` diff --git a/pages/linux/nm.md b/pages/linux/nm.md deleted file mode 100644 index 60cf6137e7ede4..00000000000000 --- a/pages/linux/nm.md +++ /dev/null @@ -1,19 +0,0 @@ -# nm - -> List symbol names in object files. - -- List global (extern) functions in a file (prefixed with T): - -`nm -g {{file.o}}` - -- List only undefined symbols in a file: - -`nm -u {{file.o}}` - -- List all symbols, even debugging symbols: - -`nm -a {{file.o}}` - -- Demangle C++ symbols (make them readable): - -`nm --demangle {{file.o}}` diff --git a/pages/linux/nmblookup.md b/pages/linux/nmblookup.md new file mode 100644 index 00000000000000..7dd91b83a438d6 --- /dev/null +++ b/pages/linux/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/linux/nmcli-agent.md b/pages/linux/nmcli-agent.md new file mode 100644 index 00000000000000..228ba4860e96e3 --- /dev/null +++ b/pages/linux/nmcli-agent.md @@ -0,0 +1,17 @@ +# nmcli 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: + +`nmcli agent secret` + +- Register nmcli as a polkit agent and listen for authorization requests: + +`nmcli agent polkit` + +- 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 3a96ec8b629ba3..84220c9f43ff10 100644 --- a/pages/linux/nmcli-connection.md +++ b/pages/linux/nmcli-connection.md @@ -1,13 +1,14 @@ # nmcli connection > Connection management with NetworkManager. -> More information: . +> This subcommand can also be called with `nmcli c`. +> More information: . -- List all NetworkManager connections (shows name, uuid, type and device): +- List all NetworkManager connections (shows name, UUID, type and device): `nmcli connection` -- Activate a connection by specifying an uuid: +- Activate a connection by specifying a UUID: `nmcli connection up uuid {{uuid}}` @@ -26,3 +27,7 @@ - Create a static IPv4-only connection: `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: + +`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 094c095d73f251..16aba36d75eea4 100644 --- a/pages/linux/nmcli-device.md +++ b/pages/linux/nmcli-device.md @@ -1,7 +1,8 @@ # nmcli device > Hardware device management with NetworkManager. -> More information: . +> This subcommand can also be called with `nmcli d`. +> More information: . - Print the statuses of all network interfaces: diff --git a/pages/linux/nmcli-general.md b/pages/linux/nmcli-general.md new file mode 100644 index 00000000000000..a1612d2a5f3a9c --- /dev/null +++ b/pages/linux/nmcli-general.md @@ -0,0 +1,29 @@ +# nmcli general + +> Manage general settings of NetworkManager. +> This subcommand can also be called with `nmcli g`. +> More information: . + +- Show the general status of NetworkManager: + +`nmcli general` + +- Show the hostname of the current device: + +`nmcli general hostname` + +- Change the hostname of the current device: + +`sudo nmcli general hostname {{new_hostname}}` + +- Show the permissions of NetworkManager: + +`nmcli general permissions` + +- Show the current logging level and domains: + +`nmcli general logging` + +- Set the logging level and/or domains (see `man NetworkManager.conf` for all available domains): + +`nmcli general logging level {{INFO|OFF|ERR|WARN|DEBUG|TRACE}} domain {{domain_1,domain_2,...}}` diff --git a/pages/linux/nmcli-monitor.md b/pages/linux/nmcli-monitor.md new file mode 100644 index 00000000000000..6dbcab09e8a262 --- /dev/null +++ b/pages/linux/nmcli-monitor.md @@ -0,0 +1,9 @@ +# nmcli monitor + +> Monitor changes to the NetworkManager connection status. +> This subcommand can also be called with `nmcli m`. +> More information: . + +- Start monitoring NetworkManager changes: + +`nmcli monitor` diff --git a/pages/linux/nmcli-networking.md b/pages/linux/nmcli-networking.md new file mode 100644 index 00000000000000..d1d49ed34e5f33 --- /dev/null +++ b/pages/linux/nmcli-networking.md @@ -0,0 +1,21 @@ +# nmcli networking + +> Manage the networking status of NetworkManager. +> This subcommand can also be called with `nmcli n`. +> More information: . + +- Show the networking status of NetworkManager: + +`nmcli networking` + +- Enable or disable networking and all interfaces managed by NetworkManager: + +`nmcli networking {{on|off}}` + +- Show the last known connectivity state: + +`nmcli networking connectivity` + +- Show the current connectivity state: + +`nmcli networking connectivity check` diff --git a/pages/linux/nmcli-radio.md b/pages/linux/nmcli-radio.md new file mode 100644 index 00000000000000..8c5c9d96bf91c9 --- /dev/null +++ b/pages/linux/nmcli-radio.md @@ -0,0 +1,29 @@ +# nmcli radio + +> Show radio switches status or enable and disable switches. +> This subcommand can also be called with `nmcli r`. +> More information: . + +- Show status of Wi-Fi in NetworkManager: + +`nmcli radio wifi` + +- Turn Wi-Fi on or off in NetworkManager: + +`nmcli radio wifi {{on|off}}` + +- Show status of WWAN in NetworkManager: + +`nmcli radio wwan` + +- Turn WWAN on or off in NetworkManager: + +`nmcli radio wwan {{on|off}}` + +- Show status of both switches in NetworkManager: + +`nmcli radio all` + +- Turn both switches on or off in NetworkManager: + +`nmcli radio all {{on|off}}` diff --git a/pages/linux/nmcli.md b/pages/linux/nmcli.md index 26d6d8805e3ae2..354401136fedc5 100644 --- a/pages/linux/nmcli.md +++ b/pages/linux/nmcli.md @@ -1,20 +1,21 @@ # nmcli -> A command line tool for controlling NetworkManager. -> More information: . +> A command-line tool for controlling NetworkManager. +> Some subcommands such as `nmcli monitor` have their own usage documentation. +> More information: . -- Check the nmcli version: +- Run an `nmcli` subcommand: -`nmcli --version` +`nmcli {{agent|connection|device|general|help|monitor|networking|radio}} {{command_options}}` -- Call general help: +- Display the current version of NetworkManager: -`nmcli --help` +`nmcli --version` -- Call help on a command: +- Display help: -`nmcli {{command}} --help` +`nmcli --help` -- Execute an `nmcli` command: +- Display help for a subcommand: -`nmcli {{command}}` +`nmcli {{subcommand}} --help` diff --git a/pages/linux/nmon.md b/pages/linux/nmon.md index cad8bdb01d2e4b..c3d7d5faa5f3d8 100644 --- a/pages/linux/nmon.md +++ b/pages/linux/nmon.md @@ -1,6 +1,7 @@ # nmon > A system administrator, tuner, and benchmark tool. +> More information: . - Start nmon: diff --git a/pages/linux/nmtui.md b/pages/linux/nmtui.md index a0729376af379f..d8bda7116e39e2 100644 --- a/pages/linux/nmtui.md +++ b/pages/linux/nmtui.md @@ -2,6 +2,7 @@ > Text user interface for controlling NetworkManager. > Use arrow keys to navigate, enter to select an option. +> More information: . - Open the user interface: diff --git a/pages/linux/nologin.md b/pages/linux/nologin.md index 4120b09b39406c..6a48bc0a2c962a 100644 --- a/pages/linux/nologin.md +++ b/pages/linux/nologin.md @@ -1,6 +1,7 @@ # nologin > Alternative shell that prevents a user from logging in. +> More information: . - Set a user's login shell to `nologin` to prevent the user from logging in: diff --git a/pages/linux/nordvpn.md b/pages/linux/nordvpn.md new file mode 100644 index 00000000000000..73698f24c60827 --- /dev/null +++ b/pages/linux/nordvpn.md @@ -0,0 +1,32 @@ +# nordvpn + +> Command-line interface for NordVPN. +> More information: . + +- Interactively log into a NordVPN account: + +`nordvpn login` + +- Display the connection status: + +`nordvpn status` + +- Connect to the nearest NordVPN server: + +`nordvpn connect` + +- List all available countries: + +`nordvpn countries` + +- Connect to a NordVPN server in a specific country: + +`nordvpn connect {{Germany}}` + +- Connect to a NordVPN server in a specific country and city: + +`nordvpn connect {{Germany}} {{Berlin}}` + +- Set autoconnect option: + +`nordvpn set autoconnect on` diff --git a/pages/linux/notify-send.md b/pages/linux/notify-send.md index 0b08d0cfd5d0f3..9a353331e5b2fb 100644 --- a/pages/linux/notify-send.md +++ b/pages/linux/notify-send.md @@ -1,6 +1,7 @@ # notify-send > Uses the current desktop environment's notification system to create a notification. +> More information: . - Show a notification with the title "Test" and the content "This is a test": @@ -14,6 +15,6 @@ `notify-send -t 5000 "{{Test}}" "{{This is a test}}"` -- Show a notification with an app's icon: +- Show a notification with an app's icon and name: -`notify-send "{{Test}}" --icon={{google-chrome}}` +`notify-send "{{Test}}" --icon={{google-chrome}} --app-name="{{Google Chrome}}"` diff --git a/pages/linux/nova.md b/pages/linux/nova.md new file mode 100644 index 00000000000000..fe3f8ebd6e97c7 --- /dev/null +++ b/pages/linux/nova.md @@ -0,0 +1,28 @@ +# nova + +> The OpenStack project that provides a way to provision compute instances. +> More information: . + +- List VMs on current tenant: + +`nova list` + +- List VMs of all tenants (admin user only): + +`nova list --all-tenants` + +- Boot a VM on a specific host: + +`nova boot --nic net-id={{net_id}} --image {{image_id}} --flavor {{flavor}} --availability-zone nova:{{host_name}} {{vm_name}}` + +- Start a server: + +`nova start {{server}}` + +- Stop a server: + +`nova stop {{server}}` + +- Attach a network interface to a specific VM: + +`nova interface-attach --net-id {{net_id}} {{server}}` diff --git a/pages/linux/nsenter.md b/pages/linux/nsenter.md index 06290c52c28dd0..309b0d502e0cae 100644 --- a/pages/linux/nsenter.md +++ b/pages/linux/nsenter.md @@ -2,16 +2,28 @@ > Run a new command in a running process' namespace. > Particularly useful for docker images or chroot jails. -> More information: . +> More information: . -- Run command in existing processes network namespace: +- Run a specific command using the same namespaces as an existing process: -`nsenter -t {{pid}} -n {{command}} {{command_arguments}}` +`nsenter --target {{pid}} --all {{command}} {{command_arguments}}` -- Run a new command in an existing processes ps-table namespace: +- Run a specific command in an existing process's network namespace: -`nsenter -t {{pid}} -p {{command}} {{command_arguments}}` +`nsenter --target {{pid}} --net {{command}} {{command_arguments}}` -- Run command in existing processes IPC namespace: +- Run a specific command in an existing process's PID namespace: -`nsenter -t {{pid}} -i {{command}} {{command_arguments}}` +`nsenter --target {{pid}} --pid {{command}} {{command_arguments}}` + +- Run a specific command in an existing process's IPC namespace: + +`nsenter --target {{pid}} --ipc {{command}} {{command_arguments}}` + +- Run a specific command in an existing process's UTS, time, and IPC namespaces: + +`nsenter --target {{pid}} --uts --time --ipc -- {{command}} {{command_arguments}}` + +- Run a specific command in an existing process's namespace by referencing procfs: + +`nsenter --pid=/proc/{{pid}}/pid/net -- {{command}} {{command_arguments}}` diff --git a/pages/linux/nsxiv.md b/pages/linux/nsxiv.md new file mode 100644 index 00000000000000..baa477541993d7 --- /dev/null +++ b/pages/linux/nsxiv.md @@ -0,0 +1,32 @@ +# nsxiv + +> Neo Simple X Image Viewer. +> More information: . + +- Open images: + +`nsxiv {{path/to/file1 path/to/file2 ...}}` + +- Open images from directories in image mode: + +`nsxiv {{path/to/directory1 path/to/directory2 ...}}` + +- Search directories recursively for images to view: + +`nsxiv -r {{path/to/directory1 path/to/directory2 ...}}` + +- Quit nsxiv: + +`q` + +- Switch to thumbnail mode or open selected image in image mode: + +`Return` + +- Count images forward in image mode: + +`n` + +- Count images backward in image mode: + +`p` diff --git a/pages/linux/ntfsfix.md b/pages/linux/ntfsfix.md index 39dc09718907c6..88be33d33c01f2 100644 --- a/pages/linux/ntfsfix.md +++ b/pages/linux/ntfsfix.md @@ -1,6 +1,7 @@ # ntfsfix > Fix common problems on an NTFS partition. +> More information: . - Fix a given NTFS partition: diff --git a/pages/linux/ntpdate.md b/pages/linux/ntpdate.md new file mode 100644 index 00000000000000..faf68c4525e27c --- /dev/null +++ b/pages/linux/ntpdate.md @@ -0,0 +1,20 @@ +# ntpdate + +> Synchronize and set the date and time via NTP. +> More information: . + +- Synchronize and set date and time: + +`sudo ntpdate {{host}}` + +- Query the host without setting the time: + +`ntpdate -q {{host}}` + +- Use an unprivileged port in case a firewall is blocking privileged ports: + +`sudo ntpdate -u {{host}}` + +- Force time to be stepped using `settimeofday` instead of `slewed`: + +`sudo ntpdate -b {{host}}` diff --git a/pages/linux/ntpq.md b/pages/linux/ntpq.md new file mode 100644 index 00000000000000..2ce51dec1ca103 --- /dev/null +++ b/pages/linux/ntpq.md @@ -0,0 +1,24 @@ +# ntpq + +> Query the Network Time Protocol (NTP) daemon. +> More information: . + +- Start `ntpq` in interactive mode: + +`ntpq --interactive` + +- Print a list of NTP peers: + +`ntpq --peers` + +- Print a list of NTP peers without resolving hostnames from IP addresses: + +`ntpq --numeric --peers` + +- Use `ntpq` in debugging mode: + +`ntpq --debug-level` + +- Print NTP system variables values: + +`ntpq --command={{rv}}` diff --git a/pages/linux/obabel.md b/pages/linux/obabel.md new file mode 100644 index 00000000000000..81ff99e5e47321 --- /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 00000000000000..5afd843adebaa4 --- /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/openvpn3.md b/pages/linux/openvpn3.md new file mode 100644 index 00000000000000..045c1899f9acb2 --- /dev/null +++ b/pages/linux/openvpn3.md @@ -0,0 +1,24 @@ +# openvpn3 + +> OpenVPN 3 Linux client. +> More information: . + +- Start a new VPN session: + +`openvpn3 session-start --config {{path/to/config.conf}}` + +- List established sessions: + +`openvpn3 sessions-list` + +- Disconnect the currently established session started with given configuration: + +`openvpn3 session-manage --config {{path/to/config.conf}} --disconnect` + +- Import VPN configuration: + +`openvpn3 config-import --config {{path/to/config.conf}}` + +- List imported configurations: + +`openvpn3 configs-list` diff --git a/pages/linux/opkg.md b/pages/linux/opkg.md index 1a6ad6599afca7..c49619fd355917 100644 --- a/pages/linux/opkg.md +++ b/pages/linux/opkg.md @@ -1,6 +1,7 @@ # opkg > A lightweight package manager used to install OpenWrt packages. +> More information: . - Install a package: diff --git a/pages/linux/ostree.md b/pages/linux/ostree.md new file mode 100644 index 00000000000000..d78696625913fa --- /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 56028fc3df4432..72457c56e40405 100644 --- a/pages/linux/pacaur.md +++ b/pages/linux/pacaur.md @@ -1,6 +1,7 @@ # pacaur > A utility for Arch Linux to build and install packages from the Arch User Repository. +> More information: . - Synchronize and update all packages (includes AUR): diff --git a/pages/linux/paccache.md b/pages/linux/paccache.md index f89c4519ae84a0..6fddbb886bb60f 100644 --- a/pages/linux/paccache.md +++ b/pages/linux/paccache.md @@ -1,6 +1,7 @@ # paccache > A pacman cache cleaning utility. +> More information: . - Remove all but the 3 most recent package versions from the pacman cache: diff --git a/pages/linux/pacdiff.md b/pages/linux/pacdiff.md new file mode 100644 index 00000000000000..99eacb7e5b32bf --- /dev/null +++ b/pages/linux/pacdiff.md @@ -0,0 +1,28 @@ +# pacdiff + +> Maintenance utility for `.pacorig`, `.pacnew` and `.pacsave` files created by `pacman`. +> More information: . + +- Review files that need maintenance in interactive mode: + +`pacdiff` + +- Use sudo and sudoedit to remove and merge files: + +`pacdiff --sudo` + +- Review files needing maintenance, creating `.bak`ups of the original if you `(O)verwrite`: + +`pacdiff --sudo --backup` + +- Use a specific editor to view and merge configuration files (default is `vim -d`): + +`DIFFPROG={{editor}} pacdiff` + +- Scan for configuration files with `locate` instead of using pacman database: + +`pacdiff --locate` + +- Display help: + +`pacdiff --help` diff --git a/pages/linux/pacman-database.md b/pages/linux/pacman-database.md index 629b47e37cd959..e96bc979bf3bc8 100644 --- a/pages/linux/pacman-database.md +++ b/pages/linux/pacman-database.md @@ -4,10 +4,6 @@ > Modify certain attributes of the installed packages. > More information: . -- Display help: - -`pacman --database --help` - - Mark a package as implicitly installed: `sudo pacman --database --asdeps {{package_name}}` @@ -27,3 +23,7 @@ - Display only error messages: `pacman --database --check --quiet` + +- Display help: + +`pacman --database --help` diff --git a/pages/linux/pacman-files.md b/pages/linux/pacman-files.md index a783dd417a73e5..b9757d37f7ffa4 100644 --- a/pages/linux/pacman-files.md +++ b/pages/linux/pacman-files.md @@ -1,12 +1,9 @@ # pacman --files > Arch Linux package manager utility. +> See also `pkgfile`. > More information: . -- Display help: - -`pacman --files --help` - - Update the package database: `sudo pacman --files --refresh` @@ -17,7 +14,7 @@ - Find the package that owns a specific file, using a regular expression: -`pacman --files --regex '{{search_pattern}}'` +`pacman --files --regex '{{regular_expression}}'` - List only the package names: @@ -30,3 +27,7 @@ - List only the absolute path to the files: `pacman --query --list --quiet {{package_name}}` + +- Display help: + +`pacman --files --help` diff --git a/pages/linux/pacman-key.md b/pages/linux/pacman-key.md new file mode 100644 index 00000000000000..3674c6e16263ac --- /dev/null +++ b/pages/linux/pacman-key.md @@ -0,0 +1,36 @@ +# pacman-key + +> Wrapper script for GnuPG used to manage pacman's keyring. +> More information: . + +- Initialize the pacman keyring: + +`sudo pacman-key --init` + +- Add the default Arch Linux keys: + +`sudo pacman-key --populate {{archlinux}}` + +- List keys from the public keyring: + +`pacman-key --list-keys` + +- Add the specified keys: + +`sudo pacman-key --add {{path/to/keyfile.gpg}}` + +- Receive a key from a key server: + +`sudo pacman-key --recv-keys "{{uid|name|email}}"` + +- Print the fingerprint of a specific key: + +`pacman-key --finger "{{uid|name|email}}"` + +- Sign an imported key locally: + +`sudo pacman-key --lsign-key "{{uid|name|email}}"` + +- Remove a specific key: + +`sudo pacman-key --delete "{{uid|name|email}}"` diff --git a/pages/linux/pacman-remove.md b/pages/linux/pacman-remove.md index 7d6b5357cd7175..3c2f12b0be70e1 100644 --- a/pages/linux/pacman-remove.md +++ b/pages/linux/pacman-remove.md @@ -3,10 +3,6 @@ > Arch Linux package manager utility. > More information: . -- Display help for this subcommand: - -`pacman --remove --help` - - Remove a package and its dependencies: `sudo pacman --remove --recursive {{package_name}}` @@ -30,3 +26,7 @@ - List packages that would be affected (does not remove any packages): `pacman --remove --print {{package_name}}` + +- Display help for this subcommand: + +`pacman --remove --help` diff --git a/pages/linux/pacman-upgrade.md b/pages/linux/pacman-upgrade.md index f1488cf357baa9..1a4a2a34366ed6 100644 --- a/pages/linux/pacman-upgrade.md +++ b/pages/linux/pacman-upgrade.md @@ -3,10 +3,6 @@ > Arch Linux package manager utility. > More information: . -- Display help: - -`pacman --upgrade --help` - - Install one or more packages from files: `sudo pacman --upgrade {{path/to/package1.pkg.tar.zst}} {{path/to/package2.pkg.tar.zst}}` @@ -25,4 +21,8 @@ - List packages that would be affected (does not install any packages): -`pacman --query --print {{path/to/package.pkg.tar.zst}}` +`pacman --upgrade --print {{path/to/package.pkg.tar.zst}}` + +- Display help: + +`pacman --upgrade --help` diff --git a/pages/linux/pacman.md b/pages/linux/pacman.md index 8fb3d717a213ba..4d8d9a25d0fb4b 100644 --- a/pages/linux/pacman.md +++ b/pages/linux/pacman.md @@ -1,19 +1,21 @@ # pacman > Arch Linux package manager utility. +> Some subcommands such as `pacman sync` have their own usage documentation. +> For equivalent commands in other package managers, see . > More information: . - Synchronize and update all packages: -`pacman -Syu` +`sudo pacman -Syu` - Install a new package: -`pacman -S {{package_name}}` +`sudo pacman -S {{package_name}}` - Remove a package and its dependencies: -`pacman -Rs {{package_name}}` +`sudo pacman -Rs {{package_name}}` - Search the package database for a regular expression or keyword: @@ -27,10 +29,10 @@ `pacman -Qe` -- Find which package owns a certain file: +- List orphan packages (installed as dependencies but not actually required by any package): -`pacman -Qo {{filename}}` +`pacman -Qtdq` -- Empty package cache to free up space: +- Empty the entire pacman cache: -`pacman -Scc` +`sudo pacman -Scc` diff --git a/pages/linux/pacstall.md b/pages/linux/pacstall.md new file mode 100644 index 00000000000000..5c4c9d69544ad2 --- /dev/null +++ b/pages/linux/pacstall.md @@ -0,0 +1,36 @@ +# pacstall + +> An AUR package manager for Ubuntu. +> More information: . + +- Search the package database for a package name: + +`pacstall --search {{package_name}}` + +- Install a package: + +`pacstall --install {{package_name}}` + +- Remove a package: + +`pacstall --remove {{package_name}}` + +- Add a repository to the database (only GitHub and GitLab are supported): + +`pacstall --add-repo {{remote_repository_location}}` + +- Update pacstall's scripts: + +`pacstall --update` + +- Update all packages: + +`pacstall --upgrade` + +- Display information about a package: + +`pacstall --query-info {{package_name}}` + +- List all installed packages: + +`pacstall --list` diff --git a/pages/linux/pactree.md b/pages/linux/pactree.md new file mode 100644 index 00000000000000..110256fbf0cfdd --- /dev/null +++ b/pages/linux/pactree.md @@ -0,0 +1,24 @@ +# pactree + +> Package dependency tree viewer for pacman. +> More information: . + +- Print the dependency tree of a specific package: + +`pactree {{package}}` + +- Print what packages depend on a specific package: + +`pactree --reverse {{package}}` + +- Dump dependencies one per line, skipping duplicates: + +`pactree --unique {{package}}` + +- Include optional dependencies of a specific package and colorize the output: + +`pactree --optional --color {{package}}` + +- Display help: + +`pactree` diff --git a/pages/linux/pamac.md b/pages/linux/pamac.md index f00ced88d7816c..3fe3f3844e33b6 100644 --- a/pages/linux/pamac.md +++ b/pages/linux/pamac.md @@ -1,6 +1,6 @@ # pamac -> A command line utility for the GUI package manager pamac. +> A command-line utility for the GUI package manager pamac. > If you can't see the AUR packages, enable it in `/etc/pamac.conf` or in the GUI. > More information: . diff --git a/pages/linux/parted.md b/pages/linux/parted.md index 8a761a684c6bf7..d666b543df0343 100644 --- a/pages/linux/parted.md +++ b/pages/linux/parted.md @@ -1,6 +1,7 @@ # parted > A partition manipulation program. +> See also: `partprobe`. > More information: . - List partitions on all block devices: @@ -23,7 +24,7 @@ `select {{/dev/sdX}}` -- Create a 16GB partition with the specified filesystem in interactive mode: +- Create a 16 GB partition with the specified filesystem in interactive mode: `mkpart {{primary|logical|extended}} {{btrfs|ext2|ext3|ext4|fat16|fat32|hfs|hfs+|linux-swap|ntfs|reiserfs|udf|xfs}} {{0%}} {{16G}}` diff --git a/pages/linux/partprobe.md b/pages/linux/partprobe.md new file mode 100644 index 00000000000000..e3ae08445b1fc6 --- /dev/null +++ b/pages/linux/partprobe.md @@ -0,0 +1,16 @@ +# partprobe + +> Notify the operating system kernel of partition table changes. +> More information: . + +- Notify the operating system kernel of partition table changes: + +`sudo partprobe` + +- Notify the kernel of partition table changes and show a summary of devices and their partitions: + +`sudo partprobe --summary` + +- Show a summary of devices and their partitions but don't notify the kernel: + +`sudo partprobe --summary --dry-run` diff --git a/pages/linux/partx.md b/pages/linux/partx.md index 1bbd2a9d2c17fd..f42adc475b39a1 100644 --- a/pages/linux/partx.md +++ b/pages/linux/partx.md @@ -7,7 +7,7 @@ `sudo partx --list {{path/to/device_or_disk_image}}` -- Add all the paritions found in a given block device to the kernel: +- Add all the partitions found in a given block device to the kernel: `sudo partx --add --verbose {{path/to/device_or_disk_image}}` diff --git a/pages/linux/paru.md b/pages/linux/paru.md index 1356c87e23c5f8..35f4a7e499b2a4 100644 --- a/pages/linux/paru.md +++ b/pages/linux/paru.md @@ -5,7 +5,7 @@ - Interactively search for and install a package: -`paru {{package_name_or_seach_term}}` +`paru {{package_name_or_search_term}}` - Synchronize and update all packages: diff --git a/pages/linux/pasuspender.md b/pages/linux/pasuspender.md index 2844322683eb79..60a3f862807778 100644 --- a/pages/linux/pasuspender.md +++ b/pages/linux/pasuspender.md @@ -1,7 +1,8 @@ # pasuspender > Temporarily suspends `pulseaudio` while another command is running to allow access to alsa. +> More information: . -- Suspend pulseaudio while running `jackd`: +- Suspend PulseAudio while running `jackd`: `pasuspender -- {{jackd -d alsa --device hw:0}}` diff --git a/pages/linux/pdbedit.md b/pages/linux/pdbedit.md new file mode 100644 index 00000000000000..eb888467bf8e0b --- /dev/null +++ b/pages/linux/pdbedit.md @@ -0,0 +1,21 @@ +# pdbedit + +> Edit the Samba user database. +> For simple user add/remove/password, you can also use `smbpasswd`. +> More information: . + +- List all Samba users (use verbose flag to show their settings): + +`sudo pdbedit --list --verbose` + +- Add an existing Unix user to Samba (will prompt for password): + +`sudo pdbedit --user {{username}} --create` + +- Remove a Samba user: + +`sudo pdbedit --user {{username}} --delete` + +- Reset a Samba user's failed password counter: + +`sudo pdbedit --user {{username}} --bad-password-count-reset` diff --git a/pages/linux/pdfgrep.md b/pages/linux/pdfgrep.md deleted file mode 100644 index 475899f6cb0daa..00000000000000 --- a/pages/linux/pdfgrep.md +++ /dev/null @@ -1,23 +0,0 @@ -# pdfgrep - -> Search text in PDF files. - -- Find lines that match pattern in a PDF: - -`pdfgrep {{pattern}} {{file.pdf}}` - -- Include file name and page number for each matched line: - -`pdfgrep --with-filename --page-number {{pattern}} {{file.pdf}}` - -- Do a case insensitive search for lines that begin with "foo" and return the first 3 matches: - -`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}` - -- Find pattern in files with a `.pdf` extension in the current directory recursively: - -`pdfgrep --recursive {{pattern}}` - -- Find pattern on files that match a specific glob in the current directory recursively: - -`pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}` diff --git a/pages/linux/pdftoppm.md b/pages/linux/pdftoppm.md new file mode 100644 index 00000000000000..514c3f682e3fa0 --- /dev/null +++ b/pages/linux/pdftoppm.md @@ -0,0 +1,24 @@ +# pdftoppm + +> Convert PDF document pages to portable Pixmap (image formats). +> More information: . + +- Specify the range of pages to convert (N-first page, M-last page): + +`pdftoppm -f {{N}} -l {{M}} {{path/to/file.pdf}} {{image_name_prefix}}` + +- Convert only the first page of a PDF: + +`pdftoppm -singlefile {{path/to/file.pdf}} {{image_name_prefix}}` + +- Generate a monochrome PBM file (instead of a color PPM file): + +`pdftoppm -mono {{path/to/file.pdf}} {{image_name_prefix}}` + +- Generate a grayscale PGM file (instead of a color PPM file): + +`pdftoppm -gray {{path/to/file.pdf}} {{image_name_prefix}}` + +- Generate a PNG file instead a PPM file: + +`pdftoppm -png {{path/to/file.pdf}} {{image_name_prefix}}` diff --git a/pages/linux/pdfxup.md b/pages/linux/pdfxup.md new file mode 100644 index 00000000000000..b73ccbee1b4f02 --- /dev/null +++ b/pages/linux/pdfxup.md @@ -0,0 +1,17 @@ +# pdfxup + +> N-up PDF pages. +> N-upping means putting multiple pages onto one page by scaling and rotating them into a grid. +> More information: . + +- Create a 2-up PDF: + +`pdfxup -o {{path/to/output.pdf}} {{path/to/input.pdf}}` + +- Create a PDF with 3 columns and 2 lines per page: + +`pdfxup -x {{3}} -y {{2}} -o {{path/to/output.pdf}} {{path/to/input.pdf}}` + +- Create a PDF in booklet mode (2-up, and pages are sorted to form a book when folded): + +`pdfxup -b -o {{path/to/output.pdf}} {{path/to/input.pdf}}` diff --git a/pages/linux/perf.md b/pages/linux/perf.md index 44a32233afe31b..c9babf1165e0db 100644 --- a/pages/linux/perf.md +++ b/pages/linux/perf.md @@ -1,12 +1,13 @@ # perf -> Framework for linux performance counter measurements. +> Framework for Linux performance counter measurements. +> More information: . - Display basic performance counter stats for a command: `perf stat {{gcc hello.c}}` -- Display system-wide real time performance counter profile: +- Display system-wide real-time performance counter profile: `sudo perf top` @@ -14,6 +15,10 @@ `sudo perf record {{command}}` +- Record the profile of an existing process into `perf.data`: + +`sudo perf record -p {{pid}}` + - Read `perf.data` (created by `perf record`) and display the profile: `sudo perf report` diff --git a/pages/linux/perl-rename.md b/pages/linux/perl-rename.md index 5a3fb332e13b9b..fcf1cb18f068db 100644 --- a/pages/linux/perl-rename.md +++ b/pages/linux/perl-rename.md @@ -2,6 +2,7 @@ > Rename multiple files. > NOTE: this page refers to the command from the `perl-rename` Arch Linux package. +> More information: . - Rename files using a Perl Common Regular Expression (substitute 'foo' with 'bar' wherever found): diff --git a/pages/linux/phar.md b/pages/linux/phar.md index d873a006f20de0..6f3a77da8cc0c9 100644 --- a/pages/linux/phar.md +++ b/pages/linux/phar.md @@ -1,6 +1,7 @@ # phar > Create, update or extract PHP archives (PHAR). +> More information: . - Add space-separated files or directories to a Phar file: diff --git a/pages/linux/phpdismod.md b/pages/linux/phpdismod.md index dc0eff1ae9c34e..b57ec05c8669c3 100644 --- a/pages/linux/phpdismod.md +++ b/pages/linux/phpdismod.md @@ -1,11 +1,12 @@ # phpdismod > Disable PHP extensions on Debian-based OSes. +> More information: . -- Disable the json extension for every SAPI of every PHP version: +- Disable the JSON extension for every SAPI of every PHP version: `sudo phpdismod {{json}}` -- Disable the json extension for PHP 7.3 with the cli SAPI: +- Disable the JSON extension for PHP 7.3 with the cli SAPI: `sudo phpdismod -v {{7.3}} -s {{cli}} {{json}}` diff --git a/pages/linux/phpenmod.md b/pages/linux/phpenmod.md index a290f418fc01b3..df4397e0e2824c 100644 --- a/pages/linux/phpenmod.md +++ b/pages/linux/phpenmod.md @@ -1,11 +1,12 @@ # phpenmod > Enable PHP extensions on Debian-based OSes. +> More information: . -- Enable the json extension for every SAPI of every PHP version: +- Enable the JSON extension for every SAPI of every PHP version: `sudo phpenmod {{json}}` -- Enable the json extension for PHP 7.3 with the cli SAPI: +- Enable the JSON extension for PHP 7.3 with the cli SAPI: `sudo phpenmod -v {{7.3}} -s {{cli}} {{json}}` diff --git a/pages/linux/phpquery.md b/pages/linux/phpquery.md index afcc901e807b8d..0433f57b8b6912 100644 --- a/pages/linux/phpquery.md +++ b/pages/linux/phpquery.md @@ -1,6 +1,7 @@ # phpquery > PHP extension manager for Debian-based OSes. +> More information: . - List available PHP versions: @@ -14,6 +15,6 @@ `sudo phpquery -v {{7.3}} -s {{cli}} -M` -- Check if the json extension is enabled for PHP 7.3 with the apache2 SAPI: +- Check if the JSON extension is enabled for PHP 7.3 with the apache2 SAPI: `sudo phpquery -v {{7.3}} -s {{apache2}} -m {{json}}` diff --git a/pages/linux/pi.md b/pages/linux/pi.md index 62c6c2d9e2730d..5e66e44760ca1c 100644 --- a/pages/linux/pi.md +++ b/pages/linux/pi.md @@ -1,7 +1,7 @@ # pi -> Compute decimal Archimedes' constant Pi on the command line. -> More information: . +> Compute decimal Archimedes' constant Pi on the command-line. +> 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 00000000000000..47ef0788c1a957 --- /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/pidof.md b/pages/linux/pidof.md index 68057f1cb429d1..f5f1c27103f058 100644 --- a/pages/linux/pidof.md +++ b/pages/linux/pidof.md @@ -1,6 +1,7 @@ # pidof > Gets the ID of a process using its name. +> More information: . - List all process IDs with given name: @@ -16,4 +17,4 @@ - Kill all processes with given name: -`kill "$(pidof {{name}})" ` +`kill $(pidof {{name}})` diff --git a/pages/linux/pidstat.md b/pages/linux/pidstat.md index cb656b8e3080b0..554394c5bdbb93 100644 --- a/pages/linux/pidstat.md +++ b/pages/linux/pidstat.md @@ -1,6 +1,7 @@ # pidstat > Show system resource usage, including CPU, memory, IO etc. +> More information: . - Show CPU statistics at a 2 second interval for 10 times: diff --git a/pages/linux/pihole.md b/pages/linux/pihole.md index 927ef2064e3538..6ed002215b32d6 100644 --- a/pages/linux/pihole.md +++ b/pages/linux/pihole.md @@ -1,12 +1,16 @@ # pihole -> Terminal interface for the Pi-Hole ad-blocking DNS server. -> More information: . +> Terminal interface for the Pi-hole ad-blocking DNS server. +> More information: . - Check the Pi-hole daemon's status: `pihole status` +- Update Pi-hole and Gravity: + +`pihole -up` + - Monitor detailed system status: `pihole chronometer` @@ -26,3 +30,7 @@ - Search the lists for a domain: `pihole query {{example.com}}` + +- Open a real-time log of connections: + +`pihole tail` diff --git a/pages/linux/pinout.md b/pages/linux/pinout.md new file mode 100644 index 00000000000000..089388e299c091 --- /dev/null +++ b/pages/linux/pinout.md @@ -0,0 +1,12 @@ +# pinout + +> View the current Raspberry Pi's GPIO pin-out information on the terminal with an ASCII diagram. +> More information: . + +- View the pinout information and GPIO header diagram for the current Raspberry Pi: + +`pinout` + +- Open https://pinout.xyz/ in the default browser: + +`pinout -x` diff --git a/pages/linux/pkcon.md b/pages/linux/pkcon.md new file mode 100644 index 00000000000000..334d22d5f8712b --- /dev/null +++ b/pages/linux/pkcon.md @@ -0,0 +1,28 @@ +# pkcon + +> Command line client for PackageKit console program used by Discover and Gnome software and alternative to 'apt'. +> More information: . + +- Install a package: + +`pkcon install {{package}}` + +- Remove a package: + +`pkcon remove {{package}}` + +- Refresh the package cache: + +`pkcon refresh` + +- Update packages: + +`pkcon update` + +- Search for a specific package: + +`pkcon search {{package}}` + +- List all available packages: + +`pkcon get-packages` diff --git a/pages/linux/pkgadd.md b/pages/linux/pkgadd.md index 5a22fd3c3aaaeb..a26cac94a9383f 100644 --- a/pages/linux/pkgadd.md +++ b/pages/linux/pkgadd.md @@ -1,6 +1,7 @@ # pkgadd > Add a package to a CRUX system. +> More information: . - Install a local software package: diff --git a/pages/linux/pkgfile.md b/pages/linux/pkgfile.md index f861a0c76360c2..42a2aecc4bd0d8 100644 --- a/pages/linux/pkgfile.md +++ b/pages/linux/pkgfile.md @@ -1,8 +1,8 @@ # pkgfile > Tool for searching files from packages in the official repositories on arch-based systems. -> See also `pacman files`. -> More information: . +> See also `pacman files`, describing the usage of `pacman --files`. +> More information: . - Synchronize the pkgfile database: @@ -16,17 +16,17 @@ `pkgfile --list {{package_name}}` -- List only files in the `bin` directory provided by a package: +- List only files provided by a package located within the `bin` or `sbin` directory: `pkgfile --list --binaries {{package_name}}` -- Search for a package that owns a specific file using case insensitive matching: +- Search for a package that owns a specific file using case-insensitive matching: `pkgfile --ignorecase {{filename}}` -- Search for a package that owns a specific file in the `bin` directory: +- Search for a package that owns a specific file in the `bin` or `sbin` directory: -`pkgfile --binary {{filename}}` +`pkgfile --binaries {{filename}}` - Search for a package that owns a specific file, displaying the package version: diff --git a/pages/linux/pkginfo.md b/pages/linux/pkginfo.md index 567aefbaa4fdce..297384b0184976 100644 --- a/pages/linux/pkginfo.md +++ b/pages/linux/pkginfo.md @@ -1,6 +1,7 @@ # pkginfo > Query the package database on a CRUX system. +> More information: . - List installed packages and their versions: @@ -16,4 +17,4 @@ - Print the footprint of a file: -`pkginfo -f {{file}}` +`pkginfo -f {{path/to/file}}` diff --git a/pages/linux/pkgmk.md b/pages/linux/pkgmk.md index 3f9ea5f588f22a..f08e322f4c839c 100644 --- a/pages/linux/pkgmk.md +++ b/pages/linux/pkgmk.md @@ -1,6 +1,7 @@ # pkgmk > Make a binary package for use with pkgadd on CRUX. +> More information: . - Make and download a package: diff --git a/pages/linux/pkgrm.md b/pages/linux/pkgrm.md index c197400343f7f3..e217af1fb9bcfe 100644 --- a/pages/linux/pkgrm.md +++ b/pages/linux/pkgrm.md @@ -1,6 +1,7 @@ # pkgrm > Remove a package from a CRUX system. +> More information: . - Remove an installed package: diff --git a/pages/linux/pluma.md b/pages/linux/pluma.md new file mode 100644 index 00000000000000..dedcfad2dd4969 --- /dev/null +++ b/pages/linux/pluma.md @@ -0,0 +1,24 @@ +# pluma + +> Edit files in MATE desktop environment. +> More information: . + +- Start the editor: + +`pluma` + +- Open specific documents: + +`pluma {{path/to/file1 path/to/file2 ...}}` + +- Open documents using a specific encoding: + +`pluma --encoding {{WINDOWS-1252}} {{path/to/file1 path/to/file2 ...}}` + +- Print all supported encodings: + +`pluma --list-encodings` + +- Open document and go to a specific line: + +`pluma +{{10}} {{path/to/file}}` diff --git a/pages/linux/pmap.md b/pages/linux/pmap.md new file mode 100644 index 00000000000000..812f4569cfe01b --- /dev/null +++ b/pages/linux/pmap.md @@ -0,0 +1,24 @@ +# pmap + +> Report memory map of a process or processes. +> More information: . + +- Print memory map for a specific process id (PID): + +`pmap {{pid}}` + +- Show the extended format: + +`pmap --extended {{pid}}` + +- Show the device format: + +`pmap --device {{pid}}` + +- Limit results to a memory address range specified by `low` and `high`: + +`pmap --range {{low}},{{high}}` + +- Print memory maps for multiple processes: + +`pmap {{pid1 pid2 ...}}` diff --git a/pages/linux/pngcheck.md b/pages/linux/pngcheck.md new file mode 100644 index 00000000000000..466b569893762a --- /dev/null +++ b/pages/linux/pngcheck.md @@ -0,0 +1,21 @@ +# pngcheck + +> Forensics tool for validating the integrity of PNG based (`.png`, `.jng`, `.mng`) image files. +> Can also extract embedded images and text from a file. +> More information: . + +- Verify the integrity of an image file: + +`pngcheck {{path/to/file.png}}` + +- Check the file with [v]erbose and [c]olorized output: + +`pngcheck -vc {{path/to/file.png}}` + +- Display contents of [t]ext chunks and [s]earch for PNGs within a specific file: + +`pngcheck -ts {{path/to/file.png}}` + +- Search for, and e[x]tract embedded PNGs within a specific file: + +`pngcheck -x {{path/to/file.png}}` diff --git a/pages/linux/po4a-gettextize.md b/pages/linux/po4a-gettextize.md new file mode 100644 index 00000000000000..45b509d8bb128c --- /dev/null +++ b/pages/linux/po4a-gettextize.md @@ -0,0 +1,16 @@ +# po4a-gettextize + +> Convert a file to a PO file. +> More information: . + +- Convert a text file to PO file: + +`po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --po {{path/to/result.po}}` + +- Get a list of available formats: + +`po4a-gettextize --help-format` + +- Convert a text file along with a translated document to a PO file (`-l` option can be provided multiple times): + +`po4a-gettextize --format {{text}} --master {{path/to/master.txt}} --localized {{path/to/translated.txt}} --po {{path/to/result.po}}` diff --git a/pages/linux/po4a-translate.md b/pages/linux/po4a-translate.md new file mode 100644 index 00000000000000..d092a58a4c532e --- /dev/null +++ b/pages/linux/po4a-translate.md @@ -0,0 +1,13 @@ +# po4a-translate + +> Convert a PO file back to documentation format. +> The provided PO file should be the translation of the POT file which was produced by `po4a-gettextize`. +> More information: . + +- Convert a translated PO file back to a document: + +`po4a-translate --format {{text}} --master {{path/to/master.doc}} --po {{path/to/result.po}} --localized {{path/to/translated.txt}}` + +- Get a list of available formats: + +`po4a-translate --help-format` diff --git a/pages/linux/po4a-updatepo.md b/pages/linux/po4a-updatepo.md new file mode 100644 index 00000000000000..6d1e0b6712858f --- /dev/null +++ b/pages/linux/po4a-updatepo.md @@ -0,0 +1,16 @@ +# po4a-updatepo + +> Update the translation (in PO format) of a documentation. +> More information: . + +- Update a PO file according to the modification of its origin file: + +`po4a-updatepo --format {{text}} --master {{path/to/master.txt}} --po {{path/to/result.po}}` + +- Get a list of available formats: + +`po4a-updatepo --help-format` + +- Update several PO files according to the modification of their origin file: + +`po4a-updatepo --format {{text}} --master {{path/to/master.txt}} --po {{path/to/po1.po}} --po {{path/to/po2.po}}` diff --git a/pages/linux/po4a.md b/pages/linux/po4a.md new file mode 100644 index 00000000000000..0eb7b76f186937 --- /dev/null +++ b/pages/linux/po4a.md @@ -0,0 +1,8 @@ +# po4a + +> Update both PO files and translated documents. +> More information: . + +- Update PO files and documents according to the specified config file: + +`po4a {{path/to/config_file}}` diff --git a/pages/linux/ports.md b/pages/linux/ports.md index 97372e95f1ce26..669e9b33827939 100644 --- a/pages/linux/ports.md +++ b/pages/linux/ports.md @@ -1,6 +1,7 @@ # ports > Update/list the ports tree on a CRUX system. +> More information: . - Update the ports tree: diff --git a/pages/linux/postfix.md b/pages/linux/postfix.md index fb77f5466ba7cc..0efbe863338b75 100644 --- a/pages/linux/postfix.md +++ b/pages/linux/postfix.md @@ -2,7 +2,7 @@ > Postfix mail transfer agent (MTA) control program. > See also `dovecot`, a mail delivery agent (MDA) that integrates with Postfix. -> More information: . +> More information: . - Check the configuration: diff --git a/pages/linux/powerprofilesctl.md b/pages/linux/powerprofilesctl.md new file mode 100644 index 00000000000000..dc44304b71f307 --- /dev/null +++ b/pages/linux/powerprofilesctl.md @@ -0,0 +1,12 @@ +# powerprofilesctl + +> Make power profiles handling available over D-Bus. +> More information: . + +- List available power profiles: + +`powerprofilesctl list` + +- Set a specific power profile: + +`powerprofilesctl set {{profile_name}}` diff --git a/pages/common/powerstat.md b/pages/linux/powerstat.md similarity index 81% rename from pages/common/powerstat.md rename to pages/linux/powerstat.md index 4542cf244c2e8b..9a20e84b1cdbb8 100644 --- a/pages/common/powerstat.md +++ b/pages/linux/powerstat.md @@ -1,7 +1,7 @@ # powerstat > Measures the power consumption of a computer that has a battery power source or supports the RAPL interface. -> More information: . +> More information: . - Measure power with the default of 10 samples with an interval of 10 seconds: @@ -15,7 +15,7 @@ `powerstat -R {{interval}} {{number_of_samples}}` -- Show an histogram of the power measurements: +- Show a histogram of the power measurements: `powerstat -H {{interval}} {{number_of_samples}}` diff --git a/pages/linux/powertop.md b/pages/linux/powertop.md index c3abe7cfe2cc25..b1a319045949fa 100644 --- a/pages/linux/powertop.md +++ b/pages/linux/powertop.md @@ -1,6 +1,7 @@ # powertop > Optimize battery power usage. +> More information: . - Calibrate power usage measurements: diff --git a/pages/linux/prename.md b/pages/linux/prename.md index fbe5bc2dd8b861..20a85aa78e987b 100644 --- a/pages/linux/prename.md +++ b/pages/linux/prename.md @@ -2,6 +2,7 @@ > Rename multiple files. > NOTE: this page refers to the command from the `prename` Fedora package. +> More information: . - Rename files using a Perl Common Regular Expression (substitute 'foo' with 'bar' wherever found): diff --git a/pages/linux/pridecat.md b/pages/linux/pridecat.md new file mode 100644 index 00000000000000..3becb71134e759 --- /dev/null +++ b/pages/linux/pridecat.md @@ -0,0 +1,24 @@ +# pridecat + +> Like cat but more colorful :). +> More information: . + +- Print the contents of a file in pride colors to the standard output: + +`pridecat {{path/to/file}}` + +- Print contents of a file in trans colors: + +`pridecat {{path/to/file}} --{{transgender|trans}}` + +- Alternate between lesbian and bisexual pride flags: + +`pridecat {{path/to/file}} --lesbian --bi` + +- Print contents of a file with the background colors changed: + +`pridecat {{path/to/file}} -b` + +- List directory contents in pride flag colors: + +`ls | pridecat --{{flag}}` diff --git a/pages/linux/print.md b/pages/linux/print.md index d96d7fbb815354..fe81b8c392524d 100644 --- a/pages/linux/print.md +++ b/pages/linux/print.md @@ -2,6 +2,7 @@ > An alias to a `run-mailcap`'s action print. > Originally `run-mailcap` is used to process mime-type/file. +> More information: . - Print action can be used to print any file on default run-mailcap tool: diff --git a/pages/linux/prlimit.md b/pages/linux/prlimit.md new file mode 100644 index 00000000000000..dccb13d67205c8 --- /dev/null +++ b/pages/linux/prlimit.md @@ -0,0 +1,17 @@ +# prlimit + +> Get or set process resource soft and hard limits. +> Given a process ID and one or more resources, prlimit tries to retrieve and/or modify the limits. +> More information: . + +- Display limit values for all current resources for the running parent process: + +`prlimit` + +- Display limit values for all current resources of a specified process: + +`prlimit --pid {{pid number}}` + +- Run a command with a custom number of open files limit: + +`prlimit --nofile={{10}} {{command}}` diff --git a/pages/linux/progress.md b/pages/linux/progress.md deleted file mode 100644 index d62b4d432926d0..00000000000000 --- a/pages/linux/progress.md +++ /dev/null @@ -1,16 +0,0 @@ -# progress - -> Display/Monitor the progress of running coreutils. -> More information: . - -- Show the progress of running coreutils: - -`progress` - -- Show the progress of running coreutils in quiet mode: - -`progress -q` - -- Launch and monitor a single long-running command: - -`{{command}} & progress -mp $!` diff --git a/pages/linux/protontricks.md b/pages/linux/protontricks.md index d2bb594681804a..c7bbc443234a5b 100644 --- a/pages/linux/protontricks.md +++ b/pages/linux/protontricks.md @@ -1,20 +1,28 @@ # protontricks -> A simple wrapper that does winetricks things for Proton enabled games, requires Winetricks. +> A simple wrapper that runs Winetricks commands for Proton enabled games. > More information: . -- Show the protontricks help message: - -`protontricks` - - Run the protontricks GUI: `protontricks --gui` -- Run winetricks for a specific game: +- Run Winetricks for a specific game: `protontricks {{appid}} {{winetricks_args}}` -- Run a command within a games installation directory: +- Run a command within a game's installation directory: `protontricks -c {{command}} {{appid}}` + +- [l]ist all installed games: + +`protontricks -l` + +- [s]earch for a game's App ID by name: + +`protontricks -s {{game_name}}` + +- Show the protontricks help message: + +`protontricks --help` diff --git a/pages/linux/protonvpn-cli-connect.md b/pages/linux/protonvpn-cli-connect.md new file mode 100644 index 00000000000000..308ae015b12e8c --- /dev/null +++ b/pages/linux/protonvpn-cli-connect.md @@ -0,0 +1,28 @@ +# protonvpn-cli connect + +> Official client to connect to ProtonVPN from the command-line. +> More information: . + +- Connect to ProtonVPN interactively: + +`protonvpn-cli connect` + +- Connect to ProtonVPN using the fastest server available: + +`protonvpn-cli connect --fastest` + +- Connect to ProtonVPN using a specific server with a specific protocol: + +`protonvpn-cli connect {{server_name}} --protocol {{udp|tcp}}` + +- Connect to ProtonVPN using a random server with a specific protocol: + +`protonvpn-cli connect --random --protocol {{udp|tcp}}` + +- Connect to ProtonVPN using the fastest Tor-supporting server: + +`protonvpn-cli connect --tor` + +- Display help: + +`protonvpn-cli connect --help` diff --git a/pages/linux/protonvpn-cli.md b/pages/linux/protonvpn-cli.md new file mode 100644 index 00000000000000..1112d83276a51d --- /dev/null +++ b/pages/linux/protonvpn-cli.md @@ -0,0 +1,36 @@ +# protonvpn-cli + +> Official client for ProtonVPN service from the command-line. +> More information: . + +- Log in to the ProtonVPN account: + +`protonvpn-cli login {{username}}` + +- Start a kill switch upon connecting to ProtonVPN: + +`protonvpn-cli killswitch --on` + +- Connect to ProtonVPN interactively: + +`protonvpn-cli connect` + +- Display connection status: + +`protonvpn-cli status` + +- Block malware using ProtonVPN NetShield: + +`protonvpn-cli netshield --malware` + +- Disconnect from ProtonVPN: + +`protonvpn-cli disconnect` + +- Display the current ProtonVPN configuration: + +`protonvpn-cli config --list` + +- Display help for a subcommand: + +`protonvpn-cli {{subcommand}} --help` diff --git a/pages/linux/prt-get.md b/pages/linux/prt-get.md index c522fe462c2cfa..4a3ce5b9caebc0 100644 --- a/pages/linux/prt-get.md +++ b/pages/linux/prt-get.md @@ -1,6 +1,7 @@ # prt-get > The CRUX package manager. +> More information: . - Install a package: diff --git a/pages/linux/pstree.md b/pages/linux/pstree.md index ad5ef346b9e8fc..375cc9b4989a21 100644 --- a/pages/linux/pstree.md +++ b/pages/linux/pstree.md @@ -1,6 +1,7 @@ # pstree > A convenient tool to show running processes as a tree. +> More information: . - Display a tree of processes: diff --git a/pages/linux/pulseaudio.md b/pages/linux/pulseaudio.md index d048441affb043..1eab7e4f182f74 100644 --- a/pages/linux/pulseaudio.md +++ b/pages/linux/pulseaudio.md @@ -1,16 +1,17 @@ # pulseaudio -> The pulseaudio sound system daemon and manager. +> The PulseAudio sound system daemon and manager. +> More information: . -- Check if pulseaudio is running (a non-zero exit code means it is not running): +- Check if PulseAudio is running (a non-zero exit code means it is not running): `pulseaudio --check` -- Start the pulseaudio daemon in the background: +- Start the PulseAudio daemon in the background: `pulseaudio --start` -- Kill the running pulseaudio daemon: +- Kill the running PulseAudio daemon: `pulseaudio --kill` diff --git a/pages/linux/pw-cat.md b/pages/linux/pw-cat.md new file mode 100644 index 00000000000000..d77e3a1a702abb --- /dev/null +++ b/pages/linux/pw-cat.md @@ -0,0 +1,24 @@ +# pw-cat + +> Pipewire tool for playing and recording audio files. +> More information: . + +- List all available playback targets: + +`pw-cat --playback --list-targets` + +- Play a WAV file over the default target: + +`pw-cat --playback {{path/to/file.wav}}` + +- List all available record targets: + +`pw-cat --record --list-targets` + +- Record a sample recording at a different volume level: + +`pw-cat --record --volume={{0.1}} {{path/to/file.wav}}` + +- Record a sample recording using a different sample rate: + +`pw-cat --record --rate={{6000}} {{path/to/file.wav}}` diff --git a/pages/linux/pw-cli.md b/pages/linux/pw-cli.md new file mode 100644 index 00000000000000..7435eca0fe4e23 --- /dev/null +++ b/pages/linux/pw-cli.md @@ -0,0 +1,16 @@ +# pw-cli + +> The PipeWire Command Line Interface. +> More information: . + +- Print all nodes (sinks and sources) along with their IDs: + +`pw-cli list-objects Node` + +- Print information about an object with a specific ID: + +`pw-cli info {{4}}` + +- Print all objects' information: + +`pw-cli info all` diff --git a/pages/linux/pw-link.md b/pages/linux/pw-link.md new file mode 100644 index 00000000000000..b309a33a19da3d --- /dev/null +++ b/pages/linux/pw-link.md @@ -0,0 +1,20 @@ +# pw-link + +> Manage links between ports in PipeWire. +> More information: . + +- List all audio output and input ports: + +`pw-link --output --input` + +- Create a link between an output and an input port: + +`pw-link {{output_port_name}} {{input_port_name}}` + +- Disconnect two ports: + +`pw-link --disconnect {{output_port_name}} {{input_port_name}}` + +- Display help: + +`pw-link -h` diff --git a/pages/linux/pw-loopback.md b/pages/linux/pw-loopback.md new file mode 100644 index 00000000000000..c165929831535d --- /dev/null +++ b/pages/linux/pw-loopback.md @@ -0,0 +1,28 @@ +# pw-loopback + +> Tool for creating loopback devices in pipewire. +> More information: . + +- Create a loopback device with the default loopback behavior: + +`pw-loopback` + +- Create a loopback device that automatically connects to the speakers: + +`pw-loopback -m '{{[FL FR]}}' --capture-props='{{media.class=Audio/Sink}}'` + +- Create a loopback device that automatically connects to the microphone: + +`pw-loopback -m '{{[FL FR]}}' --playback-props='{{media.class=Audio/Source}}'` + +- Create a dummy loopback device that doesn't automatically connect to anything: + +`pw-loopback -m '{{[FL FR]}}' --capture-props='{{media.class=Audio/Sink}}' --playback-props='{{media.class=Audio/Source}}'` + +- Create a loopback device that automatically connects to the speakers and swaps the left and right channels between the sink and source: + +`pw-loopback --capture-props='{{media.class=Audio/Sink audio.position=[FL FR]}}' --playback-props='{{audio.position=[FR FL]}}'` + +- Create a loopback device that automatically connects to the microphone and swaps the left and right channels between the sink and source: + +`pw-loopback --capture-props='{{audio.position=[FR FL]}}' --playback-props='{{media.class=Audio/Source audio.position=[FL FR]}}'` diff --git a/pages/linux/pw-play.md b/pages/linux/pw-play.md new file mode 100644 index 00000000000000..51733bf88cb666 --- /dev/null +++ b/pages/linux/pw-play.md @@ -0,0 +1,16 @@ +# pw-play + +> Shorthand tool 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}}` + +- Play a wav sound file at a different volume level: + +`pw-play --volume={{0.1}} {{path/to/file.wav}}` diff --git a/pages/linux/pw-record.md b/pages/linux/pw-record.md new file mode 100644 index 00000000000000..09aa904c1350b7 --- /dev/null +++ b/pages/linux/pw-record.md @@ -0,0 +1,20 @@ +# pw-record + +> Shorthand tool for pw-cat --playback. +> More information: . + +- List all available record targets: + +`pw-record --list-targets` + +- Record a sample recording using the default target: + +`pw-record {{path/to/file.wav}}` + +- Record a sample recording at a different volume level: + +`pw-record --volume={{0.1}} {{path/to/file.wav}}` + +- Record a sample recording using a different sample rate: + +`pw-record --rate={{6000}} {{path/to/file.wav}}` diff --git a/pages/linux/pwd.md b/pages/linux/pwd.md new file mode 100644 index 00000000000000..68694b8964ac64 --- /dev/null +++ b/pages/linux/pwd.md @@ -0,0 +1,16 @@ +# pwd + +> Print name of current/working directory. +> More information: . + +- Print the current directory: + +`pwd` + +- Print the current directory, and resolve all symlinks (i.e. show the "physical" path): + +`pwd --physical` + +- Print the current logical directory: + +`pwd --logical` diff --git a/pages/linux/pwdx.md b/pages/linux/pwdx.md index 1dba580f7362c3..cfe9b5c3bb3efa 100644 --- a/pages/linux/pwdx.md +++ b/pages/linux/pwdx.md @@ -1,6 +1,7 @@ # pwdx > Print working directory of a process. +> More information: . - Print current working directory of a process: diff --git a/pages/linux/pwgen.md b/pages/linux/pwgen.md deleted file mode 100644 index 70f4cc67ffa6e6..00000000000000 --- a/pages/linux/pwgen.md +++ /dev/null @@ -1,15 +0,0 @@ -# pwgen - -> Generate pronounceable passwords. - -- Generate random password with s[y]mbols: - -`pwgen -y {{length}}` - -- Generate secure, hard-to-memorize passwords: - -`pwgen -s {{length}}` - -- Generate password with at least one capital letter in them: - -`pwgen -c {{length}}` diff --git a/pages/linux/pyrit.md b/pages/linux/pyrit.md new file mode 100644 index 00000000000000..03d063381be4a2 --- /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-cleanup.md b/pages/linux/qm-cleanup.md new file mode 100644 index 00000000000000..88067b107f0634 --- /dev/null +++ b/pages/linux/qm-cleanup.md @@ -0,0 +1,9 @@ +# qm cleanup + +> Clean up resources on QEMU/KVM Virtual Machine Manager like tap devices, VGPUs, etc. +> Called after a VM shuts down, crashes, etc. +> More information: . + +- Clean up resources: + +`qm cleanup {{vm_id}} {{clean-shutdown}} {{guest-requested}}` diff --git a/pages/linux/qm-clone.md b/pages/linux/qm-clone.md new file mode 100644 index 00000000000000..dc735df8ed4c86 --- /dev/null +++ b/pages/linux/qm-clone.md @@ -0,0 +1,28 @@ +# qm clone + +> Create a copy of virtual machine on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Copy a virtual machine: + +`qm copy {{vm_id}} {{new_vm_id}}` + +- Copy a virtual machine using a specific name: + +`qm copy {{vm_id}} {{new_vm_id}} --name {{name}}` + +- Copy a virtual machine using a specific descriptionn: + +`qm copy {{vm_id}} {{new_vm_id}} --description {{description}}` + +- Copy a virtual machine creating a full copy of all disks: + +`qm copy {{vm_id}} {{new_vm_id}} --full` + +- Copy a virtual machine using a specific format for file storage (requires `--full`): + +`qm copy {{vm_id}} {{new_vm_id}} --full --format {{qcow2|raw|vmdk}}` + +- Copy a virtual machine then add it to a specific pool: + +`qm copy {{vm_id}} {{new_vm_id}} --pool {{pool_name}}` diff --git a/pages/linux/qm-cloudinit-dump.md b/pages/linux/qm-cloudinit-dump.md new file mode 100644 index 00000000000000..e6b3e561cb6dc0 --- /dev/null +++ b/pages/linux/qm-cloudinit-dump.md @@ -0,0 +1,8 @@ +# qm cloudinit dump + +> Generate cloudinit configuration files. +> More information: . + +- Generate a cloudinit file for a specific configuration type: + +`qm cloudinit dump {{virtual_machine_id}} {{meta|network|user}}` diff --git a/pages/linux/qm-config.md b/pages/linux/qm-config.md new file mode 100644 index 00000000000000..2a320f0a36f4f7 --- /dev/null +++ b/pages/linux/qm-config.md @@ -0,0 +1,16 @@ +# qm config + +> Display the virtual machine configuration with pending configuration changes applied. +> More information: . + +- Display the virtual machine configuration: + +`qm config {{vm_id}}` + +- Display the current configuration values instead of pending values for the virtual machine: + +`qm config --current {{true}} {{vm_id}}` + +- Fetch the configuration values from the given snapshot: + +`qm config --snapshot {{snapshot_name}} {{vm_id}}` diff --git a/pages/linux/qm-create.md b/pages/linux/qm-create.md new file mode 100644 index 00000000000000..a17d4bf3d15862 --- /dev/null +++ b/pages/linux/qm-create.md @@ -0,0 +1,24 @@ +# qm create + +> Create or restore a virtual machine on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Create a virtual machine: + +`qm create {{100}}` + +- Automatically start the machine after creation: + +`qm create {{100}} --start 1` + +- Specify the type of operating system on the machine: + +`qm create {{100}} --ostype {{win10}}` + +- Replace an existing machine (requires archiving it): + +`qm create {{100}} --archive {{path/to/backup_file.tar}} --force 1` + +- Specify a script that is executed automatically depending on the state of the virtual machine: + +`qm create {{100}} --hookscript {{path/to/script.pl}}` diff --git a/pages/linux/qm-delsnapshot.md b/pages/linux/qm-delsnapshot.md new file mode 100644 index 00000000000000..5e64974caabbcb --- /dev/null +++ b/pages/linux/qm-delsnapshot.md @@ -0,0 +1,12 @@ +# qm delsnapshot + +> Delete virtual machine snapshots. +> More information: . + +- Delete a snapshot: + +`qm delsnapshot {{vm_id}} {{snapshot_name}}` + +- Delete a snapshot from a configuration file (even if removing the disk snapshot fails): + +`qm delsnapshot {{vm_id}} {{snapshot_name}} --force 1` diff --git a/pages/linux/qm-destroy.md b/pages/linux/qm-destroy.md new file mode 100644 index 00000000000000..0ab67546f4081f --- /dev/null +++ b/pages/linux/qm-destroy.md @@ -0,0 +1,20 @@ +# qm destroy + +> Destroy a virtual machine in QEMU/KVM Virtual Machine Manager. +> More information: . + +- Destroy a specific virtual machine: + +`qm destroy {{vm_id}}` + +- Destroy all disks that are not explicitly referenced in a specific virtual machine's configuration: + +`qm destroy {{vm_id}} --destroy-unreferenced-disks` + +- Destroy a virtual machine and remove from all locations (inventory, backup jobs, high availability managers, etc.): + +`qm destroy {{vm_id}} --purge` + +- Destroy a specific virtual machine ignoring locks and forcing destroy: + +`sudo qm destroy {{vm_id}} --skiplock` diff --git a/pages/linux/qm-guest-cmd.md b/pages/linux/qm-guest-cmd.md new file mode 100644 index 00000000000000..6e223696553e58 --- /dev/null +++ b/pages/linux/qm-guest-cmd.md @@ -0,0 +1,8 @@ +# qm guest cmd + +> Execute QEMU Guest Agent commands. +> More information: . + +- Execute a specific QEMU Guest Agent command: + +`qm guest cmd {{virtual_machine_id}} {{fsfreeze-freeze|fsfreeze-status|fsfreeze-thaw|fstrim|get-fsinfo|...}}` diff --git a/pages/linux/qm-guest-exec-status.md b/pages/linux/qm-guest-exec-status.md new file mode 100644 index 00000000000000..80bba340aefb11 --- /dev/null +++ b/pages/linux/qm-guest-exec-status.md @@ -0,0 +1,8 @@ +# qm guest exec-status + +> Print the status of the given pid started by the guest-agent on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Print the status of a specific PID: + +`qm guest exec-status {{vm_id}} {{pid}}` diff --git a/pages/linux/qm-guest-exec.md b/pages/linux/qm-guest-exec.md new file mode 100644 index 00000000000000..5c683be6910a5c --- /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}} {{arg1 arg2 ...}}` + +- Execute a specific command via a guest agent asynchronously: + +`qm guest exec {{vm_id}} {{arg1 arg2 ...}} --synchronous 0` + +- Execute a specific command via a guest agent with a specified timeout of 10 seconds: + +`qm guest exec {{vm_id}} {{arg1 arg2 ...}} --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}} {{arg1 arg2 ...}} --pass-stdin 1` diff --git a/pages/linux/qm-guest-passwd.md b/pages/linux/qm-guest-passwd.md new file mode 100644 index 00000000000000..c863c699af0d75 --- /dev/null +++ b/pages/linux/qm-guest-passwd.md @@ -0,0 +1,12 @@ +# qm guest passwd + +> Set the password for a specific user on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Set a password for a specific user in a virtual machine interactively: + +`qm guest passwd {{vm_id}} {{username}}` + +- Set an already hashed password for a specific user in a virtual machine interactively: + +`qm guest passwd {{vm_id}} {{username}} --crypted 1` diff --git a/pages/linux/qm-help.md b/pages/linux/qm-help.md new file mode 100644 index 00000000000000..715efd3d4ea519 --- /dev/null +++ b/pages/linux/qm-help.md @@ -0,0 +1,12 @@ +# qm help + +> Display help for a specific command. +> More information: . + +- Display help for a specific command: + +`qm help {{command}}` + +- Display help for a specific command with detailed information: + +`qm help {{command}} --verbose {{true|false}}` diff --git a/pages/linux/qm-listsnapshot.md b/pages/linux/qm-listsnapshot.md new file mode 100644 index 00000000000000..a7343179cb7518 --- /dev/null +++ b/pages/linux/qm-listsnapshot.md @@ -0,0 +1,8 @@ +# qm listsnapshot + +> List snapshots of virtual machines. +> More information: . + +- List all snapshots of a specific virtual machine: + +`qm listsnapshot {{vm_id}}` diff --git a/pages/linux/qm-migrate.md b/pages/linux/qm-migrate.md new file mode 100644 index 00000000000000..a61799ded61edb --- /dev/null +++ b/pages/linux/qm-migrate.md @@ -0,0 +1,25 @@ +# qm migrate + +> Migrate a virtual machine. +> Used to create a new migration task. +> More information: . + +- Migrate a specific virtual machine: + +`qm migrate {{vm_id}} {{target}}` + +- Override the current I/O bandwidth limit with 10 KiB/s: + +`qm migrate {{vm_id}} {{target}} --bwlimit 10` + +- Allow migration of virtual machines using local devices (root only): + +`qm migrate {{vm_id}} {{target}} --force true` + +- Use online/live migration if a virtual machine is running: + +`qm migrate {{vm_id}} {{target}} --online true` + +- Enable live storage migration for local disks: + +`qm migrate {{vm_id}} {{target}} --with-local-disks true` diff --git a/pages/linux/qm-monitor.md b/pages/linux/qm-monitor.md new file mode 100644 index 00000000000000..379f3ea486ea9b --- /dev/null +++ b/pages/linux/qm-monitor.md @@ -0,0 +1,8 @@ +# qm monitor + +> Enter the QEMU Monitor interface. +> More information: . + +- Enter the QEMU Monitor interface of a specific virtual machine: + +`qm monitor {{vm_id}}` diff --git a/pages/linux/qm-mtunnel.md b/pages/linux/qm-mtunnel.md new file mode 100644 index 00000000000000..6445578aee9e88 --- /dev/null +++ b/pages/linux/qm-mtunnel.md @@ -0,0 +1,9 @@ +# qm mtunnel + +> Used by `qmigrate`. +> It should not be invoked manually. +> More information: . + +- Command used by `qmigrate` during data migration from a VM to another host: + +`qm mtunnel` diff --git a/pages/linux/qm-pending.md b/pages/linux/qm-pending.md new file mode 100644 index 00000000000000..d6186bde6beb29 --- /dev/null +++ b/pages/linux/qm-pending.md @@ -0,0 +1,8 @@ +# qm pending + +> Get the virtual machine configuration with both current and pending values. +> More information: . + +- Get the virtual machine configuration of a specific virtual machine: + +`qm pending {{vm_id}}` diff --git a/pages/linux/qm-reboot.md b/pages/linux/qm-reboot.md new file mode 100644 index 00000000000000..d1c1b876ef4296 --- /dev/null +++ b/pages/linux/qm-reboot.md @@ -0,0 +1,12 @@ +# qm reboot + +> Reboot a virtual machine by shutting it down, and starting it again after applying pending changes. +> More information: . + +- Reboot a virtual machine: + +`qm reboot {{vm_id}}` + +- Reboot a virtual machine after wait for at most 10 seconds: + +`qm reboot --timeout {{10}} {{vm_id}}` diff --git a/pages/linux/qm-rescan.md b/pages/linux/qm-rescan.md new file mode 100644 index 00000000000000..3f5e0999f7863f --- /dev/null +++ b/pages/linux/qm-rescan.md @@ -0,0 +1,12 @@ +# qm rescan + +> Rescan all storages and update disk sizes and unused disk images of a virtual machine. +> More information: . + +- Rescan all storages and update disk sizes and unused disk images of a specific virtual machine: + +`qm rescan {{vm_id}}` + +- Perform a dry-run of rescan on a specific virtual machine and do not write any changes to configurations: + +`qm rescan --dryrun {{true}} {{vm_id}}` diff --git a/pages/linux/qm-reset.md b/pages/linux/qm-reset.md new file mode 100644 index 00000000000000..6fe5fb5c588096 --- /dev/null +++ b/pages/linux/qm-reset.md @@ -0,0 +1,12 @@ +# qm reset + +> Reset a virtual machine on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Reset a virtual machine: + +`qm reset {{vm_id}}` + +- Reset a virtual machine and skip lock (only root can use this option): + +`qm reset --skiplock {{true}} {{vm_id}}` diff --git a/pages/linux/qm-resume.md b/pages/linux/qm-resume.md new file mode 100644 index 00000000000000..049f62f5c14dae --- /dev/null +++ b/pages/linux/qm-resume.md @@ -0,0 +1,12 @@ +# qm resume + +> Resume a virtual machine. +> More information: . + +- Resume a specific virtual machine: + +`qm resume {{vm_id}}` + +- Resume a specific virtual machine ignoring locks (requires root): + +`sudo qm resume {{vm_id}} --skiplock true` diff --git a/pages/linux/qm-rollback.md b/pages/linux/qm-rollback.md new file mode 100644 index 00000000000000..bea67a373bf769 --- /dev/null +++ b/pages/linux/qm-rollback.md @@ -0,0 +1,8 @@ +# qm rollback + +> Rollback the VM state to a specified snapshot. +> More information: . + +- Rollback the state of a specific VM to a specified snapshot: + +`qm rollback {{vm_id}} {{snap_name}}` diff --git a/pages/linux/qm-sendkey.md b/pages/linux/qm-sendkey.md new file mode 100644 index 00000000000000..de220e6a025f0b --- /dev/null +++ b/pages/linux/qm-sendkey.md @@ -0,0 +1,12 @@ +# qm sendkey + +> Send QEMU monitor encoding key event to a virtual machine. +> More information: . + +- Send the specified key event to a specific virtual machine: + +`qm sendkey {{vm_id}} {{key}}` + +- Allow root user to send key event and ignore locks: + +`qm sendkey --skiplock {{true}} {{vm_id}} {{key}}` diff --git a/pages/linux/qm-showcmd.md b/pages/linux/qm-showcmd.md new file mode 100644 index 00000000000000..1d52fb020cdd35 --- /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-shutdown.md b/pages/linux/qm-shutdown.md new file mode 100644 index 00000000000000..9410568019efab --- /dev/null +++ b/pages/linux/qm-shutdown.md @@ -0,0 +1,24 @@ +# qm shutdown + +> Shutdown a virtual machine on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Shutdown a virtual machine: + +`qm shutdown {{VM_ID}}` + +- Shutdown a virtual machine after wait for at most 10 seconds: + +`qm shutdown --timeout {{10}} {{VM_ID}}` + +- Shutdown a virtual machine and do not deactivate storage volumes: + +`qm shutdown --keepActive {{true}} {{VM_ID}}` + +- Shutdown a virtual machine and skip lock (only root can use this option): + +`qm shutdown --skiplock {{true}} {{VM_ID}}` + +- Stop and shutdown a virtual machine: + +`qm shutdown --forceStop {{true}} {{VM_ID}}` diff --git a/pages/linux/qm-snapshot.md b/pages/linux/qm-snapshot.md new file mode 100644 index 00000000000000..1329a4ea128083 --- /dev/null +++ b/pages/linux/qm-snapshot.md @@ -0,0 +1,16 @@ +# qm snapshot + +> Create virtual machine snapshots. +> More information: . + +- Create a snapshot of a specific virtual machine: + +`qm snapshot {{vm_id}} {{snapshot_name}}` + +- Create a snapshot with a specific description: + +`qm snapshot {{vm_id}} {{snapshot_name}} --description {{description}}` + +- Create a snapshot including the vmstate: + +`qm snapshot {{vm_id}} {{snapshot_name}} --description {{description}} --vmstate 1` diff --git a/pages/linux/qm-start.md b/pages/linux/qm-start.md new file mode 100644 index 00000000000000..ae74c371f37d92 --- /dev/null +++ b/pages/linux/qm-start.md @@ -0,0 +1,16 @@ +# qm start + +> Start a virtual machine on QEMU/KVM Virtual Machine Manager. +> More information: . + +- Start a specific virtual machine: + +`qm start {{100}}` + +- Specify the QEMU machine type (i.e. the CPU to emulate): + +`qm start {{100}} --machine {{q35}}` + +- Start a specific virtual machine with a timeout in 60 seconds: + +`qm start {{100}} --timeout {{60}}` diff --git a/pages/linux/qm-status.md b/pages/linux/qm-status.md new file mode 100644 index 00000000000000..d89ed296b4a49f --- /dev/null +++ b/pages/linux/qm-status.md @@ -0,0 +1,12 @@ +# qm status + +> Show virtual machine status. +> More information: . + +- Display the status of a specific virtual machine: + +`qm status {{vm_id}}` + +- Display detailed status of a specific virtual machine: + +`qm status --verbose {{true}} {{vm_id}}` diff --git a/pages/linux/qm-unlock.md b/pages/linux/qm-unlock.md new file mode 100644 index 00000000000000..f3b15ae580369a --- /dev/null +++ b/pages/linux/qm-unlock.md @@ -0,0 +1,8 @@ +# qm unlock + +> Unlock a virtual machine in QEMU/KVM Virtual Machine Manager. +> More information: . + +- Unlock a specific virtual machine: + +`qm unlock {{vm_id}}` diff --git a/pages/linux/qm-vncproxy.md b/pages/linux/qm-vncproxy.md new file mode 100644 index 00000000000000..b82a6e894546f3 --- /dev/null +++ b/pages/linux/qm-vncproxy.md @@ -0,0 +1,8 @@ +# qm vncproxy + +> Proxy Virtual Machine VNC (Virtual network computing) traffic to stdin/stdout. +> More information: . + +- Proxy a specific virtual machine: + +`qm vncproxy {{vm_id}}` diff --git a/pages/linux/qm-wait.md b/pages/linux/qm-wait.md new file mode 100644 index 00000000000000..d83b793ebbf8f3 --- /dev/null +++ b/pages/linux/qm-wait.md @@ -0,0 +1,16 @@ +# qm wait + +> Wait until the virtual machine is stopped. +> More information: . + +- Wait until the virtual machine is stopped: + +`qm wait {{vm_id}}` + +- Wait until the virtual machine is stopped with a 10 second timeout: + +`qm wait --timeout {{10}} {{vm_id}}` + +- Send a shutdown request, then wait until the virtual machine is stopped with a 10 second timeout: + +`qm shutdown {{vm_id}} && qm wait --timeout {{10}} {{vm_id}}` diff --git a/pages/linux/qm.md b/pages/linux/qm.md new file mode 100644 index 00000000000000..a9e9e64e6b5951 --- /dev/null +++ b/pages/linux/qm.md @@ -0,0 +1,28 @@ +# qm + +> QEMU/KVM Virtual Machine Manager. +> More information: . + +- List all virtual machines: + +`qm list` + +- Using an ISO file uploaded on the local storage, create a virtual machine with a 4 GB IDE disk on the `local-lvm` storage and an ID of 100: + +`qm create {{100}} -ide0 {{local-lvm:4}} -net0 {{e1000}} -cdrom {{local:iso/proxmox-mailgateway_2.1.iso}}` + +- Show the configuration of a virtual machine, specifying its ID: + +`qm config {{100}}` + +- Start a specific virtual machine: + +`qm start {{100}}` + +- Send a shutdown request, then wait until the virtual machine is stopped: + +`qm shutdown {{100}} && qm wait {{100}}` + +- Destroy a virtual machine and remove all related resources: + +`qm destroy {{100}} --purge` diff --git a/pages/linux/qmrestore.md b/pages/linux/qmrestore.md new file mode 100644 index 00000000000000..1b130ec8328743 --- /dev/null +++ b/pages/linux/qmrestore.md @@ -0,0 +1,20 @@ +# qmrestore + +> Restore QemuServer vzdump backups. +> More information: . + +- Restore virtual machine from given backup file on the original storage: + +`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}}` + +- Overwrite existing virtual machine from a given backup file on the original storage: + +`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --force true` + +- Restore the virtual machine from a given backup file on specific storage: + +`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --storage {{local}}` + +- Start virtual machine immediately from the backup while restoring in the background (only on Proxmox Backup Server): + +`qmrestore {{path/to/vzdump-qemu-100.vma.lzo}} {{100}} --live-restore true` diff --git a/pages/linux/qrcp.md b/pages/linux/qrcp.md new file mode 100644 index 00000000000000..ca4d20043fe013 --- /dev/null +++ b/pages/linux/qrcp.md @@ -0,0 +1,28 @@ +# qrcp + +> A file transfer tool. +> More information: . + +- Send a file or directories: + +`qrcp send {{path/to/file_or_directory path/to/file_directory ...}}` + +- Receive files: + +`qrcp receive` + +- Compress content before transferring: + +`qrcp send --zip {{path/to/file_or_directory}}` + +- Specify a [p]ort to use: + +`qrcp {{send|receive}} --port {{port_number}}` + +- Specify the network [i]nterface to use: + +`qrcp {{send|receive}} --interface interface` + +- Keep the server alive: + +`qrcp {{send|receive}} --keep-alive` diff --git a/pages/linux/qsub.md b/pages/linux/qsub.md index 9a8558b8635049..b980a739b15b82 100644 --- a/pages/linux/qsub.md +++ b/pages/linux/qsub.md @@ -1,6 +1,7 @@ # qsub > Submits a script to the queue management system TORQUE. +> More information: . - Submit a script with default settings (depends on TORQUE settings): diff --git a/pages/linux/qtchooser.md b/pages/linux/qtchooser.md new file mode 100644 index 00000000000000..a9b95e9991daba --- /dev/null +++ b/pages/linux/qtchooser.md @@ -0,0 +1,24 @@ +# qtchooser + +> A wrapper used to select between Qt development binary versions. +> More information: . + +- List available Qt versions from the configuration files: + +`qtchooser --list-versions` + +- Print environment information: + +`qtchooser --print-env` + +- Run the specified tool using the specified Qt version: + +`qtchooser --run-tool={{tool}} --qt={{version_name}}` + +- Add a Qt version entry to be able to choose from: + +`qtchooser --install {{version_name}} {{path/to/qmake}}` + +- Display all available options: + +`qtchooser --help` diff --git a/pages/linux/qtile.md b/pages/linux/qtile.md new file mode 100644 index 00000000000000..d671cd2aedf2e7 --- /dev/null +++ b/pages/linux/qtile.md @@ -0,0 +1,24 @@ +# qtile + +> A full-featured, hackable tiling window manager written and configured in Python. +> More information: . + +- Start the window manager, if it is not running already (should ideally be run from `.xsession` or similar): + +`qtile start` + +- Check the configuration file for any compilation errors (default location is `~/.config/qtile/config.py`): + +`qtile check` + +- Show current resource usage information: + +`qtile top --force` + +- Open the program `xterm` as a floating window on the group named `test-group`: + +`qtile run-cmd --group {{test-group}} --float {{xterm}}` + +- Restart the window manager: + +`qtile cmd-obj --object cmd --function restart` diff --git a/pages/linux/quotacheck.md b/pages/linux/quotacheck.md index 28edc2daff76c9..4bd929fd1a512b 100644 --- a/pages/linux/quotacheck.md +++ b/pages/linux/quotacheck.md @@ -2,6 +2,7 @@ > Scan a filesystem for disk usage; create, check and repair quota files. > It is best to run quota check with quotas turned off to prevent damage or loss to quota files. +> More information: . - Check quotas on all mounted non-NFS filesystems: diff --git a/pages/linux/radeontop.md b/pages/linux/radeontop.md index ccf8122f4632fd..a006e5de5bed6c 100644 --- a/pages/linux/radeontop.md +++ b/pages/linux/radeontop.md @@ -1,20 +1,21 @@ # radeontop -> Show utilisation of AMD GPUs. +> Show utilization of AMD GPUs. +> May require root privileges depending on your system. > More information: . -- Show the utilisation of the default AMD GPU: +- Show the utilization of the default AMD GPU: -`sudo radeontop` +`radeontop` -- Enable colourised output: +- Enable colored output: -`sudo radeontop --colour` +`radeontop --color` - Select a specific GPU (the bus number is the first number in the output of `lspci`): -`sudo radeontop --bus {{bus_number}}` +`radeontop --bus {{bus_number}}` - Specify the display refresh rate (higher means more GPU overhead): -`sudo radeontop --ticks {{samples_per_second}}` +`radeontop --ticks {{samples_per_second}}` diff --git a/pages/linux/rankmirrors.md b/pages/linux/rankmirrors.md index cca8a3442a8682..42bc6efbae0072 100644 --- a/pages/linux/rankmirrors.md +++ b/pages/linux/rankmirrors.md @@ -1,7 +1,7 @@ # rankmirrors > Rank a list of Pacman mirrors by connection and opening speed. -> Writes the new mirrorlist to stdout. +> Writes the new mirrorlist to `stdout`. > More information: . - Rank a mirror list: diff --git a/pages/linux/raspi-config.md b/pages/linux/raspi-config.md new file mode 100644 index 00000000000000..c9846209090e99 --- /dev/null +++ b/pages/linux/raspi-config.md @@ -0,0 +1,8 @@ +# raspi-config + +> An `ncurses` terminal GUI to config a Raspberry Pi. +> More information: . + +- Start raspi-config: + +`sudo raspi-config` diff --git a/pages/linux/raspinfo.md b/pages/linux/raspinfo.md new file mode 100644 index 00000000000000..9d4e7c898f10ae --- /dev/null +++ b/pages/linux/raspinfo.md @@ -0,0 +1,8 @@ +# raspinfo + +> Display Raspberry Pi system information. +> More information: . + +- Display system information: + +`raspinfo` diff --git a/pages/linux/raw.md b/pages/linux/raw.md new file mode 100644 index 00000000000000..9b1babb72d09d7 --- /dev/null +++ b/pages/linux/raw.md @@ -0,0 +1,16 @@ +# raw + +> Bind a Unix raw character device. +> More information: . + +- Bind a raw character device to a block device: + +`raw /dev/raw/raw{{1}} {{/dev/block_device}}` + +- Query an existing binding instead of setting a new one: + +`raw /dev/raw/raw{{1}}` + +- Query all bound raw devices: + +`raw -qa` diff --git a/pages/linux/rc-service.md b/pages/linux/rc-service.md index fe8f9bdd01a983..8c23792d663420 100644 --- a/pages/linux/rc-service.md +++ b/pages/linux/rc-service.md @@ -2,6 +2,7 @@ > Locate and run OpenRC services with arguments. > See also `openrc`. +> More information: . - Show a service's status: @@ -13,7 +14,7 @@ - Stop a service: -`sudo rc-servie {{service_name}} stop` +`sudo rc-service {{service_name}} stop` - Restart a service: diff --git a/pages/linux/rc-status.md b/pages/linux/rc-status.md index a735cbf9d5736b..3823e6df5cdb15 100644 --- a/pages/linux/rc-status.md +++ b/pages/linux/rc-status.md @@ -2,6 +2,7 @@ > Show status info about runlevels. > See also `openrc`. +> More information: . - Show a summary of services and their status: diff --git a/pages/linux/rc-update.md b/pages/linux/rc-update.md index 225141262d47f6..99a3c46b2cc333 100644 --- a/pages/linux/rc-update.md +++ b/pages/linux/rc-update.md @@ -2,6 +2,7 @@ > Add and remove OpenRC services to and from runlevels. > See also `openrc`. +> More information: . - List all services and the runlevels they are added to: diff --git a/pages/linux/rdesktop.md b/pages/linux/rdesktop.md index 227bdfe29350fb..43fb280daae8be 100644 --- a/pages/linux/rdesktop.md +++ b/pages/linux/rdesktop.md @@ -2,6 +2,7 @@ > Remote Desktop Protocol client. > It can be used to connect the remote computer using the RDP protocol. +> More information: . - Connect to a remote computer (default port is 3389): @@ -23,6 +24,6 @@ `rdesktop -u {{username}} -p {{password}} -d {{domainname}} {{host:port}}` -- Use the 16 bit color (speed up): +- Use the 16-bit color (speed up): `rdesktop -u {{username}} -p {{password}} -a 16 {{host:port}}` diff --git a/pages/linux/readpe.md b/pages/linux/readpe.md new file mode 100644 index 00000000000000..5f4825347622c4 --- /dev/null +++ b/pages/linux/readpe.md @@ -0,0 +1,28 @@ +# readpe + +> Displays information about PE files. +> More information: . + +- Display all information about a PE file: + +`readpe {{path/to/executable}}` + +- Display all the headers present in a PE file: + +`readpe --all-headers {{path/to/executable}}` + +- Display all the sections present in a PE file: + +`readpe --all-sections {{path/to/executable}}` + +- Display a specific header from a PE file: + +`readpe --header {{dos|coff|optional}} {{path/to/executable}}` + +- List all imported functions: + +`readpe --imports {{path/to/executable}}` + +- List all exported functions: + +`readpe --exports {{path/to/executable}}` diff --git a/pages/linux/reboot.md b/pages/linux/reboot.md index daa95c8b0ef286..05d95117971a37 100644 --- a/pages/linux/reboot.md +++ b/pages/linux/reboot.md @@ -1,7 +1,7 @@ # reboot > Reboot the system. -> More information: . +> More information: . - Reboot the system: @@ -13,11 +13,11 @@ - Halt the system (same as `halt`): -`rebooot --halt` +`reboot --halt` - Reboot immediately without contacting the system manager: -`reboot --force --force` +`reboot --force` - Write the wtmp shutdown entry without rebooting the system: diff --git a/pages/linux/reflector.md b/pages/linux/reflector.md index d41cc651385848..00f371a61c20a9 100644 --- a/pages/linux/reflector.md +++ b/pages/linux/reflector.md @@ -1,6 +1,7 @@ # reflector > Arch script to fetch and sort mirrorlists. +> More information: . - Get all mirrors, sort for download speed and save them: diff --git a/pages/linux/register_new_matrix_user.md b/pages/linux/register_new_matrix_user.md new file mode 100644 index 00000000000000..a3fc59339515c2 --- /dev/null +++ b/pages/linux/register_new_matrix_user.md @@ -0,0 +1,16 @@ +# register_new_matrix_user + +> Used to register new users with a given home server when registration has been disabled. +> More information: . + +- Create a user interactively: + +`register_new_matrix_user --config {{path/to/homeserver.yaml}}` + +- Create an admin user interactively: + +`register_new_matrix_user --config {{path/to/homeserver.yaml}} --admin` + +- Create an admin user non-interactively (not recommended): + +`register_new_matrix_user --config {{path/to/homeserver.yaml}} --user {{username}} --password {{password}} --admin` diff --git a/pages/linux/rename.md b/pages/linux/rename.md index 64eaa060bef5f9..f45d7df7ccc8c5 100644 --- a/pages/linux/rename.md +++ b/pages/linux/rename.md @@ -4,6 +4,7 @@ > NOTE: this page refers to the command from the `util-linux` package. > For the Perl version, see `file-rename` or `perl-rename`. > Warning: This command has no safeguards and will overwrite files without prompting. +> More information: . - Rename files using simple substitutions (substitute 'foo' with 'bar' wherever found): diff --git a/pages/linux/repo-add.md b/pages/linux/repo-add.md new file mode 100644 index 00000000000000..68f082cb87249e --- /dev/null +++ b/pages/linux/repo-add.md @@ -0,0 +1,16 @@ +# repo-add + +> Package database maintenance utility which enables installation of said package via Pacman. +> More information: . + +- Add all package binaries in the current directory and remove the old database file: + +`repo-add --remove {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}` + +- Add all package binaries in the current directory in silent mode except for warning and error messages: + +`repo-add --quiet {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}` + +- Add all package binaries in the current directory without showing color: + +`repo-add --nocolor {{path/to/database.db.tar.gz}} {{*.pkg.tar.zst}}` diff --git a/pages/linux/reportbug.md b/pages/linux/reportbug.md index a7777eefbd5b94..3aefb696cb2785 100644 --- a/pages/linux/reportbug.md +++ b/pages/linux/reportbug.md @@ -1,7 +1,7 @@ # reportbug > Bug report tool of Debian distribution. -> More information: . +> More information: . - Generate a bug report about a specific package, then send it by e-mail: diff --git a/pages/linux/repquota.md b/pages/linux/repquota.md index 64de3d0d36ccc4..083adbb6535eaf 100644 --- a/pages/linux/repquota.md +++ b/pages/linux/repquota.md @@ -1,6 +1,7 @@ # repquota > Display a summary of existing file quotas for a filesystem. +> More information: . - Report stats for all quotas in use: diff --git a/pages/linux/reptyr.md b/pages/linux/reptyr.md new file mode 100644 index 00000000000000..a55503e1929446 --- /dev/null +++ b/pages/linux/reptyr.md @@ -0,0 +1,9 @@ +# reptyr + +> Move a running process to a new terminal. +> Best used when you forget to start a long running task in `screen`. +> More information: . + +- Move a running process to your current terminal: + +`reptyr {{pid}}` diff --git a/pages/linux/reset.md b/pages/linux/reset.md index 2eb6954c02cdfe..f01957047233df 100644 --- a/pages/linux/reset.md +++ b/pages/linux/reset.md @@ -1,8 +1,9 @@ # reset -> Reinitialises the current terminal. Clears the entire terminal screen. +> Reinitializes the current terminal. Clears the entire terminal screen. +> More information: . -- Reinitialise the current terminal: +- Reinitialize the current terminal: `reset` diff --git a/pages/linux/resize2fs.md b/pages/linux/resize2fs.md index aa1757471a5363..f6c305185b97da 100644 --- a/pages/linux/resize2fs.md +++ b/pages/linux/resize2fs.md @@ -1,7 +1,8 @@ # resize2fs > Resize an ext2, ext3 or ext4 filesystem. -> Does not resize the underlying partition, and the filesystem must be unmounted. +> Does not resize the underlying partition. The filesystem may have to be unmounted first, read the man page for more details. +> More information: . - Automatically resize a filesystem: diff --git a/pages/linux/resolvectl.md b/pages/linux/resolvectl.md new file mode 100644 index 00000000000000..b44fcfc3ecb361 --- /dev/null +++ b/pages/linux/resolvectl.md @@ -0,0 +1,33 @@ +# resolvectl + +> Resolve domain names, IPV4 and IPv6 addresses, DNS resource records, and services. +> Introspect and reconfigure the DNS resolver. +> More information: . + +- Show DNS settings: + +`resolvectl status` + +- Resolve the IPv4 and IPv6 addresses for one or more domains: + +`resolvectl query {{domain1 domain2 ...}}` + +- Retrieve the domain of a specified IP: + +`resolvectl query {{ip_address}}` + +- Retrieve an MX record of domain: + +`resolvectl --legend={{no}} --type={{MX}} query {{domain}}` + +- Resolve an SRV record, for example _xmpp-server._tcp gmail.com: + +`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/retroarch.md b/pages/linux/retroarch.md new file mode 100644 index 00000000000000..9db683ef17716b --- /dev/null +++ b/pages/linux/retroarch.md @@ -0,0 +1,29 @@ +# retroarch + +> RetroArch is a frontend for emulators, game engines and media players. +> It is the reference implementation of libretro API. +> More information: . + +- Start in the menu mode: + +`retroarch` + +- Start in full screen mode: + +`retroarch --fullscreen` + +- List all compiled features: + +`retroarch --features` + +- Set the path of a configuration file: + +`retroarch --config={{path/to/config_file}}` + +- Display help: + +`retroarch --help` + +- Display version: + +`retroarch --version` diff --git a/pages/linux/rfkill.md b/pages/linux/rfkill.md index 9ecdb7dbf79ca8..0dde9aba41d599 100644 --- a/pages/linux/rfkill.md +++ b/pages/linux/rfkill.md @@ -1,6 +1,7 @@ # rfkill > Enable and disable wireless devices. +> More information: . - List devices: diff --git a/pages/linux/rig.md b/pages/linux/rig.md index 90558607f559b1..98c888d095da18 100644 --- a/pages/linux/rig.md +++ b/pages/linux/rig.md @@ -1,7 +1,7 @@ # rig > Utility to piece together a random first name, last name, street number and address, along with a geographically consistent (ie, they all match the same area) city, state, ZIP code, and area code. -> More information: . +> More information: . - Display a random name (male or female) and address: diff --git a/pages/linux/rkhunter.md b/pages/linux/rkhunter.md new file mode 100644 index 00000000000000..fadddc8ba6124e --- /dev/null +++ b/pages/linux/rkhunter.md @@ -0,0 +1,24 @@ +# rkhunter + +> Searches for rootkits and malware. +> More information: . + +- Check a system for rootkits and malware: + +`sudo rkhunter --check` + +- Update rkhunter: + +`sudo rkhunter --update` + +- Print all available tests: + +`sudo rkhunter --list` + +- Display version: + +`sudo rkhunter --versioncheck` + +- Display help: + +`sudo rkhunter --help` diff --git a/pages/linux/rm.md b/pages/linux/rm.md new file mode 100644 index 00000000000000..784999769e8bee --- /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 00000000000000..ae0bdab868ad0d --- /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 new file mode 100644 index 00000000000000..a951b2b0f331e0 --- /dev/null +++ b/pages/linux/rmmod.md @@ -0,0 +1,24 @@ +# rmmod + +> Remove modules from the Linux kernel. +> More information: . + +- Remove a module from the kernel: + +`sudo rmmod {{module_name}}` + +- Remove a module from the kernel and display verbose information: + +`sudo rmmod --verbose {{module_name}}` + +- Remove a module from the kernel and send errors to syslog instead of standard error: + +`sudo rmmod --syslog {{module_name}}` + +- Display help: + +`rmmod --help` + +- Display version: + +`rmmod --version` diff --git a/pages/linux/rofi.md b/pages/linux/rofi.md index 6c1b1ee3caf7fd..676f02781b13be 100644 --- a/pages/linux/rofi.md +++ b/pages/linux/rofi.md @@ -15,6 +15,6 @@ `rofi -show window` -- Pipe a list of items to stdin and print the selected item to stdout: +- Pipe a list of items to `stdin` and print the selected item to `stdout`: `printf "{{Choice1\nChoice2\nChoice3}}" | rofi -dmenu` diff --git a/pages/linux/rpcinfo.md b/pages/linux/rpcinfo.md index 70ad2dd2d96db1..b540605c88982f 100644 --- a/pages/linux/rpcinfo.md +++ b/pages/linux/rpcinfo.md @@ -1,6 +1,7 @@ # rpcinfo > Makes an RPC call to an RPC server and reports what it finds. +> More information: . - Show full table of all RPC services registered on localhost: diff --git a/pages/linux/rpi-eeprom-update.md b/pages/linux/rpi-eeprom-update.md new file mode 100644 index 00000000000000..c8cacec6a72dfb --- /dev/null +++ b/pages/linux/rpi-eeprom-update.md @@ -0,0 +1,20 @@ +# rpi-eeprom-update + +> Tool to update EEPROM and view other EEPROM information. +> More information: . + +- Print information about the current raspberry pi EEPROM installed: + +`sudo rpi-eeprom-update` + +- Update a raspberry pi EEPROM: + +`sudo rpi-eeprom-update -a` + +- Cancel the pending update: + +`sudo rpi-eeprom-update -r` + +- Display help: + +`rpi-eeprom-update -h` diff --git a/pages/linux/rpm-ostree.md b/pages/linux/rpm-ostree.md new file mode 100644 index 00000000000000..96e8695feb64c6 --- /dev/null +++ b/pages/linux/rpm-ostree.md @@ -0,0 +1,25 @@ +# rpm-ostree + +> A hybrid image/package system. +> Manage ostree deployments, package layers, filesystem overlays, and boot configuration. +> More information: . + +- Show rpm-ostree deployments in the order they will appear in the bootloader: + +`rpm-ostree status` + +- Show packages which are outdated and can be updated: + +`rpm-ostree upgrade --preview` + +- Prepare a new ostree deployment with upgraded packages and reboot into it: + +`rpm-ostree upgrade --reboot` + +- Reboot into the previous ostree deployment: + +`rpm-ostree rollback --reboot` + +- Install a package into a new ostree deployment and reboot into it: + +`rpm-ostree install {{package}} --reboot` diff --git a/pages/linux/rpm.md b/pages/linux/rpm.md index 2c51e99e827f6d..be28e6f96fb6e1 100644 --- a/pages/linux/rpm.md +++ b/pages/linux/rpm.md @@ -1,31 +1,37 @@ # rpm > RPM Package Manager. +> For equivalent commands in other package managers, see . +> More information: . - Show version of httpd package: -`rpm -q {{httpd}}` +`rpm --query {{httpd}}` - List versions of all matching packages: -`rpm -qa '{{mariadb*}}'` +`rpm --query --all '{{mariadb*}}'` - Forcibly install a package regardless of currently installed versions: -`rpm -U {{package_name.rpm}} --force` +`rpm --upgrade {{package_name.rpm}} --force` - Identify owner of a file and show version of the package: -`rpm -qf {{/etc/postfix/main.cf}}` +`rpm --query --file {{/etc/postfix/main.cf}}` - List package-owned files: -`rpm -ql {{kernel}}` +`rpm --query --list {{kernel}}` - Show scriptlets from an RPM file: -`rpm -qp --scripts {{package_name.rpm}}` +`rpm --query --package --scripts {{package_name.rpm}}` - Show changed, missing and/or incorrectly installed files of matching packages: -`rpm -Va '{{php-*}}'` +`rpm --verify --all '{{php-*}}'` + +- Display the changelog of a specific package: + +`rpm --query --changelog {{package_name}}` diff --git a/pages/linux/rpm2cpio.md b/pages/linux/rpm2cpio.md new file mode 100644 index 00000000000000..e304b69e66f662 --- /dev/null +++ b/pages/linux/rpm2cpio.md @@ -0,0 +1,8 @@ +# rpm2cpio + +> Convert an RPM package to a `cpio` archive. +> More information: . + +- Convert an RPM package to a `cpio` archive and save it as `file.cpio` in the current directory: + +`rpm2cpio {{path/to/file.rpm}}}` diff --git a/pages/linux/rpmspec.md b/pages/linux/rpmspec.md new file mode 100644 index 00000000000000..8115ab0974a6ef --- /dev/null +++ b/pages/linux/rpmspec.md @@ -0,0 +1,24 @@ +# rpmspec + +> Query a RPM spec file. +> More information: . + +- List binary packages which would be generated from a rpm spec file: + +`rpmspec --query {{path/to/rpm.spec}}` + +- List all options for `--queryformat`: + +`rpmspec --querytags` + +- Get summary information for single binary packages generated from a rpm spec file: + +`rpmspec --query --queryformat "{{%{name}: %{summary}\n}}" {{path/to/rpm.spec}}` + +- Get the source package which would be generated from a rpm spec file: + +`rpmspec --query --srpm {{path/to/rpm.spec}}` + +- Parse a rpm spec file to `stdout`: + +`rpmspec --parse {{path/to/rpm.spec}}` diff --git a/pages/linux/rspamc.md b/pages/linux/rspamc.md index 32d7284c7a8706..233f128cdc424a 100644 --- a/pages/linux/rspamc.md +++ b/pages/linux/rspamc.md @@ -1,6 +1,7 @@ # rspamc -> Command line client for rspamd servers. +> Command-line client for rspamd servers. +> More information: . - Train the bayesian filter to recognise an email as spam: diff --git a/pages/linux/rtcwake.md b/pages/linux/rtcwake.md index 27d5536615767b..ef62c3fe4fa83e 100644 --- a/pages/linux/rtcwake.md +++ b/pages/linux/rtcwake.md @@ -1,12 +1,13 @@ # rtcwake -> Enter a system sleep state until specified wakeup time relative to your bios clock. +> Enter a system sleep state until specified wakeup time relative to your BIOS clock. +> More information: . - Show whether an alarm is set or not: `sudo rtcwake -m show -v` -- Suspend to ram and wakeup after 10 seconds: +- Suspend to RAM and wakeup after 10 seconds: `sudo rtcwake -m mem -s {{10}}` @@ -14,7 +15,7 @@ `sudo rtcwake -m disk --date +{{15}}min` -- Freeze the system (more efficient than suspend-to-ram but linux > 3.9 required) and wakeup at a given date and time: +- Freeze the system (more efficient than suspend-to-RAM but version 3.9 or newer of the Linux kernel is required) and wakeup at a given date and time: `sudo rtcwake -m freeze --date {{YYYYMMDDhhmm}}` diff --git a/pages/linux/rtorrent.md b/pages/linux/rtorrent.md index 14cf9d7e839add..0dc25acbc4b260 100644 --- a/pages/linux/rtorrent.md +++ b/pages/linux/rtorrent.md @@ -1,6 +1,7 @@ # rtorrent -> Download torrents over the command line. +> Download torrents over the command-line. +> More information: . - Add a torrent file or magnet to be downloaded: diff --git a/pages/linux/ruget.md b/pages/linux/ruget.md new file mode 100644 index 00000000000000..42e594fc25885d --- /dev/null +++ b/pages/linux/ruget.md @@ -0,0 +1,12 @@ +# ruget + +> Alternative to wget written in Rust. +> More information: . + +- Download the contents of a URL to a file: + +`ruget {{https://example.com/file}}` + +- Download the contents of a URL to a specified [o]utput file: + +`ruget --output {{file_name}} {{https://example.com/file}}` diff --git a/pages/linux/run-mailcap.md b/pages/linux/run-mailcap.md index f5de973ca4af0d..078dce2d97929c 100644 --- a/pages/linux/run-mailcap.md +++ b/pages/linux/run-mailcap.md @@ -2,6 +2,7 @@ > Run MailCap Programs. > Run mailcap view, see, edit, compose, print - execute programs via entries in the mailcap file (or any of its aliases) will use the given action to process each mime-type/file. +> More information: . - Individual actions/programs on run-mailcap can be invoked with action flag: diff --git a/pages/linux/runlim.md b/pages/linux/runlim.md new file mode 100644 index 00000000000000..6d4f13587bafcc --- /dev/null +++ b/pages/linux/runlim.md @@ -0,0 +1,24 @@ +# runlim + +> A tool for sampling and limiting time and memory usage of a program and its child processes using the proc file system on Linux. +> More information: . + +- Print the time and memory usage of a command: + +`runlim {{command}} {{command_arguments}}` + +- Log statistics to a file instead of `stdout`: + +`runlim --output-file={{path/to/file}} {{command}} {{command_arguments}}` + +- Limit time to an upper bound (in seconds): + +`runlim --time-limit={{number}} {{command}} {{command_arguments}}` + +- Limit real-time to an upper bound (in seconds): + +`runlim --real-time-limit={{number}} {{command}} {{command_arguments}}` + +- Limit space to an upper bound (in MB): + +`runlim --space-limit={{number}} {{command}} {{command_arguments}}` diff --git a/pages/linux/runuser.md b/pages/linux/runuser.md index 7f74add2f4c203..64c9ea4a30e8cf 100644 --- a/pages/linux/runuser.md +++ b/pages/linux/runuser.md @@ -1,6 +1,7 @@ # runuser > Run commands as a specific user and group without asking for password (needs root privileges). +> More information: . - Run command as a different user: diff --git a/pages/linux/sa.md b/pages/linux/sa.md index 4e97d6cfcd7603..f03929ef5d2cde 100644 --- a/pages/linux/sa.md +++ b/pages/linux/sa.md @@ -2,6 +2,7 @@ > Summarizes accounting information. Part of the acct package. > Shows commands called by users, including basic info on CPU time spent processing and I/O rates. +> More information: . - Display executable invocations per user (username not displayed): diff --git a/pages/linux/sacctmgr.md b/pages/linux/sacctmgr.md index 2a2fc90cb4374a..7ff68333f9dd0f 100644 --- a/pages/linux/sacctmgr.md +++ b/pages/linux/sacctmgr.md @@ -15,6 +15,6 @@ `sacctmgr add account {{account_name}} cluster={{cluster_of_account}}` -- Show details of user/association/cluster/account: +- Show details of user/association/cluster/account using a specific format: -`sacctmgr show {{user/association/cluster/account}}` +`sacctmgr show {{user|association|cluster|account}} format="Account%10" format="GrpTRES%30"` diff --git a/pages/linux/sar.md b/pages/linux/sar.md index f3d04ee0369682..b949f25156c3b9 100644 --- a/pages/linux/sar.md +++ b/pages/linux/sar.md @@ -1,6 +1,7 @@ # sar > Monitor performance of various Linux subsystems. +> More information: . - Report I/O and transfer rate issued to physical devices, one per second (press CTRL+C to quit): diff --git a/pages/linux/sbatch.md b/pages/linux/sbatch.md index 34c53678abce41..7503d0c1690e82 100644 --- a/pages/linux/sbatch.md +++ b/pages/linux/sbatch.md @@ -1,6 +1,7 @@ # sbatch > Submit a batch job to the SLURM scheduler. +> More information: . - Submit a batch job: diff --git a/pages/linux/schroot.md b/pages/linux/schroot.md index 6f05c8499abd57..6aaf8e48d5ae41 100644 --- a/pages/linux/schroot.md +++ b/pages/linux/schroot.md @@ -15,7 +15,7 @@ `schroot --all {{command}}` -- Start an interactive shell with in a specific chroot as a specific user: +- Start an interactive shell within a specific chroot as a specific user: `schroot --chroot {{chroot}} --user {{user}}` diff --git a/pages/linux/screenkey.md b/pages/linux/screenkey.md new file mode 100644 index 00000000000000..225a679e2519fb --- /dev/null +++ b/pages/linux/screenkey.md @@ -0,0 +1,32 @@ +# screenkey + +> A screencast tool to display keys pressed. +> More information: . + +- Display keys which are currently being pressed on the screen: + +`screenkey` + +- Display keys and mouse buttons which are currently being pressed on the screen: + +`screenkey --mouse` + +- Launch the settings menu of screenkey: + +`screenkey --show-settings` + +- Launch screenkey at a specific position: + +`screenkey --position {{top|center|bottom|fixed}}` + +- Change the format of the key modifiers displayed on screen: + +`screenkey --mods-mode {{normal|emacs|mac|win|tux}}` + +- Change the appearance of screenkey: + +`screenkey --bg-color "{{#a1b2c3}}" --font {{Hack}} --font-color {{yellow}} --opacity {{0.8}}` + +- Drag and select a window on screen to display screenkey: + +`screenkey --position fixed --geometry {{$(slop -n -f '%g')}}` diff --git a/pages/linux/script.md b/pages/linux/script.md index d9bc4a0a3f2910..9e7601424a8ed8 100644 --- a/pages/linux/script.md +++ b/pages/linux/script.md @@ -1,6 +1,7 @@ # script > Record all terminal output to file. +> More information: . - Record a new session to a file named `typescript` in the current directory: diff --git a/pages/linux/scriptreplay.md b/pages/linux/scriptreplay.md index 001a1f569a801d..709119255e69e1 100644 --- a/pages/linux/scriptreplay.md +++ b/pages/linux/scriptreplay.md @@ -1,6 +1,7 @@ # scriptreplay > Replay a typescript created by the `script` command to the standard output. +> 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 00000000000000..2471f0b53af2ce --- /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/see.md b/pages/linux/see.md index c9ba69dbb5888b..1f7f30344affdf 100644 --- a/pages/linux/see.md +++ b/pages/linux/see.md @@ -2,6 +2,7 @@ > Alias to `run-mailcap`'s view. > An alias to a `run-mailcap`'s action print. +> More information: . - See action can be used to view any file (usually image) on default mailcap explorer: diff --git a/pages/linux/sensible-browser.md b/pages/linux/sensible-browser.md index ccb8b2cacbc586..d1450005054023 100644 --- a/pages/linux/sensible-browser.md +++ b/pages/linux/sensible-browser.md @@ -1,11 +1,12 @@ # sensible-browser > Open the default browser. +> More information: . - Open a new window of the default browser: `sensible-browser` -- Open a url in the default browser: +- Open a URL in the default browser: `sensible-browser {{url}}` diff --git a/pages/linux/sensible-editor.md b/pages/linux/sensible-editor.md index d105aa2ad035b0..93409f62d52a5e 100644 --- a/pages/linux/sensible-editor.md +++ b/pages/linux/sensible-editor.md @@ -1,18 +1,19 @@ # sensible-editor > Open the default editor. +> More information: . - Open a file in the default editor: -`sensible-editor {{file}}` +`sensible-editor {{path/to/file}}` - Open a file in the default editor, with the cursor at the end of the file: -`sensible-editor + {{file}}` +`sensible-editor + {{path/to/file}}` - Open a file in the default editor, with the cursor at the beginning of line 10: -`sensible-editor +10 {{file}}` +`sensible-editor +10 {{path/to/file}}` - Open 3 files in vertically split editor windows at the same time: diff --git a/pages/linux/sensors.md b/pages/linux/sensors.md index 4ffba46a5bee77..c002914d4bfcd2 100644 --- a/pages/linux/sensors.md +++ b/pages/linux/sensors.md @@ -1,6 +1,7 @@ # sensors > Report sensors information. +> More information: . - Show the current readings of all sensor chips: diff --git a/pages/linux/service.md b/pages/linux/service.md index ba042f851bf1f2..4e202ac26eadb0 100644 --- a/pages/linux/service.md +++ b/pages/linux/service.md @@ -2,6 +2,7 @@ > Manage services by running init scripts. > The full script path should be omitted (`/etc/init.d/` is assumed). +> More information: . - List the name and status of all services: diff --git a/pages/linux/setcap.md b/pages/linux/setcap.md new file mode 100644 index 00000000000000..962d121426a6ec --- /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/setfacl.md b/pages/linux/setfacl.md index 2ef3268ead66e2..672d59ab5f8b1c 100644 --- a/pages/linux/setfacl.md +++ b/pages/linux/setfacl.md @@ -1,6 +1,7 @@ # setfacl > Set file access control lists (ACL). +> More information: . - Modify ACL of a file for user with read and write access: @@ -10,7 +11,7 @@ `setfacl -d -m u::rw {{file}}` -- Remove ACL of a file for an user: +- Remove ACL of a file for a user: `setfacl -x u:{{username}} {{file}}` diff --git a/pages/linux/setserial.md b/pages/linux/setserial.md new file mode 100644 index 00000000000000..443361d70293fc --- /dev/null +++ b/pages/linux/setserial.md @@ -0,0 +1,20 @@ +# setserial + +> Read and modify serial port information. +> More information: . + +- Print all information about a specific serial device: + +`setserial -a {{/dev/cuaN}}` + +- Print the configuration summary of a specific serial device (useful for printing during bootup process): + +`setserial -b {{device}}` + +- Set a specific configuration parameter to a device: + +`sudo setserial {{device}} {{parameter}}` + +- Print the configuration of a list of devices: + +`setserial -g {{device1 device2 ...}}` diff --git a/pages/linux/setsid.md b/pages/linux/setsid.md new file mode 100644 index 00000000000000..419a3d9b2f9d88 --- /dev/null +++ b/pages/linux/setsid.md @@ -0,0 +1,25 @@ +# setsid + +> Run a program in a new session if the calling process is not a process group leader. +> The created session is by default not controlled by the current terminal. +> More information: . + +- Run a program in a new session: + +`setsid {{program}}` + +- Run a program in a new session discarding the resulting output and error: + +`setsid {{program}} > /dev/null 2>&1` + +- Run a program creating a new process: + +`setsid --fork {{program}}` + +- Return the exit code of a program as the exit code of setsid when the program exits: + +`setsid --wait {{program}}` + +- Run a program in a new session setting the current terminal as the controlling terminal: + +`setsid --ctty {{program}}` diff --git a/pages/linux/setxkbmap.md b/pages/linux/setxkbmap.md index 5532261e502c56..835f0564a65bc6 100644 --- a/pages/linux/setxkbmap.md +++ b/pages/linux/setxkbmap.md @@ -1,6 +1,7 @@ # setxkbmap > Set the keyboard using the X Keyboard Extension. +> More information: . - Set the keyboard in French AZERTY: diff --git a/pages/linux/sherlock.md b/pages/linux/sherlock.md new file mode 100644 index 00000000000000..25bfce8272c1c6 --- /dev/null +++ b/pages/linux/sherlock.md @@ -0,0 +1,32 @@ +# sherlock + +> Find usernames across social networks. +> More information: . + +- Search for a specific username on social networks saving the results to a file: + +`sherlock {{username}} --output {{path/to/file}}` + +- Search for specific usernames on social networks saving the results into a directory: + +`sherlock {{username1 username2 ...}} --folderoutput {{path/to/directory}}` + +- Search for a specific username on social networks using the Tor network: + +`sherlock --tor {{username}}` + +- Make requests over Tor with a new Tor circuit after each request: + +`sherlock --unique-tor {{username}}` + +- Search for a specific username on social networks using a proxy: + +`sherlock {{username}} --proxy {{proxy_url}}` + +- Search for a specific username on social networks and open results in the default web browser: + +`sherlock {{username}} --browse` + +- Display help: + +`sherlock --help` diff --git a/pages/linux/shiny-mirrors.md b/pages/linux/shiny-mirrors.md new file mode 100644 index 00000000000000..fd20a5bcf470af --- /dev/null +++ b/pages/linux/shiny-mirrors.md @@ -0,0 +1,21 @@ +# shiny-mirrors + +> Generate a pacman mirror list for Manjaro Linux. +> Every run of shiny-mirrors requires you to synchronize your database and update your system using `sudo pacman -Syyu`. +> More information: . + +- Get the status of the current mirrors: + +`shiny-mirrors status` + +- Generate a mirror list using the default behavior: + +`sudo shiny-mirrors refresh` + +- Display the current configuration file: + +`shiny-mirrors config show` + +- Switch to a different branch interactively: + +`sudo shiny-mirrors config --branch` diff --git a/pages/linux/shutdown.md b/pages/linux/shutdown.md index 481a1f14f7f38d..e0b0e5be8ed8e1 100644 --- a/pages/linux/shutdown.md +++ b/pages/linux/shutdown.md @@ -1,6 +1,7 @@ # shutdown > Shutdown and reboot the system. +> More information: . - Power off (halt) immediately: diff --git a/pages/linux/silentcast.md b/pages/linux/silentcast.md index 1e02100f830712..3e0d255a95b0a6 100644 --- a/pages/linux/silentcast.md +++ b/pages/linux/silentcast.md @@ -1,6 +1,6 @@ # silentcast -> Silent screencast creator. Saves in `.mkv` and animated gif formats. +> Silent screencast creator. Saves in `.mkv` and animated GIF formats. > More information: . - Launch silentcast: diff --git a/pages/linux/size.md b/pages/linux/size.md new file mode 100644 index 00000000000000..36061ed402ed8a --- /dev/null +++ b/pages/linux/size.md @@ -0,0 +1,20 @@ +# size + +> Displays the sizes of sections inside binary files. +> More information: . + +- Display the size of sections in a given object or executable file: + +`size {{path/to/file}}` + +- Display the size of sections in a given object or executable file in [o]ctal: + +`size {{-o|--radix=8}} {{path/to/file}}` + +- Display the size of sections in a given object or executable file in [d]ecimal: + +`size {{-d|--radix=10}} {{path/to/file}}` + +- Display the size of sections in a given object or executable file in he[x]adecimal: + +`size {{-x|--radix=16}} {{path/to/file}}` diff --git a/pages/linux/slapt-get.md b/pages/linux/slapt-get.md index df0cc8a76166ba..2c8b68bcb3df1f 100644 --- a/pages/linux/slapt-get.md +++ b/pages/linux/slapt-get.md @@ -2,6 +2,7 @@ > An apt like system for Slackware package management. > Package sources need to be configured in the slapt-getrc file. +> More information: . - Update the list of available packages and versions: @@ -19,7 +20,7 @@ `slapt-get --upgrade` -- Locate packages of interest by the package name, disk set, or version: +- Locate packages by the package name, disk set, or version: `slapt-get --search {{package_name}}` diff --git a/pages/linux/slapt-src.md b/pages/linux/slapt-src.md index 6ebfc2d9d8494c..5a900bc8fcfa02 100644 --- a/pages/linux/slapt-src.md +++ b/pages/linux/slapt-src.md @@ -16,7 +16,7 @@ `slapt-src --install {{slackbuild_name}}` -- Locate slackbuilds of interest by their name or description: +- Locate slackbuilds by their name or description: `slapt-src --search {{search_term}}` diff --git a/pages/linux/sleep.md b/pages/linux/sleep.md new file mode 100644 index 00000000000000..45c67647aae2d7 --- /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/smbclient.md b/pages/linux/smbclient.md index 8b05485974f605..0c3194799e8e4b 100644 --- a/pages/linux/smbclient.md +++ b/pages/linux/smbclient.md @@ -1,6 +1,7 @@ # smbclient > FTP-like client to access SMB/CIFS resources on servers. +> More information: . - Connect to a share (user will be prompted for password; `exit` to quit the session): @@ -25,3 +26,7 @@ - Upload a file to the server: `smbclient {{//server/share}} --directory {{path/to/directory}} --command "put {{file.txt}}"` + +- List the shares from a server anonymously: + +`smbclient --list={{server}} --no-pass` diff --git a/pages/linux/smbpasswd.md b/pages/linux/smbpasswd.md index ceb6503e756c03..e1412e5ca03839 100644 --- a/pages/linux/smbpasswd.md +++ b/pages/linux/smbpasswd.md @@ -1,20 +1,21 @@ # smbpasswd -> Change a user's SMB password. -> Samba users must also have a local Unix account. +> Add/remove a Samba user or change its password. +> Samba users must have an existing local Unix account. +> More information: . - Change the current user's SMB password: `smbpasswd` -- Add a specified user to Samba and set password(user should already exist in system): +- Add a specified user to Samba and set password (user should already exist in system): -`smbpasswd -a {{username}}` +`sudo smbpasswd -a {{username}}` - Modify an existing Samba user's password: -`smbpasswd {{username}}` +`sudo smbpasswd {{username}}` -- Delete a Samba user: +- Delete a Samba user (use `pdbedit` instead if the Unix account has been deleted): -`smbpasswd -x {{username}}` +`sudo smbpasswd -x {{username}}` diff --git a/pages/linux/smem.md b/pages/linux/smem.md new file mode 100644 index 00000000000000..413f7c435d3f42 --- /dev/null +++ b/pages/linux/smem.md @@ -0,0 +1,20 @@ +# smem + +> Print memory usage for programs. +> More information: . + +- Print memory usage for current processes: + +`smem` + +- Print memory usage for current processes for a every user on a system: + +`smem --users` + +- Print memory usage for current processes for a specified user: + +`smem --userfilter {{username}}` + +- Print system memory information: + +`smem --system` diff --git a/pages/linux/snap.md b/pages/linux/snap.md index 169ba0e646db9f..3df6f1031fe7f0 100644 --- a/pages/linux/snap.md +++ b/pages/linux/snap.md @@ -2,6 +2,7 @@ > Tool for managing the "snap" self-contained software packages. > Similar to what `apt` is for ".deb". +> More information: . - Search for a package: @@ -15,6 +16,10 @@ `snap refresh {{package_name}}` +- Update a package to another channel (track, risk, or branch): + +`snap refresh {{package_name}} --channel={{channel}}` + - Update all packages: `snap refresh` diff --git a/pages/linux/snmpwalk.md b/pages/linux/snmpwalk.md index 0c222dc0ad5177..49f5230f6ffe12 100644 --- a/pages/linux/snmpwalk.md +++ b/pages/linux/snmpwalk.md @@ -7,18 +7,18 @@ `snmpwalk -v1 -c {{community}} {{ip}}` -- Query specific system information on a remote host by OID using SNMPv2 on a specified port: +- Query system information on a remote host by OID using SNMPv2 on a specified port: `snmpwalk -v2c -c {{community}} {{ip}}:{{port}} {{oid}}` -- Query specific system information on a remote host by OID using SNMPv3 and authentication without encryption: +- Query system information on a remote host by OID using SNMPv3 and authentication without encryption: `snmpwalk -v3 -l {{authNoPriv}} -u {{username}} -a {{MD5|SHA}} -A {{passphrase}} {{ip}} {{oid}}` -- Query specific system information on a remote host by OID using SNMPv3, authentication, and encryption: +- Query system information on a remote host by OID using SNMPv3, authentication, and encryption: `snmpwalk -v3 -l {{authPriv}} -u {{username}} -a {{MD5|SHA}} -A {{auth_passphrase}} -x {{DES|AES}} -X {{enc_passphrase}} {{ip}} {{oid}}` -- Query specific system information on a remote host by OID using SNMPv3 without authentication or encryption: +- Query system information on a remote host by OID using SNMPv3 without authentication or encryption: `snmpwalk -v3 -l {{noAuthNoPriv}} -u {{username}} {{ip}} {{oid}}` diff --git a/pages/linux/spectre-meltdown-checker.md b/pages/linux/spectre-meltdown-checker.md index 5a97e6254ec479..12e1e50e9ce70d 100644 --- a/pages/linux/spectre-meltdown-checker.md +++ b/pages/linux/spectre-meltdown-checker.md @@ -1,13 +1,13 @@ # spectre-meltdown-checker > Spectre and Meltdown mitigation detection tool. -> More information: . +> More information: . - Check the currently running kernel for Spectre or Meltdown: `sudo spectre-meltdown-checker` -- Check the currently running kernel and show an explanation of the actions to take in order to mitigate a vulnerability: +- Check the currently running kernel and show an explanation of the actions to take to mitigate a vulnerability: `sudo spectre-meltdown-checker --explain` diff --git a/pages/linux/speedtest.md b/pages/linux/speedtest.md deleted file mode 100644 index 15184013b7d501..00000000000000 --- a/pages/linux/speedtest.md +++ /dev/null @@ -1,20 +0,0 @@ -# speedtest - -> Test internet bandwidth using https://www.speedtest.net. -> More information: . - -- Run a basic speedtest: - -`speedtest` - -- Display values in bytes instead of bits: - -`speedtest --bytes` - -- Use HTTPS instead of HTTP: - -`speedtest --secure` - -- List servers sorted by distance: - -`speedtest --list` diff --git a/pages/linux/spi.md b/pages/linux/spi.md index a457907720c5a0..71901cb81cf577 100644 --- a/pages/linux/spi.md +++ b/pages/linux/spi.md @@ -15,7 +15,7 @@ `spi --upgrade` -- Locate packages or slackbuilds of interest by package name or description: +- Locate packages or slackbuilds by package name or description: `spi {{search_terms}}` diff --git a/pages/linux/squeue.md b/pages/linux/squeue.md index fdcb4d33d95550..4f777b8dcc24cb 100644 --- a/pages/linux/squeue.md +++ b/pages/linux/squeue.md @@ -1,6 +1,7 @@ # squeue > View the jobs queued in the SLURM scheduler. +> More information: . - View the queue: diff --git a/pages/linux/sreport.md b/pages/linux/sreport.md index 32713b79c5defa..8d9387f5be44e7 100644 --- a/pages/linux/sreport.md +++ b/pages/linux/sreport.md @@ -11,6 +11,6 @@ `sreport job sizes printjobcount` -- Show users with highest cpu time use: +- Show users with the highest CPU time use: `sreport user topuser` diff --git a/pages/linux/ss.md b/pages/linux/ss.md index 6c43ce84a44d37..22f5d9bbf3ae46 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/ssh-add.md b/pages/linux/ssh-add.md deleted file mode 100644 index b3c63e5f790921..00000000000000 --- a/pages/linux/ssh-add.md +++ /dev/null @@ -1,24 +0,0 @@ -# ssh-add - -> Manage loaded ssh keys in the ssh-agent. -> Ensure that ssh-agent is up and running for the keys to be loaded in it. - -- Add the default ssh keys in `~/.ssh` to the ssh-agent: - -`ssh-add` - -- Add a specific key to the ssh-agent: - -`ssh-add {{path/to/private_key}}` - -- List fingerprints of currently loaded keys: - -`ssh-add -l` - -- Delete a key from the ssh-agent: - -`ssh-add -d {{path/to/private_key}}` - -- Delete all currently loaded keys from the ssh-agent: - -`ssh-add -D` diff --git a/pages/linux/sshuttle.md b/pages/linux/sshuttle.md deleted file mode 100644 index 82040ae5afdc6e..00000000000000 --- a/pages/linux/sshuttle.md +++ /dev/null @@ -1,20 +0,0 @@ -# sshuttle - -> Transparent proxy server that tunnels traffic over an SSH connection. -> Doesn't require root or any special setup on the remote SSH server, though root access on the local machine is prompted for. - -- Forward all IPv4 TCP traffic via a remote SSH server: - -`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` - -- Also forward all DNS traffic to the server's default DNS resolver: - -`sshuttle --dns --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` - -- Forward all traffic except that which is bound for a specific subnet: - -`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} --exclude {{192.168.0.1/24}}` - -- Use the tproxy method to forward all IPv4 and IPv6 traffic: - -`sshuttle --method=tproxy --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} {{::/0}} --exclude={{your_local_ip_address}} --exclude={{ssh_server_ip_address}}` diff --git a/pages/linux/st.md b/pages/linux/st.md new file mode 100644 index 00000000000000..be9a0d05ac7c08 --- /dev/null +++ b/pages/linux/st.md @@ -0,0 +1,24 @@ +# st + +> A simple terminal emulator for the X Window System. +> More information: . + +- Open a terminal: + +`st` + +- Open a terminal with a specific title: + +`st -T {{title}}` + +- Open a terminal, execute a given command, and write the output to a file: + +`st -o {{path/to/file}} -e {{command argument1 argument2}}` + +- Increase/decrease the font size: + +`Ctrl + Shift + {{Page Up|Page Down}}` + +- Copy/paste from the clipboard: + +`Ctrl + Shift + {{C|V}}` diff --git a/pages/linux/startx.md b/pages/linux/startx.md new file mode 100644 index 00000000000000..df347fed9cd32b --- /dev/null +++ b/pages/linux/startx.md @@ -0,0 +1,20 @@ +# startx + +> The startx script is a front end to xinit that provides a nice user interface for running a single session of the X Window System. +> More information: . + +- Start an X session: + +`startx` + +- Start an X session with a predefined depth value: + +`startx -- -depth {{value}}` + +- Start an X session with a predefined dpi value: + +`startx -- -dpi {{value}}` + +- Override the settings in the `.xinitrc` file and start a new X session: + +`startx /{{path/to/window_manager_or_desktop_environment}}` diff --git a/pages/linux/steghide.md b/pages/linux/steghide.md index 11df94a99d4c89..3bf5b38c0d901c 100644 --- a/pages/linux/steghide.md +++ b/pages/linux/steghide.md @@ -3,7 +3,7 @@ > Steganography tool for JPEG, BMP, WAV and AU file formats. > More information: . -- Embed data in a PNG image, prompting for a passphrase: +- Embed data in a PNG, prompting for a passphrase: `steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}` diff --git a/pages/linux/stegsnow.md b/pages/linux/stegsnow.md new file mode 100644 index 00000000000000..3d0c8e79227ec7 --- /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/strace.md b/pages/linux/strace.md index d17744224c652e..5d43b4e9bf4be0 100644 --- a/pages/linux/strace.md +++ b/pages/linux/strace.md @@ -1,6 +1,7 @@ # strace > Troubleshooting tool for tracing system calls. +> More information: . - Start tracing a specific process by its PID: diff --git a/pages/linux/stress.md b/pages/linux/stress.md index 78a17193064ebd..2d4678b6eb473e 100644 --- a/pages/linux/stress.md +++ b/pages/linux/stress.md @@ -1,6 +1,7 @@ # stress > A tool to stress test CPU, memory, and IO on a Linux system. +> More information: . - Spawn 4 workers to stress test CPU: diff --git a/pages/linux/strip.md b/pages/linux/strip.md new file mode 100644 index 00000000000000..ddab4a92d2e0f1 --- /dev/null +++ b/pages/linux/strip.md @@ -0,0 +1,16 @@ +# strip + +> Discard symbols from executables or object files. +> More information: . + +- Replace the input file with its stripped version: + +`strip {{path/to/file}}` + +- Strip symbols from a file, saving the output to a specific file: + +`strip {{path/to/input_file}} -o {{path/to/output_file}}` + +- Strip debug symbols only: + +`strip --strip-debug {{path/to/file.o}}` diff --git a/pages/linux/swaks.md b/pages/linux/swaks.md new file mode 100644 index 00000000000000..8ea0c90332b020 --- /dev/null +++ b/pages/linux/swaks.md @@ -0,0 +1,24 @@ +# swaks + +> Swiss Army Knife SMTP, the all-purpose SMTP transaction tester. +> More information: . + +- Deliver a standard test email to `user@example.com` on port 25 of `test-server.example.net`: + +`swaks --to {{user@example.com}} --server {{test-server.example.net}}` + +- Deliver a standard test email, requiring CRAM-MD5 authentication as user `me@example.com`. An "X-Test" header will be added to the email body: + +`swaks --to {{user@example.com}} --from {{me@example.com}} --auth {{CRAM-MD5}} --auth-user {{me@example.com}} --header-X-Test "{{test_email}}"` + +- Test a virus scanner using EICAR in an attachment. Don't show the message DATA part: + +`swaks -t {{user@example.com}} --attach - --server {{test-server.example.com}} --suppress-data {{path/to/eicar.txt}}` + +- Test a spam scanner using GTUBE in the body of an email, routed via the MX records for `example.com`: + +`swaks --to {{user@example.com}} --body {{path/to/gtube_file}}` + +- Deliver a standard test email to `user@example.com` using the LMTP protocol via a UNIX domain socket file: + +`swaks --to {{user@example.com}} --socket {{/var/lda.sock}} --protocol {{LMTP}}` diff --git a/pages/linux/swapoff.md b/pages/linux/swapoff.md index cc84c767057376..a1837c14f79af4 100644 --- a/pages/linux/swapoff.md +++ b/pages/linux/swapoff.md @@ -1,6 +1,7 @@ # swapoff > Disables device or file for swapping. +> More information: . - Disable a given swap partition: diff --git a/pages/linux/swapon.md b/pages/linux/swapon.md index 89cd4448a218ac..9ea999c4fa3566 100644 --- a/pages/linux/swapon.md +++ b/pages/linux/swapon.md @@ -1,6 +1,7 @@ # swapon > Enables device or file for swapping. +> More information: . - Get swap information: diff --git a/pages/linux/swupd.md b/pages/linux/swupd.md index 35c2a279d03fe4..7b6504a42b3af4 100644 --- a/pages/linux/swupd.md +++ b/pages/linux/swupd.md @@ -3,7 +3,7 @@ > Package management utility for Clear Linux. > More information: . -- Update to latest version: +- Update to the latest version: `sudo swupd update` diff --git a/pages/linux/synopkg.md b/pages/linux/synopkg.md new file mode 100644 index 00000000000000..cd111734c1443c --- /dev/null +++ b/pages/linux/synopkg.md @@ -0,0 +1,36 @@ +# synopkg + +> Package management utility for Synology DiskStation Manager. +> More information: . + +- List the names of installed packages: + +`synopkg list --name` + +- List packages which depend on a specific package: + +`synopkg list --depend-on {{package}}` + +- Start/Stop a package: + +`sudo synopkg {{start|stop}} {{package}}` + +- Print the status of a package: + +`synopkg status {{package}}` + +- Uninstall a package: + +`sudo synopkg uninstall {{package}}` + +- Check if updates are available for a package: + +`synopkg checkupdate {{package}}` + +- Upgrade all packages to the latest version: + +`sudo synopkg upgradeall` + +- Install a package from a synopkg file: + +`sudo synopkg install {{path/to/package.spk}}` diff --git a/pages/linux/synoupgrade.md b/pages/linux/synoupgrade.md new file mode 100644 index 00000000000000..b5cc22ec5fd24d --- /dev/null +++ b/pages/linux/synoupgrade.md @@ -0,0 +1,36 @@ +# synoupgrade + +> Upgrade a Synology DiskStation Manager (DSM) from the command-line. +> More information: . + +- Check if upgrades are available: + +`sudo synoupgrade --check` + +- Check for patches without upgrading the DSM version: + +`sudo synoupgrade --check-smallupdate` + +- Download the latest upgrade available (use `--download-smallupdate` for patches): + +`sudo synoupgrade --download` + +- Start the upgrade process: + +`sudo synoupgrade --start` + +- Upgrade to the latest version automatically: + +`sudo synoupgrade --auto` + +- Apply patches without upgrading the DSM version automatically: + +`sudo synoupgrade --auto-smallupdate` + +- Upgrade the DSM using a patch file (should be an absolute path): + +`sudo synoupgrade --patch {{/path/to/file.pat}}` + +- Display help: + +`synoupgrade` diff --git a/pages/linux/sysctl.md b/pages/linux/sysctl.md index a5c362f1f143a7..d9eb53074f56a4 100644 --- a/pages/linux/sysctl.md +++ b/pages/linux/sysctl.md @@ -1,6 +1,7 @@ # sysctl > List and change kernel runtime variables. +> More information: . - Show all available variables and their values: diff --git a/pages/linux/systemctl.md b/pages/linux/systemctl.md index 5fd9f3550de023..297cf9cb6d95dd 100644 --- a/pages/linux/systemctl.md +++ b/pages/linux/systemctl.md @@ -3,6 +3,10 @@ > Control the systemd system and service manager. > More information: . +- Show all running services: + +`systemctl status` + - List failed units: `systemctl --failed` @@ -27,10 +31,6 @@ `systemctl daemon-reload` -- Check if a unit is active: - -`systemctl is-active {{unit}}` - - Check if a unit is enabled: `systemctl is-enabled {{unit}}` diff --git a/pages/linux/systemd-analyze.md b/pages/linux/systemd-analyze.md index 5a302034bf32ea..70ccda1cf3a3e5 100644 --- a/pages/linux/systemd-analyze.md +++ b/pages/linux/systemd-analyze.md @@ -1,12 +1,14 @@ # systemd-analyze +> Analyze and debug system manager. > Show timing details about the boot process of units (services, mount points, devices, sockets). +> More information: . - List time of each unit to start up: `systemd-analyze blame` -- Print a tree of the time critical chain of units: +- Print a tree of the time-critical chain of units: `systemd-analyze critical-chain` @@ -17,3 +19,7 @@ - Plot a dependency graph and convert it to an SVG file: `systemd-analyze dot | dot -T{{svg}} > {{path/to/file.svg}}` + +- Show security scores of running units: + +`systemd-analyze security` diff --git a/pages/linux/systemd-run.md b/pages/linux/systemd-run.md new file mode 100644 index 00000000000000..2faff670f7a0da --- /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 {{executable}}` + +- 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 {{executable}}` + +- Use the program in a shell pipeline: + +`{{executable1}} | systemd-run --pipe {{executable2}} | {{executable3}}` diff --git a/pages/linux/tac.md b/pages/linux/tac.md new file mode 100644 index 00000000000000..77244838aee9e1 --- /dev/null +++ b/pages/linux/tac.md @@ -0,0 +1,25 @@ +# tac + +> Display and concatenate files with lines in reversed order. +> See also: `cat`. +> More information: . + +- Concatenate specific files in reversed order: + +`tac {{path/to/file1 path/to/file2 ...}}` + +- Display `stdin` in reversed order: + +`{{cat path/to/file}} | tac` + +- Use a specific separator: + +`tac --separator {{,}} {{path/to/file1 path/to/file2 ...}}` + +- Use a specific regex as a separator: + +`tac --regex --separator {{[,;]}} {{path/to/file1 path/to/file2 ...}}` + +- Use a separator before each file: + +`tac --before {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/linux/taskset.md b/pages/linux/taskset.md index a21b3a5abbfa2f..155cdeff0e5bc8 100644 --- a/pages/linux/taskset.md +++ b/pages/linux/taskset.md @@ -1,6 +1,7 @@ # taskset > Get or set a process' CPU affinity or start a new process with a defined CPU affinity. +> More information: . - Get a running process' CPU affinity by PID: @@ -16,8 +17,8 @@ - Start a new process with affinity for multiple non-sequential CPUs: -`taskset --cpu-list {{cpu_id_1}} {{cpu_id_2}} {{cpu_id_3}}` +`taskset --cpu-list {{cpu_id_1}},{{cpu_id_2}},{{cpu_id_3}}` - Start a new process with affinity for CPUs 1 through 4: -`taskset --cpu-list {{cpu_id_1}},{{cpu_id_4}}` +`taskset --cpu-list {{cpu_id_1}}-{{cpu_id_4}}` diff --git a/pages/linux/tc.md b/pages/linux/tc.md new file mode 100644 index 00000000000000..3456fa598e1f7f --- /dev/null +++ b/pages/linux/tc.md @@ -0,0 +1,32 @@ +# tc + +> Show / manipulate traffic control settings. +> More information: . + +- Add constant network delay to outbound packages: + +`tc qdisc add dev {{eth0}} root netem delay {{delay_in_milliseconds}}ms` + +- Add normal distributed network delay to outbound packages: + +`tc qdisc add dev {{eth0}} root netem delay {{mean_delay_ms}}ms {{delay_std_ms}}ms` + +- Add package corruption/loss/duplication to a portion of packages: + +`tc qdisc add dev {{eth0}} root netem {{corruption|loss|duplication}} {{effect_percentage}}%` + +- 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` + +- Show active traffic control policies: + +`tc qdisc show dev {{eth0}}` + +- Delete all traffic control rules: + +`tc qdisc del dev {{eth0}}` + +- Change traffic control rule: + +`tc qdisc change dev {{eth0}} root netem {{policy}} {{policy_parameters}}` diff --git a/pages/linux/tcpflow.md b/pages/linux/tcpflow.md index 97c771fefd9a59..c6dae3de4f778f 100644 --- a/pages/linux/tcpflow.md +++ b/pages/linux/tcpflow.md @@ -1,6 +1,7 @@ # tcpflow > Capture TCP traffic for debugging and analysis. +> More information: . - Show all data on the given interface and port: diff --git a/pages/linux/tcpkill.md b/pages/linux/tcpkill.md index 92f3897e523e34..7ef95ef671de77 100644 --- a/pages/linux/tcpkill.md +++ b/pages/linux/tcpkill.md @@ -1,6 +1,7 @@ # tcpkill > Kills specified in-progress TCP connections. +> More information: . - Kill in-progress connections at a specified interface, host and port: diff --git a/pages/linux/telinit.md b/pages/linux/telinit.md new file mode 100644 index 00000000000000..9424129973e83e --- /dev/null +++ b/pages/linux/telinit.md @@ -0,0 +1,29 @@ +# telinit + +> Change SysV runlevel. +> Since the concept SysV runlevels is obsolete the runlevel requests will be transparently translated into systemd unit activation requests. +> More information: . + +- Power off the machine: + +`telinit 0` + +- Reboot the machine: + +`telinit 6` + +- Change SysV run level: + +`telinit {{2|3|4|5}}` + +- Change to rescue mode: + +`telinit 1` + +- Reload daemon configuration: + +`telinit q` + +- Do not send a wall message before reboot/power-off (6/0): + +`telinit --no-wall {{value}}` diff --git a/pages/linux/terminator.md b/pages/linux/terminator.md index b11c69d6c70b9e..ff71d1caa9b9cc 100644 --- a/pages/linux/terminator.md +++ b/pages/linux/terminator.md @@ -1,6 +1,7 @@ # terminator > Arrange multiple GNOME terminals in one window. +> More information: . - Start terminator window: diff --git a/pages/linux/termusic.md b/pages/linux/termusic.md new file mode 100644 index 00000000000000..1554dfd3051908 --- /dev/null +++ b/pages/linux/termusic.md @@ -0,0 +1,16 @@ +# termusic + +> A terminal music player written in Rust that uses vim-like key bindings. +> More information: . + +- Open termusic to a specific directory. (It can be set permanently in `~/.config/termusic/config.toml`): + +`termusic {path/to/directory}` + +- Disable showing the album cover for a specific file: + +`termusic -c {path/to/music_file}` + +- View termusic's usage info: + +`termusic --help` diff --git a/pages/linux/tftp.md b/pages/linux/tftp.md new file mode 100644 index 00000000000000..fedfc18fecc5b4 --- /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/timedatectl.md b/pages/linux/timedatectl.md index 16b9c93151aeb3..e79e5d4b72ec95 100644 --- a/pages/linux/timedatectl.md +++ b/pages/linux/timedatectl.md @@ -1,6 +1,7 @@ # timedatectl > Control the system time and date. +> More information: . - Check the current system clock time: @@ -21,3 +22,7 @@ - Enable Network Time Protocol (NTP) synchronization: `timedatectl set-ntp on` + +- Change the hardware clock time standard to localtime: + +`timedatectl set-local-rtc 1` diff --git a/pages/linux/tlp-stat.md b/pages/linux/tlp-stat.md index b541cc6e79abf7..77f5ddc2d18385 100644 --- a/pages/linux/tlp-stat.md +++ b/pages/linux/tlp-stat.md @@ -1,6 +1,8 @@ # tlp-stat -> A tool to generate TLP status reports. See also `tlp`. +> A tool to generate TLP status reports. +> See also `tlp`. +> More information: . - Generate status report with configuration and all active settings: diff --git a/pages/linux/tlp.md b/pages/linux/tlp.md index 4882040dcb419a..6c43b43b583cf6 100644 --- a/pages/linux/tlp.md +++ b/pages/linux/tlp.md @@ -1,6 +1,8 @@ # tlp -> Advanced power management for Linux. See `tlp-stat` page for additional information. +> Advanced power management for Linux. +> See also `tlp-stat`. +> More information: . - Apply settings (according to the actual power source): diff --git a/pages/linux/tomb.md b/pages/linux/tomb.md index 418038a1805ecd..dcdda26cd14a5a 100644 --- a/pages/linux/tomb.md +++ b/pages/linux/tomb.md @@ -1,8 +1,9 @@ # tomb > Manage encrypted storage directories that can be safely transported and hidden in a filesystem. +> More information: . -- Create a new tomb with an initial size of 100MB: +- Create a new tomb with an initial size of 100 MB: `tomb dig -s {{100}} {{encrypted_directory.tomb}}` @@ -10,6 +11,10 @@ `tomb forge {{encrypted_directory.tomb.key}}` +- Forcefully create a new key, even if the tomb isn't allowing key forging (due to swap): + +`tomb forge {{encrypted_directory.tomb.key}} -f` + - Initialize and lock an empty tomb using a key made with `forge`: `tomb lock {{encrypted_directory.tomb}} -k {{encrypted_directory.tomb.key}}` diff --git a/pages/linux/toolbox-create.md b/pages/linux/toolbox-create.md new file mode 100644 index 00000000000000..14b7a7cc0480c2 --- /dev/null +++ b/pages/linux/toolbox-create.md @@ -0,0 +1,24 @@ +# toolbox create + +> Create a new `toolbox` container. +> More information: . + +- Create a `toolbox` container for a specific distribution: + +`toolbox create --distro {{distribution}}` + +- Create a `toolbox` container for a specific release of the current distribution: + +`toolbox create --release {{release}}` + +- Create a `toolbox` container with a custom image: + +`toolbox create --image {{name}}` + +- Create a `toolbox` container from a custom Fedora image: + +`toolbox create --image {{registry.fedoraproject.org/fedora-toolbox:36}}` + +- Create a `toolbox` container using the default image for Fedora 36: + +`toolbox create --distro {{fedora}} --release {{f36}}` diff --git a/pages/linux/toolbox-enter.md b/pages/linux/toolbox-enter.md new file mode 100644 index 00000000000000..c99a0b0e84c1bb --- /dev/null +++ b/pages/linux/toolbox-enter.md @@ -0,0 +1,17 @@ +# toolbox enter + +> Enter a `toolbox` container for interactive use. +> See also: `toolbox run`. +> More information: . + +- Enter a `toolbox` container using the default image of a specific distribution: + +`toolbox enter --distro {{distribution}}` + +- Enter a `toolbox` container using the default image of a specific release of the current distribution: + +`toolbox enter --release {{release}}` + +- Enter a toolbox container using the default image for Fedora 36: + +`toolbox enter --distro {{fedora}} --release {{f36}}` diff --git a/pages/linux/toolbox-help.md b/pages/linux/toolbox-help.md new file mode 100644 index 00000000000000..c09b9934172057 --- /dev/null +++ b/pages/linux/toolbox-help.md @@ -0,0 +1,12 @@ +# toolbox help + +> Displays help information about `toolbox`. +> More information: . + +- Display the `toolbox` manual: + +`toolbox help` + +- Display the `toolbox` manual for a specific subcommand: + +`toolbox help {{subcommand}}` diff --git a/pages/linux/toolbox-init-container.md b/pages/linux/toolbox-init-container.md new file mode 100644 index 00000000000000..eada9e3d7d4f90 --- /dev/null +++ b/pages/linux/toolbox-init-container.md @@ -0,0 +1,9 @@ +# toolbox init-container + +> Initialize a running `toolbox` container. +> This command should not be executed by the user, and cannot be run on the host. +> More information: . + +- Initialize a running toolbox: + +`toolbox init-container --gid {{gid}} --home {{home}} --home-link --media-link --mnt-link --monitor-host --shell {{shell}} --uid {{uid}} --user {{user}}` diff --git a/pages/linux/toolbox-list.md b/pages/linux/toolbox-list.md new file mode 100644 index 00000000000000..d166c7572f8e51 --- /dev/null +++ b/pages/linux/toolbox-list.md @@ -0,0 +1,16 @@ +# toolbox list + +> List existing `toolbox` containers and images. +> More information: . + +- List all `toolbox` containers and images: + +`toolbox list` + +- List only `toolbox` containers: + +`toolbox list --containers` + +- List only `toolbox` images: + +`toolbox list --images` diff --git a/pages/linux/toolbox-rm.md b/pages/linux/toolbox-rm.md new file mode 100644 index 00000000000000..929f836a39806b --- /dev/null +++ b/pages/linux/toolbox-rm.md @@ -0,0 +1,17 @@ +# toolbox rm + +> Remove one or more `toolbox` containers. +> See also: `toolbox rmi`. +> More information: . + +- Remove a toolbox container: + +`toolbox rm {{container_name}}` + +- Remove all `toolbox` containers: + +`toolbox rm --all` + +- Force the removal of a currently active `toolbox` container: + +`toolbox rm --force {{container_name}}` diff --git a/pages/linux/toolbox-rmi.md b/pages/linux/toolbox-rmi.md new file mode 100644 index 00000000000000..ac18db3acf8ea5 --- /dev/null +++ b/pages/linux/toolbox-rmi.md @@ -0,0 +1,17 @@ +# toolbox rmi + +> Remove one or more `toolbox` images. +> See also: `toolbox rm`. +> More information: . + +- Remove a `toolbox` image: + +`toolbox rmi {{image_name}}` + +- Remove all `toolbox` images: + +`toolbox rmi --all` + +- Force the removal of a `toolbox` image which is currently being used by a container (the container will be removed as well): + +`toolbox rmi --force {{image_name}}` diff --git a/pages/linux/toolbox-run.md b/pages/linux/toolbox-run.md new file mode 100644 index 00000000000000..fd8352d35e550f --- /dev/null +++ b/pages/linux/toolbox-run.md @@ -0,0 +1,17 @@ +# toolbox run + +> Run a command in an existing `toolbox` container. +> See also: `toolbox enter`. +> More information: . + +- Run a command inside a specific `toolbox` container: + +`toolbox run --container {{container_name}} {{command}}` + +- Run a command inside a `toolbox` container for a specific release of a distribution: + +`toolbox run --distro {{distribution}} --release {{release}} {{command}}` + +- Run `emacs` inside a `toolbox` container using the default image for Fedora 36: + +`toolbox run --distro {{fedora}} --release {{f36}} {{emacs}}` diff --git a/pages/linux/toolbox.md b/pages/linux/toolbox.md new file mode 100644 index 00000000000000..f1f316a635f244 --- /dev/null +++ b/pages/linux/toolbox.md @@ -0,0 +1,21 @@ +# toolbox + +> Tool for containerized command line environments on Linux. +> Some subcommands such as `toolbox create` have their own usage documentation. +> More information: . + +- Run a `toolbox` subcommand: + +`toolbox {{subcommand}}` + +- Show help for a `toolbox` subcommand (such as `create`, `enter`, `rm`, `rmi`, etc.): + +`toolbox help {{subcommand}}` + +- Show general help: + +`toolbox --help` + +- Show the `toolbox` version: + +`toolbox --version` diff --git a/pages/linux/top.md b/pages/linux/top.md index 78fc8943ff2d95..6bcb436192b761 100644 --- a/pages/linux/top.md +++ b/pages/linux/top.md @@ -1,6 +1,7 @@ # top > Display dynamic real-time information about running processes. +> More information: . - Start top: diff --git a/pages/linux/trace-cmd.md b/pages/linux/trace-cmd.md new file mode 100644 index 00000000000000..f95d86a01216df --- /dev/null +++ b/pages/linux/trace-cmd.md @@ -0,0 +1,33 @@ +# trace-cmd + +> Utility to interact with the Ftrace Linux kernel internal tracer. +> This utility only runs as root. +> More information: . + +- Display the status of tracing system: + +`trace-cmd stat` + +- List available tracers: + +`trace-cmd list -t` + +- Start tracing with a specific plugin: + +`trace-cmd start -p {{timerlat|osnoise|hwlat|blk|mmiotrace|function_graph|wakeup_dl|wakeup_rt|wakeup|function|nop}}` + +- View the trace output: + +`trace-cmd show` + +- Stop the tracing but retain the buffers: + +`trace-cmd stop` + +- Clear the trace buffers: + +`trace-cmd clear` + +- Clear the trace buffers and stop tracing: + +`trace-cmd reset` diff --git a/pages/linux/trap.md b/pages/linux/trap.md deleted file mode 100644 index 325b1c12308b01..00000000000000 --- a/pages/linux/trap.md +++ /dev/null @@ -1,20 +0,0 @@ -# trap - -> Automatically execute commands after receiving signals by processes or the operating system. -> Can be used to perform cleanups for interruptions by the user or other actions. - -- List available signals to set traps for: - -`trap -l` - -- List active traps for the current shell: - -`trap -p` - -- Set a trap to execute commands when one or more signals are detected: - -`trap 'echo "Caught signal {{SIGHUP}}"' {{SIGHUP}}` - -- Remove active traps: - -`trap - {{SIGHUP}} {{SIGINT}}` diff --git a/pages/linux/trash.md b/pages/linux/trash.md index 5a74fd2d085f5c..fdad9d3892a81a 100644 --- a/pages/linux/trash.md +++ b/pages/linux/trash.md @@ -1,32 +1,32 @@ # trash -> A CLI for managing your trashcan / recycling bin. +> A CLI for managing the trashcan / recycling bin. > More information: . -- Delete a file (send to trash): +- Delete a file and send it to the trash: `trash {{path/to/file}}` -- List files in trash: +- List all files in the trash: `trash-list` -- Restore file from trash: +- Interactively restore a file from the trash: `trash-restore` -- Empty trash: +- Empty the trash: `trash-empty` -- Empty trash, keeping files trashed less than {{10}} days ago: +- Permanently delete all files in the trash which are older than 10 days: `trash-empty {{10}}` -- Remove all files named 'foo' from the trash: +- Remove all files in the trash, which match a specific blob pattern: -`trash-rm foo` +`trash-rm "{{*.o}}"` -- Remove all files with a given original location: +- Remove all files with a specific original location: -`trash-rm {{/absolute/path/to/file_or_directory}}` +`trash-rm {{/path/to/file_or_directory}}` diff --git a/pages/linux/trashy.md b/pages/linux/trashy.md new file mode 100644 index 00000000000000..dfe7133bc32d52 --- /dev/null +++ b/pages/linux/trashy.md @@ -0,0 +1,32 @@ +# trashy + +> An alternative to `rm` and `trash-cli` written in Rust. +> More information: . + +- Move a specific file to the trash: + +`trash {{path/to/file}}` + +- Move specific files to the trash: + +`trash {{path/to/file1 path/to/file2 ...}}` + +- List items in the trash: + +`trash list` + +- Restore a specific file from the trash: + +`trash restore {{file}}` + +- Remove a specific file from the trash: + +`trash empty {{file}}` + +- Restore all files from the trash: + +`trash restore --all` + +- Remove all files from the trash: + +`trash empty --all` diff --git a/pages/linux/treetime.md b/pages/linux/treetime.md new file mode 100644 index 00000000000000..5e699086ef0eff --- /dev/null +++ b/pages/linux/treetime.md @@ -0,0 +1,20 @@ +# treetime + +> TreeTime provides routines for ancestral sequence reconstruction and inference of molecular-clock phylogenies. +> More information: . + +- Infer ancestral sequences maximizing the joint or marginal likelihood: + +`treetime ancestral` + +- Analyze patterns of recurrent mutations aka homoplasies: + +`treetime homoplasy` + +- Estimate molecular clock parameters and reroot the tree: + +`treetime clock` + +- Map discrete character such as host or country to the tree: + +`treetime mugration` diff --git a/pages/linux/trizen.md b/pages/linux/trizen.md index 14c5ee3b5af5d7..115cf5d74467e3 100644 --- a/pages/linux/trizen.md +++ b/pages/linux/trizen.md @@ -1,6 +1,7 @@ # trizen > Arch Linux utility for building packages from the Arch User Repository (AUR). +> More information: . - Synchronize and update all AUR packages: diff --git a/pages/linux/trust.md b/pages/linux/trust.md new file mode 100644 index 00000000000000..806d0de5a1dbc4 --- /dev/null +++ b/pages/linux/trust.md @@ -0,0 +1,28 @@ +# trust + +> Tool for operating on the trust policy store. +> More information: . + +- List trust policy store items: + +`trust list` + +- List information about specific items in the trust policy store: + +`trust list --filter={{blocklist|ca-anchors|certificates|trust-policy}}` + +- Store a specific trust anchor in the trust policy store: + +`trust anchor {{path/to/certificate.crt}}` + +- Remove a specific anchor from the trust policy store: + +`trust anchor --remove {{path/to/certificate.crt}}` + +- Extract trust policy from the shared trust policy store: + +`trust extract --format=x509-directory --filter=ca-anchors {{path/to/directory}}` + +- Display help for a subcommand: + +`trust {{subcommand}} --help` diff --git a/pages/linux/tshark.md b/pages/linux/tshark.md index 26ccdc93c8af22..7c8ebee47764c5 100644 --- a/pages/linux/tshark.md +++ b/pages/linux/tshark.md @@ -1,6 +1,7 @@ # tshark -> Packet analysis tool, CLI version of wireshark. +> Packet analysis tool, CLI version of Wireshark. +> More information: . - Monitor everything on localhost: @@ -32,4 +33,4 @@ - Analyze packets from a file: -`tshark -r {{filename}}.pcap` +`tshark -r {{path/to/file.pcap}}` diff --git a/pages/linux/ttyplot.md b/pages/linux/ttyplot.md new file mode 100644 index 00000000000000..0e724b31884d90 --- /dev/null +++ b/pages/linux/ttyplot.md @@ -0,0 +1,20 @@ +# ttyplot + +> 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): + +`{ echo {{1 2 3}}; cat } | ttyplot` + +- Set a specific title and unit: + +`{ echo {{1 2 3}}; cat } | ttyplot -t {{title}} -u {{unit}}` + +- Use a while loop to continuously plot random values: + +`{ while {{true}}; do echo {{$RANDOM}}; sleep {{1}}; done } | ttyplot` + +- Parse the output from `ping` and visualize it: + +`ping {{8.8.8.8}} | sed -u '{{s/^.*time=//g; s/ ms//g}}' | ttyplot -t "{{ping to 8.8.8.8}}" -u {{ms}}` diff --git a/pages/linux/tune2fs.md b/pages/linux/tune2fs.md index ea6a453b9837f0..f8d60f15de71ce 100644 --- a/pages/linux/tune2fs.md +++ b/pages/linux/tune2fs.md @@ -2,6 +2,7 @@ > Adjust parameters of an ext2, ext3 or ext4 filesystem. > May be used on mounted filesystems. +> More information: . - Set the max number of counts before a filesystem is checked to 2: diff --git a/pages/linux/ubuntu-bug.md b/pages/linux/ubuntu-bug.md new file mode 100644 index 00000000000000..2fc28b65bc0367 --- /dev/null +++ b/pages/linux/ubuntu-bug.md @@ -0,0 +1,8 @@ +# ubuntu-bug + +> This command is an alias of `apport-bug`. +> More information: . + +- View documentation for the original command: + +`tldr apport-bug` diff --git a/pages/linux/ubuntu-security-status.md b/pages/linux/ubuntu-security-status.md new file mode 100644 index 00000000000000..a4b6e3d18e5210 --- /dev/null +++ b/pages/linux/ubuntu-security-status.md @@ -0,0 +1,16 @@ +# ubuntu-security-status + +> Display information about security support for installed Ubuntu packages. +> More information: . + +- Display the number of unsupported packages: + +`ubuntu-security-status` + +- List packages that are no longer available for download: + +`ubuntu-security-status --unavailable` + +- List third-party packages: + +`ubuntu-security-status --thirdparty` diff --git a/pages/linux/udevadm.md b/pages/linux/udevadm.md new file mode 100644 index 00000000000000..178d86286e9999 --- /dev/null +++ b/pages/linux/udevadm.md @@ -0,0 +1,28 @@ +# udevadm + +> Linux `udev` management tool. +> More information: . + +- Monitor all device events: + +`sudo udevadm monitor` + +- Print `uevents` sent out by the kernel: + +`sudo udevadm monitor --kernel` + +- Print device events after being processed by `udev`: + +`sudo udevadm monitor --udev` + +- List attributes of a device: + +`sudo udevadm info --attribute-walk --path {{/dev/sda1}}` + +- Reload all `udev` rules: + +`sudo udevadm control --reload-rules` + +- Trigger all `udev` rules to run: + +`sudo udevadm trigger` diff --git a/pages/linux/ufw.md b/pages/linux/ufw.md index c35d33aaf19ab7..73a526d30e113f 100644 --- a/pages/linux/ufw.md +++ b/pages/linux/ufw.md @@ -2,6 +2,7 @@ > Uncomplicated Firewall. > Frontend for iptables aiming to make configuration of a firewall easier. +> More information: . - Enable ufw: @@ -27,9 +28,9 @@ `ufw deny {{80}}` -- Deny all UDP traffic to port 22: +- Deny all UDP traffic to ports in range 8412:8500: -`ufw deny proto {{udp}} from {{any}} to {{any}} port {{22}}` +`ufw deny proto {{udp}} from {{any}} to {{any}} port {{8412:8500}}` - Delete a particular rule. The rule number can be retrieved from the `ufw status numbered` command: diff --git a/pages/linux/ul.md b/pages/linux/ul.md index 58e29bea0d3d5a..2ce14d1ab23329 100644 --- a/pages/linux/ul.md +++ b/pages/linux/ul.md @@ -2,6 +2,7 @@ > Performs the underlining of a text. > Each character in a given string must be underlined separately. +> More information: . - Display the contents of the file with underlines where applicable: diff --git a/pages/linux/uname.md b/pages/linux/uname.md new file mode 100644 index 00000000000000..70a175e44a26fe --- /dev/null +++ b/pages/linux/uname.md @@ -0,0 +1,36 @@ +# uname + +> Uname prints information about the machine and operating system it is run on. +> More information: . + +- Print all information: + +`uname --all` + +- Print the current kernel name: + +`uname --kernel-name` + +- Print the current network node host name: + +`uname --nodename` + +- Print the current kernel release: + +`uname --kernel-release` + +- Print the current kernel version: + +`uname --kernel-version` + +- Print the current machine hardware name: + +`uname --machine` + +- Print the current processor type: + +`uname --processor` + +- Print the current operating system name: + +`uname --operating-system` diff --git a/pages/linux/unix2dos.md b/pages/linux/unix2dos.md index 57ebfd95570935..397ffa1b47992e 100644 --- a/pages/linux/unix2dos.md +++ b/pages/linux/unix2dos.md @@ -1,7 +1,8 @@ # unix2dos > Change Unix-style line endings to DOS-style. -> Replaces CR with CRLF. +> Replaces LF with CRLF. +> More information: . - Change the line endings of a file: diff --git a/pages/linux/unix2mac.md b/pages/linux/unix2mac.md index 84c396ec963ef1..2f7c68cbb87821 100644 --- a/pages/linux/unix2mac.md +++ b/pages/linux/unix2mac.md @@ -1,7 +1,8 @@ # unix2mac > Change Unix-style line endings to macOS-style. -> Replaces CR with LF. +> Replaces LF with CR. +> More information: . - Change the line endings of a file: diff --git a/pages/linux/unset.md b/pages/linux/unset.md index 90d0d2c2edb294..7976b463b08abf 100644 --- a/pages/linux/unset.md +++ b/pages/linux/unset.md @@ -1,6 +1,7 @@ # unset > Remove shell variables or functions. +> More information: . - Remove the variable `foo`, or if the variable doesn't exist, remove the function `foo`: diff --git a/pages/linux/unshare.md b/pages/linux/unshare.md new file mode 100644 index 00000000000000..8a9be7d1e0e569 --- /dev/null +++ b/pages/linux/unshare.md @@ -0,0 +1,12 @@ +# unshare + +> Execute a command in new user-defined namespaces. +> More information: . + +- Execute a command without sharing access to connected networks: + +`unshare --net {{command}} {{command_arguments}}` + +- Execute a command as a child process without sharing mounts, processes, or networks: + +`unshare --mount --pid --net --fork {{command}} {{command_arguments}}` diff --git a/pages/linux/unzipsfx.md b/pages/linux/unzipsfx.md new file mode 100644 index 00000000000000..72b62558d11327 --- /dev/null +++ b/pages/linux/unzipsfx.md @@ -0,0 +1,24 @@ +# unzipsfx + +> Create a self-extracting compressed binary file by prepending self-extracting stubs on a `zip` file. +> More information: . + +- Create a self-extracting binary file of a `zip` archive: + +`cat unzipsfx {{path/to/archive.zip}} > {{filename}} && chmod 755 {{filename}}` + +- Extract a self-extracting binary in the current directory: + +`{{./path/to/binary)}}` + +- Test a self-extracting binary for errors: + +`{{./path/to/binary)}} -t` + +- Print content of a file in the self-extracting binary without extraction: + +`{{./path/to/binary)}} -c {{path/to/filename}}` + +- Print comments on `zip` archive in the self-extracting binary: + +`{{./path/to/binary)}} -z` diff --git a/pages/linux/update-alternatives.md b/pages/linux/update-alternatives.md index 5265a315884116..7b7a801e03489a 100644 --- a/pages/linux/update-alternatives.md +++ b/pages/linux/update-alternatives.md @@ -1,6 +1,7 @@ # update-alternatives > A convenient tool for maintaining symbolic links to determine default commands. +> More information: . - Add a symbolic link: diff --git a/pages/linux/update-rc.d.md b/pages/linux/update-rc.d.md index bf440639feea8a..63f7add99be0f4 100644 --- a/pages/linux/update-rc.d.md +++ b/pages/linux/update-rc.d.md @@ -2,6 +2,7 @@ > Install and remove services which are System-V style init script links. > Init scripts are in the `/etc/init.d/`. +> More information: . - Install a service: diff --git a/pages/linux/updatedb.md b/pages/linux/updatedb.md index 64482815112eaf..df7725afce487f 100644 --- a/pages/linux/updatedb.md +++ b/pages/linux/updatedb.md @@ -2,6 +2,7 @@ > Create or update the database used by `locate`. > It is usually run daily by cron. +> More information: . - Refresh database content: diff --git a/pages/linux/updpkgsums.md b/pages/linux/updpkgsums.md new file mode 100644 index 00000000000000..afabe014421c09 --- /dev/null +++ b/pages/linux/updpkgsums.md @@ -0,0 +1,17 @@ +# updpkgsums + +> Update the checksums of the sources in a `PKGBUILD`. +> Unless a preexisting hashing algorithm is used, SHA256 will be used. +> More information: . + +- Update the checksums in a `PKGBUILD`: + +`updpkgsums` + +- Display Version: + +`updpkgsums -v` + +- Display help: + +`updpkgsums -h` diff --git a/pages/linux/upower.md b/pages/linux/upower.md new file mode 100644 index 00000000000000..92983e89c1bb72 --- /dev/null +++ b/pages/linux/upower.md @@ -0,0 +1,24 @@ +# upower + +> System utility to provide power and battery information and statistics. +> More information: . + +- Display power and battery information: + +`upower --dump` + +- List all power devices: + +`upower --enumerate` + +- Watch for and print power status changes: + +`upower --monitor` + +- Watch for and print detailed power status changes: + +`upower --monitor-detail` + +- Display version: + +`upower --version` diff --git a/pages/linux/uprecords.md b/pages/linux/uprecords.md index 24b94e59f40c39..8d776abbc8947c 100644 --- a/pages/linux/uprecords.md +++ b/pages/linux/uprecords.md @@ -1,6 +1,7 @@ # uprecords > Displays a summary of historical uptime records. +> More information: . - Display a summary of the top 10 historical uptime records: diff --git a/pages/linux/urxvt.md b/pages/linux/urxvt.md index 3f98607dfc833b..cbb65eecc21934 100644 --- a/pages/linux/urxvt.md +++ b/pages/linux/urxvt.md @@ -2,6 +2,7 @@ > Rxvt-unicode. > A customizable terminal emulator. +> More information: . - Open a new urxvt window: diff --git a/pages/linux/useradd.md b/pages/linux/useradd.md index ea7ff6ca24c726..a3e917e8f4ff48 100644 --- a/pages/linux/useradd.md +++ b/pages/linux/useradd.md @@ -1,24 +1,33 @@ # useradd > Create a new user. +> See also: `users`, `userdel`, `usermod`. > More information: . -- Create new user: +- Create a new user: -`useradd {{name}}` +`sudo useradd {{username}}` -- Create new user with a default home directory: +- Create a new user with the specified user id: -`useradd --create-home {{name}}` +`sudo useradd --uid {{id}} {{username}}` -- Create new user with specified shell: +- Create a new user with the specified shell: -`useradd --shell {{path/to/shell}} {{name}}` +`sudo useradd --shell {{path/to/shell}} {{username}}` -- Create new user belonging to additional groups (mind the lack of whitespace): +- Create a new user belonging to additional groups (mind the lack of whitespace): -`useradd --groups {{group1,group2}} {{name}}` +`sudo useradd --groups {{group1,group2,...}} {{username}}` -- Create new system user without a home directory: +- Create a new user with the default home directory: -`useradd --no-create-home --system {{name}}` +`sudo useradd --create-home {{username}}` + +- Create a new user with the home directory filled by template directory files: + +`sudo useradd --skel {{path/to/template_directory}} --create-home {{username}}` + +- Create a new system user without the home directory: + +`sudo useradd --system {{username}}` diff --git a/pages/linux/userdel.md b/pages/linux/userdel.md index 9041ce63831e3d..89763c9849f651 100644 --- a/pages/linux/userdel.md +++ b/pages/linux/userdel.md @@ -1,21 +1,17 @@ # userdel > Remove a user account or remove a user from a group. -> Note: all commands must be executed as root. +> See also: `users`, `useradd`, `usermod`. > More information: . - Remove a user: -`userdel {{name}}` +`sudo userdel {{username}}` -- Remove a user along with their home directory and mail spool: - -`userdel --remove {{name}}` - -- Remove a user from a group: +- Remove a user in other root directory: -`userdel {{name}} {{group}}` +`sudo userdel --root {{path/to/other/root}} {{username}}` -- Remove a user in other root directory: +- Remove a user along with the home directory and mail spool: -`userdel --root {{path/to/other/root}} {{name}}` +`sudo userdel --remove {{username}}` diff --git a/pages/linux/usermod.md b/pages/linux/usermod.md index 41d2a35e296f62..a712fec299a42f 100644 --- a/pages/linux/usermod.md +++ b/pages/linux/usermod.md @@ -1,16 +1,25 @@ # usermod > Modifies a user account. +> See also: `users`, `useradd`, `userdel`. > More information: . -- Change a user's name: +- Change a username: -`usermod -l {{newname}} {{user}}` +`sudo usermod --login {{new_username}} {{username}}` -- Add user to supplementary groups (mind the whitespace): +- Change a user id: -`usermod -a -G {{group1,group2}} {{user}}` +`sudo usermod --uid {{id}} {{username}}` -- Create a new home directory for a user and move their files to it: +- Change a user shell: -`usermod -m -d {{path/to/home}} {{user}}` +`sudo usermod --shell {{path/to/shell}} {{username}}` + +- Add a user to supplementary groups (mind the lack of whitespace): + +`sudo usermod --append --groups {{group1,group2,...}} {{username}}` + +- Change a user home directory: + +`sudo usermod --move-home --home {{path/to/new_home}} {{username}}` diff --git a/pages/linux/utmpdump.md b/pages/linux/utmpdump.md index b264cb9487db97..eb7f3c2e344ba2 100644 --- a/pages/linux/utmpdump.md +++ b/pages/linux/utmpdump.md @@ -1,6 +1,7 @@ # utmpdump > Dump and load btmp, utmp and wtmp accounting files. +> More information: . - Dump the `/var/log/wtmp` file to the standard output as plain text: diff --git a/pages/linux/uuid.md b/pages/linux/uuid.md new file mode 100644 index 00000000000000..c450c957ca9c03 --- /dev/null +++ b/pages/linux/uuid.md @@ -0,0 +1,33 @@ +# uuid + +> Generate and decode Universally Unique Identifiers (UUID). +> See also `uuidgen`. +> More information: . + +- Generate a UUIDv1 (based on time and system's hardware address, if present): + +`uuid` + +- Generate a UUIDv4 (based on random data): + +`uuid -v {{4}}` + +- Generate multiple UUIDv4 identifiers at once: + +`uuid -v {{4}} -n {{number_of_uuids}}` + +- Generate a UUIDv4 and specify the output format: + +`uuid -v {{4}} -F {{BIN|STR|SIV}}` + +- Generate a UUIDv4 and write the output to a file: + +`uuid -v {{4}} -o {{path/to/file}}` + +- Generate a UUIDv5 (based on the supplied object name) with a specified namespace prefix: + +`uuid -v {{5}} ns:{{DNS|URL|OID|X500}} {{object_name}}` + +- Decode a given UUID: + +`uuid -d {{uuid}}` diff --git a/pages/linux/uuidd.md b/pages/linux/uuidd.md new file mode 100644 index 00000000000000..cf68cdeac27890 --- /dev/null +++ b/pages/linux/uuidd.md @@ -0,0 +1,16 @@ +# uuidd + +> Daemon for generating UUIDs. +> More information: . + +- Generate a random UUID: + +`uuidd --random` + +- Generate a bulk number of random UUIDs: + +`uuidd --random --uuids {{number_of_uuids}}` + +- Generate a time-based UUID, based on the current time and MAC address of the system: + +`uuidd --time` diff --git a/pages/linux/uuidgen.md b/pages/linux/uuidgen.md index 4603c48ab2d6b1..e1679eca2e1299 100644 --- a/pages/linux/uuidgen.md +++ b/pages/linux/uuidgen.md @@ -1,15 +1,17 @@ # uuidgen > Generate unique identifiers (UUIDs). +> See also `uuid`. +> More information: . -- Create a random UUID: +- Create a random UUIDv4: `uuidgen --random` -- Create a UUID based on the current time: +- Create a UUIDv1 based on the current time: `uuidgen --time` -- Create a UUID based on the hash of a URL: +- Create a UUIDv5 of the name with a specified namespace prefix: -`uuidgen --sha1 --namespace {{@url}} --name {{object_name}}` +`uuidgen --sha1 --namespace {{@dns|@url|@oid|@x500}} --name {{object_name}}` diff --git a/pages/linux/uvcdynctrl.md b/pages/linux/uvcdynctrl.md index b1c70d014a6f89..00bb2e8ef7ad4e 100644 --- a/pages/linux/uvcdynctrl.md +++ b/pages/linux/uvcdynctrl.md @@ -1,6 +1,7 @@ # uvcdynctrl -> A libwebcam command line tool to manage dynamic controls in uvcvideo. +> A libwebcam command-line tool to manage dynamic controls in uvcvideo. +> More information: . - List all available cameras: diff --git a/pages/linux/v4l2-ctl.md b/pages/linux/v4l2-ctl.md new file mode 100644 index 00000000000000..5cf4308fe0c164 --- /dev/null +++ b/pages/linux/v4l2-ctl.md @@ -0,0 +1,32 @@ +# v4l2-ctl + +> Control video devices. +> More information: . + +- List all video devices: + +`v4l2-ctl --list-devices` + +- List supported video formats and resolutions of default video device `/dev/video0`: + +`v4l2-ctl --list-formats-ext` + +- List supported video formats and resolutions of a specific video device: + +`v4l2-ctl --list-formats-ext --device {{path/to/video_device}}` + +- Get all details of a video device: + +`v4l2-ctl --all --device {{path/to/video_device}}` + +- Capture a JPEG photo with a specific resolution from video device: + +`v4l2-ctl --device {{path/to/video_device}} --set-fmt-video=width={{width}},height={{height}},pixelformat=MJPG --stream-mmap --stream-to={{path/to/output.jpg}} --stream-count=1` + +- Capture a raw video stream from video device: + +`v4l2-ctl --device {{path/to/video_device}} --set-fmt-video=width={{width}},height={{height}},pixelformat={{format}} --stream-mmap --stream-to={{path/to/output}} --stream-count={{number_of_frames_to_capture}}` + +- List all video device's controls and their values: + +`v4l2-ctl --list-ctrls --device {{/path/to/video_device}}` diff --git a/pages/linux/vcgencmd.md b/pages/linux/vcgencmd.md new file mode 100644 index 00000000000000..7ffba1b5df5b29 --- /dev/null +++ b/pages/linux/vcgencmd.md @@ -0,0 +1,28 @@ +# vcgencmd + +> Print system information for a Raspberry Pi. +> More information: . + +- List all available commands: + +`vcgencmd commands` + +- Print the current CPU temperature: + +`vcgencmd measure_temp` + +- Print the current voltage: + +`vcgencmd measure_volts` + +- Print the throttled state of the system as a bit pattern: + +`vcgencmd get_throttled` + +- Print the bootloader config (only available on Raspberry Pi 4 models): + +`vcgencmd bootloader_config` + +- Display Help: + +`vcgencmd --help` diff --git a/pages/linux/vgchange.md b/pages/linux/vgchange.md new file mode 100644 index 00000000000000..e8ad0421e84ef5 --- /dev/null +++ b/pages/linux/vgchange.md @@ -0,0 +1,13 @@ +# vgchange + +> Change the attributes of a Logical Volume Manager (LVM) volume group. +> See also: `lvm`. +> More information: . + +- Change the activation status of logical volumes in all volume groups: + +`sudo vgchange --activate {{y|n}}` + +- Change the activation status of logical volumes in the specified volume group (determine with `vgscan`): + +`sudo vgchange --activate {{y|n}} {{volume_group}}}` diff --git a/pages/linux/vgscan.md b/pages/linux/vgscan.md new file mode 100644 index 00000000000000..b6fa2352c2c947 --- /dev/null +++ b/pages/linux/vgscan.md @@ -0,0 +1,13 @@ +# vgscan + +> Scan for volume groups on all supported Logical Volume Manager (LVM) block devices. +> See also `lvm`, `vgchange`. +> More information: . + +- Scan for volume groups and print information about each group found: + +`sudo vgscan` + +- Scan for volume groups and add the special files in `/dev`, if they don't already exist, needed to access the logical volumes in the found groups: + +`sudo vgscan --mknodes` diff --git a/pages/linux/viewnior.md b/pages/linux/viewnior.md index 31e0926c11d2f8..ae654f533e72ed 100644 --- a/pages/linux/viewnior.md +++ b/pages/linux/viewnior.md @@ -1,6 +1,7 @@ # viewnior > Simple and elegant image viewer. +> More information: . - View an image: diff --git a/pages/linux/vigr.md b/pages/linux/vigr.md new file mode 100644 index 00000000000000..42501799acdda7 --- /dev/null +++ b/pages/linux/vigr.md @@ -0,0 +1,12 @@ +# vigr + +> Edit the group file. +> More information: . + +- Edit the group file: + +`vigr` + +- Display version: + +`vigr --version` diff --git a/pages/linux/virt-manager.md b/pages/linux/virt-manager.md index b1036571042de3..fa88980d7d781f 100644 --- a/pages/linux/virt-manager.md +++ b/pages/linux/virt-manager.md @@ -11,7 +11,7 @@ `virt-manager --connect {{hypervisor_uri}}` -- Don't fork virt-manager process into backgroun on startup: +- Don't fork virt-manager process into background on startup: `virt-manager --no-fork` diff --git a/pages/linux/virt-viewer.md b/pages/linux/virt-viewer.md new file mode 100644 index 00000000000000..dc743141165019 --- /dev/null +++ b/pages/linux/virt-viewer.md @@ -0,0 +1,25 @@ +# virt-viewer + +> Minimal graphical interface for a virtual machine (VM). +> NOTE: 'domain' refers to the name, UUID or ID for the existing VMs (See: tldr virsh). +> More information: . + +- Launch `virt-viewer` with a prompt to select running virtual machines: + +`virt-viewer` + +- Launch `virt-viewer` for a specific virtual machine by ID, UUID or name: + +`virt-viewer "{{domain}}"` + +- Wait for a virtual machine to start and automatically reconnect if it shutdown and restarts: + +`virt-viewer --reconnect --wait "{{domain}}"` + +- Connect to a specific remote virtual machine over TLS: + +`virt-viewer --connect "xen//{{url}}" "{{domain}}"` + +- Connect to a specific remote virtual machine over SSH: + +`virt-viewer --connect "qemu+ssh//{{username}}@{{url}}/system" "{{domain}}"` diff --git a/pages/linux/virt-xml-validate.md b/pages/linux/virt-xml-validate.md new file mode 100644 index 00000000000000..bf474a41362ff4 --- /dev/null +++ b/pages/linux/virt-xml-validate.md @@ -0,0 +1,13 @@ +# virt-xml-validate + +> Validate `libvirt` XML files against a schema. +> If a schema is not specified, the schema is determined by the root element in the XML file. +> More information: . + +- Validate an XML file against a specific schema: + +`virt-xml-validate {{path/to/file.xml}} {{schema}}` + +- Validate the domain XML against the domain schema: + +`virt-xml-validate {{path/to/domain.xml}} domain` diff --git a/pages/linux/virt-xml.md b/pages/linux/virt-xml.md new file mode 100644 index 00000000000000..7cd0a617109eaa --- /dev/null +++ b/pages/linux/virt-xml.md @@ -0,0 +1,29 @@ +# virt-xml + +> 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: . + +- List all the suboptions for a specific option: + +`virt-xml --{{option}}=?` + +- List all the suboptions for disk, network, and boot: + +`virt-xml --disk=? --network=? --boot=?` + +- Edit a value for a specific domain: + +`virt-xml {{domain}} --edit --{{option}} {{suboption}}={{new_value}}` + +- Change the description for a specific domain: + +`virt-xml {{domain}} --edit --metadata description="{{new_description}}"` + +- Enable/Disable the boot device menu for a specific domain: + +`virt-xml {{domain}} --edit --boot bootmenu={{on|off}}` + +- Attach host USB hub to a running VM (See: tldr lsusb): + +`virt-xml {{domain}} --update --add-device --hostdev {{bus}}.{{device}}` diff --git a/pages/linux/vmware-checkvm.md b/pages/linux/vmware-checkvm.md index 681fcbd442c378..904e0bfa4d01c5 100644 --- a/pages/linux/vmware-checkvm.md +++ b/pages/linux/vmware-checkvm.md @@ -1,11 +1,12 @@ # vmware-checkvm -> Checks to see if the current host is a VMWare VM or not. +> Checks to see if the current host is a VMware VM or not. +> More information: . -- Return the current VMWare software version (exit status determines whether the system is a VM or not): +- Return the current VMware software version (exit status determines whether the system is a VM or not): `vmware-checkvm` -- Return the VMWare hardware version: +- Return the VMware hardware version: `vmware-checkvm -h` diff --git a/pages/linux/vncserver.md b/pages/linux/vncserver.md index 22efe53e455684..aaae5725b81a7b 100644 --- a/pages/linux/vncserver.md +++ b/pages/linux/vncserver.md @@ -1,6 +1,7 @@ # vncserver > Launches a VNC (Virtual Network Computing) desktop. +> More information: . - Launch a VNC Server on next available display: diff --git a/pages/linux/vncviewer.md b/pages/linux/vncviewer.md index 6e2817ad2b7616..9c884a746a1cc7 100644 --- a/pages/linux/vncviewer.md +++ b/pages/linux/vncviewer.md @@ -1,6 +1,7 @@ # vncviewer > Launches a VNC (Virtual Network Computing) client. +> More information: . - Launch a VNC client which connects to a host on a given display: diff --git a/pages/linux/vnstat.md b/pages/linux/vnstat.md index c6ceb1ab31f00c..661b4bc6d957fa 100644 --- a/pages/linux/vnstat.md +++ b/pages/linux/vnstat.md @@ -1,6 +1,7 @@ # vnstat > A console-based network traffic monitor. +> More information: . - Display traffic summary for all interfaces: diff --git a/pages/linux/vnstati.md b/pages/linux/vnstati.md new file mode 100644 index 00000000000000..e054815628a261 --- /dev/null +++ b/pages/linux/vnstati.md @@ -0,0 +1,20 @@ +# vnstati + +> PNG image output support for vnStat. +> More information: . + +- Output a summary of the last 2: months, days, and all-time: + +`vnstati --summary --iface {{network_interface}} --output {{path/to/output.png}}` + +- Output the 10 most traffic-intensive days of all time: + +`vnstati --top10 --iface {{network_interface}} --output {{path/to/output.png}}` + +- Output monthly traffic statistics from the last 12 months: + +`vnstati --months --iface {{network_interface}} --output {{path/to/output.png}}` + +- Output hourly traffic statistics from the last 24 hours: + +`vnstati --hours --iface {{network_interface}} --output {{path/to/output.png}}` diff --git a/pages/linux/vpnc.md b/pages/linux/vpnc.md index a632303aa9db56..2e4dc4e354020c 100644 --- a/pages/linux/vpnc.md +++ b/pages/linux/vpnc.md @@ -1,6 +1,7 @@ # vpnc > A VPN client for the Cisco 3000 VPN Concentrator. +> More information: . - Connect with a defined configuration file: diff --git a/pages/linux/vso.md b/pages/linux/vso.md new file mode 100644 index 00000000000000..e41e55f5baba82 --- /dev/null +++ b/pages/linux/vso.md @@ -0,0 +1,36 @@ +# vso + +> Utility to perform maintenance tasks on Vanilla OS. +> More information: . + +- Trigger a system update immediately: + +`sudo vso trigger-update --now` + +- Check for package updates and list them: + +`sudo vso update-check` + +- Create an automated task upon an application's launch: + +`vso create-task --name "{{string}}" --description "{{string}}" --{{command|on-condition-command}} "{{command}}" --on-process {{integer}}` + +- Create an automated task to execute during boot: + +`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --on-boot` + +- Create an automated task to execute during specific battery states: + +`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-low-battery|on-charge|on-battery|on-full-battery}}` + +- Create an automated task which asks for a confirmation before execution: + +`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --need-confirm` + +- Create an automated task to execute during network connection or disconnection: + +`vso create-task --name "{{string}}" --description "{{string}}" --command "{{command}}" --{{on-network|on-disconnect}}` + +- Delete an automated task: + +`vso delete-task "{{task}}"` diff --git a/pages/linux/w.md b/pages/linux/w.md index 7abbb0a1419903..e803741708f6e3 100644 --- a/pages/linux/w.md +++ b/pages/linux/w.md @@ -9,7 +9,7 @@ - Display information about a specific user: -`w {{user}}` +`w {{username}}` - Display information without including the header: diff --git a/pages/linux/wajig.md b/pages/linux/wajig.md new file mode 100644 index 00000000000000..3d2799302a3f6e --- /dev/null +++ b/pages/linux/wajig.md @@ -0,0 +1,36 @@ +# wajig + +> Simplified all-in-one-place system support tool for Debian-based systems. +> More information: . + +- Update the list of available packages and versions: + +`wajig update` + +- Install a package, or update it to the latest available version: + +`wajig install {{package}}` + +- Remove a package and its configuration files: + +`wajig purge {{package}}` + +- Perform an update and then a dist-upgrade: + +`wajig daily-upgrade` + +- Display the sizes of installed packages: + +`wajig sizes` + +- List the version and distribution for all installed packages: + +`wajig versions` + +- List versions of upgradable packages: + +`wajig toupgrade` + +- Display packages which have some form of dependency on the given package: + +`wajig dependents {{package}}` diff --git a/pages/linux/wal-telegram.md b/pages/linux/wal-telegram.md new file mode 100644 index 00000000000000..68f9becb3ef0fa --- /dev/null +++ b/pages/linux/wal-telegram.md @@ -0,0 +1,28 @@ +# wal-telegram + +> Generates themes for Telegram based the colors generated by pywal/wal. +> More information: . + +- Generate with wal's palette and the current wallpaper (feh only): + +`wal-telegram` + +- Generate with wal's palette and a specified background image: + +`wal-telegram --background={{path/to/image}}` + +- Generate with wal's palette and a colored background based on the palette: + +`wal-telegram --tiled` + +- Apply a gaussian blur on the background image: + +`wal-telegram -g` + +- Specify a location for the generated theme (default is `$XDG_CACHE_HOME/wal-telegram` or `~/.cache/wal-telegram`): + +`wal-telegram --destination={{path/to/destination}}` + +- Restart the telegram app after generation: + +`wal-telegram --restart` diff --git a/pages/linux/wall.md b/pages/linux/wall.md index 65ac05a9e529bb..c0586b6da7a711 100644 --- a/pages/linux/wall.md +++ b/pages/linux/wall.md @@ -1,10 +1,15 @@ # wall > Write a message on the terminals of users currently logged in. +> More information: . - 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: @@ -12,4 +17,4 @@ - Send a message with timeout (default 300): -`wall -t {{seconds}} {{file}}` +`wall --timeout {{seconds}} {{file}}` diff --git a/pages/linux/warpd.md b/pages/linux/warpd.md new file mode 100644 index 00000000000000..a278464314fafb --- /dev/null +++ b/pages/linux/warpd.md @@ -0,0 +1,32 @@ +# warpd + +> A modal keyboard driven pointer manipulation program. +> More information: . + +- Run warpd in normal mode: + +`warpd --normal` + +- Run warpd in hint mode: + +`warpd --hint` + +- Move cursor left: + +`h` + +- Move cursor down: + +`j` + +- Move cursor up: + +`k` + +- Move cursor right: + +`l` + +- Emulate left click: + +`m` diff --git a/pages/linux/watch.md b/pages/linux/watch.md index f5a1e4958b82a8..63e767157d7074 100644 --- a/pages/linux/watch.md +++ b/pages/linux/watch.md @@ -1,6 +1,7 @@ # watch > Execute a command repeatedly, and monitor the output in full-screen mode. +> More information: . - Monitor files in the current directory: @@ -13,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/wdctl.md b/pages/linux/wdctl.md new file mode 100644 index 00000000000000..3ea49c18f25711 --- /dev/null +++ b/pages/linux/wdctl.md @@ -0,0 +1,16 @@ +# wdctl + +> Show the hardware watchdog status. +> More information: . + +- Display the watchdog status: + +`wdctl` + +- Display the watchdog status in a single line in key-value pairs: + +`wdctl --oneline` + +- Display only specific watchdog flags (list is driver specific): + +`wdctl --flags {{flag_list}}` diff --git a/pages/linux/wg.md b/pages/linux/wg.md index b8677d3d4df3e6..a3cfbc5658b48f 100644 --- a/pages/linux/wg.md +++ b/pages/linux/wg.md @@ -5,16 +5,20 @@ - Check status of currently active interfaces: -`sudo wg` +`wg` -- Print a new private key: +- Generate a new private key: `wg genkey` -- Print a new public key: +- Generate a public key from a private key: -`echo {{private_key}} | wg pubkey` +`wg pubkey < {{path/to/private_key}} > {{path/to/public_key}}` - Generate a public and private key: -`wg genkey | tee {{privatekey.txt}} | wg pubkey > {{publickey.txt}}` +`wg genkey | tee {{path/to/private_key}} | wg pubkey > {{path/to/public_key}}` + +- Show the current configuration of a wireguard interface: + +`wg showconf {{wg0}}` diff --git a/pages/linux/whatis.md b/pages/linux/whatis.md index 762275952280e1..3593066a712f76 100644 --- a/pages/linux/whatis.md +++ b/pages/linux/whatis.md @@ -1,6 +1,7 @@ # whatis > Display one-line descriptions from manual pages. +> More information: . - Display a description from a man page: @@ -17,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/whereis.md b/pages/linux/whereis.md deleted file mode 100644 index 0c7df331883b86..00000000000000 --- a/pages/linux/whereis.md +++ /dev/null @@ -1,27 +0,0 @@ -# whereis - -> Locate the binary, source, and manual page files for a command. - -- Locate binary, source and man pages for ssh: - -`whereis {{ssh}}` - -- Locate binary and man pages for ls: - -`whereis -bm {{ls}}` - -- Locate source of gcc and man pages for Git: - -`whereis -s {{gcc}} -m {{git}}` - -- Locate binaries for gcc in `/usr/bin/` only: - -`whereis -b -B {{/usr/bin/}} -f {{gcc}}` - -- Locate unusual binaries (those that have more or less than one binary on the system): - -`whereis -u *` - -- Locate binaries that have unusual manual entries (binaries that have more or less than one manual installed): - -`whereis -u -m *` diff --git a/pages/linux/whiptail.md b/pages/linux/whiptail.md index cf3f9843edc4bd..e01815999871d5 100644 --- a/pages/linux/whiptail.md +++ b/pages/linux/whiptail.md @@ -1,6 +1,7 @@ # whiptail > Display text-based dialog boxes from shell scripts. +> More information: . - Display a simple message: diff --git a/pages/linux/wifi-menu.md b/pages/linux/wifi-menu.md new file mode 100644 index 00000000000000..545d8df13f97c6 --- /dev/null +++ b/pages/linux/wifi-menu.md @@ -0,0 +1,16 @@ +# wifi-menu + +> Interactively connect to a wireless network. +> More information: . + +- Set up a wireless connection interactively: + +`wifi-menu` + +- Interactively set up a connection to a network and obscure the password: + +`wifi-menu --obscure` + +- Display help: + +`wifi-menu --help` diff --git a/pages/linux/wine.md b/pages/linux/wine.md index a658b408b7f2a5..f6e85e22bc958d 100644 --- a/pages/linux/wine.md +++ b/pages/linux/wine.md @@ -1,20 +1,28 @@ # wine -> Run Windows programs on Unix. +> Run Windows executables on Unix-based systems. > More information: . -- Run `ipconfig.exe` program: +- Run a specific program inside the `wine` environment: -`wine {{ipconfig}} {{/all}}` +`wine {{command}}` -- Run `cmd.exe` in background: +- Run a specific program in background: -`wine start {{cmd}}` +`wine start {{command}}` -- Run Windows-like Package Manager: +- Install/uninstall an MSI package: -`wine uninstaller` +`wine msiexec /{{i|x}} {{path/to/package.msi}}` -- Install MSI packages: +- Run `File Explorer`, `Notepad`, or `WordPad`: -`wine msiexec /i {{package}}` +`wine {{explorer|notepad|write}}` + +- Run `Registry Editor`, `Control Panel`, or `Task Manager`: + +`wine {{regedit|control|taskmgr}}` + +- Run the configuration tool: + +`wine winecfg` diff --git a/pages/linux/winetricks.md b/pages/linux/winetricks.md index 55ef8930a832a1..182f6788be32d3 100644 --- a/pages/linux/winetricks.md +++ b/pages/linux/winetricks.md @@ -7,7 +7,7 @@ `winetricks` -- Specify a custom Wine directory to run winetricks in: +- Specify a custom Wine directory to run Winetricks in: `WINEPREFIX={{path/to/wine_directory}} winetricks` diff --git a/pages/linux/wipefs.md b/pages/linux/wipefs.md index b958b9f772d987..a1955e44d87fca 100644 --- a/pages/linux/wipefs.md +++ b/pages/linux/wipefs.md @@ -1,15 +1,20 @@ # wipefs > Wipe filesystem, raid, or partition-table signatures from a device. +> More information: . - Display signatures for specified device: `sudo wipefs {{/dev/sdX}}` -- Wipe all available signatures for specified device: +- Wipe all available signature types for a specific device with no recursion into partitions: `sudo wipefs --all {{/dev/sdX}}` +- Wipe all available signature types for the device and partitions using a glob pattern: + +`sudo wipefs --all {{/dev/sdX}}*` + - Perform dry run: `sudo wipefs --all --no-act {{/dev/sdX}}` diff --git a/pages/linux/wl-copy.md b/pages/linux/wl-copy.md new file mode 100644 index 00000000000000..2f3891ae99c05f --- /dev/null +++ b/pages/linux/wl-copy.md @@ -0,0 +1,21 @@ +# wl-copy + +> Wayland clipboard manipulation tool. +> See also: `wl-paste`. +> More information: . + +- Copy the text to the clipboard: + +`wl-copy "{{text}}"` + +- Pipe the command (`ls`) output to the clipboard: + +`{{ls}} | wl-copy` + +- Copy for only one paste and then clear it: + +`wl-copy --paste-once "{{text}}"` + +- Clear the clipboard: + +`wl-copy --clear` diff --git a/pages/linux/wl-paste.md b/pages/linux/wl-paste.md new file mode 100644 index 00000000000000..ff589dd5bf40c6 --- /dev/null +++ b/pages/linux/wl-paste.md @@ -0,0 +1,17 @@ +# wl-paste + +> Tool to access data stored in the clipboard for Wayland. +> See also: `wl-copy`. +> More information: . + +- Paste the contents of the clipboard: + +`wl-paste` + +- Write the contents of the clipboard to a file: + +`wl-paste > {{path/to/file}}` + +- Pipe the contents of the clipboard to a command: + +`wl-paste | {{command}}` diff --git a/pages/linux/wmctrl.md b/pages/linux/wmctrl.md index d320a08941a2b5..a6fe9467f6c235 100644 --- a/pages/linux/wmctrl.md +++ b/pages/linux/wmctrl.md @@ -1,6 +1,7 @@ # wmctrl > CLI for X Window Manager. +> More information: . - List all windows, managed by the window manager: diff --git a/pages/linux/wodim.md b/pages/linux/wodim.md index a82a4910fd0c81..c6372403ef3b35 100644 --- a/pages/linux/wodim.md +++ b/pages/linux/wodim.md @@ -2,6 +2,7 @@ > Command (aliased as `cdrecord` on some systems) for recording data to CDs or DVDs. > Some invocations of wodim can cause destructive actions, such as erasing all the data on a disc. +> More information: . - Display optical drives available to `wodim`: diff --git a/pages/linux/woeusb.md b/pages/linux/woeusb.md new file mode 100644 index 00000000000000..8cd0589674265f --- /dev/null +++ b/pages/linux/woeusb.md @@ -0,0 +1,12 @@ +# woeusb + +> Windows media creation tool. +> More information: . + +- Format a USB then create a bootable Windows installation drive: + +`woeusb --device {{path/to/windows.iso}} {{/dev/sdX}}` + +- Copy Windows files to an existing partition of a USB storage device and make it bootable, without erasing the current data: + +`woeusb --partition {{path/to/windows.iso}} {{/dev/sdXN}}` diff --git a/pages/linux/wpa_cli.md b/pages/linux/wpa_cli.md index b0ceaeda4a8023..51efff50963178 100644 --- a/pages/linux/wpa_cli.md +++ b/pages/linux/wpa_cli.md @@ -1,6 +1,7 @@ # wpa_cli > Add and configure wlan interfaces. +> More information: . - Scan for available networks: diff --git a/pages/linux/wpa_passphrase.md b/pages/linux/wpa_passphrase.md index 37836bb8ccaefa..1e686531410369 100644 --- a/pages/linux/wpa_passphrase.md +++ b/pages/linux/wpa_passphrase.md @@ -1,8 +1,9 @@ # wpa_passphrase > Generate a WPA-PSK key from an ASCII passphrase for a given SSID. +> More information: . -- Compute and display the WPA-PSK key for a given SSID reading the passphrase from stdin: +- Compute and display the WPA-PSK key for a given SSID reading the passphrase from `stdin`: `wpa_passphrase {{SSID}}` diff --git a/pages/linux/x11vnc.md b/pages/linux/x11vnc.md index cf115b29554fc8..7434c8667ac591 100644 --- a/pages/linux/x11vnc.md +++ b/pages/linux/x11vnc.md @@ -2,6 +2,7 @@ > A VNC server that will enable VNC on an existing display server. > By default, the server will automatically terminate once all clients disconnect from it. +> More information: . - Launch a VNC server that allows multiple clients to connect: diff --git a/pages/linux/xar.md b/pages/linux/xar.md deleted file mode 100644 index 9f9eb37acd6685..00000000000000 --- a/pages/linux/xar.md +++ /dev/null @@ -1,15 +0,0 @@ -# xar - -> Manage .xar archives. - -- Create a xar archive of all files in a given directory: - -`xar -cf {{archive.xar}} {{path/to/directory}}` - -- List the contents of a given xar archive: - -`xar -tf {{archive.xar}}` - -- Extract the contents of a given xar archive to the current directory: - -`xar -xf {{archive.xar}}` diff --git a/pages/linux/xauth.md b/pages/linux/xauth.md new file mode 100644 index 00000000000000..b862364d9c22dc --- /dev/null +++ b/pages/linux/xauth.md @@ -0,0 +1,36 @@ +# xauth + +> Edit and display the authorization information used in connecting to the X server. +> More information: . + +- Start interactive mode with a specific authority file (defaults to `~/.Xauthority`): + +`xauth -f {{path/to/file}}` + +- Display information about the authority file: + +`xauth info` + +- Display authorization entries for all the displays: + +`xauth list` + +- Add an authorization for a specific display: + +`xauth add {{display_name}} {{protocol_name}} {{key}}` + +- Remove the authorization for a specific display: + +`xauth remove {{display_name}}` + +- Print the authorization entry for the current display to stdout: + +`xauth extract - $DISPLAY` + +- Merge the authorization entries from a specific file into the authorization database: + +`cat {{path/to/file}} | xauth merge -` + +- Display help: + +`xauth --help` diff --git a/pages/linux/xbps.md b/pages/linux/xbps.md index 85c6acca76ecf2..ad57f1fecd5ee9 100644 --- a/pages/linux/xbps.md +++ b/pages/linux/xbps.md @@ -5,7 +5,7 @@ - Install packages and synchronize them with the remote repository: -`xbps-install --synchronize {{package_name1}} {{package_name2}}` +`xbps-install --sync {{package_name1}} {{package_name2}}` - Search for a package in the remote repository: @@ -21,7 +21,7 @@ - Synchronize your repository databases and update your system and dependencies: -`xbps-install --synchronize -u` +`xbps-install --sync --update` - Remove packages that were installed as dependencies and aren't currently needed: diff --git a/pages/linux/xclip.md b/pages/linux/xclip.md index 4dd5fb42cb456e..a8e3cb4f6f1ffe 100644 --- a/pages/linux/xclip.md +++ b/pages/linux/xclip.md @@ -2,6 +2,7 @@ > X11 clipboard manipulation tool, similar to `xsel`. > Handles the X primary and secondary selections, plus the system clipboard (`Ctrl + C`/`Ctrl + V`). +> More information: . - Copy the output from a command to the X11 primary selection area (clipboard): @@ -19,7 +20,7 @@ `xclip -sel clip {{input_file.txt}}` -- Copy the contents of a PNG image into the system clipboard (can be pasted in other programs correctly): +- Copy the contents of a PNG into the system clipboard (can be pasted in other programs correctly): `xclip -sel clip -t image/png {{input_file.png}}` diff --git a/pages/linux/xclock.md b/pages/linux/xclock.md index 239bffea99d110..540de88c76cb7a 100644 --- a/pages/linux/xclock.md +++ b/pages/linux/xclock.md @@ -1,6 +1,7 @@ # xclock > Display the time in analog or digital form. +> More information: . - Display an analog clock: diff --git a/pages/linux/xcowsay.md b/pages/linux/xcowsay.md new file mode 100644 index 00000000000000..165f1ebc6dfdb0 --- /dev/null +++ b/pages/linux/xcowsay.md @@ -0,0 +1,29 @@ +# xcowsay + +> Display a cute cow and message on your Linux desktop. +> The cow is displayed for either a fixed amount of time, or an amount of time calculated from the size of the text. Click on the cow to dismiss it immediately. +> More information: . + +- Display a cow saying "hello, world": + +`xcowsay "{{hello, world}}"` + +- Display a cow with output from another command: + +`ls | xcowsay` + +- Display a cow at the specified X and Y coordinates: + +`xcowsay --at={{X}},{{Y}}` + +- Display a different sized cow: + +`xcowsay --cow-size={{small|med|large}}` + +- Display a thought bubble instead of a speech bubble: + +`xcowsay --think` + +- Display a different image instead of the default cow: + +`xcowsay --image={{path/to/file}}` diff --git a/pages/linux/xcursorgen.md b/pages/linux/xcursorgen.md index 2c7bfba21fef19..9f301bd21f0fd6 100644 --- a/pages/linux/xcursorgen.md +++ b/pages/linux/xcursorgen.md @@ -1,8 +1,8 @@ # xcursorgen -> Create an X cursor file from a collection of PNG images. +> Create an X cursor file from a collection of PNGs. > If `--prefix` is omitted, the image files must be located in the current working directory. -> More information: . +> More information: . - Create an X cursor file using a config file: @@ -12,6 +12,6 @@ `xcursorgen --prefix {{path/to/image_directory/}} {{path/to/config.cursor}} {{path/to/output_file}}` -- Create an X cursor file using a config file and write the output to stdout: +- Create an X cursor file using a config file and write the output to `stdout`: `xcursorgen {{path/to/config.cursor}}` diff --git a/pages/linux/xdg-desktop-menu.md b/pages/linux/xdg-desktop-menu.md new file mode 100644 index 00000000000000..fa1670f46341be --- /dev/null +++ b/pages/linux/xdg-desktop-menu.md @@ -0,0 +1,20 @@ +# xdg-desktop-menu + +> Command-line tool for installing or uninstalling desktop menu items. +> More information: . + +- Install an application to the desktop menu system: + +`xdg-desktop-menu install {{path/to/file.desktop}}` + +- Install an application to the desktop menu system with the vendor prefix check disabled: + +`xdg-desktop-menu install --novendor {{path/to/file.desktop}}` + +- Uninstall an application from the desktop menu system: + +`xdg-desktop-menu uninstall {{path/to/file.desktop}}` + +- Force an update of the desktop menu system: + +`xdg-desktop-menu forceupdate --mode {{user|system}}` diff --git a/pages/linux/xdg-mime.md b/pages/linux/xdg-mime.md index 7017f00cf9ed7f..97952cfd17da56 100644 --- a/pages/linux/xdg-mime.md +++ b/pages/linux/xdg-mime.md @@ -7,7 +7,7 @@ `xdg-mime query filetype {{path/to/file}}` -- Display the default application for opening PNG images: +- Display the default application for opening PNGs: `xdg-mime query default {{image/png}}` diff --git a/pages/linux/xdg-open.md b/pages/linux/xdg-open.md index a7ad4df9c3ab64..8be7c748c577ae 100644 --- a/pages/linux/xdg-open.md +++ b/pages/linux/xdg-open.md @@ -1,13 +1,13 @@ # xdg-open > Opens a file or URL in the user's preferred application. -> More information: . +> More information: . - Open the current directory in the default file explorer: `xdg-open .` -- Open an URL in the default browser: +- Open a URL in the default browser: `xdg-open {{https://example.com}}` diff --git a/pages/linux/xdg-settings.md b/pages/linux/xdg-settings.md new file mode 100644 index 00000000000000..9fd1b3d64166cb --- /dev/null +++ b/pages/linux/xdg-settings.md @@ -0,0 +1,24 @@ +# xdg-settings + +> Manage settings of XDG-compatible desktop environments. +> More information: . + +- Print the default web browser: + +`xdg-settings get {{default-web-browser}}` + +- Set the default web browser to Firefox: + +`xdg-settings set {{default-web-browser}} {{firefox.desktop}}` + +- Set the default mail URL scheme handler to Evolution: + +`xdg-settings set {{default-url-scheme-handler}} {{mailto}} {{evolution.desktop}}` + +- Set the default PDF document viewer: + +`xdg-settings set {{pdf-viewer.desktop}}` + +- Display help: + +`xdg-settings --help` diff --git a/pages/common/xdg-user-dirs-update.md b/pages/linux/xdg-user-dirs-update.md similarity index 80% rename from pages/common/xdg-user-dirs-update.md rename to pages/linux/xdg-user-dirs-update.md index 801ca3a0efdf45..aee39b32de803e 100644 --- a/pages/common/xdg-user-dirs-update.md +++ b/pages/linux/xdg-user-dirs-update.md @@ -1,7 +1,7 @@ # xdg-user-dirs-update > Update XDG user directories. -> More information: . +> More information: . - Change XDG's DESKTOP directory to the specified directory (must be absolute): diff --git a/pages/linux/xdotool.md b/pages/linux/xdotool.md index dcb350a8d878d9..c830d74b4c7259 100644 --- a/pages/linux/xdotool.md +++ b/pages/linux/xdotool.md @@ -1,6 +1,7 @@ # xdotool -> Command line automation for X11. +> Command-line automation for X11. +> More information: . - Retrieve the X-Windows window ID of the running Firefox window(s): @@ -10,11 +11,11 @@ `xdotool click {{3}}` -- Get the id of the currently active window: +- Get the ID of the currently active window: `xdotool getactivewindow` -- Focus on the window with id of 12345: +- Focus on the window with ID of 12345: `xdotool windowfocus --sync {{12345}}` diff --git a/pages/linux/xed.md b/pages/linux/xed.md new file mode 100644 index 00000000000000..b1329dcb9d4392 --- /dev/null +++ b/pages/linux/xed.md @@ -0,0 +1,24 @@ +# xed + +> Edit files in Cinnamon desktop environment. +> More information: . + +- Start the editor: + +`xed` + +- Open specific files: + +`xed {{path/to/file1 path/to/file2 ...}}` + +- Open files using a specific encoding: + +`xed --encoding {{WINDOWS-1252}} {{path/to/file1 path/to/file2 ...}}` + +- Print all supported encodings: + +`xed --list-encodings` + +- Open a file and go to a specific line: + +`xed +{{10}} {{path/to/file}}` diff --git a/pages/linux/xeyes.md b/pages/linux/xeyes.md index 315bebeb67bf54..6574e10fcef52e 100644 --- a/pages/linux/xeyes.md +++ b/pages/linux/xeyes.md @@ -1,6 +1,7 @@ # xeyes > Display eyes on the screen that follow the mouse cursor. +> More information: . - Launch xeyes on the local machine's default display: diff --git a/pages/linux/xfce4-screenshooter.md b/pages/linux/xfce4-screenshooter.md index f62c6ad87d663e..2584067e736828 100644 --- a/pages/linux/xfce4-screenshooter.md +++ b/pages/linux/xfce4-screenshooter.md @@ -1,6 +1,7 @@ # xfce4-screenshooter > The XFCE4 screenshot tool. +> More information: . - Launch the screenshooter GUI: diff --git a/pages/linux/xfce4-terminal.md b/pages/linux/xfce4-terminal.md index e1d25d5304f3ac..719c27e306f39a 100644 --- a/pages/linux/xfce4-terminal.md +++ b/pages/linux/xfce4-terminal.md @@ -1,6 +1,7 @@ # xfce4-terminal > The XFCE4 terminal emulator. +> More information: . - Open a new terminal window: diff --git a/pages/linux/xfreerdp.md b/pages/linux/xfreerdp.md new file mode 100644 index 00000000000000..792eb33a52ea1f --- /dev/null +++ b/pages/linux/xfreerdp.md @@ -0,0 +1,24 @@ +# xfreerdp + +> Free Remote Desktop Protocol implementation. +> More information: . + +- Connect to a FreeRDP server: + +`xfreerdp /u:{{username}} /p:{{password}} /v:{{ip_address}}` + +- Connect to a FreeRDP server and activate audio output redirection using `sys:alsa` device: + +`xfreerdp /u:{{username}} /p:{{password}} /v:{{ip_address}} /sound:{{sys:alsa}}` + +- Connect to a FreeRDP server with dynamic resolution: + +`xfreerdp /v:{{ip_address}} /u:{{username}} /p:{{password}} /dynamic-resolution` + +- Connect to a FreeRDP server with clipboard redirection: + +`xfreerdp /v:{{ip_address}} /u:{{username}} /p:{{password}} +clipboard` + +- Connect to a FreeRDP server ignoring any certificate checks: + +`xfreerdp /v:{{ip_address}} /u:{{username}} /p:{{password}} /cert:ignore` diff --git a/pages/linux/xinput.md b/pages/linux/xinput.md index 54f59cfe3bf56d..51aa40d001a543 100644 --- a/pages/linux/xinput.md +++ b/pages/linux/xinput.md @@ -1,6 +1,7 @@ # xinput > List available input devices, query information about a device and change input device settings. +> More information: . - List all input devices: @@ -21,3 +22,11 @@ - Reattach an input as slave to a master: `xinput reattach {{id}} {{master_id}}` + +- List settings of an input device: + +`xinput list-props {{id}}` + +- Change a setting of an input device: + +`xinput set-prop {{id}} {{setting_id}} {{value}}` diff --git a/pages/linux/xman.md b/pages/linux/xman.md index 8de01da1b651e3..12f4a0ad9ad39b 100644 --- a/pages/linux/xman.md +++ b/pages/linux/xman.md @@ -1,6 +1,7 @@ # xman > Manual page viewer for X Window System. +> More information: . - Start xman in three-button window: diff --git a/pages/linux/xmodmap.md b/pages/linux/xmodmap.md new file mode 100644 index 00000000000000..d1a518c1b48069 --- /dev/null +++ b/pages/linux/xmodmap.md @@ -0,0 +1,20 @@ +# xmodmap + +> Utility for modifying keymaps and pointer button mappings in X. +> More information: . + +- Swap left-click and right-click on the pointer: + +`xmodmap -e 'pointer = 3 2 1'` + +- Reassign a key on the keyboard to another key: + +`xmodmap -e 'keycode {{keycode}} = {{keyname}}'` + +- Disable a key on the keyboard: + +`xmodmap -e 'keycode {{keycode}} ='` + +- Execute all xmodmap expressions in the specified file: + +`xmodmap {{path/to/file}}` diff --git a/pages/linux/xmount.md b/pages/linux/xmount.md new file mode 100644 index 00000000000000..daa1e1122dd786 --- /dev/null +++ b/pages/linux/xmount.md @@ -0,0 +1,17 @@ +# xmount + +> Convert on-the-fly between multiple input and output hard disk image types with optional write cache support. +> Creates a virtual file system using FUSE (Filesystem in Userspace) that contains a virtual representation of the input image. +> More information: . + +- Mount a `.raw` image file into a DMG container file: + +`xmount --in {{raw}} {{path/to/image.dd}} --out {{dmg}} {{mountpoint}}` + +- Mount an EWF image file with write-cache support into a VHD file to boot from: + +`xmount --cache {{path/to/cache.ovl}} --in {{ewf}} {{path/to/image.E??}} --out {{vhd}} {{mountpoint}}` + +- Mount the first partition at sector 2048 into a new `.raw` image file: + +`xmount --offset {{2048}} --in {{raw}} {{path/to/image.dd}} --out {{raw}} {{mountpoint}}` diff --git a/pages/linux/xrandr.md b/pages/linux/xrandr.md index e2ac39f2cb1172..cd14c4f89b8075 100644 --- a/pages/linux/xrandr.md +++ b/pages/linux/xrandr.md @@ -1,6 +1,7 @@ # xrandr > Set the size, orientation and/or reflection of the outputs for a screen. +> More information: . - Display the current state of the system (known screens, resolutions, ...): @@ -22,10 +23,6 @@ `xrandr --output {{VGA1}} --off` -- Set brightness for LVDS1 to 50%: +- Set the brightness for LVDS1 to 50%: `xrandr --output {{LVDS1}} --brightness {{0.5}}` - -- See display hardware information: - -`xrandr -q` diff --git a/pages/linux/xrdb.md b/pages/linux/xrdb.md new file mode 100644 index 00000000000000..6b1f0ac16681c9 --- /dev/null +++ b/pages/linux/xrdb.md @@ -0,0 +1,16 @@ +# xrdb + +> X window server's resource database utility for Unix-like systems. +> More information: . + +- Start `xrdb` in interactive mode: + +`xrdb` + +- Load values (e.g. style rules) from a resource file: + +`xrdb -load {{~/.Xresources}}` + +- Query the resource database and print currently set values: + +`xrdb -query` diff --git a/pages/linux/xsel.md b/pages/linux/xsel.md index 2c68f313568dac..f61638c0efe420 100644 --- a/pages/linux/xsel.md +++ b/pages/linux/xsel.md @@ -1,6 +1,7 @@ # xsel > X11 selection and clipboard manipulation tool. +> More information: . - Use a command's output as input of the clip[b]oard (equivalent to `Ctrl + C`): @@ -8,7 +9,7 @@ - Use the contents of a file as input of the clipboard: -`cat {{file}} | xsel -ib` +`cat {{path/to/file}} | xsel -ib` - Output the clipboard's contents into the terminal (equivalent to `Ctrl + V`): @@ -16,7 +17,7 @@ - Output the clipboard's contents into a file: -`xsel -ob > {{file}}` +`xsel -ob > {{path/to/file}}` - Clear the clipboard: diff --git a/pages/linux/xset.md b/pages/linux/xset.md new file mode 100644 index 00000000000000..c98e521ba30141 --- /dev/null +++ b/pages/linux/xset.md @@ -0,0 +1,20 @@ +# xset + +> User preference utility for X. +> More information: . + +- Disable the screensaver: + +`xset s off` + +- Set the screensaver to start after 60 minutes of inactivity: + +`xset s 3600 3600` + +- Disable DPMS (Energy Star) features: + +`xset -dpms` + +- Enable DPMS (Energy Star) features: + +`xset +dpms` diff --git a/pages/linux/xsetwacom.md b/pages/linux/xsetwacom.md index 9af3f6fb1aaae4..d2604a46a7489e 100644 --- a/pages/linux/xsetwacom.md +++ b/pages/linux/xsetwacom.md @@ -1,8 +1,9 @@ # xsetwacom -> Command line tool to change settings for Wacom pen tablets at runtime. +> Command-line tool to change settings for Wacom pen tablets at runtime. +> More information: . -- List all the available wacom devices. The device name is in the first column: +- List all the available Wacom devices. The device name is in the first column: `xsetwacom list` diff --git a/pages/linux/xterm.md b/pages/linux/xterm.md index d7e04201ad47ad..a0033b6cdd858e 100644 --- a/pages/linux/xterm.md +++ b/pages/linux/xterm.md @@ -1,6 +1,7 @@ # xterm > A terminal emulator for the X Window System. +> More information: . - Open the terminal with a title of `Example`: diff --git a/pages/linux/xtrlock.md b/pages/linux/xtrlock.md index 4be57340356c86..26700c587563b7 100644 --- a/pages/linux/xtrlock.md +++ b/pages/linux/xtrlock.md @@ -1,6 +1,7 @@ # xtrlock > Lock the X display until the user supplies their password. +> More information: . - Lock the display and show a padlock instead of the cursor: diff --git a/pages/linux/xwinwrap.md b/pages/linux/xwinwrap.md new file mode 100644 index 00000000000000..669db4e74326a5 --- /dev/null +++ b/pages/linux/xwinwrap.md @@ -0,0 +1,20 @@ +# xwinwrap + +> Run a player or a program as desktop background. +> More information: . + +- Run a video using mpv: + +`xwinwrap -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` + +- Run a video in fullscreen using mpv: + +`xwinwrap -b -nf -fs -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` + +- Run a video using mpv with 80% opacity: + +`xwinwrap -b -nf -ov -o 0.8 --- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mp4}}` + +- Run a video using mpv in a second monitor 1600x900 with 1920 offset on X-axis: + +`xwinwrap -g 1600x900+1920 -b -nf -ov -- {{mpv}} -wid {{wid}} --loop --no-audio --no-resume-playback --panscan={{1.0}} {{path/to/video.mkv}}` diff --git a/pages/linux/xxhsum.md b/pages/linux/xxhsum.md new file mode 100644 index 00000000000000..1363391fbeb2aa --- /dev/null +++ b/pages/linux/xxhsum.md @@ -0,0 +1,12 @@ +# xxhsum + +> Print or verify checksums using fast non-cryptographic algorithm xxHash. +> More information: . + +- Calculate the checksum for a file using a specific algorithm: + +`xxhsum -H{{0|32|64|128}} {{path/to/file}}` + +- Run benchmark: + +`xxhsum -b` diff --git a/pages/linux/yank.md b/pages/linux/yank.md deleted file mode 100644 index d6741a09f76e44..00000000000000 --- a/pages/linux/yank.md +++ /dev/null @@ -1,19 +0,0 @@ -# yank - -> Read input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. - -- Yank using the default delimiters (\f, \n, \r, \s, \t): - -`{{sudo dmesg}} | yank` - -- Yank an entire line: - -`{{sudo dmesg}} | yank -l` - -- Yank using a specific delimiter: - -`{{echo hello=world}} | yank -d {{=}}` - -- Only yank fields matching a specific pattern: - -`{{ps ux}} | yank -g "{{[0-9]+}}"` diff --git a/pages/linux/yaourt.md b/pages/linux/yaourt.md index 8660c1db34bf51..aac749aeb7552b 100644 --- a/pages/linux/yaourt.md +++ b/pages/linux/yaourt.md @@ -1,6 +1,7 @@ # yaourt > Arch Linux utility for building packages from the Arch User Repository. +> More information: . - Synchronize and update all packages (including AUR): diff --git a/pages/linux/yay.md b/pages/linux/yay.md index bda2b5975f8ede..5d76594e74d18f 100644 --- a/pages/linux/yay.md +++ b/pages/linux/yay.md @@ -28,6 +28,10 @@ `yay -Ss {{keyword}}` +- Remove orphaned packages (installed as dependencies but not required by any package): + +`yay -Yc` + - Show statistics for installed packages and system health: `yay -Ps` diff --git a/pages/linux/yetris.md b/pages/linux/yetris.md index eda472c9bce2b3..c3e908ef51d582 100644 --- a/pages/linux/yetris.md +++ b/pages/linux/yetris.md @@ -3,7 +3,7 @@ > Clone of the game Tetris in the terminal. > More information: . -- Start a tetris game: +- Start a Tetris game: `yetris` diff --git a/pages/linux/ytfzf.md b/pages/linux/ytfzf.md new file mode 100644 index 00000000000000..2b799d30ec387f --- /dev/null +++ b/pages/linux/ytfzf.md @@ -0,0 +1,28 @@ +# ytfzf + +> A POSIX script that helps you find and download videos and music. +> More information: . + +- Search for videos on YouTube with thumbnail previews: + +`ytfzf --show-thumbnails {{search_pattern}}` + +- Play only the audio of the first item in a loop: + +`ytfzf --audio-only --auto-select --loop {{search_pattern}}` + +- Download a video from the history: + +`ytfzf --download --choose-from-history` + +- Play all the music found in a search: + +`ytfzf --audio-only --select-all {{search_pattern}}` + +- See the trending videos in an external menu: + +`ytfzf --trending --ext-menu {{search_pattern}}` + +- Search on PeerTube instead of YouTube: + +`ytfzf --peertube {{search_pattern}}` diff --git a/pages/linux/yum.md b/pages/linux/yum.md index 5c6a6243497799..e5dd6322d87115 100644 --- a/pages/linux/yum.md +++ b/pages/linux/yum.md @@ -1,7 +1,8 @@ # yum > Package management utility for RHEL, Fedora, and CentOS (for older versions). -> More information: . +> For equivalent commands in other package managers, see . +> More information: . - Install a new package: @@ -23,6 +24,6 @@ `yum check-update` -- Upgrade installed packages to newest available versions: +- Upgrade installed packages to the newest available versions: `yum upgrade` diff --git a/pages/linux/zathura.md b/pages/linux/zathura.md new file mode 100644 index 00000000000000..a581d1e27f695f --- /dev/null +++ b/pages/linux/zathura.md @@ -0,0 +1,33 @@ +# zathura + +> A vim-like modal document viewer, with an integrated command line. +> Make sure a backend is installed (poppler, PostScript, or DjVu). +> More information: . + +- Open a file: + +`zathura {{path/to/file}}` + +- Navigate left/up/down/right: + +` or arrow keys` + +- Rotate: + +`r` + +- Invert Colors: + +`Ctrl + R` + +- Search for text by a given string: + +`/{{string}}` + +- Create/delete bookmarks: + +`:{{bmark|bdelete}} {{bookmark_name}}` + +- List bookmarks: + +`:blist` diff --git a/pages/linux/zenity.md b/pages/linux/zenity.md index fe81f8db040e6c..96d1419c733335 100644 --- a/pages/linux/zenity.md +++ b/pages/linux/zenity.md @@ -1,7 +1,8 @@ # zenity -> Display dialogs from the command line/shell scripts. +> Display dialogs from the command-line/shell scripts. > Return user-inserted values or 1 if error. +> More information: . - Display the default question dialog: diff --git a/pages/linux/zip.md b/pages/linux/zip.md new file mode 100644 index 00000000000000..d10a77f03efc3c --- /dev/null +++ b/pages/linux/zip.md @@ -0,0 +1,33 @@ +# zip + +> Package and compress (archive) files into zip file. +> See also: `unzip`. +> More information: . + +- Add files/directories to a specific archive: + +`zip -r {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Remove files/directories from a specific archive: + +`zip --delete {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Archive files/directories e[x]cluding specified ones: + +`zip {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} --exclude {{path/to/excluded_files_or_directories}}` + +- Archive files/directories with a specific compression level (`0` - the lowest, `9` - the highest): + +`zip -r -{{0-9}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Create an encrypted archive with a specific password: + +`zip -r --encrypt {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Archive files/directories to a multi-part [s]plit zip file (e.g. 3 GB parts): + +`zip -r -s {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` + +- Print a specific archive contents: + +`zip -sf {{path/to/compressed.zip}}` diff --git a/pages/linux/zipcloak.md b/pages/linux/zipcloak.md new file mode 100644 index 00000000000000..cc51fe3f070b2c --- /dev/null +++ b/pages/linux/zipcloak.md @@ -0,0 +1,16 @@ +# zipcloak + +> Encrypt the contents within a zipfile. +> More information: . + +- Encrypt the contents of a zipfile: + +`zipcloak {{path/to/archive.zip}}` + +- [d]ecrypt the contents of a zipfile: + +`zipcloak -d {{path/to/archive.zip}}` + +- [O]utput the encrypted contents into a new zipfile: + +`zipcloak {{path/to/archive.zip}} -O {{path/to/encrypted.zip}}` diff --git a/pages/linux/zipsplit.md b/pages/linux/zipsplit.md new file mode 100644 index 00000000000000..e2c1fec8349a39 --- /dev/null +++ b/pages/linux/zipsplit.md @@ -0,0 +1,16 @@ +# zipsplit + +> Read a zipfile and split it into smaller zipfiles. +> More information: . + +- Split zipfile into pieces that are no larger than a particular size [n]: + +`zipsplit -n {{size}} {{path/to/archive.zip}}` + +- [p]ause between the creation of each split zipfile: + +`zipsplit -p -n {{size}} {{path/to/archive.zip}}` + +- Output the split zipfiles into the `archive` directory: + +`zipsplit -b {{archive}} -n {{size}} {{path/to/archive.zip}}` diff --git a/pages/linux/zramctl.md b/pages/linux/zramctl.md index a4ed2e9eff1f29..28a08e30c3548f 100644 --- a/pages/linux/zramctl.md +++ b/pages/linux/zramctl.md @@ -2,6 +2,7 @@ > Setup and control zram devices. > Use `mkfs` or `mkswap` to format zram devices to partitions. +> More information: . - Check if zram is enabled: @@ -15,10 +16,10 @@ `sudo modprobe zram num_devices={{2}}` -- Find and initialise the next free zram device to a 2GB virtual drive using LZ4 compression: +- Find and initialize the next free zram device to a 2 GB virtual drive using LZ4 compression: `sudo zramctl --find --size {{2GB}} --algorithm {{lz4}}` -- List currently initialised devices: +- List currently initialized devices: `zramctl` diff --git a/pages/linux/zypper.md b/pages/linux/zypper.md index 2db099e4d750b7..303adfe4f5cee0 100644 --- a/pages/linux/zypper.md +++ b/pages/linux/zypper.md @@ -1,6 +1,8 @@ # zypper > SUSE & openSUSE package management utility. +> For equivalent commands in other package managers, see . +> More information: . - Synchronize list of packages and versions available: @@ -14,10 +16,14 @@ `zypper remove {{package}}` -- Upgrade installed packages to newest available versions: +- Upgrade installed packages to the newest available versions: `zypper update` - Search package via keyword: `zypper search {{keyword}}` + +- Show information related to configured repositories: + +`zypper repos --sort-by-priority` diff --git a/pages/osx/aa.md b/pages/osx/aa.md new file mode 100644 index 00000000000000..98d27be892e542 --- /dev/null +++ b/pages/osx/aa.md @@ -0,0 +1,7 @@ +# aa + +> This command is an alias of `yaa`. + +- View documentation for the original command: + +`tldr yaa` diff --git a/pages/osx/afinfo.md b/pages/osx/afinfo.md index 38f58153214161..5f0756b42bb64e 100644 --- a/pages/osx/afinfo.md +++ b/pages/osx/afinfo.md @@ -2,6 +2,7 @@ > Audio file metadata parser for OS X. > Built-in command of OS X. +> More information: . - Display info of a given audio file: @@ -9,15 +10,15 @@ - Print a one line description of the audio file: -`afinfo -b {{path/to/file}}` +`afinfo --brief {{path/to/file}}` - Print metadata info and contents of the audio file's InfoDictionary: -`afinfo -i {{path/to/file}}` +`afinfo --info {{path/to/file}}` -- Print output in xml format: +- Print output in XML format: -`afinfo -x {{path/to/file}}` +`afinfo --xml {{path/to/file}}` - Print warnings for the audio file if any: @@ -25,4 +26,4 @@ - Display help for full usage: -`afinfo -h` +`afinfo --help` diff --git a/pages/osx/afplay.md b/pages/osx/afplay.md index 12a58d96102486..02d5f879bd51f2 100644 --- a/pages/osx/afplay.md +++ b/pages/osx/afplay.md @@ -1,6 +1,7 @@ # afplay > Command-line audio player. +> More information: . - Play a sound file (waits until playback ends): diff --git a/pages/osx/aiac.md b/pages/osx/aiac.md new file mode 100644 index 00000000000000..49ec1d2f71af1f --- /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/airport.md b/pages/osx/airport.md index bd3625b92eb4aa..a41c1521143264 100644 --- a/pages/osx/airport.md +++ b/pages/osx/airport.md @@ -1,10 +1,11 @@ # airport > Wireless network configuration utility. +> More information: . - Show current wireless status information: -`airport -I` +`airport --getinfo` - Sniff wireless traffic on channel 1: @@ -12,8 +13,8 @@ - Scan for available wireless networks: -`airport -s` +`airport --scan` - Disassociate from current airport network: -`sudo airport -z` +`sudo airport --disassociate` diff --git a/pages/osx/airportd.md b/pages/osx/airportd.md new file mode 100644 index 00000000000000..b96278dde5f134 --- /dev/null +++ b/pages/osx/airportd.md @@ -0,0 +1,9 @@ +# airportd + +> Manages wireless interfaces. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`airportd` diff --git a/pages/osx/apachectl.md b/pages/osx/apachectl.md index 2cf39db448484e..410db72ce053c8 100644 --- a/pages/osx/apachectl.md +++ b/pages/osx/apachectl.md @@ -1,6 +1,7 @@ # apachectl > Apache HTTP Server control interface for macOS. +> More information: . - Start the `org.apache.httpd` launchd job: diff --git a/pages/osx/applecamerad.md b/pages/osx/applecamerad.md new file mode 100644 index 00000000000000..379b5ff8fb3e40 --- /dev/null +++ b/pages/osx/applecamerad.md @@ -0,0 +1,9 @@ +# applecamerad + +> Camera manager. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`applecamerad` diff --git a/pages/osx/appsleepd.md b/pages/osx/appsleepd.md new file mode 100644 index 00000000000000..3c4fec25d4fbbe --- /dev/null +++ b/pages/osx/appsleepd.md @@ -0,0 +1,9 @@ +# appsleepd + +> Provides app sleep services. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`appsleepd` diff --git a/pages/osx/arch.md b/pages/osx/arch.md index e4af9f3d761119..28aa9a5b35b577 100644 --- a/pages/osx/arch.md +++ b/pages/osx/arch.md @@ -2,6 +2,7 @@ > Display the name of the system architecture, or run a command under a different architecture. > See also `uname`. +> More information: . - Display the system's architecture: @@ -9,4 +10,8 @@ - Run a command using x86_64: -`arch -x86_64 {{command}}` +`arch -x86_64 "{{command}}"` + +- Run a command using arm: + +`arch -arm64 "{{command}}"` diff --git a/pages/osx/archey.md b/pages/osx/archey.md index a15250491d9185..752d5b549d0799 100644 --- a/pages/osx/archey.md +++ b/pages/osx/archey.md @@ -1,6 +1,7 @@ # archey > Simple tool for stylishly displaying system information. +> More information: . - Show system information: diff --git a/pages/osx/as.md b/pages/osx/as.md index 9f9d95c19f5705..9041247098f164 100644 --- a/pages/osx/as.md +++ b/pages/osx/as.md @@ -2,19 +2,20 @@ > Portable GNU assembler. > Primarily intended to assemble output from `gcc` to be used by `ld`. +> More information: . - 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 2bcd24c60da41d..21938423e53f6f 100644 --- a/pages/osx/asr.md +++ b/pages/osx/asr.md @@ -2,19 +2,20 @@ > Restore (copy) a disk image onto a volume. > The command name stands for Apple Software Restore. +> More information: . - 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/autofsd.md b/pages/osx/autofsd.md new file mode 100644 index 00000000000000..07562dfd656e81 --- /dev/null +++ b/pages/osx/autofsd.md @@ -0,0 +1,9 @@ +# autofsd + +> Runs `automount` on startup and network configuration change events. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`autofsd` diff --git a/pages/osx/automountd.md b/pages/osx/automountd.md new file mode 100644 index 00000000000000..bbe1b07858e12e --- /dev/null +++ b/pages/osx/automountd.md @@ -0,0 +1,13 @@ +# automountd + +> An automatic mount/unmount daemon for `autofs`. Started on demand by `launchd`. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`automountd` + +- Log more details to `syslog`: + +`automountd -v` diff --git a/pages/osx/auvaltool.md b/pages/osx/auvaltool.md new file mode 100644 index 00000000000000..abf4fbfb88e46c --- /dev/null +++ b/pages/osx/auvaltool.md @@ -0,0 +1,12 @@ +# auvaltool + +> AudioUnit validation tool for Mac. +> More information: . + +- List all [a]vailable AudioUnits of any type: + +`auvaltool -a` + +- List all [a]vailable AudioUnits of any type with their [l]ocation: + +`auvaltool -al` diff --git a/pages/osx/avbdeviced.md b/pages/osx/avbdeviced.md new file mode 100644 index 00000000000000..78855640eb7647 --- /dev/null +++ b/pages/osx/avbdeviced.md @@ -0,0 +1,9 @@ +# avbdeviced + +> A service for managing Audio Video Bridging (AVB) devices. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`avbdeviced` diff --git a/pages/osx/backupd.md b/pages/osx/backupd.md new file mode 100644 index 00000000000000..e702d8eb637b7a --- /dev/null +++ b/pages/osx/backupd.md @@ -0,0 +1,9 @@ +# backupd + +> Creates Time Machine backups and manages its backup history. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`backupd` diff --git a/pages/osx/base64.md b/pages/osx/base64.md index 9487bba476ce6a..28e6ee8a796e00 100644 --- a/pages/osx/base64.md +++ b/pages/osx/base64.md @@ -1,6 +1,7 @@ # base64 > Encode and decode using Base64 representation. +> More information: . - Encode a file: @@ -10,10 +11,10 @@ `base64 --decode --input={{base64_file}}` -- Encode from stdin: +- Encode from `stdin`: -`echo -n {{plain_text}} | base64` +`echo -n "{{plain_text}}" | base64` -- Decode from stdin: +- Decode from `stdin`: `echo -n {{base64_text}} | base64 --decode` diff --git a/pages/osx/bc.md b/pages/osx/bc.md new file mode 100644 index 00000000000000..8caabda93a4238 --- /dev/null +++ b/pages/osx/bc.md @@ -0,0 +1,29 @@ +# bc + +> An arbitrary precision calculator language. +> See also: `dc`. +> More information: . + +- Start an interactive session: + +`bc` + +- Start an interactive session with the standard math library enabled: + +`bc --mathlib` + +- Calculate an expression: + +`bc --expression='{{5 / 3}}'` + +- Execute a script: + +`bc {{path/to/script.bc}}` + +- Calculate an expression with the specified scale: + +`bc --expression='scale = {{10}}; {{5 / 3}}'` + +- Calculate a sine/cosine/arctangent/natural logarithm/exponential function using `mathlib`: + +`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'` diff --git a/pages/osx/biomesyncd.md b/pages/osx/biomesyncd.md new file mode 100644 index 00000000000000..dd200fd56a229f --- /dev/null +++ b/pages/osx/biomesyncd.md @@ -0,0 +1,9 @@ +# biomesyncd + +> Synchronizes data between devices registered to the same account. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`biomesyncd` diff --git a/pages/osx/biometrickitd.md b/pages/osx/biometrickitd.md new file mode 100644 index 00000000000000..976f8dc878eb05 --- /dev/null +++ b/pages/osx/biometrickitd.md @@ -0,0 +1,9 @@ +# biometrickitd + +> Provides support for biometric operations. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`biometrickitd` diff --git a/pages/osx/bird.md b/pages/osx/bird.md new file mode 100644 index 00000000000000..6435a3c46208c9 --- /dev/null +++ b/pages/osx/bird.md @@ -0,0 +1,9 @@ +# bird + +> This supports the syncing of iCloud and iCloud Drive. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`bird` diff --git a/pages/osx/bless.md b/pages/osx/bless.md index bd048c5cf00e11..59d5a503eb4ca6 100644 --- a/pages/osx/bless.md +++ b/pages/osx/bless.md @@ -1,15 +1,15 @@ # bless -> Set volume bootability and startup disk options. +> Set volume boot capability and startup disk options. > More information: . - Bless a volume with only Mac OS X or Darwin, and create the BootX and `boot.efi` files as needed: -`bless --folder "{{/Volumes/Mac OS X/System/Library/CoreServices}}" --bootinfo --bootefi` +`bless --folder {{/Volumes/Mac OS X/System/Library/CoreServices}} --bootinfo --bootefi` - Set a volume containing either Mac OS 9 and Mac OS X to be the active volume: -`bless --mount "{{/Volumes/Mac OS}}" --setBoot` +`bless --mount {{/Volumes/Mac OS}} --setBoot` - Set the system to NetBoot and broadcast for an available server: diff --git a/pages/osx/bnepd.md b/pages/osx/bnepd.md new file mode 100644 index 00000000000000..87f638e8d567b1 --- /dev/null +++ b/pages/osx/bnepd.md @@ -0,0 +1,9 @@ +# bnepd + +> A service that handles all Bluetooth network connections. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`bnepd` diff --git a/pages/osx/brew-cask.md b/pages/osx/brew-cask.md deleted file mode 100644 index 9acbc8ddcb26b7..00000000000000 --- a/pages/osx/brew-cask.md +++ /dev/null @@ -1,36 +0,0 @@ -# brew cask - -> Package manager for macOS applications distributed as binaries. -> More information: . - -- Search for formulas and casks: - -`brew search {{text}}` - -- Install a cask: - -`brew cask install {{cask_name}}` - -- List all installed casks: - -`brew list --cask` - -- List installed casks that have newer versions available: - -`brew outdated --cask` - -- Upgrade an installed cask (if no cask name is given, all installed casks are upgraded): - -`brew upgrade --cask {{cask_name}}` - -- Uninstall a cask: - -`brew cask uninstall {{cask_name}}` - -- Uninstall a cask and remove related settings and files: - -`brew cask zap {{cask_name}}` - -- Display information about a given cask: - -`brew cask info {{cask_name}}` diff --git a/pages/osx/brightness.md b/pages/osx/brightness.md index 0e98b4af47bd5d..2835b179792775 100644 --- a/pages/osx/brightness.md +++ b/pages/osx/brightness.md @@ -1,15 +1,16 @@ # brightness > Get and set the brightness level of all internal and certain external displays. +> More information: . - Show current brightness: `brightness -l` -- Set the brightness to 100%:: +- Set the brightness to 100%: `brightness {{1}}` -- Set the brightness to 50%:: +- Set the brightness to 50%: `brightness {{0.5}}` diff --git a/pages/osx/caffeinate.md b/pages/osx/caffeinate.md index 83c3fc87d70420..c7fcd8b850aca8 100644 --- a/pages/osx/caffeinate.md +++ b/pages/osx/caffeinate.md @@ -1,6 +1,7 @@ # caffeinate -> Prevent mac from sleeping. +> Prevent macOS from sleeping. +> More information: . - Prevent from sleeping for 1 hour (3600 seconds): @@ -8,8 +9,12 @@ - Prevent from sleeping until a command completes: -`caffeinate -s {{command}}` +`caffeinate -s "{{command}}"` -- Prevent from sleeping until you type Ctrl-C: +- Prevent from sleeping (use `Ctrl + C` to exit): `caffeinate -i` + +- Prevent disk from sleeping (use `Ctrl + C` to exit): + +`caffeinate -m` diff --git a/pages/osx/cal.md b/pages/osx/cal.md index 00e9246d217509..b5bb6f0a819295 100644 --- a/pages/osx/cal.md +++ b/pages/osx/cal.md @@ -1,6 +1,7 @@ # cal > Prints calendar information. +> More information: . - Display a calendar for the current month: diff --git a/pages/osx/carthage.md b/pages/osx/carthage.md index 257183547e440a..613541ee3592d1 100644 --- a/pages/osx/carthage.md +++ b/pages/osx/carthage.md @@ -1,6 +1,7 @@ # carthage > A dependency management tool for Cocoa applications. +> More information: . - Download the latest version of all dependencies mentioned in Cartfile, and build them: diff --git a/pages/osx/cat.md b/pages/osx/cat.md new file mode 100644 index 00000000000000..0997f178bb7f29 --- /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 the standard output: + +`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/cfprefsd.md b/pages/osx/cfprefsd.md new file mode 100644 index 00000000000000..ddc7da0bef8d4d --- /dev/null +++ b/pages/osx/cfprefsd.md @@ -0,0 +1,9 @@ +# cfprefsd + +> Provides preferences services (`CFPreferences`, `NSUserDefaults`). +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`cfprefsd` diff --git a/pages/osx/chflags.md b/pages/osx/chflags.md index 5b0b75c49654cf..f71ae4c795cf2a 100644 --- a/pages/osx/chflags.md +++ b/pages/osx/chflags.md @@ -1,6 +1,7 @@ # chflags > Change file or directory flags. +> More information: . - Set the `hidden` flag for a file: diff --git a/pages/osx/cloudd.md b/pages/osx/cloudd.md new file mode 100644 index 00000000000000..bc6e68f5145533 --- /dev/null +++ b/pages/osx/cloudd.md @@ -0,0 +1,9 @@ +# cloudd + +> Backs the CloudKit feature. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`cloudd` diff --git a/pages/osx/cloudphotod.md b/pages/osx/cloudphotod.md new file mode 100644 index 00000000000000..eb9259f97e551a --- /dev/null +++ b/pages/osx/cloudphotod.md @@ -0,0 +1,9 @@ +# cloudphotod + +> This synchronizes iCloud Photos. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`cloudphotod` diff --git a/pages/osx/codesign.md b/pages/osx/codesign.md index d41a54457a81ee..4e62f77a8041c2 100644 --- a/pages/osx/codesign.md +++ b/pages/osx/codesign.md @@ -1,11 +1,12 @@ # codesign > Create and manipulate code signatures for macOS. +> More information: . - Sign an application with a certificate: -`codesign -s "{{My Company Name}}" {{path/to/App.app}}` +`codesign --sign "{{My Company Name}}" {{path/to/application_file.app}}` - Verify the certificate of an application: -`codesign -v {{path/to/App.app}}` +`codesign --verify {{path/to/application_file.app}}` diff --git a/pages/osx/compgen.md b/pages/osx/compgen.md deleted file mode 100644 index 15e35051948370..00000000000000 --- a/pages/osx/compgen.md +++ /dev/null @@ -1,23 +0,0 @@ -# compgen - -> A built-in command for auto-completion in bash, which is called on pressing TAB key twice. - -- List all commands that you could run: - -`compgen -c` - -- List all aliases: - -`compgen -a` - -- List all functions that you could run: - -`compgen -A function` - -- Show shell reserved key words: - -`compgen -k` - -- See all available commands/aliases starting with 'ls': - -`compgen -ac {{ls}}` diff --git a/pages/osx/coreaudiod.md b/pages/osx/coreaudiod.md new file mode 100644 index 00000000000000..d53951e2c77702 --- /dev/null +++ b/pages/osx/coreaudiod.md @@ -0,0 +1,9 @@ +# coreaudiod + +> Service for Core Audio, Apple's audio system. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`coreaudiod` diff --git a/pages/osx/coreautha.md b/pages/osx/coreautha.md new file mode 100644 index 00000000000000..5ed8100204a3e6 --- /dev/null +++ b/pages/osx/coreautha.md @@ -0,0 +1,9 @@ +# coreautha + +> A system agent providing the `LocalAuthentication` framework. +> It should not be invoked manually. See also: `coreauthd`. +> More information: . + +- Start the agent: + +`coreautha` diff --git a/pages/osx/coreauthd.md b/pages/osx/coreauthd.md new file mode 100644 index 00000000000000..391edfa1ee0d67 --- /dev/null +++ b/pages/osx/coreauthd.md @@ -0,0 +1,9 @@ +# coreauthd + +> A system daemon providing the `LocalAuthentication` framework. +> It should not be invoked manually. See also: `coreautha`. +> More information: . + +- Start the agent: + +`coreauthd` diff --git a/pages/osx/corebrightnessd.md b/pages/osx/corebrightnessd.md new file mode 100644 index 00000000000000..c393f82703579c --- /dev/null +++ b/pages/osx/corebrightnessd.md @@ -0,0 +1,9 @@ +# corebrightnessd + +> Manages Night Shift. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`corebrightnessd` diff --git a/pages/osx/coredatad.md b/pages/osx/coredatad.md new file mode 100644 index 00000000000000..22713d5fde4421 --- /dev/null +++ b/pages/osx/coredatad.md @@ -0,0 +1,9 @@ +# coredatad + +> Schedules CloudKit operations for clients of NSPersistentCloudKitContainer. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`coredatad` diff --git a/pages/osx/cot.md b/pages/osx/cot.md new file mode 100644 index 00000000000000..4b2a9e2a6f0701 --- /dev/null +++ b/pages/osx/cot.md @@ -0,0 +1,24 @@ +# cot + +> The Plain-Text Editor for macOS. +> More information: . + +- Start CotEditor: + +`cot` + +- Open specific files: + +`cot {{path/to/file1 path/to/file2 ...}}` + +- Open a new blank document: + +`cot --new` + +- Open a specific file and block the terminal until it is closed: + +`cot --wait {{path/to/file}}` + +- Open a specific file with the cursor at a specific line and column: + +`cot --line {{1}} --column {{80}} {{path/to/file}}` diff --git a/pages/osx/csrutil.md b/pages/osx/csrutil.md new file mode 100644 index 00000000000000..717633b8dc3a31 --- /dev/null +++ b/pages/osx/csrutil.md @@ -0,0 +1,28 @@ +# csrutil + +> Manage the System Integrity Protection configuration. +> More information: . + +- Display the System Integrity Protection status: + +`csrutil status` + +- Disable the System Integrity Protection: + +`csrutil disable` + +- Enable the System Integrity Protection: + +`csrutil enable` + +- Display the list of allowed NetBoot sources: + +`csrutil netboot list` + +- Add an IPv4 address to the list of allowed NetBoot sources: + +`csrutil netboot add {{ip}}` + +- Reset the System Integrity Protection status and clear the NetBoot list: + +`csrutil clear` diff --git a/pages/osx/csshx.md b/pages/osx/csshx.md index d269301eabe5f2..dc9df6f55db6c4 100644 --- a/pages/osx/csshx.md +++ b/pages/osx/csshx.md @@ -1,6 +1,6 @@ # csshX -> Cluster SSH tool for MacOS. +> Cluster SSH tool for macOS. > More information: . - Connect to multiple hosts: @@ -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/ctkd.md b/pages/osx/ctkd.md new file mode 100644 index 00000000000000..85d6ec81b55b90 --- /dev/null +++ b/pages/osx/ctkd.md @@ -0,0 +1,9 @@ +# ctkd + +> SmartCard daemon. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`ctkd` diff --git a/pages/osx/cut.md b/pages/osx/cut.md new file mode 100644 index 00000000000000..f4b86829dd4a1e --- /dev/null +++ b/pages/osx/cut.md @@ -0,0 +1,16 @@ +# cut + +> Cut out fields from `stdin` or files. +> More information: . + +- Print a specific character/field range of each line: + +`{{command}} | cut -{{c|f}} {{1|1,10|1-10|1-|-10}}` + +- Print a range of each line with a specific delimiter: + +`{{command}} | cut -d "{{,}}" -{{c}} {{1}}` + +- Print a range of each line of a specific file: + +`cut -{{c}} {{1}} {{path/to/file}}` diff --git a/pages/osx/date.md b/pages/osx/date.md index 0f15958263182b..f02378beb87f38 100644 --- a/pages/osx/date.md +++ b/pages/osx/date.md @@ -1,14 +1,15 @@ # date > Set or display the system date. +> More information: . - Display the current date using the default locale's format: -`date +"%c"` +`date +%c` - Display the current date in UTC and ISO 8601 format: -`date -u +"%Y-%m-%dT%H:%M:%S%Z"` +`date -u +%Y-%m-%dT%H:%M:%SZ` - Display the current date as a Unix timestamp (seconds since the Unix epoch): diff --git a/pages/osx/dd.md b/pages/osx/dd.md index eea6dbc01e7266..6e6501fd017459 100644 --- a/pages/osx/dd.md +++ b/pages/osx/dd.md @@ -1,19 +1,32 @@ # dd > Convert and copy a file. +> 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 4MB 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/defaults.md b/pages/osx/defaults.md index 4d75c3ac8a681a..5fe32f0ac9bb34 100644 --- a/pages/osx/defaults.md +++ b/pages/osx/defaults.md @@ -5,19 +5,19 @@ - Read system defaults for an application option: -`defaults read {{application}} {{option}}` +`defaults read "{{application}}" "{{option}}"` - Read default values for an application option: -`defaults read -app {{application}} {{option}}` +`defaults read -app "{{application}}" "{{option}}"` - Search for a keyword in domain names, keys, and values: -`defaults find {{keyword}}` +`defaults find "{{keyword}}"` - Write the default value of an application option: -`defaults write {{application}} {{option}} {{-type}} {{value}}` +`defaults write "{{application}}" "{{option}}" {{-type}} {{value}}` - Speed up Mission Control animations: @@ -25,4 +25,4 @@ - Delete all defaults of an application: -`defaults delete {{application}}` +`defaults delete "{{application}}"` diff --git a/pages/osx/deleted.md b/pages/osx/deleted.md new file mode 100644 index 00000000000000..6b654e2707316d --- /dev/null +++ b/pages/osx/deleted.md @@ -0,0 +1,9 @@ +# deleted + +> Keeps track of purgeable space and asks clients to purge when space is low. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`deleted` diff --git a/pages/osx/dhcp6d.md b/pages/osx/dhcp6d.md new file mode 100644 index 00000000000000..38be900d46e84b --- /dev/null +++ b/pages/osx/dhcp6d.md @@ -0,0 +1,13 @@ +# dhcp6d + +> Stateless DHCPv6 server. See also: `InternetSharing`. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`dhcp6d` + +- Use a custom configuration: + +`dhcp6d {{path/to/config_file}}` diff --git a/pages/osx/diskutil.md b/pages/osx/diskutil.md index 5994493eb28378..868c00014bc911 100644 --- a/pages/osx/diskutil.md +++ b/pages/osx/diskutil.md @@ -1,6 +1,7 @@ # diskutil > Utility to manage local disks and volumes. +> More information: . - List all currently available disks, partitions and mounted volumes: @@ -8,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/distnoted.md b/pages/osx/distnoted.md new file mode 100644 index 00000000000000..6d8b7439cba3e1 --- /dev/null +++ b/pages/osx/distnoted.md @@ -0,0 +1,9 @@ +# distnoted + +> Provides distributed notification services. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`distnoted` diff --git a/pages/osx/ditto.md b/pages/osx/ditto.md index 28f9fc6e50b326..5cdfa7a5f6b5c5 100644 --- a/pages/osx/ditto.md +++ b/pages/osx/ditto.md @@ -1,15 +1,16 @@ # ditto > Copy files and directories. +> More information: . - 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 5478d302d69a1f..6f27439df190c5 100644 --- a/pages/osx/dmesg.md +++ b/pages/osx/dmesg.md @@ -1,6 +1,7 @@ # dmesg > Write the kernel messages to standard output. +> More information: . - Show kernel messages: diff --git a/pages/osx/drutil.md b/pages/osx/drutil.md index 3c96799e4227ec..dbd9bd77c6f1bc 100644 --- a/pages/osx/drutil.md +++ b/pages/osx/drutil.md @@ -1,6 +1,7 @@ # drutil > Interact with DVD burners. +> More information: . - Eject a disk from the drive: diff --git a/pages/osx/du.md b/pages/osx/du.md index c018dc0a57ccec..e86ebcfc22bee3 100644 --- a/pages/osx/du.md +++ b/pages/osx/du.md @@ -1,8 +1,9 @@ # du > Disk usage: estimate and summarize file and directory space usage. +> More information: . -- List the sizes of a directory and any subdirectories, in the given unit (KB/MB/GB): +- List the sizes of a directory and any subdirectories, in the given unit (KiB/MiB/GiB): `du -{{k|m|g}} {{path/to/directory}}` @@ -10,7 +11,7 @@ `du -h {{path/to/directory}}` -- Show the size of a single directory, in human readable units: +- Show the size of a single directory, in human-readable units: `du -sh {{path/to/directory}}` @@ -20,8 +21,8 @@ - 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: -`du -ch */*.jpg` +`du -ch {{*/*.jpg}}` diff --git a/pages/osx/duti.md b/pages/osx/duti.md index 8bc84e3e6d9d49..c7644048df20c8 100644 --- a/pages/osx/duti.md +++ b/pages/osx/duti.md @@ -1,6 +1,7 @@ # duti > Set default applications for document types and URL schemes on macOS. +> More information: . - Set Safari as the default handler for HTML documents: @@ -12,7 +13,7 @@ - Set Finder as the default handler for the ftp:// URL scheme: -`duti -s {{com.apple.Finder}} {{ftp}}` +`duti -s {{com.apple.Finder}} "{{ftp}}"` - Display information about the default application for a given extension: diff --git a/pages/osx/ed.md b/pages/osx/ed.md new file mode 100644 index 00000000000000..b85850abd95feb --- /dev/null +++ b/pages/osx/ed.md @@ -0,0 +1,25 @@ +# ed + +> The original Unix text editor. +> See also: `awk`, `sed`. +> More information: . + +- Start an interactive editor session with an empty document: + +`ed` + +- Start an interactive editor session with an empty document and a specific [p]rompt: + +`ed -p '> '` + +- Start an interactive editor session with an empty document and without diagnostics, byte counts and '!' prompt: + +`ed -s` + +- Edit a specific file (this shows the byte count of the loaded file): + +`ed {{path/to/file}}` + +- Replace a string with a specific replacement for all lines: + +`,s/{{regular_expression}}/{{replacement}}/g` diff --git a/pages/osx/emond.md b/pages/osx/emond.md new file mode 100644 index 00000000000000..7621e01d87582c --- /dev/null +++ b/pages/osx/emond.md @@ -0,0 +1,17 @@ +# emond + +> Event Monitor service that accepts events from various services, runs them through a simple rules engine, and takes action. +> The actions can run commands, send email, or SMS messages. +> More information: . + +- Start the daemon: + +`emond` + +- Specify rules for emond to process by giving a path to a file or directory: + +`emond -r {{path/to/file_or_directory}}` + +- Use a specific configuration file: + +`emond -c {{path/to/config_file}}` diff --git a/pages/osx/eval.md b/pages/osx/eval.md deleted file mode 100644 index ee1135a91db1a5..00000000000000 --- a/pages/osx/eval.md +++ /dev/null @@ -1,11 +0,0 @@ -# eval - -> Execute arguments as a single command in the current shell and return its result. - -- Call `echo` with the "foo" argument: - -`eval "{{echo foo}}"` - -- Set a variable in the current shell: - -`eval "{{foo=bar}}"` diff --git a/pages/osx/export.md b/pages/osx/export.md deleted file mode 100644 index c09481e8e225a9..00000000000000 --- a/pages/osx/export.md +++ /dev/null @@ -1,15 +0,0 @@ -# export - -> Command to mark shell variables in the current environment to be exported with any newly forked child processes. - -- Set a new environment variable: - -`export {{VARIABLE}}={{value}}` - -- Remove an environment variable: - -`export -n {{VARIABLE}}` - -- Append something to the PATH variable: - -`export PATH=$PATH:{{path/to/append}}` diff --git a/pages/osx/fc.md b/pages/osx/fc.md deleted file mode 100644 index 7e6c464104e3d5..00000000000000 --- a/pages/osx/fc.md +++ /dev/null @@ -1,15 +0,0 @@ -# fc - -> Open the most recent command and edit it. - -- Open in the default system editor: - -`fc` - -- Specify an editor to open with: - -`fc -e {{'emacs'}}` - -- List recent commands from history: - -`fc -l` diff --git a/pages/osx/fdesetup.md b/pages/osx/fdesetup.md index 344a340aafa245..ed81df0e6624c6 100644 --- a/pages/osx/fdesetup.md +++ b/pages/osx/fdesetup.md @@ -1,6 +1,7 @@ # fdesetup > Set and retrieve FileVault related information. +> More information: . - List current FileVault enabled users: diff --git a/pages/osx/feh.md b/pages/osx/feh.md deleted file mode 100644 index 3d3464c91708bf..00000000000000 --- a/pages/osx/feh.md +++ /dev/null @@ -1,27 +0,0 @@ -# feh - -> Lightweight image viewing utility. - -- View images locally or using a URL: - -`feh {{path/to/images}}` - -- View images recursively: - -`feh --recursive {{path/to/images}}` - -- View images without window borders: - -`feh --borderless {{path/to/images}}` - -- Exit after the last image: - -`feh --cycle-once {{path/to/images}}` - -- Set the slideshow cycle delay: - -`feh --slideshow-delay {{seconds}} {{path/to/images}}` - -- Set your wallpaper (centered, filled, maximized, scaled or tiled): - -`feh --bg-{{center|fill|max|scale|tile}} {{path/to/image}}` diff --git a/pages/osx/file.md b/pages/osx/file.md deleted file mode 100644 index 841d703d370017..00000000000000 --- a/pages/osx/file.md +++ /dev/null @@ -1,23 +0,0 @@ -# file - -> Determine file type. - -- Give a description of the type of the specified file. Works fine for files with no file extension: - -`file {{filename}}` - -- Look inside a zipped file and determine the file type(s) inside: - -`file -z {{foo.zip}}` - -- Allow file to work with special or device files: - -`file -s {{filename}}` - -- Don't stop at first file type match; keep going until the end of the file: - -`file -k {{filename}}` - -- Determine the mime encoding type of a file: - -`file -I {{filename}}` diff --git a/pages/osx/filecoordinationd.md b/pages/osx/filecoordinationd.md new file mode 100644 index 00000000000000..3abbcb36ae591f --- /dev/null +++ b/pages/osx/filecoordinationd.md @@ -0,0 +1,9 @@ +# filecoordinationd + +> Coordinates access to files by multiple processes (`NSFileCoordinator`, `NSFilePresenter`). +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`filecoordinationd` diff --git a/pages/osx/fileicon.md b/pages/osx/fileicon.md new file mode 100644 index 00000000000000..e78f3e5373acd0 --- /dev/null +++ b/pages/osx/fileicon.md @@ -0,0 +1,20 @@ +# fileicon + +> A macOS CLI to 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_file.png}}` + +- Remove a custom icon from a specific file or directory: + +`fileicon rm {{path/to/file_or_directory}}` + +- Save the custom icon of a file or directory as a `.icns` file into the current directory: + +`fileicon get {{path/to/file_or_directory}}` + +- Test if a specific file or directory has a custom icon: + +`fileicon test {{path/to/file_or_directory}}` diff --git a/pages/osx/fontd.md b/pages/osx/fontd.md new file mode 100644 index 00000000000000..5121da07f4f933 --- /dev/null +++ b/pages/osx/fontd.md @@ -0,0 +1,9 @@ +# fontd + +> Makes fonts available to the system. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`fontd` diff --git a/pages/osx/fsck.md b/pages/osx/fsck.md index 6c8a4931ef156d..a93da777d4aae6 100644 --- a/pages/osx/fsck.md +++ b/pages/osx/fsck.md @@ -2,6 +2,7 @@ > Check the integrity of a filesystem or repair it. The filesystem should be unmounted at the time the command is run. > It is a wrapper that calls `fsck_hfs`, `fsck_apfs`, `fsck_msdos`, `fsck_exfat`, and `fsck_udf` as needed. +> More information: . - Check filesystem `/dev/sdX`, reporting any damaged blocks: diff --git a/pages/osx/ftxdiff.md b/pages/osx/ftxdiff.md new file mode 100644 index 00000000000000..29333e260efa0d --- /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/g[.md b/pages/osx/g[.md new file mode 100644 index 00000000000000..eedf473dccc3e0 --- /dev/null +++ b/pages/osx/g[.md @@ -0,0 +1,7 @@ +# g[ + +> This command is an alias of GNU `[`. + +- View documentation for the original command: + +`tldr -p linux [` diff --git a/pages/osx/gawk.md b/pages/osx/gawk.md new file mode 100644 index 00000000000000..c48a47548bc28f --- /dev/null +++ b/pages/osx/gawk.md @@ -0,0 +1,7 @@ +# gawk + +> This command is an alias of GNU `awk`. + +- View documentation for the original command: + +`tldr -p linux awk` diff --git a/pages/osx/gb2sum.md b/pages/osx/gb2sum.md new file mode 100644 index 00000000000000..19009418e71156 --- /dev/null +++ b/pages/osx/gb2sum.md @@ -0,0 +1,7 @@ +# gb2sum + +> This command is an alias of GNU `b2sum`. + +- View documentation for the original command: + +`tldr -p linux b2sum` diff --git a/pages/osx/gbase32.md b/pages/osx/gbase32.md new file mode 100644 index 00000000000000..2a678372190ad1 --- /dev/null +++ b/pages/osx/gbase32.md @@ -0,0 +1,7 @@ +# gbase32 + +> This command is an alias of GNU `base32`. + +- View documentation for the original command: + +`tldr -p linux base32` diff --git a/pages/osx/gbase64.md b/pages/osx/gbase64.md new file mode 100644 index 00000000000000..04b5c7b8aa0fd9 --- /dev/null +++ b/pages/osx/gbase64.md @@ -0,0 +1,7 @@ +# gbase64 + +> This command is an alias of GNU `base64`. + +- View documentation for the original command: + +`tldr -p linux base64` diff --git a/pages/osx/gbasename.md b/pages/osx/gbasename.md new file mode 100644 index 00000000000000..aa7e2b47fe20b1 --- /dev/null +++ b/pages/osx/gbasename.md @@ -0,0 +1,7 @@ +# gbasename + +> This command is an alias of GNU `basename`. + +- View documentation for the original command: + +`tldr -p linux basename` diff --git a/pages/osx/gbasenc.md b/pages/osx/gbasenc.md new file mode 100644 index 00000000000000..d0f25f7e764755 --- /dev/null +++ b/pages/osx/gbasenc.md @@ -0,0 +1,7 @@ +# gbasenc + +> This command is an alias of GNU `basenc`. + +- View documentation for the original command: + +`tldr -p linux basenc` diff --git a/pages/osx/gcat.md b/pages/osx/gcat.md new file mode 100644 index 00000000000000..44044260b64f47 --- /dev/null +++ b/pages/osx/gcat.md @@ -0,0 +1,7 @@ +# gcat + +> This command is an alias of GNU `cat`. + +- View documentation for the original command: + +`tldr -p linux cat` diff --git a/pages/osx/gchcon.md b/pages/osx/gchcon.md new file mode 100644 index 00000000000000..8170390bc4dbb0 --- /dev/null +++ b/pages/osx/gchcon.md @@ -0,0 +1,7 @@ +# gchcon + +> This command is an alias of GNU `chcon`. + +- View documentation for the original command: + +`tldr -p linux chcon` diff --git a/pages/osx/gchgrp.md b/pages/osx/gchgrp.md new file mode 100644 index 00000000000000..19a01617712401 --- /dev/null +++ b/pages/osx/gchgrp.md @@ -0,0 +1,7 @@ +# gchgrp + +> This command is an alias of GNU `chgrp`. + +- View documentation for the original command: + +`tldr -p linux chgrp` diff --git a/pages/osx/gchmod.md b/pages/osx/gchmod.md new file mode 100644 index 00000000000000..dc5c3ca7ad7564 --- /dev/null +++ b/pages/osx/gchmod.md @@ -0,0 +1,7 @@ +# gchmod + +> This command is an alias of GNU `chmod`. + +- View documentation for the original command: + +`tldr -p linux chmod` diff --git a/pages/osx/gchown.md b/pages/osx/gchown.md new file mode 100644 index 00000000000000..3a81673f7d81ff --- /dev/null +++ b/pages/osx/gchown.md @@ -0,0 +1,7 @@ +# gchown + +> This command is an alias of GNU `chown`. + +- View documentation for the original command: + +`tldr -p linux chown` diff --git a/pages/osx/gchroot.md b/pages/osx/gchroot.md new file mode 100644 index 00000000000000..4838e6f6464eed --- /dev/null +++ b/pages/osx/gchroot.md @@ -0,0 +1,7 @@ +# gchroot + +> This command is an alias of GNU `chroot`. + +- View documentation for the original command: + +`tldr -p linux chroot` diff --git a/pages/osx/gcksum.md b/pages/osx/gcksum.md new file mode 100644 index 00000000000000..870e641049afee --- /dev/null +++ b/pages/osx/gcksum.md @@ -0,0 +1,7 @@ +# gcksum + +> This command is an alias of GNU `cksum`. + +- View documentation for the original command: + +`tldr -p linux cksum` diff --git a/pages/osx/gcomm.md b/pages/osx/gcomm.md new file mode 100644 index 00000000000000..1518490651ae4f --- /dev/null +++ b/pages/osx/gcomm.md @@ -0,0 +1,7 @@ +# gcomm + +> This command is an alias of GNU `comm`. + +- View documentation for the original command: + +`tldr -p linux comm` diff --git a/pages/osx/gcp.md b/pages/osx/gcp.md new file mode 100644 index 00000000000000..726812a78c6bca --- /dev/null +++ b/pages/osx/gcp.md @@ -0,0 +1,7 @@ +# gcp + +> This command is an alias of GNU `cp`. + +- View documentation for the original command: + +`tldr -p linux cp` diff --git a/pages/osx/gcsplit.md b/pages/osx/gcsplit.md new file mode 100644 index 00000000000000..5ba3541bc4fb31 --- /dev/null +++ b/pages/osx/gcsplit.md @@ -0,0 +1,7 @@ +# gcsplit + +> This command is an alias of GNU `csplit`. + +- View documentation for the original command: + +`tldr -p linux csplit` diff --git a/pages/osx/gcut.md b/pages/osx/gcut.md new file mode 100644 index 00000000000000..06e0407821cbb2 --- /dev/null +++ b/pages/osx/gcut.md @@ -0,0 +1,7 @@ +# gcut + +> This command is an alias of GNU `cut`. + +- View documentation for the original command: + +`tldr -p linux cut` diff --git a/pages/osx/gdate.md b/pages/osx/gdate.md new file mode 100644 index 00000000000000..5027fceb0234ac --- /dev/null +++ b/pages/osx/gdate.md @@ -0,0 +1,7 @@ +# gdate + +> This command is an alias of GNU `date`. + +- View documentation for the original command: + +`tldr -p linux date` diff --git a/pages/osx/gdd.md b/pages/osx/gdd.md new file mode 100644 index 00000000000000..7c8ee20e8c8bd0 --- /dev/null +++ b/pages/osx/gdd.md @@ -0,0 +1,7 @@ +# gdd + +> This command is an alias of GNU `dd`. + +- View documentation for the original command: + +`tldr -p linux dd` diff --git a/pages/osx/gdf.md b/pages/osx/gdf.md new file mode 100644 index 00000000000000..097106cfed4960 --- /dev/null +++ b/pages/osx/gdf.md @@ -0,0 +1,7 @@ +# gdf + +> This command is an alias of GNU `df`. + +- View documentation for the original command: + +`tldr -p linux df` diff --git a/pages/osx/gdir.md b/pages/osx/gdir.md new file mode 100644 index 00000000000000..5e474af6ba2a35 --- /dev/null +++ b/pages/osx/gdir.md @@ -0,0 +1,7 @@ +# gdir + +> This command is an alias of GNU `dir`. + +- View documentation for the original command: + +`tldr -p linux dir` diff --git a/pages/osx/gdircolors.md b/pages/osx/gdircolors.md new file mode 100644 index 00000000000000..b829c11c8066b5 --- /dev/null +++ b/pages/osx/gdircolors.md @@ -0,0 +1,7 @@ +# gdircolors + +> This command is an alias of GNU `dircolors`. + +- View documentation for the original command: + +`tldr -p linux dircolors` diff --git a/pages/osx/gdirname.md b/pages/osx/gdirname.md new file mode 100644 index 00000000000000..56692ce5c75fb7 --- /dev/null +++ b/pages/osx/gdirname.md @@ -0,0 +1,7 @@ +# gdirname + +> This command is an alias of GNU `dirname`. + +- View documentation for the original command: + +`tldr -p linux dirname` diff --git a/pages/osx/gdnsdomainname.md b/pages/osx/gdnsdomainname.md new file mode 100644 index 00000000000000..34dae3f26d7774 --- /dev/null +++ b/pages/osx/gdnsdomainname.md @@ -0,0 +1,7 @@ +# gdnsdomainname + +> This command is an alias of GNU `dnsdomainname`. + +- View documentation for the original command: + +`tldr -p linux dnsdomainname` diff --git a/pages/osx/gecho.md b/pages/osx/gecho.md new file mode 100644 index 00000000000000..a3948cf22f6631 --- /dev/null +++ b/pages/osx/gecho.md @@ -0,0 +1,7 @@ +# gecho + +> This command is an alias of GNU `echo`. + +- View documentation for the original command: + +`tldr -p linux echo` diff --git a/pages/osx/ged.md b/pages/osx/ged.md new file mode 100644 index 00000000000000..a6eccda92b3b31 --- /dev/null +++ b/pages/osx/ged.md @@ -0,0 +1,7 @@ +# ged + +> This command is an alias of GNU `ed`. + +- View documentation for the original command: + +`tldr -p linux ed` diff --git a/pages/osx/gegrep.md b/pages/osx/gegrep.md new file mode 100644 index 00000000000000..2e50032ca873a2 --- /dev/null +++ b/pages/osx/gegrep.md @@ -0,0 +1,7 @@ +# gegrep + +> This command is an alias of GNU `egrep`. + +- View documentation for the original command: + +`tldr -p linux egrep` diff --git a/pages/osx/genv.md b/pages/osx/genv.md new file mode 100644 index 00000000000000..4d99206d2a30fd --- /dev/null +++ b/pages/osx/genv.md @@ -0,0 +1,7 @@ +# genv + +> This command is an alias of GNU `env`. + +- View documentation for the original command: + +`tldr -p linux env` diff --git a/pages/osx/getfileinfo.md b/pages/osx/getfileinfo.md index 02681db99c80ff..611703f882dd49 100644 --- a/pages/osx/getfileinfo.md +++ b/pages/osx/getfileinfo.md @@ -1,6 +1,7 @@ # GetFileInfo > Get information about a file in an HFS+ directory. +> More information: . - Display information about a given file: diff --git a/pages/osx/gexpand.md b/pages/osx/gexpand.md new file mode 100644 index 00000000000000..1f72cd159e8156 --- /dev/null +++ b/pages/osx/gexpand.md @@ -0,0 +1,7 @@ +# gexpand + +> This command is an alias of GNU `expand`. + +- View documentation for the original command: + +`tldr -p linux expand` diff --git a/pages/osx/gexpr.md b/pages/osx/gexpr.md new file mode 100644 index 00000000000000..38a17b54fac294 --- /dev/null +++ b/pages/osx/gexpr.md @@ -0,0 +1,7 @@ +# gexpr + +> This command is an alias of GNU `expr`. + +- View documentation for the original command: + +`tldr -p linux expr` diff --git a/pages/osx/gfactor.md b/pages/osx/gfactor.md new file mode 100644 index 00000000000000..3a5bde40ddb867 --- /dev/null +++ b/pages/osx/gfactor.md @@ -0,0 +1,7 @@ +# gfactor + +> This command is an alias of GNU `factor`. + +- View documentation for the original command: + +`tldr -p linux factor` diff --git a/pages/osx/gfalse.md b/pages/osx/gfalse.md new file mode 100644 index 00000000000000..9bf3d23671c86f --- /dev/null +++ b/pages/osx/gfalse.md @@ -0,0 +1,7 @@ +# gfalse + +> This command is an alias of GNU `false`. + +- View documentation for the original command: + +`tldr -p linux false` diff --git a/pages/osx/gfgrep.md b/pages/osx/gfgrep.md new file mode 100644 index 00000000000000..ffbf829958087a --- /dev/null +++ b/pages/osx/gfgrep.md @@ -0,0 +1,7 @@ +# gfgrep + +> This command is an alias of GNU `fgrep`. + +- View documentation for the original command: + +`tldr -p linux fgrep` diff --git a/pages/osx/gfind.md b/pages/osx/gfind.md new file mode 100644 index 00000000000000..8dd6664bf666fd --- /dev/null +++ b/pages/osx/gfind.md @@ -0,0 +1,7 @@ +# gfind + +> This command is an alias of GNU `find`. + +- View documentation for the original command: + +`tldr -p linux find` diff --git a/pages/osx/gfmt.md b/pages/osx/gfmt.md new file mode 100644 index 00000000000000..10c8617c1272a7 --- /dev/null +++ b/pages/osx/gfmt.md @@ -0,0 +1,7 @@ +# gfmt + +> This command is an alias of GNU `fmt`. + +- View documentation for the original command: + +`tldr -p linux fmt` diff --git a/pages/osx/gfold.md b/pages/osx/gfold.md new file mode 100644 index 00000000000000..a90f4d45696886 --- /dev/null +++ b/pages/osx/gfold.md @@ -0,0 +1,7 @@ +# gfold + +> This command is an alias of GNU `fold`. + +- View documentation for the original command: + +`tldr -p linux fold` diff --git a/pages/osx/gftp.md b/pages/osx/gftp.md new file mode 100644 index 00000000000000..590677cd578c86 --- /dev/null +++ b/pages/osx/gftp.md @@ -0,0 +1,7 @@ +# gftp + +> This command is an alias of GNU `ftp`. + +- View documentation for the original command: + +`tldr -p linux ftp` diff --git a/pages/osx/ggrep.md b/pages/osx/ggrep.md new file mode 100644 index 00000000000000..46c87b52cfc15e --- /dev/null +++ b/pages/osx/ggrep.md @@ -0,0 +1,7 @@ +# ggrep + +> This command is an alias of GNU `grep`. + +- View documentation for the original command: + +`tldr -p linux grep` diff --git a/pages/osx/ggroups.md b/pages/osx/ggroups.md new file mode 100644 index 00000000000000..ec92f3aaf3d716 --- /dev/null +++ b/pages/osx/ggroups.md @@ -0,0 +1,7 @@ +# ggroups + +> This command is an alias of GNU `groups`. + +- View documentation for the original command: + +`tldr -p linux groups` diff --git a/pages/osx/ghead.md b/pages/osx/ghead.md new file mode 100644 index 00000000000000..9120480dda95d6 --- /dev/null +++ b/pages/osx/ghead.md @@ -0,0 +1,7 @@ +# ghead + +> This command is an alias of GNU `head`. + +- View documentation for the original command: + +`tldr -p linux head` diff --git a/pages/osx/ghostid.md b/pages/osx/ghostid.md new file mode 100644 index 00000000000000..aa135413f44aed --- /dev/null +++ b/pages/osx/ghostid.md @@ -0,0 +1,7 @@ +# ghostid + +> This command is an alias of GNU `hostid`. + +- View documentation for the original command: + +`tldr -p linux hostid` diff --git a/pages/osx/ghostname.md b/pages/osx/ghostname.md new file mode 100644 index 00000000000000..4161b753998de2 --- /dev/null +++ b/pages/osx/ghostname.md @@ -0,0 +1,7 @@ +# ghostname + +> This command is an alias of GNU `hostname`. + +- View documentation for the original command: + +`tldr -p linux hostname` diff --git a/pages/osx/gid.md b/pages/osx/gid.md new file mode 100644 index 00000000000000..e2668f0f3afc54 --- /dev/null +++ b/pages/osx/gid.md @@ -0,0 +1,7 @@ +# gid + +> This command is an alias of GNU `id`. + +- View documentation for the original command: + +`tldr -p linux id` diff --git a/pages/osx/gifconfig.md b/pages/osx/gifconfig.md new file mode 100644 index 00000000000000..7dfe9e29cc70cd --- /dev/null +++ b/pages/osx/gifconfig.md @@ -0,0 +1,7 @@ +# gifconfig + +> This command is an alias of GNU `ifconfig`. + +- View documentation for the original command: + +`tldr -p linux ifconfig` diff --git a/pages/osx/gindent.md b/pages/osx/gindent.md new file mode 100644 index 00000000000000..5be586f4de8517 --- /dev/null +++ b/pages/osx/gindent.md @@ -0,0 +1,7 @@ +# gindent + +> This command is an alias of GNU `indent`. + +- View documentation for the original command: + +`tldr -p linux indent` diff --git a/pages/osx/ginstall.md b/pages/osx/ginstall.md new file mode 100644 index 00000000000000..18d9759d94b085 --- /dev/null +++ b/pages/osx/ginstall.md @@ -0,0 +1,7 @@ +# ginstall + +> This command is an alias of GNU `install`. + +- View documentation for the original command: + +`tldr -p linux install` diff --git a/pages/osx/gjoin.md b/pages/osx/gjoin.md new file mode 100644 index 00000000000000..995f29e5043fcb --- /dev/null +++ b/pages/osx/gjoin.md @@ -0,0 +1,7 @@ +# gjoin + +> This command is an alias of GNU `join`. + +- View documentation for the original command: + +`tldr -p linux join` diff --git a/pages/osx/gkill.md b/pages/osx/gkill.md new file mode 100644 index 00000000000000..c8d30bea44e2ea --- /dev/null +++ b/pages/osx/gkill.md @@ -0,0 +1,7 @@ +# gkill + +> This command is an alias of GNU `kill`. + +- View documentation for the original command: + +`tldr -p linux kill` diff --git a/pages/osx/glibtool.md b/pages/osx/glibtool.md new file mode 100644 index 00000000000000..7eb159b55d945f --- /dev/null +++ b/pages/osx/glibtool.md @@ -0,0 +1,7 @@ +# glibtool + +> This command is an alias of GNU `libtool`. + +- View documentation for the original command: + +`tldr -p linux libtool` diff --git a/pages/osx/glibtoolize.md b/pages/osx/glibtoolize.md new file mode 100644 index 00000000000000..e9136235e5a143 --- /dev/null +++ b/pages/osx/glibtoolize.md @@ -0,0 +1,7 @@ +# glibtoolize + +> This command is an alias of GNU `libtoolize`. + +- View documentation for the original command: + +`tldr -p linux libtoolize` diff --git a/pages/osx/glink.md b/pages/osx/glink.md new file mode 100644 index 00000000000000..55355110c65deb --- /dev/null +++ b/pages/osx/glink.md @@ -0,0 +1,7 @@ +# glink + +> This command is an alias of GNU `link`. + +- View documentation for the original command: + +`tldr -p linux link` diff --git a/pages/osx/gln.md b/pages/osx/gln.md new file mode 100644 index 00000000000000..cdcc107df0bd94 --- /dev/null +++ b/pages/osx/gln.md @@ -0,0 +1,7 @@ +# gln + +> This command is an alias of GNU `ln`. + +- View documentation for the original command: + +`tldr -p linux ln` diff --git a/pages/osx/glocate.md b/pages/osx/glocate.md new file mode 100644 index 00000000000000..d56c40bff3b3cf --- /dev/null +++ b/pages/osx/glocate.md @@ -0,0 +1,7 @@ +# glocate + +> This command is an alias of GNU `locate`. + +- View documentation for the original command: + +`tldr -p linux locate` diff --git a/pages/osx/glogger.md b/pages/osx/glogger.md new file mode 100644 index 00000000000000..87e73d0d326303 --- /dev/null +++ b/pages/osx/glogger.md @@ -0,0 +1,7 @@ +# glogger + +> This command is an alias of GNU `logger`. + +- View documentation for the original command: + +`tldr -p linux logger` diff --git a/pages/osx/glogname.md b/pages/osx/glogname.md new file mode 100644 index 00000000000000..84c528e3542cb6 --- /dev/null +++ b/pages/osx/glogname.md @@ -0,0 +1,7 @@ +# glogname + +> This command is an alias of GNU `logname`. + +- View documentation for the original command: + +`tldr -p linux logname` diff --git a/pages/osx/gls.md b/pages/osx/gls.md new file mode 100644 index 00000000000000..43a5350cf8c225 --- /dev/null +++ b/pages/osx/gls.md @@ -0,0 +1,7 @@ +# gls + +> This command is an alias of GNU `ls`. + +- View documentation for the original command: + +`tldr -p linux ls` diff --git a/pages/osx/gmake.md b/pages/osx/gmake.md new file mode 100644 index 00000000000000..b6f43f8b44cec9 --- /dev/null +++ b/pages/osx/gmake.md @@ -0,0 +1,7 @@ +# gmake + +> This command is an alias of GNU `make`. + +- View documentation for the original command: + +`tldr -p linux make` diff --git a/pages/osx/gmd5sum.md b/pages/osx/gmd5sum.md new file mode 100644 index 00000000000000..015dfa4e68f158 --- /dev/null +++ b/pages/osx/gmd5sum.md @@ -0,0 +1,7 @@ +# gmd5sum + +> This command is an alias of GNU `md5sum`. + +- View documentation for the original command: + +`tldr -p linux md5sum` diff --git a/pages/osx/gmkdir.md b/pages/osx/gmkdir.md new file mode 100644 index 00000000000000..0564d7857f90c1 --- /dev/null +++ b/pages/osx/gmkdir.md @@ -0,0 +1,7 @@ +# gmkdir + +> This command is an alias of GNU `mkdir`. + +- View documentation for the original command: + +`tldr -p linux mkdir` diff --git a/pages/osx/gmkfifo.md b/pages/osx/gmkfifo.md new file mode 100644 index 00000000000000..62ea21cc36ef9b --- /dev/null +++ b/pages/osx/gmkfifo.md @@ -0,0 +1,7 @@ +# gmkfifo + +> This command is an alias of GNU `mkfifo`. + +- View documentation for the original command: + +`tldr -p linux mkfifo` diff --git a/pages/osx/gmknod.md b/pages/osx/gmknod.md new file mode 100644 index 00000000000000..a5e7f17d580171 --- /dev/null +++ b/pages/osx/gmknod.md @@ -0,0 +1,7 @@ +# gmknod + +> This command is an alias of GNU `mknod`. + +- View documentation for the original command: + +`tldr -p linux mknod` diff --git a/pages/osx/gmktemp.md b/pages/osx/gmktemp.md new file mode 100644 index 00000000000000..be99b72aa98cce --- /dev/null +++ b/pages/osx/gmktemp.md @@ -0,0 +1,7 @@ +# gmktemp + +> This command is an alias of GNU `mktemp`. + +- View documentation for the original command: + +`tldr -p linux mktemp` diff --git a/pages/osx/gmv.md b/pages/osx/gmv.md new file mode 100644 index 00000000000000..779755bc8783c4 --- /dev/null +++ b/pages/osx/gmv.md @@ -0,0 +1,7 @@ +# gmv + +> This command is an alias of GNU `mv`. + +- View documentation for the original command: + +`tldr -p linux mv` diff --git a/pages/osx/gnice.md b/pages/osx/gnice.md new file mode 100644 index 00000000000000..462548209ef008 --- /dev/null +++ b/pages/osx/gnice.md @@ -0,0 +1,7 @@ +# gnice + +> This command is an alias of GNU `nice`. + +- View documentation for the original command: + +`tldr -p linux nice` diff --git a/pages/osx/gnl.md b/pages/osx/gnl.md new file mode 100644 index 00000000000000..6edb948387aa35 --- /dev/null +++ b/pages/osx/gnl.md @@ -0,0 +1,7 @@ +# gnl + +> This command is an alias of GNU `nl`. + +- View documentation for the original command: + +`tldr -p linux nl` diff --git a/pages/osx/gnohup.md b/pages/osx/gnohup.md new file mode 100644 index 00000000000000..9dc722dbcf0531 --- /dev/null +++ b/pages/osx/gnohup.md @@ -0,0 +1,7 @@ +# gnohup + +> This command is an alias of GNU `nohup`. + +- View documentation for the original command: + +`tldr -p linux nohup` diff --git a/pages/osx/gnproc.md b/pages/osx/gnproc.md new file mode 100644 index 00000000000000..a9149ea67976e1 --- /dev/null +++ b/pages/osx/gnproc.md @@ -0,0 +1,7 @@ +# gnproc + +> This command is an alias of GNU `nproc`. + +- View documentation for the original command: + +`tldr -p linux nproc` diff --git a/pages/osx/gnumfmt.md b/pages/osx/gnumfmt.md new file mode 100644 index 00000000000000..2e7b72a86127d0 --- /dev/null +++ b/pages/osx/gnumfmt.md @@ -0,0 +1,7 @@ +# gnumfmt + +> This command is an alias of GNU `numfmt`. + +- View documentation for the original command: + +`tldr -p linux numfmt` diff --git a/pages/osx/god.md b/pages/osx/god.md new file mode 100644 index 00000000000000..dfbea28a009f67 --- /dev/null +++ b/pages/osx/god.md @@ -0,0 +1,7 @@ +# god + +> This command is an alias of GNU `od`. + +- View documentation for the original command: + +`tldr -p linux od` diff --git a/pages/osx/gpaste.md b/pages/osx/gpaste.md new file mode 100644 index 00000000000000..68365be5750f9f --- /dev/null +++ b/pages/osx/gpaste.md @@ -0,0 +1,7 @@ +# gpaste + +> This command is an alias of GNU `paste`. + +- View documentation for the original command: + +`tldr -p linux paste` diff --git a/pages/osx/gpathchk.md b/pages/osx/gpathchk.md new file mode 100644 index 00000000000000..0676e2e9d69d97 --- /dev/null +++ b/pages/osx/gpathchk.md @@ -0,0 +1,7 @@ +# gpathchk + +> This command is an alias of GNU `pathchk`. + +- View documentation for the original command: + +`tldr -p linux pathchk` diff --git a/pages/osx/gping.md b/pages/osx/gping.md new file mode 100644 index 00000000000000..1932c2462a5721 --- /dev/null +++ b/pages/osx/gping.md @@ -0,0 +1,7 @@ +# gping + +> This command is an alias of GNU `ping`. + +- View documentation for the original command: + +`tldr -p linux ping` diff --git a/pages/osx/gping6.md b/pages/osx/gping6.md new file mode 100644 index 00000000000000..910d36026063d8 --- /dev/null +++ b/pages/osx/gping6.md @@ -0,0 +1,7 @@ +# gping6 + +> This command is an alias of GNU `ping6`. + +- View documentation for the original command: + +`tldr -p linux ping6` diff --git a/pages/osx/gpinky.md b/pages/osx/gpinky.md new file mode 100644 index 00000000000000..1a852908863d25 --- /dev/null +++ b/pages/osx/gpinky.md @@ -0,0 +1,7 @@ +# gpinky + +> This command is an alias of GNU `pinky`. + +- View documentation for the original command: + +`tldr -p linux pinky` diff --git a/pages/osx/gpr.md b/pages/osx/gpr.md new file mode 100644 index 00000000000000..4059ca2706978d --- /dev/null +++ b/pages/osx/gpr.md @@ -0,0 +1,7 @@ +# gpr + +> This command is an alias of GNU `pr`. + +- View documentation for the original command: + +`tldr -p linux pr` diff --git a/pages/osx/gprintenv.md b/pages/osx/gprintenv.md new file mode 100644 index 00000000000000..9fc704f83cbed0 --- /dev/null +++ b/pages/osx/gprintenv.md @@ -0,0 +1,7 @@ +# gprintenv + +> This command is an alias of GNU `printenv`. + +- View documentation for the original command: + +`tldr -p linux printenv` diff --git a/pages/osx/gprintf.md b/pages/osx/gprintf.md new file mode 100644 index 00000000000000..cc49c3df671fa1 --- /dev/null +++ b/pages/osx/gprintf.md @@ -0,0 +1,7 @@ +# gprintf + +> This command is an alias of GNU `printf`. + +- View documentation for the original command: + +`tldr -p linux printf` diff --git a/pages/osx/gptx.md b/pages/osx/gptx.md new file mode 100644 index 00000000000000..ced11d521b6bab --- /dev/null +++ b/pages/osx/gptx.md @@ -0,0 +1,7 @@ +# gptx + +> This command is an alias of GNU `ptx`. + +- View documentation for the original command: + +`tldr -p linux ptx` diff --git a/pages/osx/gpwd.md b/pages/osx/gpwd.md new file mode 100644 index 00000000000000..a3efce0be48c1b --- /dev/null +++ b/pages/osx/gpwd.md @@ -0,0 +1,7 @@ +# gpwd + +> This command is an alias of GNU `pwd`. + +- View documentation for the original command: + +`tldr -p linux pwd` diff --git a/pages/osx/grcp.md b/pages/osx/grcp.md new file mode 100644 index 00000000000000..50e49aed62abbf --- /dev/null +++ b/pages/osx/grcp.md @@ -0,0 +1,7 @@ +# grcp + +> This command is an alias of GNU `rcp`. + +- View documentation for the original command: + +`tldr -p linux rcp` diff --git a/pages/osx/greadlink.md b/pages/osx/greadlink.md new file mode 100644 index 00000000000000..cca5b86fe52aac --- /dev/null +++ b/pages/osx/greadlink.md @@ -0,0 +1,7 @@ +# greadlink + +> This command is an alias of GNU `readlink`. + +- View documentation for the original command: + +`tldr -p linux readlink` diff --git a/pages/osx/grealpath.md b/pages/osx/grealpath.md new file mode 100644 index 00000000000000..cba404d1f230dc --- /dev/null +++ b/pages/osx/grealpath.md @@ -0,0 +1,7 @@ +# grealpath + +> This command is an alias of GNU `realpath`. + +- View documentation for the original command: + +`tldr -p linux realpath` diff --git a/pages/osx/grexec.md b/pages/osx/grexec.md new file mode 100644 index 00000000000000..22ac32385a5137 --- /dev/null +++ b/pages/osx/grexec.md @@ -0,0 +1,7 @@ +# grexec + +> This command is an alias of GNU `rexec`. + +- View documentation for the original command: + +`tldr -p linux rexec` diff --git a/pages/osx/grlogin.md b/pages/osx/grlogin.md new file mode 100644 index 00000000000000..10f21d594c6b47 --- /dev/null +++ b/pages/osx/grlogin.md @@ -0,0 +1,7 @@ +# grlogin + +> This command is an alias of GNU `rlogin`. + +- View documentation for the original command: + +`tldr -p linux rlogin` diff --git a/pages/osx/grm.md b/pages/osx/grm.md new file mode 100644 index 00000000000000..40f14810befc02 --- /dev/null +++ b/pages/osx/grm.md @@ -0,0 +1,7 @@ +# grm + +> This command is an alias of GNU `rm`. + +- View documentation for the original command: + +`tldr -p linux rm` diff --git a/pages/osx/grmdir.md b/pages/osx/grmdir.md new file mode 100644 index 00000000000000..8493d16c8c240c --- /dev/null +++ b/pages/osx/grmdir.md @@ -0,0 +1,7 @@ +# grmdir + +> This command is an alias of GNU `rmdir`. + +- View documentation for the original command: + +`tldr -p linux rmdir` diff --git a/pages/osx/grsh.md b/pages/osx/grsh.md new file mode 100644 index 00000000000000..bdfe348452f2e9 --- /dev/null +++ b/pages/osx/grsh.md @@ -0,0 +1,7 @@ +# grsh + +> This command is an alias of GNU `rsh`. + +- View documentation for the original command: + +`tldr -p linux rsh` diff --git a/pages/osx/gruncon.md b/pages/osx/gruncon.md new file mode 100644 index 00000000000000..97d0b961b78640 --- /dev/null +++ b/pages/osx/gruncon.md @@ -0,0 +1,7 @@ +# gruncon + +> This command is an alias of GNU `runcon`. + +- View documentation for the original command: + +`tldr -p linux runcon` diff --git a/pages/osx/gsed.md b/pages/osx/gsed.md new file mode 100644 index 00000000000000..bda935e4a01055 --- /dev/null +++ b/pages/osx/gsed.md @@ -0,0 +1,7 @@ +# gsed + +> This command is an alias of GNU `sed`. + +- View documentation for the original command: + +`tldr -p linux sed` diff --git a/pages/osx/gseq.md b/pages/osx/gseq.md new file mode 100644 index 00000000000000..c3d37db78238cf --- /dev/null +++ b/pages/osx/gseq.md @@ -0,0 +1,7 @@ +# gseq + +> This command is an alias of GNU `seq`. + +- View documentation for the original command: + +`tldr -p linux seq` diff --git a/pages/osx/gsha1sum.md b/pages/osx/gsha1sum.md new file mode 100644 index 00000000000000..0a5f54268cf513 --- /dev/null +++ b/pages/osx/gsha1sum.md @@ -0,0 +1,7 @@ +# gsha1sum + +> This command is an alias of GNU `sha1sum`. + +- View documentation for the original command: + +`tldr -p linux sha1sum` diff --git a/pages/osx/gsha224sum.md b/pages/osx/gsha224sum.md new file mode 100644 index 00000000000000..07d85adebb0568 --- /dev/null +++ b/pages/osx/gsha224sum.md @@ -0,0 +1,7 @@ +# gsha224sum + +> This command is an alias of GNU `sha224sum`. + +- View documentation for the original command: + +`tldr -p linux sha224sum` diff --git a/pages/osx/gsha256sum.md b/pages/osx/gsha256sum.md new file mode 100644 index 00000000000000..5c8c049bde4a85 --- /dev/null +++ b/pages/osx/gsha256sum.md @@ -0,0 +1,7 @@ +# gsha256sum + +> This command is an alias of GNU `sha256sum`. + +- View documentation for the original command: + +`tldr -p linux sha256sum` diff --git a/pages/osx/gsha384sum.md b/pages/osx/gsha384sum.md new file mode 100644 index 00000000000000..91a460ccb2b0fc --- /dev/null +++ b/pages/osx/gsha384sum.md @@ -0,0 +1,7 @@ +# gsha384sum + +> This command is an alias of GNU `sha384sum`. + +- View documentation for the original command: + +`tldr -p linux sha384sum` diff --git a/pages/osx/gsha512sum.md b/pages/osx/gsha512sum.md new file mode 100644 index 00000000000000..6c58b0c7de8284 --- /dev/null +++ b/pages/osx/gsha512sum.md @@ -0,0 +1,7 @@ +# gsha512sum + +> This command is an alias of GNU `sha512sum`. + +- View documentation for the original command: + +`tldr -p linux sha512sum` diff --git a/pages/osx/gshred.md b/pages/osx/gshred.md new file mode 100644 index 00000000000000..0e5496af0d0c31 --- /dev/null +++ b/pages/osx/gshred.md @@ -0,0 +1,7 @@ +# gshred + +> This command is an alias of GNU `shred`. + +- View documentation for the original command: + +`tldr -p linux shred` diff --git a/pages/osx/gshuf.md b/pages/osx/gshuf.md new file mode 100644 index 00000000000000..e6abe970e772eb --- /dev/null +++ b/pages/osx/gshuf.md @@ -0,0 +1,7 @@ +# gshuf + +> This command is an alias of GNU `shuf`. + +- View documentation for the original command: + +`tldr -p linux shuf` diff --git a/pages/osx/gsleep.md b/pages/osx/gsleep.md new file mode 100644 index 00000000000000..07ee636b10d5d3 --- /dev/null +++ b/pages/osx/gsleep.md @@ -0,0 +1,7 @@ +# gsleep + +> This command is an alias of GNU `sleep`. + +- View documentation for the original command: + +`tldr -p linux sleep` diff --git a/pages/osx/gsort.md b/pages/osx/gsort.md new file mode 100644 index 00000000000000..ec9d2c0b7950f1 --- /dev/null +++ b/pages/osx/gsort.md @@ -0,0 +1,7 @@ +# gsort + +> This command is an alias of GNU `sort`. + +- View documentation for the original command: + +`tldr -p linux sort` diff --git a/pages/osx/gsplit.md b/pages/osx/gsplit.md new file mode 100644 index 00000000000000..e7e5f01b706dda --- /dev/null +++ b/pages/osx/gsplit.md @@ -0,0 +1,7 @@ +# gsplit + +> This command is an alias of GNU `split`. + +- View documentation for the original command: + +`tldr -p linux split` diff --git a/pages/osx/gstat.md b/pages/osx/gstat.md new file mode 100644 index 00000000000000..b4fee069ee5360 --- /dev/null +++ b/pages/osx/gstat.md @@ -0,0 +1,7 @@ +# gstat + +> This command is an alias of GNU `stat`. + +- View documentation for the original command: + +`tldr -p linux stat` diff --git a/pages/osx/gstdbuf.md b/pages/osx/gstdbuf.md new file mode 100644 index 00000000000000..2a77cec5a11ea8 --- /dev/null +++ b/pages/osx/gstdbuf.md @@ -0,0 +1,7 @@ +# gstdbuf + +> This command is an alias of GNU `stdbuf`. + +- View documentation for the original command: + +`tldr -p linux stdbuf` diff --git a/pages/osx/gstty.md b/pages/osx/gstty.md new file mode 100644 index 00000000000000..392df0d4b86ce9 --- /dev/null +++ b/pages/osx/gstty.md @@ -0,0 +1,7 @@ +# gstty + +> This command is an alias of GNU `stty`. + +- View documentation for the original command: + +`tldr -p linux stty` diff --git a/pages/osx/gsum.md b/pages/osx/gsum.md new file mode 100644 index 00000000000000..bbc31009745dea --- /dev/null +++ b/pages/osx/gsum.md @@ -0,0 +1,7 @@ +# gsum + +> This command is an alias of GNU `sum`. + +- View documentation for the original command: + +`tldr -p linux sum` diff --git a/pages/osx/gsync.md b/pages/osx/gsync.md new file mode 100644 index 00000000000000..8e2e52002e82f9 --- /dev/null +++ b/pages/osx/gsync.md @@ -0,0 +1,7 @@ +# gsync + +> This command is an alias of GNU `sync`. + +- View documentation for the original command: + +`tldr -p linux sync` diff --git a/pages/osx/gtac.md b/pages/osx/gtac.md new file mode 100644 index 00000000000000..1b98194d6553c3 --- /dev/null +++ b/pages/osx/gtac.md @@ -0,0 +1,7 @@ +# gtac + +> This command is an alias of GNU `tac`. + +- View documentation for the original command: + +`tldr -p linux tac` diff --git a/pages/osx/gtail.md b/pages/osx/gtail.md new file mode 100644 index 00000000000000..a70ed5679a3df3 --- /dev/null +++ b/pages/osx/gtail.md @@ -0,0 +1,7 @@ +# gtail + +> This command is an alias of GNU `tail`. + +- View documentation for the original command: + +`tldr -p linux tail` diff --git a/pages/osx/gtalk.md b/pages/osx/gtalk.md new file mode 100644 index 00000000000000..ac6bad71678cef --- /dev/null +++ b/pages/osx/gtalk.md @@ -0,0 +1,7 @@ +# gtalk + +> This command is an alias of GNU `talk`. + +- View documentation for the original command: + +`tldr -p linux talk` diff --git a/pages/osx/gtar.md b/pages/osx/gtar.md new file mode 100644 index 00000000000000..54290d4dd52ebe --- /dev/null +++ b/pages/osx/gtar.md @@ -0,0 +1,7 @@ +# gtar + +> This command is an alias of GNU `tar`. + +- View documentation for the original command: + +`tldr -p linux tar` diff --git a/pages/osx/gtee.md b/pages/osx/gtee.md new file mode 100644 index 00000000000000..e9c68c05e277df --- /dev/null +++ b/pages/osx/gtee.md @@ -0,0 +1,7 @@ +# gtee + +> This command is an alias of GNU `tee`. + +- View documentation for the original command: + +`tldr -p linux tee` diff --git a/pages/osx/gtelnet.md b/pages/osx/gtelnet.md new file mode 100644 index 00000000000000..f50e332d54c967 --- /dev/null +++ b/pages/osx/gtelnet.md @@ -0,0 +1,7 @@ +# gtelnet + +> This command is an alias of GNU `telnet`. + +- View documentation for the original command: + +`tldr -p linux telnet` diff --git a/pages/osx/gtest.md b/pages/osx/gtest.md new file mode 100644 index 00000000000000..bbba581d8f1b9f --- /dev/null +++ b/pages/osx/gtest.md @@ -0,0 +1,7 @@ +# gtest + +> This command is an alias of GNU `test`. + +- View documentation for the original command: + +`tldr -p linux test` diff --git a/pages/osx/gtftp.md b/pages/osx/gtftp.md new file mode 100644 index 00000000000000..3cdbb6e5ab312e --- /dev/null +++ b/pages/osx/gtftp.md @@ -0,0 +1,7 @@ +# gtftp + +> This command is an alias of GNU `tftp`. + +- View documentation for the original command: + +`tldr -p linux tftp` diff --git a/pages/osx/gtime.md b/pages/osx/gtime.md new file mode 100644 index 00000000000000..a30d77d148af0d --- /dev/null +++ b/pages/osx/gtime.md @@ -0,0 +1,7 @@ +# gtime + +> This command is an alias of GNU `time`. + +- View documentation for the original command: + +`tldr -p linux time` diff --git a/pages/osx/gtimeout.md b/pages/osx/gtimeout.md new file mode 100644 index 00000000000000..1723c65905a180 --- /dev/null +++ b/pages/osx/gtimeout.md @@ -0,0 +1,7 @@ +# gtimeout + +> This command is an alias of GNU `timeout`. + +- View documentation for the original command: + +`tldr -p linux timeout` diff --git a/pages/osx/gtouch.md b/pages/osx/gtouch.md new file mode 100644 index 00000000000000..5d4aa649d706e9 --- /dev/null +++ b/pages/osx/gtouch.md @@ -0,0 +1,7 @@ +# gtouch + +> This command is an alias of GNU `touch`. + +- View documentation for the original command: + +`tldr -p linux touch` diff --git a/pages/osx/gtr.md b/pages/osx/gtr.md new file mode 100644 index 00000000000000..e58e36de63e06b --- /dev/null +++ b/pages/osx/gtr.md @@ -0,0 +1,7 @@ +# gtr + +> This command is an alias of GNU `tr`. + +- View documentation for the original command: + +`tldr -p linux tr` diff --git a/pages/osx/gtraceroute.md b/pages/osx/gtraceroute.md new file mode 100644 index 00000000000000..08dce4b0216585 --- /dev/null +++ b/pages/osx/gtraceroute.md @@ -0,0 +1,7 @@ +# gtraceroute + +> This command is an alias of GNU `traceroute`. + +- View documentation for the original command: + +`tldr -p linux traceroute` diff --git a/pages/osx/gtrue.md b/pages/osx/gtrue.md new file mode 100644 index 00000000000000..bb5d46e4f0bef6 --- /dev/null +++ b/pages/osx/gtrue.md @@ -0,0 +1,7 @@ +# gtrue + +> This command is an alias of GNU `true`. + +- View documentation for the original command: + +`tldr -p linux true` diff --git a/pages/osx/gtruncate.md b/pages/osx/gtruncate.md new file mode 100644 index 00000000000000..bcd424ea402cb7 --- /dev/null +++ b/pages/osx/gtruncate.md @@ -0,0 +1,7 @@ +# gtruncate + +> This command is an alias of GNU `truncate`. + +- View documentation for the original command: + +`tldr -p linux truncate` diff --git a/pages/osx/gtsort.md b/pages/osx/gtsort.md new file mode 100644 index 00000000000000..cb38f778cb9a3d --- /dev/null +++ b/pages/osx/gtsort.md @@ -0,0 +1,7 @@ +# gtsort + +> This command is an alias of GNU `tsort`. + +- View documentation for the original command: + +`tldr -p linux tsort` diff --git a/pages/osx/gtty.md b/pages/osx/gtty.md new file mode 100644 index 00000000000000..cb5732522a244d --- /dev/null +++ b/pages/osx/gtty.md @@ -0,0 +1,7 @@ +# gtty + +> This command is an alias of GNU `tty`. + +- View documentation for the original command: + +`tldr -p linux tty` diff --git a/pages/osx/guname.md b/pages/osx/guname.md new file mode 100644 index 00000000000000..32912d04e5fe04 --- /dev/null +++ b/pages/osx/guname.md @@ -0,0 +1,7 @@ +# guname + +> This command is an alias of GNU `uname`. + +- View documentation for the original command: + +`tldr -p linux uname` diff --git a/pages/osx/gunexpand.md b/pages/osx/gunexpand.md new file mode 100644 index 00000000000000..57d09ef0292734 --- /dev/null +++ b/pages/osx/gunexpand.md @@ -0,0 +1,7 @@ +# gunexpand + +> This command is an alias of GNU `unexpand`. + +- View documentation for the original command: + +`tldr -p linux unexpand` diff --git a/pages/osx/guniq.md b/pages/osx/guniq.md new file mode 100644 index 00000000000000..7c1281ef70503e --- /dev/null +++ b/pages/osx/guniq.md @@ -0,0 +1,7 @@ +# guniq + +> This command is an alias of GNU `uniq`. + +- View documentation for the original command: + +`tldr -p linux uniq` diff --git a/pages/osx/gunits.md b/pages/osx/gunits.md new file mode 100644 index 00000000000000..a54ffe4dd45a19 --- /dev/null +++ b/pages/osx/gunits.md @@ -0,0 +1,7 @@ +# gunits + +> This command is an alias of GNU `units`. + +- View documentation for the original command: + +`tldr -p linux units` diff --git a/pages/osx/gunlink.md b/pages/osx/gunlink.md new file mode 100644 index 00000000000000..a438bfcd1bd424 --- /dev/null +++ b/pages/osx/gunlink.md @@ -0,0 +1,7 @@ +# gunlink + +> This command is an alias of GNU `unlink`. + +- View documentation for the original command: + +`tldr -p linux unlink` diff --git a/pages/osx/gupdatedb.md b/pages/osx/gupdatedb.md new file mode 100644 index 00000000000000..b4a09236b92bf2 --- /dev/null +++ b/pages/osx/gupdatedb.md @@ -0,0 +1,7 @@ +# gupdatedb + +> This command is an alias of GNU `updatedb`. + +- View documentation for the original command: + +`tldr -p linux updatedb` diff --git a/pages/osx/guptime.md b/pages/osx/guptime.md new file mode 100644 index 00000000000000..c0ed1440796679 --- /dev/null +++ b/pages/osx/guptime.md @@ -0,0 +1,7 @@ +# guptime + +> This command is an alias of GNU `uptime`. + +- View documentation for the original command: + +`tldr -p linux uptime` diff --git a/pages/osx/gusers.md b/pages/osx/gusers.md new file mode 100644 index 00000000000000..a996e1a10285e4 --- /dev/null +++ b/pages/osx/gusers.md @@ -0,0 +1,7 @@ +# gusers + +> This command is an alias of GNU `users`. + +- View documentation for the original command: + +`tldr -p linux users` diff --git a/pages/osx/gvdir.md b/pages/osx/gvdir.md new file mode 100644 index 00000000000000..2f7aabc5fb7cc2 --- /dev/null +++ b/pages/osx/gvdir.md @@ -0,0 +1,7 @@ +# gvdir + +> This command is an alias of GNU `vdir`. + +- View documentation for the original command: + +`tldr -p linux vdir` diff --git a/pages/osx/gwc.md b/pages/osx/gwc.md new file mode 100644 index 00000000000000..3a937dfe2d2bd0 --- /dev/null +++ b/pages/osx/gwc.md @@ -0,0 +1,7 @@ +# gwc + +> This command is an alias of GNU `wc`. + +- View documentation for the original command: + +`tldr -p linux wc` diff --git a/pages/osx/gwhich.md b/pages/osx/gwhich.md new file mode 100644 index 00000000000000..aaa93b0182af88 --- /dev/null +++ b/pages/osx/gwhich.md @@ -0,0 +1,7 @@ +# gwhich + +> This command is an alias of GNU `which`. + +- View documentation for the original command: + +`tldr -p linux which` diff --git a/pages/osx/gwho.md b/pages/osx/gwho.md new file mode 100644 index 00000000000000..e2e1db7dfdf45d --- /dev/null +++ b/pages/osx/gwho.md @@ -0,0 +1,7 @@ +# gwho + +> This command is an alias of GNU `who`. + +- View documentation for the original command: + +`tldr -p linux who` diff --git a/pages/osx/gwhoami.md b/pages/osx/gwhoami.md new file mode 100644 index 00000000000000..d12f047daa5012 --- /dev/null +++ b/pages/osx/gwhoami.md @@ -0,0 +1,7 @@ +# gwhoami + +> This command is an alias of GNU `whoami`. + +- View documentation for the original command: + +`tldr -p linux whoami` diff --git a/pages/osx/gwhois.md b/pages/osx/gwhois.md new file mode 100644 index 00000000000000..95a3d431769f73 --- /dev/null +++ b/pages/osx/gwhois.md @@ -0,0 +1,7 @@ +# gwhois + +> This command is an alias of GNU `whois`. + +- View documentation for the original command: + +`tldr -p linux whois` diff --git a/pages/osx/gxargs.md b/pages/osx/gxargs.md new file mode 100644 index 00000000000000..3574a8bd6b0fba --- /dev/null +++ b/pages/osx/gxargs.md @@ -0,0 +1,7 @@ +# gxargs + +> This command is an alias of GNU `xargs`. + +- View documentation for the original command: + +`tldr -p linux xargs` diff --git a/pages/osx/gyes.md b/pages/osx/gyes.md new file mode 100644 index 00000000000000..04dfcca86d8247 --- /dev/null +++ b/pages/osx/gyes.md @@ -0,0 +1,7 @@ +# gyes + +> This command is an alias of GNU `yes`. + +- View documentation for the original command: + +`tldr -p linux yes` diff --git a/pages/osx/hdiutil.md b/pages/osx/hdiutil.md index 9d1107067a020a..e0520662d4db7b 100644 --- a/pages/osx/hdiutil.md +++ b/pages/osx/hdiutil.md @@ -1,6 +1,7 @@ # hdiutil > Utility to create and manage disk images. +> More information: . - Mount an image: @@ -8,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 index 993a1f8f1dd7af..80a740f90007ac 100644 --- a/pages/osx/head.md +++ b/pages/osx/head.md @@ -1,11 +1,20 @@ # head > Output the first part of files. +> More information: . - Output the first few lines of a file: -`head -n {{count_of_lines}} {{filename}}` +`head --lines {{8}} {{path/to/file}}` - Output the first few bytes of a file: -`head -c {{number_in_bytes}} {{filename}}` +`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/hexdump.md b/pages/osx/hexdump.md deleted file mode 100644 index b0463261cfcb6e..00000000000000 --- a/pages/osx/hexdump.md +++ /dev/null @@ -1,15 +0,0 @@ -# hexdump - -> An ASCII, decimal, hexadecimal, octal dump. - -- Print the hexadecimal representation of a file: - -`hexdump {{file}}` - -- Display the input offset in hexadecimal and its ASCII representation in two columns: - -`hexdump -C {{file}}` - -- Display the hexadecimal representation of a file, but interpret only n bytes of the input: - -`hexdump -C -n{{number_of_bytes}} {{file}}` diff --git a/pages/osx/hidd.md b/pages/osx/hidd.md new file mode 100644 index 00000000000000..ba5417967f68e0 --- /dev/null +++ b/pages/osx/hidd.md @@ -0,0 +1,9 @@ +# hidd + +> HID library userland daemon. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`hidd` diff --git a/pages/osx/hostname.md b/pages/osx/hostname.md deleted file mode 100644 index 88d0981d6bddfe..00000000000000 --- a/pages/osx/hostname.md +++ /dev/null @@ -1,11 +0,0 @@ -# hostname - -> Show or set the system's host name. - -- Show current host name: - -`hostname` - -- Set current host name: - -`hostname {{new_hostname}}` diff --git a/pages/osx/icalbuddy.md b/pages/osx/icalbuddy.md index 03ba88c0a713c2..7006340c01ee5b 100644 --- a/pages/osx/icalbuddy.md +++ b/pages/osx/icalbuddy.md @@ -5,7 +5,7 @@ - Show events later today: -`icalBuddy -n eventsToday` +`icalBuddy --includeOnlyEventsFromNowOn eventsToday` - Show uncompleted tasks: @@ -13,12 +13,12 @@ - Show a formatted list separated by calendar for all events today: -`icalBuddy -f -sc eventsToday` +`icalBuddy --formatOutput --separateByCalendar eventsToday` - Show tasks for a specified number of days: -`icalBuddy -n tasksDueBefore:today+{{days}}` +`icalBuddy --includeOnlyEventsFromNowOn "tasksDueBefore:today+{{8}}"` - Show events in a time range: -`icalBuddy eventsFrom:'{{start_date}}' to:'{{end_date}}'` +`icalBuddy eventsFrom:{{start_date}} to:{{end_date}}` diff --git a/pages/osx/imgcat.md b/pages/osx/imgcat.md index 0b97ee824eb1c2..4b76e0be7c3aca 100644 --- a/pages/osx/imgcat.md +++ b/pages/osx/imgcat.md @@ -1,8 +1,9 @@ # imgcat -> A utility to display images directly on the command line. +> A utility to display images directly on the command-line. > Requires a compatible terminal such as iTerm2. +> More information: . -- Display an image on the command line: +- Display an image on the command-line: `imgcat {{filename}}` diff --git a/pages/osx/indent.md b/pages/osx/indent.md index cf9d91a349cb54..8d3c96459ace0e 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 Kernigan & Ritchie (K&R): +- 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/internetsharing.md b/pages/osx/internetsharing.md new file mode 100644 index 00000000000000..bb56b64c512681 --- /dev/null +++ b/pages/osx/internetsharing.md @@ -0,0 +1,9 @@ +# InternetSharing + +> Sets up Internet Sharing. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`InternetSharing` diff --git a/pages/osx/java_home.md b/pages/osx/java_home.md new file mode 100644 index 00000000000000..9561a32c93bf3b --- /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/kmutil.md b/pages/osx/kmutil.md new file mode 100644 index 00000000000000..5cc09eae47d1ca --- /dev/null +++ b/pages/osx/kmutil.md @@ -0,0 +1,28 @@ +# kmutil + +> Utility for managing kernel extensions (kexts) and kext collections on disk. +> More information: . + +- Find kexts available on the operating system: + +`kmutil find` + +- Display logging information about the Kernel Management sub-system: + +`kmutil log` + +- Inspect and display a kext collection's contents according to the options provided: + +`kmutil inspect {{options}}` + +- Check the consistency of kext collections against each other: + +`kmutil check` + +- Dump kernelmanagerd state for debugging: + +`sudo kmutil dumpstate` + +- Load one or more extensions based on the bundle specified at this path in the results: + +`kmutil load --bundle-path {{path/to/extension.kext}}` diff --git a/pages/osx/launchctl.md b/pages/osx/launchctl.md index 34b4f0ed05d09f..64dc41d3c9d9b8 100644 --- a/pages/osx/launchctl.md +++ b/pages/osx/launchctl.md @@ -2,6 +2,7 @@ > A command-line interface to 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: . - Activate a user-specific agent to be loaded into `launchd` whenever the user logs in: @@ -25,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/launchd.md b/pages/osx/launchd.md new file mode 100644 index 00000000000000..5e7f4b76f1887b --- /dev/null +++ b/pages/osx/launchd.md @@ -0,0 +1,13 @@ +# launchd + +> This manages processes, both for the system and users. +> You cannot invoke launchd manually, use launchctl to interact with it. +> More information: . + +- Run init: + +`/sbin/launchd` + +- View documentation for interacting with launchd using launchctl: + +`tldr launchctl` diff --git a/pages/osx/lex.md b/pages/osx/lex.md new file mode 100644 index 00000000000000..8f005f4c91a988 --- /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 new file mode 100644 index 00000000000000..336186c6630e50 --- /dev/null +++ b/pages/osx/lipo.md @@ -0,0 +1,20 @@ +# lipo + +> Tool for handling Mach-O Universal Binaries. +> More information: . + +- Create a universal file from two single-architecture files: + +`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_file}} -archs` + +- Display detailed information about a universal file: + +`lipo {{path/to/binary_file}} -detailed_info` + +- Extract a single-architecture file from a universal file: + +`lipo {{path/to/binary_file}} -thin {{arm64e}} -output {{path/to/binary_file.arm64e}}` diff --git a/pages/osx/lldb.md b/pages/osx/lldb.md index 8255dc7e368e5b..e06333940aaa9c 100644 --- a/pages/osx/lldb.md +++ b/pages/osx/lldb.md @@ -1,10 +1,11 @@ # lldb > The LLVM Low-Level Debugger. +> More information: . - Debug an executable: -`lldb {{executable}}` +`lldb "{{executable}}"` - Attach `lldb` to a running process with a given PID: @@ -12,4 +13,4 @@ - Wait for a new process to launch with a given name, and attach to it: -`lldb -w -n {{process_name}}` +`lldb -w -n "{{process_name}}"` diff --git a/pages/osx/llvm-lipo.md b/pages/osx/llvm-lipo.md new file mode 100644 index 00000000000000..98a34e4097eb97 --- /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/locate.md b/pages/osx/locate.md index aaa66a987538bd..406b8b2bfe0fef 100644 --- a/pages/osx/locate.md +++ b/pages/osx/locate.md @@ -1,10 +1,11 @@ # locate > Find filenames quickly. +> More information: . - Look for pattern in the database. Note: the database is recomputed periodically (usually weekly or daily): -`locate {{pattern}}` +`locate "{{pattern}}"` - Look for a file by its exact filename (a pattern containing no globbing characters is interpreted as `*pattern*`): diff --git a/pages/osx/log.md b/pages/osx/log.md new file mode 100644 index 00000000000000..cd420e46f89d90 --- /dev/null +++ b/pages/osx/log.md @@ -0,0 +1,20 @@ +# log + +> View, export, and configure logging systems. +> More information: . + +- Stream live system logs: + +`log stream` + +- Stream logs sent to `syslog` from the process with a specific PID: + +`log stream --process {{process_id}}` + +- Show logs sent to syslog from a process with a specific name: + +`log show --predicate "process == '{{process_name}}'"` + +- Export all logs to disk for the past hour: + +`sudo log collect --last {{1h}} --output {{path/to/file.logarchive}}` diff --git a/pages/osx/logger.md b/pages/osx/logger.md deleted file mode 100644 index d5bad38eb66997..00000000000000 --- a/pages/osx/logger.md +++ /dev/null @@ -1,23 +0,0 @@ -# logger - -> Add messages to syslog (/var/log/syslog). - -- Log a message to syslog: - -`logger {{message}}` - -- Take input from stdin and log to syslog: - -`echo {{log_entry}} | logger` - -- Send the output to a remote syslog server running at a given port. Default port is 514: - -`echo {{log_entry}} | logger -h {{hostname}} -P {{port}}` - -- Use a specific tag for every line logged. Default is the name of logged in user: - -`echo {{log_entry}} | logger -t {{tag}}` - -- Log messages with a given priority. Default is `user.notice`. See `man logger` for all priority options: - -`echo {{log_entry}} | logger -p {{user.warning}}` diff --git a/pages/osx/look.md b/pages/osx/look.md index 3ef7c169dd76b0..eb9079ca828521 100644 --- a/pages/osx/look.md +++ b/pages/osx/look.md @@ -1,11 +1,12 @@ # look > Look for lines in sorted file. +> More information: . - Look for lines which begins with the given prefix: -`look {{prefix}} {{file}}` +`look {{prefix}} {{path/to/file}}` - Look for lines ignoring case: -`look -f {{prefix}} {{file}}` +`look --ignore-case {{prefix}} {{path/to/file}}` diff --git a/pages/osx/lpstat.md b/pages/osx/lpstat.md new file mode 100644 index 00000000000000..b58b0fbc07ea7a --- /dev/null +++ b/pages/osx/lpstat.md @@ -0,0 +1,24 @@ +# lpstat + +> Display status information about the current classes, jobs, and printers. +> More information: . + +- Show a long listing of printers, classes, and jobs: + +`lpstat -l` + +- Force encryption when connecting to the CUPS server: + +`lpstat -E` + +- Show the ranking of print jobs: + +`lpstat -R` + +- Show whether or not the CUPS server is running: + +`lpstat -r` + +- Show all status information: + +`lpstat -t` diff --git a/pages/osx/m.md b/pages/osx/m.md index d790c6fbbfca1a..be7ad70308205a 100644 --- a/pages/osx/m.md +++ b/pages/osx/m.md @@ -1,12 +1,13 @@ # m > Swiss Army Knife for macOS. +> More information: . - Get the battery status: `m battery status` -- Turn off bluetooth: +- Turn off Bluetooth: `m bluetooth off` diff --git a/pages/osx/machine.md b/pages/osx/machine.md new file mode 100644 index 00000000000000..fa394f57954246 --- /dev/null +++ b/pages/osx/machine.md @@ -0,0 +1,8 @@ +# machine + +> Print machine type. +> More information: . + +- Print CPU architecture: + +`machine` diff --git a/pages/osx/mas.md b/pages/osx/mas.md index a567e25f958a91..517d01967e7eee 100644 --- a/pages/osx/mas.md +++ b/pages/osx/mas.md @@ -1,11 +1,11 @@ # mas -> Command line interface for the Mac App Store. +> Command-line interface for the Mac App Store. > More information: . - Sign into the Mac App Store for the first time: -`mas signin {{user@example.com}}` +`mas signin "{{user@example.com}}"` - Show all installed applications and their product identifiers: @@ -13,7 +13,7 @@ - Search for an application, displaying the price alongside the results: -`mas search {{application}} --price` +`mas search "{{application}}" --price` - Install or update an application: diff --git a/pages/osx/mate.md b/pages/osx/mate.md new file mode 100644 index 00000000000000..981985254b879e --- /dev/null +++ b/pages/osx/mate.md @@ -0,0 +1,24 @@ +# mate + +> General-purpose text editor for macOS. +> More information: . + +- Start TextMate: + +`mate` + +- Open specific files: + +`mate {{path/to/file1 path/to/file2 ...}}` + +- Specify the filetype of a file: + +`mate --type {{filetype}} {{path/to/file}}` + +- Open and wait until finished editing a specific file: + +`mate --wait {{path/to/file}}` + +- Open a file with the cursor at a specific line and column: + +`mate --line {{line_number}}:{{column_number}} {{path/to/file}}` diff --git a/pages/osx/md5.md b/pages/osx/md5.md index 8e7da5b2665c9d..d710a16f7210f8 100644 --- a/pages/osx/md5.md +++ b/pages/osx/md5.md @@ -1,6 +1,7 @@ # md5 > Calculate MD5 cryptographic checksums. +> More information: . - Calculate the MD5 checksum for a file: @@ -16,4 +17,4 @@ - Print a checksum of the given string: -`md5 -s {{string}}` +`md5 -s "{{string}}"` diff --git a/pages/osx/mdfind.md b/pages/osx/mdfind.md index 2fc2ada13caf0c..2b26e7d975e2ca 100644 --- a/pages/osx/mdfind.md +++ b/pages/osx/mdfind.md @@ -1,6 +1,7 @@ # mdfind > List files matching a given query. +> More information: . - Find a file by its name: @@ -8,8 +9,8 @@ - Find a file by its content: -`mdfind {{query}}` +`mdfind "{{query}}"` - Find a file containing a string, in a given directory: -`mdfind -onlyin {{directory}} {{query}}` +`mdfind -onlyin {{directory}} "{{query}}"` diff --git a/pages/osx/mdls.md b/pages/osx/mdls.md index 0fc113c29c8a8e..a03d51ce5417e6 100644 --- a/pages/osx/mdls.md +++ b/pages/osx/mdls.md @@ -1,6 +1,7 @@ # mdls > Display the metadata attributes for a file. +> More information: . - Display the list of metadata attributes for file: diff --git a/pages/osx/mdutil.md b/pages/osx/mdutil.md index 76c4b35ac35ded..e355693014036a 100644 --- a/pages/osx/mdutil.md +++ b/pages/osx/mdutil.md @@ -1,6 +1,7 @@ # mdutil > Manage the metadata stores used by Spotlight for indexing. +> More information: . - Show the indexing status of the startup volume: diff --git a/pages/osx/mkfile.md b/pages/osx/mkfile.md deleted file mode 100644 index 47668d942851df..00000000000000 --- a/pages/osx/mkfile.md +++ /dev/null @@ -1,15 +0,0 @@ -# mkfile - -> Create one or more empty files of any size. - -- Create an empty file of 15 kilobytes: - -`mkfile -n {{15k}} {{filename}}` - -- Create a file of a given size and unit (bytes, KB, MB, GB): - -`mkfile -n {{size}}{{b|k|m|g}} {{filename}}` - -- Create two files of 4 megabytes each: - -`mkfile -n {{4m}} {{first_filename}} {{second_filename}}` diff --git a/pages/osx/n.md b/pages/osx/n.md deleted file mode 100644 index cc3db8f9f5666d..00000000000000 --- a/pages/osx/n.md +++ /dev/null @@ -1,23 +0,0 @@ -# n - -> Tool to manage multiple node versions. - -- Install a given version of node. If the version is already installed, it will be activated: - -`n {{version}}` - -- Display installed versions and interactively activate one of them: - -`n` - -- Remove a version: - -`n rm {{version}}` - -- Execute a file with a given version: - -`n use {{version}} {{file.js}}` - -- Output binary path for a version: - -`n bin {{version}}` diff --git a/pages/osx/netstat.md b/pages/osx/netstat.md deleted file mode 100644 index 279542e8002878..00000000000000 --- a/pages/osx/netstat.md +++ /dev/null @@ -1,24 +0,0 @@ -# netstat - -> Displays network-related information such as open connections, open socket ports, etc. -> More information: . - -- List all ports: - -`netstat -a` - -- List all listening ports: - -`netstat -l` - -- List listening TCP ports: - -`netstat -t` - -- Display PID and program names for a specific protocol: - -`netstat -p {{protocol}}` - -- Print the routing table: - -`netstat -nr` diff --git a/pages/osx/nettop.md b/pages/osx/nettop.md new file mode 100644 index 00000000000000..4894046a0cd563 --- /dev/null +++ b/pages/osx/nettop.md @@ -0,0 +1,36 @@ +# nettop + +> Display updated information about the network. +> More information: . + +- Monitor TCP and UDP sockets from all interfaces: + +`nettop` + +- Monitor TCP sockets from Loopback interfaces: + +`nettop -m {{tcp}} -t {{loopback}}` + +- Monitor a specific process: + +`nettop -p "{{process_id|process_name}}"` + +- Display a per-process summary: + +`nettop -P` + +- Print 10 samples of network information: + +`nettop -l {{10}}` + +- Monitor changes every 5 seconds: + +`nettop -d -s {{5}}` + +- While running nettop, list interactive commands: + +`h` + +- Display help: + +`nettop -h` diff --git a/pages/osx/networkquality.md b/pages/osx/networkquality.md new file mode 100644 index 00000000000000..9ef68d13861427 --- /dev/null +++ b/pages/osx/networkquality.md @@ -0,0 +1,20 @@ +# networkQuality + +> Measure the network quality by connecting to the internet. +> More information: . + +- Test the network quality for the default interface: + +`networkQuality` + +- Test the upload and download speeds sequentially instead of in parallel: + +`networkQuality -s` + +- Test a specified network interface: + +`networkQuality -I {{en0}}` + +- Test the network quality with verbose output: + +`networkQuality -v` diff --git a/pages/osx/networksetup.md b/pages/osx/networksetup.md index 39a3c48eddfb97..ede3d5069e6858 100644 --- a/pages/osx/networksetup.md +++ b/pages/osx/networksetup.md @@ -1,6 +1,7 @@ # networksetup > Configuration tool for Network System Preferences. +> More information: . - List available network service providers (Ethernet, Wi-Fi, Bluetooth, etc): @@ -16,4 +17,4 @@ - Connect to a particular Wi-Fi network: -`networksetup -setairportnetwork {{en0}} "{{Airport Network SSID}}" {{password}}` +`networksetup -setairportnetwork {{en0}} {{Airport Network SSID}} {{password}}` diff --git a/pages/osx/nfcd.md b/pages/osx/nfcd.md new file mode 100644 index 00000000000000..bafa7f503ab70f --- /dev/null +++ b/pages/osx/nfcd.md @@ -0,0 +1,9 @@ +# nfcd + +> This daemon controls the NFC controller. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`nfcd` diff --git a/pages/osx/nm.md b/pages/osx/nm.md deleted file mode 100644 index 037817c1bd9dfb..00000000000000 --- a/pages/osx/nm.md +++ /dev/null @@ -1,19 +0,0 @@ -# nm - -> List symbol names in object files. - -- List global (extern) functions in a file (prefixed with T): - -`nm -g {{file.o}}` - -- List only undefined symbols in a file: - -`nm -u {{file.o}}` - -- List all symbols, even debugging symbols: - -`nm -a {{file.o}}` - -- Demangle C++ symbols (make them readable): - -`nm -demangle {{file.o}}` diff --git a/pages/osx/notifyd.md b/pages/osx/notifyd.md new file mode 100644 index 00000000000000..915be1d207e2af --- /dev/null +++ b/pages/osx/notifyd.md @@ -0,0 +1,17 @@ +# notifyd + +> Notification server. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`notifyd` + +- Log debug messages to the default log file (`/var/log/notifyd.log`): + +`notifyd -d` + +- Log debug messages to an alternate log file: + +`notifyd -d -log_file {{path/to/log_file}}` diff --git a/pages/osx/nvram.md b/pages/osx/nvram.md new file mode 100644 index 00000000000000..fc48dc40c10ec4 --- /dev/null +++ b/pages/osx/nvram.md @@ -0,0 +1,28 @@ +# nvram + +> Manipulate firmware variables. +> More information: . + +- [p]rint all the variables stored in the NVRAM: + +`nvram -p` + +- [p]rint all the variables stored in the NVRAM using [x]ML format: + +`nvram -xp` + +- Modify the value of a firmware variable: + +`sudo nvram {{name}}="{{value}}"` + +- [d]elete a firmware variable: + +`sudo nvram -d {{name}}` + +- [c]lear all the firmware variables: + +`sudo nvram -c` + +- Set a firmware variable from a specific [x]ML [f]ile: + +`sudo nvram -xf {{path/to/file.xml}}` diff --git a/pages/osx/oathtool.md b/pages/osx/oathtool.md deleted file mode 100644 index af56427661d7a4..00000000000000 --- a/pages/osx/oathtool.md +++ /dev/null @@ -1,15 +0,0 @@ -# oathtool - -> OATH one-time password tool. - -- Generate TOTP token (behaves like Google Authenticator): - -`oathtool --totp --base32 {{secret}}` - -- Generate a TOTP token for a specific time: - -`oathtool --totp --now {{2004-02-29 16:21:42}} --base32 {{secret}}` - -- Validate a TOTP token: - -`oathtool --totp --base32 {{secret}} {{token}}` diff --git a/pages/osx/ocspd.md b/pages/osx/ocspd.md new file mode 100644 index 00000000000000..1bbb4ba15d9fba --- /dev/null +++ b/pages/osx/ocspd.md @@ -0,0 +1,9 @@ +# ocspd + +> This retrieves and caches Certificate Revocation Lists (CRLs) and Online Certificate Status Protocol (OCSP) responses for certificate verification. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`ocspd` diff --git a/pages/osx/open.md b/pages/osx/open.md index 294d4dda4b2028..6a049d82ea79a6 100644 --- a/pages/osx/open.md +++ b/pages/osx/open.md @@ -1,16 +1,17 @@ # open > Opens files, directories and applications. +> More information: . - Open a file with the associated application: `open {{file.ext}}` -- Run a graphical macOS application: +- Run a graphical macOS [a]pplication: -`open -a {{Application}}` +`open -a "{{Application}}"` -- Run a graphical macOS app based on the bundle identifier (refer to `osascript` for an easy way to get this): +- Run a graphical macOS app based on the [b]undle identifier (refer to `osascript` for an easy way to get this): `open -b {{com.domain.application}}` @@ -18,10 +19,14 @@ `open .` -- Reveal a file in Finder: +- [R]eveal a file in Finder: `open -R {{path/to/file}}` - Open all the files of a given extension in the current directory with the associated application: `open {{*.ext}}` + +- Open a [n]ew instance of an application specified via [b]undle identifier: + +`open -n -b {{com.domain.application}}` diff --git a/pages/osx/opensnoop.md b/pages/osx/opensnoop.md index e54bfd57066cff..224366b68541a3 100644 --- a/pages/osx/opensnoop.md +++ b/pages/osx/opensnoop.md @@ -1,6 +1,7 @@ # opensnoop > Tool that tracks file opens on your system. +> More information: . - Print all file opens as they occur: @@ -8,7 +9,7 @@ - Track all file opens by a process by name: -`sudo opensnoop -n {{process_name}}` +`sudo opensnoop -n "{{process_name}}"` - Track all file opens by a process by PID: diff --git a/pages/osx/osascript.md b/pages/osx/osascript.md index 68ec3f1b3e7abf..9deba60a57bc72 100644 --- a/pages/osx/osascript.md +++ b/pages/osx/osascript.md @@ -1,14 +1,15 @@ # osascript -> Run AppleScript or JavaScript for Automation (JXA) from the command line. +> Run AppleScript or JavaScript for Automation (JXA) from the command-line. +> More information: . - Run an AppleScript command: -`osascript -e '{{say "Hello world"}}'` +`osascript -e "{{say 'Hello world'}}"` - Run multiple AppleScript commands: -`osascript -e '{{say "Hello"}}' -e '{{say "world"}}'` +`osascript -e "{{say 'Hello'}}" -e "{{say 'world'}}"` - Run a compiled (`*.scpt`), bundled (`*.scptd`), or plaintext (`*.applescript`) AppleScript file: @@ -20,7 +21,7 @@ - Run a JavaScript command: -`osascript -l JavaScript -e '{{console.log("Hello world");}}'` +`osascript -l JavaScript -e "{{console.log('Hello world');}}"` - Run a JavaScript file: diff --git a/pages/osx/pbcopy.md b/pages/osx/pbcopy.md index ed297e941b6c74..102a24a7c5e061 100644 --- a/pages/osx/pbcopy.md +++ b/pages/osx/pbcopy.md @@ -1,11 +1,13 @@ # pbcopy -> Place standard output in the clipboard. +> Copy data from `stdin` to the clipboard. +> Comparable to pressing Cmd + C on the keyboard. +> More information: . -- Place the contents of a file in the clipboard: +- Place the contents of a specific file in the clipboard: -`pbcopy < {{file}}` +`pbcopy < {{path/to/file}}` -- Place the results of a command in the clipboard: +- Place the results of a specific command in the clipboard: `find . -type t -name "*.png" | pbcopy` diff --git a/pages/osx/pbpaste.md b/pages/osx/pbpaste.md index b4cfb315521bea..af40f9350850ea 100644 --- a/pages/osx/pbpaste.md +++ b/pages/osx/pbpaste.md @@ -1,10 +1,12 @@ # pbpaste > Send the contents of the clipboard to standard output. +> Comparable to pressing Cmd + V on the keyboard. +> More information: . - Write the contents of the clipboard to a file: -`pbpaste > {{file}}` +`pbpaste > {{path/to/file}}` - Use the contents of the clipboard as input to a command: diff --git a/pages/osx/pdfgrep.md b/pages/osx/pdfgrep.md deleted file mode 100644 index 475899f6cb0daa..00000000000000 --- a/pages/osx/pdfgrep.md +++ /dev/null @@ -1,23 +0,0 @@ -# pdfgrep - -> Search text in PDF files. - -- Find lines that match pattern in a PDF: - -`pdfgrep {{pattern}} {{file.pdf}}` - -- Include file name and page number for each matched line: - -`pdfgrep --with-filename --page-number {{pattern}} {{file.pdf}}` - -- Do a case insensitive search for lines that begin with "foo" and return the first 3 matches: - -`pdfgrep --max-count {{3}} --ignore-case {{'^foo'}} {{file.pdf}}` - -- Find pattern in files with a `.pdf` extension in the current directory recursively: - -`pdfgrep --recursive {{pattern}}` - -- Find pattern on files that match a specific glob in the current directory recursively: - -`pdfgrep --recursive --include {{'*book.pdf'}} {{pattern}}` diff --git a/pages/osx/photoanalysisd.md b/pages/osx/photoanalysisd.md new file mode 100644 index 00000000000000..ecae3513cdb15a --- /dev/null +++ b/pages/osx/photoanalysisd.md @@ -0,0 +1,9 @@ +# photoanalysisd + +> This analyzes photo libraries for Memories, People, and scene or object based search. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`photoanalysisd` diff --git a/pages/osx/photolibraryd.md b/pages/osx/photolibraryd.md new file mode 100644 index 00000000000000..0f57370b0cab2b --- /dev/null +++ b/pages/osx/photolibraryd.md @@ -0,0 +1,9 @@ +# photolibraryd + +> This handles all photo library requests. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`photolibraryd` diff --git a/pages/osx/ping.md b/pages/osx/ping.md index 0a47a2828f985d..ac73c48e38e512 100644 --- a/pages/osx/ping.md +++ b/pages/osx/ping.md @@ -1,27 +1,28 @@ # ping > Send ICMP ECHO_REQUEST packets to network hosts. +> More information: . - Ping the specified host: -`ping {{host}}` +`ping "{{hostname}}"` - Ping a host a specific number of times: -`ping -c {{count}} {{host}}` +`ping -c {{count}} "{{host}}"` - Ping `host`, specifying the interval in `seconds` between requests (default is 1 second): -`ping -i {{seconds}} {{host}}` +`ping -i {{seconds}} "{{host}}"` - Ping `host` without trying to lookup symbolic names for addresses: -`ping -n {{host}}` +`ping -n "{{host}}"` - Ping `host` and ring the bell when a packet is received (if your terminal supports it): -`ping -a {{host}}` +`ping -a "{{host}}"` - Ping `host` and prints the time a packet was received (this option is an Apple addition): -`ping --apple-time {{host}}` +`ping --apple-time "{{host}}"` diff --git a/pages/osx/pkgutil.md b/pages/osx/pkgutil.md index f8de4587ed976c..fc860c770574fe 100644 --- a/pages/osx/pkgutil.md +++ b/pages/osx/pkgutil.md @@ -1,6 +1,7 @@ # pkgutil > Query and manipulate Mac OS X Installer packages and receipts. +> More information: . - List package IDs for all installed packages: diff --git a/pages/osx/plutil.md b/pages/osx/plutil.md index cc5b560c1ef51c..373146ee7c0729 100644 --- a/pages/osx/plutil.md +++ b/pages/osx/plutil.md @@ -1,6 +1,7 @@ # plutil > View, convert, validate, or edit property list ("plist") files. +> More information: . - Display the contents of one or more plist files in human-readable format: @@ -18,6 +19,6 @@ `plutil -convert {{xml1|binary1|json|swift|objc}} {{path/to/file.plist}} -o {{path/to/new_file.plist}}` -- Convert a plist file to a different format, writing to stdout: +- Convert a plist file to a different format, writing to `stdout`: `plutil -convert {{xml1|binary1|json|swift|objc}} {{path/to/file.plist}} -o -` diff --git a/pages/osx/pmset.md b/pages/osx/pmset.md index ceda606177a477..293ca987ccea94 100644 --- a/pages/osx/pmset.md +++ b/pages/osx/pmset.md @@ -2,6 +2,7 @@ > Configure macOS power management settings, as one might do in System Preferences > Energy Saver. > Commands that modify settings must begin with `sudo`. +> More information: . - Display the current power management settings: diff --git a/pages/osx/pod.md b/pages/osx/pod.md index 62584dcea1e326..31beda5b9820b8 100644 --- a/pages/osx/pod.md +++ b/pages/osx/pod.md @@ -1,6 +1,7 @@ # pod > Dependency manager for Swift and Objective-C Cocoa projects. +> More information: . - Create a Podfile for the current project with the default contents: diff --git a/pages/osx/port.md b/pages/osx/port.md index 80e76ec73b2abe..0b5f2d281cdb0a 100644 --- a/pages/osx/port.md +++ b/pages/osx/port.md @@ -1,6 +1,7 @@ # port > Package manager for macOS. +> More information: . - Search for a package: @@ -14,7 +15,7 @@ `port installed` -- Update port and fetch latest list of available packages: +- Update port and fetch the latest list of available packages: `sudo port selfupdate` diff --git a/pages/osx/pwgen.md b/pages/osx/pwgen.md deleted file mode 100644 index 70f4cc67ffa6e6..00000000000000 --- a/pages/osx/pwgen.md +++ /dev/null @@ -1,15 +0,0 @@ -# pwgen - -> Generate pronounceable passwords. - -- Generate random password with s[y]mbols: - -`pwgen -y {{length}}` - -- Generate secure, hard-to-memorize passwords: - -`pwgen -s {{length}}` - -- Generate password with at least one capital letter in them: - -`pwgen -c {{length}}` diff --git a/pages/osx/qlmanage.md b/pages/osx/qlmanage.md index 92da5d901943a9..e34c8e2035f463 100644 --- a/pages/osx/qlmanage.md +++ b/pages/osx/qlmanage.md @@ -1,6 +1,7 @@ # qlmanage > QuickLook server tool. +> More information: . - Display QuickLook for one or multiple files: @@ -10,6 +11,6 @@ `qlmanage {{*.jpg}} -t -s {{300}} {{path/to/directory}}` -- Reset Quicklook: +- Reset QuickLook: `qlmanage -r` diff --git a/pages/osx/readlink.md b/pages/osx/readlink.md new file mode 100644 index 00000000000000..239606319a5895 --- /dev/null +++ b/pages/osx/readlink.md @@ -0,0 +1,8 @@ +# readlink + +> Follow symlinks and get symlink information. +> More information: . + +- Print the absolute path which the symlink points to: + +`readlink {{path/to/symlink_file}}` diff --git a/pages/osx/reboot.md b/pages/osx/reboot.md index cc946093fb82e3..2a861069afe1b7 100644 --- a/pages/osx/reboot.md +++ b/pages/osx/reboot.md @@ -1,6 +1,7 @@ # reboot > Reboot the system. +> More information: . - Reboot immediately: diff --git a/pages/osx/rename.md b/pages/osx/rename.md index 137430e8ded12e..c3ffb3576f2d23 100644 --- a/pages/osx/rename.md +++ b/pages/osx/rename.md @@ -1,6 +1,7 @@ # rename -> Rename a file or group of files with a regex. +> Rename a file or group of files with a regular expression. +> More information: . - Replace `from` with `to` in the filenames of the specified files: diff --git a/pages/osx/route.md b/pages/osx/route.md index 0bea78c1efbd20..fe9588d8296e31 100644 --- a/pages/osx/route.md +++ b/pages/osx/route.md @@ -2,18 +2,19 @@ > Manually manipulate the routing tables. > Necessitates to be root. +> More information: . - Add a route to a destination through a gateway: -`sudo route add {{dest_ip_address}} {{gateway_address}}` +`sudo route add "{{destination_ip_address}}" "{{gateway_address}}"` - Add a route to a /24 subnet through a gateway: -`sudo route add {{subnet_ip_address}}/24 {{gateway_address}}` +`sudo route add "{{subnet_ip_address}}/24" "{{gateway_address}}"` - Run in test mode (does not do anything, just print): -`sudo route -t add {{dest_ip_address}}/24 {{gateway_address}}` +`sudo route -t add "{{destination_ip_address}}/24" "{{gateway_address}}"` - Remove all routes: @@ -21,8 +22,8 @@ - Delete a specific route: -`sudo route delete {{dest_ip_address}}/24` +`sudo route delete "{{destination_ip_address}}/24"` - Lookup and display the route for a destination (hostname or IP address): -`sudo route get {{destination}}` +`sudo route get "{{destination}}"` diff --git a/pages/osx/rubocop.md b/pages/osx/rubocop.md deleted file mode 100644 index fb4e31f61e3983..00000000000000 --- a/pages/osx/rubocop.md +++ /dev/null @@ -1,31 +0,0 @@ -# rubocop - -> Lint Ruby files. - -- Check all files in the current directory (including subdirectories): - -`rubocop` - -- Check one or more specific files or directories: - -`rubocop {{path/to/file}} {{path/to/directory}}` - -- Write output to file: - -`rubocop --out {{path/to/file}}` - -- View list of cops (linter rules): - -`rubocop --show-cops` - -- Exclude a cop: - -`rubocop --except {{cop_1}} {{cop_2}}` - -- Run only specified cops: - -`rubocop --only {{cop_1}} {{cop_2}}` - -- Auto-correct files (experimental): - -`rubocop --auto-correct` diff --git a/pages/osx/safeejectgpu.md b/pages/osx/safeejectgpu.md index 3db5cc1df41f02..d23b349f019927 100644 --- a/pages/osx/safeejectgpu.md +++ b/pages/osx/safeejectgpu.md @@ -1,7 +1,7 @@ # SafeEjectGPU > Eject a GPU safely. -> Visit the man page for more info. +> More information: . - Eject all GPUs: diff --git a/pages/osx/say.md b/pages/osx/say.md index 195d02f855e183..f8d70c31ebeb91 100644 --- a/pages/osx/say.md +++ b/pages/osx/say.md @@ -1,6 +1,7 @@ # say > Converts text to speech. +> More information: . - Say a phrase aloud: @@ -8,16 +9,20 @@ - Read a file aloud: -`say -f {{filename.txt}}` +`say --input-file={{filename.txt}}` - Say a phrase with a custom voice and speech rate: -`say -v {{voice}} -r {{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"` +`say --voice={{voice}} --rate={{words_per_minute}} "{{I'm sorry Dave, I can't let you do that.}}"` -- List the available voices: +- List the available voices (different voices speak in different languages): -`say -v "?"` +`say --voice="?"` + +- Say something in Polish: + +`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"` - Create an audio file of the spoken text: -`say -o {{filename.aiff}} "{{Here's to the Crazy Ones.}}"` +`say --output-file={{filename.aiff}} "{{Here's to the Crazy Ones.}}"` diff --git a/pages/osx/screencapture.md b/pages/osx/screencapture.md index 13f825a71a8eab..6c888718102bb3 100644 --- a/pages/osx/screencapture.md +++ b/pages/osx/screencapture.md @@ -1,6 +1,7 @@ # screencapture > Utility to take screenshots and screen recordings. +> More information: . - Take a screenshot and save it to a file: diff --git a/pages/osx/scutil.md b/pages/osx/scutil.md index 6aacb7a78b438d..e4d46a9c1164db 100644 --- a/pages/osx/scutil.md +++ b/pages/osx/scutil.md @@ -2,6 +2,7 @@ > Manage system configuration parameters. > Necessitates to be root when setting configuration. +> More information: . - Display DNS Configuration: diff --git a/pages/osx/sdef.md b/pages/osx/sdef.md new file mode 100644 index 00000000000000..b7f7c53d336096 --- /dev/null +++ b/pages/osx/sdef.md @@ -0,0 +1,8 @@ +# sdef + +> Get or generate a scripting definitions (`sdef`) file from a scriptable application. +> More information: . + +- Print the scripting definitions of the given application: + +`sdef {{/Applications/XCode.app}}` diff --git a/pages/osx/secd.md b/pages/osx/secd.md new file mode 100644 index 00000000000000..c152b7f2651510 --- /dev/null +++ b/pages/osx/secd.md @@ -0,0 +1,9 @@ +# secd + +> Controls access to and modification of keychain items. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`secd` diff --git a/pages/osx/security.md b/pages/osx/security.md index d90d554633d13d..2d11365ec9bf39 100644 --- a/pages/osx/security.md +++ b/pages/osx/security.md @@ -1,16 +1,32 @@ # security -> Administer Keychains, keys, certificates and the Security framework. +> Administer keychains, keys, certificates and the Security framework. > More information: . -- List the available keychains: +- List all available keychains: `security list-keychains` - Delete a specific keychain: -`security delete-keychain {{path}}` +`security delete-keychain {{path/to/file.keychain}}` - Create a keychain: -`security create-keychain -p {{password}} {{name.keychain}}` +`security create-keychain -p {{password}} {{path/to/file.keychain}}` + +- Set a certificate to use with a website or [s]ervice by its [c]ommon name (fails if several certificates with the same common name exist): + +`security set-identity-preference -s {{URL|hostname|service}} -c "{{common_name}}" {{path/to/file.keychain}}` + +- 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_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_file.pem}}` + +- Remove a CA certificate from the per-user Trust Settings: + +`security remove-trusted-cert {{path/to/ca-cert_file.pem}}` diff --git a/pages/osx/securityd.md b/pages/osx/securityd.md new file mode 100644 index 00000000000000..0e28802613e819 --- /dev/null +++ b/pages/osx/securityd.md @@ -0,0 +1,10 @@ +# securityd + +> This manages security contexts and cryptographic operations. +> Works with secd for keychain access. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`securityd` diff --git a/pages/osx/sed.md b/pages/osx/sed.md index c105554dfc40c7..cf3efe433f252c 100644 --- a/pages/osx/sed.md +++ b/pages/osx/sed.md @@ -1,36 +1,25 @@ # sed > Edit text in a scriptable manner. -> More information: . +> See also: `awk`, `ed`. +> More information: . -- Replace the first occurrence of a string in a file, and print the result: +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in all input lines and print the result to `stdout`: -`sed 's/{{find}}/{{replace}}/' {{filename}}` +`{{command}} | sed 's/apple/mango/g'` -- Replace all occurrences of an extended regular expression in a file: +- Execute a specific script [f]ile and print the result to `stdout`: -`sed -E 's/{{regex}}/{{replace}}/g' {{filename}}` +`{{command}} | sed -f {{path/to/script_file.sed}}` -- Replace all occurrences of a string [i]n a file, overwriting the file (i.e. in-place): +- Replace all `apple` (extended regex) occurrences with `APPLE` (extended regex) in all input lines and print the result to `stdout`: -`sed -i '' 's/{{find}}/{{replace}}/g' {{filename}}` +`{{command}} | sed -E 's/(apple)/\U\1/g'` -- Replace only on lines matching the line pattern: +- Print just a first line to `stdout`: -`sed '/{{line_pattern}}/s/{{find}}/{{replace}}/' {{filename}}` +`{{command}} | sed -n '1p'` -- Print only text between n-th line till the next empty line: +- Replace all `apple` (basic regex) occurrences with `mango` (basic regex) in a `file` and save a backup of the original to `file.bak`: -`sed -n '{{line_number}},/^$/p' {{filename}}` - -- Apply multiple find-replace expressions to a file: - -`sed -e 's/{{find}}/{{replace}}/' -e 's/{{find}}/{{replace}}/' {{filename}}` - -- Replace separator / by any other character not used in the find or replace patterns, e.g., #: - -`sed 's#{{find}}#{{replace}}#' {{filename}}` - -- [d]elete the line at the specific line number [i]n a file, overwriting the file: - -`sed -i '' '{{line_number}}d' {{filename}}` +`sed -i bak 's/apple/mango/g' {{path/to/file}}` diff --git a/pages/osx/setfile.md b/pages/osx/setfile.md new file mode 100644 index 00000000000000..d3663140e633aa --- /dev/null +++ b/pages/osx/setfile.md @@ -0,0 +1,16 @@ +# setfile + +> Sets file attributes on files in an HFS+ directory. +> More information: . + +- Set creation date for specific files: + +`setfile -d "{{MM/DD/YYYY HH:MM:SS}}" {{path/to/file1 path/to/file2 ...}}` + +- Set modification date for specific files: + +`setfile -m "{{MM/DD/YYYY HH:MM:SS}}" {{path/to/file1 path/to/file2 ...}}` + +- Set modification date for symlink file (not to linked file itself): + +`setfile -P -m "{{MM/DD/YYYY HH:MM:SS}}" {{path/to/file1 path/to/file2 ...}}` diff --git a/pages/osx/shortcuts.md b/pages/osx/shortcuts.md new file mode 100644 index 00000000000000..7a1cfb9e09d642 --- /dev/null +++ b/pages/osx/shortcuts.md @@ -0,0 +1,20 @@ +# shortcuts + +> Manage shortcuts from the command-line instead of the `Shortcuts` app. +> More information: . + +- Run the specified shortcut (`Count holidays`): + +`shortcuts run "{{Count holidays}}"` + +- Print all shortcuts: + +`shortcuts list` + +- Print all shortcut folders: + +`shortcuts list --folders` + +- Open the specified shortcut (`Count holidays`) in the Shortcuts editor: + +`shortcuts view "{{Count holidays}}"` diff --git a/pages/osx/shuf.md b/pages/osx/shuf.md index 8452e60f346002..14398493bb77cd 100644 --- a/pages/osx/shuf.md +++ b/pages/osx/shuf.md @@ -1,6 +1,7 @@ # shuf > Generate random permutations. +> More information: . - Randomize the order of lines in a file and output the result: @@ -8,12 +9,12 @@ - Only output the first 5 entries of the result: -`shuf -n {{5}} {{filename}}` +`shuf --head-count={{5}} {{filename}}` - Write output to another file: -`shuf {{filename}} -o {{output_filename}}` +`shuf {{filename}} --output={{output_filename}}` - Generate random numbers in range 1-10: -`shuf -i {{1-10}}` +`shuf --input-range={{1-10}}` diff --git a/pages/osx/shutdown.md b/pages/osx/shutdown.md index aa3da7db5f0bec..41b80f1c519400 100644 --- a/pages/osx/shutdown.md +++ b/pages/osx/shutdown.md @@ -1,6 +1,7 @@ # shutdown > Shutdown and reboot the system. +> More information: . - Power off (halt) immediately: @@ -16,7 +17,7 @@ - Reboot in 5 minutes: -`shutdown -r +{{5}}` +`shutdown -r "+{{5}}"` - Power off (halt) at 1:00 pm (Uses 24h clock): diff --git a/pages/osx/sips.md b/pages/osx/sips.md index 0c6768a745f86b..207887245a204f 100644 --- a/pages/osx/sips.md +++ b/pages/osx/sips.md @@ -2,6 +2,7 @@ > Apple Scriptable Image Processing System. > Raster/Query images and ColorSync ICC Profiles. +> More information: . - Specify an output directory so that originals do not get modified: @@ -9,11 +10,11 @@ - Resample image at specified size, Image aspect ratio may be altered: -`sips -z {{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 -Z {{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): @@ -21,8 +22,8 @@ - Convert an image from CMYK to RGB: -`sips --matchTo '/System/Library/ColorSync/Profiles/Generic RGB Profile.icc' {{path/to/image.ext}} {{path/to/out_dir}}` +`sips --matchTo "/System/Library/ColorSync/Profiles/Generic RGB Profile.icc" {{path/to/image.ext}} {{path/to/out_dir}}` - Remove ColorSync ICC profile from an image: -`sips -d profile --deleteColorManagementProperties {{path/to/image.ext}}` +`sips --deleteProperty profile --deleteColorManagementProperties {{path/to/image_file.ext}}` diff --git a/pages/osx/sntpd.md b/pages/osx/sntpd.md new file mode 100644 index 00000000000000..eb8dc7aa81dd3f --- /dev/null +++ b/pages/osx/sntpd.md @@ -0,0 +1,17 @@ +# sntpd + +> An SNTP server. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`sntpd` + +- Overwrite existing state with the local clock (stratum 1), for running a master/primary server, without synchronizing with another (higher stratum) server: + +`sntpd -L` + +- Use a custom file for the SNTP state: + +`sntpd -z {{path/to/state.bin}}` diff --git a/pages/osx/softwareupdate.md b/pages/osx/softwareupdate.md index 7cc3f0b01597ef..daf1f4dc2e2465 100644 --- a/pages/osx/softwareupdate.md +++ b/pages/osx/softwareupdate.md @@ -1,19 +1,20 @@ # softwareupdate -> A tool for updating MacOS App Store apps via the command line. +> A tool for updating macOS App Store apps via the command-line. +> More information: . - List all available updates: -`softwareupdate -l` +`softwareupdate --list` - Download and install all updates: -`softwareupdate -ia` +`softwareupdate --install --all` - Download and install all recommended updates: -`softwareupdate -ir` +`softwareupdate --install --req` - Download and install a specific app: -`softwareupdate -i {{update_name}}` +`softwareupdate --install {{update_name}}` diff --git a/pages/osx/spctl.md b/pages/osx/spctl.md new file mode 100644 index 00000000000000..a516ba2d9d2db6 --- /dev/null +++ b/pages/osx/spctl.md @@ -0,0 +1,21 @@ +# spctl + +> Manage the security assessment policy subsystem. +> Utility for managing Gatekeeper in macOS. +> More information: . + +- Turn off Gatekeeper: + +`spctl --master-disable` + +- Add a rule to allow an application to run (labeling of rule is optional): + +`spctl --add --label {{rule_name}} {{path/to/file}}` + +- Turn on Gatekeeper: + +`spctl --master-enable` + +- List all rules on the system: + +`spctl --list` diff --git a/pages/osx/split.md b/pages/osx/split.md index 3cfc857cfb442a..48d78c821f56f6 100644 --- a/pages/osx/split.md +++ b/pages/osx/split.md @@ -1,6 +1,7 @@ # split > Split a file into pieces. +> More information: . - Split a file, each split having 10 lines (except the last split): @@ -13,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/ssh-add.md b/pages/osx/ssh-add.md deleted file mode 100644 index 30d3a77c6874af..00000000000000 --- a/pages/osx/ssh-add.md +++ /dev/null @@ -1,28 +0,0 @@ -# ssh-add - -> Manage loaded ssh keys in the ssh-agent. -> Ensure that ssh-agent is up and running for the keys to be loaded in it. - -- Add the default ssh keys in `~/.ssh` to the ssh-agent: - -`ssh-add` - -- Add a specific key to the ssh-agent: - -`ssh-add {{path/to/private_key}}` - -- List fingerprints of currently loaded keys: - -`ssh-add -l` - -- Delete a key from the ssh-agent: - -`ssh-add -d {{path/to/private_key}}` - -- Delete all currently loaded keys from the ssh-agent: - -`ssh-add -D` - -- Add a key to the ssh-agent and the keychain: - -`ssh-add -K {{path/to/private_key}}` diff --git a/pages/osx/sshuttle.md b/pages/osx/sshuttle.md deleted file mode 100644 index 372f0625967c82..00000000000000 --- a/pages/osx/sshuttle.md +++ /dev/null @@ -1,17 +0,0 @@ -# sshuttle - -> Transparent proxy server that tunnels traffic over an SSH connection. -> Doesn't require admin, or any special setup on the remote SSH server. -> More information: . - -- Forward all IPv4 TCP traffic via a remote SSH server: - -`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` - -- Forward all IPv4 TCP and DNS traffic: - -`sshuttle --dns --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}` - -- Use the tproxy method to forward all IPv4 and IPv6 traffic: - -`sudo sshuttle --method=tproxy --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} {{::/0}} --exclude={{your_local_ip_address}} --exclude={{ssh_server_ip_address}}` diff --git a/pages/osx/stat.md b/pages/osx/stat.md index a1a2b0cceda53c..4d928ec43c1020 100644 --- a/pages/osx/stat.md +++ b/pages/osx/stat.md @@ -1,23 +1,24 @@ # stat > Display file status. +> More information: . - Show file properties such as size, permissions, creation and access dates among others: -`stat {{file}}` +`stat {{path/to/file}}` -- Same as above but verbose (more similar to linux's `stat`): +- Same as above but verbose (more similar to Linux's `stat`): -`stat -x {{file}}` +`stat -x {{path/to/file}}` - Show only octal file permissions: -`stat -f %Mp%Lp {{file}}` +`stat -f %Mp%Lp {{path/to/file}}` - Show owner and group of the file: -`stat -f "%Su %Sg" {{file}}` +`stat -f "%Su %Sg" {{path/to/file}}` - Show the size of the file in bytes: -`stat -f "%z %N" {{file}}` +`stat -f "%z %N" {{path/to/file}}` diff --git a/pages/osx/sw_vers.md b/pages/osx/sw_vers.md index 8026b6f34d727e..b97fc203669026 100644 --- a/pages/osx/sw_vers.md +++ b/pages/osx/sw_vers.md @@ -1,6 +1,7 @@ # sw_vers > Print macOS operating system version information. +> More information: . - Print all available information (OS name, version number, and build): diff --git a/pages/osx/symptomsd.md b/pages/osx/symptomsd.md new file mode 100644 index 00000000000000..be5e807a97ab76 --- /dev/null +++ b/pages/osx/symptomsd.md @@ -0,0 +1,9 @@ +# symptomsd + +> Provides services for `Symptoms.framework`. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`symptomsd` diff --git a/pages/osx/sysctl.md b/pages/osx/sysctl.md index dae27f6e805678..96f5e1c460364d 100644 --- a/pages/osx/sysctl.md +++ b/pages/osx/sysctl.md @@ -1,6 +1,7 @@ # sysctl > Access kernel state information. +> More information: . - Show all available variables and their values: diff --git a/pages/osx/system_profiler.md b/pages/osx/system_profiler.md index f150a181080893..cb5be6f087a7bc 100644 --- a/pages/osx/system_profiler.md +++ b/pages/osx/system_profiler.md @@ -1,6 +1,7 @@ # system_profiler > Report system hardware and software configuration. +> More information: . - Display a full system profiler report which can be opened by System Profiler.app: @@ -12,4 +13,4 @@ - Print the system serial number: -`system_profiler SPHardwareDataType|grep "Serial Number (system)" |awk '{print $4}'` +`system_profiler SPHardwareDataType|grep "Serial Number (system)" | awk '{ print $4 }'` diff --git a/pages/osx/systemsetup.md b/pages/osx/systemsetup.md index 431beae76ec124..454dc9e2ca1fcc 100644 --- a/pages/osx/systemsetup.md +++ b/pages/osx/systemsetup.md @@ -1,14 +1,15 @@ # systemsetup > Configure System Preferences machine settings. +> More information: . - Enable remote login (SSH): `systemsetup -setremotelogin on` -- Specify TimeZone, NTP Server and enable network time: +- Specify timezone, NTP Server and enable network time: -`systemsetup -settimezone {{US/Pacific}} -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime on` +`systemsetup -settimezone "{{US/Pacific}}" -setnetworktimeserver {{us.pool.ntp.org}} -setusingnetworktime on` - Make the machine never sleep and automatically restart on power failure or kernel panic: @@ -20,4 +21,4 @@ - Specify a new startup disk: -`systemsetup -setstartupdisk {{path}}` +`systemsetup -setstartupdisk {{path/to/directory}}` diff --git a/pages/osx/systemsoundserverd.md b/pages/osx/systemsoundserverd.md new file mode 100644 index 00000000000000..b1050bb9b3fb24 --- /dev/null +++ b/pages/osx/systemsoundserverd.md @@ -0,0 +1,8 @@ +# systemsoundserverd + +> Core Audio related daemon. +> It should not be invoked manually. + +- Start the daemon: + +`systemsoundserverd` diff --git a/pages/osx/tail.md b/pages/osx/tail.md new file mode 100644 index 00000000000000..ae6b6e56236510 --- /dev/null +++ b/pages/osx/tail.md @@ -0,0 +1,29 @@ +# tail + +> Display the last part of a file. +> See also: `head`. +> More information: . + +- Show last 'count' lines in file: + +`tail -n {{8}} {{path/to/file}}` + +- Print a file from a specific line number: + +`tail -n +{{8}} {{path/to/file}}` + +- Print a specific count of bytes from the end of a given file: + +`tail -c {{8}} {{path/to/file}}` + +- Print the last lines of a given file and keep reading file until `Ctrl + C`: + +`tail -f {{path/to/file}}` + +- Keep reading file until `Ctrl + C`, even if the file is inaccessible: + +`tail -F {{path/to/file}}` + +- Show last 'count' lines in 'file' and refresh every 'seconds' seconds: + +`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 00000000000000..ebf91a00a345cf --- /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/textutil.md b/pages/osx/textutil.md index 83809b23bb1461..2f7a8d61abdedf 100644 --- a/pages/osx/textutil.md +++ b/pages/osx/textutil.md @@ -1,23 +1,24 @@ # textutil > Used to manipulate text files of various formats. +> More information: . - 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/timed.md b/pages/osx/timed.md new file mode 100644 index 00000000000000..4dedf6e614038d --- /dev/null +++ b/pages/osx/timed.md @@ -0,0 +1,9 @@ +# timed + +> Service that synchronizes system time (e.g. using NTP). +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`timed` diff --git a/pages/osx/tmutil.md b/pages/osx/tmutil.md index 07befcfd365514..fcd237b1963718 100644 --- a/pages/osx/tmutil.md +++ b/pages/osx/tmutil.md @@ -3,13 +3,13 @@ > Utility for managing Time Machine backups. Most verbs require root privileges. > More information: . -- Set a HFS+ drive as the backup destination: +- Set an HFS+ drive as the backup destination: `sudo tmutil setdestination {{path/to/disk_mount_point}}` -- Set a APF share or SMB share as the backup destination: +- Set an APF share or SMB share as the backup destination: -`sudo tmutil setdestination {{protocol://user[:password]@host/share}}` +`sudo tmutil setdestination "{{protocol://user[:password]@host/share}}"` - Append the given destination to the list of destinations: diff --git a/pages/osx/top.md b/pages/osx/top.md index 72420fccada024..4bb9042129f8fc 100644 --- a/pages/osx/top.md +++ b/pages/osx/top.md @@ -1,6 +1,7 @@ # top > Display dynamic real-time information about running processes. +> More information: . - Start top, all options are available in the interface: diff --git a/pages/osx/translationd.md b/pages/osx/translationd.md new file mode 100644 index 00000000000000..f197d86ea6cbf5 --- /dev/null +++ b/pages/osx/translationd.md @@ -0,0 +1,8 @@ +# translationd + +> Enables Translation features. +> It should not be invoked manually. + +- Start the daemon: + +`translationd` diff --git a/pages/osx/trap.md b/pages/osx/trap.md deleted file mode 100644 index 325b1c12308b01..00000000000000 --- a/pages/osx/trap.md +++ /dev/null @@ -1,20 +0,0 @@ -# trap - -> Automatically execute commands after receiving signals by processes or the operating system. -> Can be used to perform cleanups for interruptions by the user or other actions. - -- List available signals to set traps for: - -`trap -l` - -- List active traps for the current shell: - -`trap -p` - -- Set a trap to execute commands when one or more signals are detected: - -`trap 'echo "Caught signal {{SIGHUP}}"' {{SIGHUP}}` - -- Remove active traps: - -`trap - {{SIGHUP}} {{SIGINT}}` diff --git a/pages/osx/tree.md b/pages/osx/tree.md deleted file mode 100644 index 0ee158cde2a559..00000000000000 --- a/pages/osx/tree.md +++ /dev/null @@ -1,36 +0,0 @@ -# tree - -> Show the contents of the current directory as a tree. -> More information: . - -- Print files and directories up to 'num' levels of depth (where 1 means the current directory): - -`tree -L {{num}}` - -- Print directories only: - -`tree -d` - -- Print hidden files too with colorization on: - -`tree -a -C` - -- Print the tree without indentation lines, showing the full path instead (use `-N` to not escape whitespace and special characters): - -`tree -i -f` - -- Print the size of each node next to it, in human-readable format, with directories displaying their cumulative size (as in the `du` command): - -`tree -s -h --du` - -- Print files within the tree hierarchy, using a wildcard (glob) pattern, and pruning out directories that don't contain matching files: - -`tree -P '{{*.txt}}' --prune` - -- Print directories within the tree hierarchy, using the wildcard (glob) pattern, and pruning out directories that aren't ancestors of the wanted one: - -`tree -P {{directory_name}} --matchdirs --prune` - -- Print the tree ignoring the given directories: - -`tree -I '{{directory_name1|directory_name2}}'` diff --git a/pages/osx/uname.md b/pages/osx/uname.md index 78330a2e1fd839..465fa8c446e827 100644 --- a/pages/osx/uname.md +++ b/pages/osx/uname.md @@ -2,19 +2,24 @@ > Print details about the current machine and the operating system running on it. > Note: for additional information about the operating system, try the `sw_vers` command. +> More information: . -- Print hardware-related information: machine and processor: +- Print kernel name: + +`uname` + +- Print system architecture and processor information: `uname -mp` -- Print software-related information: operating system, release number, and version: +- Print kernel name, kernel release and kernel version: `uname -srv` -- Print the nodename (hostname) of the system: +- Print system hostname: `uname -n` -- Print all available system information (hardware, software, nodename): +- Print all available system information: `uname -a` diff --git a/pages/osx/universalaccessd.md b/pages/osx/universalaccessd.md new file mode 100644 index 00000000000000..7b57d92535621d --- /dev/null +++ b/pages/osx/universalaccessd.md @@ -0,0 +1,9 @@ +# universalaccessd + +> Provides universal access services. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`universalaccessd` diff --git a/pages/osx/uptime.md b/pages/osx/uptime.md index f00fd39f3ad88b..39e52c28390034 100644 --- a/pages/osx/uptime.md +++ b/pages/osx/uptime.md @@ -1,6 +1,7 @@ # uptime > Tell how long the system has been running and other information. +> More information: . - Print current time, uptime, number of logged-in users and other information: diff --git a/pages/osx/usernoted.md b/pages/osx/usernoted.md new file mode 100644 index 00000000000000..d6c142c7dc8363 --- /dev/null +++ b/pages/osx/usernoted.md @@ -0,0 +1,9 @@ +# usernoted + +> Provides notification services. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`usernoted` diff --git a/pages/osx/vm_stat.md b/pages/osx/vm_stat.md new file mode 100644 index 00000000000000..11ecd0071a86c6 --- /dev/null +++ b/pages/osx/vm_stat.md @@ -0,0 +1,12 @@ +# vm_stat + +> Show virtual memory statistics. +> More information: . + +- Display virtual memory statistics: + +`vm_stat` + +- Display reports every 2 seconds for 5 times: + +`vm_stat -c {{5}} {{2}}` diff --git a/pages/osx/vpnd.md b/pages/osx/vpnd.md new file mode 100644 index 00000000000000..fc60ab2f603deb --- /dev/null +++ b/pages/osx/vpnd.md @@ -0,0 +1,29 @@ +# vpnd + +> Listens for incoming VPN connections. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`vpnd` + +- Run the daemon in the foreground: + +`vpnd -x` + +- Run the daemon in the foreground and print logs to the terminal: + +`vpnd -d` + +- Run the daemon in the foreground, print logs to the terminal, and quit after validating arguments: + +`vpnd -n` + +- Print usage summary and exit: + +`vpnd -h` + +- Run the daemon for a specific server configuration: + +`vpnd -i {{server_id}}` diff --git a/pages/osx/w.md b/pages/osx/w.md index 1cf83af6e84ea5..e39408d09e3721 100644 --- a/pages/osx/w.md +++ b/pages/osx/w.md @@ -2,6 +2,7 @@ > Show who is logged on and what they are doing. > Print user login, TTY, remote host, login time, idle time, current process. +> More information: . - Show logged-in users info: diff --git a/pages/osx/wacaw.md b/pages/osx/wacaw.md index 132b0b691c4c40..c1bb711dbec3e2 100644 --- a/pages/osx/wacaw.md +++ b/pages/osx/wacaw.md @@ -1,6 +1,6 @@ # wacaw -> A little command-line tool for macOS that allows you to capture both still pictures and video from an attached camera. +> Command-line tool for macOS to capture both still pictures and video from an attached camera. > More information: . - Take a picture from webcam: @@ -9,11 +9,11 @@ - Record a video: -`wacaw --video {{filename}} -D {{duration_in_seconds}}` +`wacaw --video {{filename}} --duration {{10}}` - Take a picture with custom resolution: -`wacaw -x {{width}} -y {{height}} {{filename}}` +`wacaw --width {{width}} --height {{100}} {{filename}}` - Copy image just taken to clipboard: @@ -21,4 +21,4 @@ - List the devices available: -`wacaw -L` +`wacaw --list-devices` diff --git a/pages/osx/warmd.md b/pages/osx/warmd.md new file mode 100644 index 00000000000000..94ee1c9f33a8e6 --- /dev/null +++ b/pages/osx/warmd.md @@ -0,0 +1,9 @@ +# warmd + +> Controls caches used during startup and login. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`warmd` diff --git a/pages/osx/watchdogd.md b/pages/osx/watchdogd.md new file mode 100644 index 00000000000000..8003955471831e --- /dev/null +++ b/pages/osx/watchdogd.md @@ -0,0 +1,9 @@ +# watchdogd + +> Works with the Watchdog KEXT to ensure that the system is healthy and running. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`watchdogd` diff --git a/pages/osx/watchlistd.md b/pages/osx/watchlistd.md new file mode 100644 index 00000000000000..48d966a93f5256 --- /dev/null +++ b/pages/osx/watchlistd.md @@ -0,0 +1,9 @@ +# watchlistd + +> Manages the Apple TV app's watch list. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`watchlistd` diff --git a/pages/osx/wc.md b/pages/osx/wc.md new file mode 100644 index 00000000000000..bacf84c720b657 --- /dev/null +++ b/pages/osx/wc.md @@ -0,0 +1,24 @@ +# wc + +> Count lines, words, or bytes. +> More information: . + +- Count lines in file: + +`wc -l {{path/to/file}}` + +- Count words in file: + +`wc -w {{path/to/file}}` + +- Count characters (bytes) in file: + +`wc -c {{path/to/file}}` + +- Count characters in file (taking multi-byte character sets into account): + +`wc -m {{path/to/file}}` + +- Use standard input to count lines, words and characters (bytes) in that order: + +`{{find .}} | wc` diff --git a/pages/osx/webinspectord.md b/pages/osx/webinspectord.md new file mode 100644 index 00000000000000..b3def41edd10ed --- /dev/null +++ b/pages/osx/webinspectord.md @@ -0,0 +1,9 @@ +# webinspectord + +> Relays commands between Web Inspector and remote targets like WKWebView. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`webinspectord` diff --git a/pages/osx/whatis.md b/pages/osx/whatis.md index 39916d1f288a4a..25a31ce2e77ba9 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/whence.md b/pages/osx/whence.md index c1aa98f07cf4c1..534b7286736b2a 100644 --- a/pages/osx/whence.md +++ b/pages/osx/whence.md @@ -1,23 +1,24 @@ # whence > A zsh builtin to indicate how a given command would be interpreted. +> More information: . - Interpret {{command}}, with expansion if defined as an `alias` (similar to the `command -v` builtin): -`whence {{command}}` +`whence "{{command}}"` - Display type of {{command}}, with location if defined as a function, or binary (equivalent to the `type` and `command -V` builtins): -`whence -v {{command}}` +`whence -v "{{command}}"` - Same as above, except display content of shell functions instead of location (equivalent to `which` builtin): -`whence -c {{command}}` +`whence -c "{{command}}"` - Same as above, but show all occurrences on command path (equivalent to the `where` builtin): -`whence -ca {{command}}` +`whence -ca "{{command}}"` - Search only the `PATH` for {{command}}, ignoring builtins, aliases or shell functions (equivalent to the `where` command): -`whence -p {{command}}` +`whence -p "{{command}}"` diff --git a/pages/osx/whereis.md b/pages/osx/whereis.md deleted file mode 100644 index c3a44bce1565d3..00000000000000 --- a/pages/osx/whereis.md +++ /dev/null @@ -1,19 +0,0 @@ -# whereis - -> Locate the binary, source, and manual page files for a command. - -- Locate binary, source and man pages for ssh: - -`whereis {{ssh}}` - -- Locate binary and man pages for ls: - -`whereis -bm {{ls}}` - -- Locate source of gcc and man pages for Git: - -`whereis -s {{gcc}} -m {{git}}` - -- Locate binaries for gcc in `/usr/bin/` only: - -`whereis -b -B {{/usr/bin/}} -f {{gcc}}` diff --git a/pages/osx/wifi-password.md b/pages/osx/wifi-password.md index 3efb71c6e6af79..778fb644d26c81 100644 --- a/pages/osx/wifi-password.md +++ b/pages/osx/wifi-password.md @@ -1,13 +1,13 @@ # wifi-password -> Get the password of the wifi. +> Get the password of the Wi-Fi. > More information: . -- Get the password for the wifi you are currently logged onto: +- Get the password for the Wi-Fi you are currently logged onto: `wifi-password` -- Get the password for the wifi with a specific SSID: +- Get the password for the Wi-Fi with a specific SSID: `wifi-password {{ssid}}` diff --git a/pages/osx/wifivelocityd.md b/pages/osx/wifivelocityd.md new file mode 100644 index 00000000000000..d9427cb7e3fb83 --- /dev/null +++ b/pages/osx/wifivelocityd.md @@ -0,0 +1,9 @@ +# wifivelocityd + +> XPC helper for performing system context actions for the WiFiVelocity framework. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`wifivelocityd` diff --git a/pages/osx/wps.md b/pages/osx/wps.md new file mode 100644 index 00000000000000..aacc0a541038d8 --- /dev/null +++ b/pages/osx/wps.md @@ -0,0 +1,9 @@ +# wps + +> Assists AirPort in connecting to a network using Wireless Protected Setup. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`wps` diff --git a/pages/osx/wwand.md b/pages/osx/wwand.md new file mode 100644 index 00000000000000..c12878f2561bb5 --- /dev/null +++ b/pages/osx/wwand.md @@ -0,0 +1,9 @@ +# wwand + +> USB WWAN device configuration daemon. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`wwand` diff --git a/pages/osx/xar.md b/pages/osx/xar.md deleted file mode 100644 index 7c6ca149f7afc5..00000000000000 --- a/pages/osx/xar.md +++ /dev/null @@ -1,16 +0,0 @@ -# xar - -> Manage .xar archives. -> More information: . - -- Create a xar archive of all files in a given directory: - -`xar -cf {{archive.xar}} {{path/to/directory}}` - -- Lis[t] the contents of a given xar archive: - -`xar -tf {{archive.xar}}` - -- Extract the contents of a given xar archive to the current directory: - -`xar -xf {{archive.xar}}` diff --git a/pages/osx/xartstorageremoted.md b/pages/osx/xartstorageremoted.md new file mode 100644 index 00000000000000..2e790c860c256e --- /dev/null +++ b/pages/osx/xartstorageremoted.md @@ -0,0 +1,9 @@ +# xartstorageremoted + +> The xART Remote Storage Daemon. Receives save/fetch requests from the CoProcessor. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`xartstorageremoted` diff --git a/pages/osx/xattr.md b/pages/osx/xattr.md index 290e58b2c186b6..a7f7682eb9dd70 100644 --- a/pages/osx/xattr.md +++ b/pages/osx/xattr.md @@ -1,6 +1,7 @@ # xattr > Utility to work with extended filesystem attributes. +> More information: . - List key:value extended attributes for a given file: diff --git a/pages/osx/xcode-select.md b/pages/osx/xcode-select.md index 5383aa80877b75..c2a3d06525f57a 100644 --- a/pages/osx/xcode-select.md +++ b/pages/osx/xcode-select.md @@ -2,6 +2,7 @@ > Switch between different versions of Xcode and the included developer tools. > Also used to update the path to Xcode if it is moved after installation. +> More information: . - Install Xcode's command-line tools: @@ -9,16 +10,16 @@ - Select a given path as the active developer directory: -`xcode-select -s {{path/to/Xcode.app/Contents/Developer}}` +`xcode-select --switch {{path/to/Xcode.app/Contents/Developer}}` - Select a given Xcode instance and use its developer directory as the active one: -`xcode-select -s {{path/to/Xcode.app}}` +`xcode-select --switch {{path/to/Xcode_file.app}}` - Print the currently selected developer directory: -`xcode-select -p` +`xcode-select --print-path` - Discard any user-specified developer directory so that it will be found via the default search mechanism: -`sudo xcode-select -r` +`sudo xcode-select --reset` diff --git a/pages/osx/xcodebuild.md b/pages/osx/xcodebuild.md index 7cc2926caf3cbc..a9831fa65e1585 100644 --- a/pages/osx/xcodebuild.md +++ b/pages/osx/xcodebuild.md @@ -1,6 +1,7 @@ # xcodebuild > Build Xcode projects. +> More information: . - Build workspace: diff --git a/pages/osx/xcrun.md b/pages/osx/xcrun.md new file mode 100644 index 00000000000000..312f0c5483bf4b --- /dev/null +++ b/pages/osx/xcrun.md @@ -0,0 +1,28 @@ +# xcrun + +> Run or locate development tools and properties. +> More information: . + +- Find and run a tool from the active developer directory: + +`xcrun {{tool}} {{arguments}}` + +- Show verbose output: + +`xcrun {{tool}} {{arguments}} --verbose` + +- Find a tool for a given SDK: + +`xcrun --sdk {{sdk_name}}` + +- Find a tool for a given toolchain: + +`xcrun --toolchain {{name}}` + +- Display help: + +`xcrun --help` + +- Display version: + +`xcrun --version` diff --git a/pages/osx/xed.md b/pages/osx/xed.md index 7547392332ee48..b910f686793562 100644 --- a/pages/osx/xed.md +++ b/pages/osx/xed.md @@ -1,15 +1,16 @@ # xed -> Opens files for editing in XCode. +> Opens files for editing in Xcode. +> More information: . -- Open file in XCode: +- Open file in Xcode: `xed {{file1}}` -- Open file(s) in XCode, create if it doesn't exist: +- Open file(s) in Xcode, create if it doesn't exist: -`xed -c {{filename1}}` +`xed --create {{filename1}}` -- Open a file in XCode and jump to line number 75: +- Open a file in Xcode and jump to line number 75: -`xed -l 75 {{filename}}` +`xed --line 75 {{filename}}` diff --git a/pages/osx/xip.md b/pages/osx/xip.md index d666df29cdf7cb..69b00e1bea72c2 100644 --- a/pages/osx/xip.md +++ b/pages/osx/xip.md @@ -2,6 +2,7 @@ > Create or expand compressed files in a secure xip archive. > Only archives signed by Apple are trusted, so this tool should not be used to create archives. +> More information: . - Expand the archive into the current working directory: diff --git a/pages/osx/xml2man.md b/pages/osx/xml2man.md new file mode 100644 index 00000000000000..09c43149a59646 --- /dev/null +++ b/pages/osx/xml2man.md @@ -0,0 +1,16 @@ +# xml2man + +> Compile MPGL to mdoc. +> More information: . + +- Compile an MPGL file to a viewable man page: + +`xml2man {{path/to/command_file.mxml}}` + +- Compile an MPGL file to a specific output file: + +`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_file.mxml}} {{path/to/function_file.3}}` diff --git a/pages/osx/xsand.md b/pages/osx/xsand.md new file mode 100644 index 00000000000000..38d9e674f360e3 --- /dev/null +++ b/pages/osx/xsand.md @@ -0,0 +1,9 @@ +# xsand + +> Xsan file system management daemon. Provides services for the Xsan file system. +> It should not be invoked manually. +> More information: . + +- Start the daemon: + +`xsand` diff --git a/pages/osx/xsltproc.md b/pages/osx/xsltproc.md index 071ab8eb67404f..bc9509fb5d33c9 100644 --- a/pages/osx/xsltproc.md +++ b/pages/osx/xsltproc.md @@ -1,11 +1,12 @@ # xsltproc > Transform XML with XSLT to produce output (usually HTML or XML). +> More information: . - 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 f7333ee2d37e38..af6fc9cc22e286 100644 --- a/pages/osx/yaa.md +++ b/pages/osx/yaa.md @@ -1,27 +1,28 @@ # yaa > Create and manipulate YAA archives. +> More information: . - 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 8MB block size: +- 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/osx/yank.md b/pages/osx/yank.md deleted file mode 100644 index d6741a09f76e44..00000000000000 --- a/pages/osx/yank.md +++ /dev/null @@ -1,19 +0,0 @@ -# yank - -> Read input from stdin and display a selection interface that allows a field to be selected and copied to the clipboard. - -- Yank using the default delimiters (\f, \n, \r, \s, \t): - -`{{sudo dmesg}} | yank` - -- Yank an entire line: - -`{{sudo dmesg}} | yank -l` - -- Yank using a specific delimiter: - -`{{echo hello=world}} | yank -d {{=}}` - -- Only yank fields matching a specific pattern: - -`{{ps ux}} | yank -g "{{[0-9]+}}"` diff --git a/pages/sunos/prctl.md b/pages/sunos/prctl.md index 9f30690dfb0dd9..a332471f44e9bc 100644 --- a/pages/sunos/prctl.md +++ b/pages/sunos/prctl.md @@ -1,17 +1,16 @@ # prctl -> Get or set the resource controls of running processes,. -> Tasks, and projects. +> Get or set the resource controls of running processes, tasks, and projects. > More information: . - Examine process limits and permissions: -`prctl {{PID}}` +`prctl {{pid}}` -- Examine process limits and permissions in machine parseable format: +- Examine process limits and permissions in machine parsable format: -`prctl -P {{PID}}` +`prctl -P {{pid}}` - Get specific limit for a running process: -`prctl -n process.max-file-descriptor {{PID}}` +`prctl -n process.max-file-descriptor {{pid}}` diff --git a/pages/sunos/prstat.md b/pages/sunos/prstat.md index 1ceab064f62332..3f481821a7d26c 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 a8f81bc5a9f1f0..74be3913c00667 100644 --- a/pages/sunos/snoop.md +++ b/pages/sunos/snoop.md @@ -10,16 +10,16 @@ - 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: `snoop to port {{port}} from host {{hostname}}` -- Capture and show an hex-dump of network packets exchanged between two IP addresses: +- 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 5fea761b796f5f..cd820c0b639eb2 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/assoc.md b/pages/windows/assoc.md index 6a797fdd309ec0..18780496d01db5 100644 --- a/pages/windows/assoc.md +++ b/pages/windows/assoc.md @@ -1,16 +1,20 @@ # assoc -> Display or modify file extension associations. -> More information: . +> Display or change associations between file extensions and file types. +> More information: . -- Display all associated filetypes: +- List all associations between file extensions and file types: `assoc` -- Display the associated filetype for a specific extension: +- Display the associated file type for a specific extension: `assoc {{.txt}}` -- Modify the associated filetype for a specific extension: +- Set the associated file type for a specific extension: -`assoc {{.txt}}={{txtfile}}` +`assoc .{{txt}}={{txtfile}}` + +- View the output of `assoc` one screen at a time: + +`assoc | {{more}}` diff --git a/pages/windows/attrib.md b/pages/windows/attrib.md index 9bcc0af873550f..0703958290d067 100644 --- a/pages/windows/attrib.md +++ b/pages/windows/attrib.md @@ -1,28 +1,28 @@ # attrib -> Displays or changes file and directory attributes. -> More information: . +> Display or change attributes of files or directories. +> More information: . -- Display the attributes of the files in the current directory: +- Display all set attributes of files in the current directory: `attrib` -- Display the attributes of the files in the current directory and sub-directories: +- Display all set attributes of files in a specific directory: -`attrib /S` +`attrib {{path\to\directory}}` -- Display the attributes of the files and directories in the current directory and sub-directories: +- Display all set attributes of files and [d]irectories in the current directory: -`attrib /S /D` +`attrib /d` -- Add the read-only attribute to a file: +- Display all set attributes of files in the current directory and [s]ub-directories: -`attrib +R {{document.txt}}` +`attrib /s` -- Remove the system and hidden attributes of a file: +- Add the `[r]ead-only` or `[a]rchive` or `[s]ystem` or `[h]idden` or `not content [i]ndexed` attribute to files or directories: -`attrib -S -H {{document.txt}}` +`attrib +{{r|a|s|h|i}} {{path\to\file_or_directory1 path\to\file_or_directory2 ...}}` -- Add the hidden attribute to a directory: +- Remove a specific attribute of files or directories: -`attrib +H {{path\to\directory}}` +`attrib -{{r|a|s|h|i}} {{path\to\file_or_directory1 path\to\file_or_directory2 ...}}` diff --git a/pages/windows/azcopy.md b/pages/windows/azcopy.md index e51b384b66dca2..b0977d5c243764 100644 --- a/pages/windows/azcopy.md +++ b/pages/windows/azcopy.md @@ -1,19 +1,19 @@ # azcopy > A file transfer tool for uploading to Azure Cloud Storage Accounts. -> More information: . +> More information: . -- Login to an Azure Tenant: +- Log in to an Azure Tenant: `azopy login` - 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/bleachbit_console.md b/pages/windows/bleachbit_console.md new file mode 100644 index 00000000000000..7d8714de1e8b7e --- /dev/null +++ b/pages/windows/bleachbit_console.md @@ -0,0 +1,25 @@ +# bleachbit_console + +> The Bleachbit command-line interface (CLI) allows users to automate the process of cleaning junk files on their system. +> It can be run with various command-line arguments to perform different clean-up operations. +> 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/cd.md b/pages/windows/cd.md index fad86ae0b028b7..5643ae95450dce 100644 --- a/pages/windows/cd.md +++ b/pages/windows/cd.md @@ -1,20 +1,24 @@ # cd -> Displays the name of or changes the current working directory. -> More information: . +> Display the current working directory or move to a different directory. +> More information: . -- Go to a directory in the same drive: +- Display the path of the current directory: -`cd {{path/to/directory}}` +`cd` -- Display the name of the current directory: +- Go to root of current drive: -`cd` +`cd \` - Go up to the parent of the current directory: `cd ..` -- Go to a directory in a different drive: +- Go to a specific directory in the same drive: + +`cd {{path\to\directory}}` + +- Go to a specific directory in a different [d]rive: -`cd {{path/to/directory}} /d` +`cd /d {{C}}:{{path\to\directory}}` diff --git a/pages/windows/chkdsk.md b/pages/windows/chkdsk.md index ef3e911e20eb28..5e53473eba506a 100644 --- a/pages/windows/chkdsk.md +++ b/pages/windows/chkdsk.md @@ -1,7 +1,7 @@ # chkdsk > Check file system and volume metadata for errors. -> More information: . +> More information: . - Specify the drive letter (followed by a colon), mount point, or volume name to check: diff --git a/pages/windows/choco-apikey.md b/pages/windows/choco-apikey.md index 1bed0f1e1283af..2e7d1e24f88f36 100644 --- a/pages/windows/choco-apikey.md +++ b/pages/windows/choco-apikey.md @@ -1,4 +1,4 @@ -# choco-apikey +# choco apikey > Manage API keys for Chocolatey sources. > More information: . diff --git a/pages/windows/choco-install.md b/pages/windows/choco-install.md index 50609adb4094b1..b8617a709fac06 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 499a8850cb5d0e..cdb676a91f1398 100644 --- a/pages/windows/choco-new.md +++ b/pages/windows/choco-new.md @@ -19,6 +19,6 @@ `choco new {{package_name}} --output-directory {{path/to/directory}}` -- Create a new package with specific 32-bit and 64-bit installer urls: +- Create a new package with specific 32-bit and 64-bit installer URLs: `choco new {{package_name}} url="{{url}}" url64="{{url}}"` diff --git a/pages/windows/choco-pack.md b/pages/windows/choco-pack.md index 9ff7851edd920d..2e8ff24cafaa89 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 4e39f52463d120..a208768b66bc12 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 fbacf26cf7d6a8..3344ac19a50676 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 4326f86b17e8d6..8d69d296505e2e 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 c080a28cd97dd3..7bcb4e14086aa7 100644 --- a/pages/windows/choco.md +++ b/pages/windows/choco.md @@ -1,7 +1,7 @@ # choco -> A command line interface for the Chocolatey package manager. -> See `choco install`, `choco upgrade` and other pages for additional information. +> A command-line interface for the Chocolatey package manager. +> Some subcommands such as `choco install` have their own usage documentation. > More information: . - Execute Chocolatey command: diff --git a/pages/windows/choice.md b/pages/windows/choice.md index 3a0c3d1da99f38..e9b91013aea624 100644 --- a/pages/windows/choice.md +++ b/pages/windows/choice.md @@ -1,29 +1,28 @@ # choice -> Prompts the user to select one item from a list of single-character choices in a batch program, and then returns the index of the selected choice. -> If used without parameters, choice displays the default choices Y and N. -> More information: . +> Prompt user to select a choice and return the selected choice index. +> More information: . -- A,B and C as list of choices to be used: +- Prompt the current user to select a `Y` or `N` choice: -`choice /c {{ABC}}` +`choice` -- Use the default [Y,N] list of choices: +- Prompt the current user to select a [c]hoice from a specific set: -`choice` +`choice /c {{AB}}` -- Specify that the choices are case-sensitive: +- Prompt the current user to select a choice with a specific [m]essage: -`choice /CS {{AaBb}}` +`choice /m "{{message}}"` -- Specify the number of seconds to pause before using the default choice specified by `/d`: +- Prompt the current user to select a [c]ase-[s]ensitive [c]hoice from a specific set: -`choice /C {{AaBb}} /t {{3}} /d {{b}}` +`choice /cs /c {{Ab}}` -- Specify a message to display before the list of choices. If `/m` is not specified, only the choice prompt is displayed: +- Prompt the current user to select a choice and prefer the [d]efault choice in a specific [t]ime: -`choice /m {{message}} /C {{ABC}}` +`choice /t {{5}} /d {{N}}` -- Display help message: +- Display help: `choice /?` diff --git a/pages/windows/chrome.md b/pages/windows/chrome.md new file mode 100644 index 00000000000000..027c3f7baa13c2 --- /dev/null +++ b/pages/windows/chrome.md @@ -0,0 +1,8 @@ +# chrome + +> This command is an alias of `chromium`. +> More information: . + +- View documentation for the original command: + +`tldr chromium` diff --git a/pages/windows/cinst.md b/pages/windows/cinst.md new file mode 100644 index 00000000000000..5b44d7b09c2a71 --- /dev/null +++ b/pages/windows/cinst.md @@ -0,0 +1,8 @@ +# cinst + +> This command is an alias of `choco install`. +> More information: . + +- View documentation for the original command: + +`tldr choco install` diff --git a/pages/windows/cipher.md b/pages/windows/cipher.md index d0a7466c238fc6..cec10723c6dddc 100644 --- a/pages/windows/cipher.md +++ b/pages/windows/cipher.md @@ -1,16 +1,20 @@ # cipher -> Encrypt or decrypt files on NTFS drives. -> More information: . +> Display or alter the encryption of directories and files on NTFS volumes. +> More information: . -- Encrypt a file or directory: +- Display information about a specific encrypted file or directory: -`cipher /e:{{path/to/file_or_directory}}` +`cipher /c:{{path\to\file_or_directory}}` -- Decrypt a file or directory: +- [e]ncrypt a file or directory (files added later to the directory are also encrypted as the directory is marked): -`cipher /d:{{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}}` - 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 efb2b04ca7f108..d1f5749b477500 100644 --- a/pages/windows/clip.md +++ b/pages/windows/clip.md @@ -1,15 +1,15 @@ # clip > Copy input content to the Windows clipboard. -> More information: . +> More information: . -- Pipe command line output to the Windows clipboard: +- Pipe command-line output to the Windows clipboard: `{{dir}} | clip` - 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/clist.md b/pages/windows/clist.md new file mode 100644 index 00000000000000..1f51245cb160bd --- /dev/null +++ b/pages/windows/clist.md @@ -0,0 +1,8 @@ +# clist + +> This command is an alias of `choco list`. +> More information: . + +- View documentation for the original command: + +`tldr choco list` diff --git a/pages/windows/cls.md b/pages/windows/cls.md index bc014e4b4a0eba..508aca970e2eb1 100644 --- a/pages/windows/cls.md +++ b/pages/windows/cls.md @@ -1,7 +1,7 @@ # cls > Clears the screen. -> More information: . +> More information: . - Clear the screen: diff --git a/pages/windows/cmd.md b/pages/windows/cmd.md index ecb63d9af87aa4..bb0b7966dfef50 100644 --- a/pages/windows/cmd.md +++ b/pages/windows/cmd.md @@ -1,36 +1,36 @@ # cmd > The Windows command interpreter. -> More information: . +> More information: . -- Start a new instance of the command interpreter: +- Start an interactive shell session: `cmd` -- Run the specified command and then exit: +- Execute specific [c]ommands: -`cmd /c "{{command}}"` +`cmd /c {{echo Hello world}}` -- Run the specified command and then enter an interactive shell: +- Execute a specific script: -`cmd /k "{{command}}"` +`cmd {{path\to\script.bat}}` -- Disable the usage of `echo` in command output: +- Execute specific commands and then enter an interactive shell: -`cmd /q` +`cmd /k {{echo Hello world}}` -- Enable or disable command extensions: +- Start an interactive shell session where `echo` is disabled in command output: -`cmd /e:{{on|off}}` +`cmd /q` -- Enable or disable file or directory autocompletion: +- Start an interactive shell session with delayed [v]ariable expansion enabled or disabled: -`cmd /f:{{on|off}}` +`cmd /v:{{on|off}}` -- Enable or disable environment variable expansion: +- Start an interactive shell session with command [e]xtensions enabled or disabled: -`cmd /v:{{on|off}}` +`cmd /e:{{on|off}}` -- Force output to use unicode encoding: +- Start an interactive shell session with used [u]nicode encoding: `cmd /u` diff --git a/pages/windows/cmstp.md b/pages/windows/cmstp.md index 65825ab7ff476c..3e3de0325cb90e 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. -> More information: . +> A command-line tool for managing 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/color.md b/pages/windows/color.md index 8d38cd50ac8d92..0087109f9aefd1 100644 --- a/pages/windows/color.md +++ b/pages/windows/color.md @@ -1,7 +1,7 @@ # color > Set the console foreground and background colors. -> More information: . +> More information: . - Set the console colors to the default values: @@ -11,6 +11,6 @@ `color /?` -- Set the console foreground and background to a specific color: +- Set the console foreground and background to a specific color using hexadecimal numbers (`1-9,a-f`): `color {{foreground_code}}{{background_code}}` diff --git a/pages/windows/comp.md b/pages/windows/comp.md index d2d8a54171764a..00e0a4ce769606 100644 --- a/pages/windows/comp.md +++ b/pages/windows/comp.md @@ -2,7 +2,7 @@ > Compare the contents of two files or sets of files. > Use wildcards (*) to compare sets of files. -> More information: . +> More information: . - Compare files interactively: @@ -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/cpush.md b/pages/windows/cpush.md new file mode 100644 index 00000000000000..e2a94f17a4419b --- /dev/null +++ b/pages/windows/cpush.md @@ -0,0 +1,8 @@ +# cpush + +> This command is an alias of `choco push`. +> More information: . + +- See documentation for the original command: + +`tldr choco-push` diff --git a/pages/windows/cuninst.md b/pages/windows/cuninst.md new file mode 100644 index 00000000000000..361b87fa956a33 --- /dev/null +++ b/pages/windows/cuninst.md @@ -0,0 +1,8 @@ +# cuninst + +> This command is an alias of `choco uninstall`. +> More information: . + +- View documentation for the original command: + +`tldr choco uninstall` diff --git a/pages/windows/curl.md b/pages/windows/curl.md new file mode 100644 index 00000000000000..6742bdebda2130 --- /dev/null +++ b/pages/windows/curl.md @@ -0,0 +1,19 @@ +# curl + +> In PowerShell, this command may be an alias of `Invoke-WebRequest` when the original `curl` program () is not properly installed. + +- Check whether `curl` 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` + +- View documentation for the original `curl` command: + +`tldr curl -p common` + +- View documentation for the original `curl` command in older versions of `tldr` command-line client: + +`tldr curl -o common` + +- View documentation for PowerShell's `Invoke-WebRequest` command: + +`tldr invoke-webrequest` diff --git a/pages/windows/date.md b/pages/windows/date.md new file mode 100644 index 00000000000000..4be38a1678e528 --- /dev/null +++ b/pages/windows/date.md @@ -0,0 +1,16 @@ +# date + +> Displays or sets the system date. +> More information: . + +- Display the current system date and prompt to enter a new date (leave empty to keep unchanged): + +`date` + +- Display the current system date without prompting for a new date: + +`date /t` + +- Change the current system date to a specific date: + +`date {{month}}-{{day}}-{{year}}` diff --git a/pages/windows/del.md b/pages/windows/del.md index c47fe819491411..ec97f435aa0525 100644 --- a/pages/windows/del.md +++ b/pages/windows/del.md @@ -1,7 +1,7 @@ # del > Delete one or more files. -> More information: . +> More information: . - Delete one or more space-separated files or patterns: diff --git a/pages/windows/dir.md b/pages/windows/dir.md index 2d2416cfc924c6..5e38507c2114e1 100644 --- a/pages/windows/dir.md +++ b/pages/windows/dir.md @@ -1,7 +1,7 @@ # dir > List directory contents. -> More information: . +> More information: . - Show the contents of the current directory: @@ -9,7 +9,7 @@ - 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: @@ -17,4 +17,4 @@ - Show the contents of a given directory, including hidden ones: -`dir {{path/to/directory}} /A` +`dir {{path\to\directory}} /A` diff --git a/pages/windows/diskpart.md b/pages/windows/diskpart.md new file mode 100644 index 00000000000000..9e4e71ca2445da --- /dev/null +++ b/pages/windows/diskpart.md @@ -0,0 +1,32 @@ +# diskpart + +> Disk, volume and partition manager. +> More information: . + +- Run diskpart by itself in an administrative command prompt to enter its command line: + +`diskpart` + +- List all disks: + +`list disk` + +- Select a volume: + +`select volume {{volume}}` + +- Assign a drive letter to the selected volume: + +`assign letter {{letter}}` + +- Create a new partition: + +`create partition primary` + +- Activate the selected volume: + +`active` + +- Exit diskpart: + +`exit` diff --git a/pages/windows/doskey.md b/pages/windows/doskey.md index 320cdc1e872240..e8e9ab090fcee7 100644 --- a/pages/windows/doskey.md +++ b/pages/windows/doskey.md @@ -1,7 +1,7 @@ # doskey -> Manage macros, windows commands and command lines. -> More information: . +> Manage macros, windows commands and command-lines. +> More information: . - List available macros: @@ -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/driverquery.md b/pages/windows/driverquery.md index cea99f3fc2d935..267ffa79424971 100644 --- a/pages/windows/driverquery.md +++ b/pages/windows/driverquery.md @@ -1,7 +1,7 @@ # driverquery > Display information about installed device drivers. -> More information: . +> More information: . - Display a list of all installed device drivers: diff --git a/pages/windows/eventcreate.md b/pages/windows/eventcreate.md index a63a13f133475c..7bcf958937bf85 100644 --- a/pages/windows/eventcreate.md +++ b/pages/windows/eventcreate.md @@ -2,9 +2,9 @@ > Create custom entries in the event log. > Event IDs can be any number between 1 and 1000. -> More information: . +> More information: . -- Create a new event with a given id (1-1000) in the log: +- Create a new event with a given ID (1-1000) in the log: `eventcreate /t {{success|error|warning|information}} /id {{id}} /d "{{message}}"` diff --git a/pages/windows/exit.md b/pages/windows/exit.md index 2082fb2d8a904e..2fdc937d04de2c 100644 --- a/pages/windows/exit.md +++ b/pages/windows/exit.md @@ -1,7 +1,7 @@ # exit > Quit the current CMD instance or the current batch file. -> More information: . +> More information: . - Quit the current CMD instance: @@ -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 29f5deb244e9c0..da660593a9603e 100644 --- a/pages/windows/expand.md +++ b/pages/windows/expand.md @@ -1,24 +1,24 @@ # expand > Uncompress one or more Windows Cabinet files. -> More information: . +> More information: . - 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 c5f6dead28973e..30251b8119ea98 100644 --- a/pages/windows/explorer.md +++ b/pages/windows/explorer.md @@ -1,6 +1,7 @@ # explorer > The Windows File Explorer. +> More information: . - Open Windows Explorer: @@ -12,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 57bcdc8da5a9d0..632fef9b8bbb81 100644 --- a/pages/windows/fc.md +++ b/pages/windows/fc.md @@ -2,32 +2,32 @@ > Compare the differences between two files or sets of files. > Use wildcards (*) to compare sets of files. -> More information: . +> More information: . - 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 50b8fca68c6a23..a93184613765a7 100644 --- a/pages/windows/find.md +++ b/pages/windows/find.md @@ -1,20 +1,20 @@ # find > Find a specified string in one or more files. -> More information: . +> More information: . - 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/findstr.md b/pages/windows/findstr.md index b3517df71d4ea9..49de0a9d9b47fd 100644 --- a/pages/windows/findstr.md +++ b/pages/windows/findstr.md @@ -1,7 +1,7 @@ # findstr > Find specified text within one or more files. -> More information: . +> More information: . - Find space-separated string(s) in all files: diff --git a/pages/windows/finger.md b/pages/windows/finger.md index c1d4f46ee7bb40..a91a84aa1ef3ed 100644 --- a/pages/windows/finger.md +++ b/pages/windows/finger.md @@ -2,7 +2,7 @@ > Return information about one or more users on a specified system. > The remote system must be running the Finger service. -> More information: . +> More information: . - Display information about a specific user: diff --git a/pages/windows/fondue.md b/pages/windows/fondue.md index 655c16509eb08a..de17e7483ab47f 100644 --- a/pages/windows/fondue.md +++ b/pages/windows/fondue.md @@ -1,7 +1,7 @@ # fondue -> A command line installer for optional Windows features. -> More information: . +> A command-line installer for optional Windows features. +> More information: . - Enable a specific Windows feature: diff --git a/pages/windows/for.md b/pages/windows/for.md new file mode 100644 index 00000000000000..01bde03a4bc8a3 --- /dev/null +++ b/pages/windows/for.md @@ -0,0 +1,24 @@ +# for + +> Conditionally execute a command several times. +> More information: . + +- Execute given commands for the specified set: + +`for %{{variable}} in ({{item_a item_b item_c}}) do ({{echo Loop is executed}})` + +- Iterate over a given range of numbers: + +`for /l %{{variable}} in ({{from}}, {{step}}, {{to}}) do ({{echo Loop is executed}})` + +- Iterate over a given list of files: + +`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 ({{path\to\directory1.ext path\to\directory2.ext ...}}) do ({{echo Loop is executed}})` + +- Perform a given command in every directory: + +`for /d %{{variable}} in (*) do (if exist %{{variable}} {{echo Loop is executed}})` diff --git a/pages/windows/forfiles.md b/pages/windows/forfiles.md index 6d0c70c6434f7b..5b1a4bde21e350 100644 --- a/pages/windows/forfiles.md +++ b/pages/windows/forfiles.md @@ -1,7 +1,7 @@ # forfiles > Select one or more files to execute a specified command on. -> More information: . +> More information: . - Search for files in the current directory: @@ -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/fsutil.md b/pages/windows/fsutil.md new file mode 100644 index 00000000000000..6ac745186c5a66 --- /dev/null +++ b/pages/windows/fsutil.md @@ -0,0 +1,24 @@ +# fsutil + +> Displays information about file system volumes. +> More information: . + +- Display a list of volumes: + +`fsutil volume list` + +- Display information about a volume's file system: + +`fsutil fsInfo volumeInfo {{drive_letter|volume_path}}` + +- Display the current state of the file system auto-repair for all volumes: + +`fsutil repair state` + +- Display the dirty bit state of all volumes: + +`fsutil dirty query` + +- Set the dirty bit state of a volume: + +`fsutil dirty set {{drive_letter|volume_path}}` diff --git a/pages/windows/ftp.md b/pages/windows/ftp.md index fed5dc77c30e87..5c8a6cff0b4efa 100644 --- a/pages/windows/ftp.md +++ b/pages/windows/ftp.md @@ -1,7 +1,7 @@ # ftp > Interactively transfer files between a local and remote FTP server. -> More information: . +> More information: . - Connect to a remote FTP server interactively: @@ -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 feae2d6fb4591d..bfa689dad369a1 100644 --- a/pages/windows/ftype.md +++ b/pages/windows/ftype.md @@ -1,7 +1,7 @@ # ftype > Display or modify file types used for file extension association. -> More information: . +> More information: . - Display a list of all file types: @@ -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 00000000000000..1f1cb3a770583f --- /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 new file mode 100644 index 00000000000000..008ed35c7b66c8 --- /dev/null +++ b/pages/windows/get-childitem.md @@ -0,0 +1,25 @@ +# Get-ChildItem + +> List items in a directory. +> This command can only be used through PowerShell. +> More information: . + +- List all non-hidden items in the current directory: + +`Get-ChildItem` + +- List only directories in the current directory: + +`Get-ChildItem -Directory` + +- List only files in the current directory: + +`Get-ChildItem -File` + +- List items in the current directory, including hidden items: + +`Get-ChildItem -Hidden` + +- List items in a directory other than the current one: + +`Get-ChildItem -Path {{path\to\directory}}` diff --git a/pages/windows/get-content.md b/pages/windows/get-content.md index 10b8c434dec348..81aed61615b8b1 100644 --- a/pages/windows/get-content.md +++ b/pages/windows/get-content.md @@ -1,16 +1,17 @@ # Get-Content > Get the content of the item at the specified location. -> More information: . +> This command can only be used through PowerShell. +> More information: . - 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 00000000000000..76f633580263bd --- /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 new file mode 100644 index 00000000000000..cf2f5941b7a2db --- /dev/null +++ b/pages/windows/get-filehash.md @@ -0,0 +1,13 @@ +# Get-FileHash + +> Calculate a hash for a file. +> This command can only be used through PowerShell. +> More information: . + +- Calculate a hash for a specified file using the SHA256 algorithm: + +`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}}` diff --git a/pages/windows/get-history.md b/pages/windows/get-history.md new file mode 100644 index 00000000000000..5522df3eac1b22 --- /dev/null +++ b/pages/windows/get-history.md @@ -0,0 +1,17 @@ +# Get-History + +> Display PowerShell command history. +> This command can only be used through PowerShell. +> More information: . + +- Display the commands history list with ID: + +`Get-History` + +- Get PowerShell history item by ID: + +`Get-History -Id {{id}}` + +- Display the last N commands: + +`Get-History -Count {{10}}` diff --git a/pages/windows/getmac.md b/pages/windows/getmac.md index dddbaf1013bc71..e166bffd16a701 100644 --- a/pages/windows/getmac.md +++ b/pages/windows/getmac.md @@ -1,7 +1,7 @@ # getmac > Display the MAC addresses of a system. -> More information: . +> More information: . - Display the MAC addresses for the current system: diff --git a/pages/windows/gpupdate.md b/pages/windows/gpupdate.md index e9fae7c37b6b41..d56b260d0b52c6 100644 --- a/pages/windows/gpupdate.md +++ b/pages/windows/gpupdate.md @@ -1,7 +1,7 @@ # gpupdate > A tool to check and apply Windows Group Policy settings. -> More information: . +> More information: . - Check and apply updated Group Policy settings: @@ -9,7 +9,7 @@ - Specify the target Group Policy settings to check for update: -`gpupdate /target=:{{computer|user}}` +`gpupdate /target:{{computer|user}}` - Force all Group Policy settings to be reapplied: diff --git a/pages/windows/if.md b/pages/windows/if.md new file mode 100644 index 00000000000000..5d412196bff70a --- /dev/null +++ b/pages/windows/if.md @@ -0,0 +1,32 @@ +# if + +> Performs conditional processing in batch scripts. +> More information: . + +- Execute the specified commands if the condition is true: + +`if {{condition}} ({{echo Condition is true}})` + +- Execute the specified commands if the condition is false: + +`if not {{condition}} ({{echo Condition is true}})` + +- Execute the first specified commands if the condition is true otherwise execute the second specified commands: + +`if {{condition}} ({{echo Condition is true}}) else ({{echo Condition is false}})` + +- Check whether `%errorlevel%` is greater than or equal to the specified exit code: + +`if errorlevel {{2}} ({{echo Condition is true}})` + +- Check whether two strings are equal: + +`if %{{variable}}% == {{string}} ({{echo Condition is true}})` + +- Check whether two strings are equal without respecting letter case: + +`if /i %{{variable}}% == {{string}} ({{echo Condition is true}})` + +- Check whether a file exist: + +`if exist {{path\to\file}} ({{echo Condition is true}})` diff --git a/pages/windows/invoke-item.md b/pages/windows/invoke-item.md new file mode 100644 index 00000000000000..c6201bce6b9bac --- /dev/null +++ b/pages/windows/invoke-item.md @@ -0,0 +1,29 @@ +# Invoke-Item + +> Open files in their respective default programs. +> This command can only be used through PowerShell. +> More information: . + +- Open a file in its default program: + +`Invoke-Item -Path {{path\to\file}}` + +- Open all files inside a directory: + +`Invoke-Item -Path {{path\to\directory}}\*` + +- Open all PNGs inside a directory: + +`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*}}` + +- Open all files inside a directory except those containing a specific 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` diff --git a/pages/windows/invoke-webrequest.md b/pages/windows/invoke-webrequest.md new file mode 100644 index 00000000000000..c0c2a3bbb324ef --- /dev/null +++ b/pages/windows/invoke-webrequest.md @@ -0,0 +1,25 @@ +# Invoke-WebRequest + +> Performs a HTTP/HTTPS request to the Web. +> This command can only be used through PowerShell. +> More information: . + +- Download the contents of a URL to a file: + +`Invoke-WebRequest {{http://example.com}} -OutFile {{path\to\file}}` + +- Send form-encoded data (POST request of type `application/x-www-form-urlencoded`): + +`Invoke-WebRequest -Method Post -Body @{ name='bob' } {{http://example.com/form}}` + +- Send a request with an extra header, using a custom HTTP method: + +`Invoke-WebRequest -Headers {{@{ X-My-Header = '123' }}} -Method {{PUT}} {{http://example.com}}` + +- Send data in JSON format, specifying the appropriate content-type header: + +`Invoke-WebRequest -Body {{'{"name":"bob"}'}} -ContentType 'application/json' {{http://example.com/users/1234}}` + +- Pass a username and password for server authentication: + +`Invoke-WebRequest -Headers @{ Authorization = "Basic "+ [System.Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes("myusername:mypassword")) } {{http://example.com}}` diff --git a/pages/windows/ipconfig.md b/pages/windows/ipconfig.md index afcad4011c3f2e..8fec1cb2788d79 100644 --- a/pages/windows/ipconfig.md +++ b/pages/windows/ipconfig.md @@ -1,7 +1,7 @@ # ipconfig > Display and manage the network configuration of Windows. -> More information: . +> More information: . - Show a list of network adapters: diff --git a/pages/windows/iscc.md b/pages/windows/iscc.md index 77ed56a10b1c7c..de5933da216704 100644 --- a/pages/windows/iscc.md +++ b/pages/windows/iscc.md @@ -2,15 +2,16 @@ > Compiler for Inno Setup installers. > It compiles an Inno Setup scripts into an Windows installer executable. +> More information: . - 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/iwr.md b/pages/windows/iwr.md new file mode 100644 index 00000000000000..5a008a7e45e85d --- /dev/null +++ b/pages/windows/iwr.md @@ -0,0 +1,7 @@ +# iwr + +> This command is an alias of `Invoke-WebRequest` in PowerShell. + +- View documentation for the original command: + +`tldr invoke-webrequest` diff --git a/pages/windows/logoff.md b/pages/windows/logoff.md index 716e08909cf5e9..3bff467282a095 100644 --- a/pages/windows/logoff.md +++ b/pages/windows/logoff.md @@ -1,7 +1,7 @@ # logoff > Terminate a login session. -> More information: . +> More information: . - Terminate the current session: diff --git a/pages/windows/measure-command.md b/pages/windows/measure-command.md new file mode 100644 index 00000000000000..03bfd5277bd0b6 --- /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 00000000000000..c4950ca813ee6d --- /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 d45df27f7bb58d..aa4933206a6e41 100644 --- a/pages/windows/mkdir.md +++ b/pages/windows/mkdir.md @@ -1,12 +1,12 @@ # mkdir > Creates a directory. -> More information: . +> More information: . - Create a directory: -`mkdir {{directory_name}}` +`mkdir {{path\to\directory}}` -- Recursively create a nested directory tree: +- Create a nested directory tree recursively: -`mkdir {{path/to/sub_directory_name}}` +`mkdir {{path\to\sub_directory}}` diff --git a/pages/windows/mklink.md b/pages/windows/mklink.md index 11d54430328b85..0d7a78f24646dd 100644 --- a/pages/windows/mklink.md +++ b/pages/windows/mklink.md @@ -1,20 +1,20 @@ # mklink > Create symbolic links. -> More information: . +> More information: . - 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 4d0b8f40866ef6..40b7fdd134a8b7 100644 --- a/pages/windows/more.md +++ b/pages/windows/more.md @@ -1,31 +1,31 @@ # more -> Display paginated output from stdin or a file. -> More information: . +> Display paginated output from `stdin` or a file. +> More information: . -- Display paginated output from stdin: +- Display paginated output from `stdin`: `{{echo test}} | more` - 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/mount.md b/pages/windows/mount.md index 22cd1c1942e2c0..872498161f4dcd 100644 --- a/pages/windows/mount.md +++ b/pages/windows/mount.md @@ -1,7 +1,7 @@ # mount > Mount Network File System (NFS) network shares. -> More information: . +> More information: . - Mount a share to the "Z" drive letter: diff --git a/pages/windows/msg.md b/pages/windows/msg.md index 9cb7128aefe53c..21ca84d9ec2dd6 100644 --- a/pages/windows/msg.md +++ b/pages/windows/msg.md @@ -1,13 +1,13 @@ # msg > Send a message to a specific user or session. -> More information: . +> More information: . - Send a message to a specified user or session: `msg {{username|session_name|session_id}} {{message}}` -- Send a message from stdin: +- Send a message from `stdin`: `echo "{{message}}" | msg {{username|session_name|session_id}}` @@ -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 new file mode 100644 index 00000000000000..5cff718a5bf605 --- /dev/null +++ b/pages/windows/msiexec.md @@ -0,0 +1,20 @@ +# msiexec + +> Install, update, repair, or uninstall Windows programs using MSI and MSP package files. +> More information: . + +- Install a program from its MSI package: + +`msiexec /package {{path\to\file.msi}}` + +- Install a MSI package from a website: + +`msiexec /package {{https://example.com/installer.msi}}` + +- Install a MSP patch file: + +`msiexec /update {{path\to\file.msp}}` + +- Uninstall a program or patch using their respective MSI or MSP file: + +`msiexec /uninstall {{path\to\file}}` diff --git a/pages/windows/netstat.md b/pages/windows/netstat.md new file mode 100644 index 00000000000000..e3d265cb193763 --- /dev/null +++ b/pages/windows/netstat.md @@ -0,0 +1,36 @@ +# netstat + +> Displays active TCP connections, ports on which the computer is listening, network adapter statistics, the IP routing table, IPv4 statistics and IPv6 statistics. +> More information: . + +- Display active TCP connections: + +`netstat` + +- Display all active TCP connections and the TCP and UDP ports on which the computer is listening: + +`netstat -a` + +- Display network adapter statistics, such as the number of bytes and packets sent and received: + +`netstat -e` + +- Display active TCP connections and express addresses and port numbers numerically: + +`netstat -n` + +- Display active TCP connections and include the process ID (PID) for each connection: + +`netstat -o` + +- Display the contents of the IP routing table: + +`netstat -r` + +- Display statistics by protocol: + +`netstat -s` + +- Display a list of currently open ports and related IP addresses: + +`netstat -an` diff --git a/pages/windows/nfsstat.md b/pages/windows/nfsstat.md index 49e98519c1f522..56cb55086853df 100644 --- a/pages/windows/nfsstat.md +++ b/pages/windows/nfsstat.md @@ -1,7 +1,7 @@ # nfsstat > Display or reset the number of calls made to the NFS server. -> More information: . +> More information: . - Display the recorded number of calls made to the NFS server: diff --git a/pages/windows/nvm.md b/pages/windows/nvm.md new file mode 100644 index 00000000000000..6f2d5bb64e36c1 --- /dev/null +++ b/pages/windows/nvm.md @@ -0,0 +1,25 @@ +# nvm + +> Install, uninstall, or switch between Node.js versions. +> Supports version numbers like "12.8" or "v16.13.1", and labels like "stable", "system", etc. +> More information: . + +- Install a specific version of Node.js: + +`nvm install {{node_version}}` + +- Set the default version of Node.js (must be run as Administrator): + +`nvm use {{node_version}}` + +- List all available Node.js versions and highlight the default one: + +`nvm list` + +- List all remote Node.js versions: + +`nvm ls-remote` + +- Uninstall a given Node.js version: + +`nvm uninstall {{node_version}}` diff --git a/pages/windows/octo.md b/pages/windows/octo.md index 8434e086d64de7..ae4bb4afa0c93f 100644 --- a/pages/windows/octo.md +++ b/pages/windows/octo.md @@ -1,6 +1,6 @@ # octo -> Command line tools for Octopus Deploy. +> Command-line tools for Octopus Deploy. > More information: . - Create a package: diff --git a/pages/windows/out-string.md b/pages/windows/out-string.md new file mode 100644 index 00000000000000..2a946af9cdfa33 --- /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 new file mode 100644 index 00000000000000..952311bd992d6b --- /dev/null +++ b/pages/windows/pabcnetcclear.md @@ -0,0 +1,24 @@ +# pabcnetcclear + +> Preprocess and compile PascalABC.NET source files. +> More information: . + +- Compile the specified source file into an executable with the same name: + +`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}}` + +- 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}}` + +- 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\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}}` diff --git a/pages/windows/path.md b/pages/windows/path.md index 6c4547f652957b..9bc6d667f5516b 100644 --- a/pages/windows/path.md +++ b/pages/windows/path.md @@ -1,7 +1,7 @@ # path > Display or set the search path for executable files. -> More information: . +> More information: . - Display the current path: @@ -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/pathping.md b/pages/windows/pathping.md index 68a59c7c39ca11..d4965f0cb17014 100644 --- a/pages/windows/pathping.md +++ b/pages/windows/pathping.md @@ -1,13 +1,13 @@ # pathping > A trace route tool combining features of `ping` and `tracert`. -> More information: . +> More information: . - Ping and trace the route to a host: `pathping {{hostname}}` -- Do not perform reverse lookup of ip-address to hostname: +- Do not perform reverse lookup of IP address to hostname: `pathping {{hostname}} -n` diff --git a/pages/windows/pipwin.md b/pages/windows/pipwin.md new file mode 100644 index 00000000000000..caf7c142debc40 --- /dev/null +++ b/pages/windows/pipwin.md @@ -0,0 +1,28 @@ +# pipwin + +> A tool to install unofficial Python package binaries on Windows. +> More information: . + +- List all available packages for download: + +`pipwin list` + +- Search packages: + +`pipwin search {{partial_name|name}}` + +- Install a package: + +`pipwin install {{package_name}}` + +- Uninstall a package: + +`pipwin uninstall {{package_name}}` + +- Download a package to a specific directory: + +`pipwin download --dest {{path\to\directory}} {{package_name}}` + +- Install packages according to `requirements.txt`: + +`pipwin install --file {{path\to\requirements.txt}}` diff --git a/pages/windows/popd.md b/pages/windows/popd.md index d48ab252b445d7..72ec3c37ff4ca8 100644 --- a/pages/windows/popd.md +++ b/pages/windows/popd.md @@ -1,7 +1,7 @@ # popd > Changes the current directory to the directory stored by the `pushd` command. -> More information: . +> More information: . - Switch to directory at the top of the stack: diff --git a/pages/windows/powershell.md b/pages/windows/powershell.md deleted file mode 100644 index 78cb995bcc3123..00000000000000 --- a/pages/windows/powershell.md +++ /dev/null @@ -1,32 +0,0 @@ -# powershell - -> Command-line shell and scripting language designed especially for system administration. -> More information: . - -- Start a Windows PowerShell session in a Command Prompt window: - -`powershell` - -- Load a specific PowerShell console file: - -`powershell -PSConsoleFile {{path/to/file}}` - -- Start a session with a specified version of PowerShell: - -`powershell -Version {{version}}` - -- Prevent the shell from exit after running startup commands: - -`powershell -NoExit` - -- Describe the format of data sent to PowerShell: - -`powershell -InputFormat {{Text|XML}}` - -- Determine how output from PowerShell is formatted: - -`powershell -OutputFormat {{Text|XML}}` - -- Display help: - -`powershell -Help` diff --git a/pages/windows/print.md b/pages/windows/print.md index 0225916dd3d47e..75f90475b17f6f 100644 --- a/pages/windows/print.md +++ b/pages/windows/print.md @@ -1,12 +1,12 @@ # print > Print a text file to a printer. -> More information: . +> More information: . - 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 00000000000000..a84ab7c0fa8cd6 --- /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 new file mode 100644 index 00000000000000..1faeec8d7e21ea --- /dev/null +++ b/pages/windows/psexec.md @@ -0,0 +1,25 @@ +# psexec + +> Execute a command-line process on a remote machine. +> This is an advanced command and it might potentially be dangerous. +> More information: . + +- Execute a command using `cmd` in a remote shell: + +`psexec \\{{remote_host}} cmd` + +- Execute a command on a remote host (pre-authenticated): + +`psexec \\{{remote_host}} -u {{user_name}} -p {{password}}` + +- Execute a command remotely and output the result to a file: + +`psexec \\{{remote_host}} cmd /c {{command}} -an ^>{{path\to\file.txt}}` + +- Execute a program to interact with users: + +`psexec \\{{remote_host}} -d -i {{program_name}}` + +- Display the IP configuration of the remote host: + +`psexec \\{{remote_host}} ipconfig /all` diff --git a/pages/windows/psping.md b/pages/windows/psping.md index a38d25a04e9dc2..61ee98c7cc7b56 100644 --- a/pages/windows/psping.md +++ b/pages/windows/psping.md @@ -1,7 +1,7 @@ # psping > A ping tool that includes TCP ping, latency and bandwidth measurement. -> More information: . +> More information: . - Ping a host using ICMP: diff --git a/pages/windows/pushd.md b/pages/windows/pushd.md index 11242e9e00131a..d9e8ef2c644fa6 100644 --- a/pages/windows/pushd.md +++ b/pages/windows/pushd.md @@ -2,8 +2,8 @@ > Place a directory on a stack so it can be accessed later. > See also `popd` to switch back to original directory. -> More information: . +> More information: . - Switch to directory and push it on the stack: -`pushd {{directory}}` +`pushd {{path\to\directory}}` diff --git a/pages/windows/pwlauncher.md b/pages/windows/pwlauncher.md index b308bdfe8051c1..134ee435eef04b 100644 --- a/pages/windows/pwlauncher.md +++ b/pages/windows/pwlauncher.md @@ -1,7 +1,7 @@ # pwlauncher -> A command line tool for managing the Windows To Go startup options. -> More information: . +> A command-line tool for managing 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 00000000000000..afcaaf0a8d954a --- /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/query.md b/pages/windows/query.md new file mode 100644 index 00000000000000..981cc016d999a2 --- /dev/null +++ b/pages/windows/query.md @@ -0,0 +1,28 @@ +# query + +> Displays information about user sessions and process. +> More information: . + +- Display all user sessions: + +`query session` + +- Display the current user sessions on a remote computer: + +`query session /server:{{hostname}}` + +- Display logged in users: + +`query user` + +- Display all user sessions on a remote computer: + +`query session /server:{{hostname}}` + +- Display all running processes: + +`query process` + +- Display running processes by session or user name: + +`query process {{session_name|user_name}}` diff --git a/pages/windows/rd.md b/pages/windows/rd.md new file mode 100644 index 00000000000000..4deed776723b97 --- /dev/null +++ b/pages/windows/rd.md @@ -0,0 +1,8 @@ +# rd + +> This command is an alias of `rmdir`. +> More information: . + +- View documentation for the original command: + +`tldr rmdir` diff --git a/pages/windows/rdpsign.md b/pages/windows/rdpsign.md index 40ab35c7cab8b9..7999279e657709 100644 --- a/pages/windows/rdpsign.md +++ b/pages/windows/rdpsign.md @@ -1,24 +1,24 @@ # rdpsign > A tool for signing Remote Desktop Protocol (RDP) files. -> More information: . +> More information: . - 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: +- 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-add.md b/pages/windows/reg-add.md index a577d94a79e7b7..a3f4d16f8e0252 100644 --- a/pages/windows/reg-add.md +++ b/pages/windows/reg-add.md @@ -1,7 +1,7 @@ # reg add > Add new keys and their values to the registry. -> More information: . +> More information: . - Add a new registry key: diff --git a/pages/windows/reg-compare.md b/pages/windows/reg-compare.md index ce3ce1b2266bc9..c302b1a464d4c5 100644 --- a/pages/windows/reg-compare.md +++ b/pages/windows/reg-compare.md @@ -1,7 +1,7 @@ # reg compare > Compare keys and their values in the registry. -> More information: . +> More information: . - Compare all values under a specific key with a second key: diff --git a/pages/windows/reg-copy.md b/pages/windows/reg-copy.md index f41444b808a482..8a294c43b0c0a3 100644 --- a/pages/windows/reg-copy.md +++ b/pages/windows/reg-copy.md @@ -1,7 +1,7 @@ # reg copy > Copy keys and their values in the registry. -> More information: . +> More information: . - Copy a registry key to a new registry location: diff --git a/pages/windows/reg-delete.md b/pages/windows/reg-delete.md index 9576f6e5c4d64e..57c6daae55fc45 100644 --- a/pages/windows/reg-delete.md +++ b/pages/windows/reg-delete.md @@ -1,7 +1,7 @@ # reg delete > Delete keys or their values from the registry. -> More information: . +> More information: . - Delete a specific registry key: diff --git a/pages/windows/reg-export.md b/pages/windows/reg-export.md index 46706c57c9ebf1..034afdf420c00b 100644 --- a/pages/windows/reg-export.md +++ b/pages/windows/reg-export.md @@ -1,12 +1,12 @@ # reg export > Export the specified sub keys and values into a file. -> More information: . +> More information: . - 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-flags.md b/pages/windows/reg-flags.md index 6e61779bb8f029..019dccc3aa8bd0 100644 --- a/pages/windows/reg-flags.md +++ b/pages/windows/reg-flags.md @@ -1,7 +1,7 @@ # reg flags > Display or set flags on registry keys. -> More information: . +> More information: . - Display current flags for a specific key: diff --git a/pages/windows/reg-import.md b/pages/windows/reg-import.md index f30a68cddcd5bb..938f065d857085 100644 --- a/pages/windows/reg-import.md +++ b/pages/windows/reg-import.md @@ -1,8 +1,8 @@ # reg import > Import all available keys, subkeys, and values from a file. -> More information: . +> More information: . - 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 a7c3d23b04677d..686ca88af1318e 100644 --- a/pages/windows/reg-load.md +++ b/pages/windows/reg-load.md @@ -2,8 +2,8 @@ > Load saved sub keys into a different sub key in the registry. > This is intended for troubleshooting and temporary keys. -> More information: . +> More information: . - 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-query.md b/pages/windows/reg-query.md index b1488686808e46..7c688efaf114da 100644 --- a/pages/windows/reg-query.md +++ b/pages/windows/reg-query.md @@ -1,7 +1,7 @@ # reg query > Display the values of keys and sub keys in the registry. -> More information: . +> More information: . - Display all values of a key: diff --git a/pages/windows/reg-restore.md b/pages/windows/reg-restore.md index 14ad5f85f2318f..00087338e4eeee 100644 --- a/pages/windows/reg-restore.md +++ b/pages/windows/reg-restore.md @@ -2,8 +2,8 @@ > Restore a key and its values from a backup file. > See `reg-save` for more information. -> More information: . +> More information: . - 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 b97fb0b948124b..fb2d876661a5e2 100644 --- a/pages/windows/reg-save.md +++ b/pages/windows/reg-save.md @@ -1,12 +1,12 @@ # reg save > Save a registry key, its sub keys and values to a file. -> More information: . +> More information: . - 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-unload.md b/pages/windows/reg-unload.md index 7f2044de7b055f..f843a9df705fc5 100644 --- a/pages/windows/reg-unload.md +++ b/pages/windows/reg-unload.md @@ -1,7 +1,7 @@ # reg unload > Remove data from the registry that was loaded using the `reg load` command. -> More information: . +> More information: . - Remove data from the registry for a specified key: diff --git a/pages/windows/reg.md b/pages/windows/reg.md index b5b0745ce1c784..7641e4a53d29eb 100644 --- a/pages/windows/reg.md +++ b/pages/windows/reg.md @@ -1,8 +1,8 @@ # reg -> A command line interface for managing keys and their values in the Windows registry. -> See `reg-query`, `reg-add` and other pages for additional information. -> More information: . +> A command-line interface for managing keys and their values in the Windows registry. +> Some subcommands such as `reg add` have their own usage documentation. +> More information: . - Execute registry commands: diff --git a/pages/windows/repair-bde.md b/pages/windows/repair-bde.md index 110d8fffdc5dc2..2ece75fc9e00e8 100644 --- a/pages/windows/repair-bde.md +++ b/pages/windows/repair-bde.md @@ -1,7 +1,7 @@ # repair-bde > Attempt to repair or decrypt a damaged BitLocker-encrypted volume. -> More information: . +> More information: . - Attempt to repair a specified volume: @@ -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 b28debbd0a5588..f21363d3dc86a7 100644 --- a/pages/windows/replace.md +++ b/pages/windows/replace.md @@ -2,35 +2,35 @@ > Replace files. > See also: `robocopy`, `move`, `copy`, and `del`. -> More information: . +> More information: . - 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 00000000000000..99d62e9f0b99c9 --- /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 0deac106e6af78..3f231126d9e356 100644 --- a/pages/windows/rmdir.md +++ b/pages/windows/rmdir.md @@ -1,16 +1,16 @@ # rmdir > Remove a directory and its contents. -> More information: . +> More information: . - 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 c076c2cfb2db9a..d01c184c31f007 100644 --- a/pages/windows/robocopy.md +++ b/pages/windows/robocopy.md @@ -2,31 +2,31 @@ > Robust File and Folder Copy. > By default files will only be copied if the source and destination have different time stamps or different file sizes. -> More information: . +> More information: . - 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 MBytes or larger in size instead of copying them: +- 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/rpcinfo.md b/pages/windows/rpcinfo.md index 6705d259421b9a..95bdbb50d7202a 100644 --- a/pages/windows/rpcinfo.md +++ b/pages/windows/rpcinfo.md @@ -1,7 +1,7 @@ # rpcinfo > List programs via RPC on remote computers. -> More information: . +> More information: . - List all programs registered on the local computer: diff --git a/pages/windows/scoop.md b/pages/windows/scoop.md index 3c0d9cfc64700c..dea89e995f821b 100644 --- a/pages/windows/scoop.md +++ b/pages/windows/scoop.md @@ -13,7 +13,7 @@ - Update all installed packages: -`scoop update *` +`scoop update --all` - List installed packages: @@ -29,4 +29,4 @@ - Remove old versions of all packages and clear the download cache: -`scoop cleanup -k *` +`scoop cleanup --cache --all` diff --git a/pages/windows/select-string.md b/pages/windows/select-string.md new file mode 100644 index 00000000000000..8390251cb9f86e --- /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 00000000000000..f9f9a3f4c8956b --- /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 00000000000000..787dfe77903ff7 --- /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 00000000000000..1b594b45b37ffe --- /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/set.md b/pages/windows/set.md index b88f449d8c25a0..69d058bb891012 100644 --- a/pages/windows/set.md +++ b/pages/windows/set.md @@ -1,7 +1,7 @@ # set > Display or set environment variables for the current instance of CMD. -> More information: . +> More information: . - List all current environment variables: diff --git a/pages/windows/setx.md b/pages/windows/setx.md new file mode 100644 index 00000000000000..eeb806194470d8 --- /dev/null +++ b/pages/windows/setx.md @@ -0,0 +1,20 @@ +# setx + +> Sets persistent environment variables. +> More information: . + +- Set an environment variable for the current user: + +`setx {{variable}} {{value}}` + +- Set an environment variable for the current machine: + +`setx {{variable}} {{value}} /M` + +- Set an environment variable for a user on a remote machine: + +`setx /s {{hostname}} /u {{username}} /p {{password}} {{variable}} {{value}}` + +- Set an environment variable from a registry key value: + +`setx {{variable}} /k {{registry\key\path}}` diff --git a/pages/windows/sfc.md b/pages/windows/sfc.md index d4f0302ad5f108..f699677035742c 100644 --- a/pages/windows/sfc.md +++ b/pages/windows/sfc.md @@ -1,7 +1,7 @@ # sfc > Scans the integrity of Windows system files. -> More information: . +> More information: . - Display information about the usage of the command: @@ -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 00000000000000..b7503b34002bf6 --- /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/showmount.md b/pages/windows/showmount.md index 8aed839707ec12..156d2389b63bcc 100644 --- a/pages/windows/showmount.md +++ b/pages/windows/showmount.md @@ -1,7 +1,7 @@ # showmount > Display information about NFS filesystems on Windows Server. -> More information: . +> More information: . - Display all exported filesystems: diff --git a/pages/windows/shutdown.md b/pages/windows/shutdown.md index d7b45f0d6da31a..a66dba4c05be83 100644 --- a/pages/windows/shutdown.md +++ b/pages/windows/shutdown.md @@ -1,7 +1,7 @@ # shutdown > A tool for shutting down, restarting or logging off a machine. -> More information: . +> More information: . - Shutdown the current machine: @@ -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/sigverif.md b/pages/windows/sigverif.md deleted file mode 100644 index f2f0b22b0589be..00000000000000 --- a/pages/windows/sigverif.md +++ /dev/null @@ -1,7 +0,0 @@ -# sigverif - -> A GUI signature verification tool for checking system files. - -- Open the File Signature Verification interface: - -`sigverif` diff --git a/pages/windows/sls.md b/pages/windows/sls.md new file mode 100644 index 00000000000000..78a9e42c3f846e --- /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 00000000000000..1b0d617ff7524b --- /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 00000000000000..ffbf252198f758 --- /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 00000000000000..dc1e616a0e1ea7 --- /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/subst.md b/pages/windows/subst.md index 61fce12c2a60fe..285a8cb27766f8 100644 --- a/pages/windows/subst.md +++ b/pages/windows/subst.md @@ -1,7 +1,7 @@ # subst > Associates a path with a virtual drive letter. -> More information: . +> More information: . - List active associations: diff --git a/pages/windows/systeminfo.md b/pages/windows/systeminfo.md index 26e3cc964be88e..00e2330e344101 100644 --- a/pages/windows/systeminfo.md +++ b/pages/windows/systeminfo.md @@ -1,7 +1,7 @@ # systeminfo > Display operating system configuration for a local or remote machine. -> More information: . +> More information: . - Display system configuration for the local machine: diff --git a/pages/windows/takeown.md b/pages/windows/takeown.md index f1213d268fb825..337a4f31a8b51b 100644 --- a/pages/windows/takeown.md +++ b/pages/windows/takeown.md @@ -1,20 +1,20 @@ # takeown > Take ownership of a file or directory. -> More information: . +> More information: . - 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/taskkill.md b/pages/windows/taskkill.md index b2b17b88057a38..9672db967a212c 100644 --- a/pages/windows/taskkill.md +++ b/pages/windows/taskkill.md @@ -1,9 +1,9 @@ # taskkill -> Terminate a process by its process id or name. -> More information: . +> Terminate a process by its process ID or name. +> More information: . -- Terminate a process by its id: +- Terminate a process by its ID: `taskkill /pid {{process_id}}` diff --git a/pages/windows/tasklist.md b/pages/windows/tasklist.md index 93215df2e5e55e..9a8cbdde9c1e1d 100644 --- a/pages/windows/tasklist.md +++ b/pages/windows/tasklist.md @@ -1,7 +1,7 @@ # tasklist > Display a list of currently running processes on a local or remote machine. -> More information: . +> More information: . - Display currently running processes: diff --git a/pages/windows/tee-object.md b/pages/windows/tee-object.md new file mode 100644 index 00000000000000..9bf9d5d44b2e13 --- /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 00000000000000..9b68bc13f1399a --- /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/time.md b/pages/windows/time.md new file mode 100644 index 00000000000000..88cd7c18c386be --- /dev/null +++ b/pages/windows/time.md @@ -0,0 +1,12 @@ +# time + +> Display or set the system time. +> More information: . + +- Display the current system time and prompt to enter a new time (leave empty to keep unchanged): + +`time` + +- Display the current system time without prompting for a new time: + +`time /t` diff --git a/pages/windows/title.md b/pages/windows/title.md index f560cec49cbcbf..ae149d609ed792 100644 --- a/pages/windows/title.md +++ b/pages/windows/title.md @@ -1,7 +1,7 @@ # title > Set the title of the command prompt window. -> More information: . +> More information: . - Set the title of the current command prompt window: diff --git a/pages/windows/tracert.md b/pages/windows/tracert.md new file mode 100644 index 00000000000000..2a3a9a7dbc3827 --- /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 0e6713da8b8bc9..8c19e0677d13aa 100644 --- a/pages/windows/tree.md +++ b/pages/windows/tree.md @@ -1,7 +1,7 @@ # tree > Display a graphical tree of the directory structure for a path. -> More information: . +> More information: . - Display the tree for the current directory: @@ -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/tskill.md b/pages/windows/tskill.md index 8b688db50a5974..a625eb86dea363 100644 --- a/pages/windows/tskill.md +++ b/pages/windows/tskill.md @@ -1,7 +1,7 @@ # tskill > Ends a process running in a session on a Remote Desktop Session Host. -> More information: . +> More information: . - Terminate a process by its process identifier: diff --git a/pages/windows/type.md b/pages/windows/type.md index 0750801d16ab29..fb88e22ffbccd2 100644 --- a/pages/windows/type.md +++ b/pages/windows/type.md @@ -1,8 +1,8 @@ # type > Display the contents of a file. -> More information: . +> More information: . - Display the contents of a specific file: -`type {{path/to/file}}` +`type {{path\to\file}}` diff --git a/pages/windows/tzutil.md b/pages/windows/tzutil.md index 37861822e4da34..9c62dc9bf5c765 100644 --- a/pages/windows/tzutil.md +++ b/pages/windows/tzutil.md @@ -1,7 +1,7 @@ # tzutil > A tool for displaying or configuring the system time zone. -> More information: . +> More information: . - Get the current time zone: diff --git a/pages/windows/vcvarsall.md b/pages/windows/vcvarsall.md new file mode 100644 index 00000000000000..4bcc53083e1997 --- /dev/null +++ b/pages/windows/vcvarsall.md @@ -0,0 +1,21 @@ +# vcvarsall + +> Setup the environment variables required for using the Microsoft Visual Studio tools from the command line. +> The path of `vcvarsall` for a certain Visual Studio installation can be found using `vswhere`. +> More information: . + +- Setup the environment for native x64: + +`vcvarsall x64` + +- Setup the environment for cross-compiled native x86 from the x64 host: + +`vcvarsall x64_x86` + +- Setup the environment for cross-compiled native Arm x64 from the x64 host: + +`vcvarsall x64_arm64` + +- Setup the environment for native UWP x64: + +`vcvarsall x64 uwp` diff --git a/pages/windows/ver.md b/pages/windows/ver.md index 73bf5f755efc6b..86c2b3b89ee7af 100644 --- a/pages/windows/ver.md +++ b/pages/windows/ver.md @@ -1,7 +1,7 @@ # ver > Display the current Windows or MS-DOS version number. -> More information: . +> More information: . - Display the current version number: diff --git a/pages/windows/virtualboxvm.md b/pages/windows/virtualboxvm.md index 5c436a59b8305c..39d41dc7d01842 100644 --- a/pages/windows/virtualboxvm.md +++ b/pages/windows/virtualboxvm.md @@ -13,9 +13,9 @@ - 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: +- Display a command-line window with debug information: `virtualboxvm --startvm {{name|uuid}} --debug-command-line` diff --git a/pages/windows/vol.md b/pages/windows/vol.md index fd2c713b783280..9930aed7fdb773 100644 --- a/pages/windows/vol.md +++ b/pages/windows/vol.md @@ -1,7 +1,7 @@ # vol > Display information about volumes. -> More information: . +> More information: . - Display the label and serial number for the current drive: diff --git a/pages/windows/vswhere.md b/pages/windows/vswhere.md new file mode 100644 index 00000000000000..589b7df6441b57 --- /dev/null +++ b/pages/windows/vswhere.md @@ -0,0 +1,20 @@ +# vswhere + +> Locate Visual Studio 2017 and newer installations. +> More information: . + +- Find the path of vcvarsall.bat to set environment variables: + +`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\*` + +- Find the directory of Clang bundled with Visual Studio bundled (clang-cl, clang-tidy, etc): + +`vswhere -products * -latest -prerelease -find **\Llvm\bin\*` + +- Find the path of `MSBuild.exe`: + +`vswhere -products * -latest -prerelease -find MSBuild\**\Bin\MSBuild.exe` diff --git a/pages/windows/wait-process.md b/pages/windows/wait-process.md new file mode 100644 index 00000000000000..93e3cad4304958 --- /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 new file mode 100644 index 00000000000000..e01249221e6f33 --- /dev/null +++ b/pages/windows/wget.md @@ -0,0 +1,19 @@ +# wget + +> In PowerShell, this command may be an alias of `Invoke-WebRequest` when the original `wget` program () is not properly installed. + +- 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` + +- View documentation for the original `wget` command: + +`tldr wget -p common` + +- View documentation for the original `wget` command in older versions of `tldr` command-line client: + +`tldr wget -o common` + +- View documentation for PowerShell's `Invoke-WebRequest` command: + +`tldr invoke-webrequest` diff --git a/pages/windows/where-object.md b/pages/windows/where-object.md new file mode 100644 index 00000000000000..43cf3b208c77fa --- /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 59a3175dd57918..192b667ffff40e 100644 --- a/pages/windows/where.md +++ b/pages/windows/where.md @@ -2,7 +2,7 @@ > Display the location of files that match the search pattern. > Defaults to current work directory and paths in the PATH environment variable. -> More information: . +> More information: . - Display the location of file pattern: @@ -14,8 +14,8 @@ - Recursively search for file pattern at specified path: -`where /R {{path/to/directory}} {{file_pattern}}` +`where /R {{path\to\directory}} {{file_pattern}}` -- Display only the error code for the location of file pattern: +- Silently return the error code for the location of the file pattern: `where /Q {{file_pattern}}` diff --git a/pages/windows/whoami.md b/pages/windows/whoami.md index 65b34587cf14a7..bd681d08585f1b 100644 --- a/pages/windows/whoami.md +++ b/pages/windows/whoami.md @@ -1,7 +1,7 @@ # whoami > Display details about the current user. -> More information: . +> More information: . - Display the username of the current user: @@ -19,6 +19,10 @@ `whoami /upn` -- Display the logon id of the current user: +- Display the logon ID of the current user: `whoami /logonid` + +- Display all information for the current user: + +`whoami /all` diff --git a/pages/windows/winget.md b/pages/windows/winget.md index 8682858fa0a076..38c907c7d30b9f 100644 --- a/pages/windows/winget.md +++ b/pages/windows/winget.md @@ -1,7 +1,7 @@ # winget > Windows Package Manager CLI. -> More information: . +> More information: . - Install a package: @@ -14,3 +14,11 @@ - Search for a package: `winget search {{package}}` + +- Upgrade all packages to latest versions: + +`winget upgrade --all` + +- List all packages installed that can be managed with winget: + +`winget list --source winget` diff --git a/pages/windows/wmic.md b/pages/windows/wmic.md index 8c34742a6ef326..9a5785ce28cf3b 100644 --- a/pages/windows/wmic.md +++ b/pages/windows/wmic.md @@ -1,7 +1,7 @@ # wmic > Interactive shell for detailed information about running processes. -> More information: . +> More information: . - Fundamental grammar: diff --git a/pages/windows/wsl-open.md b/pages/windows/wsl-open.md new file mode 100644 index 00000000000000..c048321e374ae4 --- /dev/null +++ b/pages/windows/wsl-open.md @@ -0,0 +1,24 @@ +# wsl-open + +> Open a file or URL from within Windows Subsystem for Linux in the user's default Windows GUI application. +> More information: . + +- Open the current directory in Windows Explorer: + +`wsl-open {{.}}` + +- Open a URL in the user's default web browser in Windows: + +`wsl-open {{https://example.com}}` + +- Open a specific file in the user's default application in Windows: + +`wsl-open {{path\to\file}}` + +- Set `wsl-open` as the shell's web browser (open links with `wsl-open`): + +`wsl-open -w` + +- Display help: + +`wsl-open -h` diff --git a/pages/windows/wsl.md b/pages/windows/wsl.md index aab0688da2f6ae..808da8866df156 100644 --- a/pages/windows/wsl.md +++ b/pages/windows/wsl.md @@ -1,7 +1,7 @@ # wsl -> Manage the Windows Subsystem for Linux from the command line. -> More information: . +> Manage the Windows Subsystem for Linux from the command-line. +> More information: . - Start a Linux shell (in the default distribution): @@ -21,13 +21,13 @@ - 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 the specified distribution: +- Change the version of wsl used for the specified distribution: `wsl --set-version {{distribution}} {{version}}` diff --git a/pages/windows/xcopy.md b/pages/windows/xcopy.md index 442b71225cf9f0..d1ac38f934c0cd 100644 --- a/pages/windows/xcopy.md +++ b/pages/windows/xcopy.md @@ -1,35 +1,35 @@ # xcopy > Copy files and directory trees. -> More information: . +> More information: . - 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 new file mode 100644 index 00000000000000..6f8b96090e93da --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +black==22.3.0 +flake8==3.9.2 +requests==2.26.0 diff --git a/scripts/build-index.js b/scripts/build-index.js index 360b35c19157e9..dc8b5d18155c29 100644 --- a/scripts/build-index.js +++ b/scripts/build-index.js @@ -1,3 +1,5 @@ +// SPDX-License-Identifier: MIT + 'use strict'; const glob = require('glob'); diff --git a/scripts/build.sh b/scripts/build.sh index 043e45d1c927e5..47c4e2831fcfd8 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# SPDX-License-Identifier: MIT # This script is executed by GitHub Actions for every successful push (on any branch, PR or not). set -ex @@ -13,14 +14,14 @@ function initialize { function build_index { npm run build-index - echo "Pages index succesfully built." + echo "Pages index successfully built." } function build_archive { rm -f "$TLDR_ARCHIVE" cd "$TLDRHOME/" zip -q -r "$TLDR_ARCHIVE" pages* LICENSE.md index.json - echo "Pages archive succesfully built." + echo "Pages archive successfully built." } ################################### diff --git a/scripts/check-pr.sh b/scripts/check-pr.sh index 2b6784a4070efc..19bb3a25ab108f 100755 --- a/scripts/check-pr.sh +++ b/scripts/check-pr.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# SPDX-License-Identifier: MIT # This script is executed by GitHub Actions for every pull request opened. # It currently accomplishes the following objectives (for English pages only): @@ -49,7 +50,7 @@ function check_diff { local line local entry - git_diff=$(git diff --name-status --find-copies-harder --diff-filter=AC --relative=pages/ remotes/origin/master) + git_diff=$(git diff --name-status --find-copies-harder --diff-filter=AC --relative=pages/ remotes/origin/main) if [ -n "$git_diff" ]; then echo -e "Check PR: git diff:\n$git_diff" >&2 diff --git a/scripts/deploy.sh b/scripts/deploy.sh index 7312bbb5a57744..902026413442d4 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# SPDX-License-Identifier: MIT # This script is executed by GitHub Actions when a PR is merged (i.e. in the `deploy` step). set -ex @@ -29,11 +30,13 @@ function upload_assets { git clone --quiet --depth 1 git@github.com:${SITE_REPO_SLUG}.git "$SITE_HOME" mv -f "$TLDR_ARCHIVE" "$SITE_HOME/assets/" cp -f "$TLDRHOME/index.json" "$SITE_HOME/assets/" + cp -f "${TLDRHOME}/scripts/pdf/tldr-pages.pdf" "${SITE_HOME}/assets/tldr-book.pdf" - # 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/${TLDR_ARCHIVE}" \ + "${SITE_HOME}/assets/tldr-book.pdf" \ + > "${SITE_HOME}/assets/tldr.sha256sums" cd "$SITE_HOME" git add -A diff --git a/scripts/pdf/basic.css b/scripts/pdf/basic.css index 76bc255b5eea11..52d794209e5484 100644 --- a/scripts/pdf/basic.css +++ b/scripts/pdf/basic.css @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + @font-face { font-family: "PT Serif"; src: url("pt-serif-web-regular.ttf") format("truetype"); @@ -32,3 +34,13 @@ h1, h2, h4, ul { margin-top: 8.2em; font-size: 300%; } + +/* +The same is to have this look like a H1 tag, but we want the H2 tag so the +bookmarks list makes sense. +*/ +h2.title-page { + font-size: 2em; + margin-top: 0.67em; + margin-bottom: 0.67em; +} diff --git a/scripts/pdf/render.py b/scripts/pdf/render.py index 89a9077691ab43..53e00ebf67a60e 100644 --- a/scripts/pdf/render.py +++ b/scripts/pdf/render.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# SPDX-License-Identifier: MIT """ A Python script to generate a single PDF document with all the `tldr` pages. It works by generating @@ -9,7 +10,6 @@ import os import sys import glob -import re import markdown import argparse from datetime import datetime @@ -19,107 +19,79 @@ def main(loc, colorscheme): - oslist = [] - allmd = [] - group = [] - ap = [] - # Checking correctness of path if not os.path.isdir(loc): print("Invalid directory. Please try again!", file=sys.stderr) sys.exit(1) - # Writing names of all directories inside 'pages' to a list - for os_dir in os.listdir(loc): - oslist.append(os_dir) - - oslist.sort() - - # Required strings to create intermediate HTML files - header = '' + # Set up css style sheets + csslist = ["basic.css"] if colorscheme != "basic": - header += '\n' - - header += "\n" - footer = "" - title_content = "

tldr pages

" \ - + "

Simplified and community-driven man pages

" \ - + "
Generated on " + datetime.now().strftime("%c") + "
" \ - + "" - - # Creating title page - with open("title.html", "w") as f: - f.write(header + title_content) + csslist.append(colorscheme + ".css") + + # A string that stores all pages in HTML format + html = ( + '' + + "

tldr pages

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

' + ) - group.append(HTML("title.html").render()) - - for operating_sys in oslist: + # Writing names of all directories inside 'pages' to a list + for operating_sys in sorted(os.listdir(loc)): # Required string to create directory title pages - dir_title = "

" + \ - operating_sys.capitalize() + "

" - - # Creating directory title page for current directory - with open("dir_title.html", "w") as os_html: - os_html.write(header + dir_title) - - group.append(HTML("dir_title.html").render()) - - # Creating a list of all md files in the current directory - for temp in glob.glob(os.path.join(loc, operating_sys, "*.md")): - allmd.append(temp) - - # Sorting all filenames in the directory, to maintain the order of the PDF - allmd.sort() - - # Conversion of Markdown to HTML - for page_number, md in enumerate(allmd, start=1): - - with open(md, "r") as inp: - text = inp.readlines() - - with open("htmlout.html", "w") as out: - out.write(header) - - for line in text: - if re.match(r'^>', line): - line = line[:0] + '####' + line[1:] - html = markdown.markdown(line) - out.write(html) - out.write(footer) - - group.append(HTML("htmlout.html").render()) - print("Rendered page {} of the directory {}".format( - str(page_number), operating_sys)) - - allmd.clear() - - # Merging all the documents into a single PDF - for doc in group: - for p in doc.pages: - ap.append(p) - - # Writing the PDF to disk, preserving metadata of first `tldr` page - group[2].copy(ap).write_pdf('tldr-pages.pdf') + html += ( + "

" + + operating_sys.capitalize() + + "

" + + '

' + ) + + # Conversion of Markdown to HTML string + for page_number, md in enumerate( + sorted(glob.glob(os.path.join(loc, operating_sys, "*.md"))), start=1 + ): + with open(md, "r") as inp: + text = inp.readlines() + # modify our page to have an H2 header, so that it is grouped under + # the H1 header for the directory + text[0] = "

" + text[0][2:] + "

" + for line in text: + if line.startswith(">"): + line = "####" + line[1:] + html += markdown.markdown(line) + html += '

' + print(f"Rendered page {page_number} of the directory {operating_sys}") + + html += "" + + # Writing the PDF to disk + print("\nConverting all pages to PDF...") + HTML(string=html).write_pdf("tldr-pages.pdf", stylesheets=csslist) if os.path.exists("tldr-pages.pdf"): print("\nCreated tldr-pages.pdf in the current directory!\n") - # Removing unnecessary intermediate files - try: - os.remove("htmlout.html") - os.remove("title.html") - os.remove("dir_title.html") - except OSError: - print("Error removing temporary file(s)") - if __name__ == "__main__": # Parsing the arguments - parser = argparse.ArgumentParser(prog="tldr-pages-to-pdf", description="A Python script to generate a single PDF document with all the `tldr` pages.") - parser.add_argument("dir_path", help = "Path to the 'pages' directory") - parser.add_argument("-c", "--color", choices=["solarized-light", "solarized-dark", "basic"], default="basic", help="Color scheme of the PDF") + parser = argparse.ArgumentParser( + prog="tldr-pages-to-pdf", + description="A Python script to generate a single PDF document with all the `tldr` pages.", + ) + parser.add_argument("dir_path", help="Path to the 'pages' directory") + parser.add_argument( + "-c", + "--color", + choices=["solarized-light", "solarized-dark", "basic"], + default="basic", + help="Color scheme of the PDF", + ) args = parser.parse_args() main(args.dir_path, args.color) diff --git a/scripts/pdf/solarized-dark.css b/scripts/pdf/solarized-dark.css index 543b510976908c..a4aeb469dac19c 100644 --- a/scripts/pdf/solarized-dark.css +++ b/scripts/pdf/solarized-dark.css @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + code { color: #b58900; } diff --git a/scripts/pdf/solarized-light.css b/scripts/pdf/solarized-light.css index eb2ff4fcb65a1b..423f8df57771d7 100644 --- a/scripts/pdf/solarized-light.css +++ b/scripts/pdf/solarized-light.css @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: MIT */ + code { color: #dc322f } diff --git a/scripts/send-to-bot.py b/scripts/send-to-bot.py old mode 100644 new mode 100755 index ad85eff6fc1fd6..6040cf05a4f8cf --- a/scripts/send-to-bot.py +++ b/scripts/send-to-bot.py @@ -1,13 +1,13 @@ #!/usr/bin/env python3 +# SPDX-License-Identifier: MIT import os import sys -import json -import urllib.request +import requests -BOT_URL = 'https://tldr-bot.starbeamrainbowlabs.com' +BOT_URL = "https://tldr-bot.starbeamrainbowlabs.com" -COMMENT_ERROR=""" +COMMENT_ERROR = """ The [build](https://github.com/tldr-pages/tldr/actions/runs/{build_id}) for this PR failed with the following error(s): ``` @@ -17,7 +17,7 @@ Please fix the error(s) and push again. """ -COMMENT_CHECK=""" +COMMENT_CHECK = """ Hello! I've noticed something unusual when checking this PR: {content} @@ -27,66 +27,69 @@ ################################################################################ + def post_comment(pr_id, body, once): - endpoint = BOT_URL + '/comment' + endpoint = BOT_URL + "/comment" - if once: - endpoint += '/once' + if once: + endpoint += "/once" - headers = {'Content-Type': 'application/json'} - data = json.dumps({'pr_id': pr_id, 'body': body}) - req = urllib.request.Request(endpoint, data.encode(), headers) + data = {"pr_id": pr_id, "body": body} - try: - resp = urllib.request.urlopen(req) - code = resp.getcode() - except Exception as e: - print('Error sending data to tldr-bot:', str(e), file=sys.stderr) - return False + try: + with requests.post(endpoint, json=data) as r: + if r.status_code != requests.codes.ok: + print( + "Error: tldr-bot responded with code", + r.status_code, + file=sys.stderr, + ) + print(r.text, file=sys.stderr) + return False + except requests.exceptions.RequestException as e: + print("Error sending data to tldr-bot:", str(e), file=sys.stderr) + return False - if code != 200: - print('Error: tldr-bot responded with code', code, file=sys.stderr) - print(resp.read(), file=sys.stderr) - return False + return True - return True def main(action): - if action not in ('report-errors', 'report-check-results'): - print('Unknown action:', action, file=sys.stderr) - sys.exit(1) + if action not in ("report-errors", "report-check-results"): + print("Unknown action:", action, file=sys.stderr) + sys.exit(1) + + content = sys.stdin.read().strip() - content = sys.stdin.read().strip() + if action == "report-errors": + comment_body = COMMENT_ERROR.format(build_id=BUILD_ID, content=content) + comment_once = False + elif action == "report-check-results": + comment_body = COMMENT_CHECK.format(content=content) + comment_once = True - if action == 'report-errors': - comment_body = COMMENT_ERROR.format(build_id=BUILD_ID, content=content) - comment_once = False - elif action == 'report-check-results': - comment_body = COMMENT_CHECK.format(content=content) - comment_once = True + if post_comment(PR_ID, comment_body, comment_once): + print("Success.") + else: + print("Error sending data to tldr-bot!", file=sys.stderr) - if post_comment(PR_ID, comment_body, comment_once): - print('Success.') - else: - print('Error sending data to tldr-bot!', file=sys.stderr) ################################################################################ -if __name__ == '__main__': - REPO_SLUG = os.environ.get('GITHUB_REPOSITORY') - PR_ID = os.environ.get('PULL_REQUEST_ID') - BUILD_ID = os.environ.get('GITHUB_RUN_ID') +if __name__ == "__main__": + REPO_SLUG = os.environ.get("GITHUB_REPOSITORY") + PR_ID = os.environ.get("PULL_REQUEST_ID") + BUILD_ID = os.environ.get("GITHUB_RUN_ID") - if PR_ID is None or BUILD_ID is None or REPO_SLUG is None: - print('Needed environment variables are not set.', file=sys.stderr) - sys.exit(1) + if PR_ID is None or BUILD_ID is None or REPO_SLUG is None: + print("Needed environment variables are not set.", file=sys.stderr) + sys.exit(1) - if PR_ID is None or PR_ID == 'false': - print('Not a pull request, refusing to run.', file=sys.stderr) - sys.exit(0) + if PR_ID is None or PR_ID == "false": + print("Not a pull request, refusing to run.", file=sys.stderr) + sys.exit(0) - if len(sys.argv) != 2: - print('Usage:', sys.argv[0], '', file=sys.stderr) - sys.exit(1) + if len(sys.argv) != 2: + print("Usage:", sys.argv[0], "", file=sys.stderr) + sys.exit(1) - main(sys.argv[1]) + main(sys.argv[1]) diff --git a/scripts/set-alias-page.py b/scripts/set-alias-page.py new file mode 100644 index 00000000000000..2fa21991e0a005 --- /dev/null +++ b/scripts/set-alias-page.py @@ -0,0 +1,253 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: MIT + +""" +A Python script to generate or update alias pages. +Call the script with --help to get more information. + +For example, add 'vi' as an alias page of 'vim': +python3 script/set-alias-page.py -p common/vi vim + +Read English alias pages and synchronize them into all translations: +python3 script/set-alias-page.py -S +""" + +import argparse +import os +import re +import subprocess + +IGNORE_FILES = (".DS_Store", "tldr.md", "aria2.md") + + +def get_tldr_root(): + """ + Get the path of local tldr repository for environment variable TLDR_ROOT. + """ + + # If this script is running from tldr/scripts, the parent's parent is the root + f = os.path.normpath(__file__) + if f.endswith("tldr/scripts/set-more-info-link.py"): + return os.path.dirname(os.path.dirname(f)) + + if "TLDR_ROOT" in os.environ: + return os.environ["TLDR_ROOT"] + else: + raise SystemExit( + "\x1b[31mPlease set TLDR_ROOT to the location of a clone of https://github.com/tldr-pages/tldr.\x1b[0m" + ) + + +def get_templates(root): + """ + Get all alias page translation templates from + TLDR_ROOT/contributing-guides/translation-templates/alias-pages.md. + + Parameters: + root (string): The path of local tldr repository, i.e., TLDR_ROOT. + + Returns: + dict of (str, str): Language labels map to alias page templates. + """ + + template_file = os.path.join( + root, "contributing-guides/translation-templates/alias-pages.md" + ) + with open(template_file) as f: + lines = f.readlines() + + # Parse alias-pages.md + templates = {} + i = 0 + while i < len(lines): + if lines[i].startswith("###"): + lang = lines[i][4:].strip("\n").strip(" ") + while True: + i = i + 1 + if lines[i].startswith("Not translated yet."): + is_translated = False + break + elif lines[i].startswith("```markdown"): + i = i + 1 + is_translated = True + break + + if is_translated: + text = "" + while not lines[i].startswith("```"): + text += lines[i] + i = i + 1 + templates[lang] = text + + i = i + 1 + + return templates + + +def get_alias_page(file): + """ + Determine whether the given file is an alias page. + + Parameters: + file (string): Path to a page + + Returns: + str: "" If the file doesn't exit or is not an alias page, + otherwise return what command the alias stands for. + """ + + 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) + return "" + + +def set_alias_page(file, command): + """ + Write an alias page to disk. + + Parameters: + file (string): Path to an alias page + command (string): The command that the alias stands for. + + Returns: + str: Execution status + "" if the alias page standing for the same command already exists. + "\x1b[36mpage added" if it's a new alias page. + "\x1b[34mpage updated" if the command updates. + """ + + # compute locale + pages_dir = os.path.basename(os.path.dirname(os.path.dirname(file))) + if "." in pages_dir: + _, locale = pages_dir.split(".") + else: + locale = "en" + if locale not in templates: + return "" + + # Test if the alias page already exists + orig_command = get_alias_page(file) + if orig_command == command: + return "" + elif orig_command == "": + status = "\x1b[36mpage added" + else: + status = "\x1b[34mpage updated" + + alias_name = os.path.basename(file[:-3]) + text = ( + templates[locale].replace("example", alias_name, 1).replace("example", command) + ) + os.makedirs(os.path.dirname(file), exist_ok=True) + with open(file, "w") as f: + f.write(text) + + return status + + +def sync(root, pages_dirs, alias_name, orig_command): + """ + Synchronize an alias page into all translations: + + Parameters: + root (str): TLDR_ROOT + pages_dirs (list of str): Strings of page entry and platform, e.g. "page.fr/common". + alias_name (str): An alias command with .md extension like "vi.md". + orig_command (string): An Original command like "vim". + + Returns: + str: a list of paths to be staged into git, using by --stage option. + """ + + rel_paths = [] + for page_dir in pages_dirs: + path = os.path.join(root, page_dir, alias_name) + status = set_alias_page(path, orig_command) + if status != "": + rel_path = path.replace(f"{root}/", "") + rel_paths.append(rel_path) + print(f"\x1b[32m{rel_path} {status}\x1b[0m") + + return rel_paths + + +def main(): + parser = argparse.ArgumentParser( + description="Sets the alias page for all translations of a page" + ) + parser.add_argument( + "-p", + "--page", + type=str, + required=False, + default="", + help='page name in the format "platform/alias_command.md"', + ) + parser.add_argument( + "-s", + "--stage", + action="store_true", + default=False, + help="stage modified pages (requires `git` to be on $PATH and TLDR_ROOT to be a Git repository)", + ) + parser.add_argument( + "-S", + "--sync", + action="store_true", + default=False, + help="synchronize each translation's alias page (if exists) with that of English page", + ) + parser.add_argument("command", type=str, nargs="?", default="") + args = parser.parse_args() + + root = get_tldr_root() + + # A dictionary of all alias page translations + global templates + templates = get_templates(root) + pages_dirs = [d for d in os.listdir(root) if d.startswith("pages")] + rel_paths = [] + + # Use '--page' option + if args.page != "": + if not args.page.lower().endswith(".md"): + args.page = f"{args.page}.md" + + target_paths = [os.path.join(root, p, args.page) for p in pages_dirs] + target_paths.sort() + + for path in target_paths: + rel_path = path.replace(f"{root}/", "") + rel_paths.append(rel_path) + status = set_alias_page(path, args.command) + if status != "": + print(f"\x1b[32m{rel_path} {status}\x1b[0m") + + # Use '--sync' option + elif args.sync: + pages_dirs.remove("pages") + en_page = os.path.join(root, "pages") + platforms = [i for i in os.listdir(en_page) if i not in IGNORE_FILES] + for platform in platforms: + platform_path = os.path.join(en_page, platform) + commands = [ + f"{platform}/{p}" + for p in os.listdir(platform_path) + if p not in IGNORE_FILES + ] + for command in commands: + orig_command = get_alias_page(os.path.join(root, "pages", command)) + if orig_command != "": + rel_paths += sync(root, pages_dirs, command, orig_command) + + if args.stage: + subprocess.call(["git", "add", *rel_paths], cwd=root) + + +if __name__ == "__main__": + main() diff --git a/scripts/set-more-info-link.py b/scripts/set-more-info-link.py old mode 100644 new mode 100755 index 15ec68f8bae387..6e439dde5525d3 --- a/scripts/set-more-info-link.py +++ b/scripts/set-more-info-link.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: MIT + import argparse import os import re @@ -5,50 +8,58 @@ import sys labels = { - 'en': 'More information:', - 'bs': 'Više informacija:', - 'da': 'Mere information:', - 'de': 'Mehr Informationen:', - 'es': 'Más información:', - 'fa': 'اطلاعات بیشتر:', - 'fr': 'Plus d\'informations\xa0:', - 'sh': 'Više informacija:', - 'hi': 'अधिक जानकारी:', - 'id': 'Informasi lebih lanjut:', - 'it': 'Maggiori informazioni:', - 'ja': '詳しくはこちら:', - 'ko': '더 많은 정보:', - 'ml': 'കൂടുതൽ വിവരങ്ങൾ:', - 'nl': 'Meer informatie:', - 'no': 'Mer informasjon:', - 'pl': 'Więcej informacji:', - 'pt_BR': 'Mais informações:', - 'pt_PT': 'Mais informações:', - 'ru': 'Больше информации:', - 'sv': 'Mer information:', - 'ta': 'மேலும் தகவல்:', - 'th': 'ดูเพิ่มเติม:', - 'tr': 'Daha fazla bilgi için:', - 'zh_TW': '更多資訊:', - 'zh': '更多信息:', + "en": "More information:", + "ar": "لمزيد من التفاصيل:", + "bn": "আরও তথ্য পাবেন:", + "bs": "Više informacija:", + "ca": "Més informació:", + "da": "Mere information:", + "de": "Weitere Informationen:", + "es": "Más información:", + "fa": "اطلاعات بیشتر:", + "fr": "Plus d'informations :", + "sh": "Više informacija:", + "hi": "अधिक जानकारी:", + "id": "Informasi lebih lanjut:", + "it": "Maggiori informazioni:", + "ja": "詳しくはこちら:", + "ko": "더 많은 정보:", + "lo": "ຂໍ້ມູນເພີ່ມເຕີມ:", + "ml": "കൂടുതൽ വിവരങ്ങൾ:", + "ne": "थप जानकारी:", + "nl": "Meer informatie:", + "no": "Mer informasjon:", + "pl": "Więcej informacji:", + "pt_BR": "Mais informações:", + "pt_PT": "Mais informações:", + "ro": "Mai multe informații:", + "ru": "Больше информации:", + "sr": "Više informacija na:", + "sv": "Mer information:", + "ta": "மேலும் விவரத்திற்கு:", + "th": "ข้อมูลเพิ่มเติม:", + "tr": "Daha fazla bilgi için:", + "uk": "Більше інформації:", + "uz": "Ko'proq malumot:", + "zh_TW": "更多資訊:", + "zh": "更多信息:", } -IGNORE_FILES = ( - '.DS_Store', -) +IGNORE_FILES = (".DS_Store",) def get_tldr_root(): # if this script is running from tldr/scripts, the parent's parent is the root f = os.path.normpath(__file__) - if f.endswith('tldr/scripts/set-more-info-link.py'): + if f.endswith("tldr/scripts/set-more-info-link.py"): return os.path.dirname(os.path.dirname(f)) - if 'TLDR_ROOT' in os.environ: - return os.environ['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.') + "\x1b[31mPlease set TLDR_ROOT to the location of a clone of https://github.com/tldr-pages/tldr." + ) sys.exit(1) @@ -61,85 +72,167 @@ def set_link(file, link): # find start and end of description for i, line in enumerate(lines): - if line.startswith('>') and desc_start == 0: + if line.startswith(">") and desc_start == 0: desc_start = i - if not lines[i + 1].startswith('>') and desc_start != 0: + if not lines[i + 1].startswith(">") and desc_start != 0: desc_end = i break # compute locale pages_dir = os.path.basename(os.path.dirname(os.path.dirname(file))) - if '.' in pages_dir: - _, locale = pages_dir.split('.') + if "." in pages_dir: + _, locale = pages_dir.split(".") else: - locale = 'en' + locale = "en" # build new line - new_line = f'> {labels[locale]} <{link}>.\n' + if locale == "hi": + new_line = f"> {labels[locale]} <{link}>।\n" + elif locale == "ja": + new_line = f"> {labels[locale]} <{link}>\n" + elif locale == "zh" or locale == "zh_TW": + new_line = f"> {labels[locale]}<{link}>.\n" + else: + new_line = f"> {labels[locale]} <{link}>.\n" if lines[desc_end] == new_line: # return empty status to indicate that no changes were made - return '' + return "" - if re.search(r'^>.*<.+>', lines[desc_end]): + if re.search(r"^>.*<.+>", lines[desc_end]): # overwrite last line lines[desc_end] = new_line - status = '\x1b[34mlink updated' + status = "\x1b[34mlink updated" else: # add new line lines.insert(desc_end + 1, new_line) - status = '\x1b[36mlink added' + status = "\x1b[36mlink added" - with open(file, 'w') as f: + with open(file, "w") as f: f.writelines(lines) return status +def get_link(file): + with open(file) as f: + lines = f.readlines() + + desc_start = 0 + desc_end = 0 + + # find start and end of description + for i, line in enumerate(lines): + if line.startswith(">") and desc_start == 0: + desc_start = i + if not lines[i + 1].startswith(">") and desc_start != 0: + desc_end = i + break + + # match link + if re.search(r"^>.*<.+>", lines[desc_end]): + return re.search("<(.+)>", lines[desc_end]).group(1) + else: + return "" + + +def sync(root, pages_dirs, command, link): + rel_paths = [] + for page_dir in pages_dirs: + path = os.path.join(root, page_dir, command) + if os.path.exists(path): + rel_path = path.replace(f"{root}/", "") + rel_paths.append(rel_path) + status = set_link(path, link) + if status != "": + print(f"\x1b[32m{rel_path} {status}\x1b[0m") + return rel_paths + + def main(): parser = argparse.ArgumentParser( - description='Sets the "More information" link for all translations of a page') - parser.add_argument('-p', '--page', type=str, required=True, - help='page name in the format "platform/command.md"') - parser.add_argument('-s', '--stage', action='store_true', default=False, - help='stage modified pages (requires `git` to be on $PATH and TLDR_ROOT to be a Git repository)') - parser.add_argument('link', type=str) + description='Sets the "More information" link for all translations of a page' + ) + parser.add_argument( + "-p", + "--page", + type=str, + required=False, + default="", + help='page name in the format "platform/command.md"', + ) + parser.add_argument( + "-s", + "--stage", + action="store_true", + default=False, + help="stage modified pages (requires `git` to be on $PATH and TLDR_ROOT to be a Git repository)", + ) + parser.add_argument( + "-S", + "--sync", + action="store_true", + default=False, + help="synchronize each translation's more information link (if exists) with that of English page", + ) + parser.add_argument("link", type=str, nargs="?", default="") args = parser.parse_args() root = get_tldr_root() - pages_dirs = [d for d in os.listdir(root) if d.startswith('pages')] + pages_dirs = [d for d in os.listdir(root) if d.startswith("pages")] - target_paths = [] rel_paths = [] - if not args.page.lower().endswith('.md'): - args.page = f'{args.page}.md' - - for pages_dir in pages_dirs: - pages_dir_path = os.path.join(root, pages_dir) - platforms = [i for i in os.listdir( - pages_dir_path) if i not in IGNORE_FILES] + # Use '--page' option + if args.page != "": + target_paths = [] + + if not args.page.lower().endswith(".md"): + args.page = f"{args.page}.md" + + for pages_dir in pages_dirs: + pages_dir_path = os.path.join(root, pages_dir) + platforms = [i for i in os.listdir(pages_dir_path) if i not in IGNORE_FILES] + for platform in platforms: + platform_path = os.path.join(pages_dir_path, platform) + commands = [ + f"{platform}/{p}" + for p in os.listdir(platform_path) + if p not in IGNORE_FILES + ] + if args.page in commands: + path = os.path.join(pages_dir_path, args.page) + target_paths.append(path) + + target_paths.sort() + + for path in target_paths: + rel_path = path.replace(f"{root}/", "") + rel_paths.append(rel_path) + status = set_link(path, args.link) + if status != "": + print(f"\x1b[32m{rel_path} {status}\x1b[0m") + + # Use '--sync' option + elif args.sync: + pages_dirs.remove("pages") + en_page = os.path.join(root, "pages") + platforms = [i for i in os.listdir(en_page) if i not in IGNORE_FILES] for platform in platforms: - platform_path = os.path.join(pages_dir_path, platform) - pages = os.listdir(platform_path) + platform_path = os.path.join(en_page, platform) commands = [ - f'{platform}/{p}' for p in pages if p not in IGNORE_FILES] - if args.page in commands: - path = os.path.join(pages_dir_path, args.page) - target_paths.append(path) - - target_paths.sort() - - for path in target_paths: - rel_path = path.replace(f'{root}/', '') - rel_paths.append(rel_path) - status = set_link(path, args.link) - if status != '': - print(f'\x1b[32m{rel_path} {status}\x1b[0m') + f"{platform}/{p}" + for p in os.listdir(platform_path) + if p not in IGNORE_FILES + ] + for command in commands: + link = get_link(os.path.join(root, "pages", command)) + if link != "": + rel_paths += sync(root, pages_dirs, command, link) if args.stage: - subprocess.call(['git', 'add', *rel_paths], cwd=root) + subprocess.call(["git", "add", *rel_paths], cwd=root) -if __name__ == '__main__': +if __name__ == "__main__": main() diff --git a/scripts/test.sh b/scripts/test.sh index ce750e117464fe..9d43cf28beaf7b 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +# SPDX-License-Identifier: MIT # This script is executed by GitHub Actions for every successful push (on any branch, PR or not). # It runs some basic tests on pages. If the build is also a PR, additional @@ -8,13 +9,63 @@ # NOTE: must be run from the repository root directory to correctly work! # NOTE: `set -e` is applied conditionally only if needed. +# check if a command is available to run in the system +function exists { + command -v "$1" >/dev/null 2>&1 +} + +# Wrapper around black as it outputs everything to stderr, +# but we want to only print if there are actual errors, and not +# the "All done!" success message. +function run_black { + 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 + if [[ ${errs} != "All done!"* ]]; then + echo -e "${errs}" >&2 + return 1 + fi +} + +function run_flake8 { + # skip flake8 check if command is not available in the system. + if [ "$CI" != "true" ] && ! exists flake8; then + echo "Skipping flake8 check, command not available." + return 0 + fi + + flake8 scripts +} + # Default test function, ran by `npm test`. function run_tests { - markdownlint pages*/**/*.md + find pages* -name '*.md' -exec markdownlint {} + tldr-lint ./pages for f in ./pages.*; do - tldr-lint --ignore "TLDR003,TLDR004,TLDR005,TLDR015,TLDR104" ${f} + tldr-lint --ignore "TLDR003,TLDR004,TLDR005,TLDR015,TLDR104" "${f}" done + run_black + run_flake8 } # Special test function for GitHub Actions pull request builds. @@ -54,4 +105,4 @@ else run_tests fi -echo 'Test ran succesfully!' +echo 'Test ran successfully!'