-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into update-set-alias-page
- Loading branch information
Showing
26 changed files
with
340 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}}"` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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` |
Oops, something went wrong.