From ae8394049ec9ed6a4a23c82ae0f78048cfe16dbd Mon Sep 17 00:00:00 2001 From: Jared Rummler Date: Tue, 27 May 2025 19:47:39 -0700 Subject: [PATCH 001/141] codex: add page (#16559) --- pages/common/codex.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pages/common/codex.md diff --git a/pages/common/codex.md b/pages/common/codex.md new file mode 100644 index 0000000000..3f84279581 --- /dev/null +++ b/pages/common/codex.md @@ -0,0 +1,33 @@ +# codex + +> Natural language code assistant for the terminal, powered by OpenAI. +> Reads and edits files in your current directory to fulfill requests. +> More information: . + +- Start an interactive Codex session in the current directory: + +`codex` + +- Run a single Codex command using a prompt: + +`codex "{{your prompt}}"` + +- Run a prompt with automatic approval of all file edits and commands: + +`codex {{[-a|--approval-mode]}} full-auto "{{your prompt}}"` + +- Use a specific provider and model: + +`codex --provider {{provider_name}} {{[-m|--model]}} {{model_name}} "{{your prompt}}"` + +- Load the entire repository as context (experimental): + +`codex --full-context "{{your prompt}}"` + +- Show the resource usage for the current session (run this command inside a session): + +`/cost` + +- Display help: + +`codex --help` From f611ae2d0606a57a4e460c2363ebc87f72bd22d3 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Wed, 28 May 2025 08:04:17 +0000 Subject: [PATCH 002/141] nicotine: add page (#16612) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/common/nicotine.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/nicotine.md diff --git a/pages/common/nicotine.md b/pages/common/nicotine.md new file mode 100644 index 0000000000..9b779ea21e --- /dev/null +++ b/pages/common/nicotine.md @@ -0,0 +1,20 @@ +# nicotine + +> Graphical client for the Soulseek peer-to-peer network. +> More information: . + +- Start Nicotine+: + +`nicotine` + +- Start Nicotine+ in headless ([n]) mode: + +`nicotine {{[-n|--headless]}}` + +- Rescan shared files: + +`nicotine {{[-r|--rescan]}}` + +- Display help: + +`nicotine {{[-h|--help]}}` From 95c9799dc024ab10a3c7c0e1de9027610475b385 Mon Sep 17 00:00:00 2001 From: David Lazarevic <141435284+davidlazch@users.noreply.github.com> Date: Wed, 28 May 2025 10:54:30 +0200 Subject: [PATCH 003/141] exo*: add pages (#16405) --- pages/common/exo-compute-block-storage.md | 32 ++++++++++++++++++++ pages/common/exo-compute-instance.md | 36 +++++++++++++++++++++++ pages/common/exo-compute-sks.md | 36 +++++++++++++++++++++++ pages/common/exo-compute.md | 33 +++++++++++++++++++++ pages/common/exo-dbaas.md | 28 ++++++++++++++++++ pages/common/exo-iam.md | 24 +++++++++++++++ pages/common/exo-storage.md | 24 +++++++++++++++ pages/common/exo.md | 29 ++++++++++++++++++ 8 files changed, 242 insertions(+) create mode 100644 pages/common/exo-compute-block-storage.md create mode 100644 pages/common/exo-compute-instance.md create mode 100644 pages/common/exo-compute-sks.md create mode 100644 pages/common/exo-compute.md create mode 100644 pages/common/exo-dbaas.md create mode 100644 pages/common/exo-iam.md create mode 100644 pages/common/exo-storage.md create mode 100644 pages/common/exo.md diff --git a/pages/common/exo-compute-block-storage.md b/pages/common/exo-compute-block-storage.md new file mode 100644 index 0000000000..b93dd99fa7 --- /dev/null +++ b/pages/common/exo-compute-block-storage.md @@ -0,0 +1,32 @@ +# exo compute block-storage + +> Manage the Exoscale Block Storage service. +> More information: . + +- Create a 20GB Block Storage Volume: + +`exo compute block-storage create {{volume_name}} --size 20 {{[-z|--zone]}} {{zone}}` + +- List Block Storage Volumes: + +`exo compute block-storage list` + +- Attach a Block Storage Volume to a Compute instance: + +`exo compute block-storage attach {{volume_name|id}} {{instance_name|id}} {{[-z|--zone]}} {{zone}}` + +- Forcefully detach a Block Storage Volume (does not require confirmation): + +`exo compute block-storage detach {{volume_name|id}} {{[-z|--zone]}} {{zone}} {{[-f|--force]}}` + +- Create a snapshot of a Block Storage Volume: + +`exo compute block-storage snapshot create {{volume_name|id}} --name {{snapshot_name}} {{[-z|--zone]}} {{zone}}` + +- Create a Block Storage Volume from a snapshot: + +`exo compute block-storage create {{volume_name}} --snapshot {{snapshot_name|id}} {{[-z|--zone]}} {{zone}}` + +- Update an existing Block Storage Volume with a new name and a new volume size of 30GB: + +`exo compute block-storage update {{volume_name|id}} --size 30 --name {{new_name}}` diff --git a/pages/common/exo-compute-instance.md b/pages/common/exo-compute-instance.md new file mode 100644 index 0000000000..748e817e87 --- /dev/null +++ b/pages/common/exo-compute-instance.md @@ -0,0 +1,36 @@ +# exo compute instance + +> Manage Exoscale Compute instances. +> More information: . + +- Create a Debian based Compute instance with a disk size of 10GB: + +`exo compute instance create --disk-size 10 {{instance_name}} {{[-z|--zone]}} {{zone}} --template '{{Linux Debian 12 (Bookworm) 64-bit}}'` + +- Log into a Compute instance via SSH: + +`exo compute instance ssh {{instance_name|id}}` + +- List all of the Compute instances: + +`exo compute instance list` + +- Add an instance to a Security Group: + +`exo compute instance security-group add {{instance_name|id}} {{security_group_name|id}}` + +- Scale the size of a Compute instance: + +`exo compute instance scale {{instance_name|id}} {{instance_type}}` + +- Create a snapshot of a Compute instance: + +`exo compute instance snapshot create {{instance_name|id}}` + +- Revert a Compute instance to a snapshot (the data written after the snapshot has been created will be lost): + +`exo compute instance snapshot revert {{snapshot_id}} {{instance_name|id}}` + +- Resize the disk size of a Compute instance to 20GB: + +`exo compute instance resize-disk {{instance_name|id}} 20` diff --git a/pages/common/exo-compute-sks.md b/pages/common/exo-compute-sks.md new file mode 100644 index 0000000000..2f457edfc2 --- /dev/null +++ b/pages/common/exo-compute-sks.md @@ -0,0 +1,36 @@ +# exo compute sks + +> Manage the Exoscale Scalable Kubernetes Service (SKS). +> More information: . + +- List the supported SKS cluster versions: + +`exo compute sks versions` + +- Create a new SKS cluster: + +`exo compute sks create {{cluster_name}} {{[-z|--zone]}} {{zone}}` + +- List all SKS clusters: + +`exo compute sks list` + +- Generate a Kubernetes kubeconfig file for an SKS cluster that expires in 1800 seconds: + +`exo compute sks kubeconfig {{cluster_name|id}} {{user}} --ttl 1800 {{[-z|--zone]}} {{zone}}` + +- Create and add a Nodepool containing 3 nodes to an SKS cluster: + +`exo compute sks nodepool add {{cluster_name|id}} {{nodepool_name}} --size 3 {{[-z|--zone]}} {{zone}}` + +- Remove a Nodepool from an SKS cluster: + +`exo compute sks nodepool delete {{cluster_name|id}} {{nodepool_name|id}}` + +- Evict a Node from a Nodepool in an SKS cluster: + +`exo compute sks nodepool evict {{cluster_name|id}} {{nodepool_name|id}} {{node_name|id}}` + +- Enable the Exoscale CSI driver for an existing SKS cluster: + +`exo compute sks update {{cluster_name|id}} --enable-csi-addon {{[-z|--zone]}} {{zone}}` diff --git a/pages/common/exo-compute.md b/pages/common/exo-compute.md new file mode 100644 index 0000000000..5af35c4006 --- /dev/null +++ b/pages/common/exo-compute.md @@ -0,0 +1,33 @@ +# exo compute + +> Manage Exoscale Compute resources. +> Some subcommands such as `instance` have their own documentation. +> More information: . + +- Quickly create an Exoscale Compute resource (e.g., instance, Security Group, SKS cluster,...): + +`exo compute {{resource_type}} create {{resource_name}}` + +- List Exoscale Compute instance types: + +`exo compute instance-type list` + +- Register a new SSH key that can be used to access Compute instances: + +`exo compute ssh-key register {{key_name}} {{public_key_file}}` + +- Create a Compute instance with an ssh-key deployed on it: + +`exo compute instance create {{instance_name}} {{ssh_key_name}}` + +- Register a new Compute instance template based on a Snapshot of a Compute instance (useful when you want to quickly create a replica of a Compute instance): + +`exo compute instance template register {{template_name}} --from-snapshot {{snapshot_id}}` + +- Add a new rule to an existing Security Group: + +`exo compute security-group rule add {{security_group_name|id}} --description '{{Allow SSH access}}' --flow {{ingress}} --port {{22}} --network {{0.0.0.0/0}}` + +- Manage the services of an existing Network Load Balancer: + +`exo compute load-balancer service add {{load_balancer_name|id}} {{service_name}} --port {{service_port}}` diff --git a/pages/common/exo-dbaas.md b/pages/common/exo-dbaas.md new file mode 100644 index 0000000000..ae68463250 --- /dev/null +++ b/pages/common/exo-dbaas.md @@ -0,0 +1,28 @@ +# exo dbaas + +> Manage Exoscale DBaaS. +> More information: . + +- List available Database Service types: + +`exo dbaas type list` + +- List available plans for a Database Service type: + +`exo dbaas type show {{database_service_type}} --plans` + +- Create a new Database Service (an IP filter must be specified in order to access the service): + +`exo dbaas create {{database_service_type}} {{database_service_type_plan}} {{database_service_name}} --{{database_service_type}}-ip-filter {{1.2.3.4/32}}` + +- Show the connection URI for a Database Service: + +`exo dbaas show {{database_service_name}} --uri` + +- Set a specified maintenance time and day of the week for a Database Service: + +`exo dbaas update {{database_service_name}} --maintenance-dow {{day_of_the_week}} --maintenance-time {{HH:MM:SS}}` + +- Get help for a specific Database Service type: + +`exo dbaas {{subcommand}} --help-{{database_service_type}}` diff --git a/pages/common/exo-iam.md b/pages/common/exo-iam.md new file mode 100644 index 0000000000..6aad681dfa --- /dev/null +++ b/pages/common/exo-iam.md @@ -0,0 +1,24 @@ +# exo iam + +> Manage the Exoscale IAM service. +> More information: . + +- List all of the IAM roles: + +`exo iam role list` + +- Create a new API key: + +`exo iam api-key create {{api_key_name}} {{iam_role_name}}` + +- Create a new IAM role: + +`cat {{/path/to/policy.json}} | exo iam role create {{iam_role_name}} --editable --policy -` + +- Show the policy of an existing IAM role: + +`exo iam role show {{iam_role_name}} --policy {{[-O|--output-format]}} {{json}} | jq .` + +- Update the default Organization policy (the default Organization policy will be applied to all of the API keys within the Organization): + +`cat {{/path/to/policy.json}} | exo iam org-policy update -` diff --git a/pages/common/exo-storage.md b/pages/common/exo-storage.md new file mode 100644 index 0000000000..31b272ea4d --- /dev/null +++ b/pages/common/exo-storage.md @@ -0,0 +1,24 @@ +# exo storage + +> Manage the Exoscale Simple Object Storage (SOS) service. +> More information: . + +- Create a new SOS bucket: + +`exo storage mb {{bucket_name}}` + +- Upload a file to a bucket: + +`exo storage put {{file_path}} {{bucket_name}}/{{prefix/}}` + +- List the objects within a bucket: + +`exo storage ls {{bucket_name}}` + +- Simulate the download of an object from a bucket: + +`exo storage get {{bucket_name}}/{{object_key}} {{local_path}} --dry-run` + +- Manage the metadata of an object: + +`exo storage metadata add {{bucket_name}}/{{object_key}} {{key=value}}` diff --git a/pages/common/exo.md b/pages/common/exo.md new file mode 100644 index 0000000000..8905357131 --- /dev/null +++ b/pages/common/exo.md @@ -0,0 +1,29 @@ +# exo + +> Manage the Exoscale services. +> Some subcommands such as `exo compute` have their own usage documentation. +> More information: . + +- Configure the exo command-line: + +`exo config` + +- Generate the exo autocompletion script for a specified shell: + +`exo completion {{zsh}}` + +- List all of the available zones and output them as json: + +`exo zone {{[-O|--output-format]}} {{json}}` + +- Quietly create a Compute instance in a specific zone (disables the non-essential command output): + +`exo compute instance create {{instance_name}} --zone {{zone}} {{[-Q|--quiet]}}` + +- List just the name of all of the buckets in the Organization: + +`exo storage list {{[-O|--output-template]}} '\{\{ .Name \}\}` + +- Display help for a specific sub-command: + +`exo {{iam}} {{[-h|--help]}}` From 981e118d0d0ab411299ec136db00bdf77853b8f1 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:17:50 +0200 Subject: [PATCH 004/141] GetNPUsers.py: translate placeholders to Dutch (#16620) --- pages.nl/common/getnpusers.py.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages.nl/common/getnpusers.py.md b/pages.nl/common/getnpusers.py.md index 68e1ef66ca..0e9e743d6d 100644 --- a/pages.nl/common/getnpusers.py.md +++ b/pages.nl/common/getnpusers.py.md @@ -14,11 +14,11 @@ - Authenticeer met valide credentials (als anonieme binding is uitgeschakeld): -`GetNPUsers.py {{domein}}/{{username}}:{{password}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}}` +`GetNPUsers.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}}` - Gebruik pass-the-hash authenticatie in plaats van een wachtwoord: -`GetNPUsers.py {{domein}}/{{username}} -hashes {{LM_Hash}}:{{NT_Hash}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}}` +`GetNPUsers.py {{domein}}/{{gebruikersnaam}} -hashes {{LM_Hash}}:{{NT_Hash}} -usersfile {{pad/naar/gebruikerslijst}} -dc-ip {{domain_controller_ip}}` - Sla de output op in een bestand: From 3f49313b37374fb61b2b57ec9b8d1c4db81f1042 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Wed, 28 May 2025 19:19:08 +0000 Subject: [PATCH 005/141] pacman: add Dutch translation (#16609) --- pages.nl/linux/pacman.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pages.nl/linux/pacman.md diff --git a/pages.nl/linux/pacman.md b/pages.nl/linux/pacman.md new file mode 100644 index 0000000000..573f18c193 --- /dev/null +++ b/pages.nl/linux/pacman.md @@ -0,0 +1,38 @@ +# pacman + +> Hulpprogramma voor het beheren van pakketten op Arch Linux. +> Bekijk ook: `pacman-sync`, `pacman-remove`, `pacman-query`, `pacman-upgrade`, `pacman-files`, `pacman-database`, `pacman-deptest`, `pacman-key`, `pacman-mirrors`. +> Voor gelijkwaardige commando's in andere pakket managers, zie . +> Meer informatie: . + +- [S]ynchroniseer en update alle pakketten: + +`sudo pacman -Syu` + +- Installeer een nieuw pakket: + +`sudo pacman -S {{pakket}}` + +- Verwijde[R] een pakket en zijn afhankelijkheden: + +`sudo pacman -Rs {{pakket}}` + +- Doorzoek ([s]) de pakketdatabase met een reguliere expressie of zoekwoord: + +`pacman -Ss "{{zoekterm}}"` + +- Zoek in de database voor pakketten die een specifiek bestand ([F]) bevatten: + +`pacman -F "{{bestandsnaam}}"` + +- Toon alleen de [e]xpliciet geïnstalleerde pakketten en versies: + +`pacman -Qe` + +- Toon weespakketten (geïnstalleerd als afhankelijkhe[d]en maar niet daadwerkelijk vereist door een ander pakket): + +`pacman -Qtdq` + +- Leeg de hele `pacman` cache: + +`sudo pacman -Scc` From 8ab3b1ada9a93605e69e52eedc9613d1c9354f20 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:26:22 +0200 Subject: [PATCH 006/141] kiterunner-*: add Dutch translation (#16613) --- pages.nl/common/kiterunner-brute.md | 37 ++++++++++++++++++++++++++ pages.nl/common/kiterunner-kb.md | 37 ++++++++++++++++++++++++++ pages.nl/common/kiterunner-scan.md | 37 ++++++++++++++++++++++++++ pages.nl/common/kiterunner-wordlist.md | 33 +++++++++++++++++++++++ 4 files changed, 144 insertions(+) create mode 100644 pages.nl/common/kiterunner-brute.md create mode 100644 pages.nl/common/kiterunner-kb.md create mode 100644 pages.nl/common/kiterunner-scan.md create mode 100644 pages.nl/common/kiterunner-wordlist.md diff --git a/pages.nl/common/kiterunner-brute.md b/pages.nl/common/kiterunner-brute.md new file mode 100644 index 0000000000..503df78dd6 --- /dev/null +++ b/pages.nl/common/kiterunner-brute.md @@ -0,0 +1,37 @@ +# kiterunner brute + +> Een contextuele webscanner voor het bruteforcen van API-paden en web-endpoints met behulp van woordenlijsten. +> Het `brute` subcommando richt zich op een of meerdere hosts. +> Meer informatie: . + +- Bruteforce een doel met een Assetnote woordenlijst (bijvoorbeeld de eerste 20.000 API routes): + +`kiterunner brute {{https://example.com}} {{[-A|--assetnote-wordlist]}} {{apiroutes-210328:20000}}` + +- Bruteforce een doelwit met een aangepaste woordenlijst: + +`kiterunner brute {{https://example.com}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}}` + +- Bruteforce met een dirsearch-woordlijst met extensie-substitutie: + +`kiterunner brute {{https://example.com}} {{[-w|--wordlist]}} {{pad/naar/dirsearch.txt}} {{[-D|--dirsearch-compat]}} {{[-e|--extensions]}} {{json,txt}}` + +- Bruteforce met specifieke bestandsextensies toegevoegd en uitvoer in JSON-formaat: + +`kiterunner brute {{https://example.com}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}} {{[-e|--extensions]}} {{aspx,ashx}} {{[-o|--output]}} {{json}}` + +- Bruteforce een lijst met doelen uit een bestand met aangepaste concurrency-instellingen voor prestaties: + +`kiterunner brute {{pad/naar/targets.txt}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}} {{[-x|--max-connection-per-host]}} {{5}} {{[-j|--max-parallel-hosts]}} {{100}}` + +- Bruteforce en negeer specifieke inhoudslengte antwoorden: + +`kiterunner brute {{https://example.com}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}} --ignore-length {{100-105}}` + +- Bruteforce met aangepaste HTTP-headers: + +`kiterunner brute {{https://example.com}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}} {{[-H|--header]}} "{{Authorization: Bearer token}}"` + +- Bruteforce een lijst van doelen uit een bestand met fail status code filtering: + +`kiterunner brute {{pad/naar/doelen.txt}} {{[-w|--wordlist]}} {{pad/naar/woordenlijst.txt}} --fail-status-codes {{400,401,404}}` diff --git a/pages.nl/common/kiterunner-kb.md b/pages.nl/common/kiterunner-kb.md new file mode 100644 index 0000000000..215b438498 --- /dev/null +++ b/pages.nl/common/kiterunner-kb.md @@ -0,0 +1,37 @@ +# kiterunner kb + +> Een contextuele webscanner voor het manipuleren van kitebuilder-schema's die gebruikt worden in API en web endpoint discovery. +> Het `kb` subcommando zorgt voor schema compilatie, conversie, parsing en request replay. +> Meer informatie: . + +- Compileer een kitebuilder schema van JSON naar een kite bestand: + +`kiterunner kb compile {{pad/naar/woordenlijst.json}} {{pad/naar/woordenlijst.kite}}` + +- Converteer een kite bestand naar een tekst woordenlijst: + +`kiterunner kb convert {{pad/naar/woordenlijst.kite}} {{pad/naar/woordlijst.txt}}` + +- Converteer een tekst woordenlijst naar een kite bestand: + +`kiterunner kb convert {{pad/naar/woordenlijst.txt}} {{pad/naar/woordenlijst.kite}}` + +- Converteer een kite bestand naar een JSON schema: + +`kiterunner kb convert {{pad/naar/woordenlijst.kite}} {{pad/naar/woordenlijst.json}}` + +- Parseer een kitebuilder schema en voer opgemaakte JSON data uit: + +`kiterunner kb parse {{pad/naar/woordenlijst.json}} {{[-o|--output]}} {{json}}` + +- Parseer een vliegerbestand en voer opgemaakte tekstgegevens uit: + +`kiterunner kb parse {{pad/naar/woordenlijst.kite}} {{[-o|--output]}} {{text}}` + +- Een specifiek verzoek van een kitebuilder schema-uitvoer opnieuw afspelen: + +`kiterunner kb replay {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}} "{{request_output}}"` + +- Herhaal een verzoek via een proxy voor inspectie: + +`kiterunner kb replay {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}} {{[-p|--proxy]}} {{http://localhost:8080}} "{{request_output}}"` diff --git a/pages.nl/common/kiterunner-scan.md b/pages.nl/common/kiterunner-scan.md new file mode 100644 index 0000000000..aff1e1f660 --- /dev/null +++ b/pages.nl/common/kiterunner-scan.md @@ -0,0 +1,37 @@ +# kiterunner scan + +> Een contextuele web scanner om gelijktijdig API paden en web eindpunten te scannen met behulp van kitebuilder woordenlijsten. +> Het `scan` subcommando richt zich op een of meerdere hosts met gestructureerde API verzoeken. +> Meer informatie: . + +- Scan een doel met een Assetnote woordenlijst (bijvoorbeeld de eerste 5000 API-routes): + +`kiterunner scan {{https://example.com}} {{[-A|--assetnote-wordlist]}} {{apiroutes-210228:5000}}` + +- Scan een doel met een kitebuilder woordenlijst: + +`kiterunner scan {{https://example.com}} {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}}` + +- Meerdere hosts scannen vanuit een bestand met een kitebuilder wordlist: + +`kiterunner scan {{pad/naar/hosts.txt}} {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}}` + +- Scannen met een Assetnote woordenlijst en JSON uitvoer: + +`kiterunner scan {{https://example.com}} {{[-A|--assetnote-wordlist]}} {{apiroutes-210228:5000}} -o {{json}}` + +- Scan met aangepaste concurrency-instellingen voor prestaties: + +`kiterunner scan {{https://example.com}} {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}} {{[-x|--max-connection-per-host]}} {{5}} {{[-j|--max-parallel-hosts]}} {{100}}` + +- Scannen met een woordenlijst als een normale woordenlijst, waarbij het scannen op diepte wordt uitgeschakeld: + +`kiterunner scan {{https://example.com}} {{[-w|--kitebuilder-list]}} {{pad/naar/rafter.txt}} {{[-d|--preflight-depth]}} {{0}}` + +- Scan met aangepaste headers en negeer antwoorden met specifieke inhoudslengte: + +`kiterunner scan {{https://example.com}} {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}} {{[-H|--header]}} "{{Authorization: Bearer token}}" --ignore-length {{100-105}}` + +- Voer een volledige kitebuilder scan uit zonder fase scanning: + +`kiterunner scan {{https://example.com}} {{[-w|--kitebuilder-list]}} {{pad/naar/woordenlijst.kite}} --kitebuilder-full-scan` diff --git a/pages.nl/common/kiterunner-wordlist.md b/pages.nl/common/kiterunner-wordlist.md new file mode 100644 index 0000000000..73be8c70dc --- /dev/null +++ b/pages.nl/common/kiterunner-wordlist.md @@ -0,0 +1,33 @@ +# kiterunner wordlist + +> Een contextuele webscanner voor het beheren van wordlists die gebruikt worden in API en web endpoint discovery. +> Het `wordlist` subcommando zorgt voor het opsommen en opslaan van wordlists in `~/.cache/kiterunner`. +> Meer informatie: . + +- Maak een lijst van alle in de cache opgeslagen en beschikbare Assetnote woordenlijsten: + +`kiterunner wordlist list` + +- Geef woordlijsten met JSON uitvoer weer: + +`kiterunner wordlist list {{[-o|--output]}} {{json}}` + +- Geef woordlijsten met uitgebreide debug-uitvoer weer: + +`kiterunner wordlist list {{[-v|--verbose]}} {{debug}}` + +- Sla een specifieke Assetnote woordenlijst op met een alias: + +`kiterunner wordlist save {{apiroutes-210328}}` + +- Sla een specifieke Assetnote woordenlijst op met de volledige bestandsnaam: + +`kiterunner wordlist save {{pad/naar/httparchive_apiroutes_2024_05_28.txt}}` + +- Sla meerdere woordenlijsten op met een alias: + +`kiterunner wordlist save {{apiroutes-210328,aspx-210328}}` + +- Sla een woordenlijst op met stille modus om uitvoer te onderdrukken: + +`kiterunner wordlist save {{apiroutes-210328}} {{[-q|--quiet]}}` From 690325d57525dd9f1bbb99f7de89317bd07dcb5e Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:28:28 +0200 Subject: [PATCH 007/141] gpg: add Dutch translation (#16616) --- pages.nl/common/gpg.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.nl/common/gpg.md diff --git a/pages.nl/common/gpg.md b/pages.nl/common/gpg.md new file mode 100644 index 0000000000..d908ae5bf8 --- /dev/null +++ b/pages.nl/common/gpg.md @@ -0,0 +1,36 @@ +# gpg + +> GNU Privacy Guard, een OpenPGP encryptie- en ondertekeningstool. +> Meer informatie: . + +- Maak interactief een GPG publieke en private sleutel: + +`gpg {{[--full-gen-key|--full-generate-key]}}` + +- Geef alle sleutels van de publieke sleutelring weer: + +`gpg {{[-k|--list-keys]}}` + +- Onderteken `doc.txt` zonder encryptie (schrijft uitvoer naar `doc.txt.asc`): + +`gpg --clearsign {{doc.txt}}` + +- Versleutel en onderteken `doc.txt` voor `alice@example.com` en `bob@example.com` (schrijft uitvoer naar `doc.txt.gpg`): + +`gpg {{[-es|--encrypt --sign]}} {{[-r|--receiver]}} {{alice@example.com}} {{[-r|--receiver]}} {{bob@example.com}} {{doc.txt}}` + +- Versleutel `doc.txt` met alleen een wachtwoordzin (uitvoer naar `doc.txt.gpg`): + +`gpg {{[-c|--symmetric]}} {{doc.txt}}` + +- Ontcijfer `doc.txt.gpg` (uitvoer naar `stdout`): + +`gpg {{[-d|--decrypt]}} {{doc.txt.gpg}}` + +- Importeer een publieke sleutel: + +`gpg --import {{public.gpg}}` + +- Exporteer de publieke/privé sleutel voor `alice@example.com` (uitvoer naar `stdout`): + +`gpg {{--export|--export-secret-keys}} {{[-a|--armor]}} {{alice@example.com}}` From 7830ec9edc71bc374fc37d3b68a3766d5b443cd2 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:33:27 +0200 Subject: [PATCH 008/141] xml-*: add Dutch translations (#16608) --- pages.nl/common/xml-c14n.md | 7 +++++++ pages.nl/common/xml-canonic.md | 20 ++++++++++++++++++++ pages.nl/common/xml-depyx.md | 16 ++++++++++++++++ pages.nl/common/xml-p2x.md | 7 +++++++ pages.nl/common/xml-pyx.md | 16 ++++++++++++++++ pages.nl/common/xml-xmln.md | 7 +++++++ 6 files changed, 73 insertions(+) create mode 100644 pages.nl/common/xml-c14n.md create mode 100644 pages.nl/common/xml-canonic.md create mode 100644 pages.nl/common/xml-depyx.md create mode 100644 pages.nl/common/xml-p2x.md create mode 100644 pages.nl/common/xml-pyx.md create mode 100644 pages.nl/common/xml-xmln.md diff --git a/pages.nl/common/xml-c14n.md b/pages.nl/common/xml-c14n.md new file mode 100644 index 0000000000..b713115fde --- /dev/null +++ b/pages.nl/common/xml-c14n.md @@ -0,0 +1,7 @@ +# xml c14n + +> Dit commando is een alias van `xml canonic`. + +- Bekijk de documentatie van het originele commando: + +`tldr xml canonic` diff --git a/pages.nl/common/xml-canonic.md b/pages.nl/common/xml-canonic.md new file mode 100644 index 0000000000..6573184b2c --- /dev/null +++ b/pages.nl/common/xml-canonic.md @@ -0,0 +1,20 @@ +# xml canonic + +> Maak XML-documenten canoniek. +> Meer informatie: . + +- Maak een XML-document canoniek met behoud van commentaar: + +`xml {{[c14n|canonic]}} {{pad/naar/invoer.xml|URI}} > {{pad/naar/uitvoer.xml}}` + +- Maak een XML-document canoniek en verwijder het commentaar: + +`xml {{[c14n|canonic]}} --without-comments {{pad/naar/invoer.xml|URI}} > {{pad/naar/uitvoer.xml}}` + +- Maak XML uitsluitend canoniek, met behulp van een XPATH vanuit een bestand, met behoud van commentaar: + +`xml {{[c14n|canonic]}} --exc-with-comments {{pad/naar/invoer.xml|URI}} {{pad/naar/c14n.xpath}}` + +- Toon help: + +`xml {{[c14n|canonic]}} --help` diff --git a/pages.nl/common/xml-depyx.md b/pages.nl/common/xml-depyx.md new file mode 100644 index 0000000000..e108fbdbc5 --- /dev/null +++ b/pages.nl/common/xml-depyx.md @@ -0,0 +1,16 @@ +# xml depyx + +> Converteer een PYX (ESIS - ISO 8879) document naar XML formaat. +> Meer informatie: . + +- Converteer een PYX (ESIS - ISO 8879) document naar XML formaat: + +`xml {{[p2x|depyx]}} {{pad/naar/invoer.pyx|URI}} > {{pad/naar/uitvoer.xml}}` + +- Converteer een PYX document van `stdin` naar XML formaat: + +`cat {{pad/naar/invoer.pyx}} | xml {{[p2x|depyx]}} > {{pad/naar/uitvoer.xml}}` + +- Toon help: + +`xml {{[p2x|depyx]}} --help` diff --git a/pages.nl/common/xml-p2x.md b/pages.nl/common/xml-p2x.md new file mode 100644 index 0000000000..02da79efab --- /dev/null +++ b/pages.nl/common/xml-p2x.md @@ -0,0 +1,7 @@ +# xml p2x + +> Dit commando is een alias van `xml depyx`. + +- Bekijk de documentatie van het originele commando: + +`tldr xml depyx` diff --git a/pages.nl/common/xml-pyx.md b/pages.nl/common/xml-pyx.md new file mode 100644 index 0000000000..745233b8e5 --- /dev/null +++ b/pages.nl/common/xml-pyx.md @@ -0,0 +1,16 @@ +# xml pyx + +> Converteer een XML-document naar het PYX-formaat (ESIS - ISO 8879). +> Meer informatie: . + +- Converteer een XML document naar PYX formaat: + +`xml pyx {{pad/naar/invoer.xml|URI}} > {{pad/naar/uitvoer.pyx}}` + +- Converteer een XML document van `stdin` naar PYX formaat: + +`cat {{pad/naar/invoer.xml}} | xml pyx > {{pad/naar/uitvoer.pyx}}` + +- Toon help: + +`xml pyx --help` diff --git a/pages.nl/common/xml-xmln.md b/pages.nl/common/xml-xmln.md new file mode 100644 index 0000000000..f1c3b13b2d --- /dev/null +++ b/pages.nl/common/xml-xmln.md @@ -0,0 +1,7 @@ +# xml xmln + +> Dit commando is een alias van `xml pyx`. + +- Bekijk de documentatie van het originele commando: + +`tldr xml pyx` From 9cfd45f9020fd2e7c18721395759d4ebf367f889 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Wed, 28 May 2025 19:35:08 +0000 Subject: [PATCH 009/141] php: update page and add Dutch translation (#16626) --- pages.nl/common/php.md | 36 ++++++++++++++++++++++++++++++++++++ pages/common/php.md | 20 ++++++++++---------- 2 files changed, 46 insertions(+), 10 deletions(-) create mode 100644 pages.nl/common/php.md diff --git a/pages.nl/common/php.md b/pages.nl/common/php.md new file mode 100644 index 0000000000..e40a1a2e61 --- /dev/null +++ b/pages.nl/common/php.md @@ -0,0 +1,36 @@ +# php + +> PHP command-line interface. +> Meer informatie: . + +- Parse en voer een PHP-script uit: + +`php {{pad/naar/bestand}}` + +- Controleer de syntax van (d.w.z. [l]int) een PHP-script: + +`php {{[-l|--syntax-check]}} {{pad/naar/bestand}}` + +- Voer PHP inter[a]ctief uit: + +`php {{[-a|--interactive]}}` + +- Voer PHP-code uit (Opmerkingen: Gebruik geen tags; escape dubbele aanhalingstekens met backslash): + +`php {{[-r|--run]}} "{{code}}"` + +- Start een PHP ingebouwde web[S]erver in de huidige map: + +`php {{[-S|--server]}} {{host:poort}}` + +- Toon geïnstalleerde PHP-extensies: + +`php {{[-m|--modules]}}` + +- Toon informatie over de huidige PHP-configuratie: + +`php {{[-i|--info]}}` + +- Toon informatie over een specifieke functie: + +`php {{[--rf|--rfunction]}} {{functie_naam}}` diff --git a/pages/common/php.md b/pages/common/php.md index 27b153c5ff..0ca9b9d396 100644 --- a/pages/common/php.md +++ b/pages/common/php.md @@ -7,30 +7,30 @@ `php {{path/to/file}}` -- Check syntax on (i.e. lint) a PHP script: +- Check syntax on (i.e. [l]int) a PHP script: -`php -l {{path/to/file}}` +`php {{[-l|--syntax-check]}} {{path/to/file}}` -- Run PHP interactively: +- Run PHP inter[a]ctively: -`php -a` +`php {{[-a|--interactive]}}` - Run PHP code (Notes: Don't use tags; escape double quotes with backslash): -`php -r "{{code}}"` +`php {{[-r|--run]}} "{{code}}"` -- Start a PHP built-in web server in the current directory: +- Start a PHP built-in web [S]erver in the current directory: -`php -S {{host:port}}` +`php {{[-S|--server]}} {{host:port}}` - List installed PHP extensions: -`php -m` +`php {{[-m|--modules]}}` - Display information about the current PHP configuration: -`php -i` +`php {{[-i|--info]}}` - Display information about a specific function: -`php --rf {{function_name}}` +`php {{[--rf|--rfunction]}} {{function_name}}` From 5a68ad339dc44469fbf5dfb61f4f3e1edc7e9eff Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:39:09 +0200 Subject: [PATCH 010/141] nxc: add Dutch translation (#16621) * nxc: add Dutch translation * fix typo * Apply suggestions from code review Co-authored-by: Leon --------- Co-authored-by: Leon --- pages.nl/common/nxc.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages.nl/common/nxc.md diff --git a/pages.nl/common/nxc.md b/pages.nl/common/nxc.md new file mode 100644 index 0000000000..679b7958f4 --- /dev/null +++ b/pages.nl/common/nxc.md @@ -0,0 +1,21 @@ +# nxc + +> Netwerk service opsomming en exploitatie gereedschap. +> Sommige subcommando's zoals `smb` hebben hun eigen gebruiksdocumentatie. +> Meer informatie: . + +- Toon een lijst van beschikbare modules voor het opgegeven protocol: + +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-L|--list-modules]}}` + +- Toont de opties die beschikbaar zijn voor de opgegeven module: + +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{module_naam}} --options` + +- Geef een [o]ptie op voor een module: + +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{module_naam}} -o {{OPTIE_NAAM}}={{optie_waarde}}` + +- Bekijk de opties die beschikbaar zijn voor het opgegeven protocol: + +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-h|--help]}}` From 22dc0f8f715e6b16192f498d12082170a32a7fa6 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:41:02 +0200 Subject: [PATCH 011/141] setarch: add Dutch translation (#16605) * setarch: add Dutch translation * Update pages.nl/linux/setarch.md Co-authored-by: Leon --------- Co-authored-by: Leon --- pages.nl/linux/setarch.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages.nl/linux/setarch.md diff --git a/pages.nl/linux/setarch.md b/pages.nl/linux/setarch.md new file mode 100644 index 0000000000..162041697e --- /dev/null +++ b/pages.nl/linux/setarch.md @@ -0,0 +1,25 @@ +# setarch + +> Verander de gerapporteerde architectuur voor de uitvoering van een programma, voornamelijk gebruikt om aan te passen hoe programma's zich gedragen op basis van de systeemarchitectuur. +> Nuttig voor het testen van compatibiliteit of het draaien van oudere toepassingen. +> Meer informatie: . + +- Voer een commando uit alsof de machine-architectuur `i686` is (handig voor het draaien van 32-bit applicaties op een 64-bit kernel): + +`setarch i686 {{opdracht}}` + +- Een shell uitvoeren met de `x86_64` architectuur: + +`setarch x86_64 {{bash}}` + +- Schakel de willekeurigheid van de virtuele adresruimte uit: + +`setarch {{linux32}} {{[-R|--addr-no-randomize]}} {{command}}` + +- Toon ondersteunde architecturen: + +`setarch --list` + +- Toon help: + +`setarch {{[-h|--help]}}` From 40b4e64363620c91edb0c01767517ba00e688b5b Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 28 May 2025 21:41:12 +0200 Subject: [PATCH 012/141] impacket*: add missing Dutch translations and improve English pages (#16607) * impacket*: add missing Dutch translations and improve English pages * Fix tldr-bot issues * Apply suggestions from code review Co-authored-by: Leon --------- Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Co-authored-by: Leon --- pages.nl/common/getuserspns.py.md | 25 ++++++++++++++++++ pages.nl/common/impacket-smbclient.md | 7 +++++ pages.nl/common/impacket-smbserver.md | 7 +++++ pages.nl/common/mqtt_check.py.md | 29 +++++++++++++++++++++ pages.nl/common/mssqlclient.py.md | 37 +++++++++++++++++++++++++++ pages.nl/common/rpcdump.py.md | 25 ++++++++++++++++++ pages.nl/common/rpcmap.py.md | 37 +++++++++++++++++++++++++++ pages.nl/common/secretsdump.py.md | 25 ++++++++++++++++++ pages.nl/common/smbclient.py.md | 36 ++++++++++++++++++++++++++ pages.nl/common/smbserver.py.md | 36 ++++++++++++++++++++++++++ pages.nl/common/sniff.py.md | 13 ++++++++++ pages.nl/common/sniffer.py.md | 17 ++++++++++++ pages/common/getuserspns.py.md | 2 +- pages/common/sniff.py.md | 4 +-- pages/common/sniffer.py.md | 2 +- 15 files changed, 298 insertions(+), 4 deletions(-) create mode 100644 pages.nl/common/getuserspns.py.md create mode 100644 pages.nl/common/impacket-smbclient.md create mode 100644 pages.nl/common/impacket-smbserver.md create mode 100644 pages.nl/common/mqtt_check.py.md create mode 100644 pages.nl/common/mssqlclient.py.md create mode 100644 pages.nl/common/rpcdump.py.md create mode 100644 pages.nl/common/rpcmap.py.md create mode 100644 pages.nl/common/secretsdump.py.md create mode 100644 pages.nl/common/smbclient.py.md create mode 100644 pages.nl/common/smbserver.py.md create mode 100644 pages.nl/common/sniff.py.md create mode 100644 pages.nl/common/sniffer.py.md diff --git a/pages.nl/common/getuserspns.py.md b/pages.nl/common/getuserspns.py.md new file mode 100644 index 0000000000..6d09c7ad60 --- /dev/null +++ b/pages.nl/common/getuserspns.py.md @@ -0,0 +1,25 @@ +# GetUserSPNs.py + +> Haal Service Principal Names (SPN's) op die gekoppeld zijn aan Active Directory gebruikersaccounts. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Som gebruikersaccounts met een SPN op en vraag hun Kerberos TGS tickets op: + +`GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}}` + +- Gebruik pass-the-hash authenticatie: + +`GetUserSPNs.py {{domein}}/{{gebruikersnaam}} -hashes {{LM_Hash}}:{{NT_Hash}} -dc-ip {{domain_controller_ip}}` + +- Sla de uitvoer op in een bestand: + +`GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}} -outputfile {{pad/naar/uitvoerbestand}}` + +- Vraag alleen TGS tickets op: + +`GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}} -request` + +- Vraag alleen TGS tickets aan met pass-the-hash authenticatie: + +`GetUserSPNs.py {{domein}}/{{gebruikersnaam}} -dc-ip {{domain_controller_ip}} -hashes {{LM_Hash}}:{{NT_Hash}} -request` diff --git a/pages.nl/common/impacket-smbclient.md b/pages.nl/common/impacket-smbclient.md new file mode 100644 index 0000000000..bd4c95ce4d --- /dev/null +++ b/pages.nl/common/impacket-smbclient.md @@ -0,0 +1,7 @@ +# impacket-smbclient + +> Dit commando is een alias van `smbclient.py`. + +- Bekijk de documentatie van het originele commando: + +`tldr smbclient.py` diff --git a/pages.nl/common/impacket-smbserver.md b/pages.nl/common/impacket-smbserver.md new file mode 100644 index 0000000000..46a8ee407e --- /dev/null +++ b/pages.nl/common/impacket-smbserver.md @@ -0,0 +1,7 @@ +# impacket-smbserver + +> Dit commando is een alias van `smbserver.py`. + +- Bekijk de documentatie van het originele commando: + +`tldr smbserver.py` diff --git a/pages.nl/common/mqtt_check.py.md b/pages.nl/common/mqtt_check.py.md new file mode 100644 index 0000000000..98945669bd --- /dev/null +++ b/pages.nl/common/mqtt_check.py.md @@ -0,0 +1,29 @@ +# mqtt_check.py + +> Eenvoudig hulpprogramma voor het testen en valideren van MQTT aanmeldgegevens. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Controleer MQTT aanmeldingsgegevens voor een doel (hostnaam van de MQTT broker): + +`mqtt_check.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doelNaam}}` + +- Geef een aangepaste client-ID op voor authenticatie: + +`mqtt_check.py -client-id {{client_id}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doelNaam}}` + +- Schakel SSL in voor de verbinding: + +`mqtt_check.py -ssl {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doelNaam}}` + +- Maak verbinding met een specifieke poort (standaard is 1883): + +`mqtt_check.py -port {{port}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doelNaam}}` + +- Schakel debug-uitvoer in: + +`mqtt_check.py -debug {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doelNaam}}` + +- Toon help: + +`mqtt_check.py --help` diff --git a/pages.nl/common/mssqlclient.py.md b/pages.nl/common/mssqlclient.py.md new file mode 100644 index 0000000000..c803ee869a --- /dev/null +++ b/pages.nl/common/mssqlclient.py.md @@ -0,0 +1,37 @@ +# mssqlclient.py + +> Maak verbinding met Microsoft SQL Server instanties en voer queries uit. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Maak verbinding met een MSSQL server met Windows authenticatie: + +`mssqlclient.py -windows-auth {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met SQL server-authenticatie: + +`mssqlclient.py {{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met pass-the-hash-authenticatie: + +`mssqlclient.py {{domein}}/{{gebruikersnaam}}@{{doel}} -hashes {{LM_Hash}}:{{NT_Hash}}` + +- Maak verbinding met Kerberos-authenticatie (geldige tickets vereist): + +`mssqlclient.py -k {{domein}}/{{gebruikersnaam}}@{{doel}}` + +- Voer een specifieke SQL-opdracht uit na verbinding: + +`mssqlclient.py {{gebruikersnaam}}:{{wachtwoord}}@{{doel}} -query "{{SELECT user_name();}}"` + +- Voer meerdere SQL-opdrachten vanuit een bestand uit: + +`mssqlclient.py {{gebruikersnaam}}:{{wachtwoord}}@{{doel}} -file {{pad/naar/sql_bestand.sql}}` + +- Maak verbinding met een specifieke database-instantie (standaard is `None`): + +`mssqlclient.py {{gebruikersnaam}}:{{wachtwoord}}@{{doel}} -db {{database_naam}}` + +- Geef SQL-query's weer voor uitvoering: + +`mssqlclient.py {{gebruikersnaam}}:{{wachtwoord}}@{{doel}} -show` diff --git a/pages.nl/common/rpcdump.py.md b/pages.nl/common/rpcdump.py.md new file mode 100644 index 0000000000..6303ca6101 --- /dev/null +++ b/pages.nl/common/rpcdump.py.md @@ -0,0 +1,25 @@ +# rpcdump.py + +> Informatie over RPC-eindpunten op afstand dumpen via de Endpoint Mapper. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Dump RPC eindpunten met gebruikersnaam en wachtwoord: + +`rpcdump.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Dump RPC eindpunten met NTLM hashes: + +`rpcdump.py -hashes {{LMHASH}}:{{NTHASH}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Geef expliciet een doel-IP-adres op (handig als de doelnaam een NetBIOS-naam is): + +`rpcdump.py -target-ip {{doel_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met een specifieke poort (standaard is 135 voor RPC Endpoint Mapper): + +`rpcdump.py -port {{poort_nummer}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Schakel debug-uitvoer in: + +`rpcdump.py -debug {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` diff --git a/pages.nl/common/rpcmap.py.md b/pages.nl/common/rpcmap.py.md new file mode 100644 index 0000000000..3217bcc03d --- /dev/null +++ b/pages.nl/common/rpcmap.py.md @@ -0,0 +1,37 @@ +# rpcmap.py + +> Zoek naar luisterende MSRPC interfaces met behulp van een string binding (bijv. `ncacn_ip_tcp:host[port]`). +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Maak verbinding met een MSRPC interface met behulp van een string binding (bijv. `ncacn_ip_tcp:host[port]`): + +`rpcmap.py {{stringbinding}}` + +- Bruteforce UUID's zelfs als de MGMT interface beschikbaar is: + +`rpcmap.py -brute-uuids {{stringbinding}}` + +- Bruteforce bewerkingsnummers (opnums) voor ontdekte UUID's: + +`rpcmap.py -brute-opnums {{stringbinding}}` + +- Bruteforce hoofdversies van gevonden UUID's: + +`rpcmap.py -brute-versions {{stringbinding}}` + +- Geef handmatig een doel-IP-adres op: + +`rpcmap.py -target-ip {{ip_adres}} {{stringbinding}}` + +- Authenticeer naar de RPC interface met gebruikersnaam en wachtwoord: + +`rpcmap.py -auth-rpc {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} {{stringbinding}}` + +- Authenticeren met NTLM hashes voor RPC: + +`rpcmap.py -hashes-rpc {{LMHASH:NTHASH}} {{stringbinding}}` + +- Schakel debug-uitvoer in voor uitgebreide informatie: + +`rpcmap.py -debug {{stringbinding}}` diff --git a/pages.nl/common/secretsdump.py.md b/pages.nl/common/secretsdump.py.md new file mode 100644 index 0000000000..e249729f34 --- /dev/null +++ b/pages.nl/common/secretsdump.py.md @@ -0,0 +1,25 @@ +# secretsdump.py + +> NTLM-hashes, wachtwoorden in platte tekst en domeingegevens van Windows-systemen op afstand downloaden. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Dump vertrouwelijke gegevens van een Windows machine met een gebruikersnaam en wachtwoord: + +`secretsdump.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Dump hashes van een machine met pass-the-hash authenticatie: + +`secretsdump.py -hashes {{LM_Hash}}:{{NT_Hash}} {{domein}}/{{gebruikersnaam}}@{{doel}}` + +- Dump referenties van Active Directory's NTDS.dit bestand: + +`secretsdump.py -just-dc {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Haal referenties uit een lokale SAM-database met behulp van registerhives: + +`secretsdump.py -sam {{pad/naar/SAM}} -system {{pad/naar/SYSTEM}}` + +- Dump hashes van een machine zonder een wachtwoord op te geven (als er een geldige authenticatiesessie bestaat, bijv. via Kerberos of NTLM SSO): + +`secretsdump.py -no-pass {{domein}}/{{gebruikersnaam}}@{{doel}}` diff --git a/pages.nl/common/smbclient.py.md b/pages.nl/common/smbclient.py.md new file mode 100644 index 0000000000..c457903abf --- /dev/null +++ b/pages.nl/common/smbclient.py.md @@ -0,0 +1,36 @@ +# smbclient.py + +> Een op Python gebaseerde SMB-client voor interactie met SMB-servers. +> Meer informatie: . + +- Maak verbinding met een SMB server met gebruikersnaam en wachtwoord: + +`smbclient.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met NTLM hashes voor authenticatie: + +`smbclient.py -hashes {{LM_HASH}}:{{NT_HASH}} {{domein}}/{{gebruikersnaam}}@{{doel}}` + +- Maak verbinding met Kerberos-authenticatie: + +`smbclient.py -k {{domein}}/{{gebruikersnaam}}@{{doel}}` + +- Maak verbinding door een domeincontroller-IP op te geven: + +`smbclient.py -dc-ip {{domein_controller_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met een specifiek doel-IP in plaats van NetBIOS-naam: + +`smbclient.py -target-ip {{doel_ip}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Maak verbinding met een niet-standaard SMB-poort: + +`smbclient.py -port {{port}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Voer opdrachten uit vanuit een invoerbestand in de SMB-shell: + +`smbclient.py -inputfile {{pad/naar/invoerbestand}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` + +- Log SMB-clientopdrachten naar een uitvoerbestand: + +`smbclient.py -outputfile {{pad/naar/uitvoerbestand}} {{domein}}/{{gebruikersnaam}}:{{wachtwoord}}@{{doel}}` diff --git a/pages.nl/common/smbserver.py.md b/pages.nl/common/smbserver.py.md new file mode 100644 index 0000000000..1ce5ec0b0a --- /dev/null +++ b/pages.nl/common/smbserver.py.md @@ -0,0 +1,36 @@ +# smbserver.py + +> Een op Python gebaseerde SMB-server voor het hosten van shares (root vereist voor poort 445). +> Meer informatie: . + +- Stel een basis SMB share in: + +`smbserver.py {{share_naam}} {{pad/naar/share}}` + +- Stel een share in met een aangepast commentaar: + +`smbserver.py -comment {{mijn_share}} {{share_naam}} {{pad/naar/share}}` + +- Stel een share in met gebruikersnaam en wachtwoord verificatie: + +`smbserver.py -username {{gebruikersnaam}} -password {{wachtwoord}} {{share_naam}} {{pad/naar/share}}` + +- Stel een share in met NTLM hash-authenticatie: + +`smbserver.py -hashes {{LMHASH}}:{{NTHASH}} {{share_naam}} {{pad/naar/share}}` + +- Stel een share in op een specifieke interface: + +`smbserver.py {{[-ip|--interface-address]}} {{interface_ip_adres}} {{share_naam}} {{pad/naar/share}}` + +- Stel een share in op een niet-standaard SMB-poort: + +`smbserver.py -port {{port}} {{share_naam}} {{pad/naar/share}}` + +- Stel een share in met SMB2 ondersteuning: + +`smbserver.py -smb2support {{share_naam}} {{pad/naar/share}}` + +- Stel een share in en log de commando's in een uitvoerbestand: + +`smbserver.py -outputfile {{pad/naar/uitvoerbestand}} {{share_naam}} {{pad/naar/share}}` diff --git a/pages.nl/common/sniff.py.md b/pages.nl/common/sniff.py.md new file mode 100644 index 0000000000..ea470afe8b --- /dev/null +++ b/pages.nl/common/sniff.py.md @@ -0,0 +1,13 @@ +# sniff.py + +> Leg netwerkpakketten vast en geef weer met de `pcapy` bibliotheek. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Maak een lijst van beschikbare netwerkinterfaces en selecteer er een om te beginnen met het vastleggen van pakketten (vereist `sudo`): + +`sudo sniff.py` + +- Leg pakketten vast en sla uitvoer op in een bestand terwijl het op de terminal wordt weergegeven: + +`sudo sniff.py | sudo tee {{pad/naar/uitvoerbestand}}` diff --git a/pages.nl/common/sniffer.py.md b/pages.nl/common/sniffer.py.md new file mode 100644 index 0000000000..065c4b77c9 --- /dev/null +++ b/pages.nl/common/sniffer.py.md @@ -0,0 +1,17 @@ +# sniffer.py + +> Vang netwerkpakketten voor gespecificeerde protocollen op en geef deze weer met behulp van raw sockets. +> Onderdeel van de Impacket-suite. +> Meer informatie: . + +- Leg pakketten vast voor standaard protocollen (ICMP, TCP, UDP): + +`sniffer.py` + +- Leg pakketten vast voor specifieke protocollen (bijv. ICMP, TCP): + +`sniffer.py {{protocol1 protocol2 ...}}` + +- Leg pakketten vast voor specifieke protocollen (bijv. TCP): + +`sniffer.py tcp` diff --git a/pages/common/getuserspns.py.md b/pages/common/getuserspns.py.md index fcff5efd34..713ae7486b 100644 --- a/pages/common/getuserspns.py.md +++ b/pages/common/getuserspns.py.md @@ -14,7 +14,7 @@ - Save the output to a file: -`GetUserSPNs.py {{domain}}/{{username}}:{{password}} -dc-ip {{domain_controller_ip}} -outputfile {{output_file}}` +`GetUserSPNs.py {{domain}}/{{username}}:{{password}} -dc-ip {{domain_controller_ip}} -outputfile {{path/to/output_file}}` - Request only TGS tickets: diff --git a/pages/common/sniff.py.md b/pages/common/sniff.py.md index 775ceb41e6..7e708317ac 100644 --- a/pages/common/sniff.py.md +++ b/pages/common/sniff.py.md @@ -1,6 +1,6 @@ # sniff.py -> Capture and display network packets using the pcapy library. +> Capture and display network packets using the `pcapy` library. > Part of the Impacket suite. > More information: . @@ -10,4 +10,4 @@ - Capture packets and save output to a file while displaying it on the terminal: -`sudo sniff.py | sudo tee {{output_file}}` +`sudo sniff.py | sudo tee {{path/to/output_file}}` diff --git a/pages/common/sniffer.py.md b/pages/common/sniffer.py.md index 428d3efde1..f5c3ba622d 100644 --- a/pages/common/sniffer.py.md +++ b/pages/common/sniffer.py.md @@ -10,7 +10,7 @@ - Capture packets for specific protocols (e.g., ICMP, TCP): -`sniffer.py {{protocol1}} {{protocol2}}` +`sniffer.py {{protocol1 protocol2 ...}}` - Capture packets for specific protocols (e.g., TCP): From 873b00c2b2194584e4f5aa62524a0c46cc4d55be Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Wed, 28 May 2025 20:38:36 +0000 Subject: [PATCH 013/141] pulumi-{update,down,destroy,up}: add Dutch translation (#16593) --- pages.nl/common/pulumi-destroy.md | 28 ++++++++++++++++++++++++++++ pages.nl/common/pulumi-down.md | 7 +++++++ pages.nl/common/pulumi-up.md | 24 ++++++++++++++++++++++++ pages.nl/common/pulumi-update.md | 7 +++++++ 4 files changed, 66 insertions(+) create mode 100644 pages.nl/common/pulumi-destroy.md create mode 100644 pages.nl/common/pulumi-down.md create mode 100644 pages.nl/common/pulumi-up.md create mode 100644 pages.nl/common/pulumi-update.md diff --git a/pages.nl/common/pulumi-destroy.md b/pages.nl/common/pulumi-destroy.md new file mode 100644 index 0000000000..443b0bdd66 --- /dev/null +++ b/pages.nl/common/pulumi-destroy.md @@ -0,0 +1,28 @@ +# pulumi destroy + +> Vernietig alle bestaande bronnen in een stack. +> Meer informatie: . + +- Vernietig alle bronnen in de huidige stack: + +`pulumi destroy` + +- Vernietig alle bronnen in een specifieke stack: + +`pulumi destroy {{[-s|--stack]}} {{stack}}` + +- Keur automatisch bronnen goed en vernietig deze na voorvertoning: + +`pulumi destroy {{[-y|--yes]}}` + +- Sluit beschermde bronnen uit van vernietigd worden: + +`pulumi destroy --exclude-protected` + +- Verwijder de stack en het bijbehorende configuratiebestand nadat alle bronnen in de stack zijn verwijderd: + +`pulumi destroy --remove` + +- Ga door met de bronnen vernietigen, zelfs als er een fout optreedt: + +`pulumi destroy --continue-on-error` diff --git a/pages.nl/common/pulumi-down.md b/pages.nl/common/pulumi-down.md new file mode 100644 index 0000000000..6d20b10d4b --- /dev/null +++ b/pages.nl/common/pulumi-down.md @@ -0,0 +1,7 @@ +# pulumi down + +> Dit commando is een alias van `pulumi destroy`. + +- Bekijk de documentatie van het originele commando: + +`tldr pulumi destroy` diff --git a/pages.nl/common/pulumi-up.md b/pages.nl/common/pulumi-up.md new file mode 100644 index 0000000000..3eb31b2d81 --- /dev/null +++ b/pages.nl/common/pulumi-up.md @@ -0,0 +1,24 @@ +# pulumi up + +> Creëer of update de bronnen in een stack. +> Meer informatie: . + +- Bekijk en implementeer wijzigingen in een programma en/of infrastructuur: + +`pulumi up` + +- Keur de update automatisch goed en voer deze uit na het bekijken van de voorvertoning: + +`pulumi up {{[-y|--yes]}}` + +- Bekijk en implementeer wijzigingen in een specifieke stack: + +`pulumi up {{[-s|--stack]}} {{stack}}` + +- Toon de stack-uitvoer niet: + +`pulumi up --suppress-outputs` + +- Ga door met het updaten van de bronnen, zelfs als er een fout optreedt: + +`pulumi up --continue-on-error` diff --git a/pages.nl/common/pulumi-update.md b/pages.nl/common/pulumi-update.md new file mode 100644 index 0000000000..c151fe6b0a --- /dev/null +++ b/pages.nl/common/pulumi-update.md @@ -0,0 +1,7 @@ +# pulumi update + +> Dit commando is een alias van `pulumi up`. + +- Bekijk de documentatie van het originele commando: + +`tldr pulumi up` From 496494f3fde347afb4d98aab3e0f67bfe463d05c Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Thu, 29 May 2025 00:24:33 +0300 Subject: [PATCH 014/141] systemctl: add edit example (#16637) --- pages/linux/systemctl.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/linux/systemctl.md b/pages/linux/systemctl.md index dae76f4c39..45231c9ebe 100644 --- a/pages/linux/systemctl.md +++ b/pages/linux/systemctl.md @@ -31,6 +31,6 @@ `systemctl list-units {{[-t|--type]}} {{service|socket|automount}} --state {{failed|running}}` -- Show the contents & absolute path of a unit file: +- Show the contents & absolute path of a unit file or edit it: -`systemctl cat {{unit}}` +`systemctl {{cat|edit}} {{unit}}` From 51c8030e044245714e48279d91ed3469405c41d9 Mon Sep 17 00:00:00 2001 From: "L. Daniel Casais" <71148501+rajayonin@users.noreply.github.com> Date: Thu, 29 May 2025 01:42:23 +0200 Subject: [PATCH 015/141] alr: add page and Spanish translation (#16632) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: José Antonio Verde Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages.es/common/alr.md | 21 +++++++++++++++++++++ pages/common/alr.md | 21 +++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 pages.es/common/alr.md create mode 100644 pages/common/alr.md diff --git a/pages.es/common/alr.md b/pages.es/common/alr.md new file mode 100644 index 0000000000..9ba2ba7788 --- /dev/null +++ b/pages.es/common/alr.md @@ -0,0 +1,21 @@ +# alr + +> Gestor de paquetes de Ada. +> Gestiona compiladores, dependencias, herramientas y bibliotecas de Ada. +> Más información: . + +- Crea un proyecto de un ejecutable (`--bin`) o de una biblioteca (`--lib`): + +`alr init {{--bin|--lib}} {{nombre_de_proyecto}}` + +- Añade una dependencia al proyecto: + +`alr add {{crate}}` + +- Ejecuta el ejecutable generado (no es necesario hacer `build` antes de `run`): + +`alr run` + +- Compila el proyecto: + +`alr build {{--release|--development|--validation}}` diff --git a/pages/common/alr.md b/pages/common/alr.md new file mode 100644 index 0000000000..c65d489010 --- /dev/null +++ b/pages/common/alr.md @@ -0,0 +1,21 @@ +# alr + +> Ada package manager. +> Manage Ada toolchains, dependencies, tools and libraries. +> More information: . + +- Create a binary or library project: + +`alr init {{--bin|--lib}} {{project_name}}` + +- Add a dependency to the project: + +`alr add {{crate}}` + +- Run the compiled binary (no need to do `build` before): + +`alr run` + +- Compile the project: + +`alr build {{--release|--development|--validation}}` From fe6d4b7c80d818cc1f8bdd7a66d366cec1aa1b8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=96=B0?= <157816708+Lingshinx@users.noreply.github.com> Date: Thu, 29 May 2025 09:03:03 +0800 Subject: [PATCH 016/141] {gcc, g++}: add Chinese translation (#16530) --- pages.zh/common/g++.md | 37 +++++++++++++++++++++++++++++++++++++ pages.zh/common/gcc.md | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 pages.zh/common/g++.md create mode 100644 pages.zh/common/gcc.md diff --git a/pages.zh/common/g++.md b/pages.zh/common/g++.md new file mode 100644 index 0000000000..cf5c37a478 --- /dev/null +++ b/pages.zh/common/g++.md @@ -0,0 +1,37 @@ +# g++ + +> 编译 C++ 源文件。 +> GCC (GNU Compiler Collection) 项目的组件之一。 +> 更多信息:. + +- 将一组源文件编译为二进制文件: + +`g++ {{源/文件/的路径1.cpp 源/文件/的路径2.cpp ...}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印所有错误和警告: + +`g++ {{源/文件/的路径.cpp}} -Wall {{[-o|--output]}} {{output_executable}}` + +- 打印普通警告和调试信息, 并在不影响调试的情况下优化: + +`g++ {{源/文件/的路径.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 指定 C++ 语言标准 (C++98/C++11/C++14/C++17): + +`g++ {{源/文件/的路径.cpp}} -std={{c++98|c++11|c++14|c++17}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 包含与源文件不在同一路径下的库: + +`g++ {{源/文件/的路径.c}} {{[-o|--output]}} {{可执行/文件/的路径}} -I{{头/文件/的目录}} -L{{库/的目录}} -l{{库的名字}}` + +- 将多个源文件编译并链接为可执行文件: + +`g++ {{[-c|--compile]}} {{源/文件/的路径1.cpp 源/文件/的路径2.cpp ...}} && g++ {{[-o|--output]}} {{可执行/文件/的路径}} {{目标/文件/的路径1.o 目录/文件/的路径2.o ...}}` + +- 优化编译后程序的性能: + +`g++ {{源/文件/的路径.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印版本信息: + +`g++ --version` diff --git a/pages.zh/common/gcc.md b/pages.zh/common/gcc.md new file mode 100644 index 0000000000..8d4be67e5f --- /dev/null +++ b/pages.zh/common/gcc.md @@ -0,0 +1,37 @@ +# gcc + +> 预处理和编译 C 和 C++ 源文件,然后汇编并将他们链接起来。 +> GCC (GNU Compiler Collection) 项目的组件之一。 +> 更多信息:. + +- 将一组源文件编译为二进制文件: + +`gcc {{源/文件/的路径1.cpp 源/文件/的路径2.cpp ...}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印所有错误和警告: + +`gcc {{源/文件/的路径.cpp}} -Wall {{[-o|--output]}} {{output_executable}}` + +- 打印普通警告和调试信息, 并在不影响调试的情况下优化: + +`gcc {{源/文件/的路径.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 包含与源文件不在同一路径下的库: + +`gcc {{源/文件/的路径.c}} {{[-o|--output]}} {{可执行/文件/的路径}} -I{{头/文件/的目录}} -L{{库/的目录}} -l{{库的名字}}` + +- 将源文件编译为汇编指令: + +`gcc {{[-S|--assemble]}} {{源/文件/的路径}}` + +- 将源文件编译成目标文件(.o)而不链接: + +`gcc {{[-c|--compile]}} {{源/文件/的路径1.c 源/文件/的路径2.c...}}` + +- 优化编译后程序的性能: + +`gcc {{源/文件/的路径.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印版本信息: + +`gcc --version` From 2d4c0f2a95a42e403a69c2d73357f6faf3331b01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=96=B0?= <157816708+Lingshinx@users.noreply.github.com> Date: Thu, 29 May 2025 09:04:33 +0800 Subject: [PATCH 017/141] {clang, clang++}: add Chinese translation (#16528) --- pages.zh/common/clang++.md | 37 +++++++++++++++++++++++++++++++++++++ pages.zh/common/clang.md | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 pages.zh/common/clang++.md create mode 100644 pages.zh/common/clang.md diff --git a/pages.zh/common/clang++.md b/pages.zh/common/clang++.md new file mode 100644 index 0000000000..9a8a4c9622 --- /dev/null +++ b/pages.zh/common/clang++.md @@ -0,0 +1,37 @@ +# clang++ + +> 编译 C++ 源文件。 +> LLVM 项目的组件之一。 +> 更多信息:. + +- 将一组源文件编译为二进制文件: + +`clang++ {{源/文件/的路径1.cpp 源/文件/的路径2.cpp ...}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印所有错误和警告: + +`clang++ {{源/文件/的路径.cpp}} -Wall {{[-o|--output]}} {{可执行文件}}` + +- 打印普通警告和调试信息, 并在不影响调试的情况下优化: + +`clang++ {{源/文件/的路径.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 指定 C++ 语言标准: + +`clang++ {{源/文件/的路径.cpp}} -std={{c++20}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 包含与源文件不在同一路径下的库: + +`clang++ {{源/文件/的路径.cpp}} {{[-o|--output]}} {{可执行/文件/的路径}} -I{{头/文件/的目录}} -L{{库/的目录}} -l{{库的名字}}` + +- 将源文件编译为 LLVM 中间表示(IR): + +`clang++ {{[-S|--assemble]}} -emit-llvm {{源/文件/的路径.cpp}} {{[-o|--output]}} {{IR/的/路径.ll}}` + +- 优化编译后程序的性能: + +`clang++ {{源/文件/的路径.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印版本信息: + +`clang++ --version` diff --git a/pages.zh/common/clang.md b/pages.zh/common/clang.md new file mode 100644 index 0000000000..444471dec0 --- /dev/null +++ b/pages.zh/common/clang.md @@ -0,0 +1,37 @@ +# clang + +> 编译 C,C++ 以及 Objective-C 源文件。可以无缝替代 GCC。 +> LLVM 项目的组件之一。 +> 更多信息:. + +- 将多个文件编译为可执行文件: + +`clang {{源/文件/的路径1.c 源/文件/的路径2.c ...}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印所有错误和警告: + +`clang {{源/文件/的路径.c}} -Wall {{[-o|--output]}} {{可执行文件}}` + +- 打印普通警告和调试信息, 并在不影响调试的情况下优化: + +`clang {{源/文件/的路径.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 包含与源文件不在同一路径下的库: + +`clang {{源/文件/的路径.c}} {{[-o|--output]}} {{可执行/文件/的路径}} -I{{头/文件/的目录}} -L{{库/的目录}} -l{{库的名字}}` + +- 将源文件编译为 LLVM 中间表示(IR): + +`clang {{[-S|--assemble]}} -emit-llvm {{源/文件/的路径.c}} {{[-o|--output]}} {{IR/的/路径.ll}}` + +- 将源文件编译成目标文件(.o)而不链接: + +`clang {{[-c|--compile]}} {{源/文件/的路径1.c 源/文件/的路径2.c...}}` + +- 优化编译后程序的性能: + +`clang {{源/文件/的路径.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{可执行/文件/的路径}}` + +- 打印版本信息: + +`clang --version` From d8a21b391e6d152728fcb232a6e9eab99bf192d7 Mon Sep 17 00:00:00 2001 From: ByteAnnyTA Date: Thu, 29 May 2025 03:12:07 +0200 Subject: [PATCH 018/141] yay: add cache cleaning command (#16532) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/linux/yay.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/linux/yay.md b/pages/linux/yay.md index f0e0f59a9c..907a02edb8 100644 --- a/pages/linux/yay.md +++ b/pages/linux/yay.md @@ -12,10 +12,6 @@ `yay` -- Synchronize and update only AUR packages: - -`yay -Sua` - - Install a new package from the repos and AUR and do not ask to confirm transactions: `yay -S {{package}} --noconfirm` @@ -32,6 +28,10 @@ `yay -Yc` +- Clean `pacman` and `yay` caches (old package versions kept for rollback and downgrade purposes): + +`yay -Scc` + - Show statistics for installed packages and system health: `yay -Ps` From 1b691ea2e296b41a400dc0bd58abf2f55c164fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E6=96=B0?= <157816708+Lingshinx@users.noreply.github.com> Date: Thu, 29 May 2025 11:47:58 +0800 Subject: [PATCH 019/141] diff: add Chinese translation (#16529) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages.zh/common/diff.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.zh/common/diff.md diff --git a/pages.zh/common/diff.md b/pages.zh/common/diff.md new file mode 100644 index 0000000000..3074add06f --- /dev/null +++ b/pages.zh/common/diff.md @@ -0,0 +1,36 @@ +# diff + +> 比较文件或目录。 +> 更多信息:. + +- 比较文件 (列出从`原文件`到`新文件`的修改): + +`diff {{原文件}} {{新文件}}` + +- 比较文件,忽视空白字符 + +`diff {{[-w|--ignore-all-space]}} {{原文件}} {{新文件}}` + +- 比较文件,并排展示文件差异: + +`diff {{[-y|--side-by-side]}} {{原文件}} {{新文件}}` + +- 比较文件,以统一形式展示不同区别 ( 形式同 `git diff`): + +`diff {{[-u|--unified]}} {{源文件}} {{新文件}}` + +- 递归地比较目录 (展示不同文件和目录的名字和差异): + +`diff {{[-r|--recursive]}} {{old_directory}} {{new_directory}}` + +- 比较目录(只展示不同文件的文件名): + +`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{old_directory}} {{new_directory}}` + +- 根据两个文本文件的差异,为 Git 创建补丁文件,不存在的文件会被视为空文件: + +`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{原文件}} {{新文件}} > {{diff.patch}}` + +- 比较文件,打印彩色的输出,并尽可能找出最小的改变: + +`diff {{[-d|--minimal]}} --color=always {{原文件}} {{新文件}}` From 4889abce4c05e640e618708fde274d720fde02bc Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Thu, 29 May 2025 04:02:23 +0000 Subject: [PATCH 020/141] wcurl: add page (#16638) --- pages/common/wcurl.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages/common/wcurl.md diff --git a/pages/common/wcurl.md b/pages/common/wcurl.md new file mode 100644 index 0000000000..80be344ad0 --- /dev/null +++ b/pages/common/wcurl.md @@ -0,0 +1,21 @@ +# wcurl + +> A simple wrapper around `curl` to easily download files. +> See also: `curl`. +> More information: . + +- Download the contents of a URL to a file indicated by the URL ("foo" in this case): + +`wcurl {{https://example.com/foo}}` + +- Download the contents of a URL to a file with a specified name: + +`wcurl {{[-o|--output]}} {{bar}} {{https://example.com/foo}}` + +- Download the contents of a URL, enabling progress bar and defaulting to HTTP/2: + +`wcurl --curl-options "--progress-bar --http2" {{https://example.com/foo}}` + +- Resume from an interrupted download: + +`wcurl --curl-options "--continue-at -" {{https://example.com/foo}}` From 115daf1d4f3bb5187e790446d1c5b581a6d17bf2 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 06:55:51 +0200 Subject: [PATCH 021/141] mkfs.fat: add Dutch translation (#16619) --- pages.nl/linux/mkfs.fat.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages.nl/linux/mkfs.fat.md diff --git a/pages.nl/linux/mkfs.fat.md b/pages.nl/linux/mkfs.fat.md new file mode 100644 index 0000000000..9cdec585f6 --- /dev/null +++ b/pages.nl/linux/mkfs.fat.md @@ -0,0 +1,24 @@ +# mkfs.fat + +> Maak een MS-DOS bestandssysteem in een partitie. +> Meer informatie: . + +- Maak een fat bestandssysteem binnen partitie `Y` op apparaat `X`: + +`mkfs.fat {{/dev/sdXY}}` + +- Maak een bestandssysteem met een volumenaam: + +`mkfs.fat -n {{volume_naam}} {{/dev/sdXY}}` + +- Maak een bestandssysteem met een volume-id: + +`mkfs.fat -i {{volume_id}} {{/dev/sdXY}}` + +- Gebruik 5 in plaats van 2 bestandstoewijzingstabellen: + +`mkfs.fat -f 5 {{/dev/sdXY}}` + +- Geef bestandssysteemtype op: + +`mkfs.fat -F {{12|16|32}} {{/dev/sdXY}}` From c3ab4f3cf78aaae48fcc9690900bcfb6700a1a33 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Thu, 29 May 2025 09:19:46 +0300 Subject: [PATCH 022/141] mac-cleanup: fix issues (#16644) --- pages/osx/mac-cleanup.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/osx/mac-cleanup.md b/pages/osx/mac-cleanup.md index 0303478cf0..9e4fa5204f 100644 --- a/pages/osx/mac-cleanup.md +++ b/pages/osx/mac-cleanup.md @@ -11,14 +11,14 @@ `mac-cleanup {{[-c|--configure]}}` -- Perform a dry-ru[n], showing what will be removed without actually deleting it: +- Perform a dry-run, showing what will be removed without actually deleting it: `mac-cleanup {{[-n|--dry-run]}}` -- Specify the directory with custom cleanup [p]ath: +- Specify the directory with custom cleanup path: `mac-cleanup {{[-p|--custom-path]}} {{path/to/directory}}` -- Automatically acknowledge all warnings and continue with [f]orce: +- Automatically acknowledge all warnings and continue with force: -`mac-cleanup -f` +`mac-cleanup {{[-f|--force]}}` From 27b7cf7fb92a018e71f998a98ab7af01dd007a3d Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 08:37:30 +0200 Subject: [PATCH 023/141] ping*.py: add Dutch translation (#16614) --- pages.nl/common/ping.py.md | 13 +++++++++++++ pages.nl/common/ping6.py.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 pages.nl/common/ping.py.md create mode 100644 pages.nl/common/ping6.py.md diff --git a/pages.nl/common/ping.py.md b/pages.nl/common/ping.py.md new file mode 100644 index 0000000000..2eda5b0c2f --- /dev/null +++ b/pages.nl/common/ping.py.md @@ -0,0 +1,13 @@ +# ping.py + +> Eenvoudige ICMP ping die Impacket gebruikt om te controleren of een IPv4-host bereikbaar is. +> Stuurt ICMP echo requests en luistert naar echo replies. Vereist root privileges voor raw socket toegang (bijvoorbeeld draaien met `sudo`). +> Meer informatie: . + +- Ping een host vanaf een opgegeven IPv4 bron-adres: + +`ping.py {{bron_ipv4}} {{bestemmings_ipv4}}` + +- Ping 192.168.1.100 vanaf 192.168.1.10: + +`ping.py 192.168.1.10 192.168.1.100` diff --git a/pages.nl/common/ping6.py.md b/pages.nl/common/ping6.py.md new file mode 100644 index 0000000000..eab18cc61f --- /dev/null +++ b/pages.nl/common/ping6.py.md @@ -0,0 +1,13 @@ +# ping6.py + +> Eenvoudige ICMPv6 ping die Impacket gebruikt om te controleren of een IPv6-host bereikbaar is. +> Stuurt ICMPv6 echo requests en luistert naar echo replies. Vereist root privileges voor raw socket toegang (bijvoorbeeld draaien met `sudo`). +> Meer informatie: . + +- Ping een IPv6 host vanaf een opgegeven IPv6 bron-adres: + +`ping6.py {{bron_ipv6}} {{bestemmings_ipv6}}` + +- Ping 2001:db8::2 vanaf 2001:db8::1: + +`ping6.py 2001:db8::1 2001:db8::2` From 9e5bc16b3aa585528f5dc0bb8225982b889248fc Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 08:37:44 +0200 Subject: [PATCH 024/141] flex: add Dutch translation (#16615) --- pages.nl/linux/flex.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages.nl/linux/flex.md diff --git a/pages.nl/linux/flex.md b/pages.nl/linux/flex.md new file mode 100644 index 0000000000..ddf8d3ed5b --- /dev/null +++ b/pages.nl/linux/flex.md @@ -0,0 +1,25 @@ +# flex + +> Lexicale analysator generator. +> Gegeven de specificatie voor een lexicale analysator, genereert C-code die het implementeert. +> Meer informatie: . + +- Genereer een analyzer uit een Lex-bestand en sla het op in het bestand `lex.yy.c`: + +`flex {{analyzer.l}}` + +- Analysator naar `stdout` schrijven: + +`flex {{[-t|--stdout]}} {{analyzer.l}}` + +- Geef het uitvoerbestand op: + +`flex {{analyzer.l}} {{[-o|--outfile]}} {{analyzer.c}}` + +- Genereer een batch scanner in plaats van een interactieve scanner: + +`flex {{[-B|--batch]}} {{analyzer.l}}` + +- Compileer een C-bestand gegenereerd door Lex: + +`cc {{pad/naar/lex.yy.c}} -o {{executable}}` From c0a064db6637474306eb06061fdc654e30aca0c2 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 08:37:56 +0200 Subject: [PATCH 025/141] lrzip,lrztar: add Dutch translation (#16617) --- pages.nl/linux/lrzip.md | 29 +++++++++++++++++++++++++++++ pages.nl/linux/lrztar.md | 25 +++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 pages.nl/linux/lrzip.md create mode 100644 pages.nl/linux/lrztar.md diff --git a/pages.nl/linux/lrzip.md b/pages.nl/linux/lrzip.md new file mode 100644 index 0000000000..b65eef6d02 --- /dev/null +++ b/pages.nl/linux/lrzip.md @@ -0,0 +1,29 @@ +# lrzip + +> Een programma voor het comprimeren van grote bestanden. +> Bekijk ook: `lrunzip`, `lrztar`, `lrzuntar`. +> Meer informatie: . + +- Comprimeer een bestand met LZMA - langzame compressie, snelle decompressie: + +`lrzip {{pad/naar/bestand}}` + +- Comprimeer een bestand met BZIP2 - goede middenweg voor compressie/snelheid: + +`lrzip -b {{pad/naar/bestand}}` + +- Comprimeer met ZPAQ - extreme compressie, maar erg langzaam: + +`lrzip -z {{pad/naar/bestand}}` + +- Comprimeer met LZO - lichte compressie, extreem snelle decompressie: + +`lrzip -l {{pad/naar/bestand}}` + +- Een bestand comprimeren en met een wachtwoord beveiligen/versleutelen: + +`lrzip -e {{pad/naar/bestand}}` + +- Overschrijf het aantal processor threads om te gebruiken: + +`lrzip -p {{8}} {{pad/naar/bestand}}` diff --git a/pages.nl/linux/lrztar.md b/pages.nl/linux/lrztar.md new file mode 100644 index 0000000000..8d6429f7bd --- /dev/null +++ b/pages.nl/linux/lrztar.md @@ -0,0 +1,25 @@ +# lrztar + +> Een wrapper voor `lrzip` om het comprimeren van mappen te vereenvoudigen. +> Zie ook: `tar`, `lrzuntar`, `lrunzip`. +> Meer informatie: . + +- Archiveer een map met tar en comprimeer dan: + +`lrztar {{pad/naar/map}}` + +- Hetzelfde als hierboven, met ZPAQ - extreme compressie, maar erg langzaam: + +`lrztar -z {{pad/naar/map}}` + +- Geef het uitvoerbestand op: + +`lrztar -o {{pad/naar/bestand}} {{pad/naar/map}}` + +- Overschrijf het aantal processor threads dat gebruikt moet worden: + +`lrztar -p {{8}} {{pad/naar/map}}` + +- Forceer het overschrijven van bestaande bestanden: + +`lrztar -f {{pad/naar/map}}` From caecdd5528ff954ad19fca5beed11259695677e7 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 08:38:08 +0200 Subject: [PATCH 026/141] hexdump: add Dutch translation (#16618) --- pages.nl/linux/hexdump.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.nl/linux/hexdump.md diff --git a/pages.nl/linux/hexdump.md b/pages.nl/linux/hexdump.md new file mode 100644 index 0000000000..b6f54485d1 --- /dev/null +++ b/pages.nl/linux/hexdump.md @@ -0,0 +1,20 @@ +# hexdump + +> Een ASCII, decimale, hexadecimale, octale dump. +> Meer informatie: . + +- Druk de hexadecimale weergave van een bestand af, waarbij dubbele regels worden vervangen door '*': + +`hexdump {{pad/naar/bestand}}` + +- Toon de invoer offset in hexadecimaal en zijn ASCII representatie in twee kolommen: + +`hexdump {{[-C|--canonical]}} {{pad/naar/bestand}}` + +- Geef de hexadecimale weergave van een bestand weer, maar interpreteer alleen n bytes van de invoer: + +`hexdump {{[-C|--canonical]}} {{[-n|--lengte]}} {{aantal_bytes}} {{pad/naar/bestand}}` + +- Vervang dubbele regels niet door '*': + +`hexdump {{[-v|--no-squeezing]}} {{path/to/file}}` From 4e8c7913a90a02af71a76c1806ad4447e26ebcfc Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 11:35:19 +0200 Subject: [PATCH 027/141] open: update outdated translations (#16660) --- pages.id/common/open.md | 2 +- pages.ko/common/open.md | 2 +- pages.nl/common/open.md | 2 +- pages.pl/common/open.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.id/common/open.md b/pages.id/common/open.md index 0ff9189f1a..38b3001eb4 100644 --- a/pages.id/common/open.md +++ b/pages.id/common/open.md @@ -4,7 +4,7 @@ - Lihat dokumentasi perintah `open` yang disediakan dalam macOS: -`tldr open -p osx` +`tldr open {{[-p|--platform]}} osx` - Lihat dokumentasi perintah `open` yang disediakan dalam fish: diff --git a/pages.ko/common/open.md b/pages.ko/common/open.md index d88ea5b7ab..0e56f017e0 100644 --- a/pages.ko/common/open.md +++ b/pages.ko/common/open.md @@ -4,7 +4,7 @@ - macOS에서 사용 가능한 명령에 대한 문서 보기: -`tldr open -p osx` +`tldr open {{[-p|--platform]}} osx` - fish를 통해 사용 가능한 명령에 대한 문서 보기: diff --git a/pages.nl/common/open.md b/pages.nl/common/open.md index 58c477e03e..85af5dc99c 100644 --- a/pages.nl/common/open.md +++ b/pages.nl/common/open.md @@ -4,7 +4,7 @@ - Bekijk de documentatie voor het commando dat beschikbaar is in macOS: -`tldr open -p osx` +`tldr open {{[-p|--platform]}} osx` - Bekijk de documentatie voor het commando dat beschikbaar is via fish: diff --git a/pages.pl/common/open.md b/pages.pl/common/open.md index 338989cfc3..4a232685e4 100644 --- a/pages.pl/common/open.md +++ b/pages.pl/common/open.md @@ -4,7 +4,7 @@ - Zobacz dokumentację komendy dostępnej w macOS: -`tldr open -p osx` +`tldr open {{[-p|--platform]}} osx` - Zobacz dokumentację komendy dostępnej w fish: From d4bc63de72841990309fcd504a751fe79f6b1b7a Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 11:36:00 +0200 Subject: [PATCH 028/141] od: update outdated translations (#16659) --- pages.ko/common/od.md | 10 +++++----- pages.nl/common/od.md | 10 +++++----- pages/common/od.md | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/pages.ko/common/od.md b/pages.ko/common/od.md index 9caed8b492..beb2717fb5 100644 --- a/pages.ko/common/od.md +++ b/pages.ko/common/od.md @@ -10,20 +10,20 @@ - 자세한 모드로 파일 표시, 즉 중복 줄을 `*`로 대체하지 않음: -`od -v {{경로/대상/파일}}` +`od {{[-v|--output-duplicates]}} {{경로/대상/파일}}` - 16진수 형식(2바이트 단위)으로 파일 표시, 10진수 형식의 바이트 오프셋: -`od --format={{x}} --address-radix={{d}} -v {{경로/대상/파일}}` +`od {{[-t|--format]}} {{x}} {{[-A|--address-radix]}} {{d}} {{[-v|--output-duplicates]}} {{경로/대상/파일}}` - 16진수 형식(1바이트 단위)으로 파일 표시, 4바이트 단위로 줄바꿈: -`od --format={{x1}} --width={{4}} -v {{경로/대상/파일}}` +`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{경로/대상/파일}}` - 16진수 형식과 문자 표현으로 파일 표시, 바이트 오프셋은 출력하지 않음: -`od --format={{xz}} --address-radix={{n}} -v {{경로/대상/파일}}` +`od {{[-t|--format]}} {{xz}} {{[-A|--address-radix]}} {{n}} {{[-v|--output-duplicates]}} {{경로/대상/파일}}` - 500번째 바이트부터 시작하여 파일의 100바이트만 읽기: -`od --read-bytes 100 --skip-bytes=500 -v {{경로/대상/파일}}` +`od {{[-N|--read-bytes]}} 100 {{[-j|--skip-bytes]}} 500 {{[-v|--output-duplicates]}} {{경로/대상/파일}}` diff --git a/pages.nl/common/od.md b/pages.nl/common/od.md index ec882777b3..9c42d6d283 100644 --- a/pages.nl/common/od.md +++ b/pages.nl/common/od.md @@ -10,20 +10,20 @@ - Toon bestand in uitgebreide modus, d.w.z. zonder dubbele regels te vervangen door `*`: -`od -v {{pad/naar/bestand}}` +`od {{[-v|--output-duplicates]}} {{pad/naar/bestand}}` - Toon bestand in hexadecimale notatie (2-byte eenheden), met byte-offsets in decimale notatie: -`od --format={{x}} --address-radix={{d}} -v {{pad/naar/bestand}}` +`od {{[-t|--format]}} {{x}} {{[-A|--address-radix]}} {{d}} {{[-v|--output-duplicates]}} {{pad/naar/bestand}}` - Toon bestand in hexadecimale notatie (1-byte eenheden) en 4 bytes per regel: -`od --format={{x1}} --width={{4}} -v {{pad/naar/bestand}}` +`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{pad/naar/bestand}}` - Toon bestand in hexadecimale notatie samen met de tekenweergave, en toon geen byte-offsets: -`od --format={{xz}} --address-radix={{n}} -v {{pad/naar/bestand}}` +`od {{[-t|--format]}} {{xz}} {{[-A|--address-radix]}} {{n}} {{[-v|--output-duplicates]}} {{pad/naar/bestand}}` - Lees slechts 100 bytes van een bestand vanaf de 500ste byte: -`od --read-bytes 100 --skip-bytes=500 -v {{pad/naar/bestand}}` +`od {{[-N|--read-bytes]}} 100 {{[-j|--skip-bytes]}} 500 {{[-v|--output-duplicates]}} {{pad/naar/bestand}}` diff --git a/pages/common/od.md b/pages/common/od.md index 5d47faf334..896f95f6ab 100644 --- a/pages/common/od.md +++ b/pages/common/od.md @@ -18,7 +18,7 @@ - Display file in hexadecimal format (1-byte units), and 4 bytes per line: -`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}{{4}} {{[-v|--output-duplicates]}} {{path/to/file}}` +`od {{[-t|--format]}} {{x1}} {{[-w|--width=]}}4 {{[-v|--output-duplicates]}} {{path/to/file}}` - Display file in hexadecimal format along with its character representation, and do not print byte offsets: From 53c8c7169a9a42a5b4577a6b919ca075fcd9575f Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Thu, 29 May 2025 02:38:16 -0700 Subject: [PATCH 029/141] git-*: update Korean translations (#16654) Co-authored-by: Sebastiaan Speck --- pages.ko/common/git-extras.md | 6 +++--- pages.ko/common/git-fame.md | 6 +++--- pages.ko/common/git-feature.md | 4 ++-- pages.ko/common/git-guilt.md | 8 ++++---- pages.ko/common/git-info.md | 2 +- pages.ko/common/git-magic.md | 2 +- pages.ko/common/git-psykorebase.md | 2 +- pages.ko/common/git-release.md | 2 +- pages.ko/common/git-sed.md | 2 +- pages.ko/common/git-squash.md | 2 +- pages.ko/common/git-stamp.md | 4 ++-- pages.ko/common/git-standup.md | 2 +- pages.ko/common/git-summary.md | 2 +- pages.ko/common/git-sync.md | 4 ++-- pages/common/git-fame.md | 2 +- pages/common/git-feature.md | 2 +- 16 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pages.ko/common/git-extras.md b/pages.ko/common/git-extras.md index 67c3766aa9..205daacd49 100644 --- a/pages.ko/common/git-extras.md +++ b/pages.ko/common/git-extras.md @@ -1,7 +1,7 @@ # git extras > Git 확장 도구 모음. -> 더 많은 정보: . +> 더 많은 정보: . - `git-extras` 명령어 설치 또는 업그레이드: @@ -9,8 +9,8 @@ - 도움말 표시: -`git extras --help` +`git extras {{[-h|--help]}}` - 버전 표시: -`git extras --version` +`git extras {{[-v|--version]}}` diff --git a/pages.ko/common/git-fame.md b/pages.ko/common/git-fame.md index 5f2946c02c..d61f07c047 100644 --- a/pages.ko/common/git-fame.md +++ b/pages.ko/common/git-fame.md @@ -1,7 +1,7 @@ # git fame > Git 저장소 기여도를 예쁘게 출력. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 Git 저장소의 기여도 계산: @@ -21,11 +21,11 @@ - 파일 확장자별 기여도 표시: -`git fame --bytype` +`git fame {{[-t|--bytype]}}` - 공백 변화 무시: -`git fame --ignore-whitespace` +`git fame {{[-w|--ignore-whitespace]}}` - 파일 간의 줄 이동 및 복사 감지: diff --git a/pages.ko/common/git-feature.md b/pages.ko/common/git-feature.md index daca4e9947..2443a239fe 100644 --- a/pages.ko/common/git-feature.md +++ b/pages.ko/common/git-feature.md @@ -2,7 +2,7 @@ > 기능 브랜치를 생성하거나 병합. > 기능 브랜치는 feature/<이름> 형식을 따릅니다. -> 더 많은 정보: . +> 더 많은 정보: . - 새 기능 브랜치를 생성하고 전환: @@ -18,4 +18,4 @@ - 특정 기능 브랜치의 변경 사항을 원격 대응 브랜치로 전송: -`git feature {{기능_브랜치}} --remote {{원격_이름}}` +`git feature {{기능_브랜치}} {{[-r|--remote]}} {{원격_이름}}` diff --git a/pages.ko/common/git-guilt.md b/pages.ko/common/git-guilt.md index 46afc08d93..779006d2b0 100644 --- a/pages.ko/common/git-guilt.md +++ b/pages.ko/common/git-guilt.md @@ -2,7 +2,7 @@ > 스테이지되지 않은 변경 사항이 있는 파일에 대한 전체 블레임 수를 표시하거나 두 개의 리비전 간 블레임 변경을 계산. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 전체 블레임 수 표시: @@ -14,15 +14,15 @@ - 작성자 이메일을 이름 대신 표시: -`git guilt --email` +`git guilt {{[-e|--email]}}` - 블레임을 할당할 때 공백만 변경된 부분 무시: -`git guilt --ignore-whitespace` +`git guilt {{[-e|--email]}}` - 지난 3주 동안의 블레임 델타 찾기: -`git guilt 'git log --until="3 weeks ago" --format="%H" -n 1'` +`git guilt 'git log --until "3 weeks ago" --format "%H" {{[-n|--max-count]}} 1'` - 지난 3주 동안의 블레임 델타 찾기 (git 1.8.5+): diff --git a/pages.ko/common/git-info.md b/pages.ko/common/git-info.md index 7772292f11..afce530afa 100644 --- a/pages.ko/common/git-info.md +++ b/pages.ko/common/git-info.md @@ -2,7 +2,7 @@ > Git 저장소 정보 표시. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 원격 위치, 원격 및 로컬 브랜치, 최근 커밋 데이터 및 `.git/config` 설정 표시: diff --git a/pages.ko/common/git-magic.md b/pages.ko/common/git-magic.md index a19eeb504c..a91815aeed 100644 --- a/pages.ko/common/git-magic.md +++ b/pages.ko/common/git-magic.md @@ -2,7 +2,7 @@ > 추가, 커밋 및 푸시 루틴 자동화. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 생성된 메시지로 변경 사항 커밋: diff --git a/pages.ko/common/git-psykorebase.md b/pages.ko/common/git-psykorebase.md index 0ff66218e9..543fe4a8c5 100644 --- a/pages.ko/common/git-psykorebase.md +++ b/pages.ko/common/git-psykorebase.md @@ -2,7 +2,7 @@ > 병합 커밋과 단 한 번의 충돌 처리를 사용하여 브랜치를 다른 브랜치 위에 리베이스합니다. > `git-extras`의 일부입니다. -> 더 많은 정보: . +> 더 많은 정보: . - 병합 커밋과 단 한 번의 충돌 처리를 사용하여 현재 브랜치를 다른 브랜치 위에 리베이스: diff --git a/pages.ko/common/git-release.md b/pages.ko/common/git-release.md index b781b258c5..c44d466027 100644 --- a/pages.ko/common/git-release.md +++ b/pages.ko/common/git-release.md @@ -2,7 +2,7 @@ > 릴리스를 위한 Git 태그 생성. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 릴리스 생성 및 푸시: diff --git a/pages.ko/common/git-sed.md b/pages.ko/common/git-sed.md index a7da812ac2..981456c31a 100644 --- a/pages.ko/common/git-sed.md +++ b/pages.ko/common/git-sed.md @@ -2,7 +2,7 @@ > git으로 관리되는 파일에서 sed를 사용하여 패턴을 대체. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 저장소에서 지정된 텍스트 대체: diff --git a/pages.ko/common/git-squash.md b/pages.ko/common/git-squash.md index 8bdbda44c6..04e1923b77 100644 --- a/pages.ko/common/git-squash.md +++ b/pages.ko/common/git-squash.md @@ -2,7 +2,7 @@ > 여러 커밋을 하나의 커밋으로 합치기. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 특정 브랜치의 모든 커밋을 현재 브랜치에 하나의 커밋으로 합치기: diff --git a/pages.ko/common/git-stamp.md b/pages.ko/common/git-stamp.md index a61e080f78..b10f38d9cd 100644 --- a/pages.ko/common/git-stamp.md +++ b/pages.ko/common/git-stamp.md @@ -2,7 +2,7 @@ > 마지막 커밋 메시지에 버그 추적기의 이슈 번호를 참조하거나 리뷰 페이지 링크를 추가합니다. > `git-extras`의 일부입니다. -> 더 많은 정보: . +> 더 많은 정보: . - 버그 추적기의 이슈 번호를 참조하여 마지막 커밋 메시지에 스탬프 추가: @@ -14,4 +14,4 @@ - 이전 이슈를 새 이슈로 교체하여 마지막 커밋 메시지에 스탬프 추가: -`git stamp --replace {{이슈_번호}}` +`git stamp {{[-r|--replace]}} {{이슈_번호}}` diff --git a/pages.ko/common/git-standup.md b/pages.ko/common/git-standup.md index 067cb65ea2..25c0b0a795 100644 --- a/pages.ko/common/git-standup.md +++ b/pages.ko/common/git-standup.md @@ -2,7 +2,7 @@ > 지정된 사용자의 커밋을 확인. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 지정된 작성자의 최근 10일간의 커밋 보기: diff --git a/pages.ko/common/git-summary.md b/pages.ko/common/git-summary.md index 3a699ee0ab..c13242e0a8 100644 --- a/pages.ko/common/git-summary.md +++ b/pages.ko/common/git-summary.md @@ -2,7 +2,7 @@ > Git 저장소에 대한 정보를 표시. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - Git 저장소에 대한 정보 표시: diff --git a/pages.ko/common/git-sync.md b/pages.ko/common/git-sync.md index 969fa0118f..01501a6589 100644 --- a/pages.ko/common/git-sync.md +++ b/pages.ko/common/git-sync.md @@ -2,7 +2,7 @@ > 로컬 브랜치를 원격 브랜치와 동기화. > `git-extras`의 일부. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 로컬 브랜치를 해당 원격 브랜치와 동기화: @@ -14,4 +14,4 @@ - 추적되지 않은 파일을 삭제하지 않고 동기화: -`git sync -s {{원격_이름}} {{브랜치_이름}}` +`git sync {{[-s|--soft]}} {{원격_이름}} {{브랜치_이름}}` diff --git a/pages/common/git-fame.md b/pages/common/git-fame.md index 038b9dd41d..dbe8b22c65 100644 --- a/pages/common/git-fame.md +++ b/pages/common/git-fame.md @@ -1,7 +1,7 @@ # git fame > Pretty-print Git repository contributions. -> More information: . +> More information: . - Calculate contributions for the current Git repository: diff --git a/pages/common/git-feature.md b/pages/common/git-feature.md index 8f78f3de02..c10b60598a 100644 --- a/pages/common/git-feature.md +++ b/pages/common/git-feature.md @@ -2,7 +2,7 @@ > Create or merge feature branches. > Feature branches obey the format feature/name. -> More information: . +> More information: . - Create and switch to a new feature branch: From 7eb4d63a97bb82dcadd9908359aa6cacc28ff1d9 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:35:15 +0200 Subject: [PATCH 030/141] nm: update Dutch translation (#16653) --- pages.nl/common/nm.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.nl/common/nm.md b/pages.nl/common/nm.md index d3b10e33f0..e0cbfa01b1 100644 --- a/pages.nl/common/nm.md +++ b/pages.nl/common/nm.md @@ -5,16 +5,16 @@ - Toon globale (externe) functies in een bestand (voorafgegaan door T): -`nm -g {{pad/naar/bestand.o}}` +`nm {{[-g|--extern-only]}} {{pad/naar/bestand.o}}` - Toon alleen ongedefinieerde symbolen in een bestand: -`nm -u {{pad/naar/bestand.o}}` +`nm {{[-u|--undefined-only]}} {{pad/naar/bestand.o}}` - Toon alle symbolen, ook debugging symbolen: -`nm -a {{pad/naar/bestand.o}}` +`nm {{[-a|--debug-syms]}} {{pad/naar/bestand.o}}` - Transformeer C++ symbolen (maak ze leesbaar): -`nm --demangle {{pad/naar/bestand.o}}` +`nm {{[-C|--demangle]}} {{pad/naar/bestand.o}}` From edba2fd88060972dbcdadac658a260a3afa538d8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:35:32 +0200 Subject: [PATCH 031/141] mkfifo: update Dutch translation (#16651) --- pages.nl/common/mkfifo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.nl/common/mkfifo.md b/pages.nl/common/mkfifo.md index d183da93e9..146a9966e2 100644 --- a/pages.nl/common/mkfifo.md +++ b/pages.nl/common/mkfifo.md @@ -17,4 +17,4 @@ - Deel je terminal sessie in real-time: -`mkfifo {{pad/naar/pipe}}; script -f {{pad/naar/pipe}}` +`mkfifo {{pad/naar/pipe}}; script {{[-f|--flush]}} {{pad/naar/pipe}}` From 3469c4e61709f5b89abbae52fb0ee3ecb6a26e0f Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:35:51 +0200 Subject: [PATCH 032/141] md5sum: update Dutch translation (#16650) --- pages.nl/common/md5sum.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.nl/common/md5sum.md b/pages.nl/common/md5sum.md index 542d602a28..949740d414 100644 --- a/pages.nl/common/md5sum.md +++ b/pages.nl/common/md5sum.md @@ -17,16 +17,16 @@ - Lees een bestand met MD5 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`md5sum --check {{pad/naar/bestand.md5}}` +`md5sum {{[-c|--check]}} {{pad/naar/bestand.md5}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`md5sum --check --quiet {{pad/naar/bestand.md5}}` +`md5sum {{[-c|--check]}} --quiet {{pad/naar/bestand.md5}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`md5sum --ignore-missing --check --quiet {{pad/naar/bestand.md5}}` +`md5sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.md5}}` - Controleer een bekende MD5 checksum van een bestand: -`echo {{bekende_md5_checksum_van_het_bestand}} {{pad/naar/bestand}} | md5sum --check` +`echo {{bekende_md5_checksum_van_het_bestand}} {{pad/naar/bestand}} | md5sum {{[-c|--check]}}` From 9902a37ba1d728a903ddc670641db807961579e0 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:36:20 +0200 Subject: [PATCH 033/141] make: update Dutch translation and fix placeholder (#16649) --- pages.nl/common/make.md | 10 +++++----- pages/common/make.md | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages.nl/common/make.md b/pages.nl/common/make.md index ea313dc2f6..ffbb7bbcc1 100644 --- a/pages.nl/common/make.md +++ b/pages.nl/common/make.md @@ -14,19 +14,19 @@ - Roep een specifiek doel aan en voer 4 taken tegelijk uit in parallel: -`make -j{{4}} {{doel}}` +`make {{[-j|--jobs]}} 4 {{doel}}` - Gebruik een specifieke Makefile: -`make --file {{pad/naar/bestand}}` +`make {{[-f|--file]}} {{pad/naar/bestand}}` - Voer make uit vanuit een andere map: -`make --directory {{pad/naar/map}}` +`make {{[-C|--directory]}} {{pad/naar/map}}` - Forceer het maken van een doel, zelfs als bronbestanden ongewijzigd zijn: -`make --always-make {{doel}}` +`make {{[-B|--always-make]}} {{doel}}` - Overschrijf een variabele die in de Makefile is gedefinieerd: @@ -34,4 +34,4 @@ - Overschrijf variabelen die in de Makefile zijn gedefinieerd door de omgeving: -`make --environment-overrides {{doel}}` +`make {{[-e|--environment-overrides]}} {{doel}}` diff --git a/pages/common/make.md b/pages/common/make.md index 623ad178a9..810ff25883 100644 --- a/pages/common/make.md +++ b/pages/common/make.md @@ -14,7 +14,7 @@ - Call a specific target, executing 4 jobs at a time in parallel: -`make {{[-j|--jobs]}} {{4}} {{target}}` +`make {{[-j|--jobs]}} 4 {{target}}` - Use a specific Makefile: From 5962186601d6e3ec04fbc3f648a282fc5c6d4353 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:36:40 +0200 Subject: [PATCH 034/141] grep: update Dutch translation (#16648) --- pages.nl/common/grep.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.nl/common/grep.md b/pages.nl/common/grep.md index 90d390cf3f..2b3f2afba9 100644 --- a/pages.nl/common/grep.md +++ b/pages.nl/common/grep.md @@ -13,7 +13,7 @@ - Zoek naar een patroon in alle bestanden in een map, recursief, toon regelnummers van overeenkomsten, negeer binaire bestanden: -`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{zoekpatroon}}" {{pad/naar/map}}` +`grep {{[-r|--recursive]}} {{[-n|--line-number]}} {{[-I|--binary-files=without-match]}} "{{zoekpatroon}}" {{pad/naar/map}}` - Gebruik uitgebreide reguliere expressies (ondersteunt `?`, `+`, `{}`, `()` en `|`), in hoofdletterongevoelige modus: From 5592f46ad4b1bd3dd433d28ef07d366f7cc0b1f8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:36:58 +0200 Subject: [PATCH 035/141] git-cola: update Dutch translation (#16647) --- pages.nl/common/git-cola.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages.nl/common/git-cola.md b/pages.nl/common/git-cola.md index 8850b2a779..6e7eede7c8 100644 --- a/pages.nl/common/git-cola.md +++ b/pages.nl/common/git-cola.md @@ -17,8 +17,8 @@ - Open de Git repository op de genoemde plek: -`git cola --repo {{pad/naar/git-repository}}` +`git cola {{[-r|--repo]}} {{pad/naar/git-repository}}` - Voer het pad filter uit voor de status widget: -`git cola --status-filter {{filter}}` +`git cola {{[-s|--status-filter]}} {{filter}}` From ea980a7815a00df8c10169659dc5e763b9ec88f5 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 15:37:17 +0200 Subject: [PATCH 036/141] fossil-commit: update Dutch translation (#16646) --- pages.nl/common/fossil-commit.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages.nl/common/fossil-commit.md b/pages.nl/common/fossil-commit.md index 135d567edd..1e8fabb183 100644 --- a/pages.nl/common/fossil-commit.md +++ b/pages.nl/common/fossil-commit.md @@ -9,11 +9,11 @@ - Maak een nieuwe versie met alle aanpassingen in de huidige checkout en maak gebruik van de gespecificeerde opmerking: -`fossil commit --comment "{{opmerking}}"` +`fossil commit {{[-m|--comment]}} "{{opmerking}}"` - Maak een nieuwe versie met alle aanpassingen in de huidige checkout met een comment ingelezen vanaf een specifiek bestand: -`fossil commit --message-file {{pad/naar/commit_message_bestand}}` +`fossil commit {{[-M|--message-file]}} {{pad/naar/commit_message_bestand}}` - Maak een nieuwe versie met aanpassingen van de gespecificeerde bestanden; de gebruiker zal gevraagd worden voor een opmerking: From 5835428388a76eb6d55372f200aececa0d9ad981 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Thu, 29 May 2025 19:57:45 +0000 Subject: [PATCH 037/141] visudo: update Dutch translation (#16664) --- pages.nl/common/visudo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages.nl/common/visudo.md b/pages.nl/common/visudo.md index 7101e86f0a..5e59f91b79 100644 --- a/pages.nl/common/visudo.md +++ b/pages.nl/common/visudo.md @@ -9,7 +9,7 @@ - Controleer sudoers-bestand op fouten: -`sudo visudo -c` +`sudo visudo {{[-c|--check]}}` - Bewerk het sudoers-bestand met een specifieke editor: @@ -17,4 +17,4 @@ - Toon de versie: -`visudo --version` +`visudo {{[-V|--version]}}` From 2b73d8d6722519323650c203ec1e5e5e1f4d51d7 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Thu, 29 May 2025 19:58:10 +0000 Subject: [PATCH 038/141] xbps*: update Dutch translation (#16663) --- pages.nl/linux/xbps-install.md | 2 +- pages.nl/linux/xbps-query.md | 10 +++++----- pages.nl/linux/xbps-remove.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages.nl/linux/xbps-install.md b/pages.nl/linux/xbps-install.md index 0baf8136a0..416e745454 100644 --- a/pages.nl/linux/xbps-install.md +++ b/pages.nl/linux/xbps-install.md @@ -10,4 +10,4 @@ - Synchroniseer en update alle pakketten: -`xbps-install --sync --update` +`xbps-install {{[-S|--sync]}} {{[-u|--update]}}` diff --git a/pages.nl/linux/xbps-query.md b/pages.nl/linux/xbps-query.md index a89480b7a2..442131103b 100644 --- a/pages.nl/linux/xbps-query.md +++ b/pages.nl/linux/xbps-query.md @@ -6,20 +6,20 @@ - Zoek naar een pakket in externe repositories met behulp van een reguliere expressie of een trefwoord (als `--regex` wordt weggelaten): -`xbps-query --search {{reguliere_expressie|trefwoord}} --repository --regex` +`xbps-query {{[-s|--search]}} {{reguliere_expressie|trefwoord}} --repository --regex` - Toon informatie over een geïnstalleerd pakket: -`xbps-query --show {{pakket}}` +`xbps-query {{[-S|--show]}} {{pakket}}` - Toon informatie over een pakket in externe repositories: -`xbps-query --show {{pakket}} --repository` +`xbps-query {{[-S|--show]}} {{pakket}} --repository` - Toon alle geregistreerde pakketen in de pakket database: -`xbps-query --list-pkgs` +`xbps-query {{[-l|--list-pkgs]}}` - Toon expliciet geïnstalleerde pakketen (bijv. niet automatisch geïnstalleerd als afhankelijkheden): -`xbps-query --list-manual-pkgs` +`xbps-query {{[-m|--list-manual-pkgs]}}` diff --git a/pages.nl/linux/xbps-remove.md b/pages.nl/linux/xbps-remove.md index ef90717cfe..fd0775bcac 100644 --- a/pages.nl/linux/xbps-remove.md +++ b/pages.nl/linux/xbps-remove.md @@ -10,12 +10,12 @@ - Verwijder een pakket en zijn afhankelijkheden: -`xbps-remove --recursive {{pakket}}` +`xbps-remove {{[-R|--recursive]}} {{pakket}}` - Verwijder verweesde pakketten (geïnstalleerd als afhankelijkheden, maar niet langer vereist door een pakket): -`xbps-remove --remove-orphans` +`xbps-remove {{[-o|--remove-orphans]}}` - Verwijder verouderde pakketten van de cache: -`xbps-remove --clean-cache` +`xbps-remove {{[-O|--clean-cache]}}` From 7ead9775886f5b8417f2c3ce4a1b44f20c6ff57b Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Thu, 29 May 2025 22:00:42 +0200 Subject: [PATCH 039/141] numfmt: update outdated translations (#16658) --- pages.ko/common/numfmt.md | 6 +++--- pages.nl/common/numfmt.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages.ko/common/numfmt.md b/pages.ko/common/numfmt.md index 2f054e8b52..c526f342d9 100644 --- a/pages.ko/common/numfmt.md +++ b/pages.ko/common/numfmt.md @@ -5,12 +5,12 @@ - 1.5K(SI 단위)를 1500으로 변환: -`numfmt --from=si 1.5K` +`numfmt --from si 1.5K` - 5번째 필드(1부터 시작)를 IEC 단위로 변환하되 헤더는 변환하지 않음: -`ls -l | numfmt --header=1 --field=5 --to=iec` +`ls -l | numfmt --header=1 --field 5 --to iec` - IEC 단위로 변환하고, 5자리를 채워 왼쪽 정렬: -`du -s * | numfmt --to=iec --format="%-5f"` +`du {{[-s|--summarize]}} * | numfmt --to iec --format "%-5f"` diff --git a/pages.nl/common/numfmt.md b/pages.nl/common/numfmt.md index 5a36940141..45d2badcb0 100644 --- a/pages.nl/common/numfmt.md +++ b/pages.nl/common/numfmt.md @@ -5,12 +5,12 @@ - Converteer 1.5K (SI-eenheden) naar 1500: -`numfmt --from=si 1.5K` +`numfmt --from si 1.5K` - Converteer het 5e veld (1-gebaseerd) naar IEC-eenheden zonder de header te converteren: -`ls -l | numfmt --header=1 --field=5 --to=iec` +`ls -l | numfmt --header=1 --field 5 --to iec` - Converteer naar IEC-eenheden, opvullen met 5 tekens, links uitgelijnd: -`du -s * | numfmt --to=iec --format="%-5f"` +`du {{[-s|--summarize]}} * | numfmt --to iec --format "%-5f"` From 608c8a71e77f25e323e4c7addbc13369ead08cf8 Mon Sep 17 00:00:00 2001 From: Jose Medina Velasco Date: Fri, 30 May 2025 03:57:05 +0200 Subject: [PATCH 040/141] nala: add Spanish translation (#16544) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add spanish translation for nala command * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Darío Hereñú * Update pages.es/linux/nala.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Co-authored-by: Darío Hereñú Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages.es/linux/nala.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.es/linux/nala.md diff --git a/pages.es/linux/nala.md b/pages.es/linux/nala.md new file mode 100644 index 0000000000..6ec95baeb4 --- /dev/null +++ b/pages.es/linux/nala.md @@ -0,0 +1,37 @@ +# nala + +> Gestor de paquetes con interfaz moderna. +> Interfaz para la API `python-apt`. +> Más información: . + +- Instala un paquete o lo actualiza a la última versión disponible: + +`sudo nala install {{paquete}}` + +- Desinstala un paquete: + +`sudo nala remove {{paquete}}` + +- Desinstala un paquete y borra sus archivos de configuración: + +`nala purge {{paquete}}` + +- Busca nombres de paquetes y sus descripciones mediante una palabra, una expresión regular (por defecto) o mediante glob: + +`nala search "{{patrón}}"` + +- Actualiza la lista de paquetes disponibles e instala las actualizaciones: + +`sudo nala upgrade` + +- Elimina todos los paquetes y dependencias no utilizados de tu sistema: + +`sudo nala autoremove` + +- Búsqueda de los espejos más rápidos para mejorar tiempos de descarga: + +`sudo nala fetch` + +- Visualiza el histórico de transacciones: + +`nala history` From df553a4a0c606fb78a3b4482777f5c654fe78c62 Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Fri, 30 May 2025 00:58:02 -0300 Subject: [PATCH 041/141] lvcreate, lvreduce: add Spanish translation (#16640) --- pages.es/linux/lvcreate.md | 21 +++++++++++++++++++++ pages.es/linux/lvreduce.md | 13 +++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 pages.es/linux/lvcreate.md create mode 100644 pages.es/linux/lvreduce.md diff --git a/pages.es/linux/lvcreate.md b/pages.es/linux/lvcreate.md new file mode 100644 index 0000000000..f16f21067b --- /dev/null +++ b/pages.es/linux/lvcreate.md @@ -0,0 +1,21 @@ +# lvcreate + +> Crea un volumen lógico en un grupo de volumen existente. Un grupo de volumen es una colección de volúmenes lógicos y físicos. +> Vea también: `lvm`. +> Más información: . + +- Crea un volumen lógico de 10 GB en el grupo de volumen vg1: + +`lvcreate {{[-L|--size]}} {{10G}} {{vg1}}` + +- Crea un volumen lógico lineal de 1500 MB llamado mylv en el grupo de volumen vg1: + +`lvcreate {{[-L|--size]}} {{1500}} {{[-n|--name]}} {{mylv}} {{vg1}}` + +- Crea un volumen lógico llamado mylv que utiliza el 60% del espacio total del grupo de volumen vg1: + +`lvcreate {{[-l|--extents]}} {{60%VG}} {{[-n|--name]}} {{mylv}} {{vg1}}` + +- Crea un volumen lógico llamado mylv que utiliza todo el espacio sin asignar del grupo de volumen vg1: + +`lvcreate {{[-l|--extents]}} {{100%FREE}} {{[-n|--name]}} {{mylv}} {{vg1}}` diff --git a/pages.es/linux/lvreduce.md b/pages.es/linux/lvreduce.md new file mode 100644 index 0000000000..60f131798d --- /dev/null +++ b/pages.es/linux/lvreduce.md @@ -0,0 +1,13 @@ +# lvreduce + +> Reduce el tamaño de un volumen lógico. +> Vea también: `lvm`. +> Más información: . + +- Reduce el tamaño de un volumen a 120GB: + +`lvreduce {{[-L|--size]}} {{120G}} {{volumen_logico}}` + +- Reduce el tamaño de un volumen en 40GB así como a los sistemas subyacentes: + +`lvreduce {{[-L|--size]}} -{{40G}} {{[-r|--resizefs]}} {{volumen_logico}}` From 3c3df270ad654e355b21b698bd406df84b91494a Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Fri, 30 May 2025 00:58:18 -0300 Subject: [PATCH 042/141] lvm: add Spanish translation (#16610) --- pages.es/linux/lvm.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.es/linux/lvm.md diff --git a/pages.es/linux/lvm.md b/pages.es/linux/lvm.md new file mode 100644 index 0000000000..3358fef701 --- /dev/null +++ b/pages.es/linux/lvm.md @@ -0,0 +1,36 @@ +# lvm + +> Administración de volúmenes fisicos, grupos de volúmenes, y volúmenes lógicos mediante la terminal interactiva de Logical Volume Manager (LVM). +> Más información: . + +- Inicia la terminal interactiva Logical Volume Manager: + +`sudo lvm` + +- Inicializa un disco o partición para ser utilizado como volumen físico: + +`sudo lvm pvcreate {{/dev/sdXY}}` + +- Imprime información sobre volúmenes físicos: + +`sudo lvm pvdisplay` + +- Crea un grupo de volumen llamado vg1 a partir del volumen físico en `/dev/sdXY`: + +`sudo lvm vgcreate {{vg1}} {{/dev/sdXY}}` + +- Imprime información sobre grupos de volumen: + +`sudo lvm vgdisplay` + +- Crea un volumen lógico con un tamaño de 10G a partir del grupo de volumen vg1: + +`sudo lvm lvcreate {{[-L|--size]}} {{10G}} {{vg1}}` + +- Imprime información sobre volúmenes lógicos: + +`sudo lvm lvdisplay` + +- Imprime ayuda para un comando específico: + +`lvm help {{command}}` From 2c74ea108f696d04d18369fc4e93806ff0380104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Fri, 30 May 2025 01:01:14 -0300 Subject: [PATCH 043/141] jo: add Spanish translation (#16556) --- pages.es/common/jo.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/jo.md diff --git a/pages.es/common/jo.md b/pages.es/common/jo.md new file mode 100644 index 0000000000..51b5a99bff --- /dev/null +++ b/pages.es/common/jo.md @@ -0,0 +1,7 @@ +# jo + +> Este comando es un alias de `autojump`. + +- Vea la documentación del comando original: + +`tldr autojump` From 5d57584e0c83042ada131c5288a8c9f176b74efb Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 30 May 2025 06:02:09 +0200 Subject: [PATCH 044/141] objdump: update outdated translations (#16657) --- pages.es/common/objdump.md | 10 +++++----- pages.ko/common/objdump.md | 10 +++++----- pages.nl/common/objdump.md | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pages.es/common/objdump.md b/pages.es/common/objdump.md index fd302d779f..a906ef4455 100644 --- a/pages.es/common/objdump.md +++ b/pages.es/common/objdump.md @@ -5,20 +5,20 @@ - Muestra la información del encabezado del archivo: -`objdump -f {{ruta/al/binario}}` +`objdump {{[-f|--file-headers]}} {{ruta/al/binario}}` - Muestra toda la información del encabezado: -`objdump -x {{ruta/al/binario}}` +`objdump {{[-x|--all-headers]}} {{ruta/al/binario}}` - Muestra la salida desensamblada (disassembled) de secciones ejecutables: -`objdump -d {{ruta/al/binario}}` +`objdump {{[-d|--disassemble]}} {{ruta/al/binario}}` - Muestra las secciones ejecutables desensambladas con sintaxis Intel: -`objdump -M intel -d {{ruta/al/binario}}` +`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{ruta/al/binario}}` - Muestra un volcado hexadecimal ruta/al/binario completo de todas las secciones: -`objdump -s {{ruta/al/binario}}` +`objdump {{[-s|--full-contents]}} {{ruta/al/binario}}` diff --git a/pages.ko/common/objdump.md b/pages.ko/common/objdump.md index 8b1ad3ad5d..a1e7fa16aa 100644 --- a/pages.ko/common/objdump.md +++ b/pages.ko/common/objdump.md @@ -5,20 +5,20 @@ - 파일 헤더 정보를 표시: -`objdump -f {{바이너리}}` +`objdump {{[-f|--file-headers]}} {{경로/대상/바이너리}}` - 모든 헤더 정보를 표시: -`objdump -x {{바이너리}}` +`objdump {{[-x|--all-headers]}} {{경로/대상/바이너리}}` - 실행 가능한 섹션의 디스어셈블리 출력 표시: -`objdump -d {{바이너리}}` +`objdump {{[-d|--disassemble]}} {{경로/대상/바이너리}}` - 인텔 구문으로 실행 가능한 섹션의 디스어셈블리 출력 표시: -`objdump -M intel -d {{바이너리}}` +`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{경로/대상/바이너리}}` - 모든 섹션의 전체 바이너리 헥스 덤프 표시: -`objdump -s {{바이너리}}` +`objdump {{[-s|--full-contents]}} {{경로/대상/바이너리}}` diff --git a/pages.nl/common/objdump.md b/pages.nl/common/objdump.md index b6cb47f564..ec4d19cae1 100644 --- a/pages.nl/common/objdump.md +++ b/pages.nl/common/objdump.md @@ -5,20 +5,20 @@ - Toon de bestand header informatie: -`objdump -f {{binary}}` +`objdump {{[-f|--file-headers]}} {{pad/naar/binary}}` - Toon alle header informatie: -`objdump -x {{binary}}` +`objdump {{[-x|--all-headers]}} {{pad/naar/binary}}` - Toon de gedemonteerde uitvoer van uitvoerbare secties: -`objdump -d {{binary}}` +`objdump {{[-d|--disassemble]}} {{pad/naar/binary}}` - Toon de gedemonteerde uitvoer van uitvoerbare secties in intel syntax: -`objdump -M intel -d {{binary}}` +`objdump {{[-M|--disassembler-options]}} intel {{[-d|--disassemble]}} {{pad/naar/binary}}` - Toon een complete binary hex dump van alle secties: -`objdump -s {{binary}}` +`objdump {{[-s|--full-contents]}} {{pad/naar/binary}}` From daa949d1894482533b7e3f8742095639d0b52e53 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 30 May 2025 06:02:26 +0200 Subject: [PATCH 045/141] npm*: update outdated translations, remove `=` (#16655) --- pages.de/common/npm-check.md | 6 +++--- pages.es/common/npm-config.md | 2 +- pages.es/common/npm-ls.md | 8 ++++---- pages.hi/common/npm-init.md | 2 +- pages.ko/common/npm-access.md | 4 ++-- pages.ko/common/npm-adduser.md | 8 ++++---- pages.ko/common/npm-audit.md | 2 +- pages.ko/common/npm-check.md | 6 +++--- pages.ko/common/npm-dedupe.md | 4 ++-- pages.ko/common/npm-find-dupes.md | 10 +++++----- pages.ko/common/npm-fund.md | 2 +- pages.ko/common/npm-home.md | 4 ++-- pages.ko/common/npm-init.md | 2 +- pages.ko/common/npm-outdated.md | 2 +- pages.ko/common/npm-query.md | 4 ++-- pages.ko/common/npm-star.md | 10 +++++----- pages.ko/common/npm-unstar.md | 8 ++++---- pages.ko/common/npm-whoami.md | 2 +- pages.nl/common/npm-check.md | 6 +++--- pages.nl/common/npm-fund.md | 2 +- pages.nl/common/npm-ls.md | 6 +++--- pages.nl/common/npm-query.md | 4 ++-- pages/common/npm-config.md | 2 +- pages/common/npm-star.md | 10 +++++----- pages/common/npm-unstar.md | 8 ++++---- pages/common/npm-whoami.md | 2 +- 26 files changed, 63 insertions(+), 63 deletions(-) diff --git a/pages.de/common/npm-check.md b/pages.de/common/npm-check.md index 4089d94d28..8a692810e4 100644 --- a/pages.de/common/npm-check.md +++ b/pages.de/common/npm-check.md @@ -9,12 +9,12 @@ - Aktualisiere interaktiv veraltete Pakete: -`npm-check --update` +`npm-check {{[-u|--update]}}` - Aktualisiere alle Pakete ohne Nachfrage: -`npm-check --update-all` +`npm-check {{[-y|--update-all]}}` - Überspringe die Prüfung auf nicht verwendete Pakete: -`npm-check --skip-unused` +`npm-check {{[-s|--skip-unused]}}` diff --git a/pages.es/common/npm-config.md b/pages.es/common/npm-config.md index 5d7f99a790..c9e2f903e0 100644 --- a/pages.es/common/npm-config.md +++ b/pages.es/common/npm-config.md @@ -17,7 +17,7 @@ - Establece una clave de configuración a un valor específico: -`npm config set {{clave}}={{valor}}` +`npm config set {{clave}} {{valor}}` - Elimina una clave de configuración: diff --git a/pages.es/common/npm-ls.md b/pages.es/common/npm-ls.md index e3d694991e..d041c4189e 100644 --- a/pages.es/common/npm-ls.md +++ b/pages.es/common/npm-ls.md @@ -9,15 +9,15 @@ - Imprime todos los paquetes instalados incluyendo las dependencias de pares: -`npm ls --all` +`npm ls {{[-a|--all]}}` - Imprime las dependencias con información ampliada: -`npm ls --long` +`npm ls {{[-l|--long]}}` -- Imprime las dependencias en formato parseable: +- Imprime las dependencias en formato analizable: -`npm ls --parseable` +`npm ls {{[-p|--parseable]}}` - Imprime dependencias en formato JSON: diff --git a/pages.hi/common/npm-init.md b/pages.hi/common/npm-init.md index 86c9706338..39cc65b085 100644 --- a/pages.hi/common/npm-init.md +++ b/pages.hi/common/npm-init.md @@ -9,7 +9,7 @@ - डिफ़ॉल्ट मानों के साथ एक नया पैकेज प्रारंभ करें: -`npm init -y` +`npm init {{[-y|--yes]}}` - एक विशिष्ट इनिशियलाइज़र का उपयोग करके एक नया पैकेज प्रारंभ करें: diff --git a/pages.ko/common/npm-access.md b/pages.ko/common/npm-access.md index a21b03c2fa..7cd7cb5375 100644 --- a/pages.ko/common/npm-access.md +++ b/pages.ko/common/npm-access.md @@ -17,7 +17,7 @@ - 패키지 상태 설정 (공개 또는 비공개): -`npm access set status={{public|private}} {{패키지_이름}}` +`npm access set status {{public|private}} {{패키지_이름}}` - 패키지에 대한 접근 권한 부여: @@ -29,4 +29,4 @@ - 2단계 인증 요구 사항 구성: -`npm access set mfa={{none|publish|automation}} {{패키지_이름}}` +`npm access set mfa {{none|publish|automation}} {{패키지_이름}}` diff --git a/pages.ko/common/npm-adduser.md b/pages.ko/common/npm-adduser.md index 240b080bb5..01aaae7bba 100644 --- a/pages.ko/common/npm-adduser.md +++ b/pages.ko/common/npm-adduser.md @@ -5,16 +5,16 @@ - 지정된 레지스트리에 새 사용자 생성하고 자격 증명을 `.npmrc`에 저장: -`npm adduser --registry={{레지스트리_주소}}` +`npm adduser --registry {{레지스트리_주소}}` - 특정 범위로 개인 레지스트리에 로그인: -`npm login --scope={{@조직}} --registry={{https://registry.mycorp.com}}` +`npm login --scope {{@조직}} --registry {{https://registry.mycorp.com}}` - 특정 범위에서 로그아웃하고 인증 토큰 제거: -`npm logout --scope={{@조직}}` +`npm logout --scope {{@조직}}` - 초기화 중 범위가 지정된 패키지 생성: -`npm init --scope={{@foo}} {{--yes}}` +`npm init --scope {{@foo}} {{--yes}}` diff --git a/pages.ko/common/npm-audit.md b/pages.ko/common/npm-audit.md index 958a914922..2637f800c0 100644 --- a/pages.ko/common/npm-audit.md +++ b/pages.ko/common/npm-audit.md @@ -30,4 +30,4 @@ - 특정 심각도 이상의 취약점에서만 실패하도록 감사 구성: -`npm audit --audit-level={{info|low|moderate|high|critical}}` +`npm audit --audit-level {{info|low|moderate|high|critical}}` diff --git a/pages.ko/common/npm-check.md b/pages.ko/common/npm-check.md index 38cca9cb3b..9fcf548f4d 100644 --- a/pages.ko/common/npm-check.md +++ b/pages.ko/common/npm-check.md @@ -9,12 +9,12 @@ - 오래된 패키지를 대화형으로 업데이트: -`npm-check --update` +`npm-check {{[-u|--update]}}` - 메시지를 표시하지 않고 모든 항목을 업데이트: -`npm-check --update-all` +`npm-check {{[-y|--update-all]}}` - 사용하지 않은 패키지를 확인하지 않음: -`npm-check --skip-unused` +`npm-check {{[-s|--skip-unused]}}` diff --git a/pages.ko/common/npm-dedupe.md b/pages.ko/common/npm-dedupe.md index 701f1843cb..2057c74e26 100644 --- a/pages.ko/common/npm-dedupe.md +++ b/pages.ko/common/npm-dedupe.md @@ -17,11 +17,11 @@ - 중복 제거 시 선택적/피어 의존성 건너뛰기: -`npm dedupe --omit={{optional|peer}}` +`npm dedupe --omit {{optional|peer}}` - 문제 해결을 위한 자세한 로깅 활성화: -`npm dedupe --loglevel=verbose` +`npm dedupe --loglevel verbose` - 특정 패키지에 대해 중복 제거 제한: diff --git a/pages.ko/common/npm-find-dupes.md b/pages.ko/common/npm-find-dupes.md index 19dbcae898..c140e51565 100644 --- a/pages.ko/common/npm-find-dupes.md +++ b/pages.ko/common/npm-find-dupes.md @@ -9,7 +9,7 @@ - 중복 감지에 `devDependencies` 포함: -`npm find-dupes --include=dev` +`npm find-dupes --include dev` - `node-modules`에서 특정 패키지의 모든 중복 인스턴스 나열: @@ -17,11 +17,11 @@ - 중복 감지에서 선택적 의존성 제외: -`npm find-dupes --omit=optional` +`npm find-dupes --omit optional` - 출력의 로그 레벨 설정: -`npm find-dupes --loglevel={{silent|error|warn|info|verbose}}` +`npm find-dupes --loglevel {{silent|error|warn|info|verbose}}` - 중복 정보를 JSON 형식으로 출력: @@ -29,8 +29,8 @@ - 중복 검색을 특정 스코프로 제한: -`npm find-dupes --scope={{@스코프1,@스코프2}}` +`npm find-dupes --scope {{@스코프1,@스코프2}}` - 특정 스코프를 중복 감지에서 제외: -`npm find-dupes --omit-scope={{@스코프1,@스코프2}}` +`npm find-dupes --omit-scope {{@스코프1,@스코프2}}` diff --git a/pages.ko/common/npm-fund.md b/pages.ko/common/npm-fund.md index 9857ed8174..582f27d6e9 100644 --- a/pages.ko/common/npm-fund.md +++ b/pages.ko/common/npm-fund.md @@ -13,4 +13,4 @@ - 현재 폴더에 있는 프로젝트의 특정 작업 공간([w]orkspace)에 대한 자금 조달 URL을 사용하여 종속성을 나열: -`npm fund -w {{작업 공간}}` +`npm fund {{[-w|--workspace]}} {{작업 공간}}` diff --git a/pages.ko/common/npm-home.md b/pages.ko/common/npm-home.md index bc27966993..0c43dfe71b 100644 --- a/pages.ko/common/npm-home.md +++ b/pages.ko/common/npm-home.md @@ -9,8 +9,8 @@ - 특정 패키지의 GitHub 저장소를 웹 브라우저에서 열기: -`npm-home -g {{패키지}}` +`npm-home {{[-g|--github]}} {{패키지}}` - 특정 패키지의 Yarn 페이지를 웹 브라우저에서 열기: -`npm-home -y {{패키지}}` +`npm-home {{[-y|--yarn]}} {{패키지}}` diff --git a/pages.ko/common/npm-init.md b/pages.ko/common/npm-init.md index 24afbdf340..3426d47538 100644 --- a/pages.ko/common/npm-init.md +++ b/pages.ko/common/npm-init.md @@ -9,7 +9,7 @@ - 기본값으로 새 패키지 초기화: -`npm init -y` +`npm init {{[-y|--yes]}}` - 특정 초기화 도구를 사용하여 새 패키지 초기화: diff --git a/pages.ko/common/npm-outdated.md b/pages.ko/common/npm-outdated.md index 2af09deb51..8b8791fa43 100644 --- a/pages.ko/common/npm-outdated.md +++ b/pages.ko/common/npm-outdated.md @@ -9,4 +9,4 @@ - 현재 프로젝트와 상관없이 오래된 패키지 찾기: -`npm outdated --all` +`npm outdated {{[-a|--all]}}` diff --git a/pages.ko/common/npm-query.md b/pages.ko/common/npm-query.md index 5b02bdd1bf..c2e6c19523 100644 --- a/pages.ko/common/npm-query.md +++ b/pages.ko/common/npm-query.md @@ -25,8 +25,8 @@ - 설치 후 스크립트로 모든 의존성을 찾아 제거: -`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' -r | xargs -I {} npm uninstall {}` +`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' {{[-r|--raw-output]}} | xargs -I _ npm uninstall _` - 모든 Git 종속성을 찾아 어떤 애플리케이션에 필요한지 출력: -`npm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}` +`npm query ":type(git)" | jq 'map(.name)' | xargs -I _ npm why _` diff --git a/pages.ko/common/npm-star.md b/pages.ko/common/npm-star.md index 06ea853b58..38f90814d0 100644 --- a/pages.ko/common/npm-star.md +++ b/pages.ko/common/npm-star.md @@ -13,19 +13,19 @@ - 특정 레지스트리에서 패키지 즐겨찾기: -`npm star {{패키지_이름}} --registry={{레지스트리_URL}}` +`npm star {{패키지_이름}} --registry {{레지스트리_URL}}` - 인증이 필요한 비공개 패키지 즐겨찾기: -`npm star {{패키지_이름}} --auth-type={{legacy|oauth|web|saml}}` +`npm star {{패키지_이름}} --auth-type {{legacy|oauth|web|saml}}` - 2단계 인증을 위한 OTP를 제공하여 패키지 즐겨찾기: -`npm star {{패키지_이름}} --otp={{OTP}}` +`npm star {{패키지_이름}} --otp {{OTP}}` - 자세한 로그와 함께 패키지 즐겨찾기: -`npm star {{패키지_이름}} --loglevel=verbose` +`npm star {{패키지_이름}} --loglevel verbose` - 즐겨찾기한 모든 패키지 나열: @@ -33,4 +33,4 @@ - 특정 레지스트리에서 즐겨찾기한 패키지 나열: -`npm star --list --registry={{레지스트리_URL}}` +`npm star --list --registry {{레지스트리_URL}}` diff --git a/pages.ko/common/npm-unstar.md b/pages.ko/common/npm-unstar.md index 8046abf4da..c68e3a8f6f 100644 --- a/pages.ko/common/npm-unstar.md +++ b/pages.ko/common/npm-unstar.md @@ -13,16 +13,16 @@ - 특정 레지스트리에서 패키지의 별표 제거: -`npm unstar {{패키지_이름}} --registry={{레지스트리_URL}}` +`npm unstar {{패키지_이름}} --registry {{레지스트리_URL}}` - 인증이 필요한 비공개 패키지의 별표 제거: -`npm unstar {{패키지_이름}} --auth-type={{legacy|oauth|web|saml}}` +`npm unstar {{패키지_이름}} --auth-type {{legacy|oauth|web|saml}}` - 이중 인증을 위한 OTP를 제공하여 패키지의 별표 제거: -`npm unstar {{패키지_이름}} --otp={{OTP}}` +`npm unstar {{패키지_이름}} --otp {{OTP}}` - 특정 로깅 수준으로 패키지의 별표 제거: -`npm unstar {{패키지_이름}} --loglevel={{silent|error|warn|notice|http|timing|info|verbose|silly}}` +`npm unstar {{패키지_이름}} --loglevel {{silent|error|warn|notice|http|timing|info|verbose|silly}}` diff --git a/pages.ko/common/npm-whoami.md b/pages.ko/common/npm-whoami.md index ee983a5d8a..50b197bf01 100644 --- a/pages.ko/common/npm-whoami.md +++ b/pages.ko/common/npm-whoami.md @@ -9,4 +9,4 @@ - 특정 레지스트리에서 현재 사용자의 이름 표시: -`npm whoami --registry={{레지스트리_URL}}` +`npm whoami --registry {{레지스트리_URL}}` diff --git a/pages.nl/common/npm-check.md b/pages.nl/common/npm-check.md index 2ad4254dfd..418a1c870f 100644 --- a/pages.nl/common/npm-check.md +++ b/pages.nl/common/npm-check.md @@ -9,12 +9,12 @@ - Werk interactief verouderde pakketten bij: -`npm-check --update` +`npm-check {{[-u|--update]}}` - Werk alles bij zonder te vragen: -`npm-check --update-all` +`npm-check {{[-y|--update-all]}}` - Controleer niet op ongebruikte pakketten: -`npm-check --skip-unused` +`npm-check {{[-s|--skip-unused]}}` diff --git a/pages.nl/common/npm-fund.md b/pages.nl/common/npm-fund.md index b56ac2df13..1e02325622 100644 --- a/pages.nl/common/npm-fund.md +++ b/pages.nl/common/npm-fund.md @@ -13,4 +13,4 @@ - Toon afhankelijkheden met een financierings-URL voor een specifieke [w]orkspace voor het project in de huidige directory: -`npm fund -w {{workspace}}` +`npm fund {{[-w|--workspace]}} {{workspace}}` diff --git a/pages.nl/common/npm-ls.md b/pages.nl/common/npm-ls.md index 5a62a98f3c..fbf7c45236 100644 --- a/pages.nl/common/npm-ls.md +++ b/pages.nl/common/npm-ls.md @@ -9,15 +9,15 @@ - Print alle geïnstalleerde pakketten inclusief gelijkwaardige afhankelijkheden: -`npm ls --all` +`npm ls {{[-a|--all]}}` - Print afhankelijkheden met uitgebreide informatie: -`npm ls --long` +`npm ls {{[-l|--long]}}` - Print afhankelijkheden in parseable formaat: -`npm ls --parseable` +`npm ls {{[-p|--parseable]}}` - Print afhankelijkheden in JSON formaat: diff --git a/pages.nl/common/npm-query.md b/pages.nl/common/npm-query.md index 1b36b3c679..9c48056291 100644 --- a/pages.nl/common/npm-query.md +++ b/pages.nl/common/npm-query.md @@ -25,8 +25,8 @@ - Zoek alle afhankelijkheden met postinstall-scripts en verwijder ze: -`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' -r | xargs -I {} npm uninstall {}` +`npm query ":attr(scripts, [postinstall])" | jq 'map(.name) | join("\n")' {{[-r|--raw-output]}} | xargs -I _ npm uninstall _` - Zoek alle Git-afhankelijkheden en print welke applicatie ze vereist: -`npm query ":type(git)" | jq 'map(.name)' | xargs -I {} npm why {}` +`npm query ":type(git)" | jq 'map(.name)' | xargs -I _ npm why _` diff --git a/pages/common/npm-config.md b/pages/common/npm-config.md index ed4887afef..85f8ef85f8 100644 --- a/pages/common/npm-config.md +++ b/pages/common/npm-config.md @@ -17,7 +17,7 @@ - Set a configuration key to a specific value: -`npm config set {{key}}={{value}}` +`npm config set {{key}} {{value}}` - Delete a configuration key: diff --git a/pages/common/npm-star.md b/pages/common/npm-star.md index ef50193a01..97b48da8de 100644 --- a/pages/common/npm-star.md +++ b/pages/common/npm-star.md @@ -13,19 +13,19 @@ - Star a package from a specific registry: -`npm star {{package_name}} --registry={{registry_url}}` +`npm star {{package_name}} --registry {{registry_url}}` - Star a private package that requires authentication: -`npm star {{package_name}} --auth-type={{legacy|oauth|web|saml}}` +`npm star {{package_name}} --auth-type {{legacy|oauth|web|saml}}` - Star a package by providing an OTP for two-factor authentication: -`npm star {{package_name}} --otp={{otp}}` +`npm star {{package_name}} --otp {{otp}}` - Star a package with detailed logging: -`npm star {{package_name}} --loglevel=verbose` +`npm star {{package_name}} --loglevel verbose` - List all your starred packages: @@ -33,4 +33,4 @@ - List your starred packages from a specific registry: -`npm star --list --registry={{registry_url}}` +`npm star --list --registry {{registry_url}}` diff --git a/pages/common/npm-unstar.md b/pages/common/npm-unstar.md index e03addb42e..7f81c2fcab 100644 --- a/pages/common/npm-unstar.md +++ b/pages/common/npm-unstar.md @@ -13,16 +13,16 @@ - Unstar a package from a specific registry: -`npm unstar {{package_name}} --registry={{registry_url}}` +`npm unstar {{package_name}} --registry {{registry_url}}` - Unstar a private package that requires authentication: -`npm unstar {{package_name}} --auth-type={{legacy|oauth|web|saml}}` +`npm unstar {{package_name}} --auth-type {{legacy|oauth|web|saml}}` - Unstar a package by providing an OTP for two-factor authentication: -`npm unstar {{package_name}} --otp={{otp}}` +`npm unstar {{package_name}} --otp {{otp}}` - Unstar a package with a specific logging level: -`npm unstar {{package_name}} --loglevel={{silent|error|warn|notice|http|timing|info|verbose|silly}}` +`npm unstar {{package_name}} --loglevel {{silent|error|warn|notice|http|timing|info|verbose|silly}}` diff --git a/pages/common/npm-whoami.md b/pages/common/npm-whoami.md index 52803bb18b..71fc3ce994 100644 --- a/pages/common/npm-whoami.md +++ b/pages/common/npm-whoami.md @@ -9,4 +9,4 @@ - Display username of the current user in the specific registry: -`npm whoami --registry={{registry_url}}` +`npm whoami --registry {{registry_url}}` From 9ff9edd14e2ed6051edfa96ce17c5e0dae7492a8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 30 May 2025 06:07:08 +0200 Subject: [PATCH 046/141] netstat: update Dutch translation (#16652) --- pages.nl/common/netstat.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pages.nl/common/netstat.md b/pages.nl/common/netstat.md index 9025888c94..a1216da1b5 100644 --- a/pages.nl/common/netstat.md +++ b/pages.nl/common/netstat.md @@ -5,28 +5,28 @@ - Toon alle poorten: -`netstat --all` +`netstat {{[-a|--all]}}` - Toon alle luisterende poorten: -`netstat --listening` +`netstat {{-l|--listening]}}` - Toon luisterende TCP-poorten: -`netstat --tcp` +`netstat {{-t|--tcp]}}` - Toon PID en programmanamen: -`netstat --program` +`netstat {{[-p|--program]}}` -- Toon informatie continu: +- Toon continu informatie: -`netstat --continuous` +`netstat {{[-c|--continuous]}}` - Toon routes en los IP-adressen niet op naar hostnamen: -`netstat --route --numeric` +`netstat {{[-rn|--route --numeric]}}` - Toon luisterende TCP- en UDP-poorten (+ gebruiker en proces als je root bent): -`netstat --listening --program --numeric --tcp --udp --extend` +`netstat {{[-tulpne|--tcp --udp --listening --program --numeric --extend]}}` From 30a48f1cabe31e003af922c8967fe43df8e19021 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Fri, 30 May 2025 06:38:39 +0200 Subject: [PATCH 047/141] dunstify: move to correct platform (#16661) --- pages.pt_BR/{linux => common}/dunstify.md | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pages.pt_BR/{linux => common}/dunstify.md (100%) diff --git a/pages.pt_BR/linux/dunstify.md b/pages.pt_BR/common/dunstify.md similarity index 100% rename from pages.pt_BR/linux/dunstify.md rename to pages.pt_BR/common/dunstify.md From 022632bd6a254da957f28bf680302561020bcd78 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 30 May 2025 10:33:37 +0000 Subject: [PATCH 048/141] apt: update Dutch translation (#16665) --- pages.nl/linux/apt.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.nl/linux/apt.md b/pages.nl/linux/apt.md index 058793fdc6..0549361c3b 100644 --- a/pages.nl/linux/apt.md +++ b/pages.nl/linux/apt.md @@ -9,7 +9,7 @@ `sudo apt update` -- Zoek naar een specifiek pakket: +- Zoek naar een specifiek pakket (gebruik `apt search --name-only pakket` om alleen op pakketnaam te zoeken): `apt search {{pakket}}` @@ -29,10 +29,10 @@ `sudo apt upgrade` -- Maak een lijst van alle pakketten: +- Toon alle pakketten: `apt list` -- Maak een lijst van alle geïnstalleerde pakketten: +- Toon alle geïnstalleerde pakketten: -`apt list --installed` +`apt list {{[-i|--installed]}}` From 75de26c573df8b351fd97a7186b1c3e625bffe14 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 30 May 2025 10:35:11 +0000 Subject: [PATCH 049/141] sha*sum: update Dutch translation (#16669) --- pages.nl/common/sha1sum.md | 8 ++++---- pages.nl/common/sha224sum.md | 8 ++++---- pages.nl/common/sha256sum.md | 8 ++++---- pages.nl/common/sha384sum.md | 8 ++++---- pages.nl/common/sha512sum.md | 8 ++++---- 5 files changed, 20 insertions(+), 20 deletions(-) diff --git a/pages.nl/common/sha1sum.md b/pages.nl/common/sha1sum.md index eb4206c1fd..e4be541736 100644 --- a/pages.nl/common/sha1sum.md +++ b/pages.nl/common/sha1sum.md @@ -17,16 +17,16 @@ - Lees een bestand met SHA1 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`sha1sum --check {{pad/naar/bestand.sha1}}` +`sha1sum {{[-c|--check]}} {{pad/naar/bestand.sha1}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`sha1sum --check --quiet {{pad/naar/bestand.sha1}}` +`sha1sum {{[-c|--check]}} --quiet {{pad/naar/bestand.sha1}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`sha1sum --ignore-missing --check --quiet {{pad/naar/bestand.sha1}}` +`sha1sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.sha1}}` - Controleer een bekende SHA1 checksum van een bestand: -`echo {{bekende_sha1_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha1sum --check` +`echo {{bekende_sha1_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha1sum {{[-c|--check]}}` diff --git a/pages.nl/common/sha224sum.md b/pages.nl/common/sha224sum.md index 43e822a326..b83d305034 100644 --- a/pages.nl/common/sha224sum.md +++ b/pages.nl/common/sha224sum.md @@ -17,16 +17,16 @@ - Lees een bestand met SHA224 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`sha224sum --check {{pad/naar/bestand.sha224}}` +`sha224sum {{[-c|--check]}} {{pad/naar/bestand.sha224}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`sha224sum --check --quiet {{pad/naar/bestand.sha224}}` +`sha224sum {{[-c|--check]}} --quiet {{pad/naar/bestand.sha224}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`sha224sum --ignore-missing --check --quiet {{pad/naar/bestand.sha224}}` +`sha224sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.sha224}}` - Controleer een bekende SHA224 checksum van een bestand: -`echo {{bekende_sha224_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha224sum --check` +`echo {{bekende_sha224_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha224sum {{[-c|--check]}}` diff --git a/pages.nl/common/sha256sum.md b/pages.nl/common/sha256sum.md index 0f0d816498..1792869eaa 100644 --- a/pages.nl/common/sha256sum.md +++ b/pages.nl/common/sha256sum.md @@ -17,16 +17,16 @@ - Lees een bestand met SHA256 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`sha256sum --check {{pad/naar/bestand.sha256}}` +`sha256sum {{[-c|--check]}} {{pad/naar/bestand.sha256}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`sha256sum --check --quiet {{pad/naar/bestand.sha256}}` +`sha256sum {{[-c|--check]}} --quiet {{pad/naar/bestand.sha256}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`sha256sum --ignore-missing --check --quiet {{pad/naar/bestand.sha256}}` +`sha256sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.sha256}}` - Controleer een bekende SHA256 checksum van een bestand: -`echo {{bekende_sha256_checksum_van_een_bestand}} {{pad/naar/bestand}} | sha256sum --check` +`echo {{bekende_sha256_checksum_van_een_bestand}} {{pad/naar/bestand}} | sha256sum {{[-c|--check]}}` diff --git a/pages.nl/common/sha384sum.md b/pages.nl/common/sha384sum.md index d4b65eb301..33454ea484 100644 --- a/pages.nl/common/sha384sum.md +++ b/pages.nl/common/sha384sum.md @@ -17,16 +17,16 @@ - Lees een bestand met SHA384 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`sha384sum --check {{pad/naar/bestand.sha384}}` +`sha384sum {{[-c|--check]}} {{pad/naar/bestand.sha384}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`sha384sum --check --quiet {{pad/naar/bestand.sha384}}` +`sha384sum {{[-c|--check]}} --quiet {{pad/naar/bestand.sha384}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`sha384sum --ignore-missing --check --quiet {{pad/naar/bestand.sha384}}` +`sha384sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.sha384}}` - Controleer een bekende SHA384 checksum van een bestand: -`echo {{bekende_sha384_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha384sum --check` +`echo {{bekende_sha384_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha384sum {{[-c|--check]}}` diff --git a/pages.nl/common/sha512sum.md b/pages.nl/common/sha512sum.md index 77f6892fba..bf4d8e0b7b 100644 --- a/pages.nl/common/sha512sum.md +++ b/pages.nl/common/sha512sum.md @@ -17,16 +17,16 @@ - Lees een bestand met SHA512 checksums en bestandsnamen en verifieer dat alle bestanden overeenkomende checksums hebben: -`sha512sum --check {{pad/naar/bestand.sha512}}` +`sha512sum {{[-c|--check]}} {{pad/naar/bestand.sha512}}` - Toon alleen een bericht voor ontbrekende bestanden of wanneer verificatie mislukt: -`sha512sum --check --quiet {{pad/naar/bestand.sha512}}` +`sha512sum {{[-c|--check]}} --quiet {{pad/naar/bestand.sha512}}` - Toon alleen een bericht wanneer verificatie mislukt, negeer ontbrekende bestanden: -`sha512sum --ignore-missing --check --quiet {{pad/naar/bestand.sha512}}` +`sha512sum --ignore-missing {{[-c|--check]}} --quiet {{pad/naar/bestand.sha512}}` - Controleer een bekende SHA512 checksum van een bestand: -`echo {{bekende_sha512_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha512sum --check` +`echo {{bekende_sha512_checksum_van_het_bestand}} {{pad/naar/bestand}} | sha512sum {{[-c|--check]}}` From feff390c75e399f78fcad103b5a31465291778b7 Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Fri, 30 May 2025 09:52:37 -0300 Subject: [PATCH 050/141] lvdisplay, lvextend: add Spanish translation (#16583) --- pages.es/linux/lvdisplay.md | 17 +++++++++++++++++ pages.es/linux/lvextend.md | 21 +++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 pages.es/linux/lvdisplay.md create mode 100644 pages.es/linux/lvextend.md diff --git a/pages.es/linux/lvdisplay.md b/pages.es/linux/lvdisplay.md new file mode 100644 index 0000000000..90e18845fe --- /dev/null +++ b/pages.es/linux/lvdisplay.md @@ -0,0 +1,17 @@ +# lvdisplay + +> Imprime información sobre Logical Volumes Manager (LVM). +> Vea también: `lvm`. +> Más información: . + +- Muestra información sobre todos los volúmenes lógicos: + +`sudo lvdisplay` + +- Muestra información sobre todos los volúmenes lógicos dentro del grupo de volúmenes vg1: + +`sudo lvdisplay {{vg1}}` + +- Muestra información sobre volumen lógico lv1 dentro del grupo de volúmenes vg1: + +`sudo lvdisplay {{vg1/lv1}}` diff --git a/pages.es/linux/lvextend.md b/pages.es/linux/lvextend.md new file mode 100644 index 0000000000..f3762671e4 --- /dev/null +++ b/pages.es/linux/lvextend.md @@ -0,0 +1,21 @@ +# lvextend + +> Aumenta el tamaño de un volumen lógico. +> Vea tambien: `lvm`. +> Más información: . + +- Aumenta el tamaño de un volumen a 120 GB: + +`sudo lvextend {{[-L|--size]}} {{120G}} {{volumen_logico}}` + +- Aumenta el tamaño de un volumen por 40 GB, así como a los sistemas subyacentes: + +`sudo lvextend {{[-L|--size]}} +{{40G}} {{[-r|--resizefs]}} {{volumen_logico}}` + +- Aumenta el tamaño de un volumen al 100% del espacio físico libre del volumen: + +`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{volumen_logico}}` + +- Aumenta el tamaño de un volumen al 100% del espacio físico libre del volumen y redimensiona a los sistemas subyacentes: + +`sudo lvextend {{[-l|--extents]}} +{{100}}%FREE {{[-r|--resizefs]}} {{volumen_logico}}` From 325a9b7a683a1ff3bac70ff3a21728753a2bdb9d Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 30 May 2025 16:35:11 +0000 Subject: [PATCH 051/141] MAINTAINERS: add @dmmqz as collaborator (#16673) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- MAINTAINERS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index f4566082b6..0ab64b401b 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -91,7 +91,9 @@ If you are an owner of the organization, you can see an automated list [here](ht - **witt ([@witt-bit](https://github.com/witt-bit))**: [14 January 2025](https://github.com/tldr-pages/tldr/issues/15514) — present - **Amine LOUHICHI ([@aminelch](https://github.com/aminelch))**: -[08 April 2025](https://github.com/tldr-pages/tldr/issues/16126) — present + [08 April 2025](https://github.com/tldr-pages/tldr/issues/16126) — present +- **Dylan McGivern ([@dmmqz](https://github.com/dmmqz))**: + [30 May 2025](https://github.com/tldr-pages/tldr/issues/16671) — 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)): From c61728e92f6f2d6d1e488dc848d4a0a8a8f11a11 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 30 May 2025 17:04:59 +0000 Subject: [PATCH 052/141] zip: fix page and update Dutch translation (#16662) --- pages.nl/common/zip.md | 26 +++++++++++++------------- pages/common/zip.md | 6 +++--- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/pages.nl/common/zip.md b/pages.nl/common/zip.md index 4400648e4f..c35cccb651 100644 --- a/pages.nl/common/zip.md +++ b/pages.nl/common/zip.md @@ -4,30 +4,30 @@ > Bekijk ook: `unzip`. > Meer informatie: . -- Voeg bestanden/directories toe aan een specifiek archief ([r]ecursief): +- Voeg bestanden/mappen toe aan een specifiek archief: -`zip -r {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}}` +`zip {{[-r|--recurse-paths]}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` -- Verwijder bestanden/directories uit een specifiek archief ([d]elete): +- Verwijder bestanden/mappen uit een specifiek archief: -`zip -d {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}}` +`zip {{[-d|--delete]}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` -- Archiveer bestanden/directories waarbij opgegeven bestanden worden uitgesloten: +- Archiveer bestanden/mappen waarbij opgegeven bestanden worden uitgesloten: -`zip -r {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}} -x {{pad/naar/uitgesloten_bestanden_of_directories}}` +`zip {{[-r|--recurse-paths]}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}} {{[-x|--exclude]}} {{pad/naar/uitgesloten_bestanden_of_mappen}}` -- Archiveer bestanden/directories met een specifieke compressieniveau (`0` - het laagste, `9` - het hoogste): +- Archiveer bestanden/mappen met een specifieke compressieniveau (`0` - het laagste, `9` - het hoogste): -`zip -r -{{0..9}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}}` +`zip {{[-r|--recurse-paths]}} -{{0..9}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` -- Maak een [e]ncrypted archief met een specifiek wachtwoord: +- Maak een encrypted archief met een specifiek wachtwoord: -`zip -r -e {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}}` +`zip {{[-re|--recurse-paths --encrypt]}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` -- Archiveer bestanden/directories in een multipart [s]plit Zip-archief (bijv. 3 GB delen): +- Archiveer bestanden/mappen in een multipart split Zip-archief (bijv. 3 GB delen): -`zip -r -s {{3g}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_directory1 pad/naar/bestand_of_directory2 ...}}` +`zip {{[-rs|--recurse-paths --split-size]}} {{3g}} {{pad/naar/gecomprimeerd.zip}} {{pad/naar/bestand_of_map1 pad/naar/bestand_of_map2 ...}}` - Print de inhoud van een specifiek archief: -`zip -sf {{pad/naar/gecomprimeerd.zip}}` +`zip {{[-sf|--split-size --freshen]}} {{pad/naar/gecomprimeerd.zip}}` diff --git a/pages/common/zip.md b/pages/common/zip.md index cc93668605..5c4bf47040 100644 --- a/pages/common/zip.md +++ b/pages/common/zip.md @@ -14,7 +14,7 @@ - Archive files/directories excluding specified ones: -`zip {{[-r|--recurse-paths]}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{-x|--exclude}} {{path/to/excluded_files_or_directories}}` +`zip {{[-r|--recurse-paths]}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}} {{[-x|--exclude]}} {{path/to/excluded_files_or_directories}}` - Archive files/directories with a specific compression level (`0` - the lowest, `9` - the highest): @@ -22,11 +22,11 @@ - Create an encrypted archive with a specific password: -`zip {{[-r|--recurse-paths]}} {{[-e|--encrypt]}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` +`zip {{[-re|--recurse-paths --encrypt]}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` - Archive files/directories to a multi-part split Zip archive (e.g. 3 GB parts): -`zip {{[-r|--recurse-paths]}} {{[-s|--split-size]}} {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` +`zip {{[-rs|--recurse-paths --split-size]}} {{3g}} {{path/to/compressed.zip}} {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}` - Print a specific archive contents: From 17f11468f1541286e60d7d800e2e6e74d7e47443 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Fri, 30 May 2025 17:05:14 +0000 Subject: [PATCH 053/141] paste, sum, which: update Dutch translation (#16668) --- pages.nl/common/paste.md | 8 ++++---- pages.nl/common/sum.md | 2 +- pages.nl/common/which.md | 2 +- pages/common/paste.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pages.nl/common/paste.md b/pages.nl/common/paste.md index e0c8bff8ad..71553fdf93 100644 --- a/pages.nl/common/paste.md +++ b/pages.nl/common/paste.md @@ -5,11 +5,11 @@ - Voeg alle regels samen tot één enkele regel, met TAB als scheidingsteken: -`paste -s {{pad/naar/bestand}}` +`paste {{[-s|--serial]}} {{pad/naar/bestand}}` - Voeg alle regels samen tot één enkele regel, met het opgegeven scheidingsteken: -`paste -s -d {{scheidingsteken}} {{pad/naar/bestand}}` +`paste {{[-sd|--serial --delimiters]}} {{scheidingsteken}} {{pad/naar/bestand}}` - Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met TAB als scheidingsteken: @@ -17,8 +17,8 @@ - Voeg twee bestanden zij aan zij samen, elk in zijn kolom, met het opgegeven scheidingsteken: -`paste -d {{scheidingsteken}} {{pad/naar/bestand1}} {{pad/naar/bestand2}}` +`paste {{[-d|--delimiters]}} {{scheidingsteken}} {{pad/naar/bestand1}} {{pad/naar/bestand2}}` - Voeg twee bestanden samen, met afwisselend toegevoegde regels: -`paste -d '\n' {{pad/naar/bestand1}} {{pad/naar/bestand2}}` +`paste {{[-d|--delimiters]}} '\n' {{pad/naar/bestand1}} {{pad/naar/bestand2}}` diff --git a/pages.nl/common/sum.md b/pages.nl/common/sum.md index 1e5dd469bc..5890f9c1d2 100644 --- a/pages.nl/common/sum.md +++ b/pages.nl/common/sum.md @@ -10,4 +10,4 @@ - Bereken een checksum met een System V-compatibel algoritme en 512-byte blokken: -`sum --sysv {{pad/naar/bestand}}` +`sum {{[-s|--sysv]}} {{pad/naar/bestand}}` diff --git a/pages.nl/common/which.md b/pages.nl/common/which.md index 33ec0e2ad1..ecc86ed1d1 100644 --- a/pages.nl/common/which.md +++ b/pages.nl/common/which.md @@ -9,4 +9,4 @@ - Als er meerdere uitvoerbare bestanden zijn die overeenkomen, toon ze allemaal: -`which -a {{uitvoerbaar_bestand}}` +`which {{[-a|--all]}} {{uitvoerbaar_bestand}}` diff --git a/pages/common/paste.md b/pages/common/paste.md index bc9e3e01aa..19d8883e41 100644 --- a/pages/common/paste.md +++ b/pages/common/paste.md @@ -9,7 +9,7 @@ - Join all the lines into a single line, using the specified delimiter: -`paste {{[-s|--serial]}} {{[-d|--delimiters]}} {{delimiter}} {{path/to/file}}` +`paste {{[-sd|--serial --delimiters]}} {{delimiter}} {{path/to/file}}` - Merge two files side by side, each in its column, using TAB as delimiter: From 2bb98024cc345a5cec7f4d80f9856721b86c028d Mon Sep 17 00:00:00 2001 From: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Date: Fri, 30 May 2025 21:31:31 +0300 Subject: [PATCH 054/141] az-quantum: add page (#16630) --- pages/common/az-quantum.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/az-quantum.md diff --git a/pages/common/az-quantum.md b/pages/common/az-quantum.md new file mode 100644 index 0000000000..ab63e4f89c --- /dev/null +++ b/pages/common/az-quantum.md @@ -0,0 +1,36 @@ +# az quantum + +> Manage Azure Quantum workspaces and submit quantum jobs to providers (preview, requires quantum extension). +> More information: . + +- Create a new Azure Quantum workspace: + +`az quantum workspace create {{[-g|--resource-group]}} {{ResourceGroup}} {{[-l|--location]}} {{Location}} {{[-w|--workspace-name]}} {{Workspace}} {{[-a|--storage-account]}} {{MyStorageAccountName}}` + +- List all Azure Quantum workspaces: + +`az quantum workspace list` + +- Set a default Azure Quantum workspace: + +`az quantum workspace set {{[-g|--resource-group]}} {{ResourceGroup}} {{[-w|--workspace-name]}} {{Workspace}}` + +- Submit a QIR quantum job to a target: + +`az quantum job submit {{[-g|--resource-group]}} {{ResourceGroup}} {{[-w|--workspace-name]}} {{Workspace}} {{[-l|--location]}} {{Location}} {{[-t|--target-id]}} {{Id}} --job-name {{Job}} --job-input-file {{QirBitcode.bc}} --job-input-format {{qir.v1}}` + +- List all jobs in a Quantum Workspace: + +`az quantum job list {{[-g|--resource-group]}} {{ResourceGroup}} {{[-l|--location]}} {{Location}} {{[-w|--workspace-name]}} {{Workspace}}` + +- Get the output of a quantum job: + +`az quantum job output {{[-g|--resource-group]}} {{ResourceGroup}} {{[-w|--workspace-name]}} {{Workspace}} --job-id {{Job}}` + +- List available provider offerings in a location: + +`az quantum offerings list {{[-l|--location]}} {{Location}}` + +- Set a default target for job submissions: + +`az quantum target set {{[-t|--target-id]}} {{Id}}` From 4a4313b01ddc137f20dc574c14d15bc47fbcf2b1 Mon Sep 17 00:00:00 2001 From: the0xdev <161789357+the0xdev@users.noreply.github.com> Date: Fri, 30 May 2025 18:32:49 +0000 Subject: [PATCH 055/141] ludusavi: add page (#16627) Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages/common/ludusavi.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/ludusavi.md diff --git a/pages/common/ludusavi.md b/pages/common/ludusavi.md new file mode 100644 index 0000000000..ccee950eea --- /dev/null +++ b/pages/common/ludusavi.md @@ -0,0 +1,24 @@ +# ludusavi + +> Backup video game save data. +> More information: . + +- Backup games: + +`ludusavi backup --path {{path/to/backup}}` + +- Restore games: + +`ludusavi restore --path {{path/to/backup}} {{"game1" "game2" ...}}` + +- List backups: + +`ludusavi backups --path {{path/to/backup}}` + +- Wrap launcher game: + +`ludusavi wrap --gui --infer {{heroic|lutris|steam}} -- {{game_launch_commands}}` + +- Wrap standalone game: + +`ludusavi wrap --gui --name {{name}} -- {{game_launch_commands}}` From 191631d8815374780d737ac5f034d27125752866 Mon Sep 17 00:00:00 2001 From: Paulo <58347646+TheS1lentArr0w@users.noreply.github.com> Date: Fri, 30 May 2025 19:34:01 +0100 Subject: [PATCH 056/141] pokego: add page (#16611) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/linux/pokego.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/linux/pokego.md diff --git a/pages/linux/pokego.md b/pages/linux/pokego.md new file mode 100644 index 0000000000..6dbaf3b2cb --- /dev/null +++ b/pages/linux/pokego.md @@ -0,0 +1,25 @@ +# pokego + +> Displays Pokémon sprites in color directly in your terminal. +> Inspired by Phoney badger's `pokemon-colorscripts` but offers enhanced speed and efficiency. +> More information: . + +- Print a specific Pokémon: + +`pokego --name charizard` + +- Print a specific shiny Pokémon: + +`pokego --name spheal -shiny` + +- Print an alternative form of a Pokémon: + +`pokego --name blastoise --form mega` + +- Print random Pokémon from generations 1-3 (range): + +`pokego --random 1-3` + +- Do not display Pokémon name (default: false): + +`pokego --random 1-3 --no-title` From c1e3090708984d9b1cec00e85063bda2bcb9f61e Mon Sep 17 00:00:00 2001 From: unixkiwi Date: Sat, 31 May 2025 07:21:44 +0200 Subject: [PATCH 057/141] hyprctl: add German translation (#16639) --- pages.de/linux/hyprctl.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages.de/linux/hyprctl.md diff --git a/pages.de/linux/hyprctl.md b/pages.de/linux/hyprctl.md new file mode 100644 index 0000000000..73791212d4 --- /dev/null +++ b/pages.de/linux/hyprctl.md @@ -0,0 +1,32 @@ +# hyprctl + +> Steuere Teile des Hyprland Wayland-Compositors. +> Weitere Informationen: . + +- Lade die Hyprland-Konfiguration neu: + +`hyprctl reload` + +- Gib den Namen das aktiven Fensters zurück: + +`hyprctl activewindow` + +- Zeige eine Liste aller verbundenen Eingabegeräte: + +`hyprctl devices` + +- Zeige eine Liste aller Ausgänge mit ihren jeweiligen Eigenschaften: + +`hyprctl workspaces` + +- Rufe einen Dispatcher auf: + +`hyprctl dispatch {{dispatcher}}` + +- Setzte ein Konfigurations-Schlüsselwort dynamisch: + +`hyprctl keyword {{keyword}} {{value}}` + +- Zeige die Version: + +`hyprctl version` From 3b9a1645dd1272c05bbf51baff81562589a2bb9b Mon Sep 17 00:00:00 2001 From: James C Craven <142930758+4jamesccraven@users.noreply.github.com> Date: Sat, 31 May 2025 01:22:55 -0400 Subject: [PATCH 058/141] nix*: add Spanish translations (#16545) --- pages.es/common/nix-build.2.md | 13 ++++++++++ pages.es/common/nix-build.3.md | 21 +++++++++++++++ pages.es/common/nix-build.md | 11 ++++++++ pages.es/common/nix-collect-garbage.md | 17 ++++++++++++ pages.es/common/nix-develop.md | 16 ++++++++++++ pages.es/common/nix-edit.md | 12 +++++++++ pages.es/common/nix-env.md | 36 ++++++++++++++++++++++++++ pages.es/common/nix-flake.md | 24 +++++++++++++++++ pages.es/common/nix-profile.md | 28 ++++++++++++++++++++ pages.es/common/nix-registry.md | 25 ++++++++++++++++++ pages.es/common/nix-repl.md | 25 ++++++++++++++++++ pages.es/common/nix-run.md | 33 +++++++++++++++++++++++ pages.es/common/nix-search.md | 17 ++++++++++++ pages.es/common/nix-shell.2.md | 29 +++++++++++++++++++++ pages.es/common/nix-shell.3.md | 25 ++++++++++++++++++ pages.es/common/nix-shell.md | 11 ++++++++ pages.es/common/nix-store.2.md | 29 +++++++++++++++++++++ pages.es/common/nix-store.3.md | 25 ++++++++++++++++++ pages.es/common/nix-store.md | 11 ++++++++ pages.es/common/nix-why-depends.md | 12 +++++++++ pages.es/common/nix.md | 34 ++++++++++++++++++++++++ pages.es/common/nixpkgs-review.md | 29 +++++++++++++++++++++ pages.es/linux/nixos-container.md | 28 ++++++++++++++++++++ pages.es/linux/nixos-option.md | 28 ++++++++++++++++++++ pages.es/linux/nixos-rebuild.md | 36 ++++++++++++++++++++++++++ 25 files changed, 575 insertions(+) create mode 100644 pages.es/common/nix-build.2.md create mode 100644 pages.es/common/nix-build.3.md create mode 100644 pages.es/common/nix-build.md create mode 100644 pages.es/common/nix-collect-garbage.md create mode 100644 pages.es/common/nix-develop.md create mode 100644 pages.es/common/nix-edit.md create mode 100644 pages.es/common/nix-env.md create mode 100644 pages.es/common/nix-flake.md create mode 100644 pages.es/common/nix-profile.md create mode 100644 pages.es/common/nix-registry.md create mode 100644 pages.es/common/nix-repl.md create mode 100644 pages.es/common/nix-run.md create mode 100644 pages.es/common/nix-search.md create mode 100644 pages.es/common/nix-shell.2.md create mode 100644 pages.es/common/nix-shell.3.md create mode 100644 pages.es/common/nix-shell.md create mode 100644 pages.es/common/nix-store.2.md create mode 100644 pages.es/common/nix-store.3.md create mode 100644 pages.es/common/nix-store.md create mode 100644 pages.es/common/nix-why-depends.md create mode 100644 pages.es/common/nix.md create mode 100644 pages.es/common/nixpkgs-review.md create mode 100644 pages.es/linux/nixos-container.md create mode 100644 pages.es/linux/nixos-option.md create mode 100644 pages.es/linux/nixos-rebuild.md diff --git a/pages.es/common/nix-build.2.md b/pages.es/common/nix-build.2.md new file mode 100644 index 0000000000..c0dbdf4158 --- /dev/null +++ b/pages.es/common/nix-build.2.md @@ -0,0 +1,13 @@ +# nix-build + +> Construye una expresión de Nix. +> Vea también: `nix build.3`. +> Más información: . + +- Construye una expresión de Nix: + +`nix-build '' {{[-A|--attr]}} {{firefox}}` + +- Construye una expresión de Nix aislada (en sistemas que no son NixOS): + +`nix-build '' {{[-A|--attr]}} {{firefox}} --option sandbox true` diff --git a/pages.es/common/nix-build.3.md b/pages.es/common/nix-build.3.md new file mode 100644 index 0000000000..94db6db0b1 --- /dev/null +++ b/pages.es/common/nix-build.3.md @@ -0,0 +1,21 @@ +# nix build + +> Construye una expresión de Nix (descargando desde caché cuando sea posible). +> Vea también: `nix-build` para información sobre construcciones tradicionales de Nix desde expresiones, `nix flake` para información sobre los flakes. +> Más información: . + +- Construye un paquete desde nixpkgs, creando un enlace simbólico al resultado en `./result`: + +`nix build {{nixpkgs#pkg}}` + +- Construye un paquete desde un flake en el directorio actual, mostrando el registro de construcción en el proceso: + +`nix build -L {{.#pkg}}` + +- Construye el paquete predeterminado de un flake en algún directorio: + +`nix build {{./ruta/al/directorio}}` + +- Construye un paquete sin hacer el enlace simbólico `result`, mostrando a su vez la ruta del almacén de Nix en `stdout`: + +`nix build --no-link --print-out-paths` diff --git a/pages.es/common/nix-build.md b/pages.es/common/nix-build.md new file mode 100644 index 0000000000..d0ecb70a02 --- /dev/null +++ b/pages.es/common/nix-build.md @@ -0,0 +1,11 @@ +# nix-build + +> `nix-build` puede referirse a múltiples comandos con el mismo nombre. + +- Vea la documentación para el constructor tradicional: + +`tldr nix-build.2` + +- Vea la documentación para el constructor nix3: + +`tldr nix build.3` diff --git a/pages.es/common/nix-collect-garbage.md b/pages.es/common/nix-collect-garbage.md new file mode 100644 index 0000000000..c455bf306a --- /dev/null +++ b/pages.es/common/nix-collect-garbage.md @@ -0,0 +1,17 @@ +# nix-collect-garbage + +> Elimina rutas del almacén de nix desusados o inalcanzables. +> Las generaciones se pueden listar usando `nix-env --list-generations`. +> Más información: . + +- Elimina todas las rutas del almacén desusados por las generaciones actuales de cada perfil: + +`sudo nix-collect-garbage {{[-d|--delete-old]}}` + +- Simula la eliminación de rutas del almacén antiguas: + +`sudo nix-collect-garbage {{[-d|--delete-old]}} --dry-run` + +- Elimina todas las rutas del almacén más antiguas que 30 días: + +`sudo nix-collect-garbage --delete-older-than 30d` diff --git a/pages.es/common/nix-develop.md b/pages.es/common/nix-develop.md new file mode 100644 index 0000000000..fffa07e83d --- /dev/null +++ b/pages.es/common/nix-develop.md @@ -0,0 +1,16 @@ +# nix develop + +> Ejecuta un shell de Bash que provee el entorno de construcción de una derivación. +> Más información: . + +- Ejecuta un shell con todas las dependencias de un paquete de nixpkgs disponibles: + +`nix develop {{nixpkgs#pkg}}` + +- Inicia un shell para desarrollo para el paquete predeterminado de un flake en el directorio actual: + +`nix develop` + +- En ese shell, configura y construye los códigos fuentes: + +`configurePhase; buildPhase` diff --git a/pages.es/common/nix-edit.md b/pages.es/common/nix-edit.md new file mode 100644 index 0000000000..68be9806ad --- /dev/null +++ b/pages.es/common/nix-edit.md @@ -0,0 +1,12 @@ +# nix edit + +> Abre la expresión de Nix de un paquete Nix dentro de $EDITOR. +> Más información: . + +- Abre el código fuente de la expresión Nix de un paquete de nixpkgs dentro de tu `$EDITOR`: + +`nix edit {{nixpkgs#pkg}}` + +- Vuelca el código fuente de un paquete en `stdout`: + +`EDITOR=cat nix edit {{nixpkgs#pkg}}` diff --git a/pages.es/common/nix-env.md b/pages.es/common/nix-env.md new file mode 100644 index 0000000000..a9e145d565 --- /dev/null +++ b/pages.es/common/nix-env.md @@ -0,0 +1,36 @@ +# nix-env + +> Manipula o consulta entornos de usuario de Nix. +> Más información: . + +- Lista todos los paquetes instalados: + +`nix-env {{[-q|--query]}}` + +- Consulta los paquetes instalados: + +`nix-env {{[-q|--query]}} {{término_de_búsqueda}}` + +- Consulta los paquetes disponibles: + +`nix-env {{[-qa|--query --available]}} {{término_de_búsqueda}}` + +- Instala un paquete: + +`nix-env {{[-iA|--install --attr]}} nixpkgs.{{nombre_del_paquete}}` + +- Instala un paquete desde un enlace: + +`nix-env {{[-i|--install]}} {{nombre_del_paquete}} {{[-f|--file]}} {{example.com}}` + +- Desinstala un paquete: + +`nix-env {{[-e|--uninstall]}} {{nombre_del_paquete}}` + +- Actualiza un paquete: + +`nix-env {{[-u|--upgrade]}} {{nombre_del_paquete}}` + +- Actualiza todos los paquetes: + +`nix-env {{[-u|--upgrade]}}` diff --git a/pages.es/common/nix-flake.md b/pages.es/common/nix-flake.md new file mode 100644 index 0000000000..0e224243ce --- /dev/null +++ b/pages.es/common/nix-flake.md @@ -0,0 +1,24 @@ +# nix flake + +> Administra los flakes de Nix. +> Más información: . + +- Crea un flake nuevo (solo el archivo `flake.nix`) usando la plantilla predeterminada, en el directorio actual: + +`nix flake init` + +- Actualiza todos las entradas (dependencias) del flake en el directorio actual: + +`nix flake update` + +- Actualiza una entrada específica (dependencia) del flake en el directorio actual: + +`nix flake lock --update-input {{entrada}}` + +- Muestra todas the salidas de un flake en github: + +`nix flake show {{github:dueño/repositorio}}` + +- Muestra ayuda: + +`nix flake --help` diff --git a/pages.es/common/nix-profile.md b/pages.es/common/nix-profile.md new file mode 100644 index 0000000000..7614b47225 --- /dev/null +++ b/pages.es/common/nix-profile.md @@ -0,0 +1,28 @@ +# nix profile + +> Instala, actualiza y quita paquetes de perfiles de Nix. +> Más información: . + +- Instala unos paquetes desde nixpkgs al perfil predeterminado: + +`nix profile install {{nixpkgs#pkg1 nixpkgs#pkg2 ...}}` + +- Instala un paquete desde un flake en GitHub a un perfil específico: + +`nix profile install {{github:dueño/repositorio/paquete}} --profile {{./ruta/al/directorio}}` + +- Lista los paquetes instalados actualmente en el perfil predeterminado: + +`nix profile list` + +- Quita un paquete instalado desde nixpkgs del perfil predeterminado, por nombre: + +`nix profile remove {{legacyPackages.x86_64-linux.pkg}}` + +- Actualiza paquetes en el perfil predeterminado a la versión más reciente disponible: + +`nix profile upgrade` + +- Revierte (cancela) la acción más reciente en el perfil predeterminado: + +`nix profile rollback` diff --git a/pages.es/common/nix-registry.md b/pages.es/common/nix-registry.md new file mode 100644 index 0000000000..5de51177cf --- /dev/null +++ b/pages.es/common/nix-registry.md @@ -0,0 +1,25 @@ +# nix registry + +> Administra un registro de un flake de nix. +> Vea tambiém: `nix flake` para información sobre los flakes. +> Más información: . + +- Fija la revisión de `nixpkgs` a la versión actual del repositorio upstream: + +`nix registry pin {{nixpkgs}}` + +- Fija una entrada a la versión actual de la rama, o una revisión particular de un repositorio de GitHub: + +`nix registry pin {{entrada}} {{github:dueño/repositorio/rama_o_revisión}}` + +- Añade una entrada nueva que siempre apunta a la versión más reciente de un repositorio de GitHub, actualizando automáticamente: + +`nix registry add {{entrada}} {{github:dueño/repositorio}}` + +- Quita una entrada del registro: + +`nix registry remove {{entrada}}` + +- Vea la documentación sobre lo que son los registros de flakes de nix: + +`nix registry --help` diff --git a/pages.es/common/nix-repl.md b/pages.es/common/nix-repl.md new file mode 100644 index 0000000000..d7728b8cab --- /dev/null +++ b/pages.es/common/nix-repl.md @@ -0,0 +1,25 @@ +# nix repl + +> Inicia un entorno interactivo para evaluar expresiones de Nix. +> Vea para una descripción del lenguaje de expresiones de Nix. +> Más información: . + +- Inicia un entorno interactivo para evaluar expresiones de Nix: + +`nix repl` + +- Carga todos los paquetes desde un flake (ej. `nixpkgs`) al ámbito: + +`:lf {{nixpkgs}}` + +- Construye un paquete desde una expresión: + +`:b {{expresión}}` + +- Inicia un shell con un paquete de la expresión disponible: + +`:u {{expresión}}` + +- Inicia un shell con las dependencias del paquete de la expresión disponible: + +`:s {{expresión}}` diff --git a/pages.es/common/nix-run.md b/pages.es/common/nix-run.md new file mode 100644 index 0000000000..e2cfa9e3ca --- /dev/null +++ b/pages.es/common/nix-run.md @@ -0,0 +1,33 @@ +# nix run + +> Ejecuta una aplicación desde un flake de Nix. +> Vea también: `nix flake` para información sobre los flakes. +> Más información: . + +- Ejecuta la aplicación predeterminada del flake en el directorio actual: + +`nix run` + +- Ejecuta un comando cuyo nombre iguala el nombre de un paquete de nixpkgs (si quieres un comando diferente de ese paquete, ver también `tldr nix shell`): + +`nix run nixpkgs#{{pkg}}` + +- Ejecuta un comando con los argumentos proporcionados: + +`nix run nixpkgs#{{vim}} -- {{ruta/al/archivo}}` + +- Ejecuta desde un repositorio remoto: + +`nix run {{nombre_de_remoto}}:{{dueño}}/{{repositorio}}` + +- Ejecuta desde un repositorio remoto usando una etiqueta específica, revisión o rama: + +`nix run {{nombre_de_remoto}}:{{dueño}}/{{repositorio}}/{{referencia}}` + +- Ejecuta desde un repositorio remoto especificando un subdirectorio y un programa: + +`nix run "{{nombre_de_remoto}}:{{dueño}}/{{repositorio}}?dir={{nombre_del_directorio}}#{{aplicación}}"` + +- Ejecuta el flake de una solicitud de incorporación de cambios de GitHub: + +`nix run github:{{dueño}}/{{repositorio}}/pull/{{número}}/head` diff --git a/pages.es/common/nix-search.md b/pages.es/common/nix-search.md new file mode 100644 index 0000000000..030b15c4fc --- /dev/null +++ b/pages.es/common/nix-search.md @@ -0,0 +1,17 @@ +# nix search + +> Busca paquetes en un flake de Nix. +> Vea también: `nix flake` para información sobre los flakes. +> Más información: . + +- Busca `nixpkgs` para un paquete basado en su nombre o descripción: + +`nix search {{nixpkgs}} {{término_de_búsqeda}}` + +- Muestra la descripción de un paquete de nixpkgs: + +`nix search {{nixpkgs#pkg}}` + +- Muestra todos los paquetes disponibles de un flake en Github: + +`nix search {{github:dueño/repositorio}}` diff --git a/pages.es/common/nix-shell.2.md b/pages.es/common/nix-shell.2.md new file mode 100644 index 0000000000..7616d01c8e --- /dev/null +++ b/pages.es/common/nix-shell.2.md @@ -0,0 +1,29 @@ +# nix-shell + +> Inicia un shell interactivo basado on una expresión de Nix. +> Vea también: `nix shell.3`. +> Más información: . + +- Inicia con una expresión de nix en `shell.nix` o `default.nix` del directorio actual: + +`nix-shell` + +- Ejecuta un comando de shell en un shell no interactivo y sale: + +`nix-shell --run "{{comando}} {{argumento1 argumento2 ...}}"` + +- Ejecuta con la expresión en `default.nix` en el directorio actual: + +`nix-shell {{default.nix}}` + +- Inicia con paquetes cargados de nixpkgs: + +`nix-shell {{[-p|--packages]}} {{paquete1 paquete2 ...}}` + +- Inicia con paquetes cargados desde una revisión específica de nixpkgs: + +`nix-shell {{[-p|--packages]}} {{paquete1 paquete2 ...}} {{[-I|--include]}} nixpkgs={{https://github.com/NixOS/nixpkgs/archive/revision_de_nixpkgs.tar.gz}}` + +- Evalua el resto de un archivo en un interpretador, para usarse con `#!-scripts` (vea también ): + +`nix-shell -i {{interpretador}} {{[-p|--packages]}} {{paquete1 paquete2 ...}}` diff --git a/pages.es/common/nix-shell.3.md b/pages.es/common/nix-shell.3.md new file mode 100644 index 0000000000..a15a2d3120 --- /dev/null +++ b/pages.es/common/nix-shell.3.md @@ -0,0 +1,25 @@ +# nix shell + +> Inicia un shell en lo cual los paquetes especificados están disponibles. +> Vea también: `nix-shell` para armar un entorno de desarrollo, `nix flake` para información sobre los flakes. +> Más información: . + +- Inicia un shell interactivo con unos paquetes de `nixpkgs`: + +`nix shell {{nixpkgs#pkg1 nixpkgs#packageSet.pkg2 ...}}` + +- Inicia un shell que provee un paquete de una versión más antigua de `nixpkgs` (21.05): + +`nix shell {{nixpkgs/nixos-21.05#pkg}}` + +- Inicia un shell con el "paquete predeterminado" de un flake en el directorio actual, mostrando un registro de construcción si es que algo se construye: + +`nix shell -L` + +- Inicia un shell con un paquete de un flake en GitHub: + +`nix shell {{github:dueño/repositorio#pkg}}` + +- Ejecuta un comando en un shell con un paquete: + +`nix shell {{nixpkgs#pkg}} -c {{comando --una-bandera 'otros argumentos'}}` diff --git a/pages.es/common/nix-shell.md b/pages.es/common/nix-shell.md new file mode 100644 index 0000000000..7939e992b3 --- /dev/null +++ b/pages.es/common/nix-shell.md @@ -0,0 +1,11 @@ +# nix-shell + +> `nix-shell` puede referirse a múltiples comandos con el mismo nombre. + +- Vea la documentación para el shell tradicional: + +`tldr nix-shell.2` + +- Vea la documentación para el shell de nix3: + +`tldr nix shell.3` diff --git a/pages.es/common/nix-store.2.md b/pages.es/common/nix-store.2.md new file mode 100644 index 0000000000..6d74f89b28 --- /dev/null +++ b/pages.es/common/nix-store.2.md @@ -0,0 +1,29 @@ +# nix-store + +> Manipula o busca en el almacén de Nix. +> Vea también: `nix store.3`. +> Más información: . + +- Recolecta basura, por ejemplo quitar las rutas desusadas: + +`nix-store --gc` + +- Crea un enlace físico entre archivos idénticos para reducir el uso de disco: + +`nix-store --optimise` + +- Elimina una ruta específica en el almacén (debe ser desusada): + +`nix-store --delete {{/nix/store/...}}` + +- Muestra todas las dependencias de una ruta del almacén (paquete), en un formato de árbol: + +`nix-store {{[-q|--query]}} --tree {{/nix/store/...}}` + +- Calcula el tamaño total de una ruta específica del almacén con todas las dependencias: + +`du {{[-cLsh|--total --dereference --summarize --human-readable]}} $(nix-store {{[-q|--query]}} --references {{/nix/store/...}})` + +- Muestra todos los dependientes de una ruta particular del almacén: + +`nix-store {{[-q|--query]}} --referrers {{/nix/store/...}}` diff --git a/pages.es/common/nix-store.3.md b/pages.es/common/nix-store.3.md new file mode 100644 index 0000000000..b30ea0ca12 --- /dev/null +++ b/pages.es/common/nix-store.3.md @@ -0,0 +1,25 @@ +# nix store + +> Manipula el almacén de Nix. +> Vea también: `nix-store`. +> Más información: . + +- Recolecta basura, es decir, elimina rutas desusadas para reducir el uso de disco: + +`nix store gc` + +- Crea un enlace físico entre archivos idénticos para reducir el uso de disco: + +`nix store optimise` + +- Elimina una ruta específica en el almacén (debe ser desusada): + +`nix store delete {{/nix/store/...}}` + +- Lista el contenido de una ruta en el almacén, en un almacén remoto: + +`nix store --store {{https://cache.nixos.org}} ls {{/nix/store/...}}` + +- Muestra las diferencias de versiones entre dos rutas del almacén, con sus dependencias respectivas: + +`nix store diff-closures {{/nix/store/...}} {{/nix/store/...}}` diff --git a/pages.es/common/nix-store.md b/pages.es/common/nix-store.md new file mode 100644 index 0000000000..38f3d5ec59 --- /dev/null +++ b/pages.es/common/nix-store.md @@ -0,0 +1,11 @@ +# nix-store + +> `nix-store` puede referirse a múltiples comandos con el mismo nombre. + +- Vea la documentación para el almacén tradicional: + +`tldr nix-store.2` + +- Vea la documentación para el almacén nix3: + +`tldr nix store.3` diff --git a/pages.es/common/nix-why-depends.md b/pages.es/common/nix-why-depends.md new file mode 100644 index 0000000000..2446ec8620 --- /dev/null +++ b/pages.es/common/nix-why-depends.md @@ -0,0 +1,12 @@ +# nix why-depends + +> Muesta por qué un paquete depende de otro paquete. +> Más información: . + +- Muestra por qué el sistema actual de NixOS requiere una ruta del almacén específica: + +`nix why-depends {{/run/current-system}} {{/nix/store/...}}` + +- Muestra por qué un paquete de nixpkgs requiere otro paquete como una dependencia de tiempo de construcción: + +`nix why-depends --derivation {{nixpkgs#dependiente}} {{nixpkgs#dependencia}}` diff --git a/pages.es/common/nix.md b/pages.es/common/nix.md new file mode 100644 index 0000000000..e6070eef65 --- /dev/null +++ b/pages.es/common/nix.md @@ -0,0 +1,34 @@ +# nix + +> Un potente gestor de paquetes que hace la gestión de paquetes fiable, reproducible y declarativa. +> `nix` es experimental y requiere permitir funcionalidades experimentales. Para una interfaz clásica y estable, vea también `tldr nix classic`. +> Algunos subcomandos como `build`, `develop`, `flake`, `registry`, `profile`, `search`, `repl`, `store`, `edit`, `why-depends`, etc. tienen sus propias páginas. +> Más información: . + +- Habilita el comando `nix`: + +`mkdir {{[-p|--parents]}} ~/.config/nix; echo 'experimental-features = nix-command flakes' > ~/.config/nix/nix.conf` + +- Busca un paquete en nixpkgs usando su nombre o descripción: + +`nix search nixpkgs {{término_de_búsqueda}}` + +- Inicia un shell con unos paquetes de nixpkgs disponibles: + +`nix shell {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` + +- Instala unos paquetes de nixpkgs de manera permanente: + +`nix profile install {{nixpkgs#pkg1 nixpkgs#pkg2 nixpkgs#pkg3 ...}}` + +- Quita rutas desusadas del almacén de Nix para liberar espacio: + +`nix store gc` + +- Inicia un entorno interactivo para evaluar expresiones de Nix: + +`nix repl` + +- Muestra ayuda para cada subcomando específico: + +`nix help {{subcomando}}` diff --git a/pages.es/common/nixpkgs-review.md b/pages.es/common/nixpkgs-review.md new file mode 100644 index 0000000000..20ca93a687 --- /dev/null +++ b/pages.es/common/nixpkgs-review.md @@ -0,0 +1,29 @@ +# nixpkgs-review + +> Revisa solicitudes de incorporación de cambios en el repositorio de paquetes de NixOS (nixpkgs). +> Después de una construcción exitosa, un `nix-shell` con todos los paquetes se inicia. +> Más información: . + +- Construye paquetes cambiados en una solicitud especificada: + +`nixpkgs-review pr {{número_de_solicitud|url_de_solicitud}}` + +- Construye paquetes cambiados y publica un comentario con un reporte (requiere armar un token en `hub`, `gh`, o la variable del entorno `GITHUB_TOKEN`): + +`nixpkgs-review pr --post-result {{número_de_solicitud|url_de_solicitud}}` + +- Construye paquetes cambiados y muestra un reporte: + +`nixpkgs-review pr --print-result {{número_de_solicitud|url_de_solicitud}}` + +- Construye paquetes cambiados en un commit local: + +`nixpkgs-review rev {{HEAD}}` + +- Construye paquetes cambiados que todavía no hayan sido commiteados: + +`nixpkgs-review wip` + +- Construye paquetes cambiados que hayan sido añadidos a git: + +`nixpkgs-review wip --staged` diff --git a/pages.es/linux/nixos-container.md b/pages.es/linux/nixos-container.md new file mode 100644 index 0000000000..772ee9565b --- /dev/null +++ b/pages.es/linux/nixos-container.md @@ -0,0 +1,28 @@ +# nixos-container + +> Inicia contenedores de NixOS usando contenedores de Linux. +> Más información: . + +- Lista contenedores activos: + +`sudo nixos-container list` + +- Crea un contenedor de NixOS con un archivo de configuración específico: + +`sudo nixos-container create {{nombre_del_contenedor}} --config-file {{ruta_a_la_configuracion_de_nix}}` + +- Inicia, detiene, termina o destruye un contenedor específico: + +`sudo nixos-container {{start|stop|terminate|destroy|status}} {{nombre_del_contenedor}}` + +- Ejecuta un comando dentro de un contenedor activo: + +`sudo nixos-container run {{nombre_del_contenedor}} -- {{comando}} {{argumentos_del_comando}}` + +- Actualiza la configuración de un contenedor: + +`sudo $EDITOR /var/lib/container/{{nombre_del_contenedor}}/etc/nixos/configuration.nix && sudo nixos-container update {{nombre_del_contenedor}}` + +- Entra a una sesión de shell interactivo en un contenedor que ya está activo: + +`sudo nixos-container root-login {{nombre_del_contenedor}}` diff --git a/pages.es/linux/nixos-option.md b/pages.es/linux/nixos-option.md new file mode 100644 index 0000000000..7219f5445a --- /dev/null +++ b/pages.es/linux/nixos-option.md @@ -0,0 +1,28 @@ +# nixos-option + +> Inspecciona una configuración de NixOS. +> Más información: . + +- Lista todas las subclaves de una clave de opciones proporcionadas: + +`nixos-option {{clave}}` + +- Lista los módulos de arranque del kernel actuales: + +`nixos-option boot.kernelModules` + +- Lista claves autorizadas para un usuario específico: + +`nixos-option users.users.{{nombre_del_usuario}}.openssh.authorizedKeys.{{archivoDeClaves|clave}}` + +- Lista todos los constructores remotos: + +`nixos-option nix.buildMachines` + +- Lista todas las subclaves de una clave proporcionada en otra configuración de NixOS: + +`NIXOS_CONFIG={{ruta_a_configuracion.nix}} nixos-option {{clave}}` + +- Muestra recursivamente todos los valores de un usuario: + +`nixos-option {{[-r|--recursive]}} users.users.{{usuario}}` diff --git a/pages.es/linux/nixos-rebuild.md b/pages.es/linux/nixos-rebuild.md new file mode 100644 index 0000000000..60ee5147ab --- /dev/null +++ b/pages.es/linux/nixos-rebuild.md @@ -0,0 +1,36 @@ +# nixos-rebuild + +> Reconfigura una máquina de NixOS. +> Más información: . + +- Construye y cambia a la configuración nueva, haciéndola la predeterminada al arrancar el sistema: + +`sudo nixos-rebuild switch` + +- Construye y cambia a la configuración nueva, haciéndola la predeterminada al arrancar el sistema (con un nombre): + +`sudo nixos-rebuild switch {{[-p|--profile-name]}} {{nombre}}` + +- Construye y cambia a la configuración nueva, haciéndola la predeterminada al arrancar el sistema e instalando actualizaciones: + +`sudo nixos-rebuild switch --upgrade` + +- Revierte cambios a la configuración, cambiando a la generación previa: + +`sudo nixos-rebuild switch --rollback` + +- Construye la configuración nueva y la predetermina sin cambiar a ella: + +`sudo nixos-rebuild boot` + +- Construye y activa la configuración nueva, pero no la haga la entrada de arranque predeterminada (solo para finalidad de pruebas): + +`sudo nixos-rebuild test` + +- Construye la configuración nueva y la abre en un hipervisor: + +`sudo nixos-rebuild build-vm` + +- Lista generaciones disponibles similarmente al menú del cargador de arranque: + +`nixos-rebuild list-generations` From e463eb69e8e29b7e4a53aa2baf40f24fa6b1c18c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:23:08 -0300 Subject: [PATCH 059/141] pulumi-update: add Spanish translation (#16565) --- pages.es/common/pulumi-update.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/pulumi-update.md diff --git a/pages.es/common/pulumi-update.md b/pages.es/common/pulumi-update.md new file mode 100644 index 0000000000..edc767d45e --- /dev/null +++ b/pages.es/common/pulumi-update.md @@ -0,0 +1,7 @@ +# pulumi update + +> Este comando es un alias de `pulumi up`. + +- Vea la documentación del comando original: + +`tldr pulumi up` From 0a5d705584a4eb58fffa7951f8cb37d6bbbf835c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:23:17 -0300 Subject: [PATCH 060/141] rustup-uninstall: add Spanish translation (#16566) --- pages.es/common/rustup-uninstall.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/rustup-uninstall.md diff --git a/pages.es/common/rustup-uninstall.md b/pages.es/common/rustup-uninstall.md new file mode 100644 index 0000000000..4ffa8300d1 --- /dev/null +++ b/pages.es/common/rustup-uninstall.md @@ -0,0 +1,7 @@ +# rustup uninstall + +> Este comando es un alias de `rustup toolchain uninstall`. + +- Vea la documentación del comando original: + +`tldr rustup toolchain` From e17d1b80868680d4f4971d833b685eb20c6f09c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:23:25 -0300 Subject: [PATCH 061/141] xml-c14n: add Spanish translation (#16567) --- pages.es/common/xml-c14n.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/xml-c14n.md diff --git a/pages.es/common/xml-c14n.md b/pages.es/common/xml-c14n.md new file mode 100644 index 0000000000..bcbfaa0eb6 --- /dev/null +++ b/pages.es/common/xml-c14n.md @@ -0,0 +1,7 @@ +# xml c14n + +> Este comando es un alias de `xml canonic`. + +- Vea la documentación del comando original: + +`tldr xml canonic` From a15fa3337d2461fb5d1255818f3ca80dd14f8b4c Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Sat, 31 May 2025 02:24:22 -0300 Subject: [PATCH 062/141] lvs, lvremove: add Spanish translation (#16642) --- pages.es/linux/lvremove.md | 13 +++++++++++++ pages.es/linux/lvs.md | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 pages.es/linux/lvremove.md create mode 100644 pages.es/linux/lvs.md diff --git a/pages.es/linux/lvremove.md b/pages.es/linux/lvremove.md new file mode 100644 index 0000000000..4d20b37c8b --- /dev/null +++ b/pages.es/linux/lvremove.md @@ -0,0 +1,13 @@ +# lvremove + +> Elimina volúmenes lógicos. +> Vea también: `lvm`. +> Más información: . + +- Elimina un volumen lógico de un grupo de volumen: + +`sudo lvremove {{grupo_de_volumen}}/{{volumen_lógico}}` + +- Elimina todos los volúmenes lógicos en un grupo de volumen: + +`sudo lvremove {{grupo_de_volumen}}` diff --git a/pages.es/linux/lvs.md b/pages.es/linux/lvs.md new file mode 100644 index 0000000000..8caf748288 --- /dev/null +++ b/pages.es/linux/lvs.md @@ -0,0 +1,33 @@ +# lvs + +> Imprime información sobre volúmenes lógicos. +> Vea también: `lvm`. +> Más información: . + +- Muestra información sobre volúmenes lógicos: + +`lvs` + +- Muestra todos los volúmenes lógicos: + +`lvs {{[-a|--all]}}` + +- Cambia la visualización por defecto para mostrar más detalles: + +`lvs {{[-v|--verbose]}}` + +- Muestre solo campos especificos: + +`lvs {{[-o|--options]}} {{nombre_campo_1}},{{nombre_campo_2}}` + +- Añade un campo a la visualización por defecto: + +`lvs {{[-o|--options]}} +{{nombre_campo}}` + +- Suprime linea de encabezado: + +`lvs --noheadings` + +- Usa un separador para separar los campos: + +`lvs --separator {{=}}` From 0ed3a84649b5725f4167751eec67766c2bb3c167 Mon Sep 17 00:00:00 2001 From: Rodrigo Decuir <110834031+rodecuir@users.noreply.github.com> Date: Sat, 31 May 2025 05:24:35 +0000 Subject: [PATCH 063/141] %: add Spanish translation (#16643) --- pages.es/common/%.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages.es/common/%.md diff --git a/pages.es/common/%.md b/pages.es/common/%.md new file mode 100644 index 0000000000..97de8551fd --- /dev/null +++ b/pages.es/common/%.md @@ -0,0 +1,28 @@ +# Percent sign + +> Bash incorporado para administrar los trabajos activos o suspendidos. +> Más información: . + +- Trae el trabajo actual al frente: + +`%` + +- Trae el trabajo previo al frente: + +`%-` + +- Trae el trabajo por su número `n` al frente: + +`%{{n}}` + +- Trae el trabajo cuyo comando empieza con `cadena` al frente: + +`%{{cadena}}` + +- Trae el trabajo cuyo comando contiene `cadena` al frente: + +`%?{{cadena}}` + +- Reanuda un trabajo suspendido: + +`%{{1}} &` From ef799c008b461e783dbff54402b206361d522984 Mon Sep 17 00:00:00 2001 From: Rodrigo Decuir <110834031+rodecuir@users.noreply.github.com> Date: Sat, 31 May 2025 05:24:50 +0000 Subject: [PATCH 064/141] g++: add Spanish translation (#16645) --- pages.es/common/g++.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.es/common/g++.md diff --git a/pages.es/common/g++.md b/pages.es/common/g++.md new file mode 100644 index 0000000000..211cd04d02 --- /dev/null +++ b/pages.es/common/g++.md @@ -0,0 +1,37 @@ +# g++ + +> Preprocesa y compila archivos de código fuente de C++. +> Parte de GCC (GNU Compiler Collection). +> Más información: . + +- Compila varios archivo de código fuente en un ejecutable: + +`g++ {{ruta/al/código_fuente1.cpp ruta/al/código_fuente2.cpp ...}} {{[-o|--output]}} {{ruta/al/ejecutable}}` + +- Activa todos los errores y advertencias: + +`g++ {{ruta/al/código_fuente.cpp}} -Wall {{[-o|--output]}} {{ejecutable}}` + +- Muestra advertencias comunes, añade símbolos de depuración a la salida y optimiza sin afectar la depuración: + +`g++ {{ruta/al/código_fuente.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{ruta/al/ejecutable}}` + +- Elija un lenguaje estándar para compilar (C++98/C++11/C++14/C++17): + +`g++ {{ruta/al/código_fuente.cpp}} -std={{c++98|c++11|c++14|c++17}} {{[-o|--output]}} {{ruta/al/ejecutable}}` + +- Incluye bibliotecas de una ruta diferente: + +`g++ {{ruta/al/código_fuente.cpp}} {{[-o|--output]}} {{ruta/al/ejecutable}} -I{{ruta/al/encabezado}} -L{{ruta/a/la/biblioteca}} -l{{nombre_de_la_biblioteca}}` + +- Enlaza y compila múltiples archivos en un ejecutable: + +`g++ {{[-c|--compile]}} {{ruta/al/código_fuente1.cpp ruta/al/código_fuente2.cpp ...}} && g++ {{[-o|--output]}} {{ruta/al/ejecutable}} {{ruta/al/código_fuente1.o ruta/al/código_fuente2.o ...}}` + +- Optimiza el programa compilado para mejorar la velocidad de ejecución: + +`g++ {{ruta/al/código_fuente.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{ruta/al/ejecutable}}` + +- Muestra la versión del programa: + +`g++ --version` From d2989239abec121c3ac1cd839adf023fb2b2ce57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:25:35 -0300 Subject: [PATCH 065/141] xml-p2x: add Spanish translation (#16568) --- pages.es/common/xml-p2x.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/xml-p2x.md diff --git a/pages.es/common/xml-p2x.md b/pages.es/common/xml-p2x.md new file mode 100644 index 0000000000..e57e37947d --- /dev/null +++ b/pages.es/common/xml-p2x.md @@ -0,0 +1,7 @@ +# xml p2x + +> Este comando es un alias de `xml depyx`. + +- Vea la documentación del comando original: + +`tldr xml depyx` From 9052d42bea52de54480025a8faf337a162579f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:25:59 -0300 Subject: [PATCH 066/141] xml-xmln: add Spanish translation (#16569) --- pages.es/common/xml-xmln.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/common/xml-xmln.md diff --git a/pages.es/common/xml-xmln.md b/pages.es/common/xml-xmln.md new file mode 100644 index 0000000000..33b6ca4cab --- /dev/null +++ b/pages.es/common/xml-xmln.md @@ -0,0 +1,7 @@ +# xml xmln + +> Este comando es un alias de `xml pyx`. + +- Vea la documentación del comando original: + +`tldr xml pyx` From b63d1623b65816f07f17cc988f48c64f6f64bb07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:26:09 -0300 Subject: [PATCH 067/141] lrunzip: add Spanish translation (#16571) --- pages.es/linux/lrunzip.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/linux/lrunzip.md diff --git a/pages.es/linux/lrunzip.md b/pages.es/linux/lrunzip.md new file mode 100644 index 0000000000..22411ffe54 --- /dev/null +++ b/pages.es/linux/lrunzip.md @@ -0,0 +1,7 @@ +# lrunzip + +> Este comando es un alias de `lrzip -d`. + +- Vea la documentación del comando original: + +`tldr lrzip` From 1dd39dca92e9a6507cdef49edb979745d097c9de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 31 May 2025 02:26:18 -0300 Subject: [PATCH 068/141] lrzuntar: add Spanish translation (#16572) --- pages.es/linux/lrzuntar.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pages.es/linux/lrzuntar.md diff --git a/pages.es/linux/lrzuntar.md b/pages.es/linux/lrzuntar.md new file mode 100644 index 0000000000..99082560b4 --- /dev/null +++ b/pages.es/linux/lrzuntar.md @@ -0,0 +1,7 @@ +# lrzuntar + +> Este comando es un alias de `lrztar -d`. + +- Vea la documentación del comando original: + +`tldr lrztar` From d473aaf83d3df537947f414c4a6b7219e42a3fc0 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sat, 31 May 2025 14:04:37 +0000 Subject: [PATCH 069/141] updatedb: update Dutch translation (#16682) --- pages.nl/linux/updatedb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.nl/linux/updatedb.md b/pages.nl/linux/updatedb.md index ac8d9bc7e0..d958e89842 100644 --- a/pages.nl/linux/updatedb.md +++ b/pages.nl/linux/updatedb.md @@ -10,4 +10,4 @@ - Toon bestandsnamen zodra ze gevonden zijn: -`sudo updatedb --verbose` +`sudo updatedb {{[-v|--verbose]}}` From ef864b9c7091a2c3ee7ad05a2b5a482c9be6d41c Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sat, 31 May 2025 14:06:05 +0000 Subject: [PATCH 070/141] distrobox*: update Dutch translation (#16684) --- pages.nl/linux/distrobox-create.md | 4 ++-- pages.nl/linux/distrobox-enter.md | 6 +++--- pages.nl/linux/distrobox-export.md | 10 +++++----- pages.nl/linux/distrobox-list.md | 2 +- pages.nl/linux/distrobox-rm.md | 6 +++--- pages.nl/linux/distrobox-stop.md | 4 ++-- pages.nl/linux/distrobox-upgrade.md | 4 ++-- 7 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pages.nl/linux/distrobox-create.md b/pages.nl/linux/distrobox-create.md index 5a3a091965..e30a931f50 100644 --- a/pages.nl/linux/distrobox-create.md +++ b/pages.nl/linux/distrobox-create.md @@ -6,8 +6,8 @@ - Maak een Distrobox container met behulp van het Ubuntu image: -`distrobox-create {{container_name}} --image {{ubuntu:latest}}` +`distrobox-create {{container_naam}} {{[-i|--image]}} {{ubuntu:latest}}` - Kloon een Distrobox container: -`distrobox-create --clone {{container_name}} {{cloned_container_name}}` +`distrobox-create {{[-c|--clone]}} {{container_naam}} {{gekloonde_container_naam}}` diff --git a/pages.nl/linux/distrobox-enter.md b/pages.nl/linux/distrobox-enter.md index 61a2415d55..13dd677983 100644 --- a/pages.nl/linux/distrobox-enter.md +++ b/pages.nl/linux/distrobox-enter.md @@ -6,12 +6,12 @@ - Betreed een Distrobox container: -`distrobox-enter {{container_name}}` +`distrobox-enter {{container_naam}}` - Betreed een Distrobox container en voer een commando uit bij het inloggen: -`distrobox-enter {{container_name}} -- {{sh -l}}` +`distrobox-enter {{container_naam}} -- {{sh -l}}` - Betreed een Distrobox container zonder een tty the instanteren: -`distrobox-enter --name {{container_name}} -- {{uptime -p}}` +`distrobox-enter {{[-n|--name]}} {{container_naam}} -- {{uptime --pretty}}` diff --git a/pages.nl/linux/distrobox-export.md b/pages.nl/linux/distrobox-export.md index 471c2f7398..90b809cff5 100644 --- a/pages.nl/linux/distrobox-export.md +++ b/pages.nl/linux/distrobox-export.md @@ -5,20 +5,20 @@ - Exporteer een app van de container naar de host (het desktop pictogram verschijnt in de applicatielijst van uw hostsysteem): -`distrobox-export --app {{pakket}} --extra-flags "--foreground"` +`distrobox-export {{[-a|--app]}} {{pakket}} {{[-ef|--extra-flags]}} "--foreground"` - Exporteer een binary van de container naar de host: -`distrobox-export --bin {{pad/naar/binary}} --export-path {{pad/naar/binary_on_host}}` +`distrobox-export {{[-b|--bin]}} {{pad/naar/binary}} {{[-ep|--export-path]}} {{pad/naar/binary_op_host}}` - Exporteer een binary van de container naar de host (bijv.`$HOME/.local/bin`) : -`distrobox-export --bin {{pad/naar/binary}} --export-path {{pad/naar/export}}` +`distrobox-export {{[-b|--bin]}} {{pad/naar/binary}} {{[-ep|--export-path]}} {{pad/naar/export}}` - Exporteer een service van de container naar de host (`--sudo` zal de service uitvoeren als root in de container): -`distrobox-export --service {{pakket}} --extra-flags "--allow-newer-config" --sudo` +`distrobox-export --service {{pakket}} {{[-ef|--extra-flags]}} "--allow-newer-config" {{[-S|--sudo]}}` - Verwijder een geëxporteerde applicatie: -`distrobox-export --app {{pakket}} --delete` +`distrobox-export {{[-a|--app]}} {{pakket}} {{[-d|--delete]}}` diff --git a/pages.nl/linux/distrobox-list.md b/pages.nl/linux/distrobox-list.md index 72bf3ea3f0..84686f5ea2 100644 --- a/pages.nl/linux/distrobox-list.md +++ b/pages.nl/linux/distrobox-list.md @@ -10,4 +10,4 @@ - Toon alle Distrobox containers met verbose informatie: -`distrobox-list --verbose` +`distrobox-list {{[-v|--verbose]}}` diff --git a/pages.nl/linux/distrobox-rm.md b/pages.nl/linux/distrobox-rm.md index d7eabe5cad..c89f86f37e 100644 --- a/pages.nl/linux/distrobox-rm.md +++ b/pages.nl/linux/distrobox-rm.md @@ -3,10 +3,10 @@ > Verwijder een Distrobox container. Bekijk ook: `tldr distrobox`. > Meer informatie: . -- Verwijder een Distrobox container (Tip: Stop the container voordat je hem verwijdert): +- Verwijder een Distrobox container (Tip: Stop de container voordat je hem verwijdert): -`distrobox-rm {{container_name}}` +`distrobox-rm {{container_naam}}` - Verwijder een Distrobox container geforceerd: -`distrobox-rm {{container_name}} --force` +`distrobox-rm {{container_naam}} {{[-f|--force]}}` diff --git a/pages.nl/linux/distrobox-stop.md b/pages.nl/linux/distrobox-stop.md index 8f50d1dc34..3d63035ca0 100644 --- a/pages.nl/linux/distrobox-stop.md +++ b/pages.nl/linux/distrobox-stop.md @@ -5,8 +5,8 @@ - Stop een Distrobox container: -`distrobox-stop {{container_name}}` +`distrobox-stop {{container_naam}}` - Stop een Distrobox container zonder bevestiging: -`distrobox-stop --name {{container_name}} --yes` +`distrobox-stop {{[-n|--name]}} {{container_naam}} {{[-Y|--yes]}}` diff --git a/pages.nl/linux/distrobox-upgrade.md b/pages.nl/linux/distrobox-upgrade.md index d651a14a3f..785b4baa53 100644 --- a/pages.nl/linux/distrobox-upgrade.md +++ b/pages.nl/linux/distrobox-upgrade.md @@ -5,11 +5,11 @@ - Upgrade een container met behulp van het native pakketbeheer van de container: -`distrobox-upgrade {{container_name}}` +`distrobox-upgrade {{container_naam}}` - Upgrade alle containers met behulp van het native pakketbeheer van de container: -`distrobox-upgrade --all` +`distrobox-upgrade {{[-a|--all]}}` - Upgrade specifieke containers met behulp van het native pakketbeheer van de container: From 0ca7cdcbcf2921016e22b23d2b9dddab065c2ceb Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sat, 31 May 2025 14:07:14 +0000 Subject: [PATCH 071/141] pio*: update Dutch translation (#16686) --- pages.nl/common/pio-account.md | 8 ++++---- pages.nl/common/pio-check.md | 6 +++--- pages.nl/common/pio-ci.md | 6 +++--- pages.nl/common/pio-debug.md | 8 ++++---- pages.nl/common/pio-device.md | 6 +++--- pages.nl/common/pio-project.md | 8 ++++---- pages.nl/common/pio-remote.md | 4 ++-- pages.nl/common/pio-run.md | 8 ++++---- pages.nl/common/pio-test.md | 8 ++++---- pages.nl/common/pio.md | 4 ++-- 10 files changed, 33 insertions(+), 33 deletions(-) diff --git a/pages.nl/common/pio-account.md b/pages.nl/common/pio-account.md index 5cc9720eb9..6b7e819f96 100644 --- a/pages.nl/common/pio-account.md +++ b/pages.nl/common/pio-account.md @@ -5,7 +5,7 @@ - Registreer een nieuw PlatformIO account: -`pio account register --username {{gebruikersnaam}} --email {{email}} --password {{wachtwoord}} --firstname {{voornaam}} --lastname {{achternaam}}` +`pio account register {{[-u|--username]}} {{gebruikersnaam}} {{[-e|--email]}} {{email}} {{[-p|--password]}} {{wachtwoord}} --firstname {{voornaam}} --lastname {{achternaam}}` - Verwijder permanent je PlatformIO account en gerelateerde data: @@ -13,7 +13,7 @@ - Log in bij je PlatformIO account: -`pio account login --username {{gebruikersnaam}} --password {{wachtwoord}}` +`pio account login {{[-u|--username]}} {{gebruikersnaam}} {{[-p|--password]}} {{wachtwoord}}` - Log uit bij je PlatformIO account: @@ -21,7 +21,7 @@ - Update je PlatformIO profiel: -`pio account update --username {{gebruikersnaam}} --email {{email}} --firstname {{voornaam}} --lastname {{achternaam}} --current-password {{wachtwoord}}` +`pio account update {{[-u|--username]}} {{gebruikersnaam}} {{[-e|--email]}} {{email}} --firstname {{voornaam}} --lastname {{achternaam}} --current-password {{wachtwoord}}` - Toon gedetailleerde informatie over je PlatformIO account: @@ -29,4 +29,4 @@ - Reset je wachtwoord door gebruik te maken van je gebruikersnaam of email: -`pio account forgot --username {{gebruikersnaam_of_email}}` +`pio account forgot {{[-u|--username]}} {{gebruikersnaam_of_email}}` diff --git a/pages.nl/common/pio-check.md b/pages.nl/common/pio-check.md index c18c0610a0..fd9fd7c97a 100644 --- a/pages.nl/common/pio-check.md +++ b/pages.nl/common/pio-check.md @@ -9,11 +9,11 @@ - Voer een basis analyse check uit op een specifiek project: -`pio check --project-dir {{project_map}}` +`pio check {{[-d|--project-dir]}} {{project_map}}` - Voer een analyse check uit voor een specifieke omgeving: -`pio check --environment {{omgeving}}` +`pio check {{[-e|--environment]}} {{omgeving}}` - Voer een analyse check uit en rapporteer alleen een specifiek niveau: @@ -21,4 +21,4 @@ - Voer een analyse check uit en toon gedetailleerde informatie bij het verwerken van omgevingen: -`pio check --verbose` +`pio check {{[-v|--verbose]}}` diff --git a/pages.nl/common/pio-ci.md b/pages.nl/common/pio-ci.md index 840bad3c9d..e1224ae5ac 100644 --- a/pages.nl/common/pio-ci.md +++ b/pages.nl/common/pio-ci.md @@ -10,11 +10,11 @@ - Bouw een PlatformIO project en specificeer specifieke bibliotheken: -`pio ci --lib {{pad/naar/bibliotheek_map}} {{pad/naar/project}}` +`pio ci {{[-l|--lib]}} {{pad/naar/bibliotheek_map}} {{pad/naar/project}}` - Bouw een PlatformIO project en specificeer een specifiek board (`pio boards` toont ze allemaal): -`pio ci --board {{board}} {{pad/naar/project}}` +`pio ci {{[-b|--board]}} {{board}} {{pad/naar/project}}` - Bouw een PlatformIO project in een specifieke map: @@ -26,4 +26,4 @@ - Bouw een PlatformIO project met een specifiek configuratiebestand: -`pio ci --project-conf {{pad/naar/platformio.ini}}` +`pio ci {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}` diff --git a/pages.nl/common/pio-debug.md b/pages.nl/common/pio-debug.md index 15d2951f1a..ed6e1a8682 100644 --- a/pages.nl/common/pio-debug.md +++ b/pages.nl/common/pio-debug.md @@ -9,16 +9,16 @@ - Debug een specifiek PlatformIO project: -`pio debug --project-dir {{pad/naar/platformio_project}}` +`pio debug {{[-d|--project-dir]}} {{pad/naar/platformio_project}}` - Debug een specifieke omgeving: -`pio debug --environment {{omgeving}}` +`pio debug {{[-e|--environment]}} {{omgeving}}` - Debug een PlatformIO project met een specifiek configuratiebestand: -`pio debug --project-conf {{pad/naar/platformio.ini}}` +`pio debug {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}` - Debug een PlatformIO project door gebruik te maken van de `gdb` debugger: -`pio debug --interface={{gdb}} {{gdb_opties}}` +`pio debug --interface {{gdb}} {{gdb_opties}}` diff --git a/pages.nl/common/pio-device.md b/pages.nl/common/pio-device.md index bd997b93bd..6c6c5b6036 100644 --- a/pages.nl/common/pio-device.md +++ b/pages.nl/common/pio-device.md @@ -3,7 +3,7 @@ > Beheer en monitor PlatformIO apparaten. > Meer informatie: . -- Toon alle beschikbare seriele poorten: +- Toon alle beschikbare seriële poorten: `pio device list` @@ -17,11 +17,11 @@ - Start een interactieve apparaat monitor en luister naar een specifieke poort: -`pio device monitor --port {{/dev/ttyUSBX}}` +`pio device monitor {{[-p|--port]}} {{/dev/ttyUSBX}}` - Start een interactieve apparaat monitor en stel een specifieke baud in (standaard is 9600): -`pio device monitor --baud {{57600}}` +`pio device monitor {{[-b|--baud]}} {{57600}}` - Start een interactieve apparaat monitor en stel een specifieke EOL karakter in (standaard is `CRLF`): diff --git a/pages.nl/common/pio-project.md b/pages.nl/common/pio-project.md index 99a26e3dcd..7af6d3c7e0 100644 --- a/pages.nl/common/pio-project.md +++ b/pages.nl/common/pio-project.md @@ -1,6 +1,6 @@ # pio project -> Tool voor het beheren van PlatformIO projecten. +> Beheer PlatformIO projecten. > Meer informatie: . - Initialiseer een nieuw PlatformIO project: @@ -9,15 +9,15 @@ - Initialiseer een nieuw PlatformIO project in een specifieke map: -`pio project init --project-dir {{pad/naar/project_map}}` +`pio project init {{[-d|--project-dir]}} {{pad/naar/project_map}}` - Initialiseer een nieuw PlatformIO project, met een gespecificeerd board ID: -`pio project init --board {{ATmega328P|uno|...}}` +`pio project init {{[-b|--board]}} {{ATmega328P|uno|...}}` - Initialiseer een nieuw PlatformIO gebaseerd project, met een of meerdere gespecificeerde project opties: -`pio project init --project-option="{{optie}}={{waarde}}" --project-option="{{optie}}={{waarde}}"` +`pio project init {{[-O|--project-option]}} "{{optie}}={{waarde}}" {{[-O|--project-option]}} "{{optie}}={{waarde}}"` - Toon de configuratie van een project: diff --git a/pages.nl/common/pio-remote.md b/pages.nl/common/pio-remote.md index b7a55a2bf4..e3ec169eb2 100644 --- a/pages.nl/common/pio-remote.md +++ b/pages.nl/common/pio-remote.md @@ -10,13 +10,13 @@ - Start een nieuwe Remote Agent met een specifieke naam en deel deze met vrienden: -`pio remote agent start --name {{agent_naam}} --share {{example1@example.com}} --share {{example2@example.com}}` +`pio remote agent start {{[-n|--name]}} {{agent_naam}} {{[-s|--share]}} {{example1@example.com}} {{[-s|--share]}} {{example2@example.com}}` - Toon alle apparaten van een specifieke Agents (laat `--agent` weg voor alle Agents): `pio remote --agent {{agent_naam1}} --agent {{agent_naam2}} device list` -- Verbind met een seriele poort van een remote apparaat: +- Verbind met een seriële poort van een remote apparaat: `pio remote --agent {{agent_naam}} device monitor` diff --git a/pages.nl/common/pio-run.md b/pages.nl/common/pio-run.md index 0240210756..281780f647 100644 --- a/pages.nl/common/pio-run.md +++ b/pages.nl/common/pio-run.md @@ -9,7 +9,7 @@ - Toon alle beschikbare project doelen voor een specifieke omgeving: -`pio run --list-targets --environment {{omgeving}}` +`pio run --list-targets {{[-e|--environment]}} {{omgeving}}` - Voer alle doelen uit: @@ -17,12 +17,12 @@ - Voer alle doelen uit voor de gespecificeerde omgevingen: -`pio run --environment {{omgeving1}} --environment {{omgeving2}}` +`pio run {{[-e|--environment]}} {{omgeving1}} {{[-e|--environment]}} {{omgeving2}}` - Voer gespecificeerde doelen uit: -`pio run --target {{doel1}} --target {{doel2}}` +`pio run {{[-t|--target]}} {{doel1}} {{[-t|--target]}} {{doel2}}` - Voer de doelen uit van een specifiek configuratiebestand: -`pio run --project-conf {{pad/naar/platformio.ini}}` +`pio run {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}` diff --git a/pages.nl/common/pio-test.md b/pages.nl/common/pio-test.md index 0d3ed24939..1c97e4ad23 100644 --- a/pages.nl/common/pio-test.md +++ b/pages.nl/common/pio-test.md @@ -9,15 +9,15 @@ - Test alleen op specifieke omgevingen: -`pio test --environment {{omgeving1}} --environment {{omgeving2}}` +`pio test {{[-e|--environment]}} {{omgeving1}} {{[-e|--environment]}} {{omgeving2}}` - Voer alleen testen uit die qua naam overeenkomen met een specifiek glob patroon: -`pio test --filter "{{patroon}}"` +`pio test {{[-f|--filter]}} "{{patroon}}"` - Negeer testen die qua naam overeenkomen met een specifiek glob patroon: -`pio test --ignore "{{patroon}}"` +`pio test {{[-i|--ignore]}} "{{patroon}}"` - Specificeer een poort voor firmware uploading: @@ -25,4 +25,4 @@ - Specificeer een aangepast configuratiebestand voor het uitvoeren van de testen: -`pio test --project-conf {{pad/naar/platformio.ini}}` +`pio test {{[-c|--project-conf]}} {{pad/naar/platformio.ini}}` diff --git a/pages.nl/common/pio.md b/pages.nl/common/pio.md index 202863a937..56977e9945 100644 --- a/pages.nl/common/pio.md +++ b/pages.nl/common/pio.md @@ -6,11 +6,11 @@ - Toon de help en toon subcommando's: -`pio --help` +`pio {{[-h|--help]}}` - Toon de help voor een specifiek subcommando: -`pio {{subcommando}} --help` +`pio {{subcommando}} {{[-h|--help]}}` - Toon de versie: From a2422ac85e969431a1bedfb515d0a7fcdcab9ef4 Mon Sep 17 00:00:00 2001 From: Santosh Shrestha Date: Sat, 31 May 2025 20:41:52 +0545 Subject: [PATCH 072/141] mux, udevmon, intercept, uinput: add page (#16667) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages/linux/intercept.md | 12 ++++++++++++ pages/linux/mux.md | 20 ++++++++++++++++++++ pages/linux/udevmon.md | 9 +++++++++ pages/linux/uinput.md | 16 ++++++++++++++++ 4 files changed, 57 insertions(+) create mode 100644 pages/linux/intercept.md create mode 100644 pages/linux/mux.md create mode 100644 pages/linux/udevmon.md create mode 100644 pages/linux/uinput.md diff --git a/pages/linux/intercept.md b/pages/linux/intercept.md new file mode 100644 index 0000000000..ef3835a6d1 --- /dev/null +++ b/pages/linux/intercept.md @@ -0,0 +1,12 @@ +# intercept + +> Read raw input events from a specified input event device and redirect it to stdout. +> More information: . + +- Read and output raw input events from a given input device file (the system will not see any key presses): + +`sudo intercept -g {{/dev/input/eventX}}` + +- Read and output raw input events from a given input device file (the system can see key presses and does not block other programs from reading them): + +`sudo intercept {{/dev/input/eventX}}` diff --git a/pages/linux/mux.md b/pages/linux/mux.md new file mode 100644 index 0000000000..afe0d1bd55 --- /dev/null +++ b/pages/linux/mux.md @@ -0,0 +1,20 @@ +# mux + +> Intercept and multiplex streams of input events. +> More information: . + +- Create a new muxer with a specified name: + +`mux -c {{muxer_name1 muxer_name2 ...}}` + +- Set the muxer's internal queue size (default is 100): + +`mux -s {{size}}` + +- Read input from a named muxer (can be repeated in "switch mode"): + +`mux -i {{input_muxer_name}}` + +- Write output to a named muxer (can be repeated): + +`mux -o {{output_muxer_name}}` diff --git a/pages/linux/udevmon.md b/pages/linux/udevmon.md new file mode 100644 index 0000000000..e2514b6927 --- /dev/null +++ b/pages/linux/udevmon.md @@ -0,0 +1,9 @@ +# udevmon + +> Intercept and monitor input devices for launching tasks. +> Filters or modifies events according to configuration file(s) (default: `/etc/interception/udevmon.d/*.yaml`). +> More information: . + +- Start udevmon with specified configuration file: + +`udevmon -c {{path/to/config.yaml}}` diff --git a/pages/linux/uinput.md b/pages/linux/uinput.md new file mode 100644 index 0000000000..30ae6bb8fc --- /dev/null +++ b/pages/linux/uinput.md @@ -0,0 +1,16 @@ +# uinput + +> Intercept and write input events to a virtual keyboard device using /dev/uinput. +> More information: . + +- Show resulting YAML device description merge and exit (dry-run): + +`uinput -p` + +- Merge YAML device description(s) to resulting virtual device: + +`sudo uinput -c {{path/to/device1.yaml path/to/device2.yaml ...}}` + +- Merge reference device description from device node(s) to resulting virtual device: + +`sudo uinput -d {{/dev/input/eventX /dev/input/eventY ...}}` From 48d64646794ce513c433dc9c21fd81ad28581c0b Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sat, 31 May 2025 19:40:58 +0200 Subject: [PATCH 073/141] CODEOWNERS: add @dmmqz (#16689) --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 48087ab72a..2536a9b2a7 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -8,7 +8,7 @@ /pages.id/ @reinhart1010 /pages.it/ @mebeim @tansiret @Magrid0 /pages.ko/ @IMHOJEONG @Zamoca42 @CodePsy-2001 -/pages.nl/ @sebastiaanspeck @leonvsc @Waples +/pages.nl/ @sebastiaanspeck @leonvsc @Waples @dmmqz /pages.pl/ @acuteenvy @spageektti /pages.pt_BR/ @isaacvicente @vitorhcl @renie /pages.pt_PT/ @waldyrious @@ -38,7 +38,7 @@ /contributing-guides/*.id.md @reinhart1010 /contributing-guides/*.it.md @mebeim @tansiret @Magrid0 /contributing-guides/*.ko.md @IMHOJEONG @Zamoca42 @CodePsy-2001 -/contributing-guides/*.nl.md @sebastiaanspeck @leonvsc @Waples +/contributing-guides/*.nl.md @sebastiaanspeck @leonvsc @Waples @dmmqz /contributing-guides/*.pl.md @acuteenvy @spageektti /contributing-guides/*.pt_BR.md @isaacvicente @vitorhcl @renie /contributing-guides/*.pt_PT.md @waldyrious From d54c1343a0fcf561ca45b14c6d252c5e06d59b7f Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Sun, 1 Jun 2025 05:58:28 +1000 Subject: [PATCH 074/141] aircrack-ng: add example (#16687) --- pages/common/aircrack-ng.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/aircrack-ng.md b/pages/common/aircrack-ng.md index 7cb82f22bc..354ba5bea0 100644 --- a/pages/common/aircrack-ng.md +++ b/pages/common/aircrack-ng.md @@ -8,6 +8,10 @@ `aircrack-ng -w {{path/to/wordlist.txt}} {{path/to/capture.cap}}` +- Crack key using multiple CPU threads from capture file using [w]ordlist: + +`aircrack-ng -p {{number}} -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}}` From dbb1a7d9c2303e7f71da6ccd1e39a724c6877808 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Sat, 31 May 2025 20:23:50 -0700 Subject: [PATCH 075/141] xml-*: update more information links for Korean pages (#16685) * xml-*: update more information links for Korean pages * updated commands * updated commands again --- pages.ko/common/xml-canonic.md | 10 +++++----- pages.ko/common/xml-depyx.md | 8 ++++---- pages.ko/common/xml-edit.md | 14 +++++++------- pages.ko/common/xml-elements.md | 14 +++++++------- pages.ko/common/xml-escape.md | 8 ++++---- pages.ko/common/xml-format.md | 14 +++++++------- pages.ko/common/xml-list.md | 8 ++++---- pages.ko/common/xml-pyx.md | 2 +- pages.ko/common/xml-select.md | 12 ++++++------ pages.ko/common/xml-transform.md | 6 +++--- pages.ko/common/xml-unescape.md | 8 ++++---- pages.ko/common/xml-validate.md | 12 ++++++------ pages.ko/common/xml.md | 2 +- 13 files changed, 59 insertions(+), 59 deletions(-) diff --git a/pages.ko/common/xml-canonic.md b/pages.ko/common/xml-canonic.md index 65b10685e3..fe55542e0c 100644 --- a/pages.ko/common/xml-canonic.md +++ b/pages.ko/common/xml-canonic.md @@ -1,20 +1,20 @@ # xml canonic > XML 문서를 정규화. -> 더 많은 정보: . +> 더 많은 정보: . - XML 문서를 정규화하여 주석을 보존: -`xml canonic {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` +`xml {{[c14n|canonic]}} {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` - XML 문서를 정규화하여 주석 제거: -`xml canonic --without-comments {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` +`xml {{[c14n|canonic]}} --without-comments {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` - 파일의 XPATH를 사용하여 XML을 독점적으로 정규화하고, 주석을 보존: -`xml canonic --exc-with-comments {{경로/대상/입력.xml|URI}} {{경로/대상/c14n.xpath}}` +`xml {{[c14n|canonic]}} --exc-with-comments {{경로/대상/입력.xml|URI}} {{경로/대상/c14n.xpath}}` - 도움말 표시: -`xml canonic --help` +`xml {{[c14n|canonic]}} --help` diff --git a/pages.ko/common/xml-depyx.md b/pages.ko/common/xml-depyx.md index 0f59e29991..eeb3dd6506 100644 --- a/pages.ko/common/xml-depyx.md +++ b/pages.ko/common/xml-depyx.md @@ -1,16 +1,16 @@ # xml depyx > PYX (ESIS - ISO 8879) 문서를 XML 형식으로 변환. -> 더 많은 정보: . +> 더 많은 정보: . - PYX (ESIS - ISO 8879) 문서를 XML 형식으로 변환: -`xml depyx {{경로/대상/입력.pyx|URI}} > {{경로/대상/출력.xml}}` +`xml {{[p2x|depyx]}} {{경로/대상/입력.pyx|URI}} > {{경로/대상/출력.xml}}` - `stdin`에서 PYX 문서를 XML 형식으로 변환: -`cat {{경로/대상/입력.pyx}} | xml depyx > {{경로/대상/출력.xml}}` +`cat {{경로/대상/입력.pyx}} | xml {{[p2x|depyx]}} > {{경로/대상/출력.xml}}` - 도움말 표시: -`xml depyx --help` +`xml {{[p2x|depyx]}} --help` diff --git a/pages.ko/common/xml-edit.md b/pages.ko/common/xml-edit.md index ba2b9ccc76..4ae658915a 100644 --- a/pages.ko/common/xml-edit.md +++ b/pages.ko/common/xml-edit.md @@ -1,28 +1,28 @@ # xml edit > XML 문서 편집. -> 더 많은 정보: . +> 더 많은 정보: . - XML 문서에서 XPATH와 일치하는 요소 삭제: -`xml edit --delete "{{XPATH1}}" {{경로/대상/입력.xml|URI}}` +`xml {{[ed|edit]}} {{[-d|--delete]}} "{{XPATH1}}" {{경로/대상/입력.xml|URI}}` - XML 문서의 요소 노드를 XPATH1에서 XPATH2로 이동: -`xml edit --move "{{XPATH1}}" "{{XPATH2}}" {{경로/대상/입력.xml|URI}}` +`xml {{[ed|edit]}} {{[-m|--move]}} "{{XPATH1}}" "{{XPATH2}}" {{경로/대상/입력.xml|URI}}` - 이름이 "id"인 모든 속성을 "ID"로 변경: -`xml edit --rename "{{//*/@id}}" -v "{{ID}}" {{경로/대상/입력.xml|URI}}` +`xml {{[ed|edit]}} {{[-r|--rename]}} "{{//*/@id}}" -v "{{ID}}" {{경로/대상/입력.xml|URI}}` - "table" 요소의 하위 요소 중 "rec"으로 명명된 요소를 "record"로 이름 변경: -`xml edit --rename "{{/xml/table/rec}}" -v "{{record}}" {{경로/대상/입력.xml|URI}}` +`xml {{[ed|edit]}} {{[-r|--rename]}} "{{/xml/table/rec}}" -v "{{record}}" {{경로/대상/입력.xml|URI}}` - "id=3"인 XML 테이블 레코드를 "id=5" 값으로 업데이트: -`xml edit --update "{{xml/table/rec[@id=3]/@id}}" -v {{5}} {{경로/대상/입력.xml|URI}}` +`xml {{[ed|edit]}} {{[-u|--update]}} "{{xml/table/rec[@id=3]/@id}}" {{[-v|--value]}} {{5}} {{경로/대상/입력.xml|URI}}` - 도움말 표시: -`xml edit --help` +`xml {{[ed|edit]}} {{[-h|--help]}}` diff --git a/pages.ko/common/xml-elements.md b/pages.ko/common/xml-elements.md index 4e89edb8c0..4062f2e029 100644 --- a/pages.ko/common/xml-elements.md +++ b/pages.ko/common/xml-elements.md @@ -1,28 +1,28 @@ # xml elements > XML 문서의 요소를 추출하고 구조를 표시합니다. -> 더 많은 정보: . +> 더 많은 정보: . - XML 문서에서 요소 추출 (XPATH 표현 생성): -`xml elements {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` +`xml {{[el|elements]}} {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` - XML 문서에서 요소와 그 속성 추출: -`xml elements -a {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` +`xml {{[el|elements]}} -a {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` - XML 문서에서 요소, 속성 및 값 추출: -`xml elements -v {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` +`xml {{[el|elements]}} -v {{경로/대상/입력.xml|URI}} > {{경로/대상/요소.xpath}}` - XML 문서의 정렬된 고유 요소를 출력하여 구조 확인: -`xml elements -u {{경로/대상/입력.xml|URI}}` +`xml {{[el|elements]}} -u {{경로/대상/입력.xml|URI}}` - 깊이 3까지의 XML 문서의 정렬된 고유 요소 출력: -`xml elements -d{{3}} {{경로/대상/입력.xml|URI}}` +`xml {{[el|elements]}} -d{{3}} {{경로/대상/입력.xml|URI}}` - 도움말 표시: -`xml elements --help` +`xml {{[el|elements]}} --help` diff --git a/pages.ko/common/xml-escape.md b/pages.ko/common/xml-escape.md index cd2133d559..b9b1c3b02f 100644 --- a/pages.ko/common/xml-escape.md +++ b/pages.ko/common/xml-escape.md @@ -1,16 +1,16 @@ # xml escape > 특수 XML 문자를 이스케이프합니다. 예: `` → `<a1>`. -> 더 많은 정보: . +> 더 많은 정보: . - 문자열에서 특수 XML 문자 이스케이프: -`xml escape "{{}}"` +`xml {{[esc|escape]}} "{{}}"` - `stdin`에서 특수 XML 문자 이스케이프: -`echo "{{}}" | xml escape` +`echo "{{}}" | xml {{[esc|escape]}}` - 도움말 표시: -`xml escape --help` +`xml {{[esc|escape]}} --help` diff --git a/pages.ko/common/xml-format.md b/pages.ko/common/xml-format.md index a020427a6e..225d580fbd 100644 --- a/pages.ko/common/xml-format.md +++ b/pages.ko/common/xml-format.md @@ -1,28 +1,28 @@ # xml format > XML 문서를 포맷합니다. -> 더 많은 정보: . +> 더 많은 정보: . - XML 문서를 탭으로 들여쓰기하여 포맷: -`xml format --indent-tab {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` +`xml {{[fo|format]}} {{[-t|--indent-tab]}} {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` - HTML 문서를 4칸의 공백으로 들여쓰기하여 포맷: -`xml format --html --indent-spaces {{4}} {{경로/대상/입력.html|URI}} > {{경로/대상/출력.html}}` +`xml {{[fo|format]}} {{[-H|--html]}} {{[-s|--indent-spaces]}} {{4}} {{경로/대상/입력.html|URI}} > {{경로/대상/출력.html}}` - 잘못된 XML 문서에서 구문 분석이 가능한 부분을 복구하고 들여쓰지 않음: -`xml format --recover --noindent {{경로/대상/잘못된.xml|URI}} > {{경로/대상/복구된.xml}}` +`xml {{[fo|format]}} {{[-R|--recover]}} {{[-n|--noindent]}} {{경로/대상/잘못된.xml|URI}} > {{경로/대상/복구된.xml}}` - `stdin`에서 XML 문서를 포맷하고 `DOCTYPE` 선언을 제거: -`cat {{경로/대상/입력.xml}} | xml format --dropdtd > {{경로/대상/출력.xml}}` +`cat {{경로/대상/입력.xml}} | xml {{[fo|format]}} {{[-D|--dropdtd]}} > {{경로/대상/출력.xml}}` - XML 선언을 생략하여 XML 문서를 포맷: -`xml format --omit-decl {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` +`xml {{[fo|format]}} {{[-o|--omit-decl]}} {{경로/대상/입력.xml|URI}} > {{경로/대상/출력.xml}}` - 도움말 표시: -`xml format --help` +`xml {{[fo|format]}} --help` diff --git a/pages.ko/common/xml-list.md b/pages.ko/common/xml-list.md index 04e4c4fe2f..5c1a721eae 100644 --- a/pages.ko/common/xml-list.md +++ b/pages.ko/common/xml-list.md @@ -1,16 +1,16 @@ # xml list > 디렉토리의 내용을 XML 형식으로 나열 (예: `ls`). -> 더 많은 정보: . +> 더 많은 정보: . - 현재 디렉토리의 목록을 XML 문서로 작성: -`xml list > {{경로/대상/디렉토리_목록.xml}}` +`xml {{[ls|list]}} > {{경로/대상/디렉토리_목록.xml}}` - 지정된 디렉토리의 목록을 XML 문서로 작성: -`xml list {{경로/대상/폴더}} > {{경로/대상/디렉토리_목록.xml}}` +`xml {{[ls|list]}} {{경로/대상/폴더}} > {{경로/대상/디렉토리_목록.xml}}` - 도움말 표시: -`xml list --help` +`xml {{[ls|list]}} --help` diff --git a/pages.ko/common/xml-pyx.md b/pages.ko/common/xml-pyx.md index 4c2574dee9..d3d73ca3ce 100644 --- a/pages.ko/common/xml-pyx.md +++ b/pages.ko/common/xml-pyx.md @@ -1,7 +1,7 @@ # xml pyx > XML 문서를 PYX (ESIS - ISO 8879) 형식으로 변환. -> 더 많은 정보: . +> 더 많은 정보: . - XML 문서를 PYX 형식으로 변환: diff --git a/pages.ko/common/xml-select.md b/pages.ko/common/xml-select.md index 474ad3f40b..8f8deecced 100644 --- a/pages.ko/common/xml-select.md +++ b/pages.ko/common/xml-select.md @@ -2,24 +2,24 @@ > XPATH를 사용하여 XML 문서에서 선택. > 팁: XML 문서의 XPATH를 표시하려면 `xml elements`를 사용하세요. -> 더 많은 정보: . +> 더 많은 정보: . - "XPATH1"과 일치하는 모든 요소를 선택하고 그 하위 요소 "XPATH2"의 값을 출력: -`xml select --template --match "{{XPATH1}}" --value-of "{{XPATH2}}" {{경로/대상/입력.xml|URI}}` +`xml {{[sel|select]}} {{[-t|--template]}} {{[-m|--match]}} "{{XPATH1}}" {{[-v|--value-of]}} "{{XPATH2}}" {{경로/대상/입력.xml|URI}}` - "XPATH1"과 일치하는 요소를 선택하고 "XPATH2"의 값을 새 줄과 함께 텍스트로 출력: -`xml select --text --template --match "{{XPATH1}}" --value-of "{{XPATH2}}" --nl {{경로/대상/입력.xml|URI}}` +`xml {{[sel|select]}} {{[-T|--text]}} {{[-t|--template]}} {{[-m|--match]}} "{{XPATH1}}" {{[-v|--value-of]}} "{{XPATH2}}" {{[-n|--nl]}} {{경로/대상/입력.xml|URI}}` - "XPATH1"의 요소 수를 계산: -`xml select --template --value-of "count({{XPATH1}})" {{경로/대상/입력.xml|URI}}` +`xml {{[sel|select]}} {{[-t|--template]}} {{[-v|--value-of]}} "count({{XPATH1}})" {{경로/대상/입력.xml|URI}}` - 하나 이상의 XML 문서에서 모든 노드 수를 계산: -`xml select --text --template --inp-name --output " " --value-of "count(node())" --nl {{경로/대상/입력1.xml|URI}} {{경로/대상/입력2.xml|URI}}` +`xml {{[sel|select]}} {{[-T|--text]}} {{[-t|--template]}} {{[-f|--inp-name]}} {{[-o|--output]}} " " {{[-v|--value-of]}} "count(node())" {{[-n|--nl]}} {{경로/대상/입력1.xml|URI}} {{경로/대상/입력2.xml|URI}}` - 도움말 표시: -`xml select --help` +`xml {{[sel|select]}} --help` diff --git a/pages.ko/common/xml-transform.md b/pages.ko/common/xml-transform.md index c7d357ddac..ca9fac3c95 100644 --- a/pages.ko/common/xml-transform.md +++ b/pages.ko/common/xml-transform.md @@ -1,12 +1,12 @@ # xml transform > XSLT를 사용하여 XML 문서를 변환. -> 더 많은 정보: . +> 더 많은 정보: . - XSL 스타일시트를 사용하여 XML 문서를 변환하고, 하나의 XPATH 매개변수와 하나의 리터럴 문자열 매개변수를 전달: -`xml transform {{경로/대상/스타일시트.xsl}} -p "{{Count='count(/xml/table/rec)'}}" -s {{Text="Count="}} {{경로/대상/입력.xml|URI}}` +`xml {{[tr|transform]}} {{경로/대상/스타일시트.xsl}} -p "{{Count='count(/xml/table/rec)'}}" -s {{Text="Count="}} {{경로/대상/입력.xml|URI}}` - 도움말 표시: -`xml transform --help` +`xml {{[tr|transform]}} --help` diff --git a/pages.ko/common/xml-unescape.md b/pages.ko/common/xml-unescape.md index eb43518882..f4961057a2 100644 --- a/pages.ko/common/xml-unescape.md +++ b/pages.ko/common/xml-unescape.md @@ -1,16 +1,16 @@ # xml unescape > 특수 XML 문자를 원래대로 변환, 예: `<a1>` → ``. -> 더 많은 정보: . +> 더 많은 정보: . - 문자열에서 특수 XML 문자를 원래대로 변환: -`xml unescape "{{<a1>}}"` +`xml {{[unesc|unescape]}} "{{<a1>}}"` - `stdin`에서 특수 XML 문자를 원래대로 변환: -`echo "{{<a1>}}" | xml unescape` +`echo "{{<a1>}}" | xml {{[unesc|unescape]}}` - 도움말 표시: -`xml escape --help` +`xml {{[esc|escape]}} --help` diff --git a/pages.ko/common/xml-validate.md b/pages.ko/common/xml-validate.md index 37dda71f88..630183c399 100644 --- a/pages.ko/common/xml-validate.md +++ b/pages.ko/common/xml-validate.md @@ -1,24 +1,24 @@ # xml validate > XML 문서 유효성 검사. -> 더 많은 정보: . +> 더 많은 정보: . - 하나 이상의 XML 문서가 잘 형성되었는지 검사: -`xml validate {{경로/대상/입력1.xml|URI}} {{input2.xml ...}}` +`xml {{[val|validate]}} {{경로/대상/입력1.xml|URI1 경로/대상/입력2.xml|URI2 ...}}` - 하나 이상의 XML 문서를 문서 유형 정의(DTD)와 비교하여 유효성 검사: -`xml validate --dtd {{경로/대상/스키마.dtd}} {{경로/대상/입력1.xml|URI}} {{input2.xml ...}}` +`xml {{[val|validate]}} {{[-d|--dtd]}} {{경로/대상/스키마.dtd}} {{경로/대상/입력1.xml|URI1 경로/대상/입력2.xml|URI2 ...}}` - 하나 이상의 XML 문서를 XML 스키마 정의(XSD)와 비교하여 유효성 검사: -`xml validate --xsd {{경로/대상/스키마.xsd}} {{경로/대상/입력1.xml|URI}} {{input2.xml ...}}` +`xml {{[val|validate]}} {{[-s|--xsd]}} {{경로/대상/스키마.xsd}} {{경로/대상/입력1.xml|URI1 경로/대상/입력2.xml|URI2 ...}}` - 하나 이상의 XML 문서를 Relax NG 스키마(RNG)와 비교하여 유효성 검사: -`xml validate --relaxng {{경로/대상/스키마.rng}} {{경로/대상/입력1.xml|URI}} {{input2.xml ...}}` +`xml {{[val|validate]}} {{[-r|--relaxng]}} {{경로/대상/스키마.rng}} {{경로/대상/입력1.xml|URI1 경로/대상/입력2.xml|URI2 ...}}` - 도움말 표시: -`xml validate --help` +`xml {{[val|validate]}} --help` diff --git a/pages.ko/common/xml.md b/pages.ko/common/xml.md index 899c847c1a..80a4c0bbc2 100644 --- a/pages.ko/common/xml.md +++ b/pages.ko/common/xml.md @@ -2,7 +2,7 @@ > XMLStarlet 도구 모음: XML 문서를 쿼리, 편집, 검사, 변환 및 변형. > `xml validate`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. -> 더 많은 정보: . +> 더 많은 정보: . - 하위 명령 목록을 포함한 일반 도움말 표시: From 2fe9c55dee3178e7749ce6a51332b937ab35af51 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 05:32:09 +0200 Subject: [PATCH 076/141] bclm: fix typo in More Info link --- pages/osx/bclm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/osx/bclm.md b/pages/osx/bclm.md index f7c6ab6b41..4172904304 100644 --- a/pages/osx/bclm.md +++ b/pages/osx/bclm.md @@ -1,7 +1,7 @@ # bclm > Set a custom charge limit on MacBooks. -> More information: . +> More information: . - Set the charge limit to about 80% (for Intel machines, the battery charge level may be slightly lower than the set value): From ae2f830c4f531ac778948185b3cbc09df2b4c832 Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Sun, 1 Jun 2025 04:32:30 -0300 Subject: [PATCH 077/141] lvresize: add Spanish translation (#16666) --- pages.es/linux/lvresize.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 pages.es/linux/lvresize.md diff --git a/pages.es/linux/lvresize.md b/pages.es/linux/lvresize.md new file mode 100644 index 0000000000..ab557a3955 --- /dev/null +++ b/pages.es/linux/lvresize.md @@ -0,0 +1,21 @@ +# lvresize + +> Cambia el tamaño de un volumen lógico. +> Vea también: `lvm`. +> Más información: . + +- Cambia el tamaño de un volumen lógico a 120 GB: + +`lvresize --size {{120G}} {{grupo_de_volumen}}/{{volumen_logico}}` + +- Extiende el tamaño de un volumen lógico así como el de los sistemas subyacentes en 120 GB: + +`lvresize --size +{{120G}} --resizefs {{grupo_de_volumen}}/{{volumen_logico}}` + +- Extiende el tamaño de un volumen lógico al 100% del espacio físico libre del volumen: + +`lvresize --size {{100}}%FREE {{grupo_de_volumen}}/{{volumen_logico}}` + +- Reduce el tamaño de un volumen lógico así como a los sistemas subyacentes en 120 GB: + +`lvresize --size -{{120G}} --resizefs {{grupo_de_volumen}}/{{volumen_logico}}` From fc3d4ea3863660577c16fcb52a2647c00cb46b1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Jun 2025 13:23:28 +0530 Subject: [PATCH 078/141] build(deps): bump markdownlint-cli from 0.44.0 to 0.45.0 (#16704) Bumps [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) from 0.44.0 to 0.45.0. - [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases) - [Commits](https://github.com/igorshubovych/markdownlint-cli/compare/v0.44.0...v0.45.0) --- updated-dependencies: - dependency-name: markdownlint-cli dependency-version: 0.45.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 189 +++++++++++++--------------------------------- package.json | 2 +- 2 files changed, 55 insertions(+), 136 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1ceb1505e2..41a5cd41c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "glob": "11.0.2", - "markdownlint-cli": "^0.44.0", + "markdownlint-cli": "^0.45.0", "tldr-lint": "^0.0.17" }, "devDependencies": { @@ -32,16 +32,6 @@ "node": ">=12" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, "node_modules/@types/debug": { "version": "4.1.12", "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", @@ -185,9 +175,9 @@ } }, "node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "license": "MIT", "dependencies": { "ms": "^2.1.3" @@ -202,9 +192,9 @@ } }, "node_modules/decode-named-character-reference": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", - "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz", + "integrity": "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==", "license": "MIT", "dependencies": { "character-entities": "^2.0.0" @@ -324,9 +314,9 @@ } }, "node_modules/ignore": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", - "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", "license": "MIT", "engines": { "node": ">= 4" @@ -443,9 +433,9 @@ } }, "node_modules/katex": { - "version": "0.16.21", - "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.21.tgz", - "integrity": "sha512-XvqR7FgOHtWupfMiigNzmh+MgUVmDGU2kXZm899ZkPfcuoPuFxyHmXsgATDpFZDAXCI8tvinaVcDo8PIIJSo4A==", + "version": "0.16.22", + "resolved": "https://registry.npmjs.org/katex/-/katex-0.16.22.tgz", + "integrity": "sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==", "funding": [ "https://opencollective.com/katex", "https://github.com/sponsors/katex" @@ -503,122 +493,50 @@ } }, "node_modules/markdownlint": { - "version": "0.37.4", - "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.37.4.tgz", - "integrity": "sha512-u00joA/syf3VhWh6/ybVFkib5Zpj2e5KB/cfCei8fkSRuums6nyisTWGqjTWIOFoFwuXoTBQQiqlB4qFKp8ncQ==", + "version": "0.38.0", + "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.38.0.tgz", + "integrity": "sha512-xaSxkaU7wY/0852zGApM8LdlIfGCW8ETZ0Rr62IQtAnUMlMuifsg09vWJcNYeL4f0anvr8Vo4ZQar8jGpV0btQ==", "license": "MIT", "dependencies": { - "markdown-it": "14.1.0", - "micromark": "4.0.1", - "micromark-core-commonmark": "2.0.2", - "micromark-extension-directive": "3.0.2", + "micromark": "4.0.2", + "micromark-core-commonmark": "2.0.3", + "micromark-extension-directive": "4.0.0", "micromark-extension-gfm-autolink-literal": "2.1.0", "micromark-extension-gfm-footnote": "2.1.0", - "micromark-extension-gfm-table": "2.1.0", + "micromark-extension-gfm-table": "2.1.1", "micromark-extension-math": "3.1.0", - "micromark-util-types": "2.0.1" + "micromark-util-types": "2.0.2" }, "engines": { - "node": ">=18" + "node": ">=20" }, "funding": { "url": "https://github.com/sponsors/DavidAnson" } }, "node_modules/markdownlint-cli": { - "version": "0.44.0", - "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.44.0.tgz", - "integrity": "sha512-ZJTAONlvF9NkrIBltCdW15DxN9UTbPiKMEqAh2EU2gwIFlrCMavyCEPPO121cqfYOrLUJWW8/XKWongstmmTeQ==", + "version": "0.45.0", + "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.45.0.tgz", + "integrity": "sha512-GiWr7GfJLVfcopL3t3pLumXCYs8sgWppjIA1F/Cc3zIMgD3tmkpyZ1xkm1Tej8mw53B93JsDjgA3KOftuYcfOw==", "license": "MIT", "dependencies": { "commander": "~13.1.0", - "glob": "~10.4.5", - "ignore": "~7.0.3", + "glob": "~11.0.2", + "ignore": "~7.0.4", "js-yaml": "~4.1.0", "jsonc-parser": "~3.3.1", "jsonpointer": "~5.0.1", - "markdownlint": "~0.37.4", - "minimatch": "~9.0.5", + "markdown-it": "~14.1.0", + "markdownlint": "~0.38.0", + "minimatch": "~10.0.1", "run-con": "~1.3.2", - "smol-toml": "~1.3.1" + "smol-toml": "~1.3.4" }, "bin": { "markdownlint": "markdownlint.js" }, "engines": { - "node": ">=18" - } - }, - "node_modules/markdownlint-cli/node_modules/glob": { - "version": "10.4.5", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", - "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/markdownlint-cli/node_modules/jackspeak": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", - "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/markdownlint-cli/node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "license": "ISC" - }, - "node_modules/markdownlint-cli/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/markdownlint-cli/node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=20" } }, "node_modules/mdurl": { @@ -628,9 +546,9 @@ "license": "MIT" }, "node_modules/micromark": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.1.tgz", - "integrity": "sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz", + "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==", "funding": [ { "type": "GitHub Sponsors", @@ -663,9 +581,9 @@ } }, "node_modules/micromark-core-commonmark": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.2.tgz", - "integrity": "sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz", + "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==", "funding": [ { "type": "GitHub Sponsors", @@ -697,9 +615,9 @@ } }, "node_modules/micromark-extension-directive": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-3.0.2.tgz", - "integrity": "sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/micromark-extension-directive/-/micromark-extension-directive-4.0.0.tgz", + "integrity": "sha512-/C2nqVmXXmiseSSuCdItCMho7ybwwop6RrrRPk0KbOHW21JKoCldC+8rFOaundDoRBUWBnJJcxeA/Kvi34WQXg==", "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -752,9 +670,9 @@ } }, "node_modules/micromark-extension-gfm-table": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.0.tgz", - "integrity": "sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==", + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz", + "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==", "license": "MIT", "dependencies": { "devlop": "^1.0.0", @@ -1085,9 +1003,9 @@ } }, "node_modules/micromark-util-subtokenize": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.4.tgz", - "integrity": "sha512-N6hXjrin2GTJDe3MVjf5FuXpm12PGm80BrUAeub9XFXca8JZbP+oIwY4LJSVwFUCL1IPm/WwSVUN7goFHmSGGQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz", + "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==", "funding": [ { "type": "GitHub Sponsors", @@ -1123,9 +1041,9 @@ "license": "MIT" }, "node_modules/micromark-util-types": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.1.tgz", - "integrity": "sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==", + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", "funding": [ { "type": "GitHub Sponsors", @@ -1285,9 +1203,10 @@ } }, "node_modules/smol-toml": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.3.1.tgz", - "integrity": "sha512-tEYNll18pPKHroYSmLLrksq233j021G0giwW7P3D24jC54pQ5W5BXMsQ/Mvw1OJCmEYDgY+lrzT+3nNUtoNfXQ==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/smol-toml/-/smol-toml-1.3.4.tgz", + "integrity": "sha512-UOPtVuYkzYGee0Bd2Szz8d2G3RfMfJ2t3qVdZUAozZyAk+a0Sxa+QKix0YCwjL/A1RR0ar44nCxaoN9FxdJGwA==", + "license": "BSD-3-Clause", "engines": { "node": ">= 18" }, diff --git a/package.json b/package.json index 305e818c41..e6c8f631d8 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "homepage": "https://tldr.sh/", "dependencies": { "glob": "11.0.2", - "markdownlint-cli": "^0.44.0", + "markdownlint-cli": "^0.45.0", "tldr-lint": "^0.0.17" }, "devDependencies": { From c3d8a7c709dae7ad039a552899001f9ae033a54a Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck Date: Sun, 1 Jun 2025 11:04:37 +0200 Subject: [PATCH 079/141] Ignore debug.log --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index c5b1770350..609d46ae2b 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,6 @@ venv # Generated pycache __pycache__ + +# Generated log +debug.log From 7534eab9c5ee69412f419065bce2e7de8c5505c4 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 11:42:51 +0200 Subject: [PATCH 080/141] neo4j-admin: update More Info link (#16703) --- pages.es/common/neo4j-admin.md | 2 +- pages.ko/common/neo4j-admin.md | 2 +- pages/common/neo4j-admin.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages.es/common/neo4j-admin.md b/pages.es/common/neo4j-admin.md index 43222c84df..dfdf76b377 100644 --- a/pages.es/common/neo4j-admin.md +++ b/pages.es/common/neo4j-admin.md @@ -1,7 +1,7 @@ # neo4j-admin > Gestiona y administra un Neo4j DBMS (Sistema de Gestión de Bases de Datos). -> Más información: . +> Más información: . - Inicia el DBMS: diff --git a/pages.ko/common/neo4j-admin.md b/pages.ko/common/neo4j-admin.md index 315ebc9dcd..3637e751ac 100644 --- a/pages.ko/common/neo4j-admin.md +++ b/pages.ko/common/neo4j-admin.md @@ -2,7 +2,7 @@ > Neo4j DBMS(데이터베이스 관리 시스템) 관리 및 운영. > 같이 보기: `cypher-shell`, `mysqld`. -> 더 많은 정보: . +> 더 많은 정보: . - DBMS 시작: diff --git a/pages/common/neo4j-admin.md b/pages/common/neo4j-admin.md index 310b7ccb6c..8a5b873304 100644 --- a/pages/common/neo4j-admin.md +++ b/pages/common/neo4j-admin.md @@ -2,7 +2,7 @@ > Manage and administer a Neo4j DBMS (Database Management System). > See also: `cypher-shell`, `mysqld`. -> More information: . +> More information: . - Start the DBMS: From 064f987400fe1591544098077e779ffb5251efcd Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 12:10:39 +0200 Subject: [PATCH 081/141] bootc: update More Info link (#16700) --- pages.es/linux/bootc-switch.md | 2 +- pages.pt_BR/linux/bootc.md | 2 +- pages/linux/bootc-switch.md | 2 +- pages/linux/bootc.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.es/linux/bootc-switch.md b/pages.es/linux/bootc-switch.md index 0fedf303bb..2361403221 100644 --- a/pages.es/linux/bootc-switch.md +++ b/pages.es/linux/bootc-switch.md @@ -1,7 +1,7 @@ # bootc switch > Apunta a una nueva referencia de imagen contenedora para arrancar. -> Más información: . +> Más información: . - Cambia el SO base a una nueva imagen de contenedor desde un registro: diff --git a/pages.pt_BR/linux/bootc.md b/pages.pt_BR/linux/bootc.md index b844a72c76..5ee8e740c4 100644 --- a/pages.pt_BR/linux/bootc.md +++ b/pages.pt_BR/linux/bootc.md @@ -2,7 +2,7 @@ > Inicializa e atualiza seu sistema usando imagens de containeres. > Manipula atualizações transacionais e transparentes utilizando imagens de containeres OCI/Docker. -> Mais informações: . +> Mais informações: . - Mostra todos os deployments na ordem que eles aparecem na inicialização: diff --git a/pages/linux/bootc-switch.md b/pages/linux/bootc-switch.md index 525e5f2507..ced5245314 100644 --- a/pages/linux/bootc-switch.md +++ b/pages/linux/bootc-switch.md @@ -1,7 +1,7 @@ # bootc switch > Target a new container image reference to boot. -> More information: . +> More information: . - Change the base OS to a new container image from a registry: diff --git a/pages/linux/bootc.md b/pages/linux/bootc.md index dd323755c9..0a9871feea 100644 --- a/pages/linux/bootc.md +++ b/pages/linux/bootc.md @@ -2,7 +2,7 @@ > Boot and upgrade via container images. > Manages transactional, in-place operating system updates using OCI/Docker container images. -> More information: . +> More information: . - Show deployments in the order they will appear in the bootloader: From b7ec4ef6b6055942f366b10425f515af7f5b0104 Mon Sep 17 00:00:00 2001 From: Isidro Date: Sun, 1 Jun 2025 13:06:33 +0200 Subject: [PATCH 082/141] pstree: add useful arguments (#16691) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages/linux/pstree.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pages/linux/pstree.md b/pages/linux/pstree.md index 018b8fbb6d..f52b17253c 100644 --- a/pages/linux/pstree.md +++ b/pages/linux/pstree.md @@ -3,7 +3,7 @@ > A convenient tool to show running processes as a tree. > More information: . -- Display a tree of processes: +- Display a tree of all processes (rooted at init): `pstree` @@ -14,3 +14,15 @@ - Display all process trees rooted at processes owned by specified user: `pstree {{user}}` + +- Display command line arguments: + +`pstree {{[-a|--arguments]}}` + +- Display children of a specified process: + +`pstree {{pid}}` + +- Display parents of a specified process: + +`pstree {{[-s|--show-parents]}} {{pid}}` From 016797cd4d46bbac61aa8529318f2bd224fe5b63 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 11:08:32 +0000 Subject: [PATCH 083/141] pnm*: update Dutch translation (#16696) --- pages.nl/common/pnmcolormap.md | 4 ++-- pages.nl/common/pnmnorm.md | 4 ++-- pages.nl/common/pnmquantall.md | 2 +- pages.nl/common/pnmremap.md | 8 ++++---- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pages.nl/common/pnmcolormap.md b/pages.nl/common/pnmcolormap.md index 2475f01b6d..0b8008407f 100644 --- a/pages.nl/common/pnmcolormap.md +++ b/pages.nl/common/pnmcolormap.md @@ -9,8 +9,8 @@ - Gebruik de splitspread strategie voor het bepalen van de uitvoer-kleuren, welke waarschijnlijk een beter resultaat oplevert met afbeeldingen met kleine details: -`pnmcolormap -splitspread {{n_kleuren}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.ppm}}` +`pnmcolormap {{[-splits|-splitspread]}} {{n_kleuren}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.ppm}}` - Sorteer de resulteerde kleurkaart, welke nuttig is voor het vergelijken van kleurkaarten: -`pnmcolormap -sort {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.ppm}}` +`pnmcolormap {{[-so|-sort]}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.ppm}}` diff --git a/pages.nl/common/pnmnorm.md b/pages.nl/common/pnmnorm.md index c1ac803e4e..f54c9fb009 100644 --- a/pages.nl/common/pnmnorm.md +++ b/pages.nl/common/pnmnorm.md @@ -10,11 +10,11 @@ - Forceer de helderste pixels om wit te zijn, de donkerste pixels om zwart te zijn en verspreid de tussenliggende pixels kwadratisch zodat pixels met een helderheid van `n` 50% helderder worden: -`pnmnorm -midvalue {{n}} {{pad/naar/afbeelding.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmnorm {{[-midv|-midvalue]}} {{n}} {{pad/naar/afbeelding.pnm}} > {{pad/naar/uitvoer.pnm}}` - Behoud de tint van de pixels, pas alleen de helderheid aan: -`pnmnorm -keephues {{pad/naar/afbeelding.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmnorm {{[-k|-keephues]}} {{pad/naar/afbeelding.pnm}} > {{pad/naar/uitvoer.pnm}}` - Specificeer een methode om de helderheid van een pixel te berekenen: diff --git a/pages.nl/common/pnmquantall.md b/pages.nl/common/pnmquantall.md index ecd7710f7b..c658741904 100644 --- a/pages.nl/common/pnmquantall.md +++ b/pages.nl/common/pnmquantall.md @@ -10,4 +10,4 @@ - Sla de gekwantificeerde afbeeldingen op naar bestanden met dezelfde namen als de invoerbestanden, maar met de gespecificeerde extensie: -`pnmquantall -ext {{extensie}} {{n_kleuren}} {{pad/naar/invoer1.pnm pad/naar/invoer2.pnm ...}}` +`pnmquantall {{[-e|-ext]}} {{extensie}} {{n_kleuren}} {{pad/naar/invoer1.pnm pad/naar/invoer2.pnm ...}}` diff --git a/pages.nl/common/pnmremap.md b/pages.nl/common/pnmremap.md index f5f18fdb78..eba64b3c9f 100644 --- a/pages.nl/common/pnmremap.md +++ b/pages.nl/common/pnmremap.md @@ -5,16 +5,16 @@ - Vervang de kleuren in een afbeelding met diegene gespecificeerd in een kleurenpalet: -`pnmremap -mapfile {{pad/naar/kleurenpalet_bestand.ppm}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmremap {{[-ma|-mapfile]}} {{pad/naar/kleurenpalet_bestand.ppm}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` - Gebruik Floyd-Steinberg dithering voor het representeren van missende kleuren in het kleurenpalet: -`pnmremap -mapfile {{pad/naar/kleurenpalet_bestand.ppm}} -floyd {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmremap {{[-ma|-mapfile]}} {{pad/naar/kleurenpalet_bestand.ppm}} {{[-fs|-floyd]}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` - Gebruik de eerste kleur in het palet voor het representeren van missende kleuren in het kleurenpalet: -`pnmremap -mapfile {{pad/naar/kleurenpalet_bestand.ppm}} -firstisdefault {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmremap {{[-ma|-mapfile]}} {{pad/naar/kleurenpalet_bestand.ppm}} {{[-fi|-firstisdefault]}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` - Gebruik de gespecificeerde kleur voor het representeren van de missende kleuren in het kleurenpalet: -`pnmremap -mapfile {{pad/naar/kleurenpalet_bestand.ppm}} -missingcolor {{kleur}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` +`pnmremap {{[-ma|-mapfile]}} {{pad/naar/kleurenpalet_bestand.ppm}} {{[-m|-missingcolor]}} {{kleur}} {{pad/naar/invoer.pnm}} > {{pad/naar/uitvoer.pnm}}` From 1a600a324eb60946790c7b8386a911b5c570861c Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 11:09:49 +0000 Subject: [PATCH 084/141] aircrack-ng: update Dutch translation (#16697) --- pages.nl/common/aircrack-ng.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pages.nl/common/aircrack-ng.md b/pages.nl/common/aircrack-ng.md index 6cc724e57e..cbd28f2ba6 100644 --- a/pages.nl/common/aircrack-ng.md +++ b/pages.nl/common/aircrack-ng.md @@ -4,14 +4,18 @@ > Onderdeel van Aircrack-ng netwerksoftwaresuite. > Meer informatie: . -- Kraak-sleutel uit opnamebestand met behulp van woordenlijst: +- Kraak sleutel uit opnamebestand met behulp van [w]oordenlijst: `aircrack-ng -w {{pad/naar/woordenlijst.txt}} {{pad/naar/pakketbestand.cap}}` -- Kraak de sleutel uit het opnamebestand met behulp van de woordenlijst en de essid van het toegangspunt: +- Kraak de sleutel met behulp van meerdere CPU-threads uit opnamebestand met behulp van [w]oordenlijst: + +`aircrack-ng -p {{nummer}} -w {{pad/naar/woordenlijst.txt}} {{pad/naar/pakketbestand.cap}}` + +- Kraak de sleutel uit het opnamebestand met behulp van de [w]oordenlijst en de [e]ssid van het toegangspunt: `aircrack-ng -w {{pad/naar/woordenlijst.txt}} -e {{essid}} {{pad/naar/pakketbestand.cap}}` -- Kraak de sleutel uit het opnamebestand met behulp van de woordenlijst en het MAC-adres van het toegangspunt: +- Kraak de sleutel uit het opnamebestand met behulp van de [w]oordenlijst en het MAC-adres van het toegangspunt: `aircrack-ng -w {{pad/naar/woordenlijst.txt}} --bssid {{mac}} {{pad/naar/pakketbestand.cap}}` From 0ceda4f22181377f87b9ced9b81337ec8a3e8f83 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 13:10:23 +0200 Subject: [PATCH 085/141] irb: update More Info link (#16701) --- pages/common/irb.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/irb.md b/pages/common/irb.md index e6fa9750a4..3b8d9d21e0 100644 --- a/pages/common/irb.md +++ b/pages/common/irb.md @@ -2,7 +2,7 @@ > Interactive Ruby shell. > Evaluate Ruby code read from `stdin`. -> More information: . +> More information: . - Start the interactive shell: From 40f47db6f12a9b1ec91dd605fcf8ddfc33a5f8f9 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 11:10:58 +0000 Subject: [PATCH 086/141] yay: fix page and add Dutch translation (#16698) --- pages.nl/linux/yay.md | 37 +++++++++++++++++++++++++++++++++++++ pages/linux/yay.md | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 pages.nl/linux/yay.md diff --git a/pages.nl/linux/yay.md b/pages.nl/linux/yay.md new file mode 100644 index 0000000000..0c40488694 --- /dev/null +++ b/pages.nl/linux/yay.md @@ -0,0 +1,37 @@ +# yay + +> Yet Another Yogurt: bouw en installeer pakketten van de Arch User Repository. +> Bekijk ook: `pacman`. +> Meer informatie: . + +- Zoek en installeer interactief pakketten van de bronnen en AUR: + +`yay {{pakket_naam|zoekpatroon}}` + +- Synchroniseer en update alle pakketten van de bronnen en AUR: + +`yay` + +- Installeer een nieuw pakket van de bronnen en AUR en vraag niet om transacties te bevestigen: + +`yay -S {{pakket}} --noconfirm` + +- Verwijder een geïnstalleerd pakket en de bijbehorende afhankelijkheden en configuratiebestanden: + +`yay -Rns {{pakket}}` + +- Doorzoek de pakketdatabase voor een sleutelwoord van de bronnen en AUR: + +`yay -Ss {{sleutelwoord}}` + +- Verwijder weespakketten (geïnstalleerd als afhankelijkheden maar niet daadwerkelijk vereist door een ander pakket): + +`yay -Yc` + +- Leeg de `pacman` en `yay` caches (oude pakketversies worden bewaard voor rollback- en downgrade-doeleinden): + +`yay -Scc` + +- Toon statistieken van geïnstalleerde pakketten en systeemstatus: + +`yay -Ps` diff --git a/pages/linux/yay.md b/pages/linux/yay.md index 907a02edb8..b65e39c6df 100644 --- a/pages/linux/yay.md +++ b/pages/linux/yay.md @@ -1,7 +1,7 @@ # yay > Yet Another Yogurt: build and install packages from the Arch User Repository. -> Also see `pacman`. +> See also: `pacman`. > More information: . - Interactively search and install packages from the repos and AUR: From 00d4be7f559ca0646e0b053fb831b5c0d3f2d567 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 13:12:20 +0200 Subject: [PATCH 087/141] doggo: update More Info link (#16702) --- pages/common/doggo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/common/doggo.md b/pages/common/doggo.md index 297d9a5b23..7a6b305dba 100644 --- a/pages/common/doggo.md +++ b/pages/common/doggo.md @@ -2,7 +2,7 @@ > DNS client for Humans. > Written in Golang. -> More information: . +> More information: . - Perform a simple DNS lookup: From 80568cc569114e33419e30f37b6898a028eb1415 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 11:13:20 +0000 Subject: [PATCH 088/141] rsync: add Dutch translation (#16699) --- pages.nl/common/rsync.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 pages.nl/common/rsync.md diff --git a/pages.nl/common/rsync.md b/pages.nl/common/rsync.md new file mode 100644 index 0000000000..65c8845a09 --- /dev/null +++ b/pages.nl/common/rsync.md @@ -0,0 +1,37 @@ +# rsync + +> Draag bestanden over naar of van een externe host (maar niet tussen twee externe hosts), met als standaard via SSH. +> Om een pad te specificeren, gebruik `gebruiker@host:pad/naar/bestand_of_map`. +> Meer informatie: . + +- Draag een bestand over: + +`rsync {{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Gebruik archiefmodus (kopieer recursief mappen, kopieer symlinks zonder ze op te lossen en behoud machtigingen, eigendom en wijzigingstijden): + +`rsync {{[-a|--archive]}} {{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Comprimeer de data wanneer deze worden verzonden naar de bestemming, toon verbose en voor mensen leesbare voortgang, en behoud gedeeltelijk overgedragen bestanden als er een onderbreking is: + +`rsync {{[-zvhP|--compress --verbose --human-readable --partial --progress]}} {{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Kopieer recursief mappen: + +`rsync {{[-r|--recursive]}} {{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Draag de inhoud van een map over, maar niet de map zelf: + +`rsync {{[-r|--recursive]}} {{pad/naar/bron/}} {{pad/naar/bestemming}}` + +- Gebruik archiefmodus, los symlinks op en sla bestanden over die nieuwer zijn op de bestemming: + +`rsync {{[-auL|--archive --update --copy-links]}} {{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Draag een map over van een externe host waarop `rsyncd` draait en verwijder bestanden op de bestemming die niet op de bron bestaan: + +`rsync {{[-r|--recursive]}} --delete rsync://{{host}}:{{pad/naar/bron}} {{pad/naar/bestemming}}` + +- Draag een bestand over via SSH met een andere poort dan de standaardpoort (22) en toon globale voortgang: + +`rsync {{[-e|--rsh]}} 'ssh -p {{poort}}' --info=progress2 {{host}}:{{pad/naar/bron}} {{pad/naar/bestemming}}` From caa1ff4476ceb75eb89bcfda067980e2d68ae97a Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 1 Jun 2025 13:13:48 +0200 Subject: [PATCH 089/141] pam*: update translations (part 1) (#16692) --- pages.es/common/pambrighten.md | 4 ++-- pages.es/common/pamcut.md | 6 +++--- pages.es/common/pamditherbw.md | 4 ++-- pages.es/common/pamenlarge.md | 4 ++-- pages.es/common/pamfile.md | 4 ++-- pages.es/common/pamstretch.md | 4 ++-- pages.ko/common/pambrighten.md | 4 ++-- pages.ko/common/pamcomp.md | 6 +++--- pages.ko/common/pamcrater.md | 4 ++-- pages.ko/common/pamcut.md | 6 +++--- pages.ko/common/pamdice.md | 4 ++-- pages.ko/common/pamditherbw.md | 4 ++-- pages.ko/common/pamenlarge.md | 4 ++-- pages.ko/common/pamfile.md | 4 ++-- pages.ko/common/pamoil.md | 2 +- pages.ko/common/pamscale.md | 6 +++--- pages.ko/common/pamstretch-gen.md | 2 +- pages.ko/common/pamstretch.md | 4 ++-- pages.ko/common/pamundice.md | 6 +++--- pages.nl/common/pambrighten.md | 4 ++-- pages.nl/common/pamcomp.md | 6 +++--- pages.nl/common/pamcrater.md | 4 ++-- pages.nl/common/pamcut.md | 6 +++--- pages.nl/common/pamditherbw.md | 4 ++-- pages.nl/common/pamenlarge.md | 4 ++-- pages.nl/common/pamfile.md | 4 ++-- pages.nl/common/pamoil.md | 2 +- pages.nl/common/pamscale.md | 6 +++--- pages.nl/common/pamstretch.md | 4 ++-- pages/common/pamundice.md | 2 +- 30 files changed, 64 insertions(+), 64 deletions(-) diff --git a/pages.es/common/pambrighten.md b/pages.es/common/pambrighten.md index b88f37ee91..8ac36b3581 100644 --- a/pages.es/common/pambrighten.md +++ b/pages.es/common/pambrighten.md @@ -5,8 +5,8 @@ - Aumenta la saturación de cada píxel con un porcentaje específico: -`pambrighten -saturation {{valor_porcentual}} {{ruta/a/imagen.pam}} > {{ruta/a/archivo_de_salida.pam}}` +`pambrighten {{[-s|-saturation]}} {{valor_porcentual}} {{ruta/a/imagen.pam}} > {{ruta/a/archivo_de_salida.pam}}` - Aumenta el valor (del espacio de color HSV) de cada píxel con un porcentaje específico: -`pambrighten -value {{valor_porcentual}} {{ruta/a/imagen.pam}} > {{ruta/a/archivo_de_salida.pam}}` +`pambrighten {{[-va|-value]}} {{valor_porcentual}} {{ruta/a/imagen.pam}} > {{ruta/a/archivo_de_salida.pam}}` diff --git a/pages.es/common/pamcut.md b/pages.es/common/pamcut.md index 0ffd7774f9..c38364cc96 100644 --- a/pages.es/common/pamcut.md +++ b/pages.es/common/pamcut.md @@ -6,12 +6,12 @@ - Descarta la cantidad de columnas/filas especificadas a cada lado de la imagen: -`pamcut -cropleft {{valor}} -cropright {{valor}} -croptop {{valor}} -cropbottom {{valor}} {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` +`pamcut {{[-cropl|-cropleft]}} {{valor}} {{[-cropr|-cropright]}} {{valor}} {{[-cropt|-croptop]}} {{valor}} {{[-cropb|-cropbottom]}} {{valor}} {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` - Mantiene solo las columnas entre las columnas especificadas (inclusivamente): -`pamcut -left {{valor}} -right {{valor}} {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` +`pamcut {{[-l|-left]}} {{valor}} {{[-ri|-right]}} {{valor}} {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` - Llena áreas perdidas con píxeles negros si el rectángulo especificado no se encuentra completamente dentro de la imagen de entrada: -`pamcut -top {{valor}} -bottom {{valor}} -pad {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` +`pamcut {{[-t|-top]}} {{valor}} {{[-b|-bottom]}} {{valor}} -pad {{ruta/a/la/imagen.ppm}} > {{ruta/al/resultado.ppm}}` diff --git a/pages.es/common/pamditherbw.md b/pages.es/common/pamditherbw.md index a4cf2de1b6..f26e7d1170 100644 --- a/pages.es/common/pamditherbw.md +++ b/pages.es/common/pamditherbw.md @@ -14,8 +14,8 @@ - Utiliza el método de cuantización de atkinson y la semilla especificada para un generador de número pseudo-aleatorio: -`ppmditherbw -atkinson -randomseed {{1337}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}` +`ppmditherbw {{[-a|-atkinson]}} {{[-r|-randomseed]}} {{1337}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}` - Especifica el valor de umbralización (thresholding) para los métodos de cuantización que realizan algún tipo de umbralización: -`ppmditherbw -{{fs|atkinson|thresholding}} -value {{0.3}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}` +`ppmditherbw -{{fs|atkinson|thresholding}} {{[-va|-value]}} {{0.3}} {{ruta/a/la/imagen.pgm}} > {{ruta/al/archivo.pgm}}` diff --git a/pages.es/common/pamenlarge.md b/pages.es/common/pamenlarge.md index 495186d93f..be1247a7c4 100644 --- a/pages.es/common/pamenlarge.md +++ b/pages.es/common/pamenlarge.md @@ -6,8 +6,8 @@ - Amplía la imagen especificada por el factor dado: -`pamenlarge -scale {{N}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` +`pamenlarge {{[-s|-scale]}} {{n}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` - Amplía la imagen especificada por los factores especificados horizontal y verticalmente: -`pamenlarge -xscale {{XN}} -yscale {{YN}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` +`pamenlarge {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` diff --git a/pages.es/common/pamfile.md b/pages.es/common/pamfile.md index 58f398d450..1cbee01288 100644 --- a/pages.es/common/pamfile.md +++ b/pages.es/common/pamfile.md @@ -9,8 +9,8 @@ - Describe cada imagen en cada archivo de entrada (a diferencia de la primera imagen en cada archivo) en un formato legible para la máquina: -`pamfile -allimages -machine {{ruta/al/archivo}}` +`pamfile {{[-a|-allimages]}} -machine {{ruta/al/archivo}}` - Muestra un conteo de cuántas imágenes contiene el archivo: -`pamfile -count {{ruta/al/archivo}}` +`pamfile {{[-cou|-count]}} {{ruta/al/archivo}}` diff --git a/pages.es/common/pamstretch.md b/pages.es/common/pamstretch.md index edbb4922a1..13b06376ef 100644 --- a/pages.es/common/pamstretch.md +++ b/pages.es/common/pamstretch.md @@ -6,8 +6,8 @@ - Escala una imagen PAM por un factor entero: -`pamstretch {{N}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` +`pamstretch {{n}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` - Escala una imagen PAM por los factores especificados en las direcciones horizontales y verticales: -`pamstretch -xscale {{XN}} -yscale {{YN}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` +`pamstretch {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{ruta/a/la/imagen.pam}} > {{ruta/al/resultado.pam}}` diff --git a/pages.ko/common/pambrighten.md b/pages.ko/common/pambrighten.md index 4c85d73a9b..7763bd9b48 100644 --- a/pages.ko/common/pambrighten.md +++ b/pages.ko/common/pambrighten.md @@ -5,8 +5,8 @@ - 각 픽셀의 채도를 지정된 백분율만큼 증가: -`pambrighten -saturation {{백분율_값}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pambrighten {{[-s|-saturation]}} {{백분율_값}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` - 각 픽셀의 명도(HSV 색상 공간에서)를 지정된 백분율만큼 증가: -`pambrighten -value {{백분율_값}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pambrighten {{[-va|-value]}} {{백분율_값}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamcomp.md b/pages.ko/common/pamcomp.md index f1a67bf9de..07b682b73d 100644 --- a/pages.ko/common/pamcomp.md +++ b/pages.ko/common/pamcomp.md @@ -9,12 +9,12 @@ - 오버레이의 수평 정렬 설정: -`pamcomp -align {{left|center|right|beyondleft|beyondright}} -xoff {{수평_오프셋}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` +`pamcomp {{[-ali|-align]}} {{left|center|right|beyondleft|beyondright}} {{[-x|-xoff]}} {{수평_오프셋}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` - 오버레이의 수직 정렬 설정: -`pamcomp -valign {{top|middle|bottom|above|below}} -yoff {{수직_오프셋}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` +`pamcomp {{[-va|-valign]}} {{top|middle|bottom|above|below}} {{[-y|-yoff]}} {{수직_오프셋}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` - 오버레이의 불투명도 설정: -`pamcomp -opacity {{0.7}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` +`pamcomp {{[-o|-opacity]}} {{0.7}} {{경로/대상/오버레이.pam}} {{경로/대상/언더레이.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamcrater.md b/pages.ko/common/pamcrater.md index ddfcfcdc73..57d161f7db 100644 --- a/pages.ko/common/pamcrater.md +++ b/pages.ko/common/pamcrater.md @@ -6,8 +6,8 @@ - 지정된 크기의 분화구 지형 이미지를 생성: -`pamcrater -height {{높이}} -width {{너비}} > {{경로/대상/출력.pam}}` +`pamcrater {{[-h|-height]}} {{높이}} {{[-w|-width]}} {{너비}} > {{경로/대상/출력.pam}}` - 지정된 개수의 분화구를 포함한 이미지 생성: -`pamcrater -number {{분화구_개수}} > {{경로/대상/출력.pam}}` +`pamcrater {{[-n|-number]}} {{분화구_개수}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamcut.md b/pages.ko/common/pamcut.md index 6a66a2d64f..d5e90fe092 100644 --- a/pages.ko/common/pamcut.md +++ b/pages.ko/common/pamcut.md @@ -6,12 +6,12 @@ - 이미지의 양쪽에서 지정된 열/행 수만큼 잘라내기: -`pamcut -cropleft {{값}} -cropright {{값}} -croptop {{값}} -cropbottom {{값}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pamcut {{[-cropl|-cropleft]}} {{값}} {{[-cropr|-cropright]}} {{값}} {{[-cropt|-croptop]}} {{값}} {{[-cropb|-cropbottom]}} {{값}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` - 지정된 열 사이의 열만 유지하기 (포함): -`pamcut -left {{값}} -right {{값}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pamcut {{[-l|-left]}} {{값}} {{[-ri|-right]}} {{값}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` - 지정된 직사각형이 입력 이미지 내에 완전히 포함되지 않을 경우, 누락된 영역을 검은색 픽셀로 채우기: -`pamcut -top {{값}} -bottom {{값}} -pad {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pamcut {{[-t|-top]}} {{값}} {{[-b|-bottom]}} {{값}} -pad {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` diff --git a/pages.ko/common/pamdice.md b/pages.ko/common/pamdice.md index 73c5e4d147..59acdf4bc3 100644 --- a/pages.ko/common/pamdice.md +++ b/pages.ko/common/pamdice.md @@ -6,8 +6,8 @@ - 결과 타일이 지정된 높이와 너비를 가지도록 Netpbm 이미지 자르기: -`pamdice -outstem {{경로/대상/파일명_스템}} -height {{값}} -width {{값}} {{경로/대상/입력.ppm}}` +`pamdice {{[-o|-outstem]}} {{경로/대상/파일명_스템}} {{[-h|-height]}} {{값}} {{[-w|-width]}} {{값}} {{경로/대상/입력.ppm}}` - 생성된 조각을 지정된 양만큼 수평 및 수직으로 겹치도록 만들기: -`pamdice -outstem {{경로/대상/파일명_스템}} -height {{값}} -width {{값}} -hoverlap {{값}} -voverlap {{값}} {{경로/대상/입력.ppm}}` +`pamdice {{[-o|-outstem]}} {{경로/대상/파일명_스템}} {{[-h|-height]}} {{값}} {{[-w|-width]}} {{값}} {{[-ho|-hoverlap]}} {{값}} {{[-vo|-voverlap]}} {{값}} {{경로/대상/입력.ppm}}` diff --git a/pages.ko/common/pamditherbw.md b/pages.ko/common/pamditherbw.md index 8dae9417be..c33600f6df 100644 --- a/pages.ko/common/pamditherbw.md +++ b/pages.ko/common/pamditherbw.md @@ -14,8 +14,8 @@ - atkinson 양자화 방법과 지정된 시드를 사용하여 의사 난수 생성기 사용: -`ppmditherbw -atkinson -randomseed {{1337}} {{경로/대상/image.pgm}} > {{경로/대상/파일.pgm}}` +`ppmditherbw {{[-a|-atkinson]}} {{[-r|-randomseed]}} {{1337}} {{경로/대상/image.pgm}} > {{경로/대상/파일.pgm}}` - 특정 형태의 임계값 처리를 수행하는 양자화 방법을 위한 임계값 지정: -`ppmditherbw -{{fs|atkinson|thresholding}} -value {{0.3}} {{경로/대상/image.pgm}} > {{경로/대상/파일.pgm}}` +`ppmditherbw -{{fs|atkinson|thresholding}} {{[-va|-value]}} {{0.3}} {{경로/대상/image.pgm}} > {{경로/대상/파일.pgm}}` diff --git a/pages.ko/common/pamenlarge.md b/pages.ko/common/pamenlarge.md index 6b54795ba9..6c708cd584 100644 --- a/pages.ko/common/pamenlarge.md +++ b/pages.ko/common/pamenlarge.md @@ -6,8 +6,8 @@ - 지정된 이미지를 주어진 배율로 확대: -`pamenlarge -scale {{N}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pamenlarge {{[-s|-scale]}} {{n}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` - 지정된 이미지를 가로 및 세로로 주어진 배율로 확대: -`pamenlarge -xscale {{XN}} -yscale {{YN}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pamenlarge {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamfile.md b/pages.ko/common/pamfile.md index e6d0cd2f8b..06ec35afa5 100644 --- a/pages.ko/common/pamfile.md +++ b/pages.ko/common/pamfile.md @@ -9,8 +9,8 @@ - 각 입력 파일의 모든 이미지를 설명(각 파일의 첫 번째 이미지만이 아닌 모든 이미지)하고 기계 판독 가능한 형식으로 출력: -`pamfile -allimages -machine {{경로/대상/파일}}` +`pamfile {{[-a|-allimages]}} -machine {{경로/대상/파일}}` - 입력 파일에 포함된 이미지 수를 표시: -`pamfile -count {{경로/대상/파일}}` +`pamfile {{[-cou|-count]}} {{경로/대상/파일}}` diff --git a/pages.ko/common/pamoil.md b/pages.ko/common/pamoil.md index 58231a5aa9..eb522d5f86 100644 --- a/pages.ko/common/pamoil.md +++ b/pages.ko/common/pamoil.md @@ -9,4 +9,4 @@ - "번지기" 효과를 위해 N 픽셀의 이웃을 고려: -`pamoil -n {{N}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력_파일.pam}}` +`pamoil -n {{n}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력_파일.pam}}` diff --git a/pages.ko/common/pamscale.md b/pages.ko/common/pamscale.md index 440185d160..4a0b436968 100644 --- a/pages.ko/common/pamscale.md +++ b/pages.ko/common/pamscale.md @@ -5,15 +5,15 @@ - 결과 이미지가 지정된 크기를 갖도록 이미지 크기 조정: -`pamscale -width {{너비}} -height {{높이}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamscale {{[-wid|-width]}} {{너비}} {{[-h|-height]}} {{높이}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 이미지의 가로 세로 비율을 유지하면서 결과 이미지가 지정된 너비를 갖도록 크기 조정: -`pamscale -width {{너비}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamscale {{[-wid|-width]}} {{너비}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 이미지의 너비와 높이를 지정된 비율로 변경하여 크기 조정: -`pamscale -xscale {{x_비율}} -yscale {{y_비율}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamscale {{[-xsc|-xscale]}} {{x_비율}} {{[-ysc|-yscale]}} {{y_비율}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 이미지의 가로 세로 비율을 유지하면서 지정된 경계 상자에 맞도록 크기 조정: diff --git a/pages.ko/common/pamstretch-gen.md b/pages.ko/common/pamstretch-gen.md index b929cbaf1d..c55141a72f 100644 --- a/pages.ko/common/pamstretch-gen.md +++ b/pages.ko/common/pamstretch-gen.md @@ -6,4 +6,4 @@ - 지정된 소수 배율로 PAM 이미지 확대: -`pamstretch-gen {{N}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pamstretch-gen {{n}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamstretch.md b/pages.ko/common/pamstretch.md index 28abd0149e..b02b6575cb 100644 --- a/pages.ko/common/pamstretch.md +++ b/pages.ko/common/pamstretch.md @@ -6,8 +6,8 @@ - PAM 이미지를 정수 배율로 확대: -`pamstretch {{N}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pamstretch {{n}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` - PAM 이미지를 가로 및 세로 방향으로 지정된 배율로 확대: -`pamstretch -xscale {{XN}} -yscale {{YN}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` +`pamstretch {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamundice.md b/pages.ko/common/pamundice.md index 1ad7930d28..d64c2d8154 100644 --- a/pages.ko/common/pamundice.md +++ b/pages.ko/common/pamundice.md @@ -6,12 +6,12 @@ - `printf` 스타일의 파일 이름 표현과 일치하는 이미지 결합. 특정 크기의 그리드를 가정: -`pamundice {{파일이름_%1d_%1a.ppm}} -across {{그리드_너비}} -down {{그리드_높이}} > {{경로/대상/출력.ppm}}` +`pamundice {{파일이름_%1d_%1a.ppm}} {{[-a|-across]}} {{그리드_너비}} {{[-d|-down]}} {{그리드_높이}} > {{경로/대상/출력.ppm}}` - 타일이 지정된 양만큼 수평 및 수직으로 겹친다고 가정: -`pamundice {{파일이름_%1d_%1a.ppm}} -across {{x_값}} -down {{y_값}} -hoverlap {{값}} -voverlap {{값}} > {{경로/대상/출력.ppm}}` +`pamundice {{파일이름_%1d_%1a.ppm}} {{[-a|-across]}} {{x_값}} {{[-d|-down]}} {{y_값}} {{[-ho|-hoverlap]}} {{값}} {{[-vo|-voverlap]}} {{값}} > {{경로/대상/출력.ppm}}` - 결합할 이미지를 한 줄에 하나의 파일 이름이 있는 텍스트 파일로 지정: -`pamundice -listfile {{경로/대상/파일.txt}} -across {{x_값}} -down {{y_값}} > {{경로/대상/출력.ppm}}` +`pamundice {{[-l|-listfile]}} {{경로/대상/파일.txt}} {{[-a|-across]}} {{x_값}} {{[-d|-down]}} {{y_값}} > {{경로/대상/출력.ppm}}` diff --git a/pages.nl/common/pambrighten.md b/pages.nl/common/pambrighten.md index 968589aa50..1412e42132 100644 --- a/pages.nl/common/pambrighten.md +++ b/pages.nl/common/pambrighten.md @@ -5,8 +5,8 @@ - Verhoog de verzadiging van elke pixel met het gespecificeerde percentage: -`pambrighten -saturation {{percentage}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pambrighten {{[-s|-saturation]}} {{percentage}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` - Verhoog de waarde (van de HSV kleurruimte) van elke pixel met het gespecificeerde percentage: -`pambrighten -value {{percentage}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pambrighten {{[-va|-value]}} {{percentage}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/pamcomp.md b/pages.nl/common/pamcomp.md index b13959ba09..80e67d91d6 100644 --- a/pages.nl/common/pamcomp.md +++ b/pages.nl/common/pamcomp.md @@ -9,12 +9,12 @@ - Zet de horizontale uitlijning van de bovenlaag: -`pamcomp -align {{left|center|right|beyondleft|beyondright}} -xoff {{x_offset}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` +`pamcomp {{[-ali|-align]}} {{left|center|right|beyondleft|beyondright}} {{[-x|-xoff]}} {{x_offset}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` - Zet de verticale uitlijning van de bovenlaag: -`pamcomp -valign {{top|middle|bottom|above|below}} -yoff {{y_offset}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` +`pamcomp {{[-va|-valign]}} {{top|middle|bottom|above|below}} {{[-y|-yoff]}} {{y_offset}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` - Zet de dekking van de bovenlaag: -`pamcomp -opacity {{0.7}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` +`pamcomp {{[-o|-opacity]}} {{0.7}} {{pad/naar/bovenlaag.pam}} {{pad/naar/onderlaag.pam}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/pamcrater.md b/pages.nl/common/pamcrater.md index 6d508ec13e..2435498473 100644 --- a/pages.nl/common/pamcrater.md +++ b/pages.nl/common/pamcrater.md @@ -6,8 +6,8 @@ - Maak een afbeelding van een krater terrein met de gespecificeerde dimensies: -`pamcrater -height {{hoogte}} -width {{breedte}} > {{pad/naar/uitvoer.pam}}` +`pamcrater {{[-h|-height]}} {{hoogte}} {{[-w|-width]}} {{breedte}} > {{pad/naar/uitvoer.pam}}` - Maak een afbeelding met het gespecificeerde nummer van kraters: -`pamcrater -number {{n_kraters}} > {{pad/naar/uitvoer.pam}}` +`pamcrater {{[-n|-number]}} {{n_kraters}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/pamcut.md b/pages.nl/common/pamcut.md index 7c3d72e646..e9679b1c1c 100644 --- a/pages.nl/common/pamcut.md +++ b/pages.nl/common/pamcut.md @@ -6,12 +6,12 @@ - Verwijder het gespecificeerde nummer van kolommen/rijen van iedere zijde van de afbeelding: -`pamcut -cropleft {{waarde}} -cropright {{waarde}} -croptop {{waarde}} -cropbottom {{waarde}} {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` +`pamcut {{[-cropl|-cropleft]}} {{waarde}} {{[-cropr|-cropright]}} {{waarde}} {{[-cropt|-croptop]}} {{waarde}} {{[-cropb|-cropbottom]}} {{waarde}} {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` - Behoud alleen de kolommen tussen de gespecificeerde kolommen (inclusief de gespecificeerde): -`pamcut -left {{waarde}} -right {{waarde}} {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` +`pamcut {{[-l|-left]}} {{waarde}} {{[-ri|-right]}} {{waarde}} {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` - Vul missende gebieden met zwarte pixels als de gespecificeerde rechthoek niet volledig ligt in de invoer-afbeelding: -`pamcut -top {{waarde}} -bottom {{waarde}} -pad {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` +`pamcut {{[-t|-top]}} {{waarde}} {{[-b|-bottom]}} {{waarde}} -pad {{pad/naar/afbeelding.ppm}} > {{pad/naar/uitvoer.ppm}}` diff --git a/pages.nl/common/pamditherbw.md b/pages.nl/common/pamditherbw.md index 8a73df0933..ceb69960c7 100644 --- a/pages.nl/common/pamditherbw.md +++ b/pages.nl/common/pamditherbw.md @@ -14,8 +14,8 @@ - Gebruik de atkinson kwantificering methode en de gespecifieerde seed voor een pseudo-random nummer generator: -`ppmditherbw -atkinson -randomseed {{1337}} {{pad/naar/afbeelding.pgm}} > {{pad/naar/bestand.pgm}}` +`ppmditherbw {{[-a|-atkinson]}} {{[-r|-randomseed]}} {{1337}} {{pad/naar/afbeelding.pgm}} > {{pad/naar/bestand.pgm}}` - Specificeer de drempel waarde van de kwantificering methodes die een vorm van drempels uitvoeren: -`ppmditherbw -{{fs|atkinson|thresholding}} -value {{0.3}} {{pad/naar/afbeelding.pgm}} > {{pad/naar/bestand.pgm}}` +`ppmditherbw -{{fs|atkinson|thresholding}} {{[-va|-value]}} {{0.3}} {{pad/naar/afbeelding.pgm}} > {{pad/naar/bestand.pgm}}` diff --git a/pages.nl/common/pamenlarge.md b/pages.nl/common/pamenlarge.md index 59411f409e..c065a4bf2a 100644 --- a/pages.nl/common/pamenlarge.md +++ b/pages.nl/common/pamenlarge.md @@ -6,8 +6,8 @@ - Vergroot de gespecificeerde afbeelding met de gespecificeerde factor: -`pamenlarge -scale {{N}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pamenlarge {{[-s|-scale]}} {{n}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` - Vergroot de gespecificeerde afbeelding met de gespecificeerde factors horizontaal en verticaal: -`pamenlarge -xscale {{XN}} -yscale {{YN}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pamenlarge {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/pamfile.md b/pages.nl/common/pamfile.md index 3b379b3d1f..d36a22c0ed 100644 --- a/pages.nl/common/pamfile.md +++ b/pages.nl/common/pamfile.md @@ -9,8 +9,8 @@ - Beschrijf iedere afbeelding in ieder invoerbestand (in tegenstelling tot alleen de eerste afbeelding in elk bestand) in een machine-leesbaar formaat: -`pamfile -allimages -machine {{pad/naar/bestand}}` +`pamfile {{[-a|-allimages]}} -machine {{pad/naar/bestand}}` - Toon hoeveel afbeeldingen de invoerbestanden bevatten: -`pamfile -count {{pad/naar/bestand}}` +`pamfile {{[-cou|-count]}} {{pad/naar/bestand}}` diff --git a/pages.nl/common/pamoil.md b/pages.nl/common/pamoil.md index 1d9df4b42a..1cd4da8496 100644 --- a/pages.nl/common/pamoil.md +++ b/pages.nl/common/pamoil.md @@ -9,4 +9,4 @@ - Beschouw een omgeving van N pixels voor het "smearing"-effect: -`pamoil -n {{N}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer_bestand.pam}}` +`pamoil -n {{n}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer_bestand.pam}}` diff --git a/pages.nl/common/pamscale.md b/pages.nl/common/pamscale.md index f2d014d5a9..22d933e8ee 100644 --- a/pages.nl/common/pamscale.md +++ b/pages.nl/common/pamscale.md @@ -5,15 +5,15 @@ - Schaal een afbeelding zodat het resultaat de gespecificeerde verhoudingen heeft: -`pamscale -width {{breedte}} -height {{hoogte}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoering.pam}}` +`pamscale {{[-wid|-width]}} {{breedte}} {{[-h|-height]}} {{hoogte}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoering.pam}}` - Schaal een afbeelding zodat het resultaat de gespecificeerde breedte heeft met behoud van de beeldverhouding: -`pamscale -width {{breedte}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamscale {{[-wid|-width]}} {{breedte}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` - Schaal een afbeelding zodat de breedte en de hoogte aangepast worden volgens de gespecificeerde factoren: -`pamscale -xscale {{x_factor}} -yscale {{y_factor}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamscale {{[-xsc|-xscale]}} {{x_factor}} {{[-ysc|-yscale]}} {{y_factor}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` - Schaal een afbeelding zodat het past binnen het kader met behoud van de beeldverhouding: diff --git a/pages.nl/common/pamstretch.md b/pages.nl/common/pamstretch.md index 67689e408e..bc7cdc7db3 100644 --- a/pages.nl/common/pamstretch.md +++ b/pages.nl/common/pamstretch.md @@ -6,8 +6,8 @@ - Vergroot een PAM afbeelding met een gehele factor: -`pamstretch {{N}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pamstretch {{n}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` - Vergroot een PAM afbeelding met de gespecificeerde factoren in de horizontale en verticale richtingen: -`pamstretch -xscale {{XN}} -yscale {{YN}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` +`pamstretch {{[-x|-xscale]}} {{xn}} {{[-y|-yscale]}} {{yn}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages/common/pamundice.md b/pages/common/pamundice.md index 4c2ac16fe9..13ee13290e 100644 --- a/pages/common/pamundice.md +++ b/pages/common/pamundice.md @@ -10,7 +10,7 @@ - Assume that the tiles overlap horizontally and vertically by the specified amount: -`pamundice {{filename_%1d_%1a.ppm}} {{[-a|-across]}} {{x_value}} {{[-d|-down]}} {{y_value}} {{[-h|-hoverlap]}} {{value}} {{[-vo|-voverlap]}} {{value}} > {{path/to/output.ppm}}` +`pamundice {{filename_%1d_%1a.ppm}} {{[-a|-across]}} {{x_value}} {{[-d|-down]}} {{y_value}} {{[-ho|-hoverlap]}} {{value}} {{[-vo|-voverlap]}} {{value}} > {{path/to/output.ppm}}` - Specify the images to be combined through a text file containing one filename per line: From b0ac46b221657adc59e4fae66c05e25578690f86 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 14:47:40 +0000 Subject: [PATCH 090/141] xzgrep: update Dutch translation (#16710) --- pages.nl/common/xzgrep.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pages.nl/common/xzgrep.md b/pages.nl/common/xzgrep.md index eb51f426bc..f7eb7f203c 100644 --- a/pages.nl/common/xzgrep.md +++ b/pages.nl/common/xzgrep.md @@ -10,24 +10,24 @@ - Zoek naar een exacte tekenreeks (schakelt reguliere expressies uit): -`xzgrep --fixed-strings "{{exact_string}}" {{pad/naar/bestand}}` +`xzgrep {{[-F|--fixed-strings]}} "{{exact_string}}" {{pad/naar/bestand}}` - Zoek naar een patroon in alle bestanden en geef de regelnummers weer van de overeenkomsten: -`xzgrep --line-number "{{zoekpatroon}}" {{pad/naar/bestand}}` +`xzgrep {{[-n|--line-number]}} "{{zoekpatroon}}" {{pad/naar/bestand}}` - Gebruik uitgebreidere reguliere expressies (ondersteund `?`, `+`, `{}`, `()` en `|`), in case-ongevoelige modus: -`xzgrep --extended-regexp --ignore-case "{{zoekpatroon}}" {{pad/naar/bestand}}` +`xzgrep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{zoekpatroon}}" {{pad/naar/bestand}}` -- Toon 3 regels met context rond, voor of na elke overeenkomst: +- Toon 3 regels met [C]ontext rond, voor ([B]) of n[A] elke overeenkomst: -`xzgrep --{{context|before-context|after-context}}={{3}} "{{zoekpatroon}}" {{pad/naar/bestand}}` +`xzgrep --{{context|before-context|after-context}} {{3}} "{{zoekpatroon}}" {{pad/naar/bestand}}` - Toon bestandsnaam en regelnummer voor elke overeenkomst met kleuren: -`xzgrep --with-filename --line-number --color=always "{{zoekpatroon}}" {{pad/naar/bestand}}` +`xzgrep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{zoekpatroon}}" {{pad/naar/bestand}}` - Zoek naar regels die overeenkomen met een patroon en toon alleen de gematchte tekst: -`xzgrep --only-matching "{{zoekpatroon}}" {{pad/naar/bestand}}` +`xzgrep {{[-o|--only-matching]}} "{{zoekpatroon}}" {{pad/naar/bestand}}` From 3b423e97fac11f24f67f56b7231b99d8b0d10341 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 14:48:38 +0000 Subject: [PATCH 091/141] yapf: update page and update Dutch translation (#16709) yapf: update page and add Dutch translation --- pages.nl/common/yapf.md | 8 ++------ pages/common/yapf.md | 6 +----- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/pages.nl/common/yapf.md b/pages.nl/common/yapf.md index 5f4a1584ac..6a28bea622 100644 --- a/pages.nl/common/yapf.md +++ b/pages.nl/common/yapf.md @@ -5,12 +5,8 @@ - Toon de geformateerde diff die zal optreden uit: -`yapf --diff {{pad/naar/bestand}}` - -- Toon de geformateerde diff uit en breng de wijzigingen aan in het bestand: - -`yapf --diff --in-place {{pad/naar/bestand}}` +`yapf {{[-d|--diff]}} {{pad/naar/bestand}}` - Formatteer alle Python-bestanden recursief in een map in parallel: -`yapf --recursive --in-place --style {{pep8}} --parallel {{pad/naar/map}}` +`yapf {{[-ri|--recursive --in-place]}} --style {{pep8}} {{[-p|--parallel]}} {{pad/naar/map}}` diff --git a/pages/common/yapf.md b/pages/common/yapf.md index 8e0a545d60..021dd0b248 100644 --- a/pages/common/yapf.md +++ b/pages/common/yapf.md @@ -7,10 +7,6 @@ `yapf {{[-d|--diff]}} {{path/to/file}}` -- Format the file in-place and display a diff of the changes: - -`yapf {{[-d|--diff]}} {{[-i|--in-place]}} {{path/to/file}}` - - Recursively format all Python files in a directory, concurrently: -`yapf {{[-r|--recursive]}} {{[-i|--in-place]}} --style {{pep8}} {{[-p|--parallel]}} {{path/to/directory}}` +`yapf {{[-ri|--recursive --in-place]}} --style {{pep8}} {{[-p|--parallel]}} {{path/to/directory}}` From 5d56879d03bcd868a3662167ff31f4f47d5bff82 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 14:49:29 +0000 Subject: [PATCH 092/141] pages.nl/common/u*: update Dutch translation (#16711) --- pages.nl/common/ugrep.md | 16 ++++++++-------- pages.nl/common/unexpand.md | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pages.nl/common/ugrep.md b/pages.nl/common/ugrep.md index 5ad3f50225..22e3fbfbd2 100644 --- a/pages.nl/common/ugrep.md +++ b/pages.nl/common/ugrep.md @@ -5,7 +5,7 @@ - Open een interactieve TUI om recursief bestanden te zoeken (`` voor hulp): -`ugrep --query` +`ugrep {{[-Q|--query]}}` - Zoek recursief met een regex zoekpatroon in de huidige map naar passende bestanden: @@ -13,24 +13,24 @@ - Zoek een gegeven bestand of bestanden in een gegeven map en laat de passende regelnummers zien: -`ugrep --line-number "{{zoekpatroon}}" {{pad/naar/bestand_of_map}}` +`ugrep {{[-n|--line-number]}} "{{zoekpatroon}}" {{pad/naar/bestand_of_map}}` - Zoek recursief in de huidige map en geef een lijst met passende bestanden: -`ugrep --files-with-matches "{{zoekpatroon}}"` +`ugrep {{[-l|--files-with-matches]}} "{{zoekpatroon}}"` - Zoek "fuzzy" met maximaal 3 extra, missende of verwisselende karakters in het patroon: -`ugrep --fuzzy={{3}} "{{zoekpatroon}}"` +`ugrep {{[-Z|--fuzzy=]}}{{3}} "{{zoekpatroon}}"` - Zoek passende gecomprimeerde bestanden, zip en tar archieven recursief in de huidige map: -`ugrep --decompress "{{zoekpatroon}}"` +`ugrep {{[-z|--decompress]}} "{{zoekpatroon}}"` -- Zoek alleen naar bestanden met namen die overeenkomen met een passende `foo*.???` glob patroon: +- Zoek alleen naar bestanden met namen die overeenkomen met een specifieke glob patroon: -`ugrep --glob="{{foo*.???}}" "{{zoekpatroon}}"` +`ugrep {{[-g |--glob=]}}"{{glob_patroon}}" "{{zoekpatroon}}"` - Zoek alleen passende bestanden van het type C++ (gebruik `--type=list` voor een lijst van typenamen): -`ugrep --file-type=cpp "{{zoekpatroon}}"` +`ugrep {{[-t |--file-type=]}}cpp "{{zoekpatroon}}"` diff --git a/pages.nl/common/unexpand.md b/pages.nl/common/unexpand.md index cddad56f00..08960233ac 100644 --- a/pages.nl/common/unexpand.md +++ b/pages.nl/common/unexpand.md @@ -13,7 +13,7 @@ - Converteer alle spaties, in plaats van alleen de voorloopspaties: -`unexpand -a {{pad/naar/bestand}}` +`unexpand {{[-a|--all]}} {{pad/naar/bestand}}` - Converteer alleen leidende reeksen van spaties (overschrijft -a): @@ -21,4 +21,4 @@ - Plaats tabs een bepaald aantal tekens uit elkaar, niet 8 (activeert -a): -`unexpand -t {{nummer}} {{pad/naar/bestand}}` +`unexpand {{[-t|--tabs]}} {{nummer}} {{pad/naar/bestand}}` From 58f86019ef014e2cdeaf54f22fbc6f3b7802696b Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Sun, 1 Jun 2025 14:51:14 +0000 Subject: [PATCH 093/141] pages.nl/common/t*: update Dutch translation, truncate: update page (#16712) --- pages.nl/common/telnet.md | 2 +- pages.nl/common/timeout.md | 12 ++++++------ pages.nl/common/tr.md | 6 +++--- pages.nl/common/traceroute.md | 6 +++--- pages.nl/common/truncate.md | 10 +++++----- pages/common/truncate.md | 2 +- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/pages.nl/common/telnet.md b/pages.nl/common/telnet.md index a0857a2b07..622140d93e 100644 --- a/pages.nl/common/telnet.md +++ b/pages.nl/common/telnet.md @@ -21,7 +21,7 @@ - Start `telnet` met "x" als het sessie beëindigingsteken: -`telnet -e {{x}} {{ip_adres}} {{poort}}` +`telnet {{[-e|--escape]}} {{x}} {{ip_adres}} {{poort}}` - Telnet naar de Star Wars-animatie: diff --git a/pages.nl/common/timeout.md b/pages.nl/common/timeout.md index c2b8c0288c..8f51304395 100644 --- a/pages.nl/common/timeout.md +++ b/pages.nl/common/timeout.md @@ -7,18 +7,18 @@ `timeout 3s sleep 10` -- Stuur een [s]ignaal naar het commando nadat de tijdslimiet is verlopen (standaard `TERM`, `kill -l` om alle signalen te tonen): +- Stuur een signaal naar het commando nadat de tijdslimiet is verlopen (standaard `TERM`, `kill -l` om alle signalen te tonen): -`timeout --signal {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}` +`timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}` -- Stuur [v]erbose output naar `stderr` en laat het signaal zien dat is verzonden bij een timeout: +- Stuur verbose output naar `stderr` en laat het signaal zien dat is verzonden bij een timeout: -`timeout --verbose {{0.5s|1m|1h|1d|...}} {{commando}}` +`timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{commando}}` - Behoud de exit status van het commando ongeacht of er een timeout is: -`timeout --preserve-status {{1s|1m|1h|1d|...}} {{commando}}` +`timeout {{[-p|--preserve-status]}} {{1s|1m|1h|1d|...}} {{commando}}` - Stuur een krachtig `KILL`-signaal na een bepaalde tijd als het commando het initiële signaal negeert bij een timeout: -`timeout --kill-after={{5m}} {{30s}} {{commando}}` +`timeout {{[-k|--kill-after]}} {{5m}} {{30s}} {{commando}}` diff --git a/pages.nl/common/tr.md b/pages.nl/common/tr.md index 64992bb3c1..d156151190 100644 --- a/pages.nl/common/tr.md +++ b/pages.nl/common/tr.md @@ -17,11 +17,11 @@ - Verwijder alle voorkomens van de opgegeven set tekens uit de invoer: -`tr -d '{{invoer_karakters}}' < {{pad/naar/bestand}}` +`tr {{[-d|--delete]}} '{{invoer_karakters}}' < {{pad/naar/bestand}}` - Comprimeer een reeks identieke tekens tot een enkel teken: -`tr -s '{{invoer_karakters}}' < {{pad/naar/bestand}}` +`tr {{[-s|--squeeze-repeats]}} '{{invoer_karakters}}' < {{pad/naar/bestand}}` - Vertaal de inhoud van een bestand naar hoofdletters: @@ -29,4 +29,4 @@ - Verwijder niet-afdrukbare tekens uit een bestand: -`tr -cd "[:print:]" < {{pad/naar/bestand}}` +`tr {{[-cd|--complement --delete]}} "[:print:]" < {{pad/naar/bestand}}` diff --git a/pages.nl/common/traceroute.md b/pages.nl/common/traceroute.md index 2efa6c585d..7540e08683 100644 --- a/pages.nl/common/traceroute.md +++ b/pages.nl/common/traceroute.md @@ -13,11 +13,11 @@ - Specificeer wachttijd in seconden voor antwoord: -`traceroute --wait={{0.5}} {{example.com}}` +`traceroute {{[-w|--wait]}} {{0.5}} {{example.com}}` - Specificeer het aantal queries per hop: -`traceroute --queries={{5}} {{example.com}}` +`traceroute {{[-q|--queries]}} {{5}} {{example.com}}` - Specificeer de grootte in bytes van het peilpakket: @@ -29,4 +29,4 @@ - Gebruik ICMP in plaats van UDP voor tracerouting: -`traceroute --icmp {{example.com}}` +`traceroute {{[-I|--icmp]}} {{example.com}}` diff --git a/pages.nl/common/truncate.md b/pages.nl/common/truncate.md index a8d7f6becd..e99e710bd2 100644 --- a/pages.nl/common/truncate.md +++ b/pages.nl/common/truncate.md @@ -5,20 +5,20 @@ - Stel een grootte van 10 GB in voor een bestaand bestand, of maak een nieuw bestand met de opgegeven grootte: -`truncate --size 10G {{pad/naar/bestand}}` +`truncate {{[-s|--size]}} 10G {{pad/naar/bestand}}` - Verleng de bestandsgrootte met 50 MiB, vul met gaten (die lezen als null bytes): -`truncate --size +50M {{pad/naar/bestand}}` +`truncate {{[-s|--size]}} +50M {{pad/naar/bestand}}` - Verkort het bestand met 2 GiB door gegevens van het einde van het bestand te verwijderen: -`truncate --size -2G {{pad/naar/bestand}}` +`truncate {{[-s|--size]}} -2G {{pad/naar/bestand}}` - Leeg de inhoud van het bestand: -`truncate --size 0 {{pad/naar/bestand}}` +`truncate {{[-s|--size]}} 0 {{pad/naar/bestand}}` - Leeg de inhoud van het bestand, maar maak het bestand niet aan als het niet bestaat: -`truncate --no-create --size 0 {{pad/naar/bestand}}` +`truncate {{[-cs|--no-create --size]}} 0 {{pad/naar/bestand}}` diff --git a/pages/common/truncate.md b/pages/common/truncate.md index 5e03695e5f..b5c7c1b114 100644 --- a/pages/common/truncate.md +++ b/pages/common/truncate.md @@ -21,4 +21,4 @@ - Empty the file's content, but do not create the file if it does not exist: -`truncate {{[-c|--no-create]}} {{[-s|--size]}} 0 {{path/to/file}}` +`truncate {{[-cs|--no-create --size]}} 0 {{path/to/file}}` From c528eed4bd3c6a6dc9f3b33c7e9b9bd1c032d27e Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Mon, 2 Jun 2025 02:01:35 +0300 Subject: [PATCH 094/141] rlwrap: refresh page (#16715) --- pages/common/rlwrap.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/rlwrap.md b/pages/common/rlwrap.md index 7a0889dacc..f07f46f6ba 100644 --- a/pages/common/rlwrap.md +++ b/pages/common/rlwrap.md @@ -1,7 +1,7 @@ # rlwrap > Add line editing, persistent history and prompt completion to a REPL command. -> More information: . +> More information: . - Run a REPL command with line editing, persistent history and prompt completion: @@ -9,16 +9,16 @@ - Use all words seen on input and output for prompt completion: -`rlwrap --remember {{command}}` +`rlwrap {{[-r|--remember]}} {{command}}` - Better prompt completion if prompts contain ANSI colour codes: -`rlwrap --ansi-colour-aware {{command}}` +`rlwrap {{[-A|--ansi-colour-aware]}} {{command}}` - Enable filename completion (case sensitive): -`rlwrap --complete-filenames {{command}}` +`rlwrap {{[-c|--complete-filenames]}} {{command}}` - Add coloured prompts, use colour name, or an ASCI-conformant colour specification. Use an uppercase colour name for bold styling: -`rlwrap --prompt-colour={{black|red|green|yellow|blue|cyan|purple|white|colour_spec}} {{command}}` +`rlwrap {{[-p|--prompt-colour=]}}{{black|red|green|yellow|blue|cyan|purple|white|colour_spec}} {{command}}` From 0439e2811439b87ac6cdff075ea08d92c71ea4be Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Mon, 2 Jun 2025 09:11:29 +1000 Subject: [PATCH 095/141] mdk4: add page (#16688) * mdk4: add page * mdk4: update placeholders --------- Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages/common/mdk4.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pages/common/mdk4.md diff --git a/pages/common/mdk4.md b/pages/common/mdk4.md new file mode 100644 index 0000000000..4bf906f4fc --- /dev/null +++ b/pages/common/mdk4.md @@ -0,0 +1,18 @@ +# mdk4 + +> A proof-of-concept tool to exploit common IEEE 802.11 protocol weaknesses. +> Note: Exercise extreme caution as this tool can disrupt WiFi networks and disconnect nearby users. +> See also: `airodump-ng`, `airmon-ng`. +> More information: . + +- Flood access points with beacon frames to create fake networks (set interface to monitor mode with `sudo airmon-ng start ` if needed): + +`sudo mdk4 {{wifi_interface}} b -f {{path/to/beacons.txt}}` + +- Perform deauthentication attack against all clients on all BSSIDs: + +`sudo mdk4 {{wifi_interface}} d` + +- Perform deauthentication attack on a specific BSSID (list BSSIDs using `sudo airodump-ng `): + +`sudo mdk4 {{wifi_interface}} d -B {{BSSID}}` From 537a8a111f0ec3f36cd3bf3c27b187ed96b52b44 Mon Sep 17 00:00:00 2001 From: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Date: Mon, 2 Jun 2025 05:40:25 +0300 Subject: [PATCH 096/141] flask-unsign: add page (#16708) * flask-unsign: add page * Update pages/common/flask-unsign.md Co-authored-by: Fazle Arefin * Update pages/common/flask-unsign.md Co-authored-by: Fazle Arefin * Update pages/common/flask-unsign.md Co-authored-by: Fazle Arefin * Update pages/common/flask-unsign.md Co-authored-by: Fazle Arefin --------- Co-authored-by: Fazle Arefin --- pages/common/flask-unsign.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/flask-unsign.md diff --git a/pages/common/flask-unsign.md b/pages/common/flask-unsign.md new file mode 100644 index 0000000000..c0438bf9cb --- /dev/null +++ b/pages/common/flask-unsign.md @@ -0,0 +1,32 @@ +# flask-unsign + +> A tool to brute-force, decode and craft `Flask` session cookies. +> More information: . + +- Decode a Flask session cookie: + +`flask-unsign {{[-d|--decode]}} {{[-c|--cookie]}} {{cookie}}` + +- Decode a session cookie fetched from a URL which returns a `Set-Cookie` header: + +`flask-unsign {{[-d|--decode]}} --server {{URL}}` + +- Brute-force a secret key using the default flask-unsign-wordlist (requires `flask-unsign-wordlist`): + +`flask-unsign {{[-u|--unsign]}} {{[-c|--cookie]}} {{cookie}}` + +- Brute-force a secret key with a custom wordlist (use `--no-literal-eval` for unquoted entries): + +`flask-unsign {{[-u|--unsign]}} {{[-c|--cookie]}} {{cookie}} {{[-w|--wordlist]}} {{path/to/wordlist.txt}}` + +- Sign a new session cookie with a secret key: + +`flask-unsign {{[-s|--sign]}} {{[-c|--cookie]}} {{"{'logged_in': False}"}} {{[-S|--secret]}} {{secret}}` + +- Sign a session cookie using legacy timestamp (useful for old versions): + +`flask-unsign {{[-s|--sign]}} {{[-c|--cookie]}} {{"{'logged_in': False}"}} {{[-S|--secret]}} {{secret}} {{[-l|--legacy]}}` + +- Brute-force a session cookie with custom threads and no literal evaluation: + +`flask-unsign {{[-u|--unsign]}} {{[-c|--cookie]}} {{cookie}} {{[-w|--wordlist]}} {{path/to/wordlist.txt}} {{[-t|--threads]}} {{threads}} {{[-nE|--no-literal-eval]}}` From dda45ffc1b53171fcc292e925032f161a7f0300b Mon Sep 17 00:00:00 2001 From: Laykon4 <44904689+Laykon4@users.noreply.github.com> Date: Mon, 2 Jun 2025 08:30:28 +0200 Subject: [PATCH 097/141] adb-uninstall: add French translation (#16542) * adb-uninstall : Add French Translation * Update * Update pages.fr/common/adb-uninstall.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/adb-uninstall.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update pages.fr/common/adb-uninstall.md Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> * Update adb-uninstall.md --------- Co-authored-by: Hahaha <44904689+Loanito@users.noreply.github.com> Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages.fr/common/adb-uninstall.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages.fr/common/adb-uninstall.md diff --git a/pages.fr/common/adb-uninstall.md b/pages.fr/common/adb-uninstall.md new file mode 100644 index 0000000000..44a79f40e3 --- /dev/null +++ b/pages.fr/common/adb-uninstall.md @@ -0,0 +1,12 @@ +# adb uninstall + +> Désinstalle un paquet d'une instance d'émulateur Android ou d'un appareil Android. +> Plus d'informations : . + +- Désinstalle un paquet : + +`adb uninstall {{com.example.app}}` + +- Désinstalle un paquet, mais conserve les données utilisateur : + +`adb uninstall -k {{com.example.app}}` From c4bd162274a13b88cdb0542bc58b6729b362b5e0 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 11:00:27 +0200 Subject: [PATCH 098/141] nix shell: fix More Info link (#16706) --- pages.es/common/nix-shell.3.md | 2 +- pages.ko/common/nix-shell.3.md | 2 +- pages/common/nix-shell.3.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages.es/common/nix-shell.3.md b/pages.es/common/nix-shell.3.md index a15a2d3120..81211782b0 100644 --- a/pages.es/common/nix-shell.3.md +++ b/pages.es/common/nix-shell.3.md @@ -2,7 +2,7 @@ > Inicia un shell en lo cual los paquetes especificados están disponibles. > Vea también: `nix-shell` para armar un entorno de desarrollo, `nix flake` para información sobre los flakes. -> Más información: . +> Más información: . - Inicia un shell interactivo con unos paquetes de `nixpkgs`: diff --git a/pages.ko/common/nix-shell.3.md b/pages.ko/common/nix-shell.3.md index d54317afa0..adc813d6f5 100644 --- a/pages.ko/common/nix-shell.3.md +++ b/pages.ko/common/nix-shell.3.md @@ -2,7 +2,7 @@ > 지정된 패키지가 사용 가능한 셸 시작. > 같이 보기: 개발 환경 설정을 위한 `nix-shell`, 플레이크에 대한 정보를 위한 `nix flake`. -> 더 많은 정보: . +> 더 많은 정보: . - `nixpkgs`의 일부 패키지와 함께 대화형 셸 시작: diff --git a/pages/common/nix-shell.3.md b/pages/common/nix-shell.3.md index 9c35a7d65b..2f94fa0933 100644 --- a/pages/common/nix-shell.3.md +++ b/pages/common/nix-shell.3.md @@ -2,7 +2,7 @@ > Start a shell in which the specified packages are available. > See also: `nix-shell` for setting up development environments, `nix flake` for information about flakes. -> More information: . +> More information: . - Start an interactive shell with some packages from `nixpkgs`: From 15f70d487bdfe9adff41c3252b699fa7fba0e5b4 Mon Sep 17 00:00:00 2001 From: Daisuke Akagawa Date: Mon, 2 Jun 2025 18:29:51 +0900 Subject: [PATCH 099/141] python: add page for Japanese (#16694) * add: python.md to japanese * fix: style of Japanese * translate: English placeholders into Japanese * Update pages.ja/common/python.md Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --------- Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> --- pages.ja/common/python.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages.ja/common/python.md diff --git a/pages.ja/common/python.md b/pages.ja/common/python.md new file mode 100644 index 0000000000..8b674b81dc --- /dev/null +++ b/pages.ja/common/python.md @@ -0,0 +1,36 @@ +# python + +> Python language インタプリタ。 +> もっと詳しく: 。 + +- REPLを開始する (インタラクティブ): + +`python` + +- 指定したPythonスクリプトを実行: + +`python {{Pythonファイルパス}}` + +- 指定したPythonスクリプトを実行してREPLを実行: + +`python -i {{Pythonファイルパス}}` + +- Python実装を文字列で指定して実行する: + +`python -c "{{Python実装文字列}}"` + +- 指定したライブラリモジュールのスクリプトを実行する: + +`python -m {{モジュール名}} {{引数}}` + +- `pip`を利用してパッケージをインストールする: + +`python -m pip install {{パッケージ}}` + +- インタラクティブにPythonスクリプトをデバッグする: + +`python -m pdb {{Pythonファイルパス}}` + +- ビルトインのHTTPサーバをポート8000版でカレントディレクトリで実行する: + +`python -m http.server` From adfbd70d17373a6cee9fcac89a82f8a009b71139 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Mon, 2 Jun 2025 08:23:55 -0700 Subject: [PATCH 100/141] type: update more information links (#16718) --- pages.es/common/type.md | 2 +- pages.fr/common/type.md | 2 +- pages.ko/common/type.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages.es/common/type.md b/pages.es/common/type.md index e709e6568b..d4702b1fa4 100644 --- a/pages.es/common/type.md +++ b/pages.es/common/type.md @@ -2,7 +2,7 @@ > Muestra el tipo de comando que ejecutará el intérprete de comandos. > Nota: todos los ejemplos no son compatibles con POSIX. -> Más información: . +> Más información: . - Muestra el tipo de un comando: diff --git a/pages.fr/common/type.md b/pages.fr/common/type.md index 1e913dd503..6a4b962dec 100644 --- a/pages.fr/common/type.md +++ b/pages.fr/common/type.md @@ -1,7 +1,7 @@ # type > Affiche le type de la commande que le terminal exécuterait. -> Plus d'informations : . +> Plus d'informations : . - Affiche le type d'une commande : diff --git a/pages.ko/common/type.md b/pages.ko/common/type.md index e5ff2cb3fd..5b43732714 100644 --- a/pages.ko/common/type.md +++ b/pages.ko/common/type.md @@ -2,7 +2,7 @@ > 셀이 실행할 명령의 유형을 표시합니다. > 참고: 모든 예시는 POSIX 호환이 아닙니다. -> 더 많은 정보: . +> 더 많은 정보: . - 명령의 유형 표시: From 8682b590a2f3a68c7b2f4d707b13e5906055ec74 Mon Sep 17 00:00:00 2001 From: TeaLeavesJumping <188450492+TeaLeavesJumping@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:27:39 +0200 Subject: [PATCH 101/141] markdown2pdf: add page (#16714) Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/common/markdown2pdf.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/markdown2pdf.md diff --git a/pages/common/markdown2pdf.md b/pages/common/markdown2pdf.md new file mode 100644 index 0000000000..d094a84d3e --- /dev/null +++ b/pages/common/markdown2pdf.md @@ -0,0 +1,20 @@ +# markdown2pdf + +> Convert markdown to PDF. +> More information: . + +- Convert a Markdown file to a PDF: + +`markdown2pdf {{[-p|--path]}} {{path/to/input_file.md}}` + +- Convert a Markdown file to a PDF with a specific path: + +`markdown2pdf {{[-p|--path]}} {{path/to/input_file.md}} {{[-o|--output]}} {{path/to/output_file.pdf}}` + +- Convert Markdown content provided as a string: + +`markdown2pdf {{[-s|--string]}} {{markdown_text}} {{[-o|--output]}} {{path/to/output_file.pdf}}` + +- Convert from URL (this will convert a Markdown file at that URL to a local PDF file): + +`markdown2pdf {{[-u|--url]}} {{URL}} {{[-o|--output]}} {{path/to/output_file.pdf}}` From 98b98620fec4bf457efd11b7338fd92c175799a3 Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:42:46 -0300 Subject: [PATCH 102/141] zdump, zforce, zic: add Spanish translation (#16695) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Darío Hereñú --- pages.es/linux/zdump.md | 12 ++++++++++++ pages.es/linux/zforce.md | 8 ++++++++ pages.es/linux/zic.md | 12 ++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 pages.es/linux/zdump.md create mode 100644 pages.es/linux/zforce.md create mode 100644 pages.es/linux/zic.md diff --git a/pages.es/linux/zdump.md b/pages.es/linux/zdump.md new file mode 100644 index 0000000000..ac0643f885 --- /dev/null +++ b/pages.es/linux/zdump.md @@ -0,0 +1,12 @@ +# zdump + +> Imprime información sobre la zona horaria. +> Más información: . + +- Imprime el horario actual en una zona horaria: + +`zdump {{zona_horaria}}` + +- Muestra ayuda: + +`zdump --help` diff --git a/pages.es/linux/zforce.md b/pages.es/linux/zforce.md new file mode 100644 index 0000000000..7e0905428b --- /dev/null +++ b/pages.es/linux/zforce.md @@ -0,0 +1,8 @@ +# zforce + +> Añade una extensión `.gz` a archivos comprimidos con `gzip`. +> Más información: . + +- Añade una extensión `.gz` a los archivos Gzip suministrados (Nota: Otros archivos son ignorados): + +`zforce {{ruta/al/archivo1 ruta/al/archivo2 ...}}` diff --git a/pages.es/linux/zic.md b/pages.es/linux/zic.md new file mode 100644 index 0000000000..133e561e74 --- /dev/null +++ b/pages.es/linux/zic.md @@ -0,0 +1,12 @@ +# zic + +> Compila zonas horarias en archivos binarios. +> Más información: . + +- Compile un archivo de zona horaria desde un directorio: + +`zic -d {{ruta/al/directorio}}` + +- Reporta alertas durante la compilación de un archivo específico: + +`zic -v {{ruta/al/archivo}}.infile` From d4707f57fb74ebd8b6eb04bf13c455100f0d1a8d Mon Sep 17 00:00:00 2001 From: Guido <60514428+guidosti@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:42:54 -0300 Subject: [PATCH 103/141] zathura: add Spanish translation (#16683) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Darío Hereñú Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Wiktor Perskawiec --- pages.es/linux/zathura.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pages.es/linux/zathura.md diff --git a/pages.es/linux/zathura.md b/pages.es/linux/zathura.md new file mode 100644 index 0000000000..00d07c05bb --- /dev/null +++ b/pages.es/linux/zathura.md @@ -0,0 +1,33 @@ +# zathura + +> Un visor de documentos modal tipo vim, con una línea de comando integrada. +> Asegúrese de tener instalado un backend (poppler, PostScript o DjVu). +> Más información: . + +- Abre un archivo: + +`zathura {{ruta_al_archivo}}` + +- Navegue izquierda/arriba/abajo/derecha: + +`{{||||}}` + +- Gire: + +`` + +- Invierte colores: + +`` + +- Busque texto en base a una cadena: + +`{{cadena}}` + +- Cree/elimine marcadores: + +`<:>{{bmark|bdelete}} {{nombre_marcador}}` + +- Lista los marcadores: + +`<:>blist` From e189ad8c903df9be6c28ccb1eb169d765ebaed1c Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:43:04 +0200 Subject: [PATCH 104/141] `pages.*/linux`: update outdated translations (part 1) (#16707) --- pages.ca/linux/ac.md | 6 +++--- pages.de/linux/ac.md | 6 +++--- pages.de/linux/cfdisk.md | 2 +- pages.es/linux/ac.md | 6 +++--- pages.es/linux/apx-subsystems.md | 10 +++++----- pages.fa/common/chown.md | 2 +- pages.fa/linux/ac.md | 6 +++--- pages.fr/linux/ac.md | 6 +++--- pages.fr/linux/cfdisk.md | 2 +- pages.fr/linux/chcon.md | 12 ++++++------ pages.id/linux/cfdisk.md | 2 +- pages.it/common/chown.md | 2 +- pages.it/linux/chcon.md | 12 ++++++------ pages.ko/linux/ac.md | 6 +++--- pages.ko/linux/apx-subsystems.md | 10 +++++----- pages.ko/linux/cfdisk.md | 2 +- pages.ko/linux/chcon.md | 12 ++++++------ pages.ko/linux/chfn.md | 8 ++++---- pages.nl/linux/abrt-cli.md | 2 +- pages.nl/linux/ac.md | 6 +++--- pages.nl/linux/apx-subsystems.md | 8 ++++---- pages.nl/linux/cfdisk.md | 2 +- pages.nl/linux/chcon.md | 12 ++++++------ pages.nl/linux/chfn.md | 8 ++++---- pages.pl/common/chown.md | 2 +- pages.pl/linux/ac.md | 6 +++--- pages.pt_BR/linux/ac.md | 6 +++--- pages.th/linux/ac.md | 6 +++--- pages.zh/linux/ac.md | 6 +++--- 29 files changed, 88 insertions(+), 88 deletions(-) diff --git a/pages.ca/linux/ac.md b/pages.ca/linux/ac.md index 7e99d349c8..346e0ed0a8 100644 --- a/pages.ca/linux/ac.md +++ b/pages.ca/linux/ac.md @@ -9,15 +9,15 @@ - Imprimeix el temps total de connexió de tots els usuaris en hores: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Imprimeix el temps total de connexió d'un usuari concret en hores: -`ac --individual-totals {{nom_usuari}}` +`ac {{[-p|--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}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{nom_usuari}}` - Mostra també detalls adicionals: diff --git a/pages.de/linux/ac.md b/pages.de/linux/ac.md index 951ac7b13a..cd99fec2c7 100644 --- a/pages.de/linux/ac.md +++ b/pages.de/linux/ac.md @@ -9,15 +9,15 @@ - Zeige, wie viele Stunden jeder Benutzer verbunden war: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Zeige, wie viele Stunden ein bestimmter Benutzer verbunden war: -`ac --individual-totals {{nutzername}}` +`ac {{[-p|--individual-totals]}} {{nutzername}}` - Zeige, wie viele Stunden ein bestimmter Benutzer pro Tag verbunden war: -`ac --daily-totals --individual-totals {{nutzername}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{nutzername}}` - Zeige zusätzliche Details: diff --git a/pages.de/linux/cfdisk.md b/pages.de/linux/cfdisk.md index e5ae5032e3..624b31cc72 100644 --- a/pages.de/linux/cfdisk.md +++ b/pages.de/linux/cfdisk.md @@ -9,4 +9,4 @@ - Erzeuge und bearbeite eine neue Partitionierungstabelle für eine bestimmte Festplatte: -`cfdisk --zero {{/dev/sdX}}` +`cfdisk {{[-z|--zero]}} {{/dev/sdX}}` diff --git a/pages.es/linux/ac.md b/pages.es/linux/ac.md index 9232e75892..5346a57270 100644 --- a/pages.es/linux/ac.md +++ b/pages.es/linux/ac.md @@ -9,15 +9,15 @@ - Imprime cuánto tiempo han estado conectados los usuarios en horas: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Imprime cuánto tiempo ha estado conectado un usuario en particular en horas: -`ac --individual-totals {{usuario}}` +`ac {{[-p|--individual-totals]}} {{usuario}}` - Imprime cuánto tiempo un usuario en particular ha estado conectado en horas por día (en total): -`ac --daily-totals --individual-totals {{usuario}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{usuario}}` - Muestra también detalles adicionales: diff --git a/pages.es/linux/apx-subsystems.md b/pages.es/linux/apx-subsystems.md index 0a4eaae8cb..cccd2c8204 100644 --- a/pages.es/linux/apx-subsystems.md +++ b/pages.es/linux/apx-subsystems.md @@ -2,7 +2,7 @@ > Administra subsistemas en `apx`. > Los subsistemas son contenedores que pueden crearse a partir de stacks preexistentes. -> Más información: . +> Más información: . - Crea de forma interactiva un nuevo subsistema: @@ -14,16 +14,16 @@ - Restablece un subsistema específico a su estado inicial: -`apx subsystems reset --name {{cadena_de_caracteres}}` +`apx subsystems reset {{[-n|--name]}} {{cadena_de_caracteres}}` - Fuerza el restablecimiento de un subsistema específico: -`apx subsystems reset --name {{cadena_de_caracteres}} --force` +`apx subsystems reset {{[-n|--name]}} {{cadena_de_caracteres}} {{[-f|--force]}}` - Elimina un subsistema específico: -`apx subsystems rm --name {{cadena_de_caracteres}}` +`apx subsystems rm {{[-n|--name]}} {{cadena_de_caracteres}}` - Fuerza la eliminación de un subsistema específico: -`apx subsystems rm --name {{cadena_de_caracteres}} --force` +`apx subsystems rm {{[-n|--name]}} {{cadena_de_caracteres}} {{[-f|--force]}}` diff --git a/pages.fa/common/chown.md b/pages.fa/common/chown.md index 84f9e4ca2d..08795552d0 100644 --- a/pages.fa/common/chown.md +++ b/pages.fa/common/chown.md @@ -21,4 +21,4 @@ - تغییر مالک یک فایل/پوشه برای همسان شدن با فایل مرجع: -`chown --reference={{path/to/reference_file}} {{path/to/file_or_directory}}` +`chown --reference {{path/to/reference_file}} {{path/to/file_or_directory}}` diff --git a/pages.fa/linux/ac.md b/pages.fa/linux/ac.md index a09ea918c4..ce579f659f 100644 --- a/pages.fa/linux/ac.md +++ b/pages.fa/linux/ac.md @@ -9,15 +9,15 @@ - چاپ تعداد ساعات اتصال کاربران: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - چاپ تعداد ساعات اتصال یک کاربر خاص: -`ac --individual-totals {{username}}` +`ac {{[-p|--individual-totals]}} {{username}}` - چاپ تعداد ساعات اتصال یک کاربر خاص (به همراه مجموع آن): -`ac --daily-totals --individual-totals {{username}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{username}}` - نمایش اطلاعات بیشتر: diff --git a/pages.fr/linux/ac.md b/pages.fr/linux/ac.md index da1cb03395..f2ceab5aeb 100644 --- a/pages.fr/linux/ac.md +++ b/pages.fr/linux/ac.md @@ -9,15 +9,15 @@ - Affiche pendant combien de temps les utilisateurs ont été connectés, en heures : -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Affiche pendant combien de temps un utilisateur particulier a été connecté, en heures : -`ac --individual-totals {{nom_d_utilisateur}}` +`ac {{[-p|--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}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{nom_d_utilisateur}}` - Affiche des détails supplémentaires : diff --git a/pages.fr/linux/cfdisk.md b/pages.fr/linux/cfdisk.md index 02a15fb50a..504e8099f5 100644 --- a/pages.fr/linux/cfdisk.md +++ b/pages.fr/linux/cfdisk.md @@ -9,4 +9,4 @@ - Crée une nouvelle table de partitions pour un appareil spécifique et la gère : -`cfdisk --zero {{/dev/sdX}}` +`cfdisk {{[-z|--zero]}} {{/dev/sdX}}` diff --git a/pages.fr/linux/chcon.md b/pages.fr/linux/chcon.md index 1f11a287ce..d015be9425 100644 --- a/pages.fr/linux/chcon.md +++ b/pages.fr/linux/chcon.md @@ -5,11 +5,11 @@ - Affiche le contexte de sécurité d'un fichier : -`ls -lZ {{chemin/vers/fichier}}` +`ls {{[-lZ|-l --context]}} {{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}}` +`chcon --reference {{fichier_référence}} {{fichier_cible}}` - Change le contexte de sécurité SELinux complet d'un fichier : @@ -17,16 +17,16 @@ - Change seulement la partie utilisateur du contexte de sécurité SELinux : -`chcon -u {{utilisateur}} {{fichier}}` +`chcon {{[-u|--user]}} {{utilisateur}} {{fichier}}` - Change seulement la partie role du contexte de sécurité SELinux : -`chcon -r {{role}} {{fichier}}` +`chcon {{[-r|--role]}} {{role}} {{fichier}}` - Change seulement la partie type du contexte de sécurité SELinux : -`chcon -t {{type}} {{fichier}}` +`chcon {{[-t|--type]}} {{type}} {{fichier}}` - Change seulement la partie plage/niveau du contexte de sécurité SELinux : -`chcon -l {{plage/niveau}} {{fichier}}` +`chcon {{[-l|--range]}} {{plage/niveau}} {{fichier}}` diff --git a/pages.id/linux/cfdisk.md b/pages.id/linux/cfdisk.md index a5c30b07bc..e916064de0 100644 --- a/pages.id/linux/cfdisk.md +++ b/pages.id/linux/cfdisk.md @@ -9,4 +9,4 @@ - Buat kemudian kelola tabel partisi baru terhadap suatu perangkat penyimpanan keras: -`cfdisk --zero {{/dev/sdX}}` +`cfdisk {{[-z|--zero]}} {{/dev/sdX}}` diff --git a/pages.it/common/chown.md b/pages.it/common/chown.md index 6c468081bd..ffa2682892 100644 --- a/pages.it/common/chown.md +++ b/pages.it/common/chown.md @@ -21,4 +21,4 @@ - Cambia il proprietario di un file/directory rendendolo uguale a quello di un altro file di riferimento: -`chown --reference={{percorso/del/file_riferimento}} {{percorso/del/file_o_directory}}` +`chown --reference {{percorso/del/file_riferimento}} {{percorso/del/file_o_directory}}` diff --git a/pages.it/linux/chcon.md b/pages.it/linux/chcon.md index d9a2c44855..a02c82e15c 100644 --- a/pages.it/linux/chcon.md +++ b/pages.it/linux/chcon.md @@ -5,11 +5,11 @@ - Mostra il contesto di sicurezza di un file: -`ls -lZ {{percorso/del/file}}` +`ls {{[-lZ|-l --context]}} {{percorso/del/file}}` - Cambia il contesto di sicurezza di un file usandone un'altro come riferimento: -`chcon --reference={{file_di_riferimento}} {{file}}` +`chcon --reference {{file_di_riferimento}} {{file}}` - Cambia l'intero contesto di sicurezza SELinux di un file: @@ -17,16 +17,16 @@ - Cambia solo l'utente di un contesto di sicurezza SELinux: -`chcon -u {{utente}} {{file}}` +`chcon {{[-u|--user]}} {{utente}} {{file}}` - Cambia solo il ruolo di un contesto di sicurezza SELinux: -`chcon -r {{ruolo}} {{file}}` +`chcon {{[-r|--role]}} {{ruolo}} {{file}}` - Cambia solo il tipo di un contesto di sicurezza SELinux: -`chcon -t {{tipo}} {{file}}` +`chcon {{[-t|--type]}} {{tipo}} {{file}}` - Cambia solo il range/livello di un contesto di sicurezza SELinux: -`chcon -l {{range/livello}} {{file}}` +`chcon {{[-l|--range]}} {{range/livello}} {{file}}` diff --git a/pages.ko/linux/ac.md b/pages.ko/linux/ac.md index a0a3ece09c..e61af6d3c1 100644 --- a/pages.ko/linux/ac.md +++ b/pages.ko/linux/ac.md @@ -9,15 +9,15 @@ - 사용자가 몇 시간 동안 연결되었는지 출력: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - 특정 사용자가 몇 시간 동안 연결되었는지 출력: -`ac --individual-totals {{사용자명}}` +`ac {{[-p|--individual-totals]}} {{사용자명}}` - 특정 사용자가 하루 동안 몇 시간 연결되었는지 출력(총합 포함): -`ac --daily-totals --individual-totals {{사용자명}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{사용자명}}` - 추가 세부 정보도 표시: diff --git a/pages.ko/linux/apx-subsystems.md b/pages.ko/linux/apx-subsystems.md index cb746d49cf..5d7924fe27 100644 --- a/pages.ko/linux/apx-subsystems.md +++ b/pages.ko/linux/apx-subsystems.md @@ -2,7 +2,7 @@ > `apx`에서 서브시스템을 관리합니다. > 서브시스템은 기존 스택을 기반으로 생성될 수 있는 컨테이너입니다. -> 더 많은 정보: . +> 더 많은 정보: . - 새 서브시스템을 대화식으로 생성: @@ -14,16 +14,16 @@ - 특정 서브시스템을 초기 상태로 재설정: -`apx subsystems reset --name {{문자열}}` +`apx subsystems reset {{[-n|--name]}} {{문자열}}` - 특정 서브시스템을 [f]강제로 재설정: -`apx subsystems reset --name {{문자열}} --force` +`apx subsystems reset {{[-n|--name]}} {{문자열}} {{[-f|--force]}}` - 특정 서브시스템 제거: -`apx subsystems rm --name {{문자열}}` +`apx subsystems rm {{[-n|--name]}} {{문자열}}` - 특정 서브시스템을 [f]강제로 제거: -`apx subsystems rm --name {{문자열}} --force` +`apx subsystems rm {{[-n|--name]}} {{문자열}} {{[-f|--force]}}` diff --git a/pages.ko/linux/cfdisk.md b/pages.ko/linux/cfdisk.md index ba9116a7e4..c44682588b 100644 --- a/pages.ko/linux/cfdisk.md +++ b/pages.ko/linux/cfdisk.md @@ -9,4 +9,4 @@ - 특정 장치에 대한 새 파티션 테이블 생성 및 관리: -`cfdisk --zero {{/dev/sdX}}` +`cfdisk {{[-z|--zero]}} {{/dev/sdX}}` diff --git a/pages.ko/linux/chcon.md b/pages.ko/linux/chcon.md index 5f01a4d352..31eba02a37 100644 --- a/pages.ko/linux/chcon.md +++ b/pages.ko/linux/chcon.md @@ -6,11 +6,11 @@ - 파일의 보안 컨텍스트 보기: -`ls -lZ {{경로/대상/파일}}` +`ls {{[-lZ|-l --context]}} {{경로/대상/파일}}` - 참조된 파일을 사용하여, 대상 파일의 보안 내용 변경: -`chcon --reference={{참조_파일}} {{대상_파일}}` +`chcon --reference {{참조_파일}} {{대상_파일}}` - 파일의 전체 SELinux 보안 컨텍스트 변경: @@ -18,16 +18,16 @@ - SELinux 보안 컨텍스트의 사용자 부분만 변경: -`chcon -u {{사용자}} {{파일명}}` +`chcon {{[-u|--user]}} {{사용자}} {{파일명}}` - SELinux 보안 컨텍스트의 역할 부분만 변경: -`chcon -r {{역할}} {{파일명}}` +`chcon {{[-r|--role]}} {{역할}} {{파일명}}` - SELinux 보안 컨텍스트의 유형 부분만 변경: -`chcon -t {{타입}} {{파일명}}` +`chcon {{[-t|--type]}} {{타입}} {{파일명}}` - SELinux 보안 컨텍스트의 범위/레벨 부분만 변경: -`chcon -l {{범위/레벨}} {{파일명}}` +`chcon {{[-l|--range]}} {{범위/레벨}} {{파일명}}` diff --git a/pages.ko/linux/chfn.md b/pages.ko/linux/chfn.md index e4ec1eebaf..a113e87603 100644 --- a/pages.ko/linux/chfn.md +++ b/pages.ko/linux/chfn.md @@ -5,16 +5,16 @@ - `finger` 출력에서 사용자의 "이름" 필드를 업데이트: -`chfn -f {{새_표시_이름}} {{사용자명}}` +`chfn {{[-f|--full-name]}} {{새_표시_이름}} {{사용자명}}` - `finger` 출력에서 사용자의 "사무실 방 번호" 필드를 업데이트: -`chfn -o {{새_사무실_방_번호}} {{사용자명}}` +`chfn {{[-o|--office]}} {{새_사무실_방_번호}} {{사용자명}}` - `finger` 출력에서 사용자의 "사무실 전화번호" 필드를 업데이트: -`chfn -p {{새_사무실_전화번호}} {{사용자명}}` +`chfn {{[-p|--office-phone]}} {{새_사무실_전화번호}} {{사용자명}}` - `finger` 출력에서 사용자의 "집 전화번호" 필드를 업데이트: -`chfn -h {{새_집_전화번호}} {{사용자명}}` +`chfn {{[-h|--home-phone]}} {{새_집_전화번호}} {{사용자명}}` diff --git a/pages.nl/linux/abrt-cli.md b/pages.nl/linux/abrt-cli.md index 97c37d1b65..014a7fb3d7 100644 --- a/pages.nl/linux/abrt-cli.md +++ b/pages.nl/linux/abrt-cli.md @@ -26,4 +26,4 @@ - Genereer handmatig een rapport om te debuggen: -`abrt-cli report --analyze {{probleem_id}}` +`abrt-cli report {{[-a|--analyze]}} {{probleem_id}}` diff --git a/pages.nl/linux/ac.md b/pages.nl/linux/ac.md index a5b341d2da..5949bd0f46 100644 --- a/pages.nl/linux/ac.md +++ b/pages.nl/linux/ac.md @@ -9,15 +9,15 @@ - Toon hoe lang gebruikers verbonden zijn geweest in uren: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Toon hoe lang een bepaalde gebruiker verbonden is geweest in uren: -`ac --individual-totals {{gebruikersnaam}}` +`ac {{[-p|--individual-totals]}} {{gebruikersnaam}}` - Toon hoe lang een bepaalde gebruiker per dag verbonden is geweest in uren (met totaal): -`ac --daily-totals --individual-totals {{gebruikersnaam}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{gebruikersnaam}}` - Toon ook extra details: diff --git a/pages.nl/linux/apx-subsystems.md b/pages.nl/linux/apx-subsystems.md index 034ae706f6..b5e50054c0 100644 --- a/pages.nl/linux/apx-subsystems.md +++ b/pages.nl/linux/apx-subsystems.md @@ -14,16 +14,16 @@ - Reset een specifiek subsysteem naar zijn initiële toestand: -`apx subsystems reset --name {{string}}` +`apx subsystems reset {{[-n|--name]}} {{string}}` - [f]orceer een reset van een specifiek subsysteem: -`apx subsystems reset --name {{string}} --force` +`apx subsystems reset {{[-n|--name]}} {{string}} {{[-f|--force]}}` - Verwijder een specifiek subsysteem: -`apx subsystems rm --name {{string}}` +`apx subsystems rm {{[-n|--name]}} {{string}}` - [f]orceer het verwijderen van een specifiek subsysteem: -`apx subsystems rm --name {{string}} --force` +`apx subsystems rm {{[-n|--name]}} {{string}} {{[-f|--force]}}` diff --git a/pages.nl/linux/cfdisk.md b/pages.nl/linux/cfdisk.md index 1999ceb10d..2468925bae 100644 --- a/pages.nl/linux/cfdisk.md +++ b/pages.nl/linux/cfdisk.md @@ -9,4 +9,4 @@ - Creëer een nieuwe partitie tabel voor een specifiek apparaat en beheer het: -`cfdisk --zero {{/dev/sdX}}` +`cfdisk {{[-z|--zero]}} {{/dev/sdX}}` diff --git a/pages.nl/linux/chcon.md b/pages.nl/linux/chcon.md index 47923cf4b1..79567c4329 100644 --- a/pages.nl/linux/chcon.md +++ b/pages.nl/linux/chcon.md @@ -5,11 +5,11 @@ - Toon beveiligingscontext van een bestand: -`ls -lZ {{pad/naar/bestand}}` +`ls {{[-lZ|-l --context]}} {{pad/naar/bestand}}` - Verander de beveiligingscontext van een doelbestand, door gebruik te maken van een referentiebestand: -`chcon --reference={{referentiebestand}} {{doelbestand}}` +`chcon --reference {{referentiebestand}} {{doelbestand}}` - Verander de volledige SELinux beveiligingscontext van een bestand: @@ -17,16 +17,16 @@ - Verander alleen het gebruikersgedeelte van de SELinux beveiligingscontext: -`chcon -u {{user}} {{bestandsnaam}}` +`chcon {{[-u|--user]}} {{user}} {{bestandsnaam}}` - Verander alleen het rolgedeelte van de SELinux beveiligingscontext: -`chcon -r {{rol}} {{bestandsnaam}}` +`chcon {{[-r|--role]}} {{rol}} {{bestandsnaam}}` - Verander alleen het typegedeelte van de SELinux beveiligingscontext: -`chcon -t {{type}} {{bestandsnaam}}` +`chcon {{[-t|--type]}} {{type}} {{bestandsnaam}}` - Verander alleen het bereik/niveaugedeelte van de SELinux beveiligingscontext: -`chcon -l {{bereik/niveau}} {{bestandsnaam}}` +`chcon {{[-l|--range]}} {{bereik/niveau}} {{bestandsnaam}}` diff --git a/pages.nl/linux/chfn.md b/pages.nl/linux/chfn.md index 48371f1822..9b9349fc70 100644 --- a/pages.nl/linux/chfn.md +++ b/pages.nl/linux/chfn.md @@ -5,16 +5,16 @@ - Werk het "Naam"-veld van een gebruiker bij in de uitvoer van `finger`: -`chfn -f {{nieuwe_weergavenaam}} {{gebruikersnaam}}` +`chfn {{[-f|--full-name]}} {{nieuwe_weergavenaam}} {{gebruikersnaam}}` - Werk het "Kantoornummer"-veld van een gebruiker bij voor de uitvoer van `finger`: -`chfn -o {{nieuw_kantoornummer}} {{gebruikersnaam}}` +`chfn {{[-o|--office]}} {{nieuw_kantoornummer}} {{gebruikersnaam}}` - Werk het "Kantoor Telefoonnummer"-veld van een gebruiker bij voor de uitvoer van `finger`: -`chfn -p {{nieuw_kantoor_telefoonnummer}} {{gebruikersnaam}}` +`chfn {{[-p|--office-phone]}} {{nieuw_kantoor_telefoonnummer}} {{gebruikersnaam}}` - Werk het "Thuis Telefoonnummer"-veld van een gebruiker bij voor de uitvoer van `finger`: -`chfn -h {{nieuw_thuis_telefoonnummer}} {{gebruikersnaam}}` +`chfn {{[-h|--home-phone]}} {{nieuw_thuis_telefoonnummer}} {{gebruikersnaam}}` diff --git a/pages.pl/common/chown.md b/pages.pl/common/chown.md index 0f79e88e45..0b67a27e48 100644 --- a/pages.pl/common/chown.md +++ b/pages.pl/common/chown.md @@ -21,4 +21,4 @@ - 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}}` +`chown --reference {{ścieżka/do/pliku_referencyjnego}} {{ścieżka/do/pliku_lub_katalogu}}` diff --git a/pages.pl/linux/ac.md b/pages.pl/linux/ac.md index 1614d6ef8e..2863dbb68f 100644 --- a/pages.pl/linux/ac.md +++ b/pages.pl/linux/ac.md @@ -9,15 +9,15 @@ - Wyświetl ile godzin użytkownicy byli połączeni: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Wyświetl ile godzin konkretny użytkownik był połączony: -`ac --individual-totals {{użytkownik}}` +`ac {{[-p|--individual-totals]}} {{użytkownik}}` - Wyświetl ile godzin na dzień konkretny użytkownik był podłączony (z podsumowaniem): -`ac --daily-totals --individual-totals {{użytkownik}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{użytkownik}}` - Wyświetlaj także dodatkowe szczegóły: diff --git a/pages.pt_BR/linux/ac.md b/pages.pt_BR/linux/ac.md index a0209353b9..b83929c297 100644 --- a/pages.pt_BR/linux/ac.md +++ b/pages.pt_BR/linux/ac.md @@ -9,15 +9,15 @@ - Imprime quanto tempo em horas usuários ficaram conectados: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - Imprime quanto tempo em horas um usuário em particular ficou conectado: -`ac --individual-totals {{usuario}}` +`ac {{[-p|--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}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{usuario}}` - Também exibe detalhes adicionais: diff --git a/pages.th/linux/ac.md b/pages.th/linux/ac.md index 477b3a4f37..9af5f034e7 100644 --- a/pages.th/linux/ac.md +++ b/pages.th/linux/ac.md @@ -9,15 +9,15 @@ - แสดงสถิติเวลาที่ผู้ใช้ทุกคนได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง แจกแจงตามผู้ใช้แต่ละคน: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - แสดงสถิติเวลาของผู้ใช้ที่ระบุไว้ได้เชื่อมต่อเข้ามาในระบบในหลักชั่วโมง: -`ac --individual-totals {{ชื่อผู้เข้าใช้}}` +`ac {{[-p|--individual-totals]}} {{ชื่อผู้เข้าใช้}}` - แสดงสถิติว่าผู้ใช้ที่ระบุไว้ ได้เชื่อมต่อเข้ามาในรบบเป็นเวลากี่ชั่วโมงต่อวัน (พร้อมทั้งแสดงเวลาทั้งหมด): -`ac --daily-totals --individual-totals {{ชื่อผู้เข้าใช้}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{ชื่อผู้เข้าใช้}}` - แสดงข้อมูลเพิ่มเติมต่างๆ: diff --git a/pages.zh/linux/ac.md b/pages.zh/linux/ac.md index b5994fa4c2..96c6df1d58 100644 --- a/pages.zh/linux/ac.md +++ b/pages.zh/linux/ac.md @@ -9,15 +9,15 @@ - 以小时为单位打印所有用户连接时间: -`ac --individual-totals` +`ac {{[-p|--individual-totals]}}` - 以小时为单位打印特定用户连接时间: -`ac --individual-totals {{用户名}}` +`ac {{[-p|--individual-totals]}} {{用户名}}` - 以小时为单位打印特定用户每天连接时间: -`ac --daily-totals --individual-totals {{用户名}}` +`ac {{[-d|--daily-totals]}} {{[-p|--individual-totals]}} {{用户名}}` - 显示附加明细: From b60ae83cc20c1824abf91d938ad637860c745331 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:43:11 +0200 Subject: [PATCH 105/141] build(deps): bump tldr-lint from 0.0.17 to 0.0.18 (#16724) Bumps [tldr-lint](https://github.com/tldr-pages/tldr-lint) from 0.0.17 to 0.0.18. - [Release notes](https://github.com/tldr-pages/tldr-lint/releases) - [Changelog](https://github.com/tldr-pages/tldr-lint/blob/main/CHANGELOG.md) - [Commits](https://github.com/tldr-pages/tldr-lint/compare/v0.0.17...v0.0.18) --- updated-dependencies: - dependency-name: tldr-lint dependency-version: 0.0.18 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 19 ++++++++++++++----- package.json | 2 +- 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 41a5cd41c2..f587e7f8a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "dependencies": { "glob": "11.0.2", "markdownlint-cli": "^0.45.0", - "tldr-lint": "^0.0.17" + "tldr-lint": "^0.0.18" }, "devDependencies": { "husky": "^9.1.7" @@ -1323,12 +1323,12 @@ } }, "node_modules/tldr-lint": { - "version": "0.0.17", - "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.17.tgz", - "integrity": "sha512-QXvwcFncDIA94n23QwokcL5eiDbeqKK6dRV6JI/Pz/y4TQCjNeo7+49ilkXq1LqDrIK3yXrKT58KPz91YYSjhQ==", + "version": "0.0.18", + "resolved": "https://registry.npmjs.org/tldr-lint/-/tldr-lint-0.0.18.tgz", + "integrity": "sha512-yUO199oIrJcyAzdRnIGWLOtj1r+kqSvZiSAFRwZNwlZLnGvI6tLHGonGkN8pqxub5DdcheCSqa7r/dBBTfMoFg==", "license": "MIT", "dependencies": { - "commander": "^13.0.0" + "commander": "^14.0.0" }, "bin": { "tldr-lint": "lib/tldr-lint-cli.js", @@ -1342,6 +1342,15 @@ "url": "https://liberapay.com/tldr-pages" } }, + "node_modules/tldr-lint/node_modules/commander": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-14.0.0.tgz", + "integrity": "sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==", + "license": "MIT", + "engines": { + "node": ">=20" + } + }, "node_modules/uc.micro": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", diff --git a/package.json b/package.json index e6c8f631d8..86ab219978 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "dependencies": { "glob": "11.0.2", "markdownlint-cli": "^0.45.0", - "tldr-lint": "^0.0.17" + "tldr-lint": "^0.0.18" }, "devDependencies": { "husky": "^9.1.7" From 5dc10e205cc33d09918f21084dd61f617bfd6e11 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Mon, 2 Jun 2025 09:49:54 -0700 Subject: [PATCH 106/141] asterisk: update more information links (#16717) --- pages.es/linux/asterisk.md | 2 +- pages.ko/linux/asterisk.md | 2 +- pages.zh/linux/asterisk.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages.es/linux/asterisk.md b/pages.es/linux/asterisk.md index dbb06d79d1..f42174e8bd 100644 --- a/pages.es/linux/asterisk.md +++ b/pages.es/linux/asterisk.md @@ -1,7 +1,7 @@ # asterisk > Ejecuta y administra instancias de servidores telefónicos e intercambiadores (teléfonos). -> Más información: . +> Más información: . - [R]econecta a un servidor en ejecución y activa el registro con 3 niveles de [v]erbosidad: diff --git a/pages.ko/linux/asterisk.md b/pages.ko/linux/asterisk.md index 5623f616ff..daa9511740 100644 --- a/pages.ko/linux/asterisk.md +++ b/pages.ko/linux/asterisk.md @@ -1,7 +1,7 @@ # asterisk > 전화 및 교환기(전화) 서버 인스턴스를 실행하고 관리합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 실행 중인 서버에 [r]재연결하고, 3단계의 [v]자세히 로깅을 활성화: diff --git a/pages.zh/linux/asterisk.md b/pages.zh/linux/asterisk.md index 19dafc634e..dcb91e79d8 100644 --- a/pages.zh/linux/asterisk.md +++ b/pages.zh/linux/asterisk.md @@ -2,7 +2,7 @@ > 电话和交换(手机)服务器。 > 用于管理服务器自身和管理已经在运行的实例。 -> 更多信息:. +> 更多信息:. - 重新连接一个正在运行的服务器,并打开 3 级的日志详细度: From db44f15dacc3e1c488641db1c3e2649db2c9acc9 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Mon, 2 Jun 2025 19:50:00 +0300 Subject: [PATCH 107/141] gamescope: add Steam example (#16720) --- pages/linux/gamescope.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pages/linux/gamescope.md b/pages/linux/gamescope.md index 7aa9ed723f..438d84e324 100644 --- a/pages/linux/gamescope.md +++ b/pages/linux/gamescope.md @@ -19,10 +19,14 @@ `gamescope {{[-r|--nested-refresh]}} 30 -- %command%` +- Launch Steam in Big Picture Mode and integrate with gamescope: + +`gamescope {{[-e|--steam]}} -- /usr/bin/steam -tenfoot` + - Toggle fullscreen: `` -- Show help: +- Display help: `gamescope --help` From 64565fa0dba9597212a3087d49e1b24128c2caa6 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:50:15 +0200 Subject: [PATCH 108/141] atoum: update outdated translations (#16672) --- pages.es/common/atoum.md | 14 +++++++------- pages.fr/common/atoum.md | 14 +++++++------- pages.it/common/atoum.md | 14 +++++++------- pages.ko/common/atoum.md | 14 +++++++------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/pages.es/common/atoum.md b/pages.es/common/atoum.md index 04eb13fac2..64d9fa25b4 100644 --- a/pages.es/common/atoum.md +++ b/pages.es/common/atoum.md @@ -1,7 +1,7 @@ # atoum > Un framework de pruebas unitarias para PHP sencillo, moderno e intuitivo. -> Más información: . +> Más información: . - Inicializa un fichero de configuración: @@ -13,24 +13,24 @@ - Ejecuta pruebas utilizando el archivo de configuración especificado: -`atoum -c {{ruta/al/archivo}}` +`atoum {{[-c|--configuration]}} {{ruta/al/archivo}}` - Ejecuta un archivo de prueba específico: -`atoum -f {{ruta/al/archivo}}` +`atoum {{[-f|--files]}} {{ruta/al/archivo}}` - Ejecuta un directorio específico de pruebas: -`atoum -d {{ruta/al/directorio}}` +`atoum {{[-d|--directories]}} {{ruta/al/directorio}}` - Ejecuta todas las pruebas dado un namespace específico: -`atoum -ns {{namespace}}` +`atoum {{[-ns|--namespaces]}} {{namespace}}` - Ejecuta todas las pruebas dada una etiqueta específica: -`atoum -t {{etiqueta}}` +`atoum {{[-t|--tags]}} {{etiqueta}}` - Carga un archivo bootstrap personalizado antes de ejecutar las pruebas: -`atoum --bootstrap-file {{ruta/al/archivo}}` +`atoum {{[-bf|--bootstrap-file]}} {{ruta/al/archivo}}` diff --git a/pages.fr/common/atoum.md b/pages.fr/common/atoum.md index bd68c3d6d5..d239edd782 100644 --- a/pages.fr/common/atoum.md +++ b/pages.fr/common/atoum.md @@ -1,7 +1,7 @@ # atoum > Un framework de test unitaire pour PHP simple, moderne et intuitif. -> Plus d'informations : . +> Plus d'informations : . - Initialise un fichier de configuration : @@ -13,24 +13,24 @@ - Lance les tests avec un fichier de configuration donné : -`atoum -c {{chemin/vers/fichier}}` +`atoum {{[-c|--configuration]}} {{chemin/vers/fichier}}` - Lance un fichier de test spécifique : -`atoum -f {{chemin/vers/fichier}}` +`atoum {{[-f|--files]}} {{chemin/vers/fichier}}` - Lance les tests présent dans dossier donné : -`atoum -d {{chemin/vers/dossier}}` +`atoum {{[-d|--directories]}} {{chemin/vers/dossier}}` - Lance tous les tests sous un certain namespace : -`atoum -ns {{namespace}}` +`atoum {{[-ns|--namespaces]}} {{namespace}}` - Lance tous les tests avec un certain tag : -`atoum -t {{tag}}` +`atoum {{[-t|--tags]}} {{tag}}` - Charge un fichier d'amorce avant de lancer les tests : -`atoum --bootstrap-file {{chemin/vers/fichier}}` +`atoum {{[-bf|--bootstrap-file]}} {{chemin/vers/fichier}}` diff --git a/pages.it/common/atoum.md b/pages.it/common/atoum.md index b308ebb42e..f0416afd20 100644 --- a/pages.it/common/atoum.md +++ b/pages.it/common/atoum.md @@ -1,7 +1,7 @@ # atoum > Un semplice, moderno ed intuitivo framework PHP per unit testing. -> Maggiori informazioni: . +> Maggiori informazioni: . - Inizializza un file di configurazione: @@ -13,24 +13,24 @@ - Esegui test utilizzando uno specifico file di configurazione: -`atoum -c {{percorso/del/file}}` +`atoum {{[-c|--configuration]}} {{percorso/del/file}}` - Esegui uno specifico file di test: -`atoum -f {{percorso/del/file}}` +`atoum {{[-f|--files]}} {{percorso/del/file}}` - Esegui una specifica directory di test: -`atoum -d {{percorso/della/directory}}` +`atoum {{[-d|--directories]}} {{percorso/della/directory}}` - Esegui tutti i test sotto uno specifico namespace: -`atoum -ns {{namespace}}` +`atoum {{[-ns|--namespaces]}} {{namespace}}` - Esegui tutti i test con uno specifico tag: -`atoum -t {{tag}}` +`atoum {{[-t|--tags]}} {{tag}}` - Carica un file di bootstrap personalizzato prima di eseguire i test: -`atoum --bootstrap-file {{percorso/del/file}}` +`atoum {{[-bf|--bootstrap-file]}} {{percorso/del/file}}` diff --git a/pages.ko/common/atoum.md b/pages.ko/common/atoum.md index f6e1c836eb..c82a36d878 100644 --- a/pages.ko/common/atoum.md +++ b/pages.ko/common/atoum.md @@ -1,7 +1,7 @@ # atoum > PHP를 위한 단순하고 현대적이며 직관적인 단위 테스트 프레임워크. -> 더 많은 정보: . +> 더 많은 정보: . - 설정 파일 초기화: @@ -13,24 +13,24 @@ - 특정 설정 파일을 사용한 테스트 실행: -`atoum -c {{경로/파일명}}` +`atoum {{[-c|--configuration]}} {{경로/파일명}}` - 특정 테스트파일 실행: -`atoum -f {{경로/파일명}}` +`atoum {{[-f|--files]}} {{경로/파일명}}` - 특정 테스트 디렉토리 실행: -`atoum -d {{경로/디렉토리명}}` +`atoum {{[-d|--directories]}} {{경로/디렉토리명}}` - 특정 namespace 아래 있는 모든 테스트 실행: -`atoum -ns {{namespace}}` +`atoum {{[-ns|--namespaces]}} {{namespace}}` - 특정 태그를 갖고 테스트 실행: -`atoum -t {{태그}}` +`atoum {{[-t|--tags]}} {{태그}}` - 테스트를 실행하기 전에 사용자 지정 부트스트랩 파일을 로드: -`atoum --bootstrap-file {{경로/파일명}}` +`atoum {{[-bf|--bootstrap-file]}} {{경로/파일명}}` From f5d6f885e28dac8fe671f110bdc774575919461c Mon Sep 17 00:00:00 2001 From: Rodrigo Decuir <110834031+rodecuir@users.noreply.github.com> Date: Mon, 2 Jun 2025 16:50:26 +0000 Subject: [PATCH 109/141] , : add Spanish translation (#16721) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Darío Hereñú --- pages.es/common/,.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages.es/common/,.md diff --git a/pages.es/common/,.md b/pages.es/common/,.md new file mode 100644 index 0000000000..591ff1a71a --- /dev/null +++ b/pages.es/common/,.md @@ -0,0 +1,16 @@ +# Comma + +> Ejecuta comandos aún sin tenerlos instalados en tu sistema. +> Más información: . + +- Ejecuta un comando: + +`, {{comando -with -flags}}` + +- Agrega un comando a una shell hija: + +`, {{[-s|--shell]}} {{comando}}` + +- Limpia el caché: + +`, {{[-e|--empty-cache]}}` From a75dfe440a026e7146e12a5e98cc72461d762137 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:50:56 +0200 Subject: [PATCH 110/141] `pages.*/linux`: update outdated translations (part 2) (#16713) --- pages.es/linux/iptables-save.md | 4 ++-- pages.ko/linux/csplit.md | 4 ++-- pages.ko/linux/fold.md | 6 +++--- pages.ko/linux/ipcs.md | 12 ++++++------ pages.ko/linux/iptables-save.md | 4 ++-- pages.ko/linux/libtool.md | 4 ++-- pages.ko/linux/libtoolize.md | 2 +- pages.ko/linux/mesg.md | 4 ++-- pages.ko/linux/mknod.md | 2 +- pages.ko/linux/mktemp.md | 4 ++-- pages.ko/linux/nl.md | 14 +++++++------- pages.ko/linux/pkgctl-diff.md | 10 +++++----- pages.nl/linux/csplit.md | 4 ++-- pages.nl/linux/fold.md | 6 +++--- pages.nl/linux/ipcs.md | 24 ++++++++++++------------ pages.nl/linux/iptables-save.md | 6 +++--- pages.nl/linux/last.md | 31 +++++++++++++++---------------- pages.nl/linux/libtool.md | 4 ++-- pages.nl/linux/libtoolize.md | 2 +- pages.nl/linux/look.md | 2 +- pages.nl/linux/mesg.md | 2 +- pages.nl/linux/mknod.md | 2 +- pages.nl/linux/mktemp.md | 4 ++-- pages.nl/linux/nl.md | 12 ++++++------ pages.nl/linux/pkgctl-diff.md | 8 ++++---- pages.pt_BR/linux/csplit.md | 4 ++-- pages.zh/linux/mknod.md | 2 +- pages/linux/iostat.md | 2 +- pages/linux/ipcs.md | 2 +- pages/linux/libtoolize.md | 2 +- 30 files changed, 94 insertions(+), 95 deletions(-) diff --git a/pages.es/linux/iptables-save.md b/pages.es/linux/iptables-save.md index 0b278a6187..28859b8598 100644 --- a/pages.es/linux/iptables-save.md +++ b/pages.es/linux/iptables-save.md @@ -10,8 +10,8 @@ - Imprime la configuración de `iptables` de una [t]abla específica: -`sudo iptables-save --table {{tabla}}` +`sudo iptables-save {{[-t|--table]}} {{tabla}}` - Guarda la configuración de `iptables` al archivo: -`sudo iptables-save --file {{ruta/al/archivo}}` +`sudo iptables-save {{[-f|--file]}} {{ruta/al/archivo}}` diff --git a/pages.ko/linux/csplit.md b/pages.ko/linux/csplit.md index 5f99ca805b..62cc8f20eb 100644 --- a/pages.ko/linux/csplit.md +++ b/pages.ko/linux/csplit.md @@ -14,11 +14,11 @@ - 정확한 나누기 오류를 무시하고 파일을 5줄마다 분할: -`csplit -k {{경로/대상/파일}} 5 {*}` +`csplit {{[-k|--keep-files]}} {{경로/대상/파일}} 5 {*}` - 5번째 줄에서 파일을 분할하고 출력 파일에 사용자 지정 접두사를 사용: -`csplit {{경로/대상/파일}} 5 -f {{접두사}}` +`csplit {{경로/대상/파일}} 5 {{[-f|--prefix]}} {{접두사}}` - 정규 표현식과 일치하는 줄에서 파일을 분할: diff --git a/pages.ko/linux/fold.md b/pages.ko/linux/fold.md index 1b669a32f9..e95fda9cac 100644 --- a/pages.ko/linux/fold.md +++ b/pages.ko/linux/fold.md @@ -5,12 +5,12 @@ - 고정 폭으로 줄을 접기: -`fold --width {{폭}} {{경로/대상/파일}}` +`fold {{[-w|--width]}} {{폭}} {{경로/대상/파일}}` - 바이트 단위로 폭 계산 (기본값은 열 단위로 계산): -`fold --bytes --width {{바이트_단위_폭}} {{경로/대상/파일}}` +`fold {{[-b|--bytes]}} {{[-w|--width]}} {{바이트_단위_폭}} {{경로/대상/파일}}` - 폭 제한 내에서 가장 오른쪽 공백 뒤에서 줄을 나누기: -`fold --spaces --width {{폭}} {{경로/대상/파일}}` +`fold {{[-s|--spaces]}} {{[-w|--width]}} {{폭}} {{경로/대상/파일}}` diff --git a/pages.ko/linux/ipcs.md b/pages.ko/linux/ipcs.md index ca84fc4177..b5e6f6756d 100644 --- a/pages.ko/linux/ipcs.md +++ b/pages.ko/linux/ipcs.md @@ -14,24 +14,24 @@ - 특정 [i]D를 가진 자원에 대한 전체 세부 사항 보기: -`ipcs {{--shmems|--queues|--semaphores}} --id {{자원_ID}}` +`ipcs {{--shmems|--queues|--semaphores}} {{[-i|--id]}} {{자원_ID}}` - [l]리미트를 [b]바이트 또는 사람이 읽기 쉬운 형식으로 보기: -`ipcs --limits {{--bytes|--human}}` +`ipcs {{[-l|--limits]}} {{--bytes|--human}}` - 현재 사용에 대한 [u]요약 보기: -`ipcs --summary` +`ipcs {{[-u|--summary]}}` - 모든 IPC 설비에 대한 [c]만든이 및 소유자의 UID와 PID 보기: -`ipcs --creator` +`ipcs {{[-c|--creator]}}` - 모든 IPC 설비에 대한 마지막 작업자의 [p]ID 보기: -`ipcs --pid` +`ipcs {{[-p|--pid]}}` - 모든 IPC 설비에 대한 마지막 접근 [t]시각 보기: -`ipcs --time` +`ipcs {{[-t|--time]}}` diff --git a/pages.ko/linux/iptables-save.md b/pages.ko/linux/iptables-save.md index 32cf72af94..ea44407063 100644 --- a/pages.ko/linux/iptables-save.md +++ b/pages.ko/linux/iptables-save.md @@ -10,8 +10,8 @@ - 특정 [t]테이블의 `iptables` 설정 출력: -`sudo iptables-save --table {{테이블}}` +`sudo iptables-save {{[-t|--table]}} {{테이블}}` - `iptables` 설정을 [f]파일에 저장: -`sudo iptables-save --file {{경로/대상/파일}}` +`sudo iptables-save {{[-f|--file]}} {{경로/대상/파일}}` diff --git a/pages.ko/linux/libtool.md b/pages.ko/linux/libtool.md index 8689779cdc..b3a738899a 100644 --- a/pages.ko/linux/libtool.md +++ b/pages.ko/linux/libtool.md @@ -5,11 +5,11 @@ - 소스 파일을 `libtool` 객체로 컴파일: -`libtool --mode=compile gcc -c {{경로/대상/원본.c}} -o {{경로/대상/원본.lo}}` +`libtool --mode=compile gcc {{[-c|--compile]}} {{경로/대상/원본.c}} {{[-o|--output]}} {{경로/대상/원본.lo}}` - 라이브러리 또는 실행 파일 생성: -`libtool --mode=link gcc -o {{경로/대상/라이브러리.lo}} {{경로/대상/원본.lo}}` +`libtool --mode=link gcc {{[-o|--output]}} {{경로/대상/라이브러리.lo}} {{경로/대상/원본.lo}}` - 라이브러리 경로를 자동으로 설정하여 다른 프로그램이 설치되지 않은 `libtool` 생성 프로그램 또는 라이브러리를 사용할 수 있도록 합니다: diff --git a/pages.ko/linux/libtoolize.md b/pages.ko/linux/libtoolize.md index e7cf217c4a..25a748935b 100644 --- a/pages.ko/linux/libtoolize.md +++ b/pages.ko/linux/libtoolize.md @@ -6,4 +6,4 @@ - `libtool`을 필요한 파일을 복사하여(심볼릭 링크는 피함) 프로젝트를 초기화하고 필요한 경우 기존 파일을 덮어씀: -`libtoolize --copy --force` +`libtoolize {{[-cf|--copy --force]}}` diff --git a/pages.ko/linux/mesg.md b/pages.ko/linux/mesg.md index a9489cd2e8..d9b49447b8 100644 --- a/pages.ko/linux/mesg.md +++ b/pages.ko/linux/mesg.md @@ -2,7 +2,7 @@ > 터미널이 다른 사용자로부터 메시지를 수신할 수 있는지 확인하거나 설정합니다. 주로 `write` 명령에서 사용됩니다. > 같이 보기: `write`, `talk`. -> 더 많은 정보: . +> 더 많은 정보: . - 터미널의 메시지 수신 가능 여부 확인: @@ -18,4 +18,4 @@ - [v]자세히 모드를 활성화하여 터미널에서 실행되지 않을 경우 경고 출력: -`mesg --verbose` +`mesg {{[-v|--verbose]}}` diff --git a/pages.ko/linux/mknod.md b/pages.ko/linux/mknod.md index 007a467f4f..088be59255 100644 --- a/pages.ko/linux/mknod.md +++ b/pages.ko/linux/mknod.md @@ -17,4 +17,4 @@ - 기본 SELinux 보안 컨텍스트로 장치 파일 생성: -`sudo mknod -Z {{경로/대상/장치_파일}} {{유형}} {{주_장치_번호}} {{부_장치_번호}}` +`sudo mknod {{[-Z |--context=]}}{{경로/대상/장치_파일}} {{유형}} {{주_장치_번호}} {{부_장치_번호}}` diff --git a/pages.ko/linux/mktemp.md b/pages.ko/linux/mktemp.md index f2ee8e1e6f..d482ddf8b0 100644 --- a/pages.ko/linux/mktemp.md +++ b/pages.ko/linux/mktemp.md @@ -9,7 +9,7 @@ - 사용자 지정 디렉토리 사용 (기본값: `$TMPDIR`, 또는 `/tmp`): -`mktemp --tmpdir={{/경로/대상/tempdir}}` +`mktemp {{[-p |--tmpdir=]}}{{/경로/대상/tempdir}}` - 사용자 지정 경로 템플릿 사용 (`X`는 무작위 영숫자 문자로 대체됨): @@ -25,4 +25,4 @@ - 빈 임시 디렉토리를 생성하고 절대 경로 출력: -`mktemp --directory` +`mktemp {{[-d|--directory]}}` diff --git a/pages.ko/linux/nl.md b/pages.ko/linux/nl.md index c172c22fb8..9a5c4025b8 100644 --- a/pages.ko/linux/nl.md +++ b/pages.ko/linux/nl.md @@ -1,7 +1,7 @@ # nl > 파일이나 `stdin`에서 각 줄에 번호를 매깁니다. -> 더 많은 정보: . +> 더 많은 정보: . - 파일에서 빈 줄이 아닌 줄에 번호 매기기: @@ -13,24 +13,24 @@ - 빈 줄을 포함한 모든 본문 줄에 번호를 매기거나 본문 줄에 번호를 매기지 않기: -`nl --body-numbering {{a|n}} {{경로/대상/파일}}` +`nl {{[-b|--body-numbering]}} {{a|n}} {{경로/대상/파일}}` - 기본 정규 표현식(BRE) 패턴과 일치하는 본문 줄에만 번호 매기기: -`nl --body-numbering p'FooBar[0-9]' {{경로/대상/파일}}` +`nl {{[-b|--body-numbering]}} p'FooBar[0-9]' {{경로/대상/파일}}` - 줄 번호 매기기에 특정 [i]크기 사용: -`nl --line-increment {{크기}} {{경로/대상/파일}}` +`nl {{[-i|--line-increment]}} {{크기}} {{경로/대상/파일}}` - 줄 번호 매기기 형식을 오른쪽 정렬 또는 왼쪽 정렬로 지정하고, 앞쪽에 0을 유지할지 여부 지정: -`nl --number-format {{rz|ln|rn}}` +`nl {{[-n|--number-format]}} {{rz|ln|rn}}` - 줄 번호 매기기의 [w]너비 지정 (기본값은 6): -`nl --number-width {{열_너비}} {{경로/대상/파일}}` +`nl {{[-w|--number-width]}} {{열_너비}} {{경로/대상/파일}}` - 줄 번호와 줄을 구분하는 특정 문자열 사용 (기본값은 탭): -`nl --number-separator {{구분자}} {{경로/대상/파일}}` +`nl {{[-s|--number-separator]}} {{구분자}} {{경로/대상/파일}}` diff --git a/pages.ko/linux/pkgctl-diff.md b/pages.ko/linux/pkgctl-diff.md index d3707bda09..e66ecd04f4 100644 --- a/pages.ko/linux/pkgctl-diff.md +++ b/pages.ko/linux/pkgctl-diff.md @@ -2,20 +2,20 @@ > 패키지 파일을 다양한 모드로 비교. > 같이 보기: `pkgctl`. -> 더 많은 정보: . +> 더 많은 정보: . - tar 콘텐츠 [l]리스트 비교 모드(기본값)로 패키지 파일 비교: -`pkgctl diff --list {{경로/대상/파일|패키지명}}` +`pkgctl diff {{[-l|--list]}} {{경로/대상/파일|패키지명}}` - [d]iffoscope 비교 모드로 패키지 파일 비교: -`pkgctl diff --diffoscope {{경로/대상/파일|패키지명}}` +`pkgctl diff {{[-d|--diffoscope]}} {{경로/대상/파일|패키지명}}` - `.PKGINFO` 비교 모드로 패키지 파일 비교: -`pkgctl diff --pkginfo {{경로/대상/파일|패키지명}}` +`pkgctl diff {{[-p|--pkginfo]}} {{경로/대상/파일|패키지명}}` - `.BUILDINFO` 비교 모드로 패키지 파일 비교: -`pkgctl diff --buildinfo {{경로/대상/파일|패키지명}}` +`pkgctl diff {{[-b|--buildinfo]}} {{경로/대상/파일|패키지명}}` diff --git a/pages.nl/linux/csplit.md b/pages.nl/linux/csplit.md index 5ad2e4153e..65b56c4dc9 100644 --- a/pages.nl/linux/csplit.md +++ b/pages.nl/linux/csplit.md @@ -14,11 +14,11 @@ - Splits een bestand iedere 5 regels en negeer de exacte verdeeldheid error: -`csplit -k {{pad/naar/bestand}} 5 {*}` +`csplit {{[-k|--keep-files]}} {{pad/naar/bestand}} 5 {*}` - Splits een bestand op regel 5 en gebruik een aangepaste prefix voor de uitvoerbestanden: -`csplit {{pad/naar/bestand}} 5 -f {{prefix}}` +`csplit {{pad/naar/bestand}} 5 {{[-f|--prefix]}} {{prefix}}` - Splits een bestand op een regel die overeenkomt met de reguliere expressie: diff --git a/pages.nl/linux/fold.md b/pages.nl/linux/fold.md index 25ef37385d..131d25e5d3 100644 --- a/pages.nl/linux/fold.md +++ b/pages.nl/linux/fold.md @@ -5,12 +5,12 @@ - Breek regels af met een vaste breedte: -`fold --width {{breedte}} {{pad/naar/bestand}}` +`fold {{[-w|--width]}} {{breedte}} {{pad/naar/bestand}}` - Tel breedte in bytes (standaard is het tellen in kolommen): -`fold --bytes --width {{breedte_in_bytes}} {{pad/naar/bestand}}` +`fold {{[-b|--bytes]}} {{[-w|--width]}} {{breedte_in_bytes}} {{pad/naar/bestand}}` - Breek de regel na de meest rechtse spatie binnen de breedtelimiet: -`fold --spaces --width {{breedte}} {{pad/naar/bestand}}` +`fold {{[-s|--spaces]}} {{[-w|--width]}} {{breedte}} {{pad/naar/bestand}}` diff --git a/pages.nl/linux/ipcs.md b/pages.nl/linux/ipcs.md index 3cd2327b8c..2664300777 100644 --- a/pages.nl/linux/ipcs.md +++ b/pages.nl/linux/ipcs.md @@ -12,26 +12,26 @@ `ipcs {{--shmems|--queues|--semaphores}}` -- Toon volledige details over de resource met een specifieke [i]D: +- Toon volledige details over de resource met een specifieke ID: -`ipcs {{--shmems|--queues|--semaphores}} --id {{resource_id}}` +`ipcs {{--shmems|--queues|--semaphores}} {{[-i|--id]}} {{resource_id}}` -- Toon [l]imieten in [b]ytes of in een leesbaar formaat: +- Toon limieten in [b]ytes of in een leesbaar formaat: -`ipcs --limits {{--bytes|--human}}` +`ipcs {{[-l|--limits]}} {{--bytes|--human}}` -- Toon s[u]mmary over huidig gebruik: +- Toon samenvatting over huidig gebruik: -`ipcs --summary` +`ipcs {{[-u|--summary]}}` -- Toon [c]reator's en owner's UIDs en PIDs voor alle IPC-faciliteiten: +- Toon creator's en owner's UIDs en PIDs voor alle IPC-faciliteiten: -`ipcs --creator` +`ipcs {{[-c|--creator]}}` -- Toon de [p]ID van de laatste operatoren voor alle IPC-faciliteiten: +- Toon de PID van de laatste operatoren voor alle IPC-faciliteiten: -`ipcs --pid` +`ipcs {{[-p|--pid]}}` -- Toon laatste toegang[s]tijden voor alle IPC-faciliteiten: +- Toon laatste toegangstijden voor alle IPC-faciliteiten: -`ipcs --time` +`ipcs {{[-t|--time]}}` diff --git a/pages.nl/linux/iptables-save.md b/pages.nl/linux/iptables-save.md index b9848f86a4..37566847a7 100644 --- a/pages.nl/linux/iptables-save.md +++ b/pages.nl/linux/iptables-save.md @@ -8,10 +8,10 @@ `sudo iptables-save` -- Toon de `iptables` configuratie van een specifiek [t]abel: +- Toon de `iptables` configuratie van een specifiek tabel: -`sudo iptables-save --table {{tabel}}` +`sudo iptables-save {{[-t|--table]}} {{tabel}}` - Sla de `iptables` configuratie op in een bestand: -`sudo iptables-save --file {{pad/naar/bestand}}` +`sudo iptables-save {{[-f|--file]}} {{pad/naar/bestand}}` diff --git a/pages.nl/linux/last.md b/pages.nl/linux/last.md index 7948852388..df502a3c87 100644 --- a/pages.nl/linux/last.md +++ b/pages.nl/linux/last.md @@ -1,37 +1,36 @@ # last -> Toon informatie over de laatste gebruikerslogins. -> Bekijk ook: `lastb`, `login`. +> Toon de laatst ingelogde gebruikers. > Meer informatie: . -- Toon logininformatie (bijv. gebruikersnaam, terminal, opstarttijd, kernel) van alle gebruikers: +- Bekijk de laatste inloggegevens (bijv. gebruikersnaam, terminal, opstarttijd, kernel) van alle gebruikers zoals gelezen uit `/var/log/wtmp`: `last` -- Toon logininformatie van een specifieke gebruiker: +- Toon login informatie van een specifieke gebruiker: `last {{gebruikersnaam}}` -- Toon informatie van een specifieke TTY: +- Specificeer hoeveel van de laatste aanmeldingen weergegeven moeten worden: -`last {{tty1}}` +`last {{[-n|--limit]}} {{login_count}}` -- Toon de meest recente informatie (standaard staan de nieuwste bovenaan): +- Toon de volledige datum en tijd voor vermeldingen en toon vervolgens de kolom met de hostnaam als laatste weer om afkapping te voorkomen: -`last | tac` +`last {{[-F|--fulltimes]}} {{[-a|--hostlast]}}` -- Toon informatie over systeemopstarts: +- Toon alle aanmeldingen van een specifieke gebruiker en toon het IP-adres in plaats van de hostnaam: -`last "{{system boot}}"` +`last {{gebruikersnaam}} {{[-i|--ip]}}` -- Toon informatie met een specifiek [t]ijdstempel formaat: +- Toon informatie vanaf een specifieke datum en tijd: -`last --time-format {{notime|full|iso}}` +`last {{[-s|--since]}} {{-7days}}` -- Toon informatie [s]inds een specifieke tijd en datum: +- Bekijk alle geregistreerde herstarts (d.w.z. de laatste aanmeldingen van de pseudo-gebruiker “reboot”): -`last --since {{-7days}}` +`last reboot` -- Toon informatie (bijv. hostnaam en IP) van externe hosts: +- Toon de help: -`last --dns` +`last {{[-h|--help]}}` diff --git a/pages.nl/linux/libtool.md b/pages.nl/linux/libtool.md index f87fef1bb9..2113332484 100644 --- a/pages.nl/linux/libtool.md +++ b/pages.nl/linux/libtool.md @@ -5,11 +5,11 @@ - Compileer een bronbestand naar een `libtool`-object: -`libtool --mode=compile gcc -c {{pad/naar/bron.c}} -o {{pad/naar/bron.lo}}` +`libtool --mode=compile gcc {{[-c|--compile]}} {{pad/naar/bron.c}} {{[-o|--output]}} {{pad/naar/bron.lo}}` - Maak een bibliotheek of een uitvoerbaar bestand: -`libtool --mode=link gcc -o {{pad/naar/bibliotheek.lo}} {{pad/naar/bron.lo}}` +`libtool --mode=link gcc {{[-o|--output]}} {{pad/naar/bibliotheek.lo}} {{pad/naar/bron.lo}}` - Stel automatisch het bibliotheekpad in zodat een ander programma niet-geïnstalleerde door `libtool` gegenereerde programma's of bibliotheken kan gebruiken: diff --git a/pages.nl/linux/libtoolize.md b/pages.nl/linux/libtoolize.md index 2058f5fd36..a825d38f2b 100644 --- a/pages.nl/linux/libtoolize.md +++ b/pages.nl/linux/libtoolize.md @@ -6,4 +6,4 @@ - Initialiseer een project voor `libtool` door de benodigde bestanden te kopiëren (symbolische links vermijden) en bestaande bestanden indien nodig te overschrijven: -`libtoolize --copy --force` +`libtoolize {{[-cf|--copy --force]}}` diff --git a/pages.nl/linux/look.md b/pages.nl/linux/look.md index 7201589a5d..d5e173e46a 100644 --- a/pages.nl/linux/look.md +++ b/pages.nl/linux/look.md @@ -11,7 +11,7 @@ - Zoek hoofdletterongevoeling alleen op lege en alfanumerieke tekens: -`look {{[-f|--ignore-case}]} {{[-d|--alphanum]}} {{prefix}} {{pad/naar/bestand}}` +`look {{[-f|--ignore-case]}} {{[-d|--alphanum]}} {{prefix}} {{pad/naar/bestand}}` - Specificeer een string-terminatiekarakter (standaard is spatie): diff --git a/pages.nl/linux/mesg.md b/pages.nl/linux/mesg.md index 7df77751ae..8fd89ad18c 100644 --- a/pages.nl/linux/mesg.md +++ b/pages.nl/linux/mesg.md @@ -18,4 +18,4 @@ - Schakel [v]erbose modus in, en toon een waarschuwing als het commando niet wordt uitgevoerd vanaf een terminal: -`mesg --verbose` +`mesg {{[-v|--verbose]}}` diff --git a/pages.nl/linux/mknod.md b/pages.nl/linux/mknod.md index 73577a3e27..49571eb6ec 100644 --- a/pages.nl/linux/mknod.md +++ b/pages.nl/linux/mknod.md @@ -17,4 +17,4 @@ - Maak een apparaatbestand aan met de standaard SELinux-beveiligingscontext: -`sudo mknod -Z {{pad/naar/apparaat_bestand}} {{type}} {{groot_apparaatnummer}} {{klein_apparaatnummer}}` +`sudo mknod {{[-Z |--context=]}}{{pad/naar/apparaat_bestand}} {{type}} {{groot_apparaatnummer}} {{klein_apparaatnummer}}` diff --git a/pages.nl/linux/mktemp.md b/pages.nl/linux/mktemp.md index 3af76aa50c..2d2e5d122b 100644 --- a/pages.nl/linux/mktemp.md +++ b/pages.nl/linux/mktemp.md @@ -9,7 +9,7 @@ - Gebruik een aangepaste map (standaard is `$TMPDIR`, of `/tmp`): -`mktemp --tmpdir={{/pad/naar/tempdir}}` +`mktemp {{[-p |--tmpdir=]}}{{/pad/naar/tempdir}}` - Gebruik een aangepast pad-sjabloon (`X`en worden vervangen door willekeurige alfanumerieke tekens): @@ -25,4 +25,4 @@ - Maak een lege tijdelijke map aan en toon het absolute pad: -`mktemp --directory` +`mktemp {{[-d|--directory]}}` diff --git a/pages.nl/linux/nl.md b/pages.nl/linux/nl.md index b51b74e697..c93c4977ed 100644 --- a/pages.nl/linux/nl.md +++ b/pages.nl/linux/nl.md @@ -13,24 +13,24 @@ - Nummer [a]lle [b]ody regels inclusief lege regels of [n]ummer geen [b]ody regels: -`nl --body-numbering {{a|n}} {{pad/naar/bestand}}` +`nl {{[-b|--body-numbering]}} {{a|n}} {{pad/naar/bestand}}` - Nummer alleen de [b]ody regels die overeenkomen met een basis reguliere expressie (BRE) [p]atroon: -`nl --body-numbering p'FooBar[0-9]' {{pad/naar/bestand}}` +`nl {{[-b|--body-numbering]}} p'FooBar[0-9]' {{pad/naar/bestand}}` - Gebruik een specifieke [i]ncrement voor regelnummering: -`nl --line-increment {{increment}} {{pad/naar/bestand}}` +`nl {{[-i|--line-increment]}} {{increment}} {{pad/naar/bestand}}` - Specificeer het nummeringsformaat voor regels: [r]echts of [l]inks uitgelijnd, met of zonder voorloopnullen ([z]eros): -`nl --number-format {{rz|ln|rn}}` +`nl {{[-n|--number-format]}} {{rz|ln|rn}}` - Specificeer de breedte ([w]) van de nummering (standaard is 6): -`nl --number-width {{kolombreedte}} {{pad/naar/bestand}}` +`nl {{[-w|--number-width]}} {{kolombreedte}} {{pad/naar/bestand}}` - Gebruik een specifieke string om de regelnummers van de regels te [s]cheiden (standaard is TAB): -`nl --number-separator {{scheidingsteken}} {{pad/naar/bestand}}` +`nl {{[-s|--number-separator]}} {{scheidingsteken}} {{pad/naar/bestand}}` diff --git a/pages.nl/linux/pkgctl-diff.md b/pages.nl/linux/pkgctl-diff.md index 2d373f0b69..02a3990f17 100644 --- a/pages.nl/linux/pkgctl-diff.md +++ b/pages.nl/linux/pkgctl-diff.md @@ -6,16 +6,16 @@ - Vergelijk pakketbestanden in tar-inhoud [l]ijst verschillende modus (standaard): -`pkgctl diff --list {{pad/naar/bestand|pkgname}}` +`pkgctl diff {{[-l|--list]}} {{pad/naar/bestand|pkgname}}` - Vergelijk pakketbestanden in [d]iffoscope verschillende modus: -`pkgctl diff --diffoscope {{pad/naar/bestand|pkgname}}` +`pkgctl diff {{[-d|--diffoscope]}} {{pad/naar/bestand|pkgname}}` - Vergelijk pakketbestanden in `.PKGINFO` verschillende modus: -`pkgctl diff --pkginfo {{pad/naar/bestand|pkgname}}` +`pkgctl diff {{[-p|--pkginfo]}} {{pad/naar/bestand|pkgname}}` - Vergelijk pakketbestanden in `.BUILDINFO` verschillende modus: -`pkgctl diff --buildinfo {{pad/naar/bestand|pkgname}}` +`pkgctl diff {{[-b|--buildinfo]}} {{pad/naar/bestand|pkgname}}` diff --git a/pages.pt_BR/linux/csplit.md b/pages.pt_BR/linux/csplit.md index ca78904b41..1ad45340e4 100644 --- a/pages.pt_BR/linux/csplit.md +++ b/pages.pt_BR/linux/csplit.md @@ -14,11 +14,11 @@ - Divide um arquivo a cada 5 linhas, ignorando o fato do total de linhas ser divisível por 5: -`csplit -k {{arquivo}} 5 {*}` +`csplit {{[-k|--keep-files]}} {{arquivo}} 5 {*}` - Divide o arquivo na linha 5 e utiliza um prefixo específico para os arquivos de saída: -`csplit {{arquivo}} 5 -f {{prefix}}` +`csplit {{arquivo}} 5 {{[-f|--prefix]}} {{prefix}}` - Divide um arquivo na linha que atenda a expressão regular: diff --git a/pages.zh/linux/mknod.md b/pages.zh/linux/mknod.md index 411e6e3592..d56fc3da0d 100644 --- a/pages.zh/linux/mknod.md +++ b/pages.zh/linux/mknod.md @@ -17,4 +17,4 @@ - 使用 SELinux 默认安全上下文创建设备文件: -`sudo mknod -Z {{路径/到/设备文件}} {{类型}} {{主设备号}} {{次设备号}}` +`sudo mknod {{[-Z |--context=]}}{{路径/到/设备文件}} {{类型}} {{主设备号}} {{次设备号}}` diff --git a/pages/linux/iostat.md b/pages/linux/iostat.md index 4efa034bef..0c2cf3546f 100644 --- a/pages/linux/iostat.md +++ b/pages/linux/iostat.md @@ -13,7 +13,7 @@ - Display CPU statistics: -`iostat -c` +`iostat {{[-c|--compact]}}` - Display disk statistics with disk names (including LVM): diff --git a/pages/linux/ipcs.md b/pages/linux/ipcs.md index 1ed0f14be7..0a5987ffe5 100644 --- a/pages/linux/ipcs.md +++ b/pages/linux/ipcs.md @@ -20,7 +20,7 @@ `ipcs {{[-l|--limits]}} {{--bytes|--human}}` -- Show s[u]mmary about current usage: +- Show summary about current usage: `ipcs {{[-u|--summary]}}` diff --git a/pages/linux/libtoolize.md b/pages/linux/libtoolize.md index bbd123f849..2a6aadef06 100644 --- a/pages/linux/libtoolize.md +++ b/pages/linux/libtoolize.md @@ -6,4 +6,4 @@ - Initialize a project for `libtool` by copying necessary files (avoiding symbolic links) and overwriting existing files if needed: -`libtoolize {{[-c|--copy]}} {{[-f|--force]}}` +`libtoolize {{[-cf|--copy --force]}}` From 40483ca9f15c9fdaff3b33cb51941bf77a79b507 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:51:06 +0200 Subject: [PATCH 111/141] pam*: update translations (part 2) (#16705) --- pages.es/common/pamslice.md | 8 ++++---- pages.es/common/pamtogif.md | 4 ++-- pages.es/common/pamtopnm.md | 2 +- pages.es/common/pamtouil.md | 2 +- pages.ko/common/pamdeinterlace.md | 2 +- pages.ko/common/pamixer.md | 8 ++++---- pages.ko/common/pamshadedrelief.md | 2 +- pages.ko/common/pamslice.md | 8 ++++---- pages.ko/common/pamstack.md | 2 +- pages.ko/common/pamtogif.md | 4 ++-- pages.ko/common/pamtopam.md | 2 +- pages.ko/common/pamtopng.md | 6 +++--- pages.ko/common/pamtopnm.md | 2 +- pages.ko/common/pamtotga.md | 2 +- pages.ko/common/pamtotiff.md | 2 +- pages.ko/common/pamtouil.md | 2 +- pages.ko/common/pamtowinicon.md | 4 ++-- pages.nl/common/pamshadedrelief.md | 2 +- pages.nl/common/pamslice.md | 8 ++++---- pages.nl/common/pamtogif.md | 4 ++-- pages.nl/common/pamtopng.md | 6 +++--- pages.nl/common/pamtopnm.md | 2 +- pages.nl/common/pamtotga.md | 2 +- pages.nl/common/pamtotiff.md | 2 +- pages.nl/common/pamtouil.md | 2 +- pages.nl/common/pamtowinicon.md | 4 ++-- 26 files changed, 47 insertions(+), 47 deletions(-) diff --git a/pages.es/common/pamslice.md b/pages.es/common/pamslice.md index fcca403121..663b47d9e4 100644 --- a/pages.es/common/pamslice.md +++ b/pages.es/common/pamslice.md @@ -5,16 +5,16 @@ - Imprime los valores de los píxeles de la n-ésima fila en una tabla: -`pamslice -row {{n}} {{ruta/a/imagen.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{ruta/a/imagen.pam}}` - Imprime los valores de los píxeles de la n-ésima columna de una tabla: -`pamslice -column {{n}} {{ruta/a/imagen.pam}}` +`pamslice {{[-c|-column]}} {{n}} {{ruta/a/imagen.pam}}` - Considera solo el m-ésimo plano de la imagen de entrada: -`pamslice -row {{n}} -plane {{m}} {{ruta/a/imagen.pam}}` +`pamslice {{[-r|-row]}} {{n}} -plane {{m}} {{ruta/a/imagen.pam}}` - Produce la salida en un formato adecuado para la entrada a un `xmgr` para la visualización: -`pamslice -row {{n}} -xmgr {{ruta/a/imagen.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{[-x|-xmgr]}} {{ruta/a/imagen.pam}}` diff --git a/pages.es/common/pamtogif.md b/pages.es/common/pamtogif.md index de4abb157e..54155901e5 100644 --- a/pages.es/common/pamtogif.md +++ b/pages.es/common/pamtogif.md @@ -10,8 +10,8 @@ - Marca el color especificado como transparente en el archivo GIF de salida: -`pamtogif -transparent {{color}} {{ruta/a/imagen.pam}} > {{ruta/a/imagen_de_salida.gif}}` +`pamtogif {{[-t|-transparent]}} {{color}} {{ruta/a/imagen.pam}} > {{ruta/a/imagen_de_salida.gif}}` - Incluye el texto especificado como comentario en el archivo GIF de salida: -`pamtogif -comment "{{¡Hola Mundo!}}" {{ruta/a/imagen.pam}} > {{ruta/a/imagen_de_salida.gif}}` +`pamtogif {{[-c|-comment]}} "{{¡Hola Mundo!}}" {{ruta/a/imagen.pam}} > {{ruta/a/imagen_de_salida.gif}}` diff --git a/pages.es/common/pamtopnm.md b/pages.es/common/pamtopnm.md index 87edbe0748..7346283063 100644 --- a/pages.es/common/pamtopnm.md +++ b/pages.es/common/pamtopnm.md @@ -9,4 +9,4 @@ - Muestra la versión: -`pamtopnm -version` +`pamtopnm {{[-v|-version]}}` diff --git a/pages.es/common/pamtouil.md b/pages.es/common/pamtouil.md index 8895cf24c8..177bcdbf0f 100644 --- a/pages.es/common/pamtouil.md +++ b/pages.es/common/pamtouil.md @@ -9,4 +9,4 @@ - Especifique una cadena de prefijo que se imprimirá en el archivo UIL de salida: -`pamtouil -name {{nombre_uil}} {{ruta/a/entrada.[pnm|pam]}} > {{ruta/a/salida.uil}}` +`pamtouil {{[-n|-name]}} {{nombre_uil}} {{ruta/a/entrada.[pnm|pam]}} > {{ruta/a/salida.uil}}` diff --git a/pages.ko/common/pamdeinterlace.md b/pages.ko/common/pamdeinterlace.md index e971e37419..8ac40a0082 100644 --- a/pages.ko/common/pamdeinterlace.md +++ b/pages.ko/common/pamdeinterlace.md @@ -10,4 +10,4 @@ - 입력 이미지의 홀수 행으로 구성된 이미지 생성: -`pamdeinterlace -takeodd {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pamdeinterlace {{[-takeo|-takeodd]}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` diff --git a/pages.ko/common/pamixer.md b/pages.ko/common/pamixer.md index c8fbd4c782..dd7dcda330 100644 --- a/pages.ko/common/pamixer.md +++ b/pages.ko/common/pamixer.md @@ -1,7 +1,7 @@ # pamixer > PulseAudio를 위한 간단한 커맨드라인 믹서. -> 더 많은 정보: . +> 더 많은 정보: . - 모든 싱크 및 소스를 해당 ID와 함께 나열: @@ -17,11 +17,11 @@ - 기본 싱크의 볼륨을 5% 증가: -`pamixer --increase {{5}}` +`pamixer {{[-i|--increase]}} {{5}}` - 소스의 볼륨을 5% 감소: -`pamixer --decrease {{5}} --source {{ID}}` +`pamixer {{[-d|--decrease]}} {{5}} --source {{ID}}` - 100% 이상으로 볼륨을 증가, 감소 또는 설정하기 위해 부스트 허용 옵션 사용: @@ -29,4 +29,4 @@ - 기본 싱크 음소거 (`--unmute`를 사용하여 음소거 해제 가능): -`pamixer --mute` +`pamixer {{[-m|--mute]}}` diff --git a/pages.ko/common/pamshadedrelief.md b/pages.ko/common/pamshadedrelief.md index 1c4ef060bb..c52a284fdc 100644 --- a/pages.ko/common/pamshadedrelief.md +++ b/pages.ko/common/pamshadedrelief.md @@ -10,4 +10,4 @@ - 지정된 계수로 이미지 감마 조정: -`pamshadedrelief -gamma {{계수}} < {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamshadedrelief {{[-g|-gamma]}} {{계수}} < {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamslice.md b/pages.ko/common/pamslice.md index 12ea2b7970..ee8703677d 100644 --- a/pages.ko/common/pamslice.md +++ b/pages.ko/common/pamslice.md @@ -5,16 +5,16 @@ - n번째 행의 픽셀 값을 테이블 형식으로 출력: -`pamslice -row {{n}} {{경로/대상/이미지.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{경로/대상/이미지.pam}}` - n번째 열의 픽셀 값을 테이블 형식으로 출력: -`pamslice -column {{n}} {{경로/대상/이미지.pam}}` +`pamslice {{[-c|-column]}} {{n}} {{경로/대상/이미지.pam}}` - 입력 이미지의 m번째 평면만 고려: -`pamslice -row {{n}} -plane {{m}} {{경로/대상/이미지.pam}}` +`pamslice {{[-r|-row]}} {{n}} -plane {{m}} {{경로/대상/이미지.pam}}` - 시각화를 위한 `xmgr` 입력 형식으로 출력 생성: -`pamslice -row {{n}} -xmgr {{경로/대상/이미지.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{[-x|-xmgr]}} {{경로/대상/이미지.pam}}` diff --git a/pages.ko/common/pamstack.md b/pages.ko/common/pamstack.md index 2c056a8b86..e67024cb79 100644 --- a/pages.ko/common/pamstack.md +++ b/pages.ko/common/pamstack.md @@ -9,4 +9,4 @@ - 출력 PAM 파일의 튜플 타입 이름 지정 (최대 255자): -`pamstack -tupletype {{튜플_타입}} {{경로/대상/이미지1.pam 경로/대상/이미지2.pam ...}} > {{경로/대상/출력.pam}}` +`pamstack {{[-t|-tupletype]}} {{튜플_타입}} {{경로/대상/이미지1.pam 경로/대상/이미지2.pam ...}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pamtogif.md b/pages.ko/common/pamtogif.md index 914c1820ff..1cb3d2839e 100644 --- a/pages.ko/common/pamtogif.md +++ b/pages.ko/common/pamtogif.md @@ -10,8 +10,8 @@ - 출력 GIF 파일에서 지정한 색상을 투명하게 설정: -`pamtogif -transparent {{색상}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.gif}}` +`pamtogif {{[-t|-transparent]}} {{색상}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.gif}}` - 출력 GIF 파일에 지정한 텍스트를 주석으로 포함: -`pamtogif -comment "{{Hello World!}}" {{경로/대상/이미지.pam}} > {{경로/대상/출력.gif}}` +`pamtogif {{[-c|-comment]}} "{{Hello World!}}" {{경로/대상/이미지.pam}} > {{경로/대상/출력.gif}}` diff --git a/pages.ko/common/pamtopam.md b/pages.ko/common/pamtopam.md index b1c3d4c761..a998fe11ab 100644 --- a/pages.ko/common/pamtopam.md +++ b/pages.ko/common/pamtopam.md @@ -9,4 +9,4 @@ - 버전 표시: -`pamtopam -version` +`pamtopam {{[-v|-version]}}` diff --git a/pages.ko/common/pamtopng.md b/pages.ko/common/pamtopng.md index 75829c8b56..76f0ac75ba 100644 --- a/pages.ko/common/pamtopng.md +++ b/pages.ko/common/pamtopng.md @@ -10,12 +10,12 @@ - 출력 이미지에서 지정된 색상을 투명하게 표시: -`pamtopng -transparent {{색상}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` +`pamtopng {{[-t|-transparent]}} {{색상}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` - 지정된 파일의 텍스트를 출력물에 tEXt 청크로 포함: -`pamtopng -text {{경로/대상/파일.txt}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` +`pamtopng {{[-te|-text]}} {{경로/대상/파일.txt}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` - 출력 파일을 Adam7 형식으로 인터레이스 처리: -`pamtopng -interlace {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` +`pamtopng {{[-in|-interlace]}} {{경로/대상/이미지.pam}} > {{경로/대상/출력.png}}` diff --git a/pages.ko/common/pamtopnm.md b/pages.ko/common/pamtopnm.md index e5622b2901..827ad9828e 100644 --- a/pages.ko/common/pamtopnm.md +++ b/pages.ko/common/pamtopnm.md @@ -9,4 +9,4 @@ - 버전 표시: -`pamtopnm -version` +`pamtopnm {{[-v|-version]}}` diff --git a/pages.ko/common/pamtotga.md b/pages.ko/common/pamtotga.md index 4c9289bcb1..caccb7dba9 100644 --- a/pages.ko/common/pamtotga.md +++ b/pages.ko/common/pamtotga.md @@ -13,4 +13,4 @@ - 버전 표시: -`pamtotga -version` +`pamtotga {{[-v|-version]}}` diff --git a/pages.ko/common/pamtotiff.md b/pages.ko/common/pamtotiff.md index b2b9d87ba2..13a778c2b7 100644 --- a/pages.ko/common/pamtotiff.md +++ b/pages.ko/common/pamtotiff.md @@ -13,4 +13,4 @@ - 입력 이미지가 그레이스케일일지라도 항상 컬러 TIFF 이미지를 생성: -`pamtotiff -color {{경로/대상/입력_파일.pam}} > {{경로/대상/출력_파일.tiff}}` +`pamtotiff {{[-c|-color]}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력_파일.tiff}}` diff --git a/pages.ko/common/pamtouil.md b/pages.ko/common/pamtouil.md index 74e4a30b78..44b5ed4004 100644 --- a/pages.ko/common/pamtouil.md +++ b/pages.ko/common/pamtouil.md @@ -9,4 +9,4 @@ - 출력 UIL 파일에 출력할 접두사 문자열 지정: -`pamtouil -name {{uil이름}} {{경로/대상/입력.pnm|pam}} > {{경로/대상/출력.uil}}` +`pamtouil {{[-n|-name]}} {{uil이름}} {{경로/대상/입력.pnm|pam}} > {{경로/대상/출력.uil}}` diff --git a/pages.ko/common/pamtowinicon.md b/pages.ko/common/pamtowinicon.md index 427ebc02dd..10ba0d88c4 100644 --- a/pages.ko/common/pamtowinicon.md +++ b/pages.ko/common/pamtowinicon.md @@ -9,8 +9,8 @@ - 해상도가 {{t}}보다 작은 이미지는 BMP 형식으로, 그 외 이미지는 PNG 형식으로 인코딩: -`pamtowinicon -pngthreshold {{t}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력.ico}}` +`pamtowinicon {{[-pn|-pngthreshold]}} {{t}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력.ico}}` - 불투명하지 않은 영역 외의 모든 픽셀을 검정색으로 설정: -`pamtowinicon -truetransparent {{경로/대상/입력_파일.pam}} > {{경로/대상/출력.ico}}` +`pamtowinicon {{[-t|-truetransparent]}} {{경로/대상/입력_파일.pam}} > {{경로/대상/출력.ico}}` diff --git a/pages.nl/common/pamshadedrelief.md b/pages.nl/common/pamshadedrelief.md index 34ea286f7a..6cf615dda3 100644 --- a/pages.nl/common/pamshadedrelief.md +++ b/pages.nl/common/pamshadedrelief.md @@ -10,4 +10,4 @@ - Pas de gamma aan van een afbeelding met de gespecificeerde factor: -`pamshadedrelief -gamma {{factor}} < {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamshadedrelief {{[-g|-gamma]}} {{factor}} < {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/pamslice.md b/pages.nl/common/pamslice.md index 33062ef498..2683384d82 100644 --- a/pages.nl/common/pamslice.md +++ b/pages.nl/common/pamslice.md @@ -5,16 +5,16 @@ - Toon de waarden van de pixels in de opgegeven rij in een tabel: -`pamslice -row {{n}} {{pad/naar/afbeelding.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{pad/naar/afbeelding.pam}}` - Toon de waarden van de pixels in de opgegeven kolom in een tabel: -`pamslice -column {{n}} {{pad/naar/afbeelding.pam}}` +`pamslice {{[-c|-column]}} {{n}} {{pad/naar/afbeelding.pam}}` - Beschouw alleen het opgegeven vlak (m) van de invoer-afbeelding: -`pamslice -row {{n}} -plane {{m}} {{pad/naar/afbeelding.pam}}` +`pamslice {{[-r|-row]}} {{n}} -plane {{m}} {{pad/naar/afbeelding.pam}}` - Produceer uitvoer in een formaat dat geschikt is voor invoer naar een `xmgr` voor visualisatie: -`pamslice -row {{n}} -xmgr {{pad/naar/afbeelding.pam}}` +`pamslice {{[-r|-row]}} {{n}} {{[-x|-xmgr]}} {{pad/naar/afbeelding.pam}}` diff --git a/pages.nl/common/pamtogif.md b/pages.nl/common/pamtogif.md index eed73bd4e9..c0dce6a002 100644 --- a/pages.nl/common/pamtogif.md +++ b/pages.nl/common/pamtogif.md @@ -10,8 +10,8 @@ - Markeer de gespecificeerde kleur als transparent in het uitvoer GIF bestand: -`pamtogif -transparent {{kleur}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.gif}}` +`pamtogif {{[-t|-transparent]}} {{kleur}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.gif}}` - Voeg de gespecificeerde tekst toe als commentaar in het uitvoer GIF bestand: -`pamtogif -comment "{{Hallo Wereld!}}" {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.gif}}` +`pamtogif {{[-c|-comment]}} "{{Hallo Wereld!}}" {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.gif}}` diff --git a/pages.nl/common/pamtopng.md b/pages.nl/common/pamtopng.md index 02d15c91cc..bbcb2e497a 100644 --- a/pages.nl/common/pamtopng.md +++ b/pages.nl/common/pamtopng.md @@ -10,12 +10,12 @@ - Markeer de gespecificeerde kleur als transparent in de uitvoer-afbeelding: -`pamtopng -transparent {{kleur}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` +`pamtopng {{[-t|-transparent]}} {{kleur}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` - Voeg de tekst in gespecificeerde bestand toe als tEXt chunks in de uitvoer: -`pamtopng -text {{pad/naar/bestand.txt}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` +`pamtopng {{[-te|-text]}} {{pad/naar/bestand.txt}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` - Zorg ervoor dat het uitvoerbestand geïnterlaced is in Adam7-formaat: -`pamtopng -interlace {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` +`pamtopng {{[-in|-interlace]}} {{pad/naar/afbeelding.pam}} > {{pad/naar/uitvoer.png}}` diff --git a/pages.nl/common/pamtopnm.md b/pages.nl/common/pamtopnm.md index 7eb2823e7f..aae6591500 100644 --- a/pages.nl/common/pamtopnm.md +++ b/pages.nl/common/pamtopnm.md @@ -9,4 +9,4 @@ - Toon de versie: -`pamtopnm -version` +`pamtopnm {{[-v|-version]}}` diff --git a/pages.nl/common/pamtotga.md b/pages.nl/common/pamtotga.md index cccd3f7b94..d559393a33 100644 --- a/pages.nl/common/pamtotga.md +++ b/pages.nl/common/pamtotga.md @@ -13,4 +13,4 @@ - Toon de versie: -`pamtotga -version` +`pamtotga {{[-v|-version]}}` diff --git a/pages.nl/common/pamtotiff.md b/pages.nl/common/pamtotiff.md index bb49f80e03..fdb6e9fc66 100644 --- a/pages.nl/common/pamtotiff.md +++ b/pages.nl/common/pamtotiff.md @@ -13,4 +13,4 @@ - Produceer altijd een gekleurde TIFF afbeelding, ook als de invoer afbeelding een grijsschaal is: -`pamtotiff -color {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer_bestand.tiff}}` +`pamtotiff {{[-c|-color]}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer_bestand.tiff}}` diff --git a/pages.nl/common/pamtouil.md b/pages.nl/common/pamtouil.md index 7b7ea7ddc4..6fd2fb6810 100644 --- a/pages.nl/common/pamtouil.md +++ b/pages.nl/common/pamtouil.md @@ -9,4 +9,4 @@ - Specificeer een voorvoegsel dat in het uitvoer-UIL-bestand moet worden afgedrukt: -`pamtouil -name {{uilname}} {{pad/naar/invoer.pnm|pam}} > {{pad/naar/uitvoer.uil}}` +`pamtouil {{[-n|-name]}} {{uilname}} {{pad/naar/invoer.pnm|pam}} > {{pad/naar/uitvoer.uil}}` diff --git a/pages.nl/common/pamtowinicon.md b/pages.nl/common/pamtowinicon.md index cd38e82d8c..3e19cfbfce 100644 --- a/pages.nl/common/pamtowinicon.md +++ b/pages.nl/common/pamtowinicon.md @@ -9,8 +9,8 @@ - Encodeer afbeeldingen met resoluties kleiner dan t in het BMP formaat en alle andere afbeeldingen in het PNG formaat: -`pamtowinicon -pngthreshold {{t}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer.ico}}` +`pamtowinicon {{[-pn|-pngthreshold]}} {{t}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer.ico}}` - Maak alle pixels buiten het doorzichtige vlak zwart: -`pamtowinicon -truetransparent {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer.ico}}` +`pamtowinicon {{[-t|-truetransparent]}} {{pad/naar/invoer_bestand.pam}} > {{pad/naar/uitvoer.ico}}` From 4fd9ddd0774a0796f06552aae8ceb7809cb14d04 Mon Sep 17 00:00:00 2001 From: Daisuke Akagawa Date: Tue, 3 Jun 2025 01:51:20 +0900 Subject: [PATCH 112/141] claude: add page and Japanese translation (#16693) Co-authored-by: Fazle Arefin Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --- pages.ja/common/claude.md | 24 ++++++++++++++++++++++++ pages/common/claude.md | 24 ++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 pages.ja/common/claude.md create mode 100644 pages/common/claude.md diff --git a/pages.ja/common/claude.md b/pages.ja/common/claude.md new file mode 100644 index 0000000000..bcf01e39a8 --- /dev/null +++ b/pages.ja/common/claude.md @@ -0,0 +1,24 @@ +# claude + +> コードベースを理解し、自然言語コマンドを通じてより速くコーディングできるようサポートするエージェント型コーディングツールです。 +> もっと詳しく: 。 + +- プロンプトを指定して実行する: + +`claude prompt` + +- `claude`を更新する: + +`claude update` + +- 設定されたMCPサーバ一覧を取得する: + +`claude mcp list` + +- 一つのコミットでコマンドを作成: + +`claude commit` + +- 設定を取得する: + +`claude config list` diff --git a/pages/common/claude.md b/pages/common/claude.md new file mode 100644 index 0000000000..5c5e9e48b8 --- /dev/null +++ b/pages/common/claude.md @@ -0,0 +1,24 @@ +# claude + +> An agent-based coding tool that understands your code base and helps you code faster through natural language commands. +> More information: . + +- Execute with prompt: + +`claude prompt` + +- Update `claude`: + +`claude update` + +- Get the list of specified MCP servers: + +`claude mcp list` + +- Create commit with command: + +`claude commit` + +- Get the list of configurations: + +`claude config list` From 2d0f2d0b5967014b33abfb0be3a0b19e4f37ee41 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Mon, 2 Jun 2025 18:51:32 +0200 Subject: [PATCH 113/141] !: consistent page title and filename (#16725) --- .markdownlint.json | 1 + pages.bn/common/!.md | 2 +- pages.de/common/!.md | 2 +- pages.es/common/!.md | 2 +- pages.hi/common/!.md | 2 +- pages.id/common/!.md | 2 +- pages.it/common/!.md | 2 +- pages.ko/common/!.md | 2 +- pages.nl/common/!.md | 2 +- pages.pl/common/!.md | 2 +- pages.pt_BR/common/!.md | 2 +- pages.zh/common/!.md | 2 +- pages/common/!.md | 2 +- scripts/wrong-filename.sh | 2 +- 14 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.markdownlint.json b/.markdownlint.json index 3dd7a5e590..1d2884a77b 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -3,6 +3,7 @@ "MD003": { "style": "atx" }, "MD007": { "indent": 4 }, "MD013": { "line_length": 250 }, + "MD026": false, "MD029": false, "MD033": false, "MD034": false, diff --git a/pages.bn/common/!.md b/pages.bn/common/!.md index 0984c5f63a..1da8b6f200 100644 --- a/pages.bn/common/!.md +++ b/pages.bn/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > ইতিহাসে পেয়ে যাওয়া কমান্ড দিয়ে বিকল্প বাছানোর জন্য ব্যবহৃত ব্যাশ শেলে পুনর্নির্মিত। > আরও তথ্য পাবেন: । diff --git a/pages.de/common/!.md b/pages.de/common/!.md index bcb99ac7cc..fa09a86208 100644 --- a/pages.de/common/!.md +++ b/pages.de/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Ein in Bash integriertes Kommando, welches durch einen Befehl aus dem Befehlsverlauf ersetzt wird. > Weitere Informationen: . diff --git a/pages.es/common/!.md b/pages.es/common/!.md index 8797e5b507..35d27d83a3 100644 --- a/pages.es/common/!.md +++ b/pages.es/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Bash incorporado para sustituir con un comando encontrado en la historia. > Más información: . diff --git a/pages.hi/common/!.md b/pages.hi/common/!.md index beb139df1f..64757c64aa 100644 --- a/pages.hi/common/!.md +++ b/pages.hi/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > इतिहास में पाए गए कमांड के साथ विकल्प करने के लिए बैश शेल में अंतर्निर्मित। > अधिक जानकारी: । diff --git a/pages.id/common/!.md b/pages.id/common/!.md index 4606c120c8..dccf0e2f34 100644 --- a/pages.id/common/!.md +++ b/pages.id/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Digunakan pada Bash sebagai pengganti perintah yang sebelumnya dieksekusikan. > Informasi lebih lanjut: . diff --git a/pages.it/common/!.md b/pages.it/common/!.md index 84bca4dee0..541c8e5e2c 100644 --- a/pages.it/common/!.md +++ b/pages.it/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Comando bash integrato per sostituire con un comando trovato nella cronologia. > Maggiori informazioni: . diff --git a/pages.ko/common/!.md b/pages.ko/common/!.md index c202c83e7b..0a4962c791 100644 --- a/pages.ko/common/!.md +++ b/pages.ko/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > 히스토리 명령에서 찾은 명령어로 대체하기 위해 Bash가 내장. > 더 많은 정보: . diff --git a/pages.nl/common/!.md b/pages.nl/common/!.md index 43c728d26c..9657edac62 100644 --- a/pages.nl/common/!.md +++ b/pages.nl/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Ingebouwd in Bash om te vervangen met een commando in de geschiedenis. > Meer informatie: . diff --git a/pages.pl/common/!.md b/pages.pl/common/!.md index 60f89298f8..1da265a8d9 100644 --- a/pages.pl/common/!.md +++ b/pages.pl/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Polecenie wbudowane w Bash do zastępowania komendą znalezioną w historii. > Więcej informacji: . diff --git a/pages.pt_BR/common/!.md b/pages.pt_BR/common/!.md index ae5456e779..71f56de572 100644 --- a/pages.pt_BR/common/!.md +++ b/pages.pt_BR/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Mecanismo interno do bash para substituir por um comando existente no histórico. > Mais informações: . diff --git a/pages.zh/common/!.md b/pages.zh/common/!.md index da6e1fe135..726c755f9a 100644 --- a/pages.zh/common/!.md +++ b/pages.zh/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Bash 内置命令,用于替换历史记录中找到的命令。 > 更多信息:. diff --git a/pages/common/!.md b/pages/common/!.md index bf31088396..271ba4eda5 100644 --- a/pages/common/!.md +++ b/pages/common/!.md @@ -1,4 +1,4 @@ -# Exclamation mark +# ! > Reuse and expand the shell history in `sh`, Bash, Zsh, `rbash` and `ksh`. > More information: . diff --git a/scripts/wrong-filename.sh b/scripts/wrong-filename.sh index 78b0779a3c..b2e4fdbd1b 100755 --- a/scripts/wrong-filename.sh +++ b/scripts/wrong-filename.sh @@ -10,7 +10,7 @@ OUTPUT_FILE="inconsistent-filenames.txt" rm -f "$OUTPUT_FILE" touch "$OUTPUT_FILE" -IGNORE_LIST=("caret" "comma" "curly brace" "dollar sign" "dot" "exclamation mark" "jc.json" "tilde" "percent sign" "qm move disk" "umount" "rename" "pacman d" "pacman f" "pacman q" "pacman r" "pacman s" "pacman t" "pacman u" "parted" "print.runmailcap" "print.win") +IGNORE_LIST=("caret" "comma" "curly brace" "dollar sign" "dot" "jc.json" "tilde" "percent sign" "qm move disk" "umount" "rename" "pacman d" "pacman f" "pacman q" "pacman r" "pacman s" "pacman t" "pacman u" "parted" "print.runmailcap" "print.win") set -e From eb7eef4e217a8794b1d6062f8fc500b1cd7eeacb Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Mon, 2 Jun 2025 21:57:53 +0000 Subject: [PATCH 114/141] pages.nl/common/s*: update Dutch translation (#16719) --- pages.nl/common/shred.md | 14 +++++++------- pages.nl/common/shuf.md | 6 +++--- pages.nl/common/split.md | 8 ++++---- pages.nl/common/stat.md | 10 +++++----- pages.nl/common/stdbuf.md | 6 +++--- pages.nl/common/strings.md | 6 +++--- 6 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pages.nl/common/shred.md b/pages.nl/common/shred.md index 6dc5820719..d69f51b9c1 100644 --- a/pages.nl/common/shred.md +++ b/pages.nl/common/shred.md @@ -9,20 +9,20 @@ - Overschrijf een bestand en toon de voortgang op het scherm: -`shred --verbose {{pad/naar/bestand}}` +`shred {{[-v|--verbose]}} {{pad/naar/bestand}}` -- Overschrijf een bestand, waarbij [z]ero's in plaats van willekeurige gegevens worden achtergelaten: +- Overschrijf een bestand, waarbij nullen in plaats van willekeurige gegevens worden achtergelaten: -`shred --zero {{pad/naar/bestand}}` +`shred {{[-z|--zero]}} {{pad/naar/bestand}}` -- Overschrijf een bestand een specifiek aa[n]tal keren: +- Overschrijf een bestand een specifiek aantal keren: -`shred --iterations {{25}} {{pad/naar/bestand}}` +`shred {{[-n|--iterations]}} {{25}} {{pad/naar/bestand}}` - Overschrijf een bestand en verwijder het: `shred --remove {{pad/naar/bestand}}` -- Overschrijf een bestand 100 keer, voeg een laatste overschrijving met [z]ero's toe, verwijder het bestand na overschrijven en toon [v]erbose voortgang op het scherm: +- Overschrijf een bestand 100 keer, voeg een laatste overschrijving met nullen toe, verwijder het bestand na overschrijven en toon verbose voortgang op het scherm: -`shred -vzun 100 {{pad/naar/bestand}}` +`shred {{[-vzun|--verbose --zero --remove --iterations]}} 100 {{pad/naar/bestand}}` diff --git a/pages.nl/common/shuf.md b/pages.nl/common/shuf.md index 49b462da55..7c4351e900 100644 --- a/pages.nl/common/shuf.md +++ b/pages.nl/common/shuf.md @@ -9,12 +9,12 @@ - Toon alleen de eerste 5 regels van het resultaat: -`shuf --head-count=5 {{pad/naar/bestand}}` +`shuf {{[-n|--head-count]}} 5 {{pad/naar/bestand}}` - Schrijf de uitvoer naar een ander bestand: -`shuf {{pad/naar/invoer_bestand}} --output={{pad/naar/uitvoer_bestand}}` +`shuf {{pad/naar/invoer_bestand}} {{[-o|--output]}} {{pad/naar/uitvoer_bestand}}` - Genereer 3 willekeurige getallen in het bereik van 1 tot 10 (inclusief): -`shuf --head-count=3 --input-range=1-10 --repeat` +`shuf {{[-n|--head-count]}} 3 {{[-i|--input-range]}} 1-10 {{[-r|--repeat]}}` diff --git a/pages.nl/common/split.md b/pages.nl/common/split.md index a086844dbf..89b42967ba 100644 --- a/pages.nl/common/split.md +++ b/pages.nl/common/split.md @@ -5,16 +5,16 @@ - Split een bestand, elk deel heeft 10 regels (behalve het laatste deel): -`split -l 10 {{pad/naar/bestand}}` +`split {{[-l|--lines]}} 10 {{pad/naar/bestand}}` - Split een bestand in 5 bestanden. Het bestand wordt zo gesplitst dat elk deel dezelfde grootte heeft (behalve het laatste deel): -`split -n 5 {{pad/naar/bestand}}` +`split {{[-n|--number]}} 5 {{pad/naar/bestand}}` - Split een bestand met 512 bytes in elk deel (behalve het laatste deel; gebruik 512k voor kilobytes en 512m voor megabytes): -`split -b 512 {{pad/naar/bestand}}` +`split {{[-b|--bytes]}} 512 {{pad/naar/bestand}}` - Splits een bestand met maximaal 512 bytes in elk deel zonder regels te breken: -`split -C 512 {{pad/naar/bestand}}` +`split {{[-C|--line-bytes]}} 512 {{pad/naar/bestand}}` diff --git a/pages.nl/common/stat.md b/pages.nl/common/stat.md index 25e30ba666..64830fedc0 100644 --- a/pages.nl/common/stat.md +++ b/pages.nl/common/stat.md @@ -9,20 +9,20 @@ - Toon eigenschappen van een specifiek bestand zoals grootte, permissies, aanmaak- en toegangsdatums en meer zonder labels: -`stat --terse {{pad/naar/bestand}}` +`stat {{[-t|--terse]}} {{pad/naar/bestand}}` - Toon informatie over het bestandssysteem waar een specifiek bestand zich bevindt: -`stat --file-system {{pad/naar/bestand}}` +`stat {{[-f|--file-system]}} {{pad/naar/bestand}}` - Toon alleen octale bestandspermissies: -`stat --format="%a %n" {{pad/naar/bestand}}` +`stat {{[-c|--format]}} "%a %n" {{pad/naar/bestand}}` - Toon de eigenaar en groep van een specifiek bestand: -`stat --format="%U %G" {{pad/naar/bestand}}` +`stat {{[-c|--format]}} "%U %G" {{pad/naar/bestand}}` - Toon de grootte van een specifiek bestand in bytes: -`stat --format="%s %n" {{pad/naar/bestand}}` +`stat {{[-c|--format]}} "%s %n" {{pad/naar/bestand}}` diff --git a/pages.nl/common/stdbuf.md b/pages.nl/common/stdbuf.md index be87e02373..5ebba73208 100644 --- a/pages.nl/common/stdbuf.md +++ b/pages.nl/common/stdbuf.md @@ -5,12 +5,12 @@ - Verander de buffer grootte van `stdin` naar 512 KiB: -`stdbuf --input=512K {{commando}}` +`stdbuf {{[-i|--input]}} 512K {{commando}}` - Verander de buffer van `stdout` naar lijn-buffering: -`stdbuf --output=L {{commando}}` +`stdbuf {{[-o|--output]}} L {{commando}}` - Verander de buffer van `stderr` naar ongebufferd: -`stdbuf --error=0 {{commando}}` +`stdbuf {{[-e|--error]}} 0 {{commando}}` diff --git a/pages.nl/common/strings.md b/pages.nl/common/strings.md index 9dd56a8080..0b086cd9e2 100644 --- a/pages.nl/common/strings.md +++ b/pages.nl/common/strings.md @@ -9,12 +9,12 @@ - Limiteer resultaten van strings met minimaal n karakters lang: -`strings -n {{n}} {{pad/naar/bestand}}` +`strings {{[-n|--bytes]}} {{n}} {{pad/naar/bestand}}` - Prefix ieder resultaat met de offset in het bestand: -`strings -t d {{pad/naar/bestand}}` +`strings {{[-t|--radix]}} d {{pad/naar/bestand}}` - Prefix ieder resultaat met de offset in het bestand als hexadecimaal: -`strings -t x {{pad/naar/bestand}}` +`strings {{[-t|--radix]}} x {{pad/naar/bestand}}` From c27345cb7ac7c88d4244ea41755f018765701340 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Tue, 3 Jun 2025 06:14:17 +0300 Subject: [PATCH 115/141] modinfo: add version fetch (#16728) --- pages/linux/modinfo.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/modinfo.md b/pages/linux/modinfo.md index 8d4f7e0677..c2bc01ad32 100644 --- a/pages/linux/modinfo.md +++ b/pages/linux/modinfo.md @@ -10,4 +10,4 @@ - List the specified attribute only: -`modinfo {{[-F|--field]}} {{author|description|license|parm|filename}} {{kernel_module}}` +`modinfo {{[-F|--field]}} {{author|description|license|parm|filename|version|...}} {{kernel_module}}` From 204f2a34e998e14e42691f1e3b9a366df5b7eef8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:24:16 +0200 Subject: [PATCH 116/141] udevadm: update link (#16727) Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages.ko/linux/udevadm.md | 2 +- pages/linux/udevadm.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pages.ko/linux/udevadm.md b/pages.ko/linux/udevadm.md index dbeeed745d..d3288c6a8a 100644 --- a/pages.ko/linux/udevadm.md +++ b/pages.ko/linux/udevadm.md @@ -1,7 +1,7 @@ # udevadm > Linux `udev` 관리 도구. -> 더 많은 정보: . +> 더 많은 정보: . - 모든 장치 이벤트 모니터링: diff --git a/pages/linux/udevadm.md b/pages/linux/udevadm.md index 6a647e9300..7b818b21a6 100644 --- a/pages/linux/udevadm.md +++ b/pages/linux/udevadm.md @@ -1,7 +1,7 @@ # udevadm > Linux `udev` management tool. -> More information: . +> More information: . - Monitor all device events: From a54fe9f459153ccc8aa1f6a39ede4c950f270935 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:25:49 +0200 Subject: [PATCH 117/141] jenv: update link (#16726) --- pages.ko/common/jenv.md | 2 +- pages.zh/common/jenv.md | 2 +- pages/common/jenv.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages.ko/common/jenv.md b/pages.ko/common/jenv.md index b6a8d3e2fc..af0071e73c 100644 --- a/pages.ko/common/jenv.md +++ b/pages.ko/common/jenv.md @@ -1,7 +1,7 @@ # jenv > "JAVA_HOME" 환경 변수를 관리. -> 더 많은 정보: . +> 더 많은 정보: . - Java 버전을 jEnv에 추가: diff --git a/pages.zh/common/jenv.md b/pages.zh/common/jenv.md index 5ad3c7fa30..5c667d9ce2 100644 --- a/pages.zh/common/jenv.md +++ b/pages.zh/common/jenv.md @@ -1,7 +1,7 @@ # jenv > 管理”JAVA_HOME“环境变量的命令行工具。 -> 更多信息:. +> 更多信息:. - 向 jEnv 添加一个 Java 版本: diff --git a/pages/common/jenv.md b/pages/common/jenv.md index fa101ddca4..ecd026adac 100644 --- a/pages/common/jenv.md +++ b/pages/common/jenv.md @@ -1,7 +1,7 @@ # jenv > Manage the "JAVA_HOME" environment variable. -> More information: . +> More information: . - Add a Java version to jEnv: From 0c25e4409251db721832a5962b176ae5231d8a8d Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:28:25 +0200 Subject: [PATCH 118/141] rustscan: update translations (#16690) --- pages.es/common/rustscan.md | 24 ++++++++++++------------ pages.ko/common/rustscan.md | 26 +++++++++++++------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pages.es/common/rustscan.md b/pages.es/common/rustscan.md index d0332a39b4..49268a68fe 100644 --- a/pages.es/common/rustscan.md +++ b/pages.es/common/rustscan.md @@ -1,36 +1,36 @@ # rustscan > Escáner de puertos rápido, escrito en Rust integrado con `nmap`. -> Más información: . +> Más información: . - Escanea todos los puertos de una o más direcciones delimitadas por comas usando los valores predeterminados: -`rustscan --addresses {{ip_o_nombrehost}}` +`rustscan {{[-a|--addresses]}} {{ip_o_nombrehost}}` -- Escanea los [t]op 1000 puertos con detección de servicio y versión: +- Escanea los top 1000 puertos con detección de servicio y versión: -`rustscan --top --addresses {{dirección_o_direcciones}}` +`rustscan --top {{[-a|--addresses]}} {{dirección_o_direcciones}}` -- Escanea una lista específica de [p]uertos: +- Escanea una lista específica de puertos: -`rustscan --ports {{puerto1,puerto2,...,puertoN}} --addresses {{dirección_o_direcciones}}` +`rustscan {{[-p|--ports]}} {{puerto1,puerto2,...,puertoN}} {{[-a|--addresses]}} {{dirección_o_direcciones}}` - Escanea un rango específico de puertos: -`rustscan --range {{inicio-fin}} --addresses {{dirección_o_direcciones}}` +`rustscan {{[-r|--range]}} {{inicio}}-{{fin}} {{[-a|--addresses]}} {{dirección_o_direcciones}}` - Añade argumentos de script a `nmap`: -`rustscan --addresses {{dirección_o_direcciones}} -- -A -sC` +`rustscan {{[-a|--addresses]}} {{dirección_o_direcciones}} -- -O {{[-sC|--script=default]}}` -- Escanea con un tamaño de lote ([b]atch) (por defecto: 4500) y [t]iempo de espera personalizado (por defecto: 1500ms): +- Escanea con un tamaño de lote (por defecto: 4500) y tiempo de espera personalizado (por defecto: 1500ms): -`rustscan --batch-size {{tamaño_lote}} --timeout {{timeout}} --addresses {{dirección_o_direcciones}}` +`rustscan {{[-b|--batch-size]}} {{tamaño_lote}} {{[-t|--timeout]}} {{timeout}} {{[-a|--addresses]}} {{dirección_o_direcciones}}` - Escanea puertos en un orden específico: -`rustscan --scan-order {{serial|random}} --addresses {{dirección_o_direcciones}}` +`rustscan --scan-order {{serial|random}} {{[-a|--addresses]}} {{dirección_o_direcciones}}` - Escanea en modo "greppable" (solo imprime los puertos y no usa `nmap`): -`rustscan --greppable --addresses {{dirección_o_direcciones}}` +`rustscan {{[-g|--greppable]}} {{[-a|--addresses]}} {{dirección_o_direcciones}}` diff --git a/pages.ko/common/rustscan.md b/pages.ko/common/rustscan.md index a752a85a2e..9a0cd127f8 100644 --- a/pages.ko/common/rustscan.md +++ b/pages.ko/common/rustscan.md @@ -1,36 +1,36 @@ # rustscan > Rust로 작성된 빠른 포트 스캐너로 `nmap`이 내장되어 있습니다. -> 더 많은 정보: . +> 더 많은 정보: . -- 기본값을 사용하여 쉼표로 구분된 하나 이상의 [a]드레스를 대상으로 모든 포트를 스캔: +- 기본값을 사용하여 쉼표로 구분된 하나 이상의 주소의 모든 포트를 스캔합니다: -`rustscan --addresses {{ip_또는_호스트명}}` +`rustscan {{[-a|--addresses]}} {{ip_또는_호스트명}}` -- [t]op 1000 포트를 서비스 및 버전 감지와 함께 스캔: +- 서비스 및 버전 감지 기능으로 상위 1000개 포트 스캔하기: -`rustscan --top --addresses {{주소_또는_주소들}}` +`rustscan --top {{[-a|--addresses]}} {{주소_또는_주소들}}` -- 특정 [p]ort 목록을 스캔: +- 특정 포트 목록 스캔: -`rustscan --ports {{포트1,포트2,...,포트N}} --addresses {{주소_또는_주소들}}` +`rustscan {{[-p|--ports]}} {{포트1,포트2,...,포트N}} {{[-a|--addresses]}} {{주소_또는_주소들}}` - 특정 범위의 포트를 스캔: -`rustscan --range {{시작-끝}} --addresses {{주소_또는_주소들}}` +`rustscan {{[-r|--range]}} {{시작}}-{{끝}} {{[-a|--addresses]}} {{주소_또는_주소들}}` - `nmap`에 스크립트 인수 추가: -`rustscan --addresses {{주소_또는_주소들}} -- -A -sC` +`rustscan {{[-a|--addresses]}} {{주소_또는_주소들}} -- -O {{[-sC|--script=default]}}` -- 사용자 정의 [b]atch 크기(기본: 4500) 및 [t]imeout(기본: 1500ms)으로 스캔: +- 사용자 정의 batch 크기(기본: 4500) 및 timeout(기본: 1500ms)으로 스캔: -`rustscan --batch-size {{배치_크기}} --timeout {{타임아웃}} --addresses {{주소_또는_주소들}}` +`rustscan {{[-b|--batch-size]}} {{배치_크기}} {{[-t|--timeout]}} {{타임아웃}} {{[-a|--addresses]}} {{주소_또는_주소들}}` - 특정 포트 순서로 스캔: -`rustscan --scan-order {{serial|random}} --addresses {{주소_또는_주소들}}` +`rustscan --scan-order {{serial|random}} {{[-a|--addresses]}} {{주소_또는_주소들}}` - greppable 모드로 스캔(`nmap` 없이 포트 출력만): -`rustscan --greppable --addresses {{주소_또는_주소들}}` +`rustscan {{[-g|--greppable]}} {{[-a|--addresses]}} {{주소_또는_주소들}}` From 697d54165781408f14099447c5ec25e9158394e8 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:29:27 +0200 Subject: [PATCH 119/141] doggo: update translations (#16681) --- pages.es/common/doggo.md | 6 +++--- pages.ko/common/doggo.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages.es/common/doggo.md b/pages.es/common/doggo.md index 6c8b02d386..6af26d239d 100644 --- a/pages.es/common/doggo.md +++ b/pages.es/common/doggo.md @@ -2,7 +2,7 @@ > Cliente DNS para Humanos. > Escrito en Golang. -> Más información: . +> Más información: . - Realiza una simple búsqueda DNS: @@ -18,8 +18,8 @@ - Salida en formato JSON: -`doggo {{example.com}} --json | jq '{{.responses[0].answers[].address}}'` +`doggo {{example.com}} {{[-J|--json]}} | jq '{{.responses[0].answers[].address}}'` - Realiza una búsqueda DNS inversa: -`doggo --reverse {{8.8.4.4}} --short` +`doggo {{[-x|--reverse]}} {{8.8.4.4}} --short` diff --git a/pages.ko/common/doggo.md b/pages.ko/common/doggo.md index 8ffaf1cf68..4915a81a3f 100644 --- a/pages.ko/common/doggo.md +++ b/pages.ko/common/doggo.md @@ -2,7 +2,7 @@ > 사람을 위한 DNS 클라이언트. > Golang으로 작성됨. -> 더 많은 정보: . +> 더 많은 정보: . - 간단한 DNS 조회를 수행: @@ -18,8 +18,8 @@ - JSON 형식으로 출력: -`doggo {{example.com}} --json | jq '{{.responses[0].answers[].address}}'` +`doggo {{example.com}} {{[-J|--json]}} | jq '{{.responses[0].answers[].address}}'` - 역방향 DNS 조회를 수행: -`doggo --reverse {{8.8.4.4}} --short` +`doggo {{[-x|--reverse]}} {{8.8.4.4}} --short` From 2195933850cb22227aea67a2ab15f0e55db9563a Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Tue, 3 Jun 2025 12:30:05 +0000 Subject: [PATCH 120/141] su: add Dutch translation (#16729) --- pages.nl/linux/su.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages.nl/linux/su.md diff --git a/pages.nl/linux/su.md b/pages.nl/linux/su.md new file mode 100644 index 0000000000..e3d8ffe617 --- /dev/null +++ b/pages.nl/linux/su.md @@ -0,0 +1,20 @@ +# su + +> Wissel shell naar een andere gebruiker. +> Meer informatie: . + +- Wissel naar superuser (vereist het root wachtwoord): + +`su` + +- Wissel naar een gegeven gebruiker (vereist het wachtwoord van de gebruiker): + +`su {{gebruikersnaam}}` + +- Wissel naar een gegeven gebruiker en simuleer een volledige login shell: + +`su - {{gebruikersnaam}}` + +- Voer een commando uit als een andere gebruiker: + +`su - {{gebruikersnaam}} {{[-c|--command]}} "{{commando}}"` From 34aca5b91ed433a3b437d7160bbdcee738a99a24 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:30:44 +0200 Subject: [PATCH 121/141] pages.es/*: update links (#16680) --- pages.es/common/avrdude.md | 2 +- pages.es/common/josm.md | 2 +- pages.es/common/medusa.md | 2 +- pages.es/common/musescore.md | 2 +- pages.es/common/nnn.md | 2 +- pages.es/common/pants.md | 2 +- pages.es/common/pgbench.md | 2 +- pages.es/linux/arpspoof.md | 2 +- pages.es/linux/bwa.md | 2 +- pages.es/linux/debsecan.md | 2 +- pages.es/linux/fpsync.md | 2 +- pages.es/linux/mkfs.erofs.md | 2 +- pages.es/linux/mklost+found.md | 2 +- pages.es/linux/rofi.md | 2 +- pages.es/linux/systool.md | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pages.es/common/avrdude.md b/pages.es/common/avrdude.md index 436416e603..1e0b3aaf4c 100644 --- a/pages.es/common/avrdude.md +++ b/pages.es/common/avrdude.md @@ -1,7 +1,7 @@ # avrdude > Programa controlador para la programación de microcontroladores Atmel AVR. -> Más información: . +> Más información: . - Lee el microcontrolador AVR: diff --git a/pages.es/common/josm.md b/pages.es/common/josm.md index 6d3100159e..d1c03629f8 100644 --- a/pages.es/common/josm.md +++ b/pages.es/common/josm.md @@ -1,7 +1,7 @@ # josm > Editor extensible de OpenStreetMap para Java 8+. -> Más información: . +> Más información: . - Abrir JOSM: diff --git a/pages.es/common/medusa.md b/pages.es/common/medusa.md index 990e3323da..4567b86497 100644 --- a/pages.es/common/medusa.md +++ b/pages.es/common/medusa.md @@ -1,7 +1,7 @@ # medusa > Un forzador bruto de inicio de sesión modular y paralelo para una variedad de protocolos. -> Más información: . +> Más información: . - Lista todos los módulos instalados: diff --git a/pages.es/common/musescore.md b/pages.es/common/musescore.md index 45c5346792..c44eb3c646 100644 --- a/pages.es/common/musescore.md +++ b/pages.es/common/musescore.md @@ -2,7 +2,7 @@ > MuseScore editor de música de 3 hojas. > Vea también: `lilypond`. -> Más información: . +> Más información: . - Utiliza un controlador de audio específico: diff --git a/pages.es/common/nnn.md b/pages.es/common/nnn.md index 356f44122b..7e0ba8b212 100644 --- a/pages.es/common/nnn.md +++ b/pages.es/common/nnn.md @@ -2,7 +2,7 @@ > Gestor de archivos de terminal interactivo y analizador de uso de disco. > Vea también: `clifm`, `mc`, `ranger`, `vifm`. -> Más información: . +> Más información: . - Abre el directorio actual (o especifica uno como primer argumento): diff --git a/pages.es/common/pants.md b/pages.es/common/pants.md index a6a4a019f5..3b5411797a 100644 --- a/pages.es/common/pants.md +++ b/pages.es/common/pants.md @@ -1,7 +1,7 @@ # pants > Herramienta de flujo de trabajo rápida, escalable, fácil de usar y de código abierto. -> Más información: . +> Más información: . - Lista todos los objetivos: diff --git a/pages.es/common/pgbench.md b/pages.es/common/pgbench.md index 2c350d42b6..530e0e8edb 100644 --- a/pages.es/common/pgbench.md +++ b/pages.es/common/pgbench.md @@ -1,7 +1,7 @@ # pgbench > Ejecuta una prueba de referencia (benchmark test) en PostgreSQL. -> Más información: . +> Más información: . - Inicia una base de datos con un factor de escalamiento de 50 veces el tamaño predeterminado: diff --git a/pages.es/linux/arpspoof.md b/pages.es/linux/arpspoof.md index 2d35f7c39f..4debbcde72 100644 --- a/pages.es/linux/arpspoof.md +++ b/pages.es/linux/arpspoof.md @@ -1,7 +1,7 @@ # arpspoof > Forja respuestas ARP para interceptar paquetes. -> Más información: . +> Más información: . - Envenena todos los hosts para interceptar paquetes en la [i]nterfaz para el host: diff --git a/pages.es/linux/bwa.md b/pages.es/linux/bwa.md index 21b83c46e9..3551c92a89 100644 --- a/pages.es/linux/bwa.md +++ b/pages.es/linux/bwa.md @@ -2,7 +2,7 @@ > Herramienta de alineación Burrows-Wheeler. > Mapeador de secuencias de ADN cortas y poco divergentes frente a un gran genoma de referencia, como el genoma humano. -> Más información: . +> Más información: . - Indexa el genoma de referencia: diff --git a/pages.es/linux/debsecan.md b/pages.es/linux/debsecan.md index 78d0a92b25..67c8ca6c7a 100644 --- a/pages.es/linux/debsecan.md +++ b/pages.es/linux/debsecan.md @@ -1,7 +1,7 @@ # debsecan > Analizador de seguridad de Debian, es una herramienta para enumerar vulnerabilidades en una instalación Debian en particular. -> Más información: . +> Más información: . - Lista de paquetes instalados vulnerables en el host actual: diff --git a/pages.es/linux/fpsync.md b/pages.es/linux/fpsync.md index 3522a2ebe4..6eec5a6229 100644 --- a/pages.es/linux/fpsync.md +++ b/pages.es/linux/fpsync.md @@ -1,7 +1,7 @@ # fpsync > Ejecuta varios procesos de sincronización localmente o en varios trabajadores remotos a través de SSH. -> Más información: . +> Más información: . - Sincroniza recursivamente un directorio a otra ubicación: diff --git a/pages.es/linux/mkfs.erofs.md b/pages.es/linux/mkfs.erofs.md index ca58baf0f9..cad34e6bfe 100644 --- a/pages.es/linux/mkfs.erofs.md +++ b/pages.es/linux/mkfs.erofs.md @@ -1,7 +1,7 @@ # mkfs.erofs > Crea un sistema de archivos EROFS en una imagen. -> Más información: . +> Más información: . - Crea un sistema de archivos EROFS basado en el directorio raíz: diff --git a/pages.es/linux/mklost+found.md b/pages.es/linux/mklost+found.md index 228adde96c..fa47763584 100644 --- a/pages.es/linux/mklost+found.md +++ b/pages.es/linux/mklost+found.md @@ -1,7 +1,7 @@ # mklost+found > Crea un directorio lost+found. -> Más información: . +> Más información: . - Crea un directorio `lost+found` en el directorio actual: diff --git a/pages.es/linux/rofi.md b/pages.es/linux/rofi.md index a30c0cbadb..73258727ae 100644 --- a/pages.es/linux/rofi.md +++ b/pages.es/linux/rofi.md @@ -1,7 +1,7 @@ # rofi > Un lanzador de aplicaciones y conmutador de ventanas. -> Más información: . +> Más información: . - Muestra la lista de aplicaciones: diff --git a/pages.es/linux/systool.md b/pages.es/linux/systool.md index 5fbb817c0a..def862f2a6 100644 --- a/pages.es/linux/systool.md +++ b/pages.es/linux/systool.md @@ -2,7 +2,7 @@ > Vea información de dispositivos del sistema por bus y clases. > Este comando es parte del paquete `sysfs`. -> Más información: . +> Más información: . - Lista todos los atributos de los dispositivos de un bus (ej. `pci`, `usb`). Vea todos los buses usando `ls /sys/bus`: From 6d2d5cb6307690d95d57425b5574f74a24b42d78 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:31:13 +0200 Subject: [PATCH 122/141] nxc: update translations (#16679) --- pages.es/common/nxc.md | 12 ++++++------ pages.ko/common/nxc.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pages.es/common/nxc.md b/pages.es/common/nxc.md index aba0fa0050..176b059510 100644 --- a/pages.es/common/nxc.md +++ b/pages.es/common/nxc.md @@ -2,20 +2,20 @@ > Herramienta de enumeración y explotación de servicios de red. > Algunos subcomandos como `smb` tienen su propia documentación de uso. -> Más información: . +> Más información: . -- [L]ista módulos disponibles para el protocolo especificado: +- Lista módulos disponibles para el protocolo especificado: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -L` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-L|--list-modules]}}` - Lista las opciones disponibles para el módulo especificado: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -M {{nombre_del_módulo}} --options` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{nombre_del_módulo}} --options` - Especifica una opción para un módulo: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -M {{nombre_del_módulo}} -o {{NOMBRE_OPCION}}={{valor_opción}}` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{nombre_del_módulo}} -o {{NOMBRE_OPCION}}={{valor_opción}}` - Vea las opciones disponibles para el protocolo especificado: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} --help` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-h|--help]}}` diff --git a/pages.ko/common/nxc.md b/pages.ko/common/nxc.md index edaadbc1b6..cf285c7e10 100644 --- a/pages.ko/common/nxc.md +++ b/pages.ko/common/nxc.md @@ -2,20 +2,20 @@ > 네트워크 서비스 열거 및 익스플로잇 도구. > `smb`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다. -> 더 많은 정보: . +> 더 많은 정보: . -- 지정된 프로토콜에 대한 사용 가능한 모듈 [L]ist: +- 지정된 프로토콜에 대한 사용 가능한 모듈: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -L` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-L|--list-modules]}}` - 지정된 모듈에 대한 사용 가능한 옵션 나열: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -M {{모듈_이름}} --options` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{모듈_이름}} --options` - 모듈에 대한 옵션 지정: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} -M {{모듈_이름}} -o {{옵션_이름}}={{옵션_값}}` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-M|--module]}} {{모듈_이름}} -o {{옵션_이름}}={{옵션_값}}` - 지정된 프로토콜에 대한 사용 가능한 옵션 보기: -`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} --help` +`nxc {{smb|ssh|ldap|ftp|wmi|winrm|rdp|vnc|mssql}} {{[-h|--help]}}` From 569174b91ee5c0dcc3e14e3ebcf78f4dffa6687a Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:32:57 +0200 Subject: [PATCH 123/141] keybase: update translations (#16677) --- pages.es/common/keybase.md | 10 +++++----- pages.ko/common/keybase.md | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pages.es/common/keybase.md b/pages.es/common/keybase.md index 576432adc0..d17fdae2e3 100644 --- a/pages.es/common/keybase.md +++ b/pages.es/common/keybase.md @@ -1,7 +1,7 @@ # keybase > Directorio de claves que conecta identidades en redes sociales a claves encriptadas de una manera públicamente auditable. -> Más información: . +> Más información: . - Sigue a otro usuario: @@ -13,19 +13,19 @@ - Firma un archivo: -`keybase sign --infile {{archivo_de_entrada}} --outfile {{archivo_de_salida}}` +`keybase sign {{[-i|--infile]}} {{archivo_de_entrada}} {{[-o|--outfile]}} {{archivo_de_salida}}` - Verifica un archivo firmado: -`keybase verify --infile {{archivo_de_entrada}} --outfile {{archivo_de_salida}}` +`keybase verify {{[-i|--infile]}} {{archivo_de_entrada}} {{[-o|--outfile]}} {{archivo_de_salida}}` - Encripta un archivo: -`keybase encrypt --infile {{archivo_de_entrada}} --outfile {{archivo_de_salida}} {{receptor}}` +`keybase encrypt {{[-i|--infile]}} {{archivo_de_entrada}} {{[-o|--outfile]}} {{archivo_de_salida}} {{receptor}}` - Desencripta un archivo: -`keybase decrypt --infile {{archivo_de_entrada}} --outfile {{archivo_de_salida}}` +`keybase decrypt {{[-i|--infile]}} {{archivo_de_entrada}} {{[-o|--outfile]}} {{archivo_de_salida}}` - Revoca el dispositivo actual, se desconecta y borra los datos locales: diff --git a/pages.ko/common/keybase.md b/pages.ko/common/keybase.md index e40d125a63..c0949044d3 100644 --- a/pages.ko/common/keybase.md +++ b/pages.ko/common/keybase.md @@ -1,7 +1,7 @@ # keybase > 소셜 미디어 신원을 암호화 키에 공개적으로 감사 가능한 방식으로 매핑하는 키 디렉토리. -> 더 많은 정보: . +> 더 많은 정보: . - 다른 사용자 팔로우: @@ -13,19 +13,19 @@ - 파일 서명: -`keybase sign --infile {{입력_파일}} --outfile {{출력_파일}}` +`keybase sign {{[-i|--infile]}} {{입력_파일}} {{[-o|--outfile]}} {{출력_파일}}` - 서명된 파일 검증: -`keybase verify --infile {{입력_파일}} --outfile {{출력_파일}}` +`keybase verify {{[-i|--infile]}} {{입력_파일}} {{[-o|--outfile]}} {{출력_파일}}` - 파일 암호화: -`keybase encrypt --infile {{입력_파일}} --outfile {{출력_파일}} {{수신자}}` +`keybase encrypt {{[-i|--infile]}} {{입력_파일}} {{[-o|--outfile]}} {{출력_파일}} {{수신자}}` - 파일 복호화: -`keybase decrypt --infile {{입력_파일}} --outfile {{출력_파일}}` +`keybase decrypt {{[-i|--infile]}} {{입력_파일}} {{[-o|--outfile]}} {{출력_파일}}` - 현재 장치 해지, 로그아웃 및 로컬 데이터 삭제: From 9ce5746ad870ada33143331e45dcceb1af2fb840 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:33:20 +0200 Subject: [PATCH 124/141] obs: update translations (#16676) --- pages.es/common/obs.md | 4 ++-- pages.ko/common/obs.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.es/common/obs.md b/pages.es/common/obs.md index 2ff45c0d1b..30d4d0258c 100644 --- a/pages.es/common/obs.md +++ b/pages.es/common/obs.md @@ -2,7 +2,7 @@ > Open Broadcaster Software. > Programa de grabación de vídeo y streaming en directo. -> Más información: . +> Más información: . - Abre OBS: @@ -10,7 +10,7 @@ - Abre OBS en modo portátil: -`obs --portable` +`obs {{[-p|--portable]}}` - Empieza automáticamente a grabar un vídeo al momento de abrirse: diff --git a/pages.ko/common/obs.md b/pages.ko/common/obs.md index d938bc4473..ab5a48f964 100644 --- a/pages.ko/common/obs.md +++ b/pages.ko/common/obs.md @@ -2,7 +2,7 @@ > 오픈 브로드캐스터 소프트웨어. > 비디오 녹화 및 라이브 스트리밍 프로그램. -> 더 많은 정보: . +> 더 많은 정보: . - OBS 실행: @@ -10,7 +10,7 @@ - OBS를 포터블 모드로 실행: -`obs --portable` +`obs {{[-p|--portable]}}` - 실행 시 자동으로 비디오 녹화를 시작: From 16d5e1c2f3add4eeaa2bfeb2f28e0b36b1e1482e Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:33:54 +0200 Subject: [PATCH 125/141] qmmp: update translations (#16675) --- pages.es/common/qmmp.md | 4 ++-- pages.ko/common/qmmp.md | 4 ++-- pages.zh/common/qmmp.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages.es/common/qmmp.md b/pages.es/common/qmmp.md index 31e087b156..144769ea56 100644 --- a/pages.es/common/qmmp.md +++ b/pages.es/common/qmmp.md @@ -2,7 +2,7 @@ > Un reproductor de audio con una interfaz similar a Winamp o XMMS. > Vea también: `clementine`, `ncmpcpp`, `cmus`. -> Más información: . +> Más información: . - Lanza la interfaz gráfica de usuario (GUI): @@ -10,7 +10,7 @@ - Comienza o detiene el audio actual: -`qmmp --play-pause` +`qmmp {{[-t|--play-pause]}}` - Va hacia adelante o hacia atrás una cantidad específica de tiempo en segundos: diff --git a/pages.ko/common/qmmp.md b/pages.ko/common/qmmp.md index 78134f2f10..c8bc9ceb25 100644 --- a/pages.ko/common/qmmp.md +++ b/pages.ko/common/qmmp.md @@ -2,7 +2,7 @@ > Winamp 또는 XMMS와 유사한 인터페이스를 가진 오디오 플레이어. > 같이 보기: `clementine`, `ncmpcpp`, `cmus`. -> 더 많은 정보: . +> 더 많은 정보: . - GUI 실행: @@ -10,7 +10,7 @@ - 현재 재생 중인 오디오 시작 또는 중지: -`qmmp --play-pause` +`qmmp {{[-t|--play-pause]}}` - 지정된 시간(초)만큼 앞으로 또는 뒤로 탐색: diff --git a/pages.zh/common/qmmp.md b/pages.zh/common/qmmp.md index 5f745ea89f..b425ac0fff 100644 --- a/pages.zh/common/qmmp.md +++ b/pages.zh/common/qmmp.md @@ -2,7 +2,7 @@ > 具有类似于 Winamp 或 XMMS 界面的音频播放器。 > 请参阅:`clementine`,`ncmpcpp`,`cmus`。 -> 更多信息:. +> 更多信息:. - 启动 GUI: @@ -10,7 +10,7 @@ - 开始或停止当前播放的音频: -`qmmp --play-pause` +`qmmp {{[-t|--play-pause]}}` - 向前或向后移动指定的秒数: From c9d7a5170a25848e67137874030b3c854c728b7b Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:34:21 +0200 Subject: [PATCH 126/141] qmv: update translations (#16674) --- pages.es/common/qmv.md | 10 +++++----- pages.ko/common/qmv.md | 10 +++++----- pages.zh/common/qmv.md | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pages.es/common/qmv.md b/pages.es/common/qmv.md index fe1a652e13..8a1b22942b 100644 --- a/pages.es/common/qmv.md +++ b/pages.es/common/qmv.md @@ -1,7 +1,7 @@ # qmv > Mueve archivos y directorios usando el editor de texto predeterminado para definir los nombres de archivos. -> Más información: . +> Más información: . - Mueve un solo archivo (abre un editor con el nombre de archivo fuente a la izquierda y el nombre de archivo de destino a la derecha): @@ -13,16 +13,16 @@ - Mueve múltiples directorios: -`qmv -d {{ruta/al/directorio1}} {{ruta/al/directorio2}} {{ruta/al/directorio3}}` +`qmv {{[-d|--directory]}} {{ruta/al/directorio1 ruta/al/directorio2 ruta/al/directorio3 ...}}` - Mueve todos los archivos y directorios dentro de un directorio: -`qmv --recursive {{ruta/al/directorio}}` +`qmv {{[-R|--recursive]}} {{ruta/al/directorio}}` - Mueve archivos, pero cambia las posiciones de la fuente y los nombres de archivo de destino en el editor: -`qmv --option swap {{*.jpg}}` +`qmv {{[-o|--option]}} swap {{*.jpg}}` - Renombra todos los archivos y carpetas en el directorio actual, pero muestra solo los nombres de archivo de destino en el editor (puedes pensar en ello como una especie de modo simple): -`qmv --format=do .` +`qmv {{[-f|--format]}} do .` diff --git a/pages.ko/common/qmv.md b/pages.ko/common/qmv.md index 7f56783345..50483df405 100644 --- a/pages.ko/common/qmv.md +++ b/pages.ko/common/qmv.md @@ -1,7 +1,7 @@ # qmv > 기본 텍스트 편집기를 사용하여 파일 및 디렉터리의 이름을 정의하여 이동. -> 더 많은 정보: . +> 더 많은 정보: . - 단일 파일 이동 (편집기를 열고 왼쪽에는 원본 파일 이름, 오른쪽에는 대상 파일 이름 표시): @@ -13,16 +13,16 @@ - 여러 디렉터리 이동: -`qmv -d {{경로/대상/디렉터리1}} {{경로/대상/디렉터리2}} {{경로/대상/디렉터리3}}` +`qmv {{[-d|--directory]}} {{경로/대상/디렉터리1 경로/대상/디렉터리2 경로/대상/디렉터리3 ...}}` - 디렉터리 내의 모든 파일 및 디렉터리 이동: -`qmv --recursive {{경로/대상/디렉터리}}` +`qmv {{[-R|--recursive]}} {{경로/대상/디렉터리}}` - 파일을 이동하되, 편집기에서 원본과 대상 파일 이름의 위치를 바꾸기: -`qmv --option swap {{*.jpg}}` +`qmv {{[-o|--option]}} swap {{*.jpg}}` - 현재 디렉터리의 모든 파일 및 폴더 이름 변경, 편집기에서 대상 파일 이름만 표시 (단순 모드로 생각할 수 있음): -`qmv --format=do .` +`qmv {{[-f|--format]}} do .` diff --git a/pages.zh/common/qmv.md b/pages.zh/common/qmv.md index 34c5fdcf0b..9c3d64ac50 100644 --- a/pages.zh/common/qmv.md +++ b/pages.zh/common/qmv.md @@ -1,7 +1,7 @@ # qmv > 使用默认文本编辑器定义文件名来移动文件和目录。 -> 更多信息:. +> 更多信息:. - 移动单个文件(在编辑器中打开左侧为源文件名,右侧为目标文件名): @@ -13,16 +13,16 @@ - 移动多个目录: -`qmv -d {{路径/到/目录1}} {{路径/到/目录2}} {{路径/到/目录3}}` +`qmv {{[-d|--directory]}} {{路径/到/目录1 路径/到/目录2 路径/到/目录3 ...}}` - 移动目录中的所有文件和目录: -`qmv --recursive {{路径/到/目录}}` +`qmv {{[-R|--recursive]}} {{路径/到/目录}}` - 移动文件,但在编辑器中交换源文件名和目标文件名的位置: -`qmv --option swap {{*.jpg}}` +`qmv {{[-o|--option]}} swap {{*.jpg}}` - 重命名当前目录中的所有文件和文件夹,但在编辑器中仅显示目标文件名(可以将其视为一种简单模式): -`qmv --format=do .` +`qmv {{[-f|--format]}} do .` From d7ed195e090b06b6e322a9f3541dddff41423c36 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:34:57 +0200 Subject: [PATCH 127/141] fswatch: update Korean translation (#16656) --- pages.ko/common/fswatch.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.ko/common/fswatch.md b/pages.ko/common/fswatch.md index f3ada8fcb1..35b7fef622 100644 --- a/pages.ko/common/fswatch.md +++ b/pages.ko/common/fswatch.md @@ -5,16 +5,16 @@ - 파일 생성, 업데이트 또는 삭제 시 Bash 명령을 실행: -`fswatch {{경로/대상/파일}} | xargs -n 1 {{bash_명령어}}` +`fswatch {{경로/대상/파일}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}` - 하나 이상의 파일 또는 디렉터리를 감시: -`fswatch {{경로/대상/파일}} {{경로/대상/디렉토리}} {{path/to/another_directory/**/*.js}} | xargs -n 1 {{bash_명령어}}` +`fswatch {{경로/대상/파일}} {{경로/대상/디렉토리}} {{path/to/another_directory/**/*.js}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}` - 변경된 파일의 절대 경로를 출력: -`fswatch {{경로/대상/디렉토리}} | xargs -n 1 -I {} echo {}` +`fswatch {{경로/대상/디렉토리}} | xargs {{[-n|--max-args]}} 1 -I _ echo _` - 이벤트 유형 별로 필터링: -`fswatch --event {{Updated|Deleted|Created}} {{경로/대상/디렉토리}} | xargs -n 1 {{bash_명령어}}` +`fswatch --event {{Updated|Deleted|Created}} {{경로/대상/디렉토리}} | xargs {{[-n|--max-args]}} 1 {{bash_명령어}}` From 3907d9db69bd423de1dc2e46e8ef3035fe6ce3b6 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:47:00 +0200 Subject: [PATCH 128/141] pages.*/common/pam*: update outdated translations (part 3) (#16733) --- pages.es/common/pamflip.md | 8 ++++---- pages.ko/common/pamexec.md | 2 +- pages.ko/common/pamfix.md | 6 +++--- pages.ko/common/pamflip.md | 8 ++++---- pages.ko/common/pammixinterlace.md | 4 ++-- pages.nl/common/pamfix.md | 6 +++--- pages.nl/common/pamflip.md | 8 ++++---- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pages.es/common/pamflip.md b/pages.es/common/pamflip.md index 68469a65e1..e0c3e6bb12 100644 --- a/pages.es/common/pamflip.md +++ b/pages.es/common/pamflip.md @@ -5,16 +5,16 @@ - Gira la imagen de entrada en sentido contrario a las manecillas del reloj una cantidad de grados específica: -`pamflip -rotate{{90|180|270}} {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` +`pamflip {{[-r|-rotate]}}{{90|180|270}} {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` - Refleja horizontalmente: -`pamflip -leftright {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` +`pamflip {{[-lr|-leftright]}} {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` - Refleja verticalmente: -`pamflip -topbottom {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` +`pamflip {{[-tb|-topbottom]}} {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` - Refleja la imagen de entrada por la diagonal principal: -`pamflip -transpose {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` +`pamflip {{[-xy|-transpose]}} {{ruta/a/la/entrada.pam}} > {{ruta/al/resultado.pam}}` diff --git a/pages.ko/common/pamexec.md b/pages.ko/common/pamexec.md index c3c19b094c..0b1f35029d 100644 --- a/pages.ko/common/pamexec.md +++ b/pages.ko/common/pamexec.md @@ -10,4 +10,4 @@ - 명령이 비정상 종료 상태로 종료되면 처리를 중단: -`pamexec {{명령}} {{경로/대상/이미지.pam}} -check` +`pamexec {{명령}} {{경로/대상/이미지.pam}} {{[-c|-check]}}` diff --git a/pages.ko/common/pamfix.md b/pages.ko/common/pamfix.md index 3414ca148c..5e523958cf 100644 --- a/pages.ko/common/pamfix.md +++ b/pages.ko/common/pamfix.md @@ -6,12 +6,12 @@ - 마지막 부분이 손상된 Netpbm 파일 수정: -`pamfix -truncate {{경로/대상/손상된_파일.ext}} > {{경로/대상/출력_파일.ext}}` +`pamfix {{[-t|-truncate]}} {{경로/대상/손상된_파일.ext}} > {{경로/대상/출력_파일.ext}}` - 이미지의 `maxval`을 초과하는 픽셀 값을 낮추어 수정: -`pamfix -clip {{경로/대상/손상된_파일.ext}} > {{경로/대상/출력_파일.ext}}` +`pamfix {{[-cl|-clip]}} {{경로/대상/손상된_파일.ext}} > {{경로/대상/출력_파일.ext}}` - 이미지의 `maxval`을 초과하는 픽셀 값을 증가시켜 수정: -`pamfix -changemaxval {{경로/대상/손상된.pam|pbm|pgm|ppm}} > {{경로/대상/출력.pam|pbm|pgm|ppm}}` +`pamfix {{[-ch|-changemaxval]}} {{경로/대상/손상된.pam|pbm|pgm|ppm}} > {{경로/대상/출력.pam|pbm|pgm|ppm}}` diff --git a/pages.ko/common/pamflip.md b/pages.ko/common/pamflip.md index 4d7f725dc5..d48f05cad6 100644 --- a/pages.ko/common/pamflip.md +++ b/pages.ko/common/pamflip.md @@ -5,16 +5,16 @@ - 입력 이미지를 특정 각도로 반시계 방향으로 회전: -`pamflip -rotate{{90|180|270}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamflip {{[-r|-rotate]}}{{90|180|270}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 왼쪽과 오른쪽을 뒤집기: -`pamflip -leftright {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamflip {{[-lr|-leftright]}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 위쪽과 아래쪽을 뒤집기: -`pamflip -topbottom {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamflip {{[-tb|-topbottom]}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` - 입력 이미지를 주 대각선으로 뒤집기: -`pamflip -transpose {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` +`pamflip {{[-xy|-transpose]}} {{경로/대상/입력.pam}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/pammixinterlace.md b/pages.ko/common/pammixinterlace.md index affe38a5ab..981050329b 100644 --- a/pages.ko/common/pammixinterlace.md +++ b/pages.ko/common/pammixinterlace.md @@ -10,8 +10,8 @@ - 지정된 필터링 메커니즘 사용: -`pammixinterlace -filter {{linear|fir|ffmpeg}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pammixinterlace {{[-f|-filter]}} {{linear|fir|ffmpeg}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` - 적응형 필터링 모드 활성화, 즉 명백히 빗살무늬 패턴의 일부인 픽셀만 수정: -`pammixinterlace -adaptive {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` +`pammixinterlace {{[-a|-adaptive]}} {{경로/대상/이미지.ppm}} > {{경로/대상/출력.ppm}}` diff --git a/pages.nl/common/pamfix.md b/pages.nl/common/pamfix.md index 3b1652a8a0..889527b468 100644 --- a/pages.nl/common/pamfix.md +++ b/pages.nl/common/pamfix.md @@ -6,12 +6,12 @@ - Repareer een Netpbm bestand dat zijn laatste deel mist: -`pamfix -truncate {{pad/naar/corrupt.ext}} > {{pad/naar/uitvoer.ext}}` +`pamfix {{[-t|-truncate]}} {{pad/naar/corrupt.ext}} > {{pad/naar/uitvoer.ext}}` - Repareer een Netpbm bestand waar de pixel waardes de afbeelding's `maxval` overschrijden door de overtredende pixels te verlagen in waarde: -`pamfix -clip {{pad/naar/corrupt.ext}} > {{pad/naar/uitvoer.ext}}` +`pamfix {{[-cl|-clip]}} {{pad/naar/corrupt.ext}} > {{pad/naar/uitvoer.ext}}` - Repareer een Netpbm bestand waar de pixel waardes de afbeelding's `maxval` overschrijden door deze te verhogen: -`pamfix -changemaxval {{pad/naar/corrupt.pam|pbm|pgm|ppm}} > {{pad/naar/uitvoer.pam|pbm|pgm|ppm}}` +`pamfix {{[-ch|-changemaxval]}} {{pad/naar/corrupt.pam|pbm|pgm|ppm}} > {{pad/naar/uitvoer.pam|pbm|pgm|ppm}}` diff --git a/pages.nl/common/pamflip.md b/pages.nl/common/pamflip.md index ff0af50d9d..3080a24f69 100644 --- a/pages.nl/common/pamflip.md +++ b/pages.nl/common/pamflip.md @@ -5,16 +5,16 @@ - Draai de invoer-afbeelding tegen de klok in met de gespecificeerde graden:: -`pamflip -rotate{{90|180|270}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamflip {{[-r|-rotate]}}{{90|180|270}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` - Flip links met rechts: -`pamflip -leftright {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamflip {{[-lr|-leftright]}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` - Flip boven met onder: -`pamflip -topbottom {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamflip {{[-tb|-topbottom]}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` - Flip de invoer-afbeelding met de diagonaal: -`pamflip -transpose {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` +`pamflip {{[-xy|-transpose]}} {{pad/naar/invoer.pam}} > {{pad/naar/uitvoer.pam}}` From 6aa583b809e40112b508b6cae44984c94807a3c9 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Tue, 3 Jun 2025 14:48:03 +0200 Subject: [PATCH 129/141] pages.*/linux/*: update outdated translations (part 3) (#16734) --- pages.es/linux/systemd-mount.md | 8 ++++---- pages.ja/linux/sed.md | 6 +++--- pages.ko/linux/ptx.md | 10 +++++----- pages.ko/linux/pw-cat.md | 14 +++++++++----- pages.ko/linux/rcp.md | 6 +++--- pages.ko/linux/rexec.md | 8 ++++---- pages.ko/linux/rlogin.md | 2 +- pages.ko/linux/rsh.md | 2 +- pages.ko/linux/runcon.md | 4 ++-- pages.ko/linux/sed.md | 6 +++--- pages.ko/linux/semanage-fcontext.md | 8 ++++---- pages.ko/linux/systemd-mount.md | 8 ++++---- pages.nl/linux/ptx.md | 10 +++++----- pages.nl/linux/pw-cat.md | 8 ++++---- pages.nl/linux/rcp.md | 6 +++--- pages.nl/linux/rexec.md | 8 ++++---- pages.nl/linux/rlogin.md | 2 +- pages.nl/linux/rsh.md | 2 +- pages.nl/linux/runcon.md | 4 ++-- pages.nl/linux/sed.md | 6 +++--- pages.nl/linux/semanage-fcontext.md | 8 ++++---- pages.nl/linux/systemd-mount.md | 8 ++++---- pages.pt_BR/linux/pw-cat.md | 14 +++++++++----- pages.pt_BR/linux/sed.md | 6 +++--- pages.tr/linux/pw-cat.md | 12 ++++++++---- 25 files changed, 94 insertions(+), 82 deletions(-) diff --git a/pages.es/linux/systemd-mount.md b/pages.es/linux/systemd-mount.md index 97ef29799f..5c3e07bd37 100644 --- a/pages.es/linux/systemd-mount.md +++ b/pages.es/linux/systemd-mount.md @@ -17,16 +17,16 @@ - Crea un punto de montaje automático que monta el sistema de archivos al momento del primer acceso: -`systemd-mount --automount=yes {{ruta/al/archivo_o_dispositivo}}` +`systemd-mount --automount yes {{ruta/al/archivo_o_dispositivo}}` - Desmonta uno o más dispositivos: -`systemd-mount --umount {{ruta/al/punto_de_montaje_o_dispositivo1}} {{ruta/al/punto_de_montaje_o_dispositivo2}}` +`systemd-mount {{[-u|--umount]}} {{ruta/al/punto_de_montaje_o_dispositivo1}} {{ruta/al/punto_de_montaje_o_dispositivo2}}` - Monta un sistema de archivos (dispositivo de imagen o bloque) con un tipo de sistema de archivos específico: -`systemd-mount --type={{file_system_type}} {{ruta/al/archivo_o_dispositivo}} {{ruta/al/punto_de_montaje}}` +`systemd-mount {{[-t|--type]}} {{file_system_type}} {{ruta/al/archivo_o_dispositivo}} {{ruta/al/punto_de_montaje}}` - Monta un sistema de archivos (imagen o dispositivo de bloque) con opciones adicionales de montaje: -`systemd-mount --options={{opciones_de_montaje}} {{ruta/al/archivo_o_dispositivo}} {{ruta/al/punto_de_montaje}}` +`systemd-mount {{[-o|--options]}} {{opciones_de_montaje}} {{ruta/al/archivo_o_dispositivo}} {{ruta/al/punto_de_montaje}}` diff --git a/pages.ja/linux/sed.md b/pages.ja/linux/sed.md index 846b7df1d1..b4e04151c2 100644 --- a/pages.ja/linux/sed.md +++ b/pages.ja/linux/sed.md @@ -14,7 +14,7 @@ - 特定のファイルに出現する全ての `apple` (基本正規表現)を `mango` (基本正規表現)に置換し、元のファイルを上書きする: -`sed -i 's/apple/mango/g' {{path/to/file}}` +`sed {{[-i|--in-place]}} 's/apple/mango/g' {{path/to/file}}` - 特定のスクリプトファイル([f]ile)を実行し、結果を`stdout`に出力する: @@ -26,8 +26,8 @@ - ファイルの最初の行を削除([d]elete)する: -`sed -i 1d {{path/to/file}}` +`sed {{[-i|--in-place]}} 1d {{path/to/file}}` - ファイルの先頭行に改行を挿入([i]nsert)する: -`sed -i '1i\your new line text\' {{path/to/file}}` +`sed {{[-i|--in-place]}} '1i\your new line text\' {{path/to/file}}` diff --git a/pages.ko/linux/ptx.md b/pages.ko/linux/ptx.md index 450155d753..dae2f25a23 100644 --- a/pages.ko/linux/ptx.md +++ b/pages.ko/linux/ptx.md @@ -5,20 +5,20 @@ - 각 줄의 첫 번째 필드가 색인 참조인 순열 색인 생성: -`ptx --references {{경로/대상/파일}}` +`ptx {{[-r|--references]}} {{경로/대상/파일}}` - 자동 생성된 색인 참조가 포함된 순열 색인 생성: -`ptx --auto-reference {{경로/대상/파일}}` +`ptx {{[-A|--auto-reference]}} {{경로/대상/파일}}` - 고정된 너비로 순열 색인 생성: -`ptx --width={{열_너비}} {{경로/대상/파일}}` +`ptx {{[-w|--width]}} {{열_너비}} {{경로/대상/파일}}` - 필터링된 단어 목록으로 순열 색인 생성: -`ptx --only-file={{경로/대상/필터}} {{경로/대상/파일}}` +`ptx {{[-o|--only-file]}} {{경로/대상/필터}} {{경로/대상/파일}}` - SYSV 스타일의 동작으로 순열 색인 생성: -`ptx --traditional {{경로/대상/파일}}` +`ptx {{[-G|--traditional]}} {{경로/대상/파일}}` diff --git a/pages.ko/linux/pw-cat.md b/pages.ko/linux/pw-cat.md index 1a9e985149..e1a63035c1 100644 --- a/pages.ko/linux/pw-cat.md +++ b/pages.ko/linux/pw-cat.md @@ -1,20 +1,24 @@ # pw-cat > PipeWire를 통해 오디오 파일을 재생하고 녹음. -> 더 많은 정보: . +> 더 많은 정보: . - 기본 대상으로 WAV 파일 재생: -`pw-cat --playback {{경로/대상/파일.wav}}` +`pw-cat {{[-p|--playback]}} {{경로/대상/파일.wav}}` - 지정된 리샘플러 품질(기본값 4)로 WAV 파일 재생: -`pw-cat --quality {{0..15}} --playback {{경로/대상/파일.wav}}` +`pw-cat {{[-q|--quality]}} {{0..15}} {{[-p|--playback]}} {{경로/대상/파일.wav}}` - 125% 볼륨 수준으로 샘플 녹음: -`pw-cat --record --volume {{1.25}} {{경로/대상/파일.wav}}` +`pw-cat {{[-r|--record]}} --volume {{1.25}} {{경로/대상/파일.wav}}` - 다른 샘플 레이트를 사용하여 샘플 녹음: -`pw-cat --record --rate {{6000}} {{경로/대상/파일.wav}}` +`pw-cat {{[-r|--record]}} --rate {{6000}} {{경로/대상/파일.wav}}` + +- 도움말 표시: + +`pw-cat {{[-h|--help]}}` diff --git a/pages.ko/linux/rcp.md b/pages.ko/linux/rcp.md index 2285045842..facf622ab3 100644 --- a/pages.ko/linux/rcp.md +++ b/pages.ko/linux/rcp.md @@ -10,12 +10,12 @@ - 디렉토리를 재귀적으로 복사: -`rcp -r {{경로/대상/로컬_폴더}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` +`rcp {{[-r|--recursive]}} {{경로/대상/로컬_폴더}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` - 파일 속성 보존: -`rcp -p {{경로/대상/로컬_파일}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` +`rcp {{[-p|--preserve]}} {{경로/대상/로컬_파일}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` - 확인 없이 강제로 복사: -`rcp -f {{경로/대상/로컬_파일}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` +`rcp {{[-f|--from]}} {{경로/대상/로컬_파일}} {{사용자명}}@{{원격_호스트}}:{{/경로/대상/목적지/}}` diff --git a/pages.ko/linux/rexec.md b/pages.ko/linux/rexec.md index 352dc17d7d..d09e5a81e3 100644 --- a/pages.ko/linux/rexec.md +++ b/pages.ko/linux/rexec.md @@ -6,16 +6,16 @@ - 원격 [h]호스트에서 명령 실행: -`rexec -h={{원격_호스트}} {{ls -l}}` +`rexec {{[-h|--host]}} {{원격_호스트}} {{ls -l}}` - 원격 [h]호스트에서 원격 [u]사용자명을 지정: -`rexec -username={{사용자명}} -h={{원격_호스트}} {{ps aux}}` +`rexec {{[-u|--username]}} {{사용자명}} {{[-h|--host]}} {{원격_호스트}} {{ps aux}}` - 원격 [h]호스트에서 `stdin`을 `/dev/null`로 리디렉션: -`rexec --no-err -h={{원격_호스트}} {{ls -l}}` +`rexec {{[-n|--noerr]}} {{[-h|--host]}} {{원격_호스트}} {{ls -l}}` - 원격 [h]호스트에서 원격 [P]포트를 지정: -`rexec -P={{1234}} -h={{원격_호스트}} {{ls -l}}` +`rexec {{[-P|--port]}} {{1234}} {{[-h|--host]}} {{원격_호스트}} {{ls -l}}` diff --git a/pages.ko/linux/rlogin.md b/pages.ko/linux/rlogin.md index 5f571202f9..dfc654ef82 100644 --- a/pages.ko/linux/rlogin.md +++ b/pages.ko/linux/rlogin.md @@ -9,4 +9,4 @@ - 특정 사용자명으로 원격 호스트에 로그인: -`rlogin -l {{사용자명}} {{원격_호스트}}` +`rlogin {{[-l|--user]}} {{사용자명}} {{원격_호스트}}` diff --git a/pages.ko/linux/rsh.md b/pages.ko/linux/rsh.md index d8d603ab64..3f2fa5be2e 100644 --- a/pages.ko/linux/rsh.md +++ b/pages.ko/linux/rsh.md @@ -9,7 +9,7 @@ - 특정 사용자명으로 원격 호스트에서 명령 실행: -`rsh {{원격_호스트}} -l {{사용자명}} {{ls -l}}` +`rsh {{원격_호스트}} {{[-l|--user]}} {{사용자명}} {{ls -l}}` - 원격 호스트에서 명령을 실행할 때 `stdin`을 `/dev/null`로 리다이렉트: diff --git a/pages.ko/linux/runcon.md b/pages.ko/linux/runcon.md index 1555c0d3ff..e8aac3328c 100644 --- a/pages.ko/linux/runcon.md +++ b/pages.ko/linux/runcon.md @@ -10,11 +10,11 @@ - 명령을 실행할 도메인 지정: -`runcon -t {{도메인}}_t {{명령어}}` +`runcon {{[-t|--type]}} {{도메인}}_t {{명령어}}` - 명령을 실행할 컨텍스트 역할 지정: -`runcon -r {{역할}}_r {{명령어}}` +`runcon {{[-r|--role]}} {{역할}}_r {{명령어}}` - 명령을 실행할 전체 컨텍스트 지정: diff --git a/pages.ko/linux/sed.md b/pages.ko/linux/sed.md index 8bc72f73bf..31a1ee4d20 100644 --- a/pages.ko/linux/sed.md +++ b/pages.ko/linux/sed.md @@ -14,7 +14,7 @@ - 특정 파일에서 모든 `apple` (기본 정규식) 발생 부분을 `mango` (기본 정규식)로 대체하고 원본 파일을 직접 덮어쓰기: -`sed -i 's/apple/mango/g' {{경로/대상/파일}}` +`sed {{[-i|--in-place]}} 's/apple/mango/g' {{경로/대상/파일}}` - 특정 스크립트 [f]파일을 실행하고 결과를 `stdout`에 출력: @@ -26,8 +26,8 @@ - 파일의 첫 번째 줄 [d]삭제: -`sed -i 1d {{경로/대상/파일}}` +`sed {{[-i|--in-place]}} 1d {{경로/대상/파일}}` - 파일의 첫 번째 줄에 새 줄 [i]삽입: -`sed -i '1i\your new line text\' {{경로/대상/파일}}` +`sed {{[-i|--in-place]}} '1i\your new line text\' {{경로/대상/파일}}` diff --git a/pages.ko/linux/semanage-fcontext.md b/pages.ko/linux/semanage-fcontext.md index f7ba6e02e3..809fe73cf2 100644 --- a/pages.ko/linux/semanage-fcontext.md +++ b/pages.ko/linux/semanage-fcontext.md @@ -6,19 +6,19 @@ - 모든 파일 레이블링 규칙 나열: -`sudo semanage fcontext --list` +`sudo semanage fcontext {{[-l|--list]}}` - 사용자 정의 파일 레이블링 규칙을 헤더 없이 나열: -`sudo semanage fcontext --list --locallist --noheading` +`sudo semanage fcontext {{[-l|--list]}} {{[-C|--locallist]}} {{[-n|--noheading]}}` - PCRE 정규표현식과 일치하는 경로에 레이블을 지정하는 사용자 정의 규칙 추가: -`sudo semanage fcontext --add --type {{samba_share_t}} {{'/mnt/share(/.*)?'}}` +`sudo semanage fcontext {{[-a|--add]}} {{[-t|--type]}} {{samba_share_t}} {{'/mnt/share(/.*)?'}}` - PCRE 정규표현식을 사용하여 사용자 정의 규칙 삭제: -`sudo semanage fcontext --delete {{'/mnt/share(/.*)?'}}` +`sudo semanage fcontext {{[-d|--delete]}} {{'/mnt/share(/.*)?'}}` - 새로운 규칙을 적용하여 폴더를 재귀적으로 다시 레이블링: diff --git a/pages.ko/linux/systemd-mount.md b/pages.ko/linux/systemd-mount.md index cbe77bca6f..0b774be4ef 100644 --- a/pages.ko/linux/systemd-mount.md +++ b/pages.ko/linux/systemd-mount.md @@ -17,16 +17,16 @@ - 첫 번째 접근 시 실제 파일 시스템을 마운트하는 자동 마운트 포인트 생성: -`systemd-mount --automount=yes {{경로/대상/파일_또는_장치}}` +`systemd-mount --automount yes {{경로/대상/파일_또는_장치}}` - 하나 이상의 장치 언마운트: -`systemd-mount --umount {{경로/대상/마운트_포인트_또는_장치1}} {{경로/대상/마운트_포인트_또는_장치2}}` +`systemd-mount {{[-u|--umount]}} {{경로/대상/마운트_포인트_또는_장치1}} {{경로/대상/마운트_포인트_또는_장치2}}` - 특정 파일 시스템 유형으로 파일 시스템(이미지 또는 블록 장치) 마운트: -`systemd-mount --type={{파일_시스템_유형}} {{경로/대상/파일_또는_장치}} {{경로/대상/마운트_포인트}}` +`systemd-mount {{[-t|--type]}} {{파일_시스템_유형}} {{경로/대상/파일_또는_장치}} {{경로/대상/마운트_포인트}}` - 추가 마운트 옵션으로 파일 시스템(이미지 또는 블록 장치) 마운트: -`systemd-mount --options={{마운트_옵션}} {{경로/대상/파일_또는_장치}} {{경로/대상/마운트_포인트}}` +`systemd-mount {{[-o|--options]}} {{마운트_옵션}} {{경로/대상/파일_또는_장치}} {{경로/대상/마운트_포인트}}` diff --git a/pages.nl/linux/ptx.md b/pages.nl/linux/ptx.md index 15209b3ed7..64255500e7 100644 --- a/pages.nl/linux/ptx.md +++ b/pages.nl/linux/ptx.md @@ -5,20 +5,20 @@ - Genereer een permutatie-index waarbij het eerste veld van elke regel een indexreferentie is: -`ptx --references {{pad/naar/bestand}}` +`ptx {{[-r|--references]}} {{pad/naar/bestand}}` - Genereer een permutatie-index met automatisch gegenereerde indexreferenties: -`ptx --auto-reference {{pad/naar/bestand}}` +`ptx {{[-A|--auto-reference]}} {{pad/naar/bestand}}` - Genereer een permutatie-index met een vaste breedte: -`ptx --width={{breedte_in_kolommen}} {{pad/naar/bestand}}` +`ptx {{[-w|--width]}} {{breedte_in_kolommen}} {{pad/naar/bestand}}` - Genereer een permutatie-index met een lijst van gefilterde woorden: -`ptx --only-file={{pad/naar/filter}} {{pad/naar/bestand}}` +`ptx {{[-o|--only-file]}} {{pad/naar/filter}} {{pad/naar/bestand}}` - Genereer een permutatie-index met SYSV-stijl gedragingen: -`ptx --traditional {{pad/naar/bestand}}` +`ptx {{[-G|--traditional]}} {{pad/naar/bestand}}` diff --git a/pages.nl/linux/pw-cat.md b/pages.nl/linux/pw-cat.md index 04e3b11f95..e2dd597063 100644 --- a/pages.nl/linux/pw-cat.md +++ b/pages.nl/linux/pw-cat.md @@ -5,19 +5,19 @@ - Speel een WAV bestand over de standaard target: -`pw-cat --playback {{pad/naar/bestand.wav}}` +`pw-cat {{[-p|--playback]}} {{pad/naar/bestand.wav}}` - Speel een WAV bestand met een specifieke resampler kwaliteit (standaard 4): -`pw-cat --quality {{0..15}} --playback {{pad/naar/bestand.wav}}` +`pw-cat {{[-q|--quality]}} {{0..15}} {{[-p|--playback]}} {{pad/naar/bestand.wav}}` - Neem een sample recording op met een volume level van 125%: -`pw-cat --record --volume {{1.25}} {{pad/naar/bestand.wav}}` +`pw-cat {{[-r|--record]}} --volume {{1.25}} {{pad/naar/bestand.wav}}` - Neem een sample recording op met een andere sample rate: -`pw-cat --record --rate {{6000}} {{pad/naar/bestand.wav}}` +`pw-cat {{[-r|--record]}} --rate {{6000}} {{pad/naar/bestand.wav}}` - Toon de help: diff --git a/pages.nl/linux/rcp.md b/pages.nl/linux/rcp.md index 7add50500a..c8c2e54250 100644 --- a/pages.nl/linux/rcp.md +++ b/pages.nl/linux/rcp.md @@ -10,12 +10,12 @@ - Kopieer een directory recursief: -`rcp -r {{pad/naar/local_directory}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` +`rcp {{[-r|--recursive]}} {{pad/naar/local_directory}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` - Behoud de bestandseigenschappen: -`rcp -p {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` +`rcp {{[-p|--preserve]}} {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` - Forceer kopiëren zonder bevestiging: -`rcp -f {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` +`rcp {{[-f|--from]}} {{pad/naar/local_file}} {{gebruikersnaam}}@{{remote_host}}:{{/pad/naar/bestemming/}}` diff --git a/pages.nl/linux/rexec.md b/pages.nl/linux/rexec.md index e53082c21b..0f7f71331b 100644 --- a/pages.nl/linux/rexec.md +++ b/pages.nl/linux/rexec.md @@ -6,16 +6,16 @@ - Voer een commando uit op een externe [h]ost: -`rexec -h={{remote_host}} {{ls -l}}` +`rexec {{[-h|--host]}} {{remote_host}} {{ls -l}}` - Specificeer de externe [g]ebruikersnaam op een externe [h]ost: -`rexec -username={{gebruikersnaam}} -h={{remote_host}} {{ps aux}}` +`rexec {{[-u|--username]}} {{gebruikersnaam}} {{[-h|--host]}} {{remote_host}} {{ps aux}}` - Redirect `stdin` van `/dev/null` op een externe [h]ost: -`rexec --no-err -h={{remote_host}} {{ls -l}}` +`rexec {{[-n|--noerr]}} {{[-h|--host]}} {{remote_host}} {{ls -l}}` - Specificeer de externe [P]oort op een externe [h]ost: -`rexec -P={{1234}} -h={{remote_host}} {{ls -l}}` +`rexec {{[-P|--port]}} {{1234}} {{[-h|--host]}} {{remote_host}} {{ls -l}}` diff --git a/pages.nl/linux/rlogin.md b/pages.nl/linux/rlogin.md index 2f54a0c035..0f8e496061 100644 --- a/pages.nl/linux/rlogin.md +++ b/pages.nl/linux/rlogin.md @@ -9,4 +9,4 @@ - Log in op een externe host met een specifieke gebruikersnaam: -`rlogin -l {{gebruikersnaam}} {{remote_host}}` +`rlogin {{[-l|--user]}} {{gebruikersnaam}} {{remote_host}}` diff --git a/pages.nl/linux/rsh.md b/pages.nl/linux/rsh.md index 32a9b43fe4..7f84ca615b 100644 --- a/pages.nl/linux/rsh.md +++ b/pages.nl/linux/rsh.md @@ -9,7 +9,7 @@ - Voer een commando uit op een externe host met een specifieke gebruikersnaam: -`rsh {{remote_host}} -l {{gebruikersnaam}} {{ls -l}}` +`rsh {{remote_host}} {{[-l|--user]}} {{gebruikersnaam}} {{ls -l}}` - Redirect `stdin` naar `/dev/null` bij het uitvoeren van een commando op een externe host: diff --git a/pages.nl/linux/runcon.md b/pages.nl/linux/runcon.md index 1078da850c..a1ff03b98f 100644 --- a/pages.nl/linux/runcon.md +++ b/pages.nl/linux/runcon.md @@ -10,11 +10,11 @@ - Specificeer het domein om een commando in uit te voeren: -`runcon -t {{domein}}_t {{commando}}` +`runcon {{[-t|--type]}} {{domein}}_t {{commando}}` - Specificeer de context rol om een commando mee uit te voeren: -`runcon -r {{rol}}_r {{commando}}` +`runcon {{[-r|--role]}} {{rol}}_r {{commando}}` - Specificeer de volledige context om een commando mee uit te voeren: diff --git a/pages.nl/linux/sed.md b/pages.nl/linux/sed.md index 10caa24437..2cb941f294 100644 --- a/pages.nl/linux/sed.md +++ b/pages.nl/linux/sed.md @@ -14,7 +14,7 @@ - Vervang alle `apple` (basis regex) met `mango` (basis regex) in een specifiek bestand en overschrijf het originele bestand: -`sed -i 's/apple/mango/g' {{pad/naar/bestand}}` +`sed {{[-i|--in-place]}} 's/apple/mango/g' {{pad/naar/bestand}}` - Voer een specifiek script bestand uit en toon het resultaat in `stdout`: @@ -26,8 +26,8 @@ - Verwijder de eerste regel van een bestand: -`sed -i 1d {{pad/naar/bestand}}` +`sed {{[-i|--in-place]}} 1d {{pad/naar/bestand}}` - Voeg een nieuwe regel in bij de eerste regel van een bestand: -`sed -i '1i\your new line text\' {{pad/naar/bestand}}` +`sed {{[-i|--in-place]}} '1i\your new line text\' {{pad/naar/bestand}}` diff --git a/pages.nl/linux/semanage-fcontext.md b/pages.nl/linux/semanage-fcontext.md index 7fc6c3894a..6ef08ba39a 100644 --- a/pages.nl/linux/semanage-fcontext.md +++ b/pages.nl/linux/semanage-fcontext.md @@ -6,19 +6,19 @@ - Toon alle bestandslabelregels: -`sudo semanage fcontext --list` +`sudo semanage fcontext {{[-l|--list]}}` - Toon alle door de gebruiker gedefinieerde bestandslabelregels zonder koppen: -`sudo semanage fcontext --list --locallist --noheading` +`sudo semanage fcontext {{[-l|--list]}} {{[-C|--locallist]}} {{[-n|--noheading]}}` - Voeg een door de gebruiker gedefinieerde regel toe die elk pad labelt dat overeenkomt met een PCRE-regex: -`sudo semanage fcontext --add --type {{samba_share_t}} {{'/mnt/share(/.*)?'}}` +`sudo semanage fcontext {{[-a|--add]}} {{[-t|--type]}} {{samba_share_t}} {{'/mnt/share(/.*)?'}}` - Verwijder een door de gebruiker gedefinieerde regel met behulp van zijn PCRE-regex: -`sudo semanage fcontext --delete {{'/mnt/share(/.*)?'}}` +`sudo semanage fcontext {{[-d|--delete]}} {{'/mnt/share(/.*)?'}}` - Herlabel een map recursief door de nieuwe regels toe te passen: diff --git a/pages.nl/linux/systemd-mount.md b/pages.nl/linux/systemd-mount.md index cda69eafdc..15a7bcaeb5 100644 --- a/pages.nl/linux/systemd-mount.md +++ b/pages.nl/linux/systemd-mount.md @@ -17,16 +17,16 @@ - Maak een automount punt dat het bestandssysteem zal mounten op het moment van eerste toegang: -`systemd-mount --automount=yes {{pad/naar/bestand_of_apparaat}}` +`systemd-mount --automount yes {{pad/naar/bestand_of_apparaat}}` - Unmount een of meerdere apparaten: -`systemd-mount --umount {{pad/naar/mount_point_of_apparaat1}} {{pad/naar/mount_point_of_apparaat2}}` +`systemd-mount {{[-u|--umount]}} {{pad/naar/mount_point_of_apparaat1}} {{pad/naar/mount_point_of_apparaat2}}` - Mount een bestandssysteem (afbeelding of blokapparaat) met een specifiek bestandssysteemtype: -`systemd-mount --type={{file_system_type}} {{pad/naar/bestand_of_apparaat}} {{pad/naar/mount_point}}` +`systemd-mount {{[-t|--type]}} {{file_system_type}} {{pad/naar/bestand_of_apparaat}} {{pad/naar/mount_point}}` - Mount een bestandssysteem (afbeelding of blokapparaat) met extra mount opties: -`systemd-mount --options={{mount_options}} {{pad/naar/bestand_of_apparaat}} {{pad/naar/mount_point}}` +`systemd-mount {{[-o|--options]}} {{mount_options}} {{pad/naar/bestand_of_apparaat}} {{pad/naar/mount_point}}` diff --git a/pages.pt_BR/linux/pw-cat.md b/pages.pt_BR/linux/pw-cat.md index 76c187b319..11be0f201a 100644 --- a/pages.pt_BR/linux/pw-cat.md +++ b/pages.pt_BR/linux/pw-cat.md @@ -1,20 +1,24 @@ # pw-cat > Toca e grava arquivos de áudio através do PipeWire. -> Mais informações: . +> Mais informações: . - Toca um arquivo WAV no alvo padrão: -`pw-cat --playback {{caminho/para/arquivo.wav}}` +`pw-cat {{[-p|--playback]}} {{caminho/para/arquivo.wav}}` - Toca um arquivo WAV com uma qualidade de reamostragem específica (4 por padrão): -`pw-cat --quality {{0..15}} --playback {{caminho/para/arquivo.wav}}` +`pw-cat {{[-q|--quality]}} {{0..15}} {{[-p|--playback]}} {{caminho/para/arquivo.wav}}` - Faz uma gravação com o volume em 125%: -`pw-cat --record --volume {{1.25}} {{caminho/para/arquivo.wav}}` +`pw-cat {{[-r|--record]}} --volume {{1.25}} {{caminho/para/arquivo.wav}}` - Faz uma gravação com uma taxa de amostragem diferente: -`pw-cat --record --rate {{6000}} {{caminho/para/arquivo.wav}}` +`pw-cat {{[-r|--record]}} --rate {{6000}} {{caminho/para/arquivo.wav}}` + +- Exibe ajuda: + +`pw-cat {{[-h|--help]}}` diff --git a/pages.pt_BR/linux/sed.md b/pages.pt_BR/linux/sed.md index c3852bfe54..6f071979c5 100644 --- a/pages.pt_BR/linux/sed.md +++ b/pages.pt_BR/linux/sed.md @@ -14,7 +14,7 @@ - Substitui todas as ocorrências de `apple` (regex básica) por `mango` (regex básica) em um arquivo específico e sobrescreve o arquivo original: -`sed -i 's/apple/mango/g' {{caminho/para/arquivo}}` +`sed {{[-i|--in-place]}} 's/apple/mango/g' {{caminho/para/arquivo}}` - Executa um arquivo de script específico e imprime o resultado na `stdout`: @@ -26,8 +26,8 @@ - Exclui a primeira linha de um arquivo: -`sed -i 1d {{caminho/para/arquivo}}` +`sed {{[-i|--in-place]}} 1d {{caminho/para/arquivo}}` - Adiciona uma nova linha na primeira linha de um arquivo: -`sed -i '1i\sua nova linha de texto\' {{caminho/para/arquivo}}` +`sed {{[-i|--in-place]}} '1i\sua nova linha de texto\' {{caminho/para/arquivo}}` diff --git a/pages.tr/linux/pw-cat.md b/pages.tr/linux/pw-cat.md index 38abc3acf9..9832fcd051 100644 --- a/pages.tr/linux/pw-cat.md +++ b/pages.tr/linux/pw-cat.md @@ -1,16 +1,20 @@ # pw-cat > Pipewire üzerinden ses dosyalarını çalın ve kaydedin. -> Daha fazla bilgi için: . +> Daha fazla bilgi için: . - Varsayılan hedef üzerinden bir WAV dosyası oynat: -`pw-cat --playback {{örnek/konum/dosya.wav}}` +`pw-cat {{[-p|--playback]}} {{örnek/konum/dosya.wav}}` - Örnek bir kaydı farklı bir ses seviyesinde kayda al: -`pw-cat --record --volume={{0.1}} {{örnek/konum/dosya.wav}}` +`pw-cat {{[-r|--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}}` +`pw-cat {{[-r|--record]}} --rate={{6000}} {{örnek/konum/dosya.wav}}` + +- Yardımı görüntüle: + +`pw-cat {{[-h|--help]}}` From a63ae699cde39e3b7458c706074886ddcfd6f311 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Tue, 3 Jun 2025 05:55:28 -0700 Subject: [PATCH 130/141] arpspoof: update more information links (#16737) --- pages.ko/linux/arpspoof.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages.ko/linux/arpspoof.md b/pages.ko/linux/arpspoof.md index 3bd5d930da..6b045bcad6 100644 --- a/pages.ko/linux/arpspoof.md +++ b/pages.ko/linux/arpspoof.md @@ -1,7 +1,7 @@ # arpspoof > 패킷을 가로채기 위해 ARP 응답을 위조합니다. -> 더 많은 정보: . +> 더 많은 정보: . - 호스트의 패킷을 가로채기 위해 [i]인터페이스의 모든 호스트를 중독: From 006861bc2d6df5d6568d573e8c744f870750f9b2 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Tue, 3 Jun 2025 13:14:28 +0000 Subject: [PATCH 131/141] tex, latex, pdftex, pdflatex: add Dutch translation (#16730) --- pages.nl/common/latex.md | 16 ++++++++++++++++ pages.nl/common/pdflatex.md | 16 ++++++++++++++++ pages.nl/common/pdftex.md | 16 ++++++++++++++++ pages.nl/common/tex.md | 16 ++++++++++++++++ 4 files changed, 64 insertions(+) create mode 100644 pages.nl/common/latex.md create mode 100644 pages.nl/common/pdflatex.md create mode 100644 pages.nl/common/pdftex.md create mode 100644 pages.nl/common/tex.md diff --git a/pages.nl/common/latex.md b/pages.nl/common/latex.md new file mode 100644 index 0000000000..152ab8db35 --- /dev/null +++ b/pages.nl/common/latex.md @@ -0,0 +1,16 @@ +# latex + +> Compileer een DVI-document van LaTeX bronbestanden. +> Meer informatie: . + +- Compileer een DVI-document: + +`latex {{bron.tex}}` + +- Compileer een DVI-document naar een specifieke output map: + +`latex -output-directory={{pad/naar/map}} {{bron.tex}}` + +- Compileer een DVI-document en sluit af als er een fout optreedt: + +`latex -halt-on-error {{bron.tex}}` diff --git a/pages.nl/common/pdflatex.md b/pages.nl/common/pdflatex.md new file mode 100644 index 0000000000..bcb241ff73 --- /dev/null +++ b/pages.nl/common/pdflatex.md @@ -0,0 +1,16 @@ +# pdflatex + +> Compileer een PDF-document van LaTeX bronbestanden. +> Meer informatie: . + +- Compileer een PDF-document: + +`pdflatex {{bron.tex}}` + +- Compileer een PDF-document naar een specifieke output map: + +`pdflatex -output-directory={{pad/naar/map}} {{bron.tex}}` + +- Compileer een PDF-document en sluit af als er een fout optreedt: + +`pdflatex -halt-on-error {{bron.tex}}` diff --git a/pages.nl/common/pdftex.md b/pages.nl/common/pdftex.md new file mode 100644 index 0000000000..c945532765 --- /dev/null +++ b/pages.nl/common/pdftex.md @@ -0,0 +1,16 @@ +# pdftex + +> Compileer een PDF-document van TeX bronbestanden. +> Meer informatie: . + +- Compileer een PDF-document: + +`pdftex {{bron.tex}}` + +- Compileer een PDF-document naar een specifieke output map: + +`pdftex -output-directory={{pad/naar/map}} {{bron.tex}}` + +- Compileer een PDF-document en sluit af als er een fout optreedt: + +`pdftex -halt-on-error {{bron.tex}}` diff --git a/pages.nl/common/tex.md b/pages.nl/common/tex.md new file mode 100644 index 0000000000..d1f837bb08 --- /dev/null +++ b/pages.nl/common/tex.md @@ -0,0 +1,16 @@ +# tex + +> Compileer een DVI-document van TeX bronbestanden. +> Meer informatie: . + +- Compileer een DVI-document: + +`tex {{bron.tex}}` + +- Compileer een DVI-document naar een specifieke output map: + +`tex -output-directory={{pad/naar/map}} {{bron.tex}}` + +- Compileer een DVI-document en sluit af als er een fout optreedt: + +`tex -halt-on-error {{bron.tex}}` From c718fb3fce80a6c56461df8170e60e3b1dba946e Mon Sep 17 00:00:00 2001 From: Shinsei Date: Tue, 3 Jun 2025 22:17:08 +0800 Subject: [PATCH 132/141] iwctl: add Chinese translation (#16533) --- pages.zh/linux/iwctl.md | 28 ++++++++++++++++++++++++++++ pages/linux/iwctl.md | 8 ++++---- 2 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 pages.zh/linux/iwctl.md diff --git a/pages.zh/linux/iwctl.md b/pages.zh/linux/iwctl.md new file mode 100644 index 0000000000..d46bf9e85c --- /dev/null +++ b/pages.zh/linux/iwctl.md @@ -0,0 +1,28 @@ +# iwctl + +> 控制 `iwd` 网络请求程序。 +> 更多信息:. + +- 启动交互模式,在此模式您可以直接输入命令并带有自动补全: + +`iwctl` + +- 显示您的 Wi-Fi 站点: + +`iwctl station list` + +- 开始寻找带有站点的网络: + +`iwctl station {{站点}} scan` + +- 显示站点发现的网络: + +`iwctl station {{站点}} get-networks` + +- 连接到带有站点的网络,如果需要凭证,则会询问: + +`iwctl station {{站点}} connect {{网络名称}}` + +- 显示帮助: + +`iwctl {{[-h|--help]}}` diff --git a/pages/linux/iwctl.md b/pages/linux/iwctl.md index 54da93db96..b224aaf519 100644 --- a/pages/linux/iwctl.md +++ b/pages/linux/iwctl.md @@ -7,10 +7,6 @@ `iwctl` -- Call general help: - -`iwctl {{[-h|--help]}}` - - Display your Wi-Fi stations: `iwctl station list` @@ -26,3 +22,7 @@ - Connect to a network with a station, if credentials are needed they will be asked: `iwctl station {{station}} connect {{network_name}}` + +- Display help: + +`iwctl {{[-h|--help]}}` From 6ea3d5944b509adf29c0d5bd7d840ad0c4c6ba6e Mon Sep 17 00:00:00 2001 From: Birb <7443606+HeckerBirb@users.noreply.github.com> Date: Tue, 3 Jun 2025 22:54:50 +0200 Subject: [PATCH 133/141] oniux: add page (#16738) Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com> --- pages/linux/oniux.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pages/linux/oniux.md diff --git a/pages/linux/oniux.md b/pages/linux/oniux.md new file mode 100644 index 0000000000..7c77b0d927 --- /dev/null +++ b/pages/linux/oniux.md @@ -0,0 +1,25 @@ +# oniux + +> Isolate an arbitrary application and route traffic over the Tor network. +> Note: This is experimental software. +> More information: . + +- Isolate an application: + +`oniux {{command}}` + +- Query a website: + +`oniux curl {{https://example.com}}` + +- Query an onion site: + +`oniux curl {{http://example.onion}}` + +- Run an entire shell in "torified" isolation: + +`oniux bash` + +- Isolate graphical applications in desktop environments: + +`oniux hexchat` From 64fe68b9e4e76e3236312823dca68f0269bb3a25 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 4 Jun 2025 06:28:28 +0200 Subject: [PATCH 134/141] pages.*/common/*: update outdated translations (#16735) --- pages.es/common/pcdovtoppm.md | 12 ++++++------ pages.es/common/pngtopam.md | 4 ++-- pages.es/common/ptpython.md | 2 +- pages.id/common/powershell.md | 2 +- pages.it/common/readlink.md | 2 +- pages.ko/common/pcdovtoppm.md | 6 +++--- pages.ko/common/pngtopam.md | 4 ++-- pages.ko/common/powershell.md | 2 +- pages.ko/common/pr.md | 10 +++++----- pages.ko/common/printenv.md | 2 +- pages.ko/common/ptpython.md | 4 ++-- pages.ko/common/readlink.md | 2 +- pages.ko/common/realpath.md | 8 ++++---- pages.ko/common/winicontopam.md | 6 +++--- pages.nl/common/pcdovtoppm.md | 12 ++++++------ pages.nl/common/pngtopam.md | 4 ++-- pages.nl/common/powershell.md | 2 +- pages.nl/common/pr.md | 10 +++++----- pages.nl/common/printenv.md | 2 +- pages.nl/common/ptpython.md | 2 +- pages.nl/common/readlink.md | 2 +- pages.nl/common/realpath.md | 8 ++++---- pages.nl/common/winicontopam.md | 6 +++--- pages.ta/common/powershell.md | 2 +- pages.zh/common/powershell.md | 2 +- pages.zh/common/printenv.md | 2 +- 26 files changed, 60 insertions(+), 60 deletions(-) diff --git a/pages.es/common/pcdovtoppm.md b/pages.es/common/pcdovtoppm.md index 85fb49c6b1..a59180e0a5 100644 --- a/pages.es/common/pcdovtoppm.md +++ b/pages.es/common/pcdovtoppm.md @@ -7,14 +7,14 @@ `pcdovtoppm {{ruta/al/archivo.pcd}} > {{ruta/al/archivo.ppm}}` -- Especifica la anchura [m]áxima de la imagen de salida y el tamaño máximo de cada una de las imágenes contenidas en la salida: +- Especifica la anchura máxima de la imagen de salida y el tamaño máximo de cada una de las imágenes contenidas en la salida: -`pcdovtoppm -m {{anchura}} -s {{tamaño}} {{ruta/al/archivo.pcd}} > {{ruta/al/archivo.ppm}}` +`pcdovtoppm {{[-m|-maxwidth]}} {{anchura}} {{[-s|-size]}} {{tamaño}} {{ruta/al/archivo.pcd}} > {{ruta/al/archivo.ppm}}` -- Especifica el número máximo de imágenes y el número máximo de [c]olores: +- Especifica el número máximo de imágenes y el número máximo de colores: -`pcdovtoppm -a {{n_imágenes}} -c {{n_colores}} {{ruta/al/archivo.pcd}} > {{ruta/al/archivo_salida.ppm}}` +`pcdovtoppm {{[-a|-across]}} {{n_imágenes}} {{[-c|-colors]}} {{n_colores}} {{ruta/al/archivo.pcd}} > {{ruta/al/archivo_salida.ppm}}` -- Utiliza la [f]uente especificada para las anotaciones y pinta el fondo blanco: +- Utiliza la fuente especificada para las anotaciones y pinta el fondo blanco: -`pcdovtoppm -f {{fuente}} -w {{ruta/al/archivo.pcd}} > {{ruta/al/archivo.ppm}}` +`pcdovtoppm {{[-f|-font]}} {{fuente}} {{[-w|-white]}} {{ruta/al/archivo.pcd}} > {{ruta/al/archivo.ppm}}` diff --git a/pages.es/common/pngtopam.md b/pages.es/common/pngtopam.md index 4619ebf0e3..59b8a5175c 100644 --- a/pages.es/common/pngtopam.md +++ b/pages.es/common/pngtopam.md @@ -14,8 +14,8 @@ - Reemplaza píxeles transparentes por el color especificado: -`pngtopam -mix -background {{color}} {{ruta/a/la/imagen.png}} > {{ruta/al/resultado.pam}}` +`pngtopam {{[-m|-mix]}} {{[-ba|-background]}} {{color}} {{ruta/a/la/imagen.png}} > {{ruta/al/resultado.pam}}` - Escribe los trozos de tEXt encontrados en la imagen de entrada al archivo de texto especificado: -`pngtopam -text {{ruta/al/archivo.txt}} {{ruta/a/la/imagen.png}} > {{ruta/al/resultado.pam}}` +`pngtopam {{[-te|-text]}} {{ruta/al/archivo.txt}} {{ruta/a/la/imagen.png}} > {{ruta/al/resultado.pam}}` diff --git a/pages.es/common/ptpython.md b/pages.es/common/ptpython.md index 5cc01382df..62d760a497 100644 --- a/pages.es/common/ptpython.md +++ b/pages.es/common/ptpython.md @@ -13,7 +13,7 @@ - Ejecuta un archivo Python específico y comienza un REPL: -`ptpython -i {{ruta/al/archivo.py}}` +`ptpython {{[-i|--interactive]}} {{ruta/al/archivo.py}}` - Abre el menú: diff --git a/pages.id/common/powershell.md b/pages.id/common/powershell.md index 0e89a6db7c..ea0bd8ed0d 100644 --- a/pages.id/common/powershell.md +++ b/pages.id/common/powershell.md @@ -10,4 +10,4 @@ - Lihat dokumentasi untuk perintah yang menyalakan PowerShell versi bawaan Windows (versi 5.1 ke bawah): -`tldr powershell -p windows` +`tldr powershell {{[-p|--platform]}} windows` diff --git a/pages.it/common/readlink.md b/pages.it/common/readlink.md index 5b4beb05b3..90569a78e7 100644 --- a/pages.it/common/readlink.md +++ b/pages.it/common/readlink.md @@ -9,4 +9,4 @@ - Ottiene il percorso assoluto di un file: -`readlink -f {{nome_file}}` +`readlink {{[-f|--canonicalize]}} {{nome_file}}` diff --git a/pages.ko/common/pcdovtoppm.md b/pages.ko/common/pcdovtoppm.md index 186fd9c6f4..7ea8309512 100644 --- a/pages.ko/common/pcdovtoppm.md +++ b/pages.ko/common/pcdovtoppm.md @@ -9,12 +9,12 @@ - 출력 이미지의 최대 너비와 출력에 포함된 각 이미지의 최대 크기 지정: -`pcdovtoppm -m {{너비}} -s {{크기}} {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` +`pcdovtoppm {{[-m|-maxwidth]}} {{너비}} {{[-s|-size]}} {{크기}} {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` - 가로로 배치할 이미지의 최대 수와 최대 색상 수 지정: -`pcdovtoppm -a {{이미지_수}} -c {{색상_수}} {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` +`pcdovtoppm {{[-a|-across]}} {{이미지_수}} {{[-c|-colors]}} {{색상_수}} {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` - 주석에 사용할 폰트를 지정하고 배경을 흰색으로 칠하기: -`pcdovtoppm -f {{폰트}} -w {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` +`pcdovtoppm {{[-f|-font]}} {{폰트}} {{[-w|-white]}} {{경로/대상/파일.pcd}} > {{경로/대상/출력.ppm}}` diff --git a/pages.ko/common/pngtopam.md b/pages.ko/common/pngtopam.md index 5bae2a4257..90d901aeb3 100644 --- a/pages.ko/common/pngtopam.md +++ b/pages.ko/common/pngtopam.md @@ -14,8 +14,8 @@ - 투명한 픽셀을 지정된 색상으로 대체: -`pngtopam -mix -background {{색상}} {{경로/대상/이미지.png}} > {{경로/대상/출력.pam}}` +`pngtopam {{[-m|-mix]}} {{[-ba|-background]}} {{색상}} {{경로/대상/이미지.png}} > {{경로/대상/출력.pam}}` - 입력 이미지에서 발견된 tEXt 청크를 지정된 텍스트 파일로 작성: -`pngtopam -text {{경로/대상/파일.txt}} {{경로/대상/이미지.png}} > {{경로/대상/출력.pam}}` +`pngtopam {{[-te|-text]}} {{경로/대상/파일.txt}} {{경로/대상/이미지.png}} > {{경로/대상/출력.pam}}` diff --git a/pages.ko/common/powershell.md b/pages.ko/common/powershell.md index caa20b8606..8ebc5d6657 100644 --- a/pages.ko/common/powershell.md +++ b/pages.ko/common/powershell.md @@ -10,4 +10,4 @@ - 레거시 Windows PowerShell(버전 5.1 이하)의 명령에 대한 문서 보기: -`tldr powershell -p windows` +`tldr powershell {{[-p|--platform]}} windows` diff --git a/pages.ko/common/pr.md b/pages.ko/common/pr.md index 1f39e6f62b..9e3c524c12 100644 --- a/pages.ko/common/pr.md +++ b/pages.ko/common/pr.md @@ -9,20 +9,20 @@ - 사용자 지정 가운데 정렬 헤더로 인쇄: -`pr -h "{{헤더}}" {{경로/대상/파일1 경로/대상/파일2 ...}}` +`pr {{[-h|--header]}} "{{헤더}}" {{경로/대상/파일1 경로/대상/파일2 ...}}` - 번호가 매겨진 줄과 사용자 지정 날짜 형식으로 인쇄: -`pr -n -D "{{형식}}" {{경로/대상/파일1 경로/대상/파일2 ...}}` +`pr {{[-n|--number-lines]}} {{[-D|--date-format]}} "{{형식}}" {{경로/대상/파일1 경로/대상/파일2 ...}}` - 모든 파일을 각각 하나의 열에 헤더나 푸터 없이 인쇄: -`pr -m -T {{경로/대상/파일1 경로/대상/파일2 ...}}` +`pr {{[-m|--merge]}} {{[-T|--omit-pagination]}} {{경로/대상/파일1 경로/대상/파일2 ...}}` - 페이지 길이(헤더와 푸터 포함)를 지정하여 페이지 2에서 페이지 5까지 인쇄: -`pr +2:5 -l {{페이지_길이}} {{경로/대상/파일1 경로/대상/파일2 ...}}` +`pr +2:5 {{[-l|--length]}} {{페이지_길이}} {{경로/대상/파일1 경로/대상/파일2 ...}}` - 각 줄에 대한 오프셋과 잘리는 사용자 지정 페이지 너비로 인쇄: -`pr -o {{오프셋}} -W {{너비}} {{경로/대상/파일1 경로/대상/파일2 ...}}` +`pr {{[-o|--indent]}} {{오프셋}} {{[-W|--page_width]}} {{너비}} {{경로/대상/파일1 경로/대상/파일2 ...}}` diff --git a/pages.ko/common/printenv.md b/pages.ko/common/printenv.md index 362cfeb37c..1238e63579 100644 --- a/pages.ko/common/printenv.md +++ b/pages.ko/common/printenv.md @@ -13,4 +13,4 @@ - 변수를 출력하고 줄바꿈 대신 NUL로 끝내기: -`printenv --null {{HOME}}` +`printenv {{[-0|--null]}} {{HOME}}` diff --git a/pages.ko/common/ptpython.md b/pages.ko/common/ptpython.md index a657ec2edb..9b4feb2773 100644 --- a/pages.ko/common/ptpython.md +++ b/pages.ko/common/ptpython.md @@ -13,7 +13,7 @@ - 특정 Python 파일을 실행하고 REPL 시작: -`ptpython -i {{경로/대상/파일.py}}` +`ptpython {{[-i|--interactive]}} {{경로/대상/파일.py}}` - 메뉴 열기: @@ -25,7 +25,7 @@ - 붙여넣기 모드 전환: -`F6` +`` - 종료: diff --git a/pages.ko/common/readlink.md b/pages.ko/common/readlink.md index cab996399a..5669dd4d25 100644 --- a/pages.ko/common/readlink.md +++ b/pages.ko/common/readlink.md @@ -9,4 +9,4 @@ - 파일의 절대 경로 가져오기: -`readlink -f {{경로/대상/파일}}` +`readlink {{[-f|--canonicalize]}} {{경로/대상/파일}}` diff --git a/pages.ko/common/realpath.md b/pages.ko/common/realpath.md index a585e4b1b6..ca0af3f4ca 100644 --- a/pages.ko/common/realpath.md +++ b/pages.ko/common/realpath.md @@ -9,16 +9,16 @@ - 모든 경로 구성 요소가 존재해야 함: -`realpath --canonicalize-existing {{경로/대상/파일_또는_폴더}}` +`realpath {{[-e|--canonicalize-existing]}} {{경로/대상/파일_또는_폴더}}` - 심볼릭 링크 전에 ".." 구성 요소 해결: -`realpath --logical {{경로/대상/파일_또는_폴더}}` +`realpath {{[-L|--logical]}} {{경로/대상/파일_또는_폴더}}` - 심볼릭 링크 확장 비활성화: -`realpath --no-symlinks {{경로/대상/파일_또는_폴더}}` +`realpath {{[-s|--no-symlinks]}} {{경로/대상/파일_또는_폴더}}` - 오류 메시지 억제: -`realpath --quiet {{경로/대상/파일_또는_폴더}}` +`realpath {{[-q|--quiet]}} {{경로/대상/파일_또는_폴더}}` diff --git a/pages.ko/common/winicontopam.md b/pages.ko/common/winicontopam.md index ee4b105335..e51d35b7b7 100644 --- a/pages.ko/common/winicontopam.md +++ b/pages.ko/common/winicontopam.md @@ -9,12 +9,12 @@ - 입력 파일의 모든 이미지를 PAM으로 변환: -`winicontopam -allimages {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` +`winicontopam {{[-al|-allimages]}} {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` - 입력 파일의 n번째 이미지를 PAM으로 변환: -`winicontopam -image {{n}} {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` +`winicontopam {{[-i|-image]}} {{n}} {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` - 추출할 이미지가 그라데이션 투명 데이터와 AND 마스크를 포함하는 경우, 출력 PAM 파일의 다섯 번째 채널에 AND 마스크를 작성: -`winicontopam -andmasks {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` +`winicontopam {{[-an|-andmasks]}} {{경로/대상/입력_파일.ico}} > {{경로/대상/출력.pam}}` diff --git a/pages.nl/common/pcdovtoppm.md b/pages.nl/common/pcdovtoppm.md index bd0ba74c49..e9eec124b2 100644 --- a/pages.nl/common/pcdovtoppm.md +++ b/pages.nl/common/pcdovtoppm.md @@ -7,14 +7,14 @@ `pcdovtoppm {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` -- Specificeer de [m]aximale breedte van de uitvoer-afbeelding en de maximale grootte ([s]) van elke afbeelding die in de uitvoer wordt opgenomen: +- Specificeer de maximale breedte van de uitvoer-afbeelding en de maximale grootte van elke afbeelding die in de uitvoer wordt opgenomen: -`pcdovtoppm -m {{breedte}} -s {{grootte}} {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` +`pcdovtoppm {{[-m|-maxwidth]}} {{breedte}} {{[-s|-size]}} {{grootte}} {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` -- Specificeer het maximale [a]antal afbeeldingen en het maximale aantal kleuren ([c]): +- Specificeer het maximale aantal afbeeldingen en het maximale aantal kleuren: -`pcdovtoppm -a {{n_afbeeldingen}} -c {{n_kleuren}} {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` +`pcdovtoppm {{[-a|-across]}} {{n_afbeeldingen}} {{[-c|-colors]}} {{n_kleuren}} {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` -- Gebruik het gespecificeerde lettertype ([f]) voor annotaties en kleur de achtergrond [w]it: +- Gebruik het gespecificeerde lettertype voor annotaties en kleur de achtergrond wit: -`pcdovtoppm -f {{lettertype}} -w {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` +`pcdovtoppm {{[-f|-font]}} {{lettertype}} {{[-w|-white]}} {{pad/naar/bestand.pcd}} > {{pad/naar/uitvoer.ppm}}` diff --git a/pages.nl/common/pngtopam.md b/pages.nl/common/pngtopam.md index 1a85ddd36a..55a9dee200 100644 --- a/pages.nl/common/pngtopam.md +++ b/pages.nl/common/pngtopam.md @@ -14,8 +14,8 @@ - Vervang transparente pixels door de gespecificeerde kleur: -`pngtopam -mix -background {{kleur}} {{pad/naar/afbeelding.png}} > {{pad/naar/uitvoer.pam}}` +`pngtopam {{[-m|-mix]}} {{[-ba|-background]}} {{kleur}} {{pad/naar/afbeelding.png}} > {{pad/naar/uitvoer.pam}}` - Schrijf tEXt chunks gevonden in de invoer-afbeelding naar het gespecificeerde tekstbestand: -`pngtopam -text {{pad/naar/bestand.txt}} {{pad/naar/afbeelding.png}} > {{pad/naar/uitvoer.pam}}` +`pngtopam {{[-te|-text]}} {{pad/naar/bestand.txt}} {{pad/naar/afbeelding.png}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.nl/common/powershell.md b/pages.nl/common/powershell.md index 6db4be8b7e..6c4d18f13c 100644 --- a/pages.nl/common/powershell.md +++ b/pages.nl/common/powershell.md @@ -10,4 +10,4 @@ - Bekijk de documenatie voor het commando dat refereert naar de legacy Windows PowerShell (versie 5.1 en lager): -`tldr powershell -p windows` +`tldr powershell {{[-p|--platform]}} windows` diff --git a/pages.nl/common/pr.md b/pages.nl/common/pr.md index d44cdbd5e3..af2e69a176 100644 --- a/pages.nl/common/pr.md +++ b/pages.nl/common/pr.md @@ -9,20 +9,20 @@ - Toon met een aangepaste gecentreerde koptekst: -`pr -h "{{koptekst}}" {{pad/naar/bestand1 pad/naar/bestand2 ...}}` +`pr {{[-h|--header]}} "{{koptekst}}" {{pad/naar/bestand1 pad/naar/bestand2 ...}}` - Toon met genummerde regels en een aangepast datumnotatieformaat: -`pr -n -D "{{formaat}}" {{pad/naar/bestand1 pad/naar/bestand2 ...}}` +`pr {{[-n|--number-lines]}} {{[-D|--date-format]}} "{{formaat}}" {{pad/naar/bestand1 pad/naar/bestand2 ...}}` - Toon alle bestanden samen, één in elke kolom, zonder kop- of voettekst: -`pr -m -T {{pad/naar/bestand1 pad/naar/bestand2 ...}}` +`pr {{[-m|--merge]}} {{[-T|--omit-pagination]}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` - Toon, beginnend bij pagina 2 en tot en met pagina 5, met een gegeven paginalengte (inclusief kop- en voettekst): -`pr +2:5 -l {{paginalengte}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` +`pr +2:5 {{[-l|--length]}} {{paginalengte}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` - Toon met een offset voor elke regel en een afkappende aangepaste paginabreedte: -`pr -o {{offset}} -W {{breedte}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` +`pr {{[-o|--indent]}} {{offset}} {{[-W|--page_width]}} {{breedte}} {{pad/naar/bestand1 pad/naar/bestand2 ...}}` diff --git a/pages.nl/common/printenv.md b/pages.nl/common/printenv.md index 4e9b4a4757..3f5f2f5171 100644 --- a/pages.nl/common/printenv.md +++ b/pages.nl/common/printenv.md @@ -13,4 +13,4 @@ - Toon de waarde van een variabele en eindig met NUL in plaats van een nieuwe regel: -`printenv --null {{HOME}}` +`printenv {{[-0|--null]}} {{HOME}}` diff --git a/pages.nl/common/ptpython.md b/pages.nl/common/ptpython.md index dd589e362d..8941c71754 100644 --- a/pages.nl/common/ptpython.md +++ b/pages.nl/common/ptpython.md @@ -13,7 +13,7 @@ - Voer een specfiek Python bestand uit en start een REPL: -`ptpython -i {{pad/naar/bestand.py}}` +`ptpython {{[-i|--interactive]}} {{pad/naar/bestand.py}}` - Open het menu: diff --git a/pages.nl/common/readlink.md b/pages.nl/common/readlink.md index 0846a1a4ed..f5df7261f4 100644 --- a/pages.nl/common/readlink.md +++ b/pages.nl/common/readlink.md @@ -9,4 +9,4 @@ - Toon het absolute pad naar een bestand: -`readlink -f {{pad/naar/bestand}}` +`readlink {{[-f|--canonicalize]}} {{pad/naar/bestand}}` diff --git a/pages.nl/common/realpath.md b/pages.nl/common/realpath.md index cfe091ea7d..c2af86c11a 100644 --- a/pages.nl/common/realpath.md +++ b/pages.nl/common/realpath.md @@ -9,16 +9,16 @@ - Vereis dat alle padcomponenten bestaan: -`realpath --canonicalize-existing {{pad/naar/bestand_of_map}}` +`realpath {{[-e|--canonicalize-existing]}} {{pad/naar/bestand_of_map}}` - Los ".." componenten op voordat symlinks worden gevolgd: -`realpath --logical {{pad/naar/bestand_of_map}}` +`realpath {{[-L|--logical]}} {{pad/naar/bestand_of_map}}` - Schakel symlink-uitbreiding uit: -`realpath --no-symlinks {{pad/naar/bestand_of_map}}` +`realpath {{[-s|--no-symlinks]}} {{pad/naar/bestand_of_map}}` - Onderdruk foutmeldingen: -`realpath --quiet {{pad/naar/bestand_of_map}}` +`realpath {{[-q|--quiet]}} {{pad/naar/bestand_of_map}}` diff --git a/pages.nl/common/winicontopam.md b/pages.nl/common/winicontopam.md index dc51c12712..8e970b2b1a 100644 --- a/pages.nl/common/winicontopam.md +++ b/pages.nl/common/winicontopam.md @@ -9,12 +9,12 @@ - Converteer alle afbeeldingen in het invoerbestand naar PAM: -`winicontopam -allimages {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` +`winicontopam {{[-al|-allimages]}} {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` - Converteer de n afbeelding in het invoerbestand naar PAM: -`winicontopam -image {{n}} {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` +`winicontopam {{[-i|-image]}} {{n}} {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` - Als de afbeelding(en) voor te extraheren bevatten transparantie data en een AND mask, scrhijf de AND mask naar het vijfde kanaal van het uitvoer PAM bestand: -`winicontopam -andmasks {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` +`winicontopam {{[-an|-andmasks]}} {{pad/naar/invoer_bestand.ico}} > {{pad/naar/uitvoer.pam}}` diff --git a/pages.ta/common/powershell.md b/pages.ta/common/powershell.md index e190c85dbb..89f31429c5 100644 --- a/pages.ta/common/powershell.md +++ b/pages.ta/common/powershell.md @@ -10,4 +10,4 @@ - மரபு விண்டோஸ் PowerShell (பதிப்பு 5.1 மற்றும் கீழே) குறிப்பிடும் கட்டளைக்கான ஆவணங்களைப் பார்க்கவும்: -`tldr powershell -p windows` +`tldr powershell {{[-p|--platform]}} windows` diff --git a/pages.zh/common/powershell.md b/pages.zh/common/powershell.md index 9f0ca2cbbf..9bc5aabfa7 100644 --- a/pages.zh/common/powershell.md +++ b/pages.zh/common/powershell.md @@ -10,4 +10,4 @@ - 查看传统 Windows PowerShell(版本 5.1 及以下)的命令文档: -`tldr powershell -p windows` +`tldr powershell {{[-p|--platform]}} windows` diff --git a/pages.zh/common/printenv.md b/pages.zh/common/printenv.md index 12a0e0e5f5..83a60975b1 100644 --- a/pages.zh/common/printenv.md +++ b/pages.zh/common/printenv.md @@ -13,4 +13,4 @@ - 显示变量的值并以 NUL 而不是换行符结尾: -`printenv --null {{HOME}}` +`printenv {{[-0|--null]}} {{HOME}}` From 013d823516c0d6f61ff1366f5a9edacd68dccab6 Mon Sep 17 00:00:00 2001 From: Kristopher Date: Wed, 4 Jun 2025 00:03:24 -0700 Subject: [PATCH 135/141] zsync: add page (#16731) * Create zsync.md * Update zsync.md Clarifying structures * Update zsync.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update zsync.md Adding a better "more information" link * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update pages/linux/zsync.md Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * Update zsync.md Adding period for see also line. --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/zsync.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pages/linux/zsync.md diff --git a/pages/linux/zsync.md b/pages/linux/zsync.md new file mode 100644 index 0000000000..414fd20de4 --- /dev/null +++ b/pages/linux/zsync.md @@ -0,0 +1,26 @@ +# zsync + +> Partial/differential file downloader. +> HTTPS is not supported - use HTTP URLs only. +> See also: `rsync`. +> More information: . + +- Download a file using a `.zsync` control file: + +`zsync {{path/to/url.zsync}}` + +- Use a local file as a seed to avoid re-downloading unchanged parts: + +`zsync -i {{path/to/existing_file}} {{path/to/url.zsync}}` + +- Save the updated file under a specific name: + +`zsync -i {{path/to/existing_file}} -o {{path/to/new_file}} {{path/to/url.zsync}}` + +- Resume a partial download and keep the temporary file: + +`zsync -k {{path/to/url.zsync}}` + +- Run in quiet mode with minimal output (no progress bar, download rate, or ETA display): + +`zsync -q {{path/to/url.zsync}}` From 39ee15df80326ed63a456f55bfd4d766e29fe0ee Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Wed, 4 Jun 2025 20:02:46 +0300 Subject: [PATCH 136/141] ssh-keyscan: clarify placeholder (#16752) --- pages/common/ssh-keyscan.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/ssh-keyscan.md b/pages/common/ssh-keyscan.md index a174d862b2..4b5d0d36c2 100644 --- a/pages/common/ssh-keyscan.md +++ b/pages/common/ssh-keyscan.md @@ -5,16 +5,16 @@ - Retrieve all public SSH keys of a remote host: -`ssh-keyscan {{host}}` +`ssh-keyscan {{hostname}}` - Retrieve all public SSH keys of a remote host listening on a specific port: -`ssh-keyscan -p {{port}} {{host}}` +`ssh-keyscan -p {{port}} {{hostname}}` - Retrieve certain types of public SSH keys of a remote host: -`ssh-keyscan -t {{rsa,dsa,ecdsa,ed25519}} {{host}}` +`ssh-keyscan -t {{rsa,dsa,ecdsa,ed25519}} {{hostname}}` - Manually update the SSH known_hosts file with the fingerprint of a given host: -`ssh-keyscan -H {{host}} >> ~/.ssh/known_hosts` +`ssh-keyscan -H {{hostname}} >> ~/.ssh/known_hosts` From 36372ea2b2f5de1532802a5fbd82f539da839219 Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 4 Jun 2025 19:16:34 +0200 Subject: [PATCH 137/141] docker-*: update outdated translations (part 1) (#16740) --- pages.de/common/docker-build.md | 8 ++++---- pages.de/common/docker-compose.md | 10 +++++----- pages.de/common/docker-cp.md | 2 +- pages.de/common/docker-exec.md | 12 ++++++------ pages.de/common/docker-inspect.md | 10 +++++----- pages.de/common/docker-run.md | 10 +++++----- pages.es/common/docker-compose.md | 10 +++++----- pages.fr/common/docker-build.md | 8 ++++---- pages.fr/common/docker-commit.md | 10 +++++----- pages.fr/common/docker-compose.md | 10 +++++----- pages.fr/common/docker-cp.md | 2 +- pages.fr/common/docker-exec.md | 12 ++++++------ pages.fr/common/docker-inspect.md | 10 +++++----- pages.fr/common/docker-run.md | 10 +++++----- pages.id/common/docker-build.md | 8 ++++---- pages.id/common/docker-compose.md | 10 +++++----- pages.it/common/docker-build.md | 6 +++--- pages.it/common/docker-compose.md | 10 +++++----- pages.it/common/docker-cp.md | 2 +- pages.it/common/docker-exec.md | 12 ++++++------ pages.it/common/docker-inspect.md | 10 +++++----- pages.ja/common/docker-build.md | 8 ++++---- pages.ja/common/docker-compose.md | 8 ++++---- pages.ja/common/docker-cp.md | 2 +- pages.ja/common/docker-run.md | 10 +++++----- pages.ko/common/docker-build.md | 8 ++++---- pages.ko/common/docker-commit.md | 10 +++++----- pages.ko/common/docker-compose.md | 10 +++++----- pages.ko/common/docker-cp.md | 2 +- pages.ko/common/docker-exec.md | 12 ++++++------ pages.ko/common/docker-inspect.md | 10 +++++----- pages.ko/common/docker-run.md | 10 +++++----- pages.ne/common/docker-compose.md | 10 +++++----- pages.pt_BR/common/docker-build.md | 8 ++++---- pages.pt_BR/common/docker-commit.md | 10 +++++----- pages.pt_BR/common/docker-compose.md | 10 +++++----- pages.pt_BR/common/docker-cp.md | 2 +- pages.pt_BR/common/docker-exec.md | 12 ++++++------ pages.pt_BR/common/docker-inspect.md | 10 +++++----- pages.pt_BR/common/docker-run.md | 10 +++++----- pages.tr/common/docker-build.md | 6 +++--- pages.tr/common/docker-compose.md | 10 +++++----- pages.tr/common/docker-exec.md | 12 ++++++------ pages.tr/common/docker-inspect.md | 10 +++++----- pages.tr/common/docker-run.md | 10 +++++----- pages.zh/common/docker-build.md | 8 ++++---- pages.zh/common/docker-run.md | 10 +++++----- pages.zh_TW/common/docker-build.md | 8 ++++---- pages/common/docker-run.md | 2 +- 49 files changed, 210 insertions(+), 210 deletions(-) diff --git a/pages.de/common/docker-build.md b/pages.de/common/docker-build.md index bae96f4652..7be592c746 100644 --- a/pages.de/common/docker-build.md +++ b/pages.de/common/docker-build.md @@ -13,19 +13,19 @@ - Baue ein Docker Image und gib ihm einen Tag: -`docker build --tag {{name:tag}} .` +`docker build {{[-t|--tag]}} {{name:tag}} .` - Baue ein Docker Image ohne Build-Kontext: -`docker build --tag {{name:tag}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{name:tag}} - < {{Dockerfile}}` - Verwende keinen Cache beim Bauen des Docker Images: -`docker build --no-cache --tag {{name:tag}} .` +`docker build --no-cache {{[-t|--tag]}} {{name:tag}} .` - Baue ein Docker Image mit einem spezifischen Dockerfile: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Baue mit benutzerdefinierten Variablen, die während des Bauens zur Verfügung stehen: diff --git a/pages.de/common/docker-compose.md b/pages.de/common/docker-compose.md index 10fd5afaa4..58f9937bde 100644 --- a/pages.de/common/docker-compose.md +++ b/pages.de/common/docker-compose.md @@ -9,7 +9,7 @@ - Erzeuge und starte alle Container im Hintergrund unter der Verwendung der Datei `docker-compose.yml` im aktuellen Verzeichnis: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Starte alle Container. Erzeuge zugehörige Docker Images bei Bedarf neu: @@ -17,7 +17,7 @@ - Starte alle Container durch Angabe eines Projektnamens unter Verwendung einer alternativen Compose-Datei: -`docker compose -p {{Projektname}} --file {{pfad/zu/verzeichnis}} up` +`docker compose {{[-p|--project-name]}} {{Projektname}} {{[-f|--file]}} {{pfad/zu/verzeichnis}} up` - Stoppe alle laufenden Container: @@ -25,12 +25,12 @@ - Stoppe und entferne alle Container inklusive zugehöriger Netzwerke, Volumes und Images: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Zeige die Logs aller Container kontinuierlich an: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Zeige die Logs eines spezifischen Containers kontinuierlich an: -`docker compose logs --follow {{container_name}}` +`docker compose logs {{[-f|--follow]}} {{container_name}}` diff --git a/pages.de/common/docker-cp.md b/pages.de/common/docker-cp.md index 7fde2a2856..b067cfc061 100644 --- a/pages.de/common/docker-cp.md +++ b/pages.de/common/docker-cp.md @@ -13,4 +13,4 @@ - 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}}` +`docker cp {{[-L|--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 index dc63c9bb32..095d8dafdc 100644 --- a/pages.de/common/docker-exec.md +++ b/pages.de/common/docker-exec.md @@ -5,24 +5,24 @@ - Öffne eine Shell innerhalb eines bereits laufenden Containers: -`docker exec --interactive --tty {{container_name}} {{/bin/bash}}` +`docker exec {{[-it|--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}}` +`docker exec {{[-d|--detach]}} {{container_name}} {{befehl}}` - Bestimme das Arbeitsverzeichnis, in dem der Befehl ausgeführt werden soll: -`docker exec --interactive --tty --workdir {{pfad/zu/verzeichnis}} {{container_name}} {{befehl}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{pfad/zu/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}}` +`docker exec {{[-i|--interactive]}} {{[-d|--detach]}} {{container_name}} {{befehl}}` - Setze eine Umgebungsvariable in einer laufenden Bash Sitzung: -`docker exec --interactive --tty --env {{variablen_name}}={{wert}} {{container_name}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--env]}} {{variablen_name}}={{wert}} {{container_name}} {{/bin/bash}}` - Führe einen Befehl als ein bestimmter Benutzer aus: -`docker exec --user {{benutzer}} {{container_name}} {{befehl}}` +`docker exec {{[-u|--user]}} {{benutzer}} {{container_name}} {{befehl}}` diff --git a/pages.de/common/docker-inspect.md b/pages.de/common/docker-inspect.md index 71c4031248..648af647e1 100644 --- a/pages.de/common/docker-inspect.md +++ b/pages.de/common/docker-inspect.md @@ -13,20 +13,20 @@ - Zeige die IP Adresse eines Containers an: -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{container}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{container}}` - Zeige den Pfad zur Logdatei eines Containers: -`docker inspect --format='\{\{.LogPath\}\}' {{container}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{container}}` - Zeige den Namen des Images eines Containers: -`docker inspect --format='\{\{.Config.Image\}\}' {{container}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{container}}` - Zeige die Konfiguration als JSON an: -`docker inspect --format='\{\{json .Config\}\}' {{container}}` +`docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{container}}` - Zeige alle Port Bindings: -`docker inspect --format='\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{container}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{container}}` diff --git a/pages.de/common/docker-run.md b/pages.de/common/docker-run.md index 322d542ec3..23b2bf3eba 100644 --- a/pages.de/common/docker-run.md +++ b/pages.de/common/docker-run.md @@ -9,23 +9,23 @@ - Führe einen Befehl in einem neuen Container im Hintergrund aus und zeige die ID: -`docker run --detach {{image}} {{befehl}}` +`docker run {{[-d|--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}}` +`docker run --rm {{[-it|--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}}` +`docker run {{[-e|--env]}} '{{variable}}={{wert}}' {{[-e|--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}}` +`docker run {{[-v|--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}}` +`docker run {{[-p|--publish]}} {{host_port}}:{{container_port}} {{image}} {{befehl}}` - Führe einen Befehl in einem neuen Container aus und überschreibe den Einstiegspunkt des Images: diff --git a/pages.es/common/docker-compose.md b/pages.es/common/docker-compose.md index 108863e20f..1f76ebc762 100644 --- a/pages.es/common/docker-compose.md +++ b/pages.es/common/docker-compose.md @@ -9,7 +9,7 @@ - Crea e inicia todos los contenedores en segundo plano usando un archivo `docker-compose.yml` desde el directorio actual: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Inicia todos los contenedores, y se reconstruye si es necesario: @@ -17,7 +17,7 @@ - Inicia todos los contenedores especificando un nombre de proyecto y utilizando un archivo de composición alternativo: -`docker compose -p {{nombre_proyecto}} --file {{ruta/al/archivo}} up` +`docker compose {{[-p|--project-name]}} {{nombre_proyecto}} {{[-f|--file]}} {{ruta/al/archivo}} up` - Detiene todos los contenedores en ejecución: @@ -25,12 +25,12 @@ - Detiene y elimina todos los contenedores, redes, imágenes y volúmenes: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Sigue los registros de todos los contenedores: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Sigue los registros de un contenedor específico: -`docker compose logs --follow {{nombre_del_contenedor}}` +`docker compose logs {{[-f|--follow]}} {{nombre_del_contenedor}}` diff --git a/pages.fr/common/docker-build.md b/pages.fr/common/docker-build.md index 97d6dd9703..a561aaa4bd 100644 --- a/pages.fr/common/docker-build.md +++ b/pages.fr/common/docker-build.md @@ -13,19 +13,19 @@ - Construire une image Docker et l'étiquette : -`docker build --tag {{nom:etiquette}} .` +`docker build {{[-t|--tag]}} {{nom:etiquette}} .` - Construit une image Docker sans contexte de construction : -`docker build --tag {{nom:etiquette}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{nom:etiquette}} - < {{Dockerfile}}` - Ne pas utiliser le cache lors de la construction de l'image : -`docker build --no-cache --tag {{nom:etiquette}} .` +`docker build --no-cache {{[-t|--tag]}} {{nom:etiquette}} .` - Construire une image Docker utilisant un Dockerfile spécifique : -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Construire avec des variables personnalisées définies à la volée : diff --git a/pages.fr/common/docker-commit.md b/pages.fr/common/docker-commit.md index 08351685f4..697264c604 100644 --- a/pages.fr/common/docker-commit.md +++ b/pages.fr/common/docker-commit.md @@ -9,23 +9,23 @@ - Appliquer une instruction `CMD` du Dockerfile à l'image créée : -`docker commit --change "CMD {{commande}}" {{conteneur}} {{image}}:{{etiquette}}` +`docker commit {{[-c|--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}}` +`docker commit {{[-c|--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}}` +`docker commit {{[-a|--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}}` +`docker commit {{[-m|--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}}` +`docker commit {{[-p|--pause]}} {{false}} {{conteneur}} {{image}}:{{etiquette}}` - Afficher l'aide : diff --git a/pages.fr/common/docker-compose.md b/pages.fr/common/docker-compose.md index dc90627d91..195eeeaa9c 100644 --- a/pages.fr/common/docker-compose.md +++ b/pages.fr/common/docker-compose.md @@ -9,7 +9,7 @@ - Crée et démarre en arrière-plan tous les conteneurs décrits dans le fichier `docker-compose.yml` du répertoire courant : -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Démarre tous les conteneurs après les avoir recréés si nécessaire : @@ -17,7 +17,7 @@ - Démarre tous les conteneurs en spécifiant un nom de projet et un fichier compose alternatif : -`docker compose -p {{nom_de_projet}} --file {{chemin/vers/fichier}} up` +`docker compose {{[-p|--project-name]}} {{nom_de_projet}} {{[-f|--file]}} {{chemin/vers/fichier}} up` - Arrête tous les conteneurs en cours d'exécution : @@ -25,12 +25,12 @@ - Arrête et supprime tous les conteneurs, réseaux, images et volumes : -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Affiche et suit la journalisation de tous les conteneurs : -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Affiche et suit la journalisation pour un conteneurs spécifique : -`docker compose logs --follow {{nom_container}}` +`docker compose logs {{[-f|--follow]}} {{nom_container}}` diff --git a/pages.fr/common/docker-cp.md b/pages.fr/common/docker-cp.md index 729a20efdb..b275b6fa93 100644 --- a/pages.fr/common/docker-cp.md +++ b/pages.fr/common/docker-cp.md @@ -13,4 +13,4 @@ - 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}}` +`docker cp {{[-L|--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 index cb86d2c0a6..a47cc5052a 100644 --- a/pages.fr/common/docker-exec.md +++ b/pages.fr/common/docker-exec.md @@ -5,24 +5,24 @@ - Entrer dans un shell interactif dans un conteneur en cours d'exécution : -`docker exec --interactive --tty {{nom_du_conteneur}} {{/bin/bash}}` +`docker exec {{[-it|--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}}` +`docker exec {{[-d|--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}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--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}}` +`docker exec {{[-i|--interactive]}} {{[-d|--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}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--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}}` +`docker exec {{[-u|--user]}} {{utilisateur}} {{nom_du_conteneur}} {{commande}}` diff --git a/pages.fr/common/docker-inspect.md b/pages.fr/common/docker-inspect.md index f634ed0899..71190ceaa8 100644 --- a/pages.fr/common/docker-inspect.md +++ b/pages.fr/common/docker-inspect.md @@ -13,20 +13,20 @@ - Afficher l'adresse IP d'un conteneur : -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{conteneur}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{conteneur}}` - Afficher le chemin du fichier journal d'un conteneur : -`docker inspect --format='\{\{.LogPath\}\}' {{conteneur}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{conteneur}}` - Afficher le nom de l'image d'un conteneur : -`docker inspect --format='\{\{.Config.Image\}\}' {{conteneur}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{conteneur}}` - Afficher les informations de configuration en JSON : -`docker inspect --format='\{\{json .Config\}\}' {{conteneur}}` +`docker inspect {{[-f|--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}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{conteneur}}` diff --git a/pages.fr/common/docker-run.md b/pages.fr/common/docker-run.md index d5c3590a60..677622dc32 100644 --- a/pages.fr/common/docker-run.md +++ b/pages.fr/common/docker-run.md @@ -9,23 +9,23 @@ - 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}}` +`docker run {{[-d|--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}}` +`docker run --rm {{[-it|--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}}` +`docker run {{[-e|--env]}} '{{variable}}={{valuer}}' {{[-e|--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}}` +`docker run {{[-v|--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}}` +`docker run {{[-p|--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 : diff --git a/pages.id/common/docker-build.md b/pages.id/common/docker-build.md index 55ec60ba5c..f95e8a1a77 100644 --- a/pages.id/common/docker-build.md +++ b/pages.id/common/docker-build.md @@ -13,19 +13,19 @@ - Bangun sebuah Docker image dengan tag tertentu: -`docker build --tag {{nama:tag}} .` +`docker build {{[-t|--tag]}} {{nama:tag}} .` - Bangun sebuah Docker image tanpa konteks pembangunan: -`docker build --tag {{nama:tag}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{nama:tag}} - < {{Dockerfile}}` - Bangun sebuah image tanpa menggunakan cache: -`docker build --no-cache --tag {{nama:tag}} .` +`docker build --no-cache {{[-t|--tag]}} {{nama:tag}} .` - Bangun sebuah Docker image dengan Dockerfile tertentu: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Bangun sebuah Docker image dengan variabel lingkungan tertentu: diff --git a/pages.id/common/docker-compose.md b/pages.id/common/docker-compose.md index 13d100f3fd..ed2e0e6444 100644 --- a/pages.id/common/docker-compose.md +++ b/pages.id/common/docker-compose.md @@ -9,7 +9,7 @@ - Buat dan nyalakan semua kontainer di latar belakang menggunakan file docker-compose.yml dari direktori saat ini: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Nyalakan semua kontainer, dan bangun ulang jika diperlukan: @@ -17,7 +17,7 @@ - Nyalakan semua kontainer dengan menentukan nama proyek dan menggunakan file compose alternatif: -`docker compose -p {{nama_proyek}} --file {{jalan/menuju/file}} up` +`docker compose {{[-p|--project-name]}} {{nama_proyek}} {{[-f|--file]}} {{jalan/menuju/file}} up` - Hentikan semua kontainer yang sedang berjalan: @@ -25,12 +25,12 @@ - Hentikan dan menghapus semua kontainer, jaringan, image, dan volume: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Ikuti log untuk semua kontainer: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Ikuti log untuk kontainer tertentu: -`docker compose logs --follow {{container_name}}` +`docker compose logs {{[-f|--follow]}} {{container_name}}` diff --git a/pages.it/common/docker-build.md b/pages.it/common/docker-build.md index 22e4783b1a..8207aba601 100644 --- a/pages.it/common/docker-build.md +++ b/pages.it/common/docker-build.md @@ -13,15 +13,15 @@ - Crea e tagga un'immagine Docker: -`docker build --tag {{nome:tag}} .` +`docker build {{[-t|--tag]}} {{nome:tag}} .` - Non usare la cache per la creazione di un'immagine Docker: -`docker build --no-cache --tag {{nome:tag}} .` +`docker build --no-cache {{[-t|--tag]}} {{nome:tag}} .` - Crea un'immagine Docker usando un dato Dockerfile: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Crea un'immagine Docker usando variabili fornite in fase di build: diff --git a/pages.it/common/docker-compose.md b/pages.it/common/docker-compose.md index 4442747276..da1719d283 100644 --- a/pages.it/common/docker-compose.md +++ b/pages.it/common/docker-compose.md @@ -9,7 +9,7 @@ - Crea ed avvia tutti i container in background utilizzando il file `docker-compose.yml` nella directory corrente: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Avvia tutti i container, buildandoli di nuovo se necessario: @@ -17,7 +17,7 @@ - Avvia tutti i contenitori specificando un nome di progetto e utilizzando un file compose alternativo: -`docker compose -p {{nome_di_progetto}} --file {{percorso/del/file}} up` +`docker compose {{[-p|--project-name]}} {{nome_di_progetto}} {{[-f|--file]}} {{percorso/del/file}} up` - Ferma tutti i container in esecuzione: @@ -25,12 +25,12 @@ - Ferma e rimuovi tutti i container, reti, immagini e volumi: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Segui i log di tutti i container: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Segui i log di un container specifico: -`docker compose logs --follow {{nome_container}}` +`docker compose logs {{[-f|--follow]}} {{nome_container}}` diff --git a/pages.it/common/docker-cp.md b/pages.it/common/docker-cp.md index ff6b54c788..a573b0450d 100644 --- a/pages.it/common/docker-cp.md +++ b/pages.it/common/docker-cp.md @@ -13,4 +13,4 @@ - 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/del/link_simbolico_su_host}} {{nome_container}}:{{percorso/del/file_o_directory_su_container}}` +`docker cp {{[-L|--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 7c0cac2a36..2ad6536ba9 100644 --- a/pages.it/common/docker-exec.md +++ b/pages.it/common/docker-exec.md @@ -5,24 +5,24 @@ - Avvia una shell interattiva all'interno di un container in esecuzione: -`docker exec --interactive --tty {{nome_container}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{nome_container}} {{/bin/bash}}` - Esegui un commando in background ("detached") su un container in esecuzione: -`docker exec --detach {{nome_container}} {{comando}}` +`docker exec {{[-d|--detach]}} {{nome_container}} {{comando}}` - Seleziona la directory di lavoro in cui eseguire un dato comando: -`docker exec --interactive --tty --workdir {{percorso/della/directory}} {{nome_container}} {{comando}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{percorso/della/directory}} {{nome_container}} {{comando}}` - Esegui un comando in background su un container esistente, mantenendo aperto `stdin`: -`docker exec --interactive --detach {{nome_container}} {{comando}}` +`docker exec {{[-i|--interactive]}} {{[-d|--detach]}} {{nome_container}} {{comando}}` - Imposta una variabile d'ambiente in una sessione Bash in esecuzione: -`docker exec --interactive --tty --env {{nome_variabile}}={{valore}} {{nome_container}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--env]}} {{nome_variabile}}={{valore}} {{nome_container}} {{/bin/bash}}` - Specifica l'utente da usare per eseguire un comando: -`docker exec --user {{utente}} {{nome_container}} {{comando}}` +`docker exec {{[-u|--user]}} {{utente}} {{nome_container}} {{comando}}` diff --git a/pages.it/common/docker-inspect.md b/pages.it/common/docker-inspect.md index 24757640e2..9054734f05 100644 --- a/pages.it/common/docker-inspect.md +++ b/pages.it/common/docker-inspect.md @@ -13,20 +13,20 @@ - Mostra l'indirizzo IP di un container: -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{nome_container}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{nome_container}}` - Mostra il percorso dei file di log di un container: -`docker inspect --format='\{\{.LogPath\}\}' {{nome_container}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{nome_container}}` - Mostra il nome dell'immagine di un container: -`docker inspect --format='\{\{.Config.Image\}\}' {{nome_container}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{nome_container}}` - Mostra le informazioni di configurazione in formato JSON: -`docker inspect --format='\{\{json .Config\}\}' {{nome_container}}` +`docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{nome_container}}` - Mostra il binding di tutte le porte: -`docker inspect --format='\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{nome_container}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{nome_container}}` diff --git a/pages.ja/common/docker-build.md b/pages.ja/common/docker-build.md index ac8ec34003..0e752a402c 100644 --- a/pages.ja/common/docker-build.md +++ b/pages.ja/common/docker-build.md @@ -13,19 +13,19 @@ - Dockerイメージを構築しそれにタグを付ける: -`docker build --tag {{名前:タグ}} .` +`docker build {{[-t|--tag]}} {{名前:タグ}} .` - ビルドコンテキスト無しでDockerイメージを構築する: -`docker build --tag {{名前:タグ}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{名前:タグ}} - < {{Dockerfile}}` - Dockerイメージ構築時にキャッシュを使わないようにする: -`docker build --no-cache --tag {{名前:タグ}} .` +`docker build --no-cache {{[-t|--tag]}} {{名前:タグ}} .` - 指定のDockerfileを用いてDockerイメージを構築する: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - ビルド時のカスタム変数を指定してイメージを構築する: diff --git a/pages.ja/common/docker-compose.md b/pages.ja/common/docker-compose.md index c5f2b0cf2c..df38593d93 100644 --- a/pages.ja/common/docker-compose.md +++ b/pages.ja/common/docker-compose.md @@ -9,7 +9,7 @@ - カレントディレクトリにある `docker-compose.yml`ファイルを使用してバックグラウンドで全てのコンテナを作成・起動する: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - 全てのコンテナを起動し、必要に応じて再ビルドする: @@ -21,12 +21,12 @@ - 全てのコンテナ、ネットワーク、イメージ、ボリュームを停止して削除する: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - 全てのコンテナのログをフォローする(表示し続ける): -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - 特定コンテナのログをフォローする(表示し続ける): -`docker compose logs --follow {{コンテナ名}}` +`docker compose logs {{[-f|--follow]}} {{コンテナ名}}` diff --git a/pages.ja/common/docker-cp.md b/pages.ja/common/docker-cp.md index b0bc2a8b4b..09b524bc8d 100644 --- a/pages.ja/common/docker-cp.md +++ b/pages.ja/common/docker-cp.md @@ -13,4 +13,4 @@ - ホストからコンテナへシンボリックリンクに従ってファイルやディレクトリをコピーする。(シンボリックリンクされたファイルを直接コピーし、シンボリックリンクそのものはコピーしない): -`docker cp --follow-link {{ホスト上のシンボリックリンクパス}} {{コンテナ名}}:{{コンテナ内のファイルパスもしくはディレクトリパス}}` +`docker cp {{[-L|--follow-link]}} {{ホスト上のシンボリックリンクパス}} {{コンテナ名}}:{{コンテナ内のファイルパスもしくはディレクトリパス}}` diff --git a/pages.ja/common/docker-run.md b/pages.ja/common/docker-run.md index 9ec7d953f8..f5fe91e2cf 100644 --- a/pages.ja/common/docker-run.md +++ b/pages.ja/common/docker-run.md @@ -9,23 +9,23 @@ - 新しいコンテナでコマンドをバックグランド実行し、そのIDを表示する: -`docker run --detach {{イメージ}} {{コマンド}}` +`docker run {{[-d|--detach]}} {{イメージ}} {{コマンド}}` - インタラクティブモードと疑似端末の割り当てを行って、使い捨てコンテナでコマンドを実行する: -`docker run --rm --interactive --tty {{イメージ}} {{コマンド}}` +`docker run --rm {{[-it|--interactive --tty]}} {{イメージ}} {{コマンド}}` - 渡された環境変数を使って新しいコンテナでコマンドを実行する: -`docker run --env '{{環境変数名}}={{値}}' --env {{環境変数名}} {{イメージ}} {{コマンド}}` +`docker run {{[-e|--env]}} '{{環境変数名}}={{値}}' {{[-e|--env]}} {{環境変数名}} {{イメージ}} {{コマンド}}` - バインドマウントを持つ新しいコンテナでコマンドを実行する: -`docker run --volume {{ホストへのパス}}:{{コンテナへのパス}} {{イメージ}} {{コマンド}}` +`docker run {{[-v|--volume]}} {{ホストへのパス}}:{{コンテナへのパス}} {{イメージ}} {{コマンド}}` - 公開ポートを持った新しいコンテナでコマンドを実行する: -`docker run --publish {{ホスト側のポート}}:{{コンテナ側のポート}} {{イメージ}} {{コマンド}}` +`docker run {{[-p|--publish]}} {{ホスト側のポート}}:{{コンテナ側のポート}} {{イメージ}} {{コマンド}}` - イメージのエントリーポイントを上書きして新しいコンテナでコマンドを実行する: diff --git a/pages.ko/common/docker-build.md b/pages.ko/common/docker-build.md index 0c364e6cf0..53e6c29acf 100644 --- a/pages.ko/common/docker-build.md +++ b/pages.ko/common/docker-build.md @@ -13,19 +13,19 @@ - 도커 이미지 빌드 및 태그 추가: -`docker build --tag {{이름:태그}} .` +`docker build {{[-t|--tag]}} {{이름:태그}} .` - 빌드 컨텍스트 없이 도커 이미지 빌드: -`docker build --tag {{이름:태그}} - < {{도커파일}}` +`docker build {{[-t|--tag]}} {{이름:태그}} - < {{도커파일}}` - 캐시를 사용하지 않고 도커 이미지 빌드: -`docker build --no-cache --tag {{이름:태그}} .` +`docker build --no-cache {{[-t|--tag]}} {{이름:태그}} .` - 특정 도커파일을 이용하여 도커 이미지 빌드: -`docker build --file {{도커파일}} .` +`docker build {{[-f|--file]}} {{도커파일}} .` - 빌드 시 커스텀 변수 추가: diff --git a/pages.ko/common/docker-commit.md b/pages.ko/common/docker-commit.md index 081b74e2c7..a7ecb26092 100644 --- a/pages.ko/common/docker-commit.md +++ b/pages.ko/common/docker-commit.md @@ -9,23 +9,23 @@ - 생성된 이미지에 `CMD` Dockerfile 명령 적용: -`docker commit --change "CMD {{명령}}" {{컨테이너}} {{이미지}}:{{태그}}` +`docker commit {{[-c|--change]}} "CMD {{명령}}" {{컨테이너}} {{이미지}}:{{태그}}` - 생성된 이미지에 `ENV` Dockerfile 명령 적용: -`docker commit --change "ENV {{이름}}={{값}}" {{컨테이너}} {{이미지}}:{{태그}}` +`docker commit {{[-c|--change]}} "ENV {{이름}}={{값}}" {{컨테이너}} {{이미지}}:{{태그}}` - 메타데이터에 특정 작성자를 포함하여 이미지 생성: -`docker commit --author "{{작성자}}" {{컨테이너}} {{이미지}}:{{태그}}` +`docker commit {{[-a|--author]}} "{{작성자}}" {{컨테이너}} {{이미지}}:{{태그}}` - 메타데이터에 특정 주석을 포함하여 이미지 생성: -`docker commit --message "{{주석}}" {{컨테이너}} {{이미지}}:{{태그}}` +`docker commit {{[-m|--message]}} "{{주석}}" {{컨테이너}} {{이미지}}:{{태그}}` - 커밋 중 컨테이너를 중지하지 않고 이미지 생성: -`docker commit --pause {{false}} {{컨테이너}} {{이미지}}:{{태그}}` +`docker commit {{[-p|--pause]}} {{false}} {{컨테이너}} {{이미지}}:{{태그}}` - 도움말 표시: diff --git a/pages.ko/common/docker-compose.md b/pages.ko/common/docker-compose.md index 63f6ae6c00..19e469b4cf 100644 --- a/pages.ko/common/docker-compose.md +++ b/pages.ko/common/docker-compose.md @@ -9,7 +9,7 @@ - 현재 디렉토리의 `docker-compose.yml` 파일을 사용해 모든 컨테이너를 백그라운드에서 생성하고 실행하기: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - 모든 컨테이너 실행, 필요 시 재빌드: @@ -17,7 +17,7 @@ - 특정 구성 파일을 사용해 모든 컨테이너 실행: -`docker compose -p {{프로젝트_이름}} --file {{경로/파일명}} up` +`docker compose {{[-p|--project-name]}} {{프로젝트_이름}} {{[-f|--file]}} {{경로/파일명}} up` - 실행 중인 모든 컨테이너 중지: @@ -25,12 +25,12 @@ - 모든 컨테이너, 네트워크, 이미지, 볼륨 중지 및 삭제: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - 모든 컨테이너에 대한 로그 팔로우: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - 특정 컨테이너에 대한 로그 팔로우: -`docker compose logs --follow {{컨테이너_이름}}` +`docker compose logs {{[-f|--follow]}} {{컨테이너_이름}}` diff --git a/pages.ko/common/docker-cp.md b/pages.ko/common/docker-cp.md index 398148d533..4abd024d97 100644 --- a/pages.ko/common/docker-cp.md +++ b/pages.ko/common/docker-cp.md @@ -13,4 +13,4 @@ - 호스트에서 컨테이너로 심볼릭 링크를 따라 파일이나 디렉토리 복사 (심볼릭 링크가 아닌 링크된 파일을 직접 복사): -`docker cp --follow-link {{호스트의/심볼릭_링크_경로}} {{컨테이너_이름}}:{{컨테이너의/파일_또는_디렉토리_경로}}` +`docker cp {{[-L|--follow-link]}} {{호스트의/심볼릭_링크_경로}} {{컨테이너_이름}}:{{컨테이너의/파일_또는_디렉토리_경로}}` diff --git a/pages.ko/common/docker-exec.md b/pages.ko/common/docker-exec.md index 6eaa73b7e5..41da37d248 100644 --- a/pages.ko/common/docker-exec.md +++ b/pages.ko/common/docker-exec.md @@ -5,24 +5,24 @@ - 이미 실행 중인 컨테이너에서 대화형 셸 세션 시작: -`docker exec --interactive --tty {{컨테이너_이름}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{컨테이너_이름}} {{/bin/bash}}` - 실행 중인 컨테이너에서 백그라운드(분리 모드)로 명령 실행: -`docker exec --detach {{컨테이너_이름}} {{명령}}` +`docker exec {{[-d|--detach]}} {{컨테이너_이름}} {{명령}}` - 특정 명령을 실행할 작업 디렉토리 선택: -`docker exec --interactive --tty --workdir {{경로/대상/폴더}} {{컨테이너_이름}} {{명령}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{경로/대상/폴더}} {{컨테이너_이름}} {{명령}}` - 기존 컨테이너에서 백그라운드로 명령을 실행하되 `stdin`을 열어 둠: -`docker exec --interactive --detach {{컨테이너_이름}} {{명령}}` +`docker exec {{[-i|--interactive]}} {{[-d|--detach]}} {{컨테이너_이름}} {{명령}}` - 실행 중인 Bash 세션에서 환경 변수를 설정: -`docker exec --interactive --tty --env {{변수_이름}}={{값}} {{컨테이너_이름}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--env]}} {{변수_이름}}={{값}} {{컨테이너_이름}} {{/bin/bash}}` - 특정 사용자로 명령 실행: -`docker exec --user {{사용자}} {{컨테이너_이름}} {{명령}}` +`docker exec {{[-u|--user]}} {{사용자}} {{컨테이너_이름}} {{명령}}` diff --git a/pages.ko/common/docker-inspect.md b/pages.ko/common/docker-inspect.md index ebee92091e..a8e8fdcbef 100644 --- a/pages.ko/common/docker-inspect.md +++ b/pages.ko/common/docker-inspect.md @@ -13,20 +13,20 @@ - 컨테이너의 IP 주소 표시: -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{컨테이너}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{컨테이너}}` - 컨테이너의 로그 파일 경로 표시: -`docker inspect --format='\{\{.LogPath\}\}' {{컨테이너}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{컨테이너}}` - 컨테이너의 이미지 이름 표시: -`docker inspect --format='\{\{.Config.Image\}\}' {{컨테이너}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{컨테이너}}` - JSON 형식으로 구성 정보 표시: -`docker inspect --format='\{\{json .Config\}\}' {{컨테이너}}` +`docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{컨테이너}}` - 모든 포트 바인딩 표시: -`docker inspect --format='\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{컨테이너}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{컨테이너}}` diff --git a/pages.ko/common/docker-run.md b/pages.ko/common/docker-run.md index 1887c388fd..6b6df247fd 100644 --- a/pages.ko/common/docker-run.md +++ b/pages.ko/common/docker-run.md @@ -9,23 +9,23 @@ - 백그라운드에서 새 컨테이너로 명령 실행하고 ID 표시: -`docker run --detach {{이미지}} {{명령}}` +`docker run {{[-d|--detach]}} {{이미지}} {{명령}}` - 일회성 컨테이너에서 대화형 모드와 가상 TTY로 명령 실행: -`docker run --rm --interactive --tty {{이미지}} {{명령}}` +`docker run --rm {{[-it|--interactive --tty]}} {{이미지}} {{명령}}` - 전달된 환경 변수를 사용하여 새 컨테이너로 명령 실행: -`docker run --env '{{변수}}={{값}}' --env {{변수}} {{이미지}} {{명령}}` +`docker run {{[-e|--env]}} '{{변수}}={{값}}' {{[-e|--env]}} {{변수}} {{이미지}} {{명령}}` - 바인드 마운트된 볼륨을 사용하여 새 컨테이너로 명령 실행: -`docker run --volume {{/경로/대상/호스트_경로}}:{{/경로/대상/컨테이너_경로}} {{이미지}} {{명령}}` +`docker run {{[-v|--volume]}} {{/경로/대상/호스트_경로}}:{{/경로/대상/컨테이너_경로}} {{이미지}} {{명령}}` - 게시된 포트를 사용하여 새 컨테이너로 명령 실행: -`docker run --publish {{호스트_포트}}:{{컨테이너_포트}} {{이미지}} {{명령}}` +`docker run {{[-p|--publish]}} {{호스트_포트}}:{{컨테이너_포트}} {{이미지}} {{명령}}` - 이미지의 엔트리포인트를 덮어쓰며 새 컨테이너로 명령 실행: diff --git a/pages.ne/common/docker-compose.md b/pages.ne/common/docker-compose.md index 2b29a25054..60d9940c9c 100644 --- a/pages.ne/common/docker-compose.md +++ b/pages.ne/common/docker-compose.md @@ -9,7 +9,7 @@ - हालको डाइरेक्टरीबाट `docker-compose.yml` फाइल प्रयोग गरेर पृष्ठभूमिमा सबै कन्टेनरहरू सिर्जना गर्नुहोस् र सुरु गर्नुहोस्: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - सबै कन्टेनरहरू सुरु गर्नुहोस्, आवश्यक भएमा पुन: निर्माण गर्नुहोस्: @@ -17,7 +17,7 @@ - प्रोजेक्तको नाम निर्दिष्ट गरेर र वैकल्पिक रचना फाइल प्रयोग गरेर सबै कन्टेनरहरू सुरु गर्नुहोस्: -`docker compose -p {{परियोजनाको_नाम}} --file {{फाइल/को/पथ}} up` +`docker compose {{[-p|--project-name]}} {{परियोजनाको_नाम}} {{[-f|--file]}} {{फाइल/को/पथ}} up` - चलिरहेको सबै कन्टेनरहरू रोक्नुहोस्: @@ -25,12 +25,12 @@ - सबै कन्टेनरहरू, नेटवर्कहरू, छविहरू, र भोल्युमहरू हटाउनुहोस् र रोक्नुहोस्: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - सबै कन्टेनरहरूको लागि लगहरू फलो गर्नुहोस्: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - विशेष कन्टेनरको लागि लगहरू पछ्याउनुहोस्: -`docker compose logs --follow {{कन्टेनर_नाम}}` +`docker compose logs {{[-f|--follow]}} {{कन्टेनर_नाम}}` diff --git a/pages.pt_BR/common/docker-build.md b/pages.pt_BR/common/docker-build.md index 9b64876998..b62694524b 100644 --- a/pages.pt_BR/common/docker-build.md +++ b/pages.pt_BR/common/docker-build.md @@ -13,19 +13,19 @@ - Cria uma imagem Docker e cria uma etiqueta para ela: -`docker build --tag {{nome:etiqueta}} .` +`docker build {{[-t|--tag]}} {{nome:etiqueta}} .` - Cria uma imagem Docker sem contexto de criação: -`docker build --tag {{nome:etiqueta}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{nome:etiqueta}} - < {{Dockerfile}}` - Não usa o cache na criação da imagem: -`docker build --no-cache --tag {{nome:etiqueta}} .` +`docker build --no-cache {{[-t|--tag]}} {{nome:etiqueta}} .` - Cria uma imagem Docker usando um Dockerfile específico: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Cria uma imagem Docker utilizando variáveis customizadas para a criação de imagens: diff --git a/pages.pt_BR/common/docker-commit.md b/pages.pt_BR/common/docker-commit.md index ed8f32faec..feb1e78d58 100644 --- a/pages.pt_BR/common/docker-commit.md +++ b/pages.pt_BR/common/docker-commit.md @@ -9,23 +9,23 @@ - Aplica uma instrução `CMD` do Dockerfile à imagem criada: -`docker commit --change "CMD {{comando}}" {{contêiner}} {{imagem}}:{{tag}}` +`docker commit {{[-c|--change]}} "CMD {{comando}}" {{contêiner}} {{imagem}}:{{tag}}` - Aplica uma instrução `ENV` do Dockerfile à imagem criada: -`docker commit --change "ENV {{nome}}={{valor}}" {{contêiner}} {{imagem}}:{{tag}}` +`docker commit {{[-c|--change]}} "ENV {{nome}}={{valor}}" {{contêiner}} {{imagem}}:{{tag}}` - Cria uma imagem com um autor específico nos metadados: -`docker commit --author "{{autor}}" {{contêiner}} {{imagem}}:{{tag}}` +`docker commit {{[-a|--author]}} "{{autor}}" {{contêiner}} {{imagem}}:{{tag}}` - Cria uma imagem com um comentário específico nos metadados: -`docker commit --message "{{comentário}}" {{contêiner}} {{imagem}}:{{tag}}` +`docker commit {{[-m|--message]}} "{{comentário}}" {{contêiner}} {{imagem}}:{{tag}}` - Cria uma imagem sem pausar o contêiner durante o commit: -`docker commit --pause {{false}} {{contêiner}} {{imagem}}:{{tag}}` +`docker commit {{[-p|--pause]}} {{false}} {{contêiner}} {{imagem}}:{{tag}}` - Exibe ajuda: diff --git a/pages.pt_BR/common/docker-compose.md b/pages.pt_BR/common/docker-compose.md index 445fe7c94f..abe6edc123 100644 --- a/pages.pt_BR/common/docker-compose.md +++ b/pages.pt_BR/common/docker-compose.md @@ -9,7 +9,7 @@ - Cria e inicia todos os containers em segundo plano usando um arquivo `docker-compose.yml` do seu diretório atual: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Inicia todos os containers. Se necessário, realiza um rebuild: @@ -17,7 +17,7 @@ - Inicia todos os containers especificando um nome de projeta e usando um arquivo de composição alternativo: -`docker compose -p {{nome_do_projeto}} --file {{caminho/para/arquivo}} up` +`docker compose {{[-p|--project-name]}} {{nome_do_projeto}} {{[-f|--file]}} {{caminho/para/arquivo}} up` - Encerra todos os containers em execução: @@ -25,12 +25,12 @@ - Encerra e remove todos os containers, networks, imagens e volumes: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Segue os logs de todos os containers: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Segue os logs de um container específico: -`docker compose logs --follow {{nome_container}}` +`docker compose logs {{[-f|--follow]}} {{nome_container}}` diff --git a/pages.pt_BR/common/docker-cp.md b/pages.pt_BR/common/docker-cp.md index d58329d93a..dab9660484 100644 --- a/pages.pt_BR/common/docker-cp.md +++ b/pages.pt_BR/common/docker-cp.md @@ -13,4 +13,4 @@ - 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}}` +`docker cp {{[-L|--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-exec.md b/pages.pt_BR/common/docker-exec.md index 29a1c6d218..078bf6ccf2 100644 --- a/pages.pt_BR/common/docker-exec.md +++ b/pages.pt_BR/common/docker-exec.md @@ -5,24 +5,24 @@ - Entra em uma sessão de shell interativa em um contêiner em execução: -`docker exec --interactive --tty {{nome_do_contêiner}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{nome_do_contêiner}} {{/bin/bash}}` - Executa um comando em segundo plano (detached) em um contêiner em execução: -`docker exec --detach {{nome_do_contêiner}} {{comando}}` +`docker exec {{[-d|--detach]}} {{nome_do_contêiner}} {{comando}}` - Seleciona o diretório de trabalho para a execução de um determinado comando: -`docker exec --interactive --tty --workdir {{caminho/para/diretório}} {{nome_do_contêiner}} {{comando}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{caminho/para/diretório}} {{nome_do_contêiner}} {{comando}}` - Executa um comando em segundo plano em um contêiner existente, mas mantém o `stdin` aberto: -`docker exec --interactive --detach {{nome_do_contêiner}} {{comando}}` +`docker exec {{[-i|--interactive]}} {{[-d|--detach]}} {{nome_do_contêiner}} {{comando}}` - Define uma variável de ambiente em uma sessão Bash em execução: -`docker exec --interactive --tty --env {{nome_da_variável}}={{valor}} {{nome_do_contêiner}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--env]}} {{nome_da_variável}}={{valor}} {{nome_do_contêiner}} {{/bin/bash}}` - Executa um comando como um usuário específico: -`docker exec --user {{usuário}} {{nome_do_contêiner}} {{comando}}` +`docker exec {{[-u|--user]}} {{usuário}} {{nome_do_contêiner}} {{comando}}` diff --git a/pages.pt_BR/common/docker-inspect.md b/pages.pt_BR/common/docker-inspect.md index af7d8d2e79..4c87a3ec7c 100644 --- a/pages.pt_BR/common/docker-inspect.md +++ b/pages.pt_BR/common/docker-inspect.md @@ -13,20 +13,20 @@ - Exibe o endereço IP de um contêiner: -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{contêiner}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{contêiner}}` - Exibe o caminho para o arquivo de log do contêiner: -`docker inspect --format='\{\{.LogPath\}\}' {{contêiner}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{contêiner}}` - Exibe o nome da imagem do contêiner: -`docker inspect --format='\{\{.Config.Image\}\}' {{contêiner}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{contêiner}}` - Exibe as informações de configuração como JSON: -`docker inspect --format='\{\{json .Config\}\}' {{contêiner}}` +`docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{contêiner}}` - Exibe todas as portas vinculadas: -`docker inspect --format='\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{contêiner}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{contêiner}}` diff --git a/pages.pt_BR/common/docker-run.md b/pages.pt_BR/common/docker-run.md index a43f3f7e24..2005309e1a 100644 --- a/pages.pt_BR/common/docker-run.md +++ b/pages.pt_BR/common/docker-run.md @@ -9,23 +9,23 @@ - Executa um comando em um novo container em background e exibe o ID: -`docker run --detach {{image}} {{command}}` +`docker run {{[-d|--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 --interactive --tty {{image}} {{command}}` +`docker run --rm {{[-it|--interactive --tty]}} {{image}} {{command}}` - Executa um comando em um novo container com variáveis de ambiente: -`docker run --env '{{variável}}={{valor}}' --env {{variável}} {{imagem}} {{comando}}` +`docker run {{[-e|--env]}} '{{variável}}={{valor}}' {{[-e|--env]}} {{variável}} {{imagem}} {{comando}}` - Executa um comando em um novo container montando volumes nos caminhos específicos: -`docker run --volume {{caminho/no/host_local}}:{{caminho/no/container}} {{imagem}} {{comando}}` +`docker run {{[-v|--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 --publish {{porta_do_host_local}}:{{porta_do_container}} {{imagem}} {{comando}}` +`docker run {{[-p|--publish]}} {{porta_do_host_local}}:{{porta_do_container}} {{imagem}} {{comando}}` - Executa um comando em um novo container sobrescrevendo o entrypoint da imagem: diff --git a/pages.tr/common/docker-build.md b/pages.tr/common/docker-build.md index 066e912e71..7ef9948c20 100644 --- a/pages.tr/common/docker-build.md +++ b/pages.tr/common/docker-build.md @@ -13,15 +13,15 @@ - Bir Docker imgesi oluşturun ve etiketleyin: -`docker build --tag {{isim:etiket}} .` +`docker build {{[-t|--tag]}} {{isim:etiket}} .` - İmge oluştururken çerez kullanımını etkisizleştirin: -`docker build --no-cache --tag {{isim:etiket}} .` +`docker build --no-cache {{[-t|--tag]}} {{isim:etiket}} .` - Belirtilen Dockerfile ile bir Docker imgesi oluşturun: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - Kişiselleştirilmiş yapım-zaman değerleriyle oluşturun: diff --git a/pages.tr/common/docker-compose.md b/pages.tr/common/docker-compose.md index faf24c0f2f..fcf9ca0422 100644 --- a/pages.tr/common/docker-compose.md +++ b/pages.tr/common/docker-compose.md @@ -9,7 +9,7 @@ - Mevcut dizinde bir `docker-compose.yml` dosyası çalıştırarak arkaplandaki tüm konteynerleri çalıştırın ve başlatın: -`docker compose up --detach` +`docker compose up {{[-d|--detach]}}` - Tüm konteynerleri çalıştırın ve gerekiyorsa yeniden oluşturun: @@ -17,7 +17,7 @@ - Tüm konteynerleri alternatif bir beste dosyasıyla başlatın: -`docker compose -p {{proje Adı}} --file {{yoldan/dosyaya}} up` +`docker compose {{[-p|--project-name]}} {{proje Adı}} {{[-f|--file]}} {{yoldan/dosyaya}} up` - Çalışan tüm konteynerleri durdurun: @@ -25,12 +25,12 @@ - Tüm konteynerleri, ağları, imgeleri ve alanları durdurun ve silin: -`docker compose down --rmi all --volumes` +`docker compose down --rmi all {{[-v|--volumes]}}` - Tüm konteynerler için logları takip edin: -`docker compose logs --follow` +`docker compose logs {{[-f|--follow]}}` - Belirtilmiş bir konteyner için logları takip edin: -`docker compose logs --follow {{konteyner_ismi}}` +`docker compose logs {{[-f|--follow]}} {{konteyner_ismi}}` diff --git a/pages.tr/common/docker-exec.md b/pages.tr/common/docker-exec.md index 22c2246c95..f87279491f 100644 --- a/pages.tr/common/docker-exec.md +++ b/pages.tr/common/docker-exec.md @@ -5,24 +5,24 @@ - Halihazırda çalışan bir konteynerin üstünde interaktif bir kabuk oturumunu çalıştır: -`docker exec --interactive --tty {{konteyner_ismi}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{konteyner_ismi}} {{/bin/bash}}` - Halihazırda çalışan bir konteynerin üstüne arkaplanda çalışmak üzere (ayrılmış) bir komut çalıştır: -`docker exec --detach {{konteyner_ismi}} {{komut}}` +`docker exec {{[-d|--detach]}} {{konteyner_ismi}} {{komut}}` - Belirtilen bir komutu üstünde çalıştırmak adına çalışan dizini seç: -`docker exec --interactive --tty --workdir {{örnek/dizin}} {{konteyner_ismi}} {{komut}}` +`docker exec {{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{örnek/dizin}} {{konteyner_ismi}} {{komut}}` - Varolan konteyner üstünde arkaplanda çalışmak üzere bir komut çalıştır ancak `stdin`'i açık tut: -`docker exec --interactive --detach {{konteyner_ismi}} {{komut}}` +`docker exec {{[-i|--interactive]}} {{[-d|--detach]}} {{konteyner_ismi}} {{komut}}` - Çalışmakta olan bir Bash oturumu içinde bir çevre değişkeni belirle: -`docker exec --interactive --tty --env {{değişken_ismi}}={{value}} {{konteyner_ismi}} {{/bin/bash}}` +`docker exec {{[-it|--interactive --tty]}} {{[-e|--env]}} {{değişken_ismi}}={{value}} {{konteyner_ismi}} {{/bin/bash}}` - Belirtilmiş bir kullanıcı olarak komut çalıştır: -`docker exec --user {{kullanıcı}} {{konteyner_ismi}} {{komut}}` +`docker exec {{[-u|--user]}} {{kullanıcı}} {{konteyner_ismi}} {{komut}}` diff --git a/pages.tr/common/docker-inspect.md b/pages.tr/common/docker-inspect.md index 7e49cd4555..05c8e09cdb 100644 --- a/pages.tr/common/docker-inspect.md +++ b/pages.tr/common/docker-inspect.md @@ -13,20 +13,20 @@ - Bir konteynerin IP adresini görüntüle: -`docker inspect --format '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{konteyner}}` +`docker inspect {{[-f|--format]}} '\{\{range.NetworkSettings.Networks\}\}\{\{.IPAddress\}\}\{\{end\}\}' {{konteyner}}` - Konteynerin log dosyasının yolunu görüntüle: -`docker inspect --format='\{\{.LogPath\}\}' {{konteyner}}` +`docker inspect {{[-f|--format]}} '\{\{.LogPath\}\}' {{konteyner}}` - Konteynerin imge ismini görüntüle: -`docker inspect --format='\{\{.Config.Image\}\}' {{konteyner}}` +`docker inspect {{[-f|--format]}} '\{\{.Config.Image\}\}' {{konteyner}}` - Konfigürasyon bilgisini JSON olarak görüntüle: -`docker inspect --format='\{\{json .Config\}\}' {{konteyner}}` +`docker inspect {{[-f|--format]}} '\{\{json .Config\}\}' {{konteyner}}` - Tüm port limanlayıcıları görüntüle: -`docker inspect --format='\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{konteyner}}` +`docker inspect {{[-f|--format]}} '\{\{range $p, $conf := .NetworkSettings.Ports\}\} \{\{$p\}\} -> \{\{(index $conf 0).HostPort\}\} \{\{end\}\}' {{konteyner}}` diff --git a/pages.tr/common/docker-run.md b/pages.tr/common/docker-run.md index 5f784712ff..827c3aeaf7 100644 --- a/pages.tr/common/docker-run.md +++ b/pages.tr/common/docker-run.md @@ -9,20 +9,20 @@ - Yeni bir konteynerde arkaplanda çalışacak şekilde komut çalıştır ve ID'sini göster: -`docker run --detach {{imge}} {{komut}}` +`docker run {{[-d|--detach]}} {{imge}} {{komut}}` - İnteraktif mod ve pseudo-TTY'deki bir açık-kapalı konteynerde komut çalıştır: -`docker run --rm --interactive --tty {{imge}} {{komut}}` +`docker run --rm {{[-it|--interactive --tty]}} {{imge}} {{komut}}` - Yeni bir konteynerde geçebilmiş çevresel değişkenler ile komut çalıştır: -`docker run --env '{{değişken}}={{değer}}' --env {{değişken}} {{imge}} {{komut}}` +`docker run {{[-e|--env]}} '{{değişken}}={{değer}}' {{[-e|--env]}} {{değişken}} {{imge}} {{komut}}` - Yeni bir konteynerde bağlama takılı hacimlerle komut çalıştır: -`docker run --volume {{örnek/host}}:{{örnek/konteyner}} {{imge}} {{komut}}` +`docker run {{[-v|--volume]}} {{örnek/host}}:{{örnek/konteyner}} {{imge}} {{komut}}` - Yayınlanmış portları içeren yeni bir konteynerde komut çalıştır: -`docker run --publish {{host_portu}}:{{konteyner_portu}} {{imge}} {{komut}}` +`docker run {{[-p|--publish]}} {{host_portu}}:{{konteyner_portu}} {{imge}} {{komut}}` diff --git a/pages.zh/common/docker-build.md b/pages.zh/common/docker-build.md index c1a519a2fc..35de08d24a 100644 --- a/pages.zh/common/docker-build.md +++ b/pages.zh/common/docker-build.md @@ -13,19 +13,19 @@ - 打包一个 Docker 镜像并指定镜像的标签: -`docker build --tag {{name:tag}} .` +`docker build {{[-t|--tag]}} {{name:tag}} .` - 打包一个没有上下文的 Docker 镜像: -`docker build --tag {{name:tag}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{name:tag}} - < {{Dockerfile}}` - 打包镜像时不使用缓存: -`docker build --no-cache --tag {{name:tag}} .` +`docker build --no-cache {{[-t|--tag]}} {{name:tag}} .` - 使用指定的 Dockerfile 打包一个 Docker 镜像: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - 传入自定义变量用于打包: diff --git a/pages.zh/common/docker-run.md b/pages.zh/common/docker-run.md index 5ed48f3f26..06e7c508b5 100644 --- a/pages.zh/common/docker-run.md +++ b/pages.zh/common/docker-run.md @@ -9,23 +9,23 @@ - 在后台运行新容器中的命令,并输出其容器ID: -`docker run --detach {{镜像}} {{命令}}` +`docker run {{[-d|--detach]}} {{镜像}} {{命令}}` - 以交互模式和伪终端启动一个容器,并执行指定的命令: -`docker run --rm --interactive --tty {{镜像}} {{命令}}` +`docker run --rm {{[-it|--interactive --tty]}} {{镜像}} {{命令}}` - 在新容器中传入环境变量并运行指定命令: -`docker run --env '{{变量名}}={{变量值}}' --env {{变量名=变量值}} {{镜像}} {{命令}}` +`docker run {{[-e|--env]}} '{{变量名}}={{变量值}}' {{[-e|--env]}} {{变量名=变量值}} {{镜像}} {{命令}}` - 在新容器中挂载目录卷并运行指定命令: -`docker run --volume {{宿主机路径}}:{{容器内路径}} {{镜像}} {{命令}}` +`docker run {{[-v|--volume]}} {{宿主机路径}}:{{容器内路径}} {{镜像}} {{命令}}` - 在新容器中开放映射端口并运行指定命令: -`docker run --publish {{宿主机端口}}:{{容器内端口}} {{镜像}} {{命令}}` +`docker run {{[-p|--publish]}} {{宿主机端口}}:{{容器内端口}} {{镜像}} {{命令}}` - 在新容器中覆盖镜像中 ENTRYPOINT 并运行指定命令: diff --git a/pages.zh_TW/common/docker-build.md b/pages.zh_TW/common/docker-build.md index 017d770d8f..8d254914a7 100644 --- a/pages.zh_TW/common/docker-build.md +++ b/pages.zh_TW/common/docker-build.md @@ -13,19 +13,19 @@ - 建立 Docker 映像檔並加上標籤: -`docker build --tag {{名稱:標籤}} .` +`docker build {{[-t|--tag]}} {{名稱:標籤}} .` - 不使用建構上下文(Build Context)來建立映像檔: -`docker build --tag {{名稱:標籤}} - < {{Dockerfile}}` +`docker build {{[-t|--tag]}} {{名稱:標籤}} - < {{Dockerfile}}` - 在建構映像檔時不使用快取: -`docker build --no-cache --tag {{名稱:標籤}} .` +`docker build --no-cache {{[-t|--tag]}} {{名稱:標籤}} .` - 使用特定的 Dockerfile 來建構映像檔: -`docker build --file {{Dockerfile}} .` +`docker build {{[-f|--file]}} {{Dockerfile}} .` - 在建構時傳遞自訂的變數: diff --git a/pages/common/docker-run.md b/pages/common/docker-run.md index c2126303cd..b2b99ad2f0 100644 --- a/pages/common/docker-run.md +++ b/pages/common/docker-run.md @@ -13,7 +13,7 @@ - Run command in a one-off container in interactive mode and pseudo-TTY: -`docker run --rm {{[-i|--interactive]}} {{[-t|--tty]}} {{image}} {{command}}` +`docker run --rm {{[-it|--interactive --tty]}} {{image}} {{command}}` - Run command in a new container with passed environment variables: From 8e1fcd4895fb874d4bd1cfcfd2a80c0ae9d7e2ac Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 4 Jun 2025 19:18:01 +0200 Subject: [PATCH 138/141] ansible-*: update outdated translations (#16739) --- pages.de/common/ansible-doc.md | 10 +++++----- pages.de/common/ansible-inventory.md | 4 ++-- pages.de/common/ansible-playbook.md | 8 ++++---- pages.de/common/ansible-pull.md | 8 ++++---- pages.es/common/ansible-doc.md | 10 +++++----- pages.es/common/ansible-inventory.md | 4 ++-- pages.es/common/ansible-pull.md | 8 ++++---- pages.fr/common/ansible-doc.md | 10 +++++----- pages.fr/common/ansible-inventory.md | 4 ++-- pages.fr/common/ansible-playbook.md | 8 ++++---- pages.fr/common/ansible-pull.md | 8 ++++---- pages.id/common/ansible-doc.md | 10 +++++----- pages.id/common/ansible-inventory.md | 4 ++-- pages.id/common/ansible-playbook.md | 10 +++++----- pages.id/common/ansible-pull.md | 8 ++++---- pages.it/common/ansible-playbook.md | 6 +++--- pages.ko/common/ansible-doc.md | 10 +++++----- pages.ko/common/ansible-inventory.md | 4 ++-- pages.ko/common/ansible-playbook.md | 10 +++++----- pages.ko/common/ansible-pull.md | 8 ++++---- pages.zh/common/ansible-playbook.md | 10 +++++----- 21 files changed, 81 insertions(+), 81 deletions(-) diff --git a/pages.de/common/ansible-doc.md b/pages.de/common/ansible-doc.md index 8e1b6f8001..311a1bda53 100644 --- a/pages.de/common/ansible-doc.md +++ b/pages.de/common/ansible-doc.md @@ -6,11 +6,11 @@ - Auflisten der verfügbaren Aktions-Plugin (Module): -`ansible-doc --list` +`ansible-doc {{[-l|--list]}}` - Auflisten der verfügbare Plugins eines bestimmten Typs: -`ansible-doc --type {{plugin_typ}} --list` +`ansible-doc {{[-t|--type]}} {{plugin_typ}} {{[-l|--list]}}` - Anzeigen von Informationen über ein bestimmtes Aktions-Plugin (Module): @@ -18,12 +18,12 @@ - Anzeigen von Informationen über ein Plugin mit einem betimmten Typ: -`ansible-doc --type {{plugin_typ}} {{plugin_name}}` +`ansible-doc {{[-t|--type]}} {{plugin_typ}} {{plugin_name}}` - Anzeigen des Playbookausschnittes für ein Actions-Plugin (Module): -`ansible-doc --snippet {{plugin_name}}` +`ansible-doc {{[-s|--snippet]}} {{plugin_name}}` - Anzeigen von Informationen über ein Aktions-Plugin (Module) als JSON: -`ansible-doc --json {{plugin_name}}` +`ansible-doc {{[-j|--json]}} {{plugin_name}}` diff --git a/pages.de/common/ansible-inventory.md b/pages.de/common/ansible-inventory.md index e260f9264e..f71306517c 100644 --- a/pages.de/common/ansible-inventory.md +++ b/pages.de/common/ansible-inventory.md @@ -10,11 +10,11 @@ - Anzeigen eines Benutzerdefinierten Inventars: -`ansible-inventory --list --inventory {{pfad/zu/datei_oder_skript_oder_verzeichnis}}` +`ansible-inventory --list {{[-i|--inventory-file]}} {{pfad/zu/datei_oder_skript_oder_verzeichnis}}` - Anzeigen des Standardinventars in YAML: -`ansible-inventory --list --yaml` +`ansible-inventory --list {{[-y|--yaml]}}` - Ausgabe des Standardinventars in eine Datei: diff --git a/pages.de/common/ansible-playbook.md b/pages.de/common/ansible-playbook.md index f705c74df6..e6dc4b8020 100644 --- a/pages.de/common/ansible-playbook.md +++ b/pages.de/common/ansible-playbook.md @@ -9,19 +9,19 @@ - Führe Aufgaben im Playbook mit benutzerdefiniertem Host-Bestand aus: -`ansible-playbook {{playbook}} -i {{inventory_datei}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{inventory_datei}}` - Führe Aufgaben im Playbook aus, wobei zusätzliche Variablen über die Befehlszeile definiert werden: -`ansible-playbook {{playbook}} -e "{{variable1}}={{wert1}} {{variable2}}={{wert2}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{variable1}}={{wert1}} {{variable2}}={{wert2}}"` - Führe Aufgaben in Playbook mit zusätzlichen Variablen aus, die in einer JSON-Datei definiert sind: -`ansible-playbook {{playbook}} -e "@{{variablen.json}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{variablen.json}}"` - Führe Aufgaben im Playbook für die angegebenen Tags aus: -`ansible-playbook {{playbook}} --tags {{tag1,tag2}}` +`ansible-playbook {{playbook}} {{[-t|--tags|]}} {{tag1,tag2}}` - Führe Aufgaben in einem Playbook aus, die mit einer bestimmten Aufgabe beginnen: diff --git a/pages.de/common/ansible-pull.md b/pages.de/common/ansible-pull.md index 3eebfa54b0..4f0081c630 100644 --- a/pages.de/common/ansible-pull.md +++ b/pages.de/common/ansible-pull.md @@ -5,16 +5,16 @@ - Laden eines Playbooks aus einem VCS und ausführen des standardmässigen local.yml Playbooks: -`ansible-pull -U {{repository_url}}` +`ansible-pull {{[-U|--url]}} {{repository_url}}` - Laden eines Playbooks aus einem VCS und ausführen eines spezifischen Playbooks: -`ansible-pull -U {{repository_url}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{repository_url}} {{[-C|--checkout]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{repository_url}} {{[-i|--inventory]}} {{hosts_datei}} {{playbook}}` diff --git a/pages.es/common/ansible-doc.md b/pages.es/common/ansible-doc.md index 02fa3a88b3..4fc36d00f2 100644 --- a/pages.es/common/ansible-doc.md +++ b/pages.es/common/ansible-doc.md @@ -6,11 +6,11 @@ - Lista de complementos disponibles acorde a su acción (módulos): -`ansible-doc --list` +`ansible-doc {{[-l|--list]}}` - Lista de complementos disponibles dado un tipo específico: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} --list` +`ansible-doc {{[-t|--type]}} {{become|cache|callback|cliconf|connection|...}} {{[-l|--list]}}` - Muestra información sobre un complemento acorde a su acción específica (módulo): @@ -18,12 +18,12 @@ - Muestra información acerca de un complemento dado un tipo específico: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} {{nombre_complemento}}` +`ansible-doc {{[-t|--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}}` +`ansible-doc {{[-s|--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}}` +`ansible-doc {{[-j|--json]}} {{nombre_complemento}}` diff --git a/pages.es/common/ansible-inventory.md b/pages.es/common/ansible-inventory.md index 39278d8d6f..f77713c6d5 100644 --- a/pages.es/common/ansible-inventory.md +++ b/pages.es/common/ansible-inventory.md @@ -10,11 +10,11 @@ - Muestra un inventario personalizado: -`ansible-inventory --list --inventory {{ruta/al/archivo_o_script_o_directorio}}` +`ansible-inventory --list {{[-i|--inventory-file]}} {{ruta/al/archivo_o_script_o_directorio}}` - Muestra el inventario por defecto en YAML: -`ansible-inventory --list --yaml` +`ansible-inventory --list {{[-y|--yaml]}}` - Vuelca el inventario por defecto a un fichero: diff --git a/pages.es/common/ansible-pull.md b/pages.es/common/ansible-pull.md index a5b3d2aad9..5841eca704 100644 --- a/pages.es/common/ansible-pull.md +++ b/pages.es/common/ansible-pull.md @@ -5,16 +5,16 @@ - Extrae un playbook de un VCS y ejecuta local.yml del playbook por defecto: -`ansible-pull -U {{url_repositorio}}` +`ansible-pull {{[-U|--url]}} {{url_repositorio}}` - Extrae un playbook de un VCS y ejecuta un playbook específico: -`ansible-pull -U {{url_repositorio}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{url_repositorio}} {{[-C|--checkout]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{url_repositorio}} {{[-i|--inventory]}} {{archivo_hosts}} {{playbook}}` diff --git a/pages.fr/common/ansible-doc.md b/pages.fr/common/ansible-doc.md index 9d3a202ba4..538aaf5026 100644 --- a/pages.fr/common/ansible-doc.md +++ b/pages.fr/common/ansible-doc.md @@ -6,11 +6,11 @@ - Liste les plugins action (modules) disponibles : -`ansible-doc --list` +`ansible-doc {{[-l|--list]}}` - Liste les plugins disponible d'un certain type : -`ansible-doc --type {{type_de_plugin}} --list` +`ansible-doc {{[-t|--type]}} {{type_de_plugin}} {{[-l|--list]}}` - Affiche les informations sur un plugin action (module) spécifique : @@ -18,12 +18,12 @@ - Affiche les informations sur un plugin avec un certain type : -`ansible-doc --type {{type_de_plugin}} {{nom_du_plugin}}` +`ansible-doc {{[-t|--type]}} {{type_de_plugin}} {{nom_du_plugin}}` - Affiche le raccourci playbook d'un plugin action (module) : -`ansible-doc --snippet {{nom_du_plugin}}` +`ansible-doc {{[-s|--snippet]}} {{nom_du_plugin}}` - Affiche les informations sur un plugin action (module) en JSON : -`ansible-doc --json {{nom_du_plugin}}` +`ansible-doc {{[-j|--json]}} {{nom_du_plugin}}` diff --git a/pages.fr/common/ansible-inventory.md b/pages.fr/common/ansible-inventory.md index 82c816078c..db3168c113 100644 --- a/pages.fr/common/ansible-inventory.md +++ b/pages.fr/common/ansible-inventory.md @@ -10,11 +10,11 @@ - Affiche un inventaire spécifique : -`ansible-inventory --list --inventory {{chemin/vers/fichier_ou_script_ou_dossier}}` +`ansible-inventory --list {{[-i|--inventory-file]}} {{chemin/vers/fichier_ou_script_ou_dossier}}` - Affiche l'inventaire par défaut en YAML : -`ansible-inventory --list --yaml` +`ansible-inventory --list {{[-y|--yaml]}}` - Sauvegarde l'inventaire par défaut dans un fichier : diff --git a/pages.fr/common/ansible-playbook.md b/pages.fr/common/ansible-playbook.md index 560ca1518d..7d813a4765 100644 --- a/pages.fr/common/ansible-playbook.md +++ b/pages.fr/common/ansible-playbook.md @@ -9,19 +9,19 @@ - Exécute les tâches d'un playbook avec fichier d'inventaire spécifié : -`ansible-playbook {{playbook}} -i {{fichier_d_inventaire}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{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}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{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}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{variables.json}}"` - Exécute les tâches d'un playbook pour certain tags : -`ansible-playbook {{playbook}} --tags {{tag1,tag2}}` +`ansible-playbook {{playbook}} {{[-t|--tags|]}} {{tag1,tag2}}` - Exécute les tâches d'un playbook en démarrant depuis une certaine tache : diff --git a/pages.fr/common/ansible-pull.md b/pages.fr/common/ansible-pull.md index f86b09d4f9..10d62737fe 100644 --- a/pages.fr/common/ansible-pull.md +++ b/pages.fr/common/ansible-pull.md @@ -5,16 +5,16 @@ - 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}}` +`ansible-pull {{[-U|--url]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{url_du_dépôt}} {{[-C|--checkout]}} {{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}}` +`ansible-pull {{[-U|--url]}} {{url_du_dépôt}} {{[-i|--inventory]}} {{fichier_hôtes}} {{playbook}}` diff --git a/pages.id/common/ansible-doc.md b/pages.id/common/ansible-doc.md index b73864068e..67b76915e7 100644 --- a/pages.id/common/ansible-doc.md +++ b/pages.id/common/ansible-doc.md @@ -6,11 +6,11 @@ - Tampilkan daftar modul/plugin yang tersedia: -`ansible-doc --list` +`ansible-doc {{[-l|--list]}}` - Tampilkan daftar modul/plugin berdasarkan jenisnya: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} --list` +`ansible-doc {{[-t|--type]}} {{become|cache|callback|cliconf|connection|...}} {{[-l|--list]}}` - Tampilkan informasi mengenai suatu modul/plugin: @@ -18,12 +18,12 @@ - Tampilkan informasi mengenai suatu modul/plugin berdasarkan jenis spesifiknya: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} {{nama_plugin}}` +`ansible-doc {{[-t|--type]}} {{become|cache|callback|cliconf|connection|...}} {{nama_plugin}}` - Lihat contoh cara penggunaan (dalam playbook) bagi suatu modul/plugin: -`ansible-doc --snippet {{nama_plugin}}` +`ansible-doc {{[-s|--snippet]}} {{nama_plugin}}` - Tampilkan informasi mengenai suatu plugin/modul dalam format JSON: -`ansible-doc --json {{nama_plugin}}` +`ansible-doc {{[-j|--json]}} {{nama_plugin}}` diff --git a/pages.id/common/ansible-inventory.md b/pages.id/common/ansible-inventory.md index 595ba0037c..1bf1012dda 100644 --- a/pages.id/common/ansible-inventory.md +++ b/pages.id/common/ansible-inventory.md @@ -10,11 +10,11 @@ - Tampilkan suatu inventaris kustom: -`ansible-inventory --list --inventory {{jalan/menuju/berkas_atau_skrip_atau_direktori}}` +`ansible-inventory --list {{[-i|--inventory-file]}} {{jalan/menuju/berkas_atau_skrip_atau_direktori}}` - Tampilkan informasi inventaris default dalam format YAML: -`ansible-inventory --list --yaml` +`ansible-inventory --list {{[-y|--yaml]}}` - Simpan informasi inventaris default ke dalam suatu berkas teks: diff --git a/pages.id/common/ansible-playbook.md b/pages.id/common/ansible-playbook.md index 4b54466206..5128892a53 100644 --- a/pages.id/common/ansible-playbook.md +++ b/pages.id/common/ansible-playbook.md @@ -9,19 +9,19 @@ - Jalankan kumpulan tugas playbook dengan [i]nventaris mesin secara kustom: -`ansible-playbook {{playbook}} -i {{berkas_inventaris}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{berkas_inventaris}}` - Jalankan kumpulan tugas playbook dengan variabel [e]kstra sebagaimana didefinisikan dalam barisan perintah (command-line): -`ansible-playbook {{playbook}} -e "{{variabel1}}={{nilai1}} {{variabel2}}={{nilai2}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{variabel1}}={{nilai1}} {{variabel2}}={{nilai2}}"` - Jalankan kumpulan tugas playbook dengan variabel [e]kstra sebagaimana didefinisikan di dalam suatu berkas JSON: -`ansible-playbook {{playbook}} -e "@{{daftar_variabel.json}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{daftar_variabel.json}}"` - Jalankan kumpulan tugas playbook dengan konfigurasi tag tertentu: -`ansible-playbook {{playbook}} --tags {{tag1,tag2}}` +`ansible-playbook {{playbook}} {{[-t|--tags|]}} {{tag1,tag2}}` - Jalankan kumpulan tugas playbook, dimulai dari nama tugas spesifik: @@ -29,4 +29,4 @@ - Jalankan kumpulan tugas playbook tanpa melakukan perubahan sebenarnya (dry-run): -`ansible-playbook {{playbook}} --check --diff` +`ansible-playbook {{playbook}} {{[-C|--check|]}} {{[-D|--diff|]}}` diff --git a/pages.id/common/ansible-pull.md b/pages.id/common/ansible-pull.md index bad86ea55f..386c15a944 100644 --- a/pages.id/common/ansible-pull.md +++ b/pages.id/common/ansible-pull.md @@ -5,16 +5,16 @@ - Tarik suatu playbook dari repositori VCS, kemudian jalankan aturan default dari playbook local.yml: -`ansible-pull -U {{url_repositori}}` +`ansible-pull {{[-U|--url]}} {{url_repositori}}` - Tarik suatu playbook dari repositori VCS, kemudian jalankan aturan playbook dengan nama tertentu: -`ansible-pull -U {{url_repositori}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{url_repositori}} {{playbook}}` - Tarik suatu playbook dari [C]abang tertentu pada repositori VCS, kemudian jalankan aturan playbook dengan nama tertentu: -`ansible-pull -U {{url_repositori}} -C {{cabang}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{url_repositori}} {{[-C|--checkout]}} {{cabang}} {{playbook}}` - Tarik suatu playbook dari repositori VCS, kemudian definisikan daftar perangkat/host dari suatu berkas (hosts), kemudian jalankan aturan playbook dengan nama tertentu: -`ansible-pull -U {{url_repositori}} -i {{berkas_hosts}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{url_repositori}} {{[-i|--inventory]}} {{berkas_hosts}} {{playbook}}` diff --git a/pages.it/common/ansible-playbook.md b/pages.it/common/ansible-playbook.md index e49204b622..8030fe8aef 100644 --- a/pages.it/common/ansible-playbook.md +++ b/pages.it/common/ansible-playbook.md @@ -9,12 +9,12 @@ - Esegui task nel playbook con un inventory personalizzato: -`ansible-playbook {{playbook}} -i {{inventory}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{inventory}}` - Esegui task nel playvook con variabili aggiuntive definite da linea di comando: -`ansible-playbook {{playbook}} -e "{{variabile1}}={{valore1}} {{variabile2}}={{valore2}} ..."` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{variabile1}}={{valore1}} {{variabile2}}={{valore2}} ..."` - Esegui task nel playbook con variabili aggiuntive definite in un file JSON: -`ansible-playbook {{playbook}} -e "@{{variabili.json}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{variabili.json}}"` diff --git a/pages.ko/common/ansible-doc.md b/pages.ko/common/ansible-doc.md index 2c6d00f818..41c81108f2 100644 --- a/pages.ko/common/ansible-doc.md +++ b/pages.ko/common/ansible-doc.md @@ -6,11 +6,11 @@ - 사용 가능한 작업 플러그인(모듈) 목록: -`ansible-doc --list` +`ansible-doc {{[-l|--list]}}` - 특정 유형의 사용 가능한 플러그인을 나열: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} --list` +`ansible-doc {{[-t|--type]}} {{become|cache|callback|cliconf|connection|...}} {{[-l|--list]}}` - 특정 작업 플러그인(모듈)에 대한 정보 표시: @@ -18,12 +18,12 @@ - 특정 유형의 플러그인에 대한 정보 표시: -`ansible-doc --type {{become|cache|callback|cliconf|connection|...}} {{플러그인_이름}}` +`ansible-doc {{[-t|--type]}} {{become|cache|callback|cliconf|connection|...}} {{플러그인_이름}}` - 액션 플러그인(모듈)에 대한 플레이북 스니펫 표시: -`ansible-doc --snippet {{플러그인_이름}}` +`ansible-doc {{[-s|--snippet]}} {{플러그인_이름}}` - 액션 플러그인(모듈)에 대한 정보를 JSON으로 표시: -`ansible-doc --json {{플러그인_이름}}` +`ansible-doc {{[-j|--json]}} {{플러그인_이름}}` diff --git a/pages.ko/common/ansible-inventory.md b/pages.ko/common/ansible-inventory.md index d83bdac284..5dee3e557d 100644 --- a/pages.ko/common/ansible-inventory.md +++ b/pages.ko/common/ansible-inventory.md @@ -10,11 +10,11 @@ - 사용자 지정 인벤토리를 표시: -`ansible-inventory --list --inventory {{경로/대상/파일_또는_스크립트_또는_디렉토리}}` +`ansible-inventory --list {{[-i|--inventory-file]}} {{경로/대상/파일_또는_스크립트_또는_디렉토리}}` - YAML에서 기본 인벤토리를 표시: -`ansible-inventory --list --yaml` +`ansible-inventory --list {{[-y|--yaml]}}` - 기본 인벤토리를 파일에 덤프: diff --git a/pages.ko/common/ansible-playbook.md b/pages.ko/common/ansible-playbook.md index 0be00e2833..3423e978bb 100644 --- a/pages.ko/common/ansible-playbook.md +++ b/pages.ko/common/ansible-playbook.md @@ -9,19 +9,19 @@ - 사용자 정의 호스트 인벤토리를 포함한 playbook에서 작업 실행: -`ansible-playbook {{playbook}} -i {{인벤토리_파일}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{인벤토리_파일}}` - 명령어로 정의된 추가 변수를 사용하여 playbook에서 작업 실행: -`ansible-playbook {{playbook}} -e "{{변수1}}={{값1}} {{변수2}}={{값2}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{변수1}}={{값1}} {{변수2}}={{값2}}"` - json 파일에 정의된 추가 변수를 사용하여 playbook에서 작업 실행: -`ansible-playbook {{playbook}} -e "@{{변수.json}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{변수.json}}"` - 지정된 태그에 대해 플레이북에서 작업 실행: -`ansible-playbook {{playbook}} --tags {{태그1,태그2}}` +`ansible-playbook {{playbook}} {{[-t|--tags|]}} {{태그1,태그2}}` - 특정 작업에서 시작하는 playbook에서 작업 실행: @@ -29,4 +29,4 @@ - 변경사항을 적용하지 않고 플레이북에서 작업 실행(dry-run): -`ansible-playbook {{playbook}} --check --diff` +`ansible-playbook {{playbook}} {{[-C|--check|]}} {{[-D|--diff|]}}` diff --git a/pages.ko/common/ansible-pull.md b/pages.ko/common/ansible-pull.md index 4bbef3498c..a30b8d8164 100644 --- a/pages.ko/common/ansible-pull.md +++ b/pages.ko/common/ansible-pull.md @@ -5,16 +5,16 @@ - VCS에서 플레이북을 가져와 기본 local.yml playbook을 실행: -`ansible-pull -U {{저장소_url}}` +`ansible-pull {{[-U|--url]}} {{저장소_url}}` - VCS에서 플레이북을 가져와 특정 플레이북을 실행: -`ansible-pull -U {{저장소_url}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{저장소_url}} {{playbook}}` - 특정 지점의 VCS에서 플레이북을 가져와 특정 플레이북을 실행: -`ansible-pull -U {{저장소_url}} -C {{branch}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{저장소_url}} {{[-C|--checkout]}} {{branch}} {{playbook}}` - VCS에서 플레이북을 가져오고, 호스트 파일을 지정하고 특정 플레이북을 실행: -`ansible-pull -U {{저장소_url}} -i {{hosts_file}} {{playbook}}` +`ansible-pull {{[-U|--url]}} {{저장소_url}} {{[-i|--inventory]}} {{hosts_file}} {{playbook}}` diff --git a/pages.zh/common/ansible-playbook.md b/pages.zh/common/ansible-playbook.md index e8ec4fb68c..8bf999013e 100644 --- a/pages.zh/common/ansible-playbook.md +++ b/pages.zh/common/ansible-playbook.md @@ -9,19 +9,19 @@ - 使用自定义主机清单执行 playbook 中的任务: -`ansible-playbook {{playbook}} -i {{清单文件}}` +`ansible-playbook {{playbook}} {{[-i|--inventory]}} {{清单文件}}` - 使用通过命令行定义的额外变量执行 playbook 中的任务: -`ansible-playbook {{playbook}} -e "{{变量1}}={{值1}} {{变量2}}={{值2}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "{{变量1}}={{值1}} {{变量2}}={{值2}}"` - 使用在 JSON 文件中定义的额外变量执行 playbook 中的任务: -`ansible-playbook {{playbook}} -e "@{{变量.json}}"` +`ansible-playbook {{playbook}} {{[-e|--extra-vars]}} "@{{变量.json}}"` - 执行 playbook 中的指定标签的任务: -`ansible-playbook {{playbook}} --tags {{标签1,标签2}}` +`ansible-playbook {{playbook}} {{[-t|--tags|]}} {{标签1,标签2}}` - 从指定任务开始执行 playbook 中的任务: @@ -29,4 +29,4 @@ - 以不做任何更改(试执行)方式执行 playbook 中的任务: -`ansible-playbook {{playbook}} --check --diff` +`ansible-playbook {{playbook}} {{[-C|--check|]}} {{[-D|--diff|]}}` From ca5ac48674b9da9c5290c476292c36e304d663ad Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Wed, 4 Jun 2025 19:19:26 +0200 Subject: [PATCH 139/141] keybase: update translations (#16678) --- pages.es/common/next.md | 8 ++++---- pages.ko/common/next.md | 8 ++++---- pages.pt_BR/common/next.md | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pages.es/common/next.md b/pages.es/common/next.md index 437b9bf966..82eb8176e8 100644 --- a/pages.es/common/next.md +++ b/pages.es/common/next.md @@ -1,7 +1,7 @@ # next > Framework React que utiliza el renderizado del lado del servidor para crear aplicaciones web optimizadas. -> Más información: . +> Más información: . - Inicia la aplicación actual en modo de desarrollo: @@ -9,7 +9,7 @@ - Inicia la aplicación actual y escucha en un puerto específico: -`next dev --port {{puerto}}` +`next dev {{[-p|--port]}} {{puerto}}` - Construye la aplicación actual optimizada para producción: @@ -21,7 +21,7 @@ - Inicia la aplicación compilada y escucha en un puerto específico: -`next start --port {{puerto}}` +`next start {{[-p|--port]}} {{puerto}}` - Exporta la aplicación actual páginas HTML estáticas: @@ -33,4 +33,4 @@ - Muestra la ayuda de un subcomando: -`next {{build|dev|export|start|telemetry}} --help` +`next {{build|dev|export|start|telemetry}} {{[-h|--help]}}` diff --git a/pages.ko/common/next.md b/pages.ko/common/next.md index ee340754c5..c4f3924c6e 100644 --- a/pages.ko/common/next.md +++ b/pages.ko/common/next.md @@ -1,7 +1,7 @@ # next > 서버사이드 렌더링을 사용하여 최적화된 웹 애플리케이션을 구축하는 React 프레임워크. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 애플리케이션을 개발 모드로 시작: @@ -9,7 +9,7 @@ - 현재 애플리케이션을 특정 포트에서 시작: -`next dev --port {{포트}}` +`next dev {{[-p|--port]}} {{포트}}` - 프로덕션에 맞게 최적화된 애플리케이션 빌드: @@ -21,7 +21,7 @@ - 컴파일된 애플리케이션을 특정 포트에서 시작: -`next start --port {{포트}}` +`next start {{[-p|--port]}} {{포트}}` - 현재 애플리케이션을 정적 HTML 페이지로 내보내기: @@ -33,4 +33,4 @@ - 하위 명령에 대한 도움말 표시: -`next {{build|dev|export|start|telemetry}} --help` +`next {{build|dev|export|start|telemetry}} {{[-h|--help]}}` diff --git a/pages.pt_BR/common/next.md b/pages.pt_BR/common/next.md index 8385035dac..31d266f8ee 100644 --- a/pages.pt_BR/common/next.md +++ b/pages.pt_BR/common/next.md @@ -1,7 +1,7 @@ # next > Framework React que usa renderização do lado do servidor para construir aplicações web otimizadas. -> Mais informações: . +> Mais informações: . - Inicia a aplicação atual em modo de desenvolvimento: @@ -9,7 +9,7 @@ - Inicia a aplicação atual e escuta em uma porta específica: -`next dev --port {{porta}}` +`next dev {{[-p|--port]}} {{porta}}` - Cria a aplicação atual otimizada para produção: @@ -21,7 +21,7 @@ - Inicia a aplicação compilada e escuta em uma porta específica: -`next start --port {{porta}}` +`next start {{[-p|--port]}} {{porta}}` - Exporta a aplicação atual para páginas HTML estáticas: @@ -33,4 +33,4 @@ - Exibe ajuda para um subcomando: -`next {{build|dev|export|start|telemetry}} --help` +`next {{build|dev|export|start|telemetry}} {{[-h|--help]}}` From 9ad3315d4cc644e48c10cbe68f12be461959c9d9 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Wed, 4 Jun 2025 10:20:58 -0700 Subject: [PATCH 140/141] glab-*: update Korean translations (#16670) --- pages.ko/common/glab-alias.md | 4 ++-- pages.ko/common/glab-auth.md | 6 +++--- pages.ko/common/glab-issue.md | 8 ++++---- pages.ko/common/glab-mr-create.md | 8 ++++---- pages.ko/common/glab-mr-merge.md | 6 +++--- pages.ko/common/glab-mr.md | 2 +- pages.ko/common/glab-pipeline.md | 2 +- pages.ko/common/glab-release.md | 2 +- pages.ko/common/glab-repo.md | 8 ++++---- pages.ko/common/glab.md | 6 +++--- 10 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pages.ko/common/glab-alias.md b/pages.ko/common/glab-alias.md index 9d13730d0b..66256f14c4 100644 --- a/pages.ko/common/glab-alias.md +++ b/pages.ko/common/glab-alias.md @@ -1,7 +1,7 @@ # glab alias > GitLab CLI 명령어 별칭을 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 하위 명령어 도움말을 표시: @@ -17,7 +17,7 @@ - 쉘 명령을 `glab` 하위 명령으로 설정: -`glab alias set --shell {{alias_이름}} {{명령어}}` +`glab alias set {{[-s|--shell]}} {{alias_이름}} {{명령어}}` - 명령 단축키 삭제: diff --git a/pages.ko/common/glab-auth.md b/pages.ko/common/glab-auth.md index 3c237055cd..417f0be260 100644 --- a/pages.ko/common/glab-auth.md +++ b/pages.ko/common/glab-auth.md @@ -1,7 +1,7 @@ # glab auth > GitLab 호스트로 인증. -> 더 많은 정보: . +> 더 많은 정보: . - 대화형 프롬프트로 로그인: @@ -9,7 +9,7 @@ - 토큰으로 로그인: -`glab auth login --token {{토큰}}` +`glab auth login {{[-t|--token]}} {{토큰}}` - 인증 상태 확인: @@ -17,4 +17,4 @@ - 특정 GitLab 인스턴스에 로그인: -`glab auth login --hostname {{gitlab.example.com}}` +`glab auth login {{[-h|--hostname]}} {{gitlab.example.com}}` diff --git a/pages.ko/common/glab-issue.md b/pages.ko/common/glab-issue.md index 83c15df1d3..a1d35be2ac 100644 --- a/pages.ko/common/glab-issue.md +++ b/pages.ko/common/glab-issue.md @@ -1,7 +1,7 @@ # glab issue > GitLab 이슈 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 특정 이슈 표시: @@ -9,7 +9,7 @@ - 기본 웹 브라우저에 특정 문제를 표시: -`glab issue view {{이슈_번호}} --web` +`glab issue view {{이슈_번호}} {{[-w|--web]}}` - 기본 웹 브라우저에 새로운 이슈를 생성: @@ -17,11 +17,11 @@ - `bug` 라벨이 있는 최근 10개 문제를 나열: -`glab issue list --per-page {{10}} --label "{{bug}}"` +`glab issue list {{[-P|--per-page]}} {{10}} {{[-l|--label]}} "{{bug}}"` - 특정 사용자가 작성한 닫힌 이슈를 나열: -`glab issue list --closed --author {{사용자명}}` +`glab issue list {{[-c|--closed]}} --author {{사용자명}}` - 특정 이슈 다시 열기: diff --git a/pages.ko/common/glab-mr-create.md b/pages.ko/common/glab-mr-create.md index 4e2429b2db..cd46e44fc2 100644 --- a/pages.ko/common/glab-mr-create.md +++ b/pages.ko/common/glab-mr-create.md @@ -1,7 +1,7 @@ # glab mr create > GitLab 병합 요청을 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 대화형으로 병합 요청을 생성: @@ -9,7 +9,7 @@ - 현재 브랜치의 커밋 메시지에서 제목과 설명을 결정하여 병합 요청을 생성: -`glab mr create --fill` +`glab mr create {{[-f|--fill]}}` - 초안 병합 요청을 생성: @@ -17,8 +17,8 @@ - 대상 브랜치, 제목 및 설명을 지정하는 병합 요청을 생성: -`glab mr create --target-branch {{대상_브랜치}} --title "{{제목}}" --description "{{설명}}"` +`glab mr create {{[-b|--target-branch]}} {{대상_브랜치}} {{[-t|--title]}} "{{제목}}" {{[-d|--description]}} "{{설명}}"` - 기본 웹 브라우저에서 병합 요청 열기를 시작: -`glab mr create --web` +`glab mr create {{[-w|--web]}}` diff --git a/pages.ko/common/glab-mr-merge.md b/pages.ko/common/glab-mr-merge.md index 57a1eac9b2..b89f4e4a5f 100644 --- a/pages.ko/common/glab-mr-merge.md +++ b/pages.ko/common/glab-mr-merge.md @@ -1,7 +1,7 @@ # glab mr merge > GitLab 병합 요청을 관리. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 브랜치와 관련된 병합 요청을 대화식으로 병합: @@ -13,11 +13,11 @@ - 로컬과 원격 모두에서 브랜치를 제거하여 병합 요청을 병합: -`glab mr merge --remove-source-branch` +`glab mr merge {{[-d|--remove-source-branch]}}` - 현재 병합 요청을 메시지 본문과 함께 하나의 커밋으로 스쿼시하고 병합: -`glab mr merge --squash --message="{{커밋_메시지_본체}}"` +`glab mr merge {{[-s|--squash]}} {{[-m|--message]}} "{{커밋_메시지_본체}}"` - 도움말 표시: diff --git a/pages.ko/common/glab-mr.md b/pages.ko/common/glab-mr.md index d2d7e84427..761cba4976 100644 --- a/pages.ko/common/glab-mr.md +++ b/pages.ko/common/glab-mr.md @@ -2,7 +2,7 @@ > GitLab 병합 요청을 관리. > `create`와 같은 일부 하위 명령어에는 자체 사용법 문서가 있음. -> 더 많은 정보: . +> 더 많은 정보: . - 병합 요청을 생성: diff --git a/pages.ko/common/glab-pipeline.md b/pages.ko/common/glab-pipeline.md index 0ff1576e5b..a96d1b1426 100644 --- a/pages.ko/common/glab-pipeline.md +++ b/pages.ko/common/glab-pipeline.md @@ -1,7 +1,7 @@ # glab pipeline > GitLab CI/CD 파이프라인을 나열, 보고, 실행. -> 더 많은 정보: . +> 더 많은 정보: . - 현재 브랜치에서 실행 중인 파이프라인을 보기: diff --git a/pages.ko/common/glab-release.md b/pages.ko/common/glab-release.md index 45cbde2fb5..08785cda36 100644 --- a/pages.ko/common/glab-release.md +++ b/pages.ko/common/glab-release.md @@ -1,7 +1,7 @@ # glab release > GitLab 배포 관맄. -> 더 많은 정보: . +> 더 많은 정보: . - Gitlab 저장소의 릴리스 목록은 30개 항목으로 제한됨: diff --git a/pages.ko/common/glab-repo.md b/pages.ko/common/glab-repo.md index bd9b951ca6..3053316f57 100644 --- a/pages.ko/common/glab-repo.md +++ b/pages.ko/common/glab-repo.md @@ -1,7 +1,7 @@ # glab repo > GitLab 레포지토리 작업. -> 더 많은 정보: . +> 더 많은 정보: . - 새로운 저장소를 생성 (저장소 이름이 설정되지 않은 경우, 기본 이름은 현재 디렉터리의 이름이 됨): @@ -13,12 +13,12 @@ - 레포지토리 포크 및 복제: -`glab repo fork {{소유자}}/{{레포지토리}} --clone` +`glab repo fork {{소유자}}/{{레포지토리}} {{[-c|--clone]}}` - 기본 웹 브라우저에서 레포지토리 보기: -`glab repo view {{소유자}}/{{레포지토리}} --web` +`glab repo view {{소유자}}/{{레포지토리}} {{[-w|--web]}}` - GitLab 인스턴스에서 일부 레포지토리를 검색: -`glab repo search -s {{검색_문자열}}` +`glab repo search {{[-s|--search]}} {{검색_문자열}}` diff --git a/pages.ko/common/glab.md b/pages.ko/common/glab.md index 5a38e1ab7e..6e61e40fdc 100644 --- a/pages.ko/common/glab.md +++ b/pages.ko/common/glab.md @@ -2,7 +2,7 @@ > GitLab으로 원활하게 작업. > `config`와 같은 일부 하위 명령에는 자체 사용법 문서가 있음. -> 더 많은 정보: . +> 더 많은 정보: . - 로컬에서 GitLab 저장소를 복제: @@ -18,7 +18,7 @@ - 기본 브라우저에서 이슈 보기: -`glab issue view --web {{이슈_번호}}` +`glab issue view {{[-w|--web]}} {{이슈_번호}}` - 병합 요청을 생성: @@ -26,7 +26,7 @@ - 기본 웹 브라우저에서 풀 요청 보기: -`glab mr view --web {{pr_번호}}` +`glab mr view {{[-w|--web]}} {{pr_번호}}` - 특정 풀 요청을 로컬에서 확인: From bce0d19de4e7e27b5aa64fe94f05364209b37792 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Wed, 4 Jun 2025 20:33:51 +0300 Subject: [PATCH 141/141] lspci: add increased verbosity note (#16741) Co-authored-by: K.B.Dharun Krishna --- pages/linux/lspci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/lspci.md b/pages/linux/lspci.md index 9daec5ec6a..052da7b772 100644 --- a/pages/linux/lspci.md +++ b/pages/linux/lspci.md @@ -7,7 +7,7 @@ `lspci` -- Display additional info: +- Display additional information (Note: the `-v` flag can be repeated to increase verbosity): `lspci -v`