Skip to content

Commit

Permalink
Merge branch 'main' into update-set-alias-page
Browse files Browse the repository at this point in the history
  • Loading branch information
Zamoca42 authored Jan 2, 2025
2 parents 08d0b39 + 5d21227 commit 7db9d2e
Show file tree
Hide file tree
Showing 26 changed files with 340 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/[email protected].4
uses: tj-actions/[email protected].5
with:
# Ignore all other languages except English
files_ignore: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ jobs:
labeler:
runs-on: ubuntu-latest
steps:
- uses: tldr-pages/tldr-labeler-action@v0.4.0
- uses: tldr-pages/tldr-labeler-action@v0.5.0
with:
token: "${{ secrets.GITHUB_TOKEN }}"
8 changes: 4 additions & 4 deletions pages.es/common/ac.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
> Imprime estadísticas sobre cuanto tiempo han estado conectados los usuarios.
> Más información: <https://man.openbsd.org/ac>.
- Imprime cuanto tiempo ha estado conectado el usuario actual en horas:
- Imprime cuanto tiempo ha estado conectado el usuario actual, en horas:

`ac`

- Imprime cuanto tiempo han estado conectados los usuarios en horas:
- Imprime cuanto tiempo han estado conectados los usuarios, en horas:

`ac -p`

- Imprime cuanto tiempo ha estado conectado un usuario en particular en horas:
- Imprime cuanto tiempo ha estado conectado un usuario en particular, en horas:

`ac -p {{usuario}}`

- Imprime cuánto tiempo ha estado conectado un usuario en particular en horas por día (con total):
- Imprime cuanto tiempo ha estado conectado un usuario en particular, en horas por día (con total):

`ac -dp {{usuario}}`
21 changes: 21 additions & 0 deletions pages.es/common/lit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# lit

> Comprobador integrado LLVM para ejecutar conjuntos de pruebas estilo LLVM y Clang, resumiendo los resultados.
> Parte de LLVM.
> Más información: <https://www.llvm.org/docs/CommandGuide/lit.html>.
- Ejecuta un caso de prueba especificado:

`lit {{ruta/al/archivo_de_prueba.test}}`

- Ejecuta todos los casos de prueba en un directorio especificado:

`lit {{ruta/al/suite_de_pruebas}}`

- Ejecuta todos los escenarios de prueba y comprueba el tiempo de ejecución de cada uno de ellos:

`lit {{ruta/a/suite_de_pruebas}} --time-tests`

- Ejecuta pruebas individuales con Valgrind (comprobación de memoria y prueba de fuga de memoria):

`lit {{ruta/al/archivo_prueba.test}} --vg --vg-leak --vg-args={{args_con_valgrind}}`
20 changes: 20 additions & 0 deletions pages.es/linux/exec.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# exec

> Ejecuta un comando sin crear un proceso hijo.
> Más información: <https://www.gnu.org/software/bash/manual/bash.html#index-exec>.
- Ejecuta un comando específico:

`exec {{comando -con -opciones}}`

- Ejecuta un comando con un entorno (en su mayoría) vacío:

`exec -c {{comando -con -opciones}}`

- Ejecuta un comando como un shell de inicio de sesión:

`exec -l {{comando -con -opciones}}`

- Ejecuta un comando con un nombre diferente:

`exec -a {{nombre}} {{comando -con -opciones}}`
17 changes: 14 additions & 3 deletions pages.nl/common/batch.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
# batch

> Dit commando is een alias van `at`.
> Voer commando's uit op een later tijdstip wanneer de systeembelasting het toelaat.
> Resultaten worden verzonden naar de e-mail van de gebruiker.
> Bekijk ook: `at`, `atq`, `atrm` `mail`.
> Meer informatie: <https://manned.org/batch>.
- Bekijk de documentatie van het originele commando:
- Start de `atd` daemon:

`tldr at`
`systemctl start atd`

- Voer commando's uit vanaf `stdin` (druk op `Ctrl + D` om te stoppen):

`batch`

- Voer een commando uit vanaf `stdin`:

`echo "{{./make_db_backup.sh}}" | batch`
32 changes: 32 additions & 0 deletions pages.nl/common/declare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# declare

> Declareer variabelen en geef ze attributen.
> Meer informatie: <https://www.gnu.org/software/bash/manual/bash.html#index-declare>.
- Declareer een string variabele met de gespecificeerde waarde:

`declare {{variabele}}="{{waarde}}"`

- Declareer een integer variabele met de gespecificeerde waarde:

`declare -i {{variabele}}="{{waarde}}"`

- Declareer een array variabele met de gespecificeerde waarde:

`declare -a {{variabele}}=({{item_a item_b item_c}})`

- Declareer een associatieve array variabele met de gespecificeerde waarde:

`declare -A {{variabele}}=({{[sleutel_a]=item_a [sleutel_b]=item_b [sleutel_c]=item_c}})`

- Declareer a readonly string variabele met de gespecificeerde waarde:

`declare -r {{variabele}}="{{waarde}}"`

- Declareer een globale variabele binnen een functie met de gespecificeerde waarde:

`declare -g {{variabele}}="{{waarde}}"`

- Print een functie-definitie:

`declare -f {{functie_naam}}`
7 changes: 7 additions & 0 deletions pages.nl/common/typeset.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# typeset

> Dit commando is een alias van `declare`.
- Bekijk de documentatie van het originele commando:

`tldr declare`
2 changes: 1 addition & 1 deletion pages.nl/common/zstdmt.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# zstdmt

> Dit commando is een alias van `zstd`.
> Dit commando is een alias van `zstd --threads 0` (welke het aantal werkende threads instelt op het aantal fysieke CPU-kernen).
- Bekijk de documentatie van het originele commando:

Expand Down
24 changes: 24 additions & 0 deletions pages.nl/linux/dnf-group.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# dnf group

> Beheer virtuele collecties van pakketten op Fedora gebaseerde systemen.
> Meer informatie: <https://manned.org/man/dnf-group>.
- Maak een lijst van DNF-groepen, met geïnstalleerde en verwijderde status in een tabel:

`dnf group list`

- Toon DNF groepsinformatie, inclusief repository en optionele pakketten:

`dnf group info {{groepsnaam}}`

- Installeer een DNF groep:

`dnf group install {{groepsnaam}}`

- Verwijder een DNF groep:

`dnf group remove {{groepsnaam}}`

- Upgrade een DNF groep:

`dnf group upgrade {{groepsnaam}}`
7 changes: 7 additions & 0 deletions pages.nl/linux/i386.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# i386

> Dit commando is een alias van `setarch i386`.
- Bekijk de documentatie van het originele commando:

`tldr setarch`
7 changes: 7 additions & 0 deletions pages.nl/linux/linux32.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# linux32

> Dit commando is een alias van `setarch linux32`.
- Bekijk de documentatie van het originele commando:

`tldr setarch`
7 changes: 7 additions & 0 deletions pages.nl/linux/linux64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# linux64

> Dit commando is een alias van `setarch linux64`.
- Bekijk de documentatie van het originele commando:

`tldr setarch`
29 changes: 29 additions & 0 deletions pages.nl/linux/pacman-files.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# pacman --files

> Arch Linux Pakketbeheerder hulpprogramma.
> Bekijk ook: `pacman`,` pkgfile`.
> Meer informatie: <https://manned.org/pacman.8>.
- Werk de pakketdatabase bij:

`sudo pacman -Fy`

- Zoek het pakket dat een specifiek bestand ([F]) bezit:

`pacman -F {{bestandsnaam}}`

- Zoek het pakket dat een specifiek bestand ([F]) bezit, met behulp van een reguliere e[x]pressie:

`pacman -Fx '{{reguliere_expressie}}'`

- Maak een lijst van alleen de pakketnamen:

`pacman -Fq {{bestandsnaam}}`

- Toon ([l]) de bestanden ([F]) die eigendom zijn van een specifiek pakket:

`pacman -Fl {{pakket}}`

- Toon de [h]elp:

`pacman -Fh`
7 changes: 7 additions & 0 deletions pages.nl/linux/pacman-q.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# pacman -Q

> Dit commando is een alias van `pacman --query`.
- Bekijk de documentatie van het originele commando:

`tldr pacman query`
37 changes: 37 additions & 0 deletions pages.nl/linux/pacman-query.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# pacman --query

> Arch Linux pakketbeheerder hulpprogramma.
> Bekijk ook: `pacman`.
> Meer informatie: <https://manned.org/pacman.8>.
- [Q]uery de lokale pakkettendatabase en toon geïnstalleerde pakketten en versies:

`pacman -Q`

- Toon alleen pakketten en versies welke [e]xpliciet geïnstalleerd zijn:

`pacman -Qe`

- Zoek welk pakket een bestand bezit ([o]):

`pacman -Qo {{bestandsnaam}}`

- Toon informatie over een geïnstalleerd ([i]) pakket:

`pacman -Qi {{pakket}}`

- Toon de [l]ijst met bestanden welke een specifiek pakket bezit:

`pacman -Ql {{pakket}}`

- Maak een lijst van pakketten welke geïnstalleerd zijn als afhankelijkhe[d]en maar niet vereist door een pakket en print in stille ([q]) modus (alleen pakketnaam wordt weergegeven):

`pacman -Qdtq`

- Toon geïnstalleerde pakketten foreign ([m]) voor de repository database:

`pacman -Qm`

- Toon pakketten die geüpgraded ([u]) kunnen worden:

`pacman -Qu`
7 changes: 7 additions & 0 deletions pages.nl/linux/uname26.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# uname26

> Dit commando is een alias van `setarch uname26`.
- Bekijk de documentatie van het originele commando:

`tldr setarch`
7 changes: 7 additions & 0 deletions pages.nl/linux/x86_64.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# x86_64

> Dit commando is een alias van `setarch x86_64`.
- Bekijk de documentatie van het originele commando:

`tldr setarch`
4 changes: 4 additions & 0 deletions pages/common/tldr.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,7 @@
- [l]ist all available subcommand pages for a command:

`tldr --list | grep {{command}} | column`

- Print the tldr page for a random command:

`tldr --list | shuf -n1 | xargs tldr`
6 changes: 5 additions & 1 deletion pages/linux/coredumpctl.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- List all captured core dumps:

`coredumpctl list`
`coredumpctl`

- List captured core dumps for a program:

Expand All @@ -15,6 +15,10 @@

`coredumpctl info {{PID}}`

- Invoke debugger using the last core dump:

`coredumpctl debug`

- Invoke debugger using the last core dump of a program:

`coredumpctl debug {{program}}`
Expand Down
4 changes: 2 additions & 2 deletions pages/linux/kpackagetool5.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# kpackagetool5

> KPackage Manager: install, list, remove Plasma packages.
> More information: <https://techbase.kde.org/Development/Tutorials/Plasma5/QML2/GettingStarted#Kpackagetool5>.
> More information: <https://manned.org/kpackagetool5>.
- List all known package types that can be installed:

Expand All @@ -15,7 +15,7 @@

`kpackagetool5 --type {{package_type}} --upgrade {{path/to/directory}}`

- List installed plasmoids (--global for all users):
- List installed plasmoids (`--global` for all users):

`kpackagetool5 --type Plasma/Applet --list --global`

Expand Down
24 changes: 24 additions & 0 deletions pages/linux/kpackagetool6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# kpackagetool6

> KPackage Manager: install, list, remove Plasma packages.
> More information: <https://manned.org/kpackagetool6>.
- List all known package types that can be installed:

`kpackagetool6 --list-types`

- Install the package from a directory:

`kpackagetool6 --type {{package_type}} --install {{path/to/directory}}`

- Update installed package from a directory:

`kpackagetool6 --type {{package_type}} --upgrade {{path/to/directory}}`

- List installed plasmoids (`--global` for all users):

`kpackagetool6 --type Plasma/Applet --list --global`

- Remove a plasmoid by name:

`kpackagetool6 --type Plasma/Applet --remove "{{name}}"`
20 changes: 20 additions & 0 deletions pages/linux/lookandfeeltool.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# lookandfeeltool

> Switch Plasma global themes.
> More information: <https://userbase.kde.org/System_Settings/Look_And_Feel>.
- List available global themes:

`lookandfeeltool --list`

- Apply a global theme:

`lookandfeeltool --apply {{org.example.theme.desktop}}`

- Operate `lookandfeeltool` without a display server:

`lookandfeeltool --platform offscreen`

- Display help:

`lookandfeeltool --help`
Loading

0 comments on commit 7db9d2e

Please sign in to comment.