mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
pages*/common/*: add option placeholders to translations part 1 (#15896)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
This commit is contained in:
parent
8d1d060648
commit
9a42cc59fb
147 changed files with 522 additions and 522 deletions
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Wikkel gecodeerde uitvoer in op een specifieke breedte (`0` schakelt inpakken uit):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{pfad/zu/datei}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{pfad/zu/datei}}`
|
||||
|
||||
- Dekodiere den Inhalt einer Datei als base32 und schreibe das Ergebnis nach `stdout`:
|
||||
|
||||
`base32 {{-d|--decode}} {{pfad/zu/datei}}`
|
||||
`base32 {{[-d|--decode]}} {{pfad/zu/datei}}`
|
||||
|
||||
- Kodiere von `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Dekodiere von `stdin`:
|
||||
|
||||
`{{befehl}} | base32 {{-d|--decode}}`
|
||||
`{{befehl}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Wikkel gecodeerde uitvoer in op een specifieke breedte (`0` schakelt inpakken uit):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{pfad/zu/datei}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{pfad/zu/datei}}`
|
||||
|
||||
- Dekodiere den Inhalt einer Datei als base64 und schreibe das Ergebnis nach `stdout`:
|
||||
|
||||
`base64 {{-d|--decode}} {{pfad/zu/datei}}`
|
||||
`base64 {{[-d|--decode]}} {{pfad/zu/datei}}`
|
||||
|
||||
- Kodiere von `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Dekodiere von `stdin`:
|
||||
|
||||
`{{befehl}} | base64 {{-d|--decode}}`
|
||||
`{{befehl}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
|
||||
- Nummeriere alle ausgegebenen Zeilen:
|
||||
|
||||
`bat --number {{pfad/zu/datei}}`
|
||||
`bat {{[-n|--number]}} {{pfad/zu/datei}}`
|
||||
|
||||
- Hebe die Syntax einer JSON-Datei hervor:
|
||||
|
||||
`bat --language json {{pfad/zu/datei.json}}`
|
||||
`bat {{[-l|--language]}} json {{pfad/zu/datei.json}}`
|
||||
|
||||
- Zeige alle unterstützten Sprachen an:
|
||||
|
||||
`bat --list-languages`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -6,20 +6,20 @@
|
|||
|
||||
- Kompiliere eine Quelldatei in eine ausführbare Binärdatei:
|
||||
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}}`
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Zeige geläufige Fehler und Warnungen an:
|
||||
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} -Wall -o {{pfad/zu/binärdatei}}`
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} -Wall {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Wähle einen Sprachstandard für die Kompilation aus:
|
||||
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} -std={{c++20}} -o {{pfad/zu/binärdatei}}`
|
||||
`clang++ {{pfad/zu/quelldatei.cpp}} -std={{c++20}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein:
|
||||
|
||||
`clang++ {{pfad/zu/qelldatei.cpp}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheksname}}`
|
||||
`clang++ {{pfad/zu/qelldatei.cpp}} {{[-o|--output]}} {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheksname}}`
|
||||
|
||||
- Kompiliere eine Quelldatei zu LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang++ -S -emit-llvm {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/ir_datei.ll}}`
|
||||
`clang++ {{[-S|--assemble]}} -emit-llvm {{pfad/zu/quelldatei.cpp}} {{[-o|--output]}} {{pfad/zu/ir_datei.ll}}`
|
||||
|
|
|
@ -5,20 +5,20 @@
|
|||
|
||||
- Kompiliere eine Quelldatei in eine ausführbare Binärdatei:
|
||||
|
||||
`clang {{pfad/zu/quelldatei.c}} -o {{pfad/zu/binärdatei}}`
|
||||
`clang {{pfad/zu/quelldatei.c}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Zeige geläufige Fehler und Warnungen an:
|
||||
|
||||
`clang {{pfad/zu/quelldatei.c}} -Wall -o {{pfad/zu/binärdatei}}`
|
||||
`clang {{pfad/zu/quelldatei.c}} -Wall {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein:
|
||||
|
||||
`clang {{pfad/zu/quelldatei.c}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}`
|
||||
`clang {{pfad/zu/quelldatei.c}} {{[-o|--output]}} {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}`
|
||||
|
||||
- Kompiliere eine Quelldatei zu LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang -S -emit-llvm {{pfad/zu/quelldatei.c}} -o {{pfad/zu/ir_datei.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{pfad/zu/quelldatei.c}} {{[-o|--output]}} {{pfad/zu/ir_datei.ll}}`
|
||||
|
||||
- Kompiliere eine Quelldatei, ohne zu Linken:
|
||||
|
||||
`clang -c {{pfad/zu/quelldatei.c}}`
|
||||
`clang {{[-c|--compile]}} {{pfad/zu/quelldatei.c}}`
|
||||
|
|
|
@ -9,24 +9,24 @@
|
|||
|
||||
- Vergleiche Dateien und ignoriere Leerzeichen:
|
||||
|
||||
`diff --ignore-all-space {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
|
||||
- Vergleiche Dateien und zeige Unterschiede nebeneinander:
|
||||
|
||||
`diff --side-by-side {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
`diff {{[-y|--side-by-side]}} {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
|
||||
- Vergleiche Dateien und zeige Unterschiede in vereinheitlichtem Format (wie in `git diff`):
|
||||
|
||||
`diff --unified {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
`diff {{[-u|--unified]}} {{pfad/zu/datei1}} {{pfad/zu/datei2}}`
|
||||
|
||||
- Vergleiche Verzeichnisse rekursiv (zeigt sowohl Namen von unterschiedlichen Dateien/Verzeichnissen, als auch Unterschiede zwischen Dateien):
|
||||
|
||||
`diff --recursive {{altes_verzeichnis}} {{neues_verzeichnis}}`
|
||||
`diff {{[-r|--recursive]}} {{altes_verzeichnis}} {{neues_verzeichnis}}`
|
||||
|
||||
- Vergleiche Verzeichnisse und zeige nur die Namen der Dateien, die unterschiedlich sind:
|
||||
|
||||
`diff --recursive --brief {{altes_verzeichnis}} {{neues_verzeichnis}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{altes_verzeichnis}} {{neues_verzeichnis}}`
|
||||
|
||||
- Erstelle ein patch-Datei für Git bestehend aus den Unterschieden zweier Dateien und behandle fehlende Dateien als leer:
|
||||
|
||||
`diff --text --unified --new-file {{pfad/zu/datei1}} {{pfad/zu/datei2}} > {{pfad/zu/diff.patch}}`
|
||||
`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{pfad/zu/datei1}} {{pfad/zu/datei2}} > {{pfad/zu/diff.patch}}`
|
||||
|
|
|
@ -13,12 +13,12 @@
|
|||
|
||||
- Lade eine Datei mit Passwort hoch:
|
||||
|
||||
`ffsend upload {{pfad/zu/datei}} {{-p|--password}} {{passwort}}`
|
||||
`ffsend upload {{pfad/zu/datei}} {{[-p|--password]}} {{passwort}}`
|
||||
|
||||
- Lade eine passwortgeschützte Datei herunter:
|
||||
|
||||
`ffsend download {{url}} {{-p|--password}} {{passwort}}`
|
||||
`ffsend download {{url}} {{[-p|--password]}} {{passwort}}`
|
||||
|
||||
- Lade eine Datei hoch und erlaube maximal 4 Downloads:
|
||||
|
||||
`ffsend upload {{pfad/zu/datei}} {{-d|--downloads}} {{4}}`
|
||||
`ffsend upload {{pfad/zu/datei}} {{[-d|--downloads]}} {{4}}`
|
||||
|
|
|
@ -6,23 +6,23 @@
|
|||
|
||||
- Kompiliere eine Quelldatei in eine ausführbare Binärdatei:
|
||||
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}}`
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Zeige geläufige Fehler und Warnungen an:
|
||||
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -Wall -o {{pfad/zu/binärdatei}}`
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -Wall {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Wähle einen Sprachstandard (C++98/C++11/C++14/C++17) für das Kompilieren:
|
||||
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} -o {{pfad/zu/binärdatei}}`
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -std={{C++98|C++11|C++14|C++17}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Binde Bibliotheken, die sich an einem anderen Pfad als die Quelldatei befinden, ein:
|
||||
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} -o {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}`
|
||||
`g++ {{pfad/zu/quelldatei.cpp}} {{[-o|--output]}} {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek}} -l{{bibliotheks_name}}`
|
||||
|
||||
- Kompiliere und linke mehrere Quelldateien in eine ausführbare Binärdatei:
|
||||
|
||||
`g++ -c {{pfad/zu/quelldatei_1.cpp pfad/zu/quelldatei_2.cpp ...}} && g++ -o {{pfad/zu/binärdatei}} {{pfad/zu/quelldatei_1.o pfad/zu/quelldatei_2.o ...}}`
|
||||
`g++ -c {{pfad/zu/quelldatei_1.cpp pfad/zu/quelldatei_2.cpp ...}} && g++ {{[-o|--output]}} {{pfad/zu/binärdatei}} {{pfad/zu/quelldatei_1.o pfad/zu/quelldatei_2.o ...}}`
|
||||
|
||||
- Gib die Version von `g++` aus:
|
||||
|
||||
|
|
|
@ -5,20 +5,20 @@
|
|||
|
||||
- Kompiliere mehrere Quellcodedateien zu einer ausführbaren Datei:
|
||||
|
||||
`gcc {{pfad/zu/datei1.c}} {{pfad/zu/datei2.c}} --output {{pfad/zu/binärdatei}}`
|
||||
`gcc {{pfad/zu/datei1.c}} {{pfad/zu/datei2.c}} {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Erlaube Warnungen und debug-Symbole in der Ausgabedatei:
|
||||
|
||||
`gcc {{pfad/zu/datei.c}} -Wall -Og --output {{pfad/zu/binärdatei}}`
|
||||
`gcc {{pfad/zu/datei.c}} -Wall -Og {{[-o|--output]}} {{pfad/zu/binärdatei}}`
|
||||
|
||||
- Inkludiere Bibliotheken aus anderen Verzeichnissen:
|
||||
|
||||
`gcc {{pfad/zu/datei.c}} --output {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek1}} -l{{pfad/zu/bibliothek2}}`
|
||||
`gcc {{pfad/zu/datei.c}} {{[-o|--output]}} {{pfad/zu/binärdatei}} -I{{pfad/zu/headerdatei}} -L{{pfad/zu/bibliothek1}} -l{{pfad/zu/bibliothek2}}`
|
||||
|
||||
- Kompiliere Quellcodedateien zu Assemblerinstruktionen:
|
||||
|
||||
`gcc -S {{pfad/zu/datei.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{pfad/zu/datei.c}}`
|
||||
|
||||
- Kompiliere eine oder mehrere Quellcodedateien ohne diese zu linken:
|
||||
|
||||
`gcc -c {{pfad/zu/datei.c}}`
|
||||
`gcc {{[-c|--compile]}} {{pfad/zu/datei.c}}`
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
- Crea una nueva grabación, limitando el tiempo de espera máximo a 2.5 segundos:
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- Imprime la salida completa de un archivo local de grabación:
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Ajuste la salida codificada en un ancho específico (`0` deshabilita el ajuste):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{ruta/al/archivo}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{ruta/al/archivo}}`
|
||||
|
||||
- Decodifica un archivo:
|
||||
|
||||
`base32 {{-d|--decode}} {{ruta/al/archivo}}`
|
||||
`base32 {{[-d|--decode]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Codifica `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodifica `stdin`:
|
||||
|
||||
`{{comando}} | base32 {{-d|--decode}}`
|
||||
`{{comando}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -7,13 +7,13 @@
|
|||
|
||||
`base64 {{ruta/al/archivo}}`
|
||||
|
||||
- Ajuste la salida codificada en un ancho específico (`0` deshabilita el ajuste):
|
||||
- Ajusta la salida codificada en un ancho específico (`0` deshabilita el ajuste):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{ruta/al/archivo}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{ruta/al/archivo}}`
|
||||
|
||||
- Decodifica un archivo:
|
||||
|
||||
`base64 {{-d|--decode}} {{ruta/al/archivo}}`
|
||||
`base64 {{[-d|--decode]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Codifica `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodifica `stdin`:
|
||||
|
||||
`{{comando}} | base64 {{-d|--decode}}`
|
||||
`{{comando}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,20 +18,20 @@
|
|||
|
||||
- Resalta una línea específica o un rango de líneas con un color de fondo diferente:
|
||||
|
||||
`bat {{-H|--highlight-line}} {{10|5:10|:10|10:|10:+5}} {{ruta/al/archivo}}`
|
||||
`bat {{[-H|--highlight-line]}} {{10|5:10|:10|10:|10:+5}} {{ruta/al/archivo}}`
|
||||
|
||||
- Muestra caracteres no imprimibles como espacio, tabulador o nueva línea:
|
||||
|
||||
`bat {{-A|--show-all}} {{ruta/al/archivo}}`
|
||||
`bat {{[-A|--show-all]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Elimina todos los adornos excepto los números de línea en la salida:
|
||||
|
||||
`bat {{-n|--number}} {{ruta/al/archivo}}`
|
||||
`bat {{[-n|--number]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Resalta sintácticamente un archivo JSON estableciendo explícitamente el lenguaje:
|
||||
|
||||
`bat {{-l|--language}} json {{ruta/al/archivo.json}}`
|
||||
`bat {{[-l|--language]}} json {{ruta/al/archivo.json}}`
|
||||
|
||||
- Muestra todos los lenguajes soportados:
|
||||
|
||||
`bat {{-L|--list-languages}}`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Compila un conjunto de archivos de código fuente a un binario ejecutable:
|
||||
|
||||
`clang++ {{ruta/al/código1.cpp ruta/al/código2.cpp ...}} {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`clang++ {{ruta/al/código1.cpp ruta/al/código2.cpp ...}} {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Activa la visualización de todos los errores y advertencias:
|
||||
|
||||
`clang++ {{ruta/al/código.cpp}} -Wall {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`clang++ {{ruta/al/código.cpp}} -Wall {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Muestra advertencias comunes, símbolos de depuración en la salida y optimiza sin afectar la depuración:
|
||||
|
||||
`clang++ {{ruta/al/código.cpp}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`clang++ {{ruta/al/código.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Elije un estándar de lenguaje para compilar:
|
||||
|
||||
`clang++ {{ruta/al/código.cpp}} -std={{c++20}} {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`clang++ {{ruta/al/código.cpp}} -std={{c++20}} {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Incluye las bibliotecas ubicadas en una ruta distinta a la del código fuente:
|
||||
|
||||
`clang++ {{ruta/al/código.cpp}} {{-o|--output}} {{ruta/al/ejecutable}} -I{{ruta/al/directorio/de/headers}} -L{{ruta/al/directorio/de/bibliotecas}} -l{{ruta/a/la/biblioteca}}`
|
||||
`clang++ {{ruta/al/código.cpp}} {{[-o|--output]}} {{ruta/al/ejecutable}} -I{{ruta/al/directorio/de/headers}} -L{{ruta/al/directorio/de/bibliotecas}} -l{{ruta/a/la/biblioteca}}`
|
||||
|
||||
- Compila el código fuente hacia una representación intermedia (IR) LLVM:
|
||||
|
||||
`clang++ {{-S|--assemble}} -emit-llvm {{ruta/al/código.cpp}} {{-o|--output}} {{ruta/a/la/representación.ll}}`
|
||||
`clang++ {{[-S|--assemble]}} -emit-llvm {{ruta/al/código.cpp}} {{[-o|--output]}} {{ruta/a/la/representación.ll}}`
|
||||
|
||||
- Optimiza el programa compilado en función de la velocidad:
|
||||
|
||||
`clang++ {{ruta/al/código.cpp}} -O{{1|2|3|fast}} {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`clang++ {{ruta/al/código.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Muestra la versión:
|
||||
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Compila archivos de múltiples fuentes en un ejecutable:
|
||||
|
||||
`clang {{ruta/a/fuente1.c ruta/a/fuente2.c ...}} {{-o|--output}} {{ruta/al/ejecutable_resultante}}`
|
||||
`clang {{ruta/a/fuente1.c ruta/a/fuente2.c ...}} {{[-o|--output]}} {{ruta/al/ejecutable_resultante}}`
|
||||
|
||||
- Activa la salida de todos los errores y advertencias:
|
||||
|
||||
`clang {{ruta/a/fuente.c}} -Wall {{-o|--output}} {{ejecutable_resultante}}`
|
||||
`clang {{ruta/a/fuente.c}} -Wall {{[-o|--output]}} {{ejecutable_resultante}}`
|
||||
|
||||
- Muestra advertencias comunes, depura símbolos en la salida, y optimiza sin afectar la depuración:
|
||||
- Muestra advertencias comunes, depura símbolos en la salida y optimiza sin afectar la depuración:
|
||||
|
||||
`clang {{ruta/a/fuente.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{ruta/al/ejecutable_resultante}}`
|
||||
`clang {{ruta/a/fuente.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{ruta/al/ejecutable_resultante}}`
|
||||
|
||||
- Incluye bibliotecas de una ruta diferente:
|
||||
|
||||
`clang {{ruta/a/fuente.c}} {{-o|--output}} {{ruta/al/ejecutable_resultante}} -I{{ruta/al/encabezado}} -L{{ruta/a/la/biblioteca}} -l{{nombre_biblioteca}}`
|
||||
`clang {{ruta/a/fuente.c}} {{[-o|--output]}} {{ruta/al/ejecutable_resultante}} -I{{ruta/al/encabezado}} -L{{ruta/a/la/biblioteca}} -l{{nombre_biblioteca}}`
|
||||
|
||||
- Compila código fuente hacia representación intermedia (IR) LLVM:
|
||||
|
||||
`clang {{-S|--assemble}} -emit-llvm {{ruta/a/fuente.c}} {{-o|--output}} {{ruta/a/la/salida.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{ruta/a/fuente.c}} {{[-o|--output]}} {{ruta/a/la/salida.ll}}`
|
||||
|
||||
- Compila código fuente en un archivo objeto sin vincular (linking):
|
||||
|
||||
`clang {{-c|--compile}} {{ruta/a/fuente.c}}`
|
||||
`clang {{[-c|--compile]}} {{ruta/a/fuente.c}}`
|
||||
|
||||
- Optimiza el programa compilado para velocidad de ejecución:
|
||||
|
||||
`clang {{ruta/a/fuente.c}} -O{{1|2|3|fast}} {{-o|--output}} {{ruta/al/ejecutable_resultante}}`
|
||||
`clang {{ruta/a/fuente.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{ruta/al/ejecutable_resultante}}`
|
||||
|
||||
- Muestra la versión:
|
||||
|
||||
|
|
|
@ -9,16 +9,16 @@
|
|||
|
||||
- Copia todas las etiquetas:
|
||||
|
||||
`crane copy {{origen}} {{destino}} {{-a|--all-tags}}`
|
||||
`crane copy {{origen}} {{destino}} {{[-a|--all-tags]}}`
|
||||
|
||||
- Establece el número máximo de copias simultáneas, predeterminados a GOMAXPROCS:
|
||||
|
||||
`crane copy {{origen}} {{destino}} {{-j|--jobs}} {{número}}`
|
||||
`crane copy {{origen}} {{destino}} {{[-j|--jobs]}} {{número}}`
|
||||
|
||||
- Evita sobrescribir las etiquetas existentes en el destino:
|
||||
|
||||
`crane copy {{origen}} {{destino}} {{-n|--no-clobber}}`
|
||||
`crane copy {{origen}} {{destino}} {{[-n|--no-clobber]}}`
|
||||
|
||||
- Muestra la ayuda:
|
||||
|
||||
`crane copy {{-h|--help}}`
|
||||
`crane copy {{[-h|--help]}}`
|
||||
|
|
|
@ -9,28 +9,28 @@
|
|||
|
||||
- Compara archivos, ignorando los espacios en blanco:
|
||||
|
||||
`diff {{-w|--ignore-all-space}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
|
||||
- Compara archivos, mostrando las diferencias lado a lado:
|
||||
|
||||
`diff {{-y|--side-by-side}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
`diff {{[-y|--side-by-side]}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
|
||||
- Compara archivos, mostrando las diferencias en formato unificado (como el que usa `git diff`):
|
||||
|
||||
`diff {{-u|--unified}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
`diff {{[-u|--unified]}} {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
|
||||
- Compara directorios de forma recursiva (muestra los nombres de los archivos/directorios que difieran y los cambios realizados en los archivos):
|
||||
|
||||
`diff {{-r|--recursive}} {{directorio_viejo}} {{directorio_nuevo}}`
|
||||
`diff {{[-r|--recursive]}} {{directorio_viejo}} {{directorio_nuevo}}`
|
||||
|
||||
- Compara directorios, mostrando solo los nombres de los archivos que difieren:
|
||||
|
||||
`diff {{-r|--recursive}} {{-q|--brief}} {{directorio_viejo}} {{directorio_nuevo}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{directorio_viejo}} {{directorio_nuevo}}`
|
||||
|
||||
- Crea un archivo de revisión para Git a partir de las diferencias entre dos archivos de texto, tratando los archivos inexistentes como vacíos:
|
||||
|
||||
`diff {{-a|--text}} {{-u|--unified}} {{-N|--new-file}} {{archivo_viejo}} {{archivo_nuevo}} > {{diff.patch}}`
|
||||
`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{archivo_viejo}} {{archivo_nuevo}} > {{diff.patch}}`
|
||||
|
||||
- Compara archivos, mostrando la salida en color y se esfuerza por encontrar el conjunto más pequeño de cambios:
|
||||
|
||||
`diff {{-d|--minimal}} --color=always {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
`diff {{[-d|--minimal]}} --color=always {{archivo_viejo}} {{archivo_nuevo}}`
|
||||
|
|
|
@ -9,28 +9,28 @@
|
|||
|
||||
- Inicia una nueva instancia de servidor sirviendo un directorio raíz específico:
|
||||
|
||||
`filebrowser {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Inicia una instancia con una dirección de host (por defecto `127.0.0.1`) y un puerto (por defecto `8080`) diferentes:
|
||||
|
||||
`filebrowser {{-a|--address}} {{host}} {{-p|--port}} {{puerto}} {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser {{[-a|--address]}} {{host}} {{[-p|--port]}} {{puerto}} {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Inicia una instancia con un archivo de configuración especificado, almacenando la base de datos de la aplicación en una ubicación específica (por defecto es `filebrowser.db` en el directorio actual):
|
||||
|
||||
`filebrowser {{-c|--config}} {{ruta/al/archivo}} {{-d|--database}} {{ruta/a/base_de_datos.db}} {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser {{[-c|--config]}} {{ruta/al/archivo}} {{[-d|--database]}} {{ruta/a/base_de_datos.db}} {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Configura un nombre de usuario y una contraseña diferentes para la primera cuenta (ambos por defecto `admin`) cuando configure una nueva instancia:
|
||||
|
||||
`filebrowser --username {{nombre_de_usuario}} --password {{contraseña}} {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser --username {{nombre_de_usuario}} --password {{contraseña}} {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Configura la cantidad máxima de procesadores de imágenes utilizados al generar miniaturas (por defecto es `4`):
|
||||
|
||||
`filebrowser --img-processors {{4}} {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser --img-processors {{4}} {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Desactiva las miniaturas de imágenes, así como la función Command Runner, que limita el acceso a los archivos de script alojados para que no se ejecuten dentro de la aplicación:
|
||||
- Desactiva las miniaturas de imágenes, así como la función Command Runner, que limita el acceso a los archivos de secuencia de comandos alojados para que no se ejecuten dentro de la aplicación:
|
||||
|
||||
`filebrowser --disable-exec --disable-thumbnails {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser --disable-exec --disable-thumbnails {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
||||
- Deshabilita el cambio de tamaño de las vistas previas de imágenes, así como la detección de tipos de archivo mediante la lectura de sus cabeceras:
|
||||
|
||||
`filebrowser --disable-preview-resize --disable-type-detection-by-header {{-r|--root}} {{ruta/al/directorio}}`
|
||||
`filebrowser --disable-preview-resize --disable-type-detection-by-header {{[-r|--root]}} {{ruta/al/directorio}}`
|
||||
|
|
|
@ -10,20 +10,20 @@
|
|||
|
||||
- Inicia el servicio, utilizando el nuevo archivo de configuración TOML (`frps.toml` en lugar de `frps.ini`) en el directorio actual:
|
||||
|
||||
`frpc {{-c|--config}} ./frps.toml`
|
||||
`frpc {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- Inicia el servicio, utilizando un archivo de configuración específico:
|
||||
|
||||
`frpc {{-c|--config}} {{ruta/al/archivo}}`
|
||||
`frpc {{[-c|--config]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Comprueba si el archivo de configuración es válido:
|
||||
|
||||
`frpc verify {{-c|--config}} {{ruta/al/archivo}}`
|
||||
`frpc verify {{[-c|--config]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Imprime script de configuración de autocompletado para Bash, fish, PowerShell o Zsh:
|
||||
- Imprime secuencia de comandos de configuración de autocompletado para Bash, fish, PowerShell o Zsh:
|
||||
|
||||
`frpc completion {{bash|fish|powershell|zsh}}`
|
||||
|
||||
- Muestra versión:
|
||||
|
||||
`frpc {{-v|--version}}`
|
||||
`frpc {{[-v|--version]}}`
|
||||
|
|
|
@ -10,20 +10,20 @@
|
|||
|
||||
- Inicia el servicio, utilizando el nuevo archivo de configuración TOML (`frps.toml` en lugar de `frps.ini`) en el directorio actual:
|
||||
|
||||
`frps {{-c|--config}} ./frps.toml`
|
||||
`frps {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- Inicia el servicio, utilizando un archivo de configuración especificado:
|
||||
|
||||
`frps {{-c|--config}} {{ruta/al/archivo}}`
|
||||
`frps {{[-c|--config]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Comprueba si el archivo de configuración es válido:
|
||||
|
||||
`frps verify {{-c|--config}} {{ruta/al/archivo}}`
|
||||
`frps verify {{[-c|--config]}} {{ruta/al/archivo}}`
|
||||
|
||||
- Imprime script de configuración de autocompletado para Bash, fish, PowerShell o Zsh:
|
||||
- Imprime secuencia de comandos de configuración de autocompletado para Bash, fish, PowerShell o Zsh:
|
||||
|
||||
`frps completion {{bash|fish|powershell|zsh}}`
|
||||
|
||||
- Muestra versión:
|
||||
|
||||
`frps {{-v|--version}}`
|
||||
`frps {{[-v|--version]}}`
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Compila varios archivos de código fuente en un ejecutable:
|
||||
|
||||
`gcc {{ruta/a/la/fuente1.c ruta/a/la/fuente2.c ...}} {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`gcc {{ruta/a/la/fuente1.c ruta/a/la/fuente2.c ...}} {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Muestra todos los errores y advertencias:
|
||||
|
||||
`gcc {{ruta/a/la/fuente.c}} -Wall {{-o|--output}} {{ejecutable}}`
|
||||
`gcc {{ruta/a/la/fuente.c}} -Wall {{[-o|--output]}} {{ejecutable}}`
|
||||
|
||||
- Muestra las advertencias comunes, añade símbolos de depuración en el ejecutable, y optimiza sin afectar la depuración:
|
||||
|
||||
`gcc {{ruta/a/la/fuente.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`gcc {{ruta/a/la/fuente.c}} -Wall {{-g|--debug}} -Og {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Incluye las bibliotecas de una ruta diferente:
|
||||
|
||||
`gcc {{ruta/a/la/fuente.c}} {{-o|--output}} {{ruta/al/ejecutable}} -I{{ruta/a/header}} -L{{ruta/a/la/biblioteca}} -l{{nombre_de_biblioteca}}`
|
||||
`gcc {{ruta/a/la/fuente.c}} {{[-o|--output]}} {{ruta/al/ejecutable}} -I{{ruta/a/header}} -L{{ruta/a/la/biblioteca}} -l{{nombre_de_biblioteca}}`
|
||||
|
||||
- Compila el código fuente a instrucciones de Ensamblador (Assembler):
|
||||
|
||||
`gcc {{-S|--assemble}} {{ruta/a/la/fuente.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{ruta/a/la/fuente.c}}`
|
||||
|
||||
- Compila el código fuente a un archivo objeto sin vincular:
|
||||
|
||||
`gcc {{-c|--compile}} {{ruta/a/la/fuente.c}}`
|
||||
`gcc {{[-c|--compile]}} {{ruta/a/la/fuente.c}}`
|
||||
|
||||
- Optimiza el programa compilado en función de velocidad de ejecución:
|
||||
|
||||
`gcc {{ruta/a/la/fuente.c}} -O{{1|2|3|fast}} {{-o|--output}} {{ruta/al/ejecutable}}`
|
||||
`gcc {{ruta/a/la/fuente.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{ruta/al/ejecutable}}`
|
||||
|
||||
- Versión de visualización:
|
||||
|
||||
|
|
|
@ -9,24 +9,24 @@
|
|||
|
||||
- مقایسه فایل ها، با صرف نظر از فاصله های خالی:
|
||||
|
||||
`diff --ignore-all-space {{old_file}} {{new_file}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- مقایسه فایل ها، با نمایش تفاوت ها در کنار هم:
|
||||
|
||||
`diff --side-by-side {{old_file}} {{new_file}}`
|
||||
`diff {{[-y|--side-by-side]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- مقایسه فایل ها، به نمایش تفاوت ها به صورت یکپارچه (همانند `git diff`) :
|
||||
|
||||
`diff --unified {{old_file}} {{new_file}}`
|
||||
`diff {{[-u|--unified]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- مقایسه بازگشتی پوشه ها (نمایش اسامی متفاوت فایل ها و پوشه ها و همچنین تغییرات فایل ها):
|
||||
|
||||
`diff --recursive {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{old_directory}} {{new_directory}}`
|
||||
|
||||
- نمایش نام فایل های متفاوت مقایسه شده:
|
||||
|
||||
`diff --recursive --brief {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{old_directory}} {{new_directory}}`
|
||||
|
||||
- از تفاوت دو فایل متنی یک بروزرسانی میسازد، فایل های ناموجود را خالی فرض میکند :
|
||||
|
||||
`diff --text --unified --new-file {{old_file}} {{new_file}} > {{diff.patch}}`
|
||||
`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{old_file}} {{new_file}} > {{diff.patch}}`
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
- Crée un nouvel enregistrement, en limitant le temps d’inactivité au maximum à 2.5 secondes :
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- Affiche la sortie complète d'un enregistrement local :
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Envelopper la sortie codée à une largeur spécifique (`0` désactive l'enveloppement) :
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{chemin/vers/fichier}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{chemin/vers/fichier}}`
|
||||
|
||||
- Décode un fichier :
|
||||
|
||||
`base32 {{-d|--decode}} {{chemin/vers/fichier}}`
|
||||
`base32 {{[-d|--decode]}} {{chemin/vers/fichier}}`
|
||||
|
||||
- Encode depuis `stdin` :
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Décode depuis `stdin` :
|
||||
|
||||
`{{commande}} | base32 {{-d|--decode}}`
|
||||
`{{commande}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Envelopper la sortie codée à une largeur spécifique (`0` désactive l'enveloppement) :
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{chemin/vers/fichier}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{chemin/vers/fichier}}`
|
||||
|
||||
- Décode un fichier :
|
||||
|
||||
`base64 {{-d|--decode}} {{chemin/vers/fichier}}`
|
||||
`base64 {{[-d|--decode]}} {{chemin/vers/fichier}}`
|
||||
|
||||
- Encode depuis `stdin` :
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Décode depuis `stdin` :
|
||||
|
||||
`{{commande}} | base64 {{-d|--decode}}`
|
||||
`{{commande}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
|
||||
- Numérote toutes les lignes affichées :
|
||||
|
||||
`bat --number {{fichier}}`
|
||||
`bat {{[-n|--number]}} {{fichier}}`
|
||||
|
||||
- Affiche le contenu d'un fichier JSON sur la sortie standard avec mise en valeur de la syntaxe :
|
||||
|
||||
`bat --language json {{chemin/vers/fichier.json}}`
|
||||
`bat {{[-l|--language]}} json {{chemin/vers/fichier.json}}`
|
||||
|
||||
- Affiche tous les langages pris en charge :
|
||||
|
||||
`bat --list-languages`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -9,24 +9,24 @@
|
|||
|
||||
- Compare deux fichiers, en ignorant l'espacement :
|
||||
|
||||
`diff --ignore-all-space {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
|
||||
- Compare deux fichiers, en affichant différences côte à côte :
|
||||
|
||||
`diff --side-by-side {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
`diff {{[-y|--side-by-side]}} {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
|
||||
- Compare deux fichiers, en affichant les différences dans un format unifié (comme `git diff`) :
|
||||
|
||||
`diff --unified {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
`diff {{[-u|--unified]}} {{ancien_fichier}} {{nouveau_fichier}}`
|
||||
|
||||
- Compare récursivement deux répertoires directories (affiche les noms de fichiers et de répertoires divergents ainsi que les modifications de fichiers) :
|
||||
|
||||
`diff --recursive {{ancien_répertoire}} {{nouveau_répertoire}}`
|
||||
`diff {{[-r|--recursive]}} {{ancien_répertoire}} {{nouveau_répertoire}}`
|
||||
|
||||
- Compare deux répertoires, en affichant uniquement les fichiers qui diffèrent :
|
||||
|
||||
`diff --recursive --brief {{ancien_répertoire}} {{nouveau_répertoire}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{ancien_répertoire}} {{nouveau_répertoire}}`
|
||||
|
||||
- Crée un fichier patch des différences entre deux fichiers texte pour Git, en traitant les fichiers inexistants comme fichiers vides :
|
||||
|
||||
`diff --text --unified --new-file {{ancien_fichier}} {{nouveau_fichier}} > {{diff.patch}}`
|
||||
`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{ancien_fichier}} {{nouveau_fichier}} > {{diff.patch}}`
|
||||
|
|
|
@ -5,20 +5,20 @@
|
|||
|
||||
- Compile plusieurs fichiers source en un exécutable :
|
||||
|
||||
`gcc {{chemin/vers/le/fichier1.c chemin/vers/le/fichier2.c ...}} -o {{chemin/vers/l'exécutable/à/produire}}`
|
||||
`gcc {{chemin/vers/le/fichier1.c chemin/vers/le/fichier2.c ...}} {{[-o|--output]}} {{chemin/vers/l'exécutable/à/produire}}`
|
||||
|
||||
- Active les averissements et les symboles de débogage dans la sortie de commande :
|
||||
|
||||
`gcc {{chemin/vers/le/fichiersource.c}} -Wall -Og -o {{chemin/vers/l'exécutable/à/produire}}`
|
||||
`gcc {{chemin/vers/le/fichiersource.c}} -Wall -Og {{[-o|--output]}} {{chemin/vers/l'exécutable/à/produire}}`
|
||||
|
||||
- Inclut les bibliothèques depuis un chemin différent de celui par défaut :
|
||||
|
||||
`gcc {{chemin/vers/le/fichiersource.c}} -o {{chemin/vers/l'exécutable/à/produire}} -I{{chemin/vers/les/fichiers/d'en-tête}} -L{{chemin/vers/la/bibliothèque}} -l{{bibliothèque}}`
|
||||
`gcc {{chemin/vers/le/fichiersource.c}} {{[-o|--output]}} {{chemin/vers/l'exécutable/à/produire}} -I{{chemin/vers/les/fichiers/d'en-tête}} -L{{chemin/vers/la/bibliothèque}} -l{{bibliothèque}}`
|
||||
|
||||
- Compile le code source en des instructions d'assemblage :
|
||||
|
||||
`gcc -S {{chemin/vers/le/fichiersource.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{chemin/vers/le/fichiersource.c}}`
|
||||
|
||||
- Compile le code source en un fichier objet sans le lier :
|
||||
|
||||
`gcc -c {{chemin/vers/le/fichiersource.c}}`
|
||||
`gcc {{[-c|--compile]}} {{chemin/vers/le/fichiersource.c}}`
|
||||
|
|
|
@ -29,4 +29,4 @@
|
|||
|
||||
- Tampilkan bantuan mengenai manajemen peran (role) maupun koleksi (collection):
|
||||
|
||||
`ansible-galaxy {{role|collection}} {{-h|--help}}`
|
||||
`ansible-galaxy {{role|collection}} {{[-h|--help]}}`
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
- Buat rekaman baru, dengan membatasi waktu diam/idle terlama selama 2.5 detik:
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- Tampilkan seluruh luaran/output terminal yang dikeluarkan selama sesi perekaman:
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Bungkus luaran Base32 dalam panjang karakter yang tetap (nilai `0` akan menonaktifkan pembungkusan):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{jalan/menuju/berkas}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Dekodekan kode Base32 yang tersimpan dalam suatu berkas:
|
||||
|
||||
`base32 {{-d|--decode}} {{jalan/menuju/berkas}}`
|
||||
`base32 {{[-d|--decode]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Kodekan isi dari `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Dekodekan kode Base32 yang berasal dari `stdout`:
|
||||
|
||||
`{{perintah}} | base32 {{-d|--decode}}`
|
||||
`{{perintah}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Bungkus luaran Base64 dalam panjang karakter yang tetap (nilai `0` akan menonaktifkan pembungkusan):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{jalan/menuju/berkas}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Dekodekan kode Base64 yang tersimpan dalam suatu berkas:
|
||||
|
||||
`base64 {{-d|--decode}} {{jalan/menuju/berkas}}`
|
||||
`base64 {{[-d|--decode]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Kodekan isi dari `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Dekodekan kode Base64 yang berasal dari `stdout`:
|
||||
|
||||
`{{perintah}} | base64 {{-d|--decode}}`
|
||||
`{{perintah}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,20 +18,20 @@
|
|||
|
||||
- Sorot baris tertentu dengan warna latar belakang yang berbeda:
|
||||
|
||||
`bat {{-H|--highlight-line}} {{10|5:10|:10|10:|10:+5}} {{jalan/menuju/berkas}}`
|
||||
`bat {{[-H|--highlight-line]}} {{10|5:10|:10|10:|10:+5}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Tunjukkan segala karakter yang tak tercetak seperti spasi, tab, atau indikator baris baru:
|
||||
|
||||
`bat {{-A|--show-all}} {{jalan/menuju/berkas}}`
|
||||
`bat {{[-A|--show-all]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Hapus seluruh informasi dekoratif selain nomor baris pada luaran program:
|
||||
|
||||
`bat {{-n|--number}} {{jalan/menuju/berkas}}`
|
||||
`bat {{[-n|--number]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Tampilkan sintaks berwarna terhadap berkas JSON dengan mengatur bahasa sintaks berkas secara eksplisit:
|
||||
|
||||
`bat {{-l|--language}} json {{jalan/menuju/berkas.json}}`
|
||||
`bat {{[-l|--language]}} json {{jalan/menuju/berkas.json}}`
|
||||
|
||||
- Tampilka semua jenis bahasa sintaks berkas yang didukung:
|
||||
|
||||
`bat {{-L|--list-languages}}`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
- Masukkan seluruh buku dalam suatu direktori secara rekursif:
|
||||
|
||||
`calibredb add {{-r|--recurse}} {{jalan/menuju/direktori}}`
|
||||
`calibredb add {{[-r|--recurse]}} {{jalan/menuju/direktori}}`
|
||||
|
||||
- Hapus satu atau beberapa buku dari perpustakaan. Anda perlu memasukkan nomor-nomor induk (lihat keterangan di atas):
|
||||
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Ubah suatu berkas kode sumber menjadi program:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang++ {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan pesan peringatan dan galat dalam output:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -Wall {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -Wall {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Izinkan peringatan dan simbol debug dalam output:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Pilih standar bahasa untuk dikompilasi:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -std={{c++20}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -std={{c++20}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Sertakan pustaka (library) dari direktori yang berbeda:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} {{-o|--output}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} {{[-o|--output]}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
|
||||
- Susun kode sumber menjadi program dalam format LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang++ {{-S|--assemble}} -emit-llvm {{jalan/menuju/sumber.cpp}} {{-o|--output}} {{jalan/menuju/program.ll}}`
|
||||
`clang++ {{[-S|--assemble]}} -emit-llvm {{jalan/menuju/sumber.cpp}} {{[-o|--output]}} {{jalan/menuju/program.ll}}`
|
||||
|
||||
- [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat:
|
||||
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -O{{1|2|3|fast}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang++ {{jalan/menuju/sumber.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan versi penyusun:
|
||||
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Ubah suatu berkas kode sumber menjadi program:
|
||||
|
||||
`clang {{jalan/menuju/sumber1.c jalan/menuju/sumber2.c ...}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang {{jalan/menuju/sumber1.c jalan/menuju/sumber2.c ...}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan pesan peringatan dan galat dalam output:
|
||||
|
||||
`clang {{jalan/menuju/sumber.c}} -Wall {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang {{jalan/menuju/sumber.c}} -Wall {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Izinkan peringatan dan simbol debug dalam output:
|
||||
|
||||
`clang {{jalan/menuju/sumber.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang {{jalan/menuju/sumber.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Sertakan pustaka (library) dari direktori yang berbeda:
|
||||
|
||||
`clang {{jalan/menuju/sumber.c}} {{-o|--output}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
`clang {{jalan/menuju/sumber.c}} {{[-o|--output]}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
|
||||
- Susun kode sumber menjadi program dalam format LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang {{-S|--assemble}} -emit-llvm {{jalan/menuju/sumber.c}} {{-o|--output}} {{jalan/menuju/program.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{jalan/menuju/sumber.c}} {{[-o|--output]}} {{jalan/menuju/program.ll}}`
|
||||
|
||||
- Susun kode sumber tanpa digabungkan:
|
||||
|
||||
`clang {{-c|--compile}} {{jalan/menuju/sumber.c}}`
|
||||
`clang {{[-c|--compile]}} {{jalan/menuju/sumber.c}}`
|
||||
|
||||
- [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat:
|
||||
|
||||
`clang {{jalan/menuju/sumber.c}} -O{{1|2|3|fast}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`clang {{jalan/menuju/sumber.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan versi penyusun:
|
||||
|
||||
|
|
|
@ -13,12 +13,12 @@
|
|||
|
||||
- Unggah berkas dengan suatu kata sandi:
|
||||
|
||||
`ffsend upload {{jalan/menuju/berkas}} {{-p|--password}} {{kata_sandi}}`
|
||||
`ffsend upload {{jalan/menuju/berkas}} {{[-p|--password]}} {{kata_sandi}}`
|
||||
|
||||
- Unduh berkas yang terlindungi dengan suatu kata sandi:
|
||||
|
||||
`ffsend download {{url}} {{-p|--password}} {{kata_sandi}}`
|
||||
`ffsend download {{url}} {{[-p|--password]}} {{kata_sandi}}`
|
||||
|
||||
- Unggah dan atur unggahan supaya hanya dapat diunduh sebanyak 4 kali:
|
||||
|
||||
`ffsend upload {{jalan/menuju/berkas}} {{-d|--downloads}} {{4}}`
|
||||
`ffsend upload {{jalan/menuju/berkas}} {{[-d|--downloads]}} {{4}}`
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
|
||||
- Jalankan layanan menggunakan berkas konfigurasi dengan format terbaru berbasis TOML (`frps.toml` daripada `frps.ini`) pada direktori saat ini:
|
||||
|
||||
`frpc {{-c|--config}} ./frps.toml`
|
||||
`frpc {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- Start the service, using a specific configuration file:
|
||||
|
||||
`frpc {{-c|--config}} {{jalan/menuju/berkas}}`
|
||||
`frpc {{[-c|--config]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Periksa apakah isi suatu berkas konfigurasi menggunakan format yang valid:
|
||||
|
||||
`frpc verify {{-c|--config}} {{jalan/menuju/berkas}}`
|
||||
`frpc verify {{[-c|--config]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Tampilkan isi skrip shell yang perlu dijalankan untuk mengaktifkan fitur penyelesaian perintah otomatis (autocomplete) bagi Bash, fish, PowerShell, maupun Zsh:
|
||||
|
||||
|
@ -26,4 +26,4 @@
|
|||
|
||||
- Tampilkan informasi versi:
|
||||
|
||||
`frpc {{-v|--version}}`
|
||||
`frpc {{[-v|--version]}}`
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
|
||||
- Jalankan layanan menggunakan berkas konfigurasi dengan format terbaru berbasis TOML (`frps.toml` daripada `frps.ini`) pada direktori saat ini:
|
||||
|
||||
`frps {{-c|--config}} ./frps.toml`
|
||||
`frps {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- Start the service, using a specific configuration file:
|
||||
|
||||
`frps {{-c|--config}} {{jalan/menuju/berkas}}`
|
||||
`frps {{[-c|--config]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Periksa apakah isi suatu berkas konfigurasi menggunakan format yang valid:
|
||||
|
||||
`frps verify {{-c|--config}} {{jalan/menuju/berkas}}`
|
||||
`frps verify {{[-c|--config]}} {{jalan/menuju/berkas}}`
|
||||
|
||||
- Tampilkan isi skrip shell yang perlu dijalankan untuk mengaktifkan fitur penyelesaian perintah otomatis (autocomplete) bagi Bash, fish, PowerShell, maupun Zsh:
|
||||
|
||||
|
@ -26,4 +26,4 @@
|
|||
|
||||
- Tampilkan informasi versi:
|
||||
|
||||
`frps {{-v|--version}}`
|
||||
`frps {{[-v|--version]}}`
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Ubah suatu berkas kode sumber menjadi program:
|
||||
|
||||
`g++ {{jalan/menuju/sumber1.c jalan/menuju/sumber2.cpp ...}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`g++ {{jalan/menuju/sumber1.c jalan/menuju/sumber2.cpp ...}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan pesan peringatan dan galat dalam output:
|
||||
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -Wall {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -Wall {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Izinkan peringatan dan simbol debug dalam output:
|
||||
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -Wall {{-g|--debug}} -Og {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Pilih standar bahasa untuk dikompilasi (C++98/C++11/C++14/C++17):
|
||||
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -std={{c++98|c++11|c++14|c++17}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -std={{c++98|c++11|c++14|c++17}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Sertakan pustaka (library) dari direktori yang berbeda:
|
||||
|
||||
`g++ {{jalan/menuju/sumber.cpp}} {{-o|--output}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
`g++ {{jalan/menuju/sumber.cpp}} {{[-o|--output]}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
|
||||
- Susun dan gabungkan beberapa berkas kode sumber menjadi suatu berkas program biner:
|
||||
|
||||
`g++ {{-c|--compile}} {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} && g++ {{-o|--output}} {{jalan/menuju/program}} {{jalan/menuju/sumber1.o jalan/menuju/sumber2.o ...}}`
|
||||
`g++ {{-c|--compile}} {{jalan/menuju/sumber1.cpp jalan/menuju/sumber2.cpp ...}} && g++ {{[-o|--output]}} {{jalan/menuju/program}} {{jalan/menuju/sumber1.o jalan/menuju/sumber2.o ...}}`
|
||||
|
||||
- [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat:
|
||||
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -O{{1|2|3|fast}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`g++ {{jalan/menuju/sumber.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan versi penyusun:
|
||||
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Ubah beberapa sumber kode menjadi program:
|
||||
|
||||
`gcc {{jalan/menuju/sumber1.c jalan/menuju/sumber2.c ...}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`gcc {{jalan/menuju/sumber1.c jalan/menuju/sumber2.c ...}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan pesan peringatan dan galat dalam output:
|
||||
|
||||
`gcc {{jalan/menuju/sumber.c}} -Wall {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`gcc {{jalan/menuju/sumber.c}} -Wall {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Izinkan peringatan dan simbol debug dalam output:
|
||||
|
||||
`gcc {{jalan/menuju/sumber.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`gcc {{jalan/menuju/sumber.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Sertakan pustaka (library) dari direktori yang berbeda:
|
||||
|
||||
`gcc {{jalan/menuju/sumber.c}} {{-o|--output}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
`gcc {{jalan/menuju/sumber.c}} {{[-o|--output]}} {{jalan/menuju/program}} -I{{jalan/menuju/header}} -L{{jalan/menuju/pustaka}} -l{{nama_pustaka}}`
|
||||
|
||||
- Susun kode sumber ke dalam bahasa tingkat rendah (assembly):
|
||||
|
||||
`gcc {{-S|--assemble}} {{jalan/menuju/sumber.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{jalan/menuju/sumber.c}}`
|
||||
|
||||
- Susun kode sumber tanpa digabungkan:
|
||||
|
||||
`gcc {{-c|--compile}} {{jalan/menuju/sumber.c}}`
|
||||
`gcc {{[-c|--compile]}} {{jalan/menuju/sumber.c}}`
|
||||
|
||||
- [O]ptimalkan progam yang disusun agar dapat dijalankan lebih cepat:
|
||||
|
||||
`gcc {{jalan/menuju/sumber.c}} -O{{1|2|3|fast}} {{-o|--output}} {{jalan/menuju/program}}`
|
||||
`gcc {{jalan/menuju/sumber.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{jalan/menuju/program}}`
|
||||
|
||||
- Tampilkan versi penyusun:
|
||||
|
||||
|
|
|
@ -29,4 +29,4 @@
|
|||
|
||||
- Mostra aiuto su ruoli o collezioni:
|
||||
|
||||
`ansible-galaxy {{ruolo|collezione}} {{-h|--help}}`
|
||||
`ansible-galaxy {{ruolo|collezione}} {{[-h|--help]}}`
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
- Avvia una nuova registrazione, limitando qualsiasi periodo di inattività a 2.5 secondi:
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- Stampa l'output completo di una sessione locale:
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Avvolgi l'output codificato a una larghezza specifica (`0` disabilita l'avvolgimento):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{percoso/del/file}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{percoso/del/file}}`
|
||||
|
||||
- Decodifica un file:
|
||||
|
||||
`base32 {{-d|--decode}} {{percoso/del/file}}`
|
||||
`base32 {{[-d|--decode]}} {{percoso/del/file}}`
|
||||
|
||||
- Codifica da `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodifica da `stdin`:
|
||||
|
||||
`{{comando}} | base32 {{-d|--decode}}`
|
||||
`{{comando}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Avvolgi l'output codificato a una larghezza specifica (`0` disabilita l'avvolgimento):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{percoso/del/file}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{percoso/del/file}}`
|
||||
|
||||
- Decodifica un file:
|
||||
|
||||
`base64 {{-d|--decode}} {{percoso/del/file}}`
|
||||
`base64 {{[-d|--decode]}} {{percoso/del/file}}`
|
||||
|
||||
- Codifica da `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodifica da `stdin`:
|
||||
|
||||
`{{comando}} | base64 {{-d|--decode}}`
|
||||
`{{comando}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
|
||||
- Numera tutte le linee stampate:
|
||||
|
||||
`bat --number {{file}}`
|
||||
`bat {{[-n|--number]}} {{file}}`
|
||||
|
||||
- Evidenzia la sintassi di un file JSON:
|
||||
|
||||
`bat --language json {{file.json}}`
|
||||
`bat {{[-l|--language]}} json {{file.json}}`
|
||||
|
||||
- Mostra tutti i linguaggi supportati:
|
||||
|
||||
`bat --list-languages`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
- Aggiungere ricorsivamente tutti gli e-book in una directory alla libreria:
|
||||
|
||||
`calibredb add {{-r|--recurse}} {{percoso/della/directory}}`
|
||||
`calibredb add {{[-r|--recurse]}} {{percoso/della/directory}}`
|
||||
|
||||
- Rimuovi uno o più e-book dalla libreria. Sono necessari gli ID (vedi sopra):
|
||||
|
||||
|
|
|
@ -5,16 +5,16 @@
|
|||
|
||||
- Compila un file sorgente in un binario eseguibile:
|
||||
|
||||
`clang {{sorgente_input.c}} -o {{eseguibile_output}}`
|
||||
`clang {{sorgente_input.c}} {{[-o|--output]}} {{eseguibile_output}}`
|
||||
|
||||
- Attiva l'output di tutti gli errori ed i warning:
|
||||
|
||||
`clang {{sorgente_input.c}} -Wall -o {{eseguibile_output}}`
|
||||
`clang {{sorgente_input.c}} -Wall {{[-o|--output]}} {{eseguibile_output}}`
|
||||
|
||||
- Includi librerie contenute in un percorso differente da quello del file di sorgente:
|
||||
|
||||
`clang {{sorgente_input.c}} -o {{eseguibile_output}} -I{{percorso_header}} -L{{percorso_librerie}} -l{{nome_libreria}}`
|
||||
`clang {{sorgente_input.c}} {{[-o|--output]}} {{eseguibile_output}} -I{{percorso_header}} -L{{percorso_librerie}} -l{{nome_libreria}}`
|
||||
|
||||
- Compila codice sorgente in IR LLVM (Intermediate Representation):
|
||||
|
||||
`clang -S -emit-llvm {{file.c}} -o {{file.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{file.c}} {{[-o|--output]}} {{file.ll}}`
|
||||
|
|
|
@ -9,20 +9,20 @@
|
|||
|
||||
- Confronta due file ignorando gli spazi:
|
||||
|
||||
`diff -w {{vecchio_file}} {{nuovo_file}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{vecchio_file}} {{nuovo_file}}`
|
||||
|
||||
- Confronta due file mostrando le differenze fianco a fianco:
|
||||
|
||||
`diff -y {{vecchio_file}} {{nuovo_file}}`
|
||||
`diff {{[-y|--side-by-side]}} {{vecchio_file}} {{nuovo_file}}`
|
||||
|
||||
- Confronta due file, mostrando le differenze in formato unificato (come `git diff`):
|
||||
|
||||
`diff -u {{vecchio_file}} {{nuovo_file}}`
|
||||
`diff {{[-u|--unified]}} {{vecchio_file}} {{nuovo_file}}`
|
||||
|
||||
- Confronta due directory ricorsivamente (mostra i nomi dei file/directory diversi e le differenze trai file):
|
||||
|
||||
`diff -r {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{old_directory}} {{new_directory}}`
|
||||
|
||||
- Confronta due directory mostrando solamente il nome dei file diversi:
|
||||
|
||||
`diff -rq {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{old_directory}} {{new_directory}}`
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
|
||||
- すべての出力行に番号をつける:
|
||||
|
||||
`bat --number {{ファイル}}`
|
||||
`bat {{[-n|--number]}} {{ファイル}}`
|
||||
|
||||
- JSON ファイルをハイライトする構文:
|
||||
|
||||
`bat --language json {{JSONファイル}}`
|
||||
`bat {{[-l|--language]}} json {{JSONファイル}}`
|
||||
|
||||
- すべての対応言語を表示する:
|
||||
|
||||
`bat --list-languages`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -9,28 +9,28 @@
|
|||
|
||||
- 空白を無視してファイルを比較する:
|
||||
|
||||
`diff {{-w|--ignore-all-space}} {{old_file}} {{new_file}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- ファイルを比較し、差分を並べて表示する:
|
||||
|
||||
`diff {{-y|--side-by-side}} {{old_file}} {{new_file}}`
|
||||
`diff {{[-y|--side-by-side]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- ファイルを比較し、差分を統一フォーマットで表示する(`git diff`で使用される):
|
||||
|
||||
`diff {{-u|--unified}} {{old_file}} {{new_file}}`
|
||||
`diff {{[-u|--unified]}} {{old_file}} {{new_file}}`
|
||||
|
||||
- ディレクトリを再帰的に比較する (異なるファイル/ディレクトリの名前と、ファイルに加えられた変更を表示します):
|
||||
|
||||
`diff {{-r|--recursive}} {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{old_directory}} {{new_directory}}`
|
||||
|
||||
- ディレクトリを比較し、異なるファイル名のみを表示する:
|
||||
|
||||
`diff {{-r|--recursive}} {{-q|--brief}} {{old_directory}} {{new_directory}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{old_directory}} {{new_directory}}`
|
||||
|
||||
- 2つのテキストファイルの差分からGit用のパッチファイルを作成します。存在しないファイルは空ファイルとして扱います:
|
||||
|
||||
`diff {{-a|--text}} {{-u|--unified}} {{-N|--new-file}} {{old_file}} {{new_file}} > {{diff.patch}}`
|
||||
`diff {{[-a|--text]}} {{[-u|--unified]}} {{[-N|--new-file]}} {{old_file}} {{new_file}} > {{diff.patch}}`
|
||||
|
||||
- ファイルを比較し、出力を色分けして表示する:
|
||||
|
||||
`diff {{-d|--minimal}} --color=always {{old_file}} {{new_file}}`
|
||||
`diff {{[-d|--minimal]}} --color=always {{old_file}} {{new_file}}`
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- 複数のソースファイルを実行ファイルにコンパイルする:
|
||||
|
||||
`gcc {{path/to/source1.c path/to/source2.c ...}} {{-o|--output}} {{path/to/output_executable}}`
|
||||
`gcc {{path/to/source1.c path/to/source2.c ...}} {{[-o|--output]}} {{path/to/output_executable}}`
|
||||
|
||||
- 全てのエラーと警告の出力を有効にする:
|
||||
|
||||
`gcc {{path/to/source.c}} -Wall {{-o|--output}} {{output_executable}}`
|
||||
`gcc {{path/to/source.c}} -Wall {{[-o|--output]}} {{output_executable}}`
|
||||
|
||||
- 一般的な警告、デバッグシンボルを出力に表示し、デバッグに影響を与えずに最適化する:
|
||||
|
||||
`gcc {{path/to/source.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{path/to/output_executable}}`
|
||||
`gcc {{path/to/source.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{path/to/output_executable}}`
|
||||
|
||||
- 別のパスからライブラリをインクルード:
|
||||
|
||||
`gcc {{path/to/source.c}} {{-o|--output}} {{path/to/output_executable}} -I{{path/to/header}} -L{{path/to/library}} -l{{library_name}}`
|
||||
`gcc {{path/to/source.c}} {{[-o|--output]}} {{path/to/output_executable}} -I{{path/to/header}} -L{{path/to/library}} -l{{library_name}}`
|
||||
|
||||
- ソースコードをアセンブラ命令にコンパイルする:
|
||||
|
||||
`gcc {{-S|--assemble}} {{path/to/source.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{path/to/source.c}}`
|
||||
|
||||
- ソースコードをリンクせずにオブジェクトファイルにコンパイル:
|
||||
|
||||
`gcc {{-c|--compile}} {{path/to/source.c}}`
|
||||
`gcc {{[-c|--compile]}} {{path/to/source.c}}`
|
||||
|
||||
- コンパイルしたプログラムをパフォーマンスのために最適化する:
|
||||
|
||||
`gcc {{path/to/source.c}} -O{{1|2|3|fast}} {{-o|--output}} {{path/to/output_executable}}`
|
||||
`gcc {{path/to/source.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{path/to/output_executable}}`
|
||||
|
||||
- バージョンを表示:
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@
|
|||
|
||||
- 에피소드 범위를 지정하여 특정 애니메이션을 다운로드:
|
||||
|
||||
`animdl download {{애니메이션_제목}} {{-r|--range}} {{시작_에피소드}}-{{종료_에피소드}}`
|
||||
`animdl download {{애니메이션_제목}} {{[-r|--range]}} {{시작_에피소드}}-{{종료_에피소드}}`
|
||||
|
||||
- 다운로드 디렉터리를 지정하여 특정 애니메이션을 다운로드:
|
||||
|
||||
`animdl download {{애니메이션_제목}} {{-d|--download-dir}} {{경로/대상/다운로드_디렉터리}}`
|
||||
`animdl download {{애니메이션_제목}} {{[-d|--download-dir]}} {{경로/대상/다운로드_디렉터리}}`
|
||||
|
||||
- 특정 애니메이션의 스트림 URL을 확인:
|
||||
|
||||
|
@ -34,4 +34,4 @@
|
|||
|
||||
- 특정 애니메이션의 최신 에피소드를 스트리밍:
|
||||
|
||||
`animdl stream {{애니메이션_제목}} {{-s|--special}} latest`
|
||||
`animdl stream {{애니메이션_제목}} {{[-s|--special]}} latest`
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
- 새로운 녹음을 만들어 유휴 시간을 최대 2.5초로 제한:
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- 로컬 저장 기록의 전체 출력을 인쇄:
|
||||
|
||||
|
|
|
@ -5,15 +5,15 @@
|
|||
|
||||
- 기존 위치를 작업공간 경로로 사용:
|
||||
|
||||
`azurite {{-l|--location}} {{경로/대상/디렉터리}}`
|
||||
`azurite {{[-l|--location]}} {{경로/대상/디렉터리}}`
|
||||
|
||||
- 콘솔에 표시된 액세스 로그를 비활성화:
|
||||
|
||||
`azurite {{-s|--silent}}`
|
||||
`azurite {{[-s|--silent]}}`
|
||||
|
||||
- 파일 경로를 로그 대상으로 제공하여, 디버그 로그를 활성화:
|
||||
|
||||
`azurite {{-d|--debug}} {{경로/대상/debug.log}}`
|
||||
`azurite {{[-d|--debug]}} {{경로/대상/debug.log}}`
|
||||
|
||||
- Blob/Queue/Table 서비스의 수신 주소를 사용자 정의:
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- 특정 너비로 인코딩된 출력을 래핑합니다 (`0`은 래핑을 비활성화합니다):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{경로/대상/파일}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{경로/대상/파일}}`
|
||||
|
||||
- 파일 디코딩:
|
||||
|
||||
`base32 {{-d|--decode}} {{경로/대상/파일}}`
|
||||
`base32 {{[-d|--decode]}} {{경로/대상/파일}}`
|
||||
|
||||
- `stdin`에서 인코딩:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- `stdin`에서 디코딩:
|
||||
|
||||
`{{somecommand}} | base32 {{-d|--decode}}`
|
||||
`{{somecommand}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- 특정 너비로 인코딩된 출력을 래핑합니다 (`0`은 래핑을 비활성화합니다):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{경로/대상/파일}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{경로/대상/파일}}`
|
||||
|
||||
- 파일 디코딩:
|
||||
|
||||
`base64 {{-d|--decode}} {{경로/대상/파일}}`
|
||||
`base64 {{[-d|--decode]}} {{경로/대상/파일}}`
|
||||
|
||||
- `stdin`에서 인코딩:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- `stdin`에서 디코딩:
|
||||
|
||||
`{{somecommand}} | base64 {{-d|--decode}}`
|
||||
`{{somecommand}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -22,16 +22,16 @@
|
|||
|
||||
- 공백, 탭, 개행 문자 등 출력할 수 없는 문자 표시:
|
||||
|
||||
`bat {{-A|--show-all}} {{경로/대상/파일}}`
|
||||
`bat {{[-A|--show-all]}} {{경로/대상/파일}}`
|
||||
|
||||
- 출력에서 줄 번호를 제외한 모든 꾸밈을 제거:
|
||||
|
||||
`bat {{-n|--number}} {{경로/대상/파일}}`
|
||||
`bat {{[-n|--number]}} {{경로/대상/파일}}`
|
||||
|
||||
- 구문은 언어를 명시적으로 설정하여 JSON 파일을 강조 표시:
|
||||
|
||||
`bat {{-l|--language}} json {{경로/대상/파일.json}}`
|
||||
`bat {{[-l|--language]}} json {{경로/대상/파일.json}}`
|
||||
|
||||
- 지원되는 모든 언어 표시:
|
||||
|
||||
`bat {{-L|--list-languages}}`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
- 디렉토리 내의 모든 전자책을 재귀적으로 라이브러리에 추가:
|
||||
|
||||
`calibredb add {{-r|--recurse}} {{경로/대상/디렉토리}}`
|
||||
`calibredb add {{[-r|--recurse]}} {{경로/대상/디렉토리}}`
|
||||
|
||||
- 라이브러리에서 전자책을 하나 이상 제거하기. 전자책 ID 필요(위를 참조하시오):
|
||||
|
||||
|
|
|
@ -6,20 +6,20 @@
|
|||
|
||||
- 소스 코드를 실행 가능한 바이너리 파일로 컴파일합니다:
|
||||
|
||||
`clang++ {{입력/파일/경로.cpp}} -o {{출력/파일/경로}}`
|
||||
`clang++ {{입력/파일/경로.cpp}} {{[-o|--output]}} {{출력/파일/경로}}`
|
||||
|
||||
- (거의) 모든 에러와 경고 메시지를 표시합니다:
|
||||
|
||||
`clang++ {{입력/파일/경로.cpp}} -Wall -o {{출력/파일/경로}}`
|
||||
`clang++ {{입력/파일/경로.cpp}} -Wall {{[-o|--output]}} {{출력/파일/경로}}`
|
||||
|
||||
- 컴파일할 때 사용할 언어 표준을 지정합니다:
|
||||
|
||||
`clang++ {{입력/파일/경로.cpp}} -std={{c++20}} -o {{출력/파일/경로}}`
|
||||
`clang++ {{입력/파일/경로.cpp}} -std={{c++20}} {{[-o|--output]}} {{출력/파일/경로}}`
|
||||
|
||||
- 소스 파일과 다른 경로에 있는 라이브러리를 포함합니다:
|
||||
|
||||
`clang++ {{입력/파일/경로.cpp}} -o {{출력/파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리/이름}}`
|
||||
`clang++ {{입력/파일/경로.cpp}} {{[-o|--output]}} {{출력/파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리/이름}}`
|
||||
|
||||
- 소스 코드를 LLVM Intermediate Representation(IR)로 컴파일 합니다:
|
||||
|
||||
`clang++ -S -emit-llvm {{입력/파일/경로.cpp}} -o {{출력/파일/경로.ll}}`
|
||||
`clang++ {{[-S|--assemble]}} -emit-llvm {{입력/파일/경로.cpp}} {{[-o|--output]}} {{출력/파일/경로.ll}}`
|
||||
|
|
|
@ -5,20 +5,20 @@
|
|||
|
||||
- 소스 코드를 실행 가능한 바이너리 파일로 컴파일합니다:
|
||||
|
||||
`clang {{입력_소스.c}} -o {{출력_실행가능파일}}`
|
||||
`clang {{입력_소스.c}} {{[-o|--output]}} {{출력_실행가능파일}}`
|
||||
|
||||
- 모든 에러와 경고 메시지를 출력하도록 활성화합니다:
|
||||
|
||||
`clang {{입력_소스.c}} -Wall -o {{출력_실행가능파일}}`
|
||||
`clang {{입력_소스.c}} -Wall {{[-o|--output]}} {{출력_실행가능파일}}`
|
||||
|
||||
- 소스 파일과 다른 경로에 있는 라이브러리를 포함합니다:
|
||||
|
||||
`clang {{입력_소스.c}} -o {{출력_실행가능파일}} -I{{헤더_경로}} -L{{라이브러리_경로}} -l{{라이브러리명}}`
|
||||
`clang {{입력_소스.c}} {{[-o|--output]}} {{출력_실행가능파일}} -I{{헤더_경로}} -L{{라이브러리_경로}} -l{{라이브러리명}}`
|
||||
|
||||
- 소스 코드를 LLVM Intermediate Representation(IR)로 컴파일 합니다:
|
||||
|
||||
`clang -S -emit-llvm {{파일.c}} -o {{파일.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{파일.c}} {{[-o|--output]}} {{파일.ll}}`
|
||||
|
||||
- 소스 코드를 링킹 없이 컴파일합니다:
|
||||
|
||||
`clang -c {{입력_소스.c}}`
|
||||
`clang {{[-c|--compile]}} {{입력_소스.c}}`
|
||||
|
|
|
@ -6,19 +6,19 @@
|
|||
|
||||
- 기본 이미지를 기반으로 하는 이미지 푸시:
|
||||
|
||||
`crane append {{-b|--base}} {{이미지_이름}}`
|
||||
`crane append {{[-b|--base]}} {{이미지_이름}}`
|
||||
|
||||
- tarball에서 추가된 레이어가 있는 이미지 푸시:
|
||||
|
||||
`crane append {{-f|--new_layer}} {{레이어_이름1 레이어_이름2 ...}}`
|
||||
`crane append {{[-f|--new_layer]}} {{레이어_이름1 레이어_이름2 ...}}`
|
||||
|
||||
- 새로운 태그가 포함된 레이어가 추가된 이미지 푸시:
|
||||
|
||||
`crane append {{-t|--new_tag}} {{태그_이름}}`
|
||||
`crane append {{[-t|--new_tag]}} {{태그_이름}}`
|
||||
|
||||
- 결과 이미지를 새 tarball로 푸시:
|
||||
|
||||
`crane append {{-o|--output}} {{경로/대상/tarball}}`
|
||||
`crane append {{[-o|--output]}} {{경로/대상/tarball}}`
|
||||
|
||||
- Docker 대신 OCI 미디어 유형의 비어있는 기본 이미지를 사용:
|
||||
|
||||
|
@ -30,4 +30,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane append {{-h|--help}}`
|
||||
`crane append {{[-h|--help]}}`
|
||||
|
|
|
@ -9,20 +9,20 @@
|
|||
|
||||
- 자격증명 도우미 구현:
|
||||
|
||||
`crane auth get {{레지스트리_주소}} {{-h|--help}}`
|
||||
`crane auth get {{레지스트리_주소}} {{[-h|--help]}}`
|
||||
|
||||
- 레지스트리에 로그인:
|
||||
|
||||
`crane auth login {{레지스트리_주소}} {{-h|--help}} {{-p|--password}} {{비밀번호}} {{-password-stdin}} {{-u|--username}} {{사용자명}}`
|
||||
`crane auth login {{레지스트리_주소}} {{[-h|--help]}} {{[-p|--password]}} {{비밀번호}} {{-password-stdin}} {{[-u|--username]}} {{사용자명}}`
|
||||
|
||||
- 레지스트리에서 로그아웃:
|
||||
|
||||
`crane auth logout {{레지스트리_주소}} {{-h|--help}}`
|
||||
`crane auth logout {{레지스트리_주소}} {{[-h|--help]}}`
|
||||
|
||||
- 원격 저장소에 대한 토큰을 검색:
|
||||
|
||||
`crane auth token {{레지스트리_주소}} {{-H|--header}} {{-h|--help}} {{-m|--mount}} {{스코프1 스코프2 ...}} --push`
|
||||
`crane auth token {{레지스트리_주소}} {{[-H|--header]}} {{[-h|--help]}} {{[-m|--mount]}} {{스코프1 스코프2 ...}} --push`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane auth {{-h|--help}}`
|
||||
`crane auth {{[-h|--help]}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane blob {{-h|--help}}`
|
||||
`crane blob {{[-h|--help]}}`
|
||||
|
|
|
@ -13,4 +13,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane catalog {{-h|--help}}`
|
||||
`crane catalog {{[-h|--help]}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane config {{-h|--help}}`
|
||||
`crane config {{[-h|--help]}}`
|
||||
|
|
|
@ -9,16 +9,16 @@
|
|||
|
||||
- 모든 태그 복사:
|
||||
|
||||
`crane copy {{소스}} {{대상}} {{-a|--all-tags}}`
|
||||
`crane copy {{소스}} {{대상}} {{[-a|--all-tags]}}`
|
||||
|
||||
- 최대 동시 복사본 수를 설정, 기본값은 GOMAXPROCS:
|
||||
|
||||
`crane copy {{소스}} {{대상}} {{-j|--jobs}} {{int}}`
|
||||
`crane copy {{소스}} {{대상}} {{[-j|--jobs]}} {{int}}`
|
||||
|
||||
- 대상의 기존 태그를 덮어쓰지 않음:
|
||||
|
||||
`crane copy {{소스}} {{대상}} {{-n|--no-clobber}}`
|
||||
`crane copy {{소스}} {{대상}} {{[-n|--no-clobber]}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane copy {{-h|--help}}`
|
||||
`crane copy {{[-h|--help]}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane delete {{-h|--help}}`
|
||||
`crane delete {{[-h|--help]}}`
|
||||
|
|
|
@ -17,4 +17,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane digest {{-h|--help}}`
|
||||
`crane digest {{[-h|--help]}}`
|
||||
|
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
- 병합된 이미지에 새로운 태그 적용:
|
||||
|
||||
`crane flatten {{-t|--tag}} {{태그_이름}}`
|
||||
`crane flatten {{[-t|--tag]}} {{태그_이름}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane flatten {{-h|--help}}`
|
||||
`crane flatten {{[-h|--help]}}`
|
||||
|
|
|
@ -11,11 +11,11 @@
|
|||
|
||||
- 기본 인덱스에 추가할 매니페스트에 대한 참조:
|
||||
|
||||
`crane index append {{-m|--manifest}} {{매니페스트_이름1 매니페스트_이름2 ...}}`
|
||||
`crane index append {{[-m|--manifest]}} {{매니페스트_이름1 매니페스트_이름2 ...}}`
|
||||
|
||||
- 결과 이미지에 적용할 태그:
|
||||
|
||||
`crane index append {{-t|--tag}} {{태그_이름}}`
|
||||
`crane index append {{[-t|--tag]}} {{태그_이름}}`
|
||||
|
||||
- 비어있는 기본 인덱스에는 OCI 대신 Docker 미디어 유형을 지정:
|
||||
|
||||
|
@ -27,4 +27,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane index append {{-h|--help}}`
|
||||
`crane index append {{[-h|--help]}}`
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
- 결과 이미지에 적용할 태그 지정:
|
||||
|
||||
`crane index filter {{-t|--tags}} {{태그_이름}}`
|
||||
`crane index filter {{[-t|--tags]}} {{태그_이름}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane index filter {{-h|--help}}`
|
||||
`crane index filter {{[-h|--help]}}`
|
||||
|
|
|
@ -14,4 +14,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane index {{-h|--help}}`
|
||||
`crane index {{[-h|--help]}}`
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
|
||||
- 다이제스트 태그 생략:
|
||||
|
||||
`crane ls {{-o|--omit-digest-tags}}`
|
||||
`crane ls {{[-o|--omit-digest-tags]}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane ls {{-h|--help}}`
|
||||
`crane ls {{[-h|--help]}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane manifest {{-h|--help}}`
|
||||
`crane manifest {{[-h|--help]}}`
|
||||
|
|
|
@ -6,15 +6,15 @@
|
|||
|
||||
- 새로운 주석을 설정 (기본값 []):
|
||||
|
||||
`crane mutate {{-a|--annotation}}/{{-l|--label}} {{annotation/label}}`
|
||||
`crane mutate {{[-a|--annotation]}}/{{[-l|--label]}} {{annotation/label}}`
|
||||
|
||||
- 이미지에 추가할 tarball/command/entrypoint/environment variable/exposed-ports의 경로를 지정:
|
||||
|
||||
`crane mutate {{--append}}/{{--cmd}}/{{--entrypoint}}/{{-e|--env}}/{{--exposed-ports}} {{var1 var2 ...}}`
|
||||
`crane mutate {{--append}}/{{--cmd}}/{{--entrypoint}}/{{[-e|--env]}}/{{--exposed-ports}} {{var1 var2 ...}}`
|
||||
|
||||
- 결과 이미지의 새로운 tarball 경로:
|
||||
|
||||
`crane mutate {{-o|--output}} {{경로/대상/tarball}}`
|
||||
`crane mutate {{[-o|--output]}} {{경로/대상/tarball}}`
|
||||
|
||||
- 변형된 이미지를 푸시하기 위한 os/arch{{/variant}}{{:osversion}}{{,<platform>}} 형식의 저장소:
|
||||
|
||||
|
@ -22,16 +22,16 @@
|
|||
|
||||
- 변형된 이미지에 적용할 새로운 태그를 참조:
|
||||
|
||||
`crane mutate {{-t|--tag}} {{태그_이름}}`
|
||||
`crane mutate {{[-t|--tag]}} {{태그_이름}}`
|
||||
|
||||
- 새로운 사용자 설정:
|
||||
|
||||
`crane mutate {{-u|--user}} {{사용자명}}`
|
||||
`crane mutate {{[-u|--user]}} {{사용자명}}`
|
||||
|
||||
- 설정할 새로운 작업 디렉토리 설정:
|
||||
|
||||
`crane mutate {{-w|--workdir}} {{경로/대상/작업디렉토리}}`
|
||||
`crane mutate {{[-w|--workdir]}} {{경로/대상/작업디렉토리}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane mutate {{-h|--help}}`
|
||||
`crane mutate {{[-h|--help]}}`
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
- 캐시 이미지 레이어 경로:
|
||||
|
||||
`crane pull {{이미지_이름}} {{경로/대상/tarball}} {{-c|--cache_path}} {{경로/대상/캐시}}`
|
||||
`crane pull {{이미지_이름}} {{경로/대상/tarball}} {{[-c|--cache_path]}} {{경로/대상/캐시}}`
|
||||
|
||||
- 이미지를 저장할 형식 지정 (기본값 'tarball'):
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane pull {{-h|--help}}`
|
||||
`crane pull {{[-h|--help]}}`
|
||||
|
|
|
@ -17,4 +17,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane push {{-h|--help}}`
|
||||
`crane push {{[-h|--help]}}`
|
||||
|
|
|
@ -17,8 +17,8 @@
|
|||
|
||||
- rebase된 이미지에 적용할 태그 추가:
|
||||
|
||||
`crane rebase {{-t|--tag}} {{태그_이름}}`
|
||||
`crane rebase {{[-t|--tag]}} {{태그_이름}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane rebase {{-h|--help}}`
|
||||
`crane rebase {{[-h|--help]}}`
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane registry {{-h|--help}}`
|
||||
`crane registry {{[-h|--help]}}`
|
||||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane registry serve {{-h|--help}}`
|
||||
`crane registry serve {{[-h|--help]}}`
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane tag {{-h|--help}}`
|
||||
`crane tag {{[-h|--help]}}`
|
||||
|
|
|
@ -21,4 +21,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane validate {{-h|--help}}`
|
||||
`crane validate {{[-h|--help]}}`
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
|
||||
- 도움말 표시:
|
||||
|
||||
`crane version {{-h|--help}}`
|
||||
`crane version {{[-h|--help]}}`
|
||||
|
|
|
@ -22,8 +22,8 @@
|
|||
|
||||
- 하위 명령에 대한 디버그 로그 활성화:
|
||||
|
||||
`crane {{-v|--verbose}} {{하위명령어}}`
|
||||
`crane {{[-v|--verbose]}} {{하위명령어}}`
|
||||
|
||||
- 하위 명령에 대한 도움말 표시:
|
||||
|
||||
`crane {{-h|--help}} {{하위명령어}}`
|
||||
`crane {{[-h|--help]}} {{하위명령어}}`
|
||||
|
|
|
@ -9,20 +9,20 @@
|
|||
|
||||
- 공백들을 무시하고, 파일들 비교하기:
|
||||
|
||||
`diff -w {{이전_파일명}} {{새_파일명}}`
|
||||
`diff {{[-w|--ignore-all-space]}} {{이전_파일명}} {{새_파일명}}`
|
||||
|
||||
- 차이점들을 나란히 보여주는 파일들 비교하기:
|
||||
|
||||
`diff -y {{이전_파일명}} {{새_파일명}}`
|
||||
`diff {{[-y|--side-by-side]}} {{이전_파일명}} {{새_파일명}}`
|
||||
|
||||
- 통합된 포맷의 차이점들 표시하며 파일들 비교하기 (`git diff`에서 사용되는 것 같이):
|
||||
|
||||
`diff -u {{이전_파일명}} {{새_파일명}}`
|
||||
`diff {{[-u|--unified]}} {{이전_파일명}} {{새_파일명}}`
|
||||
|
||||
- 재귀적으로 디렉토리들 비교하기 (다른 파일/디렉토리들의 이름 및 파일에 대한 변경점 출력):
|
||||
|
||||
`diff -r {{이전_디렉토리명}} {{새_디렉토리명}}`
|
||||
`diff {{[-r|--recursive]}} {{이전_디렉토리명}} {{새_디렉토리명}}`
|
||||
|
||||
- 디렉토리들을 비교하고, 서로 다른 파일이름만 표시하기:
|
||||
|
||||
`diff -rq {{이전_디렉토리명}} {{새_디렉토리명}}`
|
||||
`diff {{[-r|--recursive]}} {{[-q|--brief]}} {{이전_디렉토리명}} {{새_디렉토리명}}`
|
||||
|
|
|
@ -13,12 +13,12 @@
|
|||
|
||||
- 비밀번호가 포함된 파일 업로드:
|
||||
|
||||
`ffsend upload {{경로/대상/파일}} {{-p|--password}} {{비밀번호}}`
|
||||
`ffsend upload {{경로/대상/파일}} {{[-p|--password]}} {{비밀번호}}`
|
||||
|
||||
- 비밀번호로 보호된 파일 다운로드:
|
||||
|
||||
`ffsend download {{url}} {{-p|--password}} {{비밀번호}}`
|
||||
`ffsend download {{url}} {{[-p|--password]}} {{비밀번호}}`
|
||||
|
||||
- 파일을 업로드하고 4번의 다운로드를 허용:
|
||||
|
||||
`ffsend upload {{경로/대상/파일}} {{-d|--downloads}} {{4}}`
|
||||
`ffsend upload {{경로/대상/파일}} {{[-d|--downloads]}} {{4}}`
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
|
||||
- 현재 디렉터리에서 최신 TOML 구성 파일 (`frps.ini` 대신 `frps.toml`)을 사용하여 서비스를 시작:
|
||||
|
||||
`frpc {{-c|--config}} ./frps.toml`
|
||||
`frpc {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- 특정 구성 파일을 사용하여, 서비스를 시작:
|
||||
|
||||
`frpc {{-c|--config}} {{경로/대상/파일}}`
|
||||
`frpc {{[-c|--config]}} {{경로/대상/파일}}`
|
||||
|
||||
- 구성 파일이 유효한지 확인:
|
||||
|
||||
`frpc verify {{-c|--config}} {{경로/대상/파일}}`
|
||||
`frpc verify {{[-c|--config]}} {{경로/대상/파일}}`
|
||||
|
||||
- Bash, fish, PowerShell 또는 Zsh에 대한 자동 완성 설정 스크립트를 출력:
|
||||
|
||||
|
@ -26,4 +26,4 @@
|
|||
|
||||
- 버전 정보 표시:
|
||||
|
||||
`frpc {{-v|--version}}`
|
||||
`frpc {{[-v|--version]}}`
|
||||
|
|
|
@ -10,15 +10,15 @@
|
|||
|
||||
- 현재 디렉터리에서 최신 TOML 구성 파일 (`frps.ini` 대신 `frps.toml`)을 사용하여 서비스를 시작:
|
||||
|
||||
`frps {{-c|--config}} ./frps.toml`
|
||||
`frps {{[-c|--config]}} ./frps.toml`
|
||||
|
||||
- 특정 구성 파일을 사용하여, 서비스를 시작:
|
||||
|
||||
`frps {{-c|--config}} {{경로/대상/파일}}`
|
||||
`frps {{[-c|--config]}} {{경로/대상/파일}}`
|
||||
|
||||
- 구성 파일이 유효한지 확인:
|
||||
|
||||
`frps verify {{-c|--config}} {{경로/대상/파일}}`
|
||||
`frps verify {{[-c|--config]}} {{경로/대상/파일}}`
|
||||
|
||||
- Bash, fish, PowerShell 또는 Zsh에 대한 자동 완성 설정 스크립트를 출력:
|
||||
|
||||
|
@ -26,4 +26,4 @@
|
|||
|
||||
- 버전 정보 표시:
|
||||
|
||||
`frps {{-v|--version}}`
|
||||
`frps {{[-v|--version]}}`
|
||||
|
|
|
@ -6,23 +6,23 @@
|
|||
|
||||
- 소스 코드 파일을 실행 가능한 바이너리로 컴파일합니다:
|
||||
|
||||
`g++ {{소스/파일/경로.cpp}} -o {{출력/실행파일/경로}}`
|
||||
`g++ {{소스/파일/경로.cpp}} {{[-o|--output]}} {{출력/실행파일/경로}}`
|
||||
|
||||
- 일반적인 경고를 표시합니다:
|
||||
|
||||
`g++ {{소스/파일/경로.cpp}} -Wall -o {{출력/실행파일/경로}}`
|
||||
`g++ {{소스/파일/경로.cpp}} -Wall {{[-o|--output]}} {{출력/실행파일/경로}}`
|
||||
|
||||
- 컴파일할 때 사용할 언어 표준을 선택합니다 (C++98/C++11/C++14/C++17):
|
||||
|
||||
`g++ {{소스/파일/경로.cpp}} -std={{c++98|c++11|c++14|c++17}} -o {{출력/실행파일/경로}}`
|
||||
`g++ {{소스/파일/경로.cpp}} -std={{c++98|c++11|c++14|c++17}} {{[-o|--output]}} {{출력/실행파일/경로}}`
|
||||
|
||||
- 소스 파일과 다른 경로에 위치한 라이브러리들을 포함합니다:
|
||||
|
||||
`g++ {{소스/파일/경로.cpp}} -o {{출력/실행파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}`
|
||||
`g++ {{소스/파일/경로.cpp}} {{[-o|--output]}} {{출력/실행파일/경로}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}`
|
||||
|
||||
- 다수의 소스 코드 파일을 실행 가능한 바이너리로 컴파일하고 링킹합니다:
|
||||
|
||||
`g++ -c {{소스/파일/경로1.cpp 소스/파일/경로2.cpp ...}} && g++ -o {{출력/실행파일/경로}} {{소스/파일/경로1.o 소스/파일/경로2.o ...}}`
|
||||
`g++ -c {{소스/파일/경로1.cpp 소스/파일/경로2.cpp ...}} && g++ {{[-o|--output]}} {{출력/실행파일/경로}} {{소스/파일/경로1.o 소스/파일/경로2.o ...}}`
|
||||
|
||||
- 버전을 표시합니다:
|
||||
|
||||
|
|
|
@ -5,20 +5,20 @@
|
|||
|
||||
- 다수의 소스 파일을 실행 파일로 컴파일합니다:
|
||||
|
||||
`gcc {{소스/파일1/경로.c 소스/파일2/경로.c ...}} -o {{출력/실행파일/경로}}`
|
||||
`gcc {{소스/파일1/경로.c 소스/파일2/경로.c ...}} {{[-o|--output]}} {{출력/실행파일/경로}}`
|
||||
|
||||
- 일반적인 경고와 디버그 심볼을 출력합니다:
|
||||
|
||||
`gcc {{소스/파일/경로.c}} -Wall -Og -o {{출력/실행파일/경로}}`
|
||||
`gcc {{소스/파일/경로.c}} -Wall -Og {{[-o|--output]}} {{출력/실행파일/경로}}`
|
||||
|
||||
- 다른 경로에 위치한 라이브러리들을 포함합니다:
|
||||
|
||||
`gcc {{소스/파일/경로.c}} -o {{출력/실행파일/경로}}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}`
|
||||
`gcc {{소스/파일/경로.c}} {{[-o|--output]}} {{출력/실행파일/경로}}} -I{{헤더/경로}} -L{{라이브러리/경로}} -l{{라이브러리명}}`
|
||||
|
||||
- 소스 코드를 어셈블리어로 컴파일합니다:
|
||||
|
||||
`gcc -S {{소스/파일/경로.c}}`
|
||||
`gcc {{[-S|--assemble]}} {{소스/파일/경로.c}}`
|
||||
|
||||
- 소스 코드를 링킹 없이 오브젝트 파일로 컴파일합니다:
|
||||
|
||||
`gcc -c {{소스/파일/경로.c}}`
|
||||
`gcc {{[-c|--compile]}} {{소스/파일/경로.c}}`
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
- Maak een nieuwe opname met een inactieve tijd van maximaal 2,5 seconden:
|
||||
|
||||
`asciinema rec {{-i|--idle-time-limit}} 2.5`
|
||||
`asciinema rec {{[-i|--idle-time-limit]}} 2.5`
|
||||
|
||||
- Laat de volledige inhoud zien van een lokaal opgeslagen opname:
|
||||
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Zet gecodeerde uitvoer naar een specifieke breedte (`0` schakelt het uit):
|
||||
|
||||
`base32 {{-w|--wrap}} {{0|76|...}} {{pad/naar/bestand}}`
|
||||
`base32 {{[-w|--wrap]}} {{0|76|...}} {{pad/naar/bestand}}`
|
||||
|
||||
- Decodeer een bestand:
|
||||
|
||||
`base32 {{-d|--decode}} {{pad/naar/bestand}}`
|
||||
`base32 {{[-d|--decode]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Encodeer `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodeer `stdin`:
|
||||
|
||||
`{{commando}} | base32 {{-d|--decode}}`
|
||||
`{{commando}} | base32 {{[-d|--decode]}}`
|
||||
|
|
|
@ -9,11 +9,11 @@
|
|||
|
||||
- Zet gecodeerde uitvoer naar een specifieke breedte (`0` schakelt het uit):
|
||||
|
||||
`base64 {{-w|--wrap}} {{0|76|...}} {{pad/naar/bestand}}`
|
||||
`base64 {{[-w|--wrap]}} {{0|76|...}} {{pad/naar/bestand}}`
|
||||
|
||||
- Decodeer een bestand:
|
||||
|
||||
`base64 {{-d|--decode}} {{pad/naar/bestand}}`
|
||||
`base64 {{[-d|--decode]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Encodeer `stdin`:
|
||||
|
||||
|
@ -21,4 +21,4 @@
|
|||
|
||||
- Decodeer `stdin`:
|
||||
|
||||
`{{commando}} | base64 {{-d|--decode}}`
|
||||
`{{commando}} | base64 {{[-d|--decode]}}`
|
||||
|
|
|
@ -18,20 +18,20 @@
|
|||
|
||||
- Highlight een specifieke regel of een reeks van regels met een andere achtergrondkleur:
|
||||
|
||||
`bat {{-H|--highlight-line}} {{10|5:10|:10|10:|10:+5}} {{pad/naar/bestand}}`
|
||||
`bat {{[-H|--highlight-line]}} {{10|5:10|:10|10:|10:+5}} {{pad/naar/bestand}}`
|
||||
|
||||
- Toon niet-printbare karakters zoals spatie, tab of witregel:
|
||||
|
||||
`bat {{-A|--show-all}} {{pad/naar/bestand}}`
|
||||
`bat {{[-A|--show-all]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Nummer alle uitvoerregels:
|
||||
|
||||
`bat {{-n|--number}} {{pad/naar/bestand}}`
|
||||
`bat {{[-n|--number]}} {{pad/naar/bestand}}`
|
||||
|
||||
- Highlight de syntax van een JSON-bestand:
|
||||
|
||||
`bat {{-l|--language}} json {{pad/naar/bestand.json}}`
|
||||
`bat {{[-l|--language]}} json {{pad/naar/bestand.json}}`
|
||||
|
||||
- Toon alle ondersteunde talen:
|
||||
|
||||
`bat {{-L|--list-languages}}`
|
||||
`bat {{[-L|--list-languages]}}`
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Compileer broncodebestand(en) naar een uitvoerbaar binair bestand:
|
||||
|
||||
`clang++ {{pad/naar/bron1.cpp pad/naar/bron2.cpp ...}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang++ {{pad/naar/bron1.cpp pad/naar/bron2.cpp ...}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon (bijna) alle fouten en waarschuwingen:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -Wall {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang++ {{pad/naar/bron.cpp}} -Wall {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon veelvoorkomende waarschuwingen, debug-symbolen in de uitvoer, en optimaliseer zonder debugging te beïnvloeden:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang++ {{pad/naar/bron.cpp}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Kies een taalstandaard om mee te compileren:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -std={{c++20}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang++ {{pad/naar/bron.cpp}} -std={{c++20}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Voeg bibliotheken toe die zich op een ander pad bevinden dan het bronbestand:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header_pad}} -L{{pad/naar/bibliotheek_pad}} -l{{pad/naar/bibliotheek_naam}}`
|
||||
`clang++ {{pad/naar/bron.cpp}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header_pad}} -L{{pad/naar/bibliotheek_pad}} -l{{pad/naar/bibliotheek_naam}}`
|
||||
|
||||
- Compileer broncode naar LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang++ {{-S|--assemble}} -emit-llvm {{pad/naar/bron.cpp}} {{-o|--output}} {{pad/naar/uitvoer.ll}}`
|
||||
`clang++ {{[-S|--assemble]}} -emit-llvm {{pad/naar/bron.cpp}} {{[-o|--output]}} {{pad/naar/uitvoer.ll}}`
|
||||
|
||||
- Optimaliseer het gecompileerde programma voor prestaties:
|
||||
|
||||
`clang++ {{pad/naar/bron.cpp}} -O{{1|2|3|fast}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang++ {{pad/naar/bron.cpp}} -O{{1|2|3|fast}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon de versie:
|
||||
|
||||
|
|
|
@ -6,31 +6,31 @@
|
|||
|
||||
- Compileer broncodebestand(en) naar een uitvoerbaar binair bestand:
|
||||
|
||||
`clang {{pad/naar/bron1.c pad/naar/bron2.c ...}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang {{pad/naar/bron1.c pad/naar/bron2.c ...}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon (bijna) alle fouten en waarschuwingen:
|
||||
|
||||
`clang {{pad/naar/bron.c}} -Wall {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang {{pad/naar/bron.c}} -Wall {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon veelvoorkomende waarschuwingen, debug-symbolen in de uitvoer, en optimaliseer zonder debugging te beïnvloeden:
|
||||
|
||||
`clang {{pad/naar/bron.c}} -Wall {{-g|--debug}} -Og {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang {{pad/naar/bron.c}} -Wall {{[-g|--debug]}} -Og {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Voeg bibliotheken toe die zich op een ander pad bevinden dan het bronbestand:
|
||||
|
||||
`clang {{pad/naar/bron.c}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header}} -L{{pad/naar/bibliotheek}} -l{{bibliotheek_naam}}`
|
||||
`clang {{pad/naar/bron.c}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}} -I{{pad/naar/header}} -L{{pad/naar/bibliotheek}} -l{{bibliotheek_naam}}`
|
||||
|
||||
- Compileer broncode naar LLVM Intermediate Representation (IR):
|
||||
|
||||
`clang {{-S|--assemble}} -emit-llvm {{pad/naar/bron.c}} {{-o|--output}} {{pad/naar/uitvoer.ll}}`
|
||||
`clang {{[-S|--assemble]}} -emit-llvm {{pad/naar/bron.c}} {{[-o|--output]}} {{pad/naar/uitvoer.ll}}`
|
||||
|
||||
- Compileer broncode zonder deze te linken:
|
||||
|
||||
`clang {{-c|--compile}} {{path/to/source.c}}`
|
||||
`clang {{[-c|--compile]}} {{path/to/source.c}}`
|
||||
|
||||
- Optimaliseer het gecompileerde programma voor prestaties:
|
||||
|
||||
`clang {{pad/naar/bron.c}} -O{{1|2|3|fast}} {{-o|--output}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
`clang {{pad/naar/bron.c}} -O{{1|2|3|fast}} {{[-o|--output]}} {{pad/naar/uitvoerbaar_bestand}}`
|
||||
|
||||
- Toon de versie:
|
||||
|
||||
|
|
|
@ -6,19 +6,19 @@
|
|||
|
||||
- Push een image gebaseerd op een basisimage:
|
||||
|
||||
`crane append {{-b|--base}} {{image_naam}}`
|
||||
`crane append {{[-b|--base]}} {{image_naam}}`
|
||||
|
||||
- Push een image met een toegevoegde laag vanuit een tarball:
|
||||
|
||||
`crane append {{-f|--new_layer}} {{layer_naam1 layer_naam2 ...}}`
|
||||
`crane append {{[-f|--new_layer]}} {{layer_naam1 layer_naam2 ...}}`
|
||||
|
||||
- Push een image met een toegevoegde laag met een nieuwe tag:
|
||||
|
||||
`crane append {{-t|--new_tag}} {{tag_naam}}`
|
||||
`crane append {{[-t|--new_tag]}} {{tag_naam}}`
|
||||
|
||||
- Push de resulterende image naar een nieuwe tarball:
|
||||
|
||||
`crane append {{-o|--output}} {{pad/naar/tarball}}`
|
||||
`crane append {{[-o|--output]}} {{pad/naar/tarball}}`
|
||||
|
||||
- Gebruik een lege basisimage van het type OCI-media in plaats van Docker:
|
||||
|
||||
|
@ -30,4 +30,4 @@
|
|||
|
||||
- Toon de help:
|
||||
|
||||
`crane append {{-h|--help}}`
|
||||
`crane append {{[-h|--help]}}`
|
||||
|
|
|
@ -9,20 +9,20 @@
|
|||
|
||||
- Implementeer credential helper:
|
||||
|
||||
`crane auth get {{registry_adres}} {{-h|--help}}`
|
||||
`crane auth get {{registry_adres}} {{[-h|--help]}}`
|
||||
|
||||
- Log in bij een registry:
|
||||
|
||||
`crane auth login {{registry_adres}} {{-h|--help}} {{-p|--password}} {{wachtwoord}} {{-password-stdin}} {{-u|--username}} {{gebruikersnaam}}`
|
||||
`crane auth login {{registry_adres}} {{[-h|--help]}} {{[-p|--password]}} {{wachtwoord}} {{-password-stdin}} {{[-u|--username]}} {{gebruikersnaam}}`
|
||||
|
||||
- Log uit bij een registry:
|
||||
|
||||
`crane auth logout {{registry_adres}} {{-h|--help}}`
|
||||
`crane auth logout {{registry_adres}} {{[-h|--help]}}`
|
||||
|
||||
- Verkrijg een token voor een remote repository:
|
||||
|
||||
`crane auth token {{registry_adres}} {{-H|--header}} {{-h|--help}} {{-m|--mount}} {{scope1 scope2 ...}} --push`
|
||||
`crane auth token {{registry_adres}} {{[-H|--header]}} {{[-h|--help]}} {{[-m|--mount]}} {{scope1 scope2 ...}} --push`
|
||||
|
||||
- Toon de help:
|
||||
|
||||
`crane auth {{-h|--help}}`
|
||||
`crane auth {{[-h|--help]}}`
|
||||
|
|
|
@ -9,4 +9,4 @@
|
|||
|
||||
- Toon de help:
|
||||
|
||||
`crane blob {{-h|--help}}`
|
||||
`crane blob {{[-h|--help]}}`
|
||||
|
|
|
@ -13,4 +13,4 @@
|
|||
|
||||
- Toon de help:
|
||||
|
||||
`crane catalog {{-h|--help}}`
|
||||
`crane catalog {{[-h|--help]}}`
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue