From 75b88de244550bef7c09b2f33fdee48c326c0588 Mon Sep 17 00:00:00 2001 From: meator Date: Sat, 27 Apr 2024 20:54:44 +0200 Subject: [PATCH 1/7] id3v2: fix `--list` flag (#12685) --- pages/linux/id3v2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/id3v2.md b/pages/linux/id3v2.md index 66b766dfab127c..0a4c9d93dbad7d 100644 --- a/pages/linux/id3v2.md +++ b/pages/linux/id3v2.md @@ -9,7 +9,7 @@ - List all tags of specific files: -`id3v2 --list-tags {{path/to/file1 path/to/file2 ...}}` +`id3v2 --list {{path/to/file1 path/to/file2 ...}}` - Delete all `id3v2` or `id3v1` tags of specific files: From 95cc093a580e3ff32c747ff784e898e5bb26f701 Mon Sep 17 00:00:00 2001 From: Ewen Le Bihan Date: Sun, 28 Apr 2024 08:14:15 +0200 Subject: [PATCH 2/7] ntpd: add page (#12682) --- pages/linux/ntpd.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/linux/ntpd.md diff --git a/pages/linux/ntpd.md b/pages/linux/ntpd.md new file mode 100644 index 00000000000000..cb0874454f248e --- /dev/null +++ b/pages/linux/ntpd.md @@ -0,0 +1,16 @@ +# ntpd + +> The official NTP (Network Time Protocol) daemon to synchronize the system clock to remote time servers or local reference clocks. +> More information: . + +- Start the daemon: + +`sudo ntpd` + +- Synchronize system time with remote servers a single time (quit after synchronizing): + +`sudo ntpd --quit` + +- Synchronize a single time allowing "Big" adjustments: + +`sudo ntpd --panicgate --quit` From 134df43067cf8d3e98fce4fa4026fcf284884ed3 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Sun, 28 Apr 2024 19:28:50 +1000 Subject: [PATCH 3/7] type: add example (#12668) --- pages/common/type.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pages/common/type.md b/pages/common/type.md index a692c4296105da..104bcccf4c26b5 100644 --- a/pages/common/type.md +++ b/pages/common/type.md @@ -1,16 +1,21 @@ # type > Display the type of command the shell will execute. +> Note: all examples are not POSIX compliant. > More information: . - Display the type of a command: `type {{command}}` -- Display all locations containing the specified executable: +- Display all locations containing the specified executable (works only in Bash/fish/Zsh shells): `type -a {{command}}` -- Display the name of the disk file that would be executed: +- Display the name of the disk file that would be executed (works only in Bash/fish/Zsh shells): `type -p {{command}}` + +- Display the type of a specific command, alias/keyword/function/builtin/file (works only in Bash/fish shells): + +`type -t {{command}}` From c8e35958e784de041528d7df45082196e7445432 Mon Sep 17 00:00:00 2001 From: Fazle Arefin Date: Mon, 29 Apr 2024 01:11:25 +1000 Subject: [PATCH 4/7] du: add example (#12689) --- pages/common/du.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/du.md b/pages/common/du.md index 6e0a5279cbbc9f..1061c806ff7793 100644 --- a/pages/common/du.md +++ b/pages/common/du.md @@ -26,3 +26,7 @@ - List the human-readable size of all `.jpg` files in subdirectories of the current directory, and show a cumulative total at the end: `du -ch {{*/*.jpg}}` + +- List all files and directories (including hidden ones) above a certain [t]hreshold size (useful for investigating what is actually taking up the space): + +`du --all --human-readable --threshold {{1G|1024M|1048576K}} .[^.]* *` From 4868713137fa57344b9ac522348d95f98601ac1e Mon Sep 17 00:00:00 2001 From: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> Date: Sun, 28 Apr 2024 22:51:21 +0200 Subject: [PATCH 5/7] MAINTAINERS: add @sebastiaanspeck as organization owner (#12688) --- MAINTAINERS.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 740abadb20d144..ab248165c6477a 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -142,8 +142,6 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) [21 June 2021](https://github.com/tldr-pages/tldr/issues/6149) — present - **Juri ([@gutjuri](https://github.com/gutjuri))**: [24 October 2023](https://github.com/tldr-pages/tldr/issues/11201) — present -- **Sebastiaan Speck ([@sebastiaanspeck](https://github.com/sebastiaanspeck))**: - [24 October 2023](https://github.com/tldr-pages/tldr/issues/11202) — present - **Isaac Vicente ([@isaacvicente](https://github.com/isaacvicente))**: [29 December 2023](https://github.com/tldr-pages/tldr/issues/11918) — present - **Vitor Henrique ([@vitorhcl](https://github.com/vitorhcl))**: @@ -182,6 +180,8 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) [18 March 2021](https://github.com/tldr-pages/tldr/issues/5473) — [15 November 2023](https://github.com/tldr-pages/tldr/issues/11509) - Lena ([@acuteenvy](https://github.com/acuteenvy)): [21 June 2023](https://github.com/tldr-pages/tldr/issues/10406) — [27 December 2023](https://github.com/tldr-pages/tldr/issues/11839) +- Sebastiaan Speck ([@sebastiaanspeck](https://github.com/sebastiaanspeck)): + [24 October 2023](https://github.com/tldr-pages/tldr/issues/11202) — [28 April 2024](https://github.com/tldr-pages/tldr/issues/12687) ## Organization owners @@ -212,6 +212,8 @@ An automated list can be found [here](https://github.com/orgs/tldr-pages/people) [7 July 2023](https://github.com/tldr-pages/tldr/issues/10054) — present - **Lena ([@acuteenvy](https://github.com/acuteenvy))**: [27 December 2023](https://github.com/tldr-pages/tldr/issues/11839) — present +- **Sebastiaan Speck ([@sebastiaanspeck](https://github.com/sebastiaanspeck))**: + [28 April 2024](https://github.com/tldr-pages/tldr/issues/12687) - present - Igor Shubovych ([@igorshubovych](https://github.com/igorshubovych)): until [18 January 2018](https://github.com/tldr-pages/tldr/issues/1878#issuecomment-358610454) - Ruben Vereecken ([@rubenvereecken](https://github.com/rubenvereecken)): From 86121fe273dcd84503e99b2d5e2f09fc64bae8bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sun, 28 Apr 2024 18:14:59 -0300 Subject: [PATCH 6/7] ospp.vbs: add Spanish translation (#12684) --- pages.es/windows/ospp.vbs.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pages.es/windows/ospp.vbs.md diff --git a/pages.es/windows/ospp.vbs.md b/pages.es/windows/ospp.vbs.md new file mode 100644 index 00000000000000..8a1a7aaa346741 --- /dev/null +++ b/pages.es/windows/ospp.vbs.md @@ -0,0 +1,29 @@ +# ospp.vbs + +> Instala, activa y administra versiones con licencia por volumen de productos Microsoft Office. +> Nota: este comando puede anular, desactivar y/o eliminar tu volumen actual de versiones de productos Office con licencia, así que procede con cautela. +> Más información: . + +- Instala una clave de producto (Nota: sustituye a la clave existente): + +`cscript ospp.vbs /inpkey:{{clave_producto}}` + +- Desinstala una clave de producto instalada con los cinco últimos dígitos de la clave de producto: + +`cscript ospp.vbs /unpkey:{{clave_producto}}` + +- Establece un nombre de host KMS: + +`cscript ospp.vbs /sethst:{{ip|nombre_host}}` + +- Establece un puerto KMS: + +`cscript ospp.vbs /setprt:{{puerto}}` + +- Activa las claves de producto de Office instaladas: + +`cscript ospp.vbs /act` + +- Muestra la información de licencia de las claves de producto instaladas: + +`cscript ospp.vbs /dstatus` From dfc47a0cd6c19f6cfd09744b059c61c72915586e Mon Sep 17 00:00:00 2001 From: Alejandro Cervera <96702705+tricantivu@users.noreply.github.com> Date: Mon, 29 Apr 2024 02:34:22 -0500 Subject: [PATCH 7/7] contributing-guides: document preference of Spanish words in placeholders (#12693) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * contributing-guides: document preference of Spanish words in placeholders --------- Co-authored-by: Vítor Henrique <87824454+vitorhcl@users.noreply.github.com> --- contributing-guides/style-guide.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index 297cc335a66e0e..342562fc52b852 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -602,3 +602,13 @@ For example, use `Lista os arquivos` instead of `Listar os arquivos`, `Listando ```md - Crea un archivo en un directorio: ``` + +- Preferably, use the word `identificador` instead of `id` in the placeholders of command examples. For example: + +```md +{{identificador_de_usuario}} +``` + +*Writing prepositions is optional* + + However, if the line of a command example exceeds the [maximum length](https://github.com/tldr-pages/tldr/blob/main/.markdownlint.json#L5), choose the word `identificador` or `id` and use it across all placeholders in the page.