1
0
Fork 0
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 2 (#15901)

Co-authored-by: Darío Hereñú <magallania@gmail.com>
This commit is contained in:
Managor 2025-03-14 09:18:28 +02:00 committed by GitHub
parent 9a42cc59fb
commit fe4c26ba2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
110 changed files with 343 additions and 343 deletions

View file

@ -9,15 +9,15 @@
- Søg efter en eksakt streng (deaktiverer regulære udtryk):
`grep {{-F|--fixed-strings}} "{{eksakt_streng}}" {{sti/til/fil}}`
`grep {{[-F|--fixed-strings]}} "{{eksakt_streng}}" {{sti/til/fil}}`
- Søg efter et mønster i alle filer, pånær binære, rekursivt i en mappe. Vis linjenumre der matcher til mønstret:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{søgemønster}}" {{sti/til/mappe}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{søgemønster}}" {{sti/til/mappe}}`
- Brug udvidede regulære udtryk (understøtter `?`, `+`, `{}`, `()`, og `|`), i case-insensitive modus:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{søgemønster}}" {{sti/til/fil}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{søgemønster}}" {{sti/til/fil}}`
- Print 3 linjer af kontekst omkring, før eller efter hvert match:
@ -25,12 +25,12 @@
- Print, filnavn og linjenummer for hvert match, med farveoutput:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{søgemønster}}" {{sti/til/fil}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{søgemønster}}" {{sti/til/fil}}`
- Søg efter linjer som matcher et mønster. Print kun den matchende tekst:
`grep {{-o|--only-matching}} "{{søgemønster}}" {{sti/til/fil}}`
`grep {{[-o|--only-matching]}} "{{søgemønster}}" {{sti/til/fil}}`
- Søg i `stdin` efter linjer der ikke matcher et mønster:
`cat {{sti/til/fil}} | grep {{-v|--invert-match}} "{{søgemønster}}"`
`cat {{sti/til/fil}} | grep {{[-v|--invert-match]}} "{{søgemønster}}"`

View file

@ -5,19 +5,19 @@
- Committe die gestagten Dateien mit einer Nachricht in das Repository:
`git commit --message "{{nachricht}}"`
`git commit {{[-m|--message]}} "{{nachricht}}"`
- Committe alle gestagten Dateien zum Repository mit einer Nachricht aus einer Datei:
`git commit --file {{pfad/zu/commit_nachricht_datei}}`
`git commit {{[-F|--file]}} {{pfad/zu/commit_nachricht_datei}}`
- Stage alle modifizierten Dateien und committe sie mit einer Nachricht:
`git commit --all --message "{{nachricht}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{nachricht}}"`
- Committe gestagten Dateien und signiere sie mit dem definierten GPG Schlüssel (oder mit dem in der Konfigurationsdatei definierten, wenn kein Argument angegeben ist):
`git commit --gpg-sign {{key_id}} --message "{{nachricht}}"`
`git commit {{[-S|--gpg-sign]}} {{key_id}} {{[-m|--message]}} "{{nachricht}}"`
- Ersetze den letzten Commit mit den gerade auf dem Stage liegenden Änderungen:
@ -29,4 +29,4 @@
- Erzeuge einen Commit, auch wenn keine Dateien auf dem Stage liegen:
`git commit --message "{{nachricht}}" --allow-empty`
`git commit {{[-m|--message]}} "{{nachricht}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- Lade Änderungen vom Standard-Repository herunter und wende einen Rebase an:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Lade Änderungen vom Standard-Repository herunter und führe diese in den HEAD zusammen:

View file

@ -10,11 +10,11 @@
- Erstelle einen neuen Branch und wechsele zu diesem:
`git switch --create {{branch_name}}`
`git switch {{[-c|--create]}} {{branch_name}}`
- Erstelle einen neuen Branch basierend auf einem existierenden Commit und wechsele zu diesem:
`git switch --create {{branch_name}} {{commit}}`
`git switch {{[-c|--create]}} {{branch_name}} {{commit}}`
- Wechsele zum vorherigen Branch:
@ -26,4 +26,4 @@
- Wechsele zu einem Branch und merge automatisch den aktuellen Branch und alle Änderungen, die nicht committed wurden:
`git switch --merge {{branch_name}}`
`git switch {{[-m|--merge]}} {{branch_name}}`

View file

@ -10,11 +10,11 @@
- Suche nach einem exakten Ausdruck:
`grep {{-F|--fixed-strings}} "{{exakter_ausdruck}}" {{pfad/zu/datei}}`
`grep {{[-F|--fixed-strings]}} "{{exakter_ausdruck}}" {{pfad/zu/datei}}`
- Benutze erweiterte reguläre Ausdrücke (unterstützt `?`, `+`, `{}`, `()` und `|`) ohne Beachtung der Groß-, Kleinschreibung:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{ausdruck}}" {{pfad/zu/datei}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{ausdruck}}" {{pfad/zu/datei}}`
- Zeige 3 Zeilen Kontext um [C], vor [B] oder nach [A] jedem Ergebnis:

View file

@ -9,7 +9,7 @@
- Zeige nur den angegebenen Teil der Anfrage und der Antwort (`H`: Header der Anfrage, `B`: Body der Anfrage, `h`: Header der Antwort, `b`: Body der Antwort, `m`: Metadaten der Antwort):
`http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
`http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
- Spezifiziere die zu nutzende HTTP-Methode und nutze den angegebenen Proxy:
@ -17,11 +17,11 @@
- Folge `3xx`-Umleitungen und spezifiziere zusätzliche Header für die Anfrage:
`http {{-F|--follow}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
`http {{[-F|--follow]}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
- Authentisiere gegenüber einem Server mithilfe unterschiedlicher Anthentisierungsmethoden:
`http --auth {{username:password|token}} --auth-type {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
`http {{[-a|--auth]}} {{username:password|token}} {{[-A|--auth-type]}} {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
- Erstelle eine Anfrage ohne diese zu senden (ähnlich zu dry-run):
@ -29,8 +29,8 @@
- Nutze die angegebene Session für persistente benutzerdefinierte Header, Credentials für die Authentisierung und Cookies:
`http --session {{session_name|path/to/session.json}} {{--auth username:password https://example.com/auth API-KEY:xxx}}`
`http --session {{session_name|path/to/session.json}} {{[-a|--auth]}} {{username}}:{{password}} {{https://example.com/auth}} {{API-KEY:xxx}}`
- Lade eine Datei in ein Formular hoch (das folgende Beispiel geht davon aus, dass das Formularfeld als `<input type="file" name="cv" />` definiert ist):
`http --form {{POST}} {{https://example.com/upload}} {{cv@path/to/file}}`
`http {{[-f|--form]}} {{POST}} {{https://example.com/upload}} {{cv@path/to/file}}`

View file

@ -7,18 +7,18 @@
`git cliff > {{CHANGELOG.md}}`
- Genera un registro de cambios a partir de los commits desde la última etiqueta y lo imprime en `stdout`:
- Genera un registro de cambios a partir de las confirmaciones desde la última etiqueta y lo imprime en `stdout`:
`git cliff {{-l|--latest}}`
`git cliff {{[-l|--latest]}}`
- Genera un registro de cambios a partir de los commits que pertenecen a la etiqueta actual (usa `git checkout` en una etiqueta anterior a esta):
- Genera un registro de cambios a partir de las confirmaciones que pertenecen a la etiqueta actual (usa `git checkout` en una etiqueta anterior a esta):
`git cliff --current`
- Genera un registro de cambios a partir de las confirmaciones que no pertenecen a una etiqueta:
`git cliff {{-u|--unreleased}}`
`git cliff {{[-u|--unreleased]}}`
- Escribe el archivo de configuración por defecto en `cliff.toml` en el directorio actual:
`git cliff {{-i|--init}}`
`git cliff {{[-i|--init]}}`

View file

@ -5,19 +5,19 @@
- Realiza una confirmación de los archivos marcados al repositorio con un mensaje:
`git commit --message "{{mensaje}}"`
`git commit {{[-m|--message]}} "{{mensaje}}"`
- Realiza una confirmación de los archivos marcados con un mensaje leído desde un archivo:
`git commit --file {{ruta/al/archivo_con_mensaje_de_la_confirmación}}`
`git commit {{[-F|--file]}} {{ruta/al/archivo_con_mensaje_de_la_confirmación}}`
- Marca automáticamente todos los archivos modificados y realiza una confirmación con un mensaje:
`git commit --all --message "{{mensaje}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{mensaje}}"`
- Confirma todos los archivos preparados y los firma con una llave de GPG (o la llave en el archivo de configuración si no se especifica un argumento):
`git commit --gpg-sign {{identificador_de_llave}} --message "{{mensaje}}"`
`git commit {{[-S|--gpg-sign]}} {{identificador_de_llave}} {{[-m|--message]}} "{{mensaje}}"`
- Sustituye la última confirmación con los cambios marcados actualmente, cambiando el hash de la confirmación:
@ -29,4 +29,4 @@
- Crea una confirmación, incluso si no hay archivos marcados:
`git commit --message "{{mensaje}}" --allow-empty`
`git commit {{[-m|--message]}} "{{mensaje}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- Descarga cambios del repositorio remoto por defecto y usa avance rápido (fast forward):
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Descarga cambios de un repositorio remoto y una rama específica para fusionarlos en HEAD:

View file

@ -10,11 +10,11 @@
- Crea una nueva rama y se cambia a esta:
`git switch --create {{nombre_de_la_rama}}`
`git switch {{[-c|--create]}} {{nombre_de_la_rama}}`
- Crea y cambia a una nueva rama basada en una confirmación específica:
`git switch --create {{nombre_de_la_rama}} {{confirmación}}`
`git switch {{[-c|--create]}} {{nombre_de_la_rama}} {{confirmación}}`
- Cambia a la rama anterior:
@ -26,4 +26,4 @@
- Cambia a una rama y automáticamente fusiona la rama actual y cualquier cambio sin confirmación en ella:
`git switch --merge {{nombre_de_la_rama}}`
`git switch {{[-m|--merge]}} {{nombre_de_la_rama}}`

View file

@ -9,15 +9,15 @@
- Busca una cadena de caracteres específica (la cadena no será interpretada como una expresión regular):
`grep {{-F|--fixed-strings}} "{{cadena_exacta}}" {{ruta/al/archivo}}`
`grep {{[-F|--fixed-strings]}} "{{cadena_exacta}}" {{ruta/al/archivo}}`
- Busca un patrón en todos los archivos de forma recursiva en un directorio, mostrando los números de línea de las coincidencias e ignorando los archivos binarios:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{patrón_de_búsqueda}}" {{ruta/al/directorio}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{patrón_de_búsqueda}}" {{ruta/al/directorio}}`
- Utiliza expresiones regulares extendidas (los metacaracteres `?`, `+`, `{}`, `()` y `|` no requieren de una barra inversa), sin distinguir entre mayúsculas y minúsculas:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
- Imprime 3 líneas alrededor, antes o después de cada coincidencia:
@ -25,12 +25,12 @@
- Imprime con colores el nombre del archivo y el número de línea de cada coincidencia:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
- Busca líneas que coincidan con un patrón e imprime solo el texto coincidente:
`grep {{-o|--only-matching}} "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
`grep {{[-o|--only-matching]}} "{{patrón_de_búsqueda}}" {{ruta/al/archivo}}`
- Busca líneas en`stdin` que no coincidan con el patrón:
`cat {{ruta/al/archivo}} | grep {{-v|--invert-match}} "{{patrón_de_busqueda}}"`
`cat {{ruta/al/archivo}} | grep {{[-v|--invert-match]}} "{{patrón_de_busqueda}}"`

View file

@ -9,7 +9,7 @@
- Imprime partes específicas del contenido (`H`: encabezados de la solicitud, `B`: cuerpo de la solicitud, `h`: encabezados de la respuesta, `b`: cuerpo de la respuesta, `m`: metadatos de respuesta):
`http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
`http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
- Especifica el método HTTP al enviar una solicitud y utiliza un proxy para interceptar la solicitud:
@ -17,11 +17,11 @@
- Sigue cualquier redirección `3xx` y especifica encabezados adicionales en una solicitud:
`http {{-F|--follow}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
`http {{[-F|--follow]}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
- Autentica ante un servidor utilizando diferentes métodos de autenticación:
`http --auth {{username:password|token}} --auth-type {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
`http {{[-a|--auth]}} {{username:password|token}} {{[-A|--auth-type]}} {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
- Construye una solicitud pero no la envía (similar a un simulacro (dry-run)):
@ -29,8 +29,8 @@
- Utiliza sesiones nombradas para encabezados personalizados persistentes, credenciales de autenticación y cookies:
`http --session {{nombre_de_sesión|ruta/a/sesión.json}} {{--auth usuario:clave https://example.com/auth API-KEY:xxx}}`
`http --session {{nombre_de_sesión|ruta/a/sesión.json}} {{[-a|--auth]}} {{usuario}}:{{clave}} {{https://example.com/auth}} {{API-KEY:xxx}}`
- Sube un archivo a un formulario (el ejemplo a continuación supone que el campo del formulario es `<input type="file" name="cv" />`):
`http --form {{POST}} {{https://example.com/upload}} {{cv@ruta/al/archivo}}`
`http {{[-f|--form]}} {{POST}} {{https://example.com/upload}} {{cv@ruta/al/archivo}}`

View file

@ -9,4 +9,4 @@
- Redimensiona la imagen a la anchura y altura especificadas antes de mostrarla:
`img2sixel {{-w|--width}} {{número}} {{-h|--altura}} {{número}} {{ruta/a/imagen}}`
`img2sixel {{[-w|--width]}} {{número}} {{[-h|--altura]}} {{número}} {{ruta/a/imagen}}`

View file

@ -10,19 +10,19 @@
- Inicia `mitmproxy` con una dirección y puerto personalizados:
`mitmproxy --listen-host {{dirección_ip}} {{-p|--listen-port}} {{puerto}}`
`mitmproxy --listen-host {{dirección_ip}} {{[-p|--listen-port]}} {{puerto}}`
- Inicia `mitmproxy` utilizando un script para procesar el tráfico:
- Inicia `mitmproxy` utilizando un secuencia de comandos para procesar el tráfico:
`mitmproxy {{-s|--scripts}} {{ruta/a/script.py}}`
`mitmproxy {{[-s|--scripts]}} {{ruta/a/script.py}}`
- Exporta los registros con las claves maestras SSL/TLS a programas externos (wireshark, etc.):
`SSLKEYLOGFILE="{{ruta/a/archivo}}" mitmproxy`
`SSLKEYLOGFILE="{{ruta/al/archivo}}" mitmproxy`
- Especifica el modo de funcionamiento del servidor proxy (`regular` es el predeterminado):
`mitmproxy {{-m|--mode}} {{regular|transparent|socks5|...}}`
`mitmproxy {{[-m|--mode]}} {{regular|transparent|socks5|...}}`
- Configura el diseño de la consola:

View file

@ -9,16 +9,16 @@
- Vuelca todas las bases de datos utilizando un nombre de usuario específico:
`pg_dumpall {{-U|--username}} {{usuario}} > {{ruta/al/archivo.sql}}`
`pg_dumpall {{[-U|--username]}} {{usuario}} > {{ruta/al/archivo.sql}}`
- Lo mismo que antes, usando un equipo y puerto:
`pg_dumpall -h {{equipo}} -p {{puerto}} > {{archivo_resultado.sql}}`
`pg_dumpall {{[-h|--host]}} {{equipo}} {{[-p|--port]}} {{puerto}} > {{archivo_resultado.sql}}`
- Recupera solo datos de las bases de datos en un archivo script-SQL:
`pg_dumpall {{-a|--data-only}} > {{ruta/al/archivo.sql}}`
`pg_dumpall {{[-a|--data-only]}} > {{ruta/al/archivo.sql}}`
- Vuelca solo el esquema (definiciones de datos) en un archivo script-SQL:
`pg_dumpall -s > {{archivo_resultado.sql}}`
`pg_dumpall {{[-s|--schema-only]}} > {{archivo_resultado.sql}}`

View file

@ -17,7 +17,7 @@
- Inicia todos los contenedores usando un archivo de composición alterno:
`podman-compose {{-f|--file}} {{ruta/al/archivo.yaml}} up`
`podman-compose {{[-f|--file]}} {{ruta/al/archivo.yaml}} up`
- Detiene todos los contenedores en funcionamiento:

View file

@ -13,4 +13,4 @@
- Utiliza Pulumi localmente, independientemente de Pulumi Cloud:
`pulumi login {{-l|--local}}`
`pulumi login {{[-l|--local]}}`

View file

@ -9,11 +9,11 @@
- Muestra una explicación de cada error:
`pydocstyle {{-e|--explain}} {{archivo.py|ruta/al/directorio}}`
`pydocstyle {{[-e|--explain]}} {{archivo.py|ruta/al/directorio}}`
- Muestra información de depuración:
`pydocstyle {{-d|--debug}} {{archivo.py|ruta/al/directorio}}`
`pydocstyle {{[-d|--debug]}} {{archivo.py|ruta/al/directorio}}`
- Muestra el número total de errores:

View file

@ -10,16 +10,16 @@
- Usa una lista de palabras específica:
`toipe {{-w|--wordlist}} {{nombre_de_la_lista}}`
`toipe {{[-w|--wordlist]}} {{nombre_de_la_lista}}`
- Utiliza una lista de palabras personalizada:
`toipe {{-f|--file}} {{ruta/al/archivo}}`
`toipe {{[-f|--file]}} {{ruta/al/archivo}}`
- Especifica el número de palabras de cada prueba:
`toipe {{-n|--num}} {{número_de_palabras}}`
`toipe {{[-n|--num]}} {{número_de_palabras}}`
- Incluye signos de puntuación:
`toipe {{-p|--punctuation}}`
`toipe {{[-p|--punctuation]}}`

View file

@ -8,14 +8,14 @@
`typeinc`
- Muestra la lista de los 10 primeros clasificados por nivel de dificultad de entrada::
- Muestra la lista de los 10 primeros clasificados por nivel de dificultad de entrada:
`typeinc {{-r|--ranklist}} {{nivel_de_dificultad}}`
`typeinc {{[-r|--ranklist]}} {{nivel_de_dificultad}}`
- Obtén palabras aleatorias en inglés presentes en nuestra lista de palabras:
`typeinc {{-w|--words}} {{conteo_de_palabras}}`
`typeinc {{[-w|--words]}} {{conteo_de_palabras}}`
- Calcula el resultado hipotético en Typeinc:
`typeinc {{-s|--score}}`
`typeinc {{[-s|--score]}}`

View file

@ -13,7 +13,7 @@
- Muestra el árbol de dependencias hasta una determinada profundidad:
`uv tree {{-d|--depth}} {{n}}`
`uv tree {{[-d|--depth]}} {{n}}`
- Muestra la última versión disponible para todos los paquetes obsoletos:

View file

@ -9,12 +9,12 @@
- Usa un archivo de configuración diferente:
`waybar {{-c|--config}} {{ruta/a/archivo_de_configuración.jsonc}}`
`waybar {{[-c|--config]}} {{ruta/a/archivo_de_configuración.jsonc}}`
- Utiliza un archivo de hoja de estilo diferente:
`waybar {{-s|--style}} {{ruta/a/hoja_de_estilo.css}}`
`waybar {{[-s|--style]}} {{ruta/a/hoja_de_estilo.css}}`
- Establece el nivel de registro:
`waybar {{-l|--log-level}} {{trace|debug|info|warning|error|critical|off}}`
`waybar {{[-l|--log-level]}} {{trace|debug|info|warning|error|critical|off}}`

View file

@ -9,15 +9,15 @@
- جستجو یک عبارت خاص (معادل مقایسه رشته ای) :
`grep {{-F|--fixed-strings}} "{{exact_string}}" {{path/to/file}}`
`grep {{[-F|--fixed-strings]}} "{{exact_string}}" {{path/to/file}}`
- جستجو بازگشتی یک الگو در تمامی فایل های یک پوشه، نمایش تمامی خطوط منطبق، فایل های باینری را رد میکند:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{search_pattern}}" {{path/to/directory}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{search_pattern}}" {{path/to/directory}}`
- استفاده از عبارات با قاعده توسعه یافته (با پشتیبانی از `?`، `+`، `{}`، `()`، و `|`)، در حالت حساس به بزرگی کوچکی کاراکتر ها :
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{search_pattern}}" {{path/to/file}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{search_pattern}}" {{path/to/file}}`
- چاپ 3 خط از قبل و بعد محل انطباق:
@ -25,12 +25,12 @@
- چاپ نام فایل و شماره خط برای هر انطباق با رنگبندی :
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{search_pattern}}" {{path/to/file}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{search_pattern}}" {{path/to/file}}`
- جستجوی خطوط منطبق، چاپ متن منطبق :
`grep {{-o|--only-matching}} "{{search_pattern}}" {{path/to/file}}`
`grep {{[-o|--only-matching]}} "{{search_pattern}}" {{path/to/file}}`
- ورودی استاندارد (`stdin`) رو برای الگوهایی که منطبق نیستند جستجو میکند :
`cat {{path/to/file}} | grep {{-v|--invert-match}} "{{search_pattern}}"`
`cat {{path/to/file}} | grep {{[-v|--invert-match]}} "{{search_pattern}}"`

View file

@ -5,11 +5,11 @@
- Commit les fichiers en stage dans le dépôt avec un message :
`git commit -m "{{message}}"`
`git commit {{[-m|--message]}} "{{message}}"`
- Commit tous les fichiers modifiés avec un message :
`git commit -am "{{message}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{message}}"`
- Met à jour le dernier commit avec les modifications en stage :

View file

@ -9,7 +9,7 @@
- Télécharge les changements depuis le serveur distant par défaut et applique les changements locaux par dessus :
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Télécharge les changements depuis un serveur et une branche distante, puis fusionne les dans HEAD :

View file

@ -10,11 +10,11 @@
- Créer une nouvelle branche et basculer dessus :
`git switch --create {{nom_de_branche}}`
`git switch {{[-c|--create]}} {{nom_de_branche}}`
- Créer une nouvelle branche en partant d'un commit donné et basculer dessus :
`git switch --create {{nom_de_branche}} {{commit}}`
`git switch {{[-c|--create]}} {{nom_de_branche}} {{commit}}`
- Basculer sur la branche précédente :
@ -26,4 +26,4 @@
- Basculer vers une branche et fusionner automatiquement la branche actuelle et toutes les modifications non validées dedans :
`git switch --merge {{nom_de_branche}}`
`git switch {{[-m|--merge]}} {{nom_de_branche}}`

View file

@ -10,15 +10,15 @@
- Recherche en ignorant la casse :
`grep {{-F|--fixed-strings}} "{{chaîne_recherchée}}" {{chemin/vers/fichier}}`
`grep {{[-F|--fixed-strings]}} "{{chaîne_recherchée}}" {{chemin/vers/fichier}}`
- Recherche récursivement (en ignorant les fichiers non-texte) dans le dossier courant une chaîne de caractères précise :
`grep {{-r|--recursive}} {{-n|--line-number}} "{{chaîne_recherchée}}" .`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} "{{chaîne_recherchée}}" .`
- Utilise des expressions régulières étendues (supporte `?`, `+`, `{}`, `()` et `|`) :
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} {{expression_régulière}} {{chemin/vers/fichier}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} {{expression_régulière}} {{chemin/vers/fichier}}`
- Affiche 3 lignes de [C]ontexte, avant ([B]efore), ou [A]près chaque concordance :
@ -26,7 +26,7 @@
- Affiche le nom du fichier avec la ligne correspondante pour chaque concordance :
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{chaîne_recherchée}}" {{chemin/vers/fichier}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{chaîne_recherchée}}" {{chemin/vers/fichier}}`
- Utilise l'entrée standard au lieu d'un fichier :

View file

@ -9,8 +9,8 @@
- Buat berkas laporan pada direktori tertentu, dan buat direktori tersebut jika belum:
`git bugreport {{-o|--output-directory}} {{jalan/menuju/direktori}}`
`git bugreport {{[-o|--output-directory]}} {{jalan/menuju/direktori}}`
- Buat berkas laporan baru, dengan nama berkas diakhiri dengan tanggal pelaporan menurut format `strftime`:
`git bugreport {{-s|--suffix}} {{%m%d%y}}`
`git bugreport {{[-s|--suffix]}} {{%m%d%y}}`

View file

@ -5,19 +5,19 @@
- Komit berkas bertahap ke repositori dengan sebuah pesan:
`git commit --message "{{pesan}}"`
`git commit {{[-m|--message]}} "{{pesan}}"`
- Komit berkas bertahap dengan pesan yang disimpan dalam suatu berkas:
`git commit --file {{jalan/menuju/berkas_pesan_komit}}`
`git commit {{[-F|--file]}} {{jalan/menuju/berkas_pesan_komit}}`
- Ubah secara otomatis semua berkas yang dimodifikasi menjadi ke status stage dan menambahkan sebuah pesan:
`git commit --all --message "{{pesan}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{pesan}}"`
- Komit berkas bertahap kemudian tandatangani komit tersebut menggunakan kunci GPG (atau kunci yang didefinisikan dalam berkas konfigurasi jika tidak didefinisikan):
`git commit --gpg-sign {{id_kunci_gpg}} --message "{{pesan}}"`
`git commit {{[-S|--gpg-sign]}} {{id_kunci_gpg}} {{[-m|--message]}} "{{pesan}}"`
- Ganti komit terakhir dengan perubahan yang ada di status stage saat ini:
@ -29,4 +29,4 @@
- Buat komit kosong, tanpa berkas bertahap:
`git commit --message "{{pesan}}" --allow-empty`
`git commit {{[-m|--message]}} "{{pesan}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- Unduh perubahan dari bawaan repositori remote dan menggunakan maju cepat:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Unduh perubahan dari repositori remote dan cabang yang diberikan, kemudian menggabungkannya ke HEAD:

View file

@ -9,15 +9,15 @@
- Cari berkas untuk teks string tertentu secara spesifik (dengan menghentikan pencarian berbasis ekspresi reguler):
`grep {{-F|--fixed-strings}} "{{teks_spesifik}}" {{jalan/menuju/berkas}}`
`grep {{[-F|--fixed-strings]}} "{{teks_spesifik}}" {{jalan/menuju/berkas}}`
- Cari seluruh berkas selain berkas format biner di dalam suatu direktori secara rekursif (termasuk berkas-berkas di dalam subdirektori) dengan menunjukkan nomor barisan di mana pola tersebut ditemukan:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{pola_pencarian}}" {{jalan/menuju/direktori}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{pola_pencarian}}" {{jalan/menuju/direktori}}`
- Gunakan sintaks ekspresi reguler tingkat lanjut (mendukung `?`, `+`, `{}`, `()`, dan `|`), dalam mode case-insensitive (tanpa menghiraukan perbedaan antara huruf kapital dan kecil):
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
- Cetak 3 baris konteks isi berkas pada sekitar, sebelum, atau sesudah setiap hasil pencarian:
@ -25,12 +25,12 @@
- Cetak nama berkas dan nomor baris di mana pola tersebut ditemukan dalam format teks berwarna:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
- Cari untuk barisan teks yang memenuhi kriteria pada pola pencarian, dan hanya cetak bagian teks yang memenuhi pola:
`grep {{-o|--only-matching}} "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
`grep {{[-o|--only-matching]}} "{{pola_pencarian}}" {{jalan/menuju/berkas}}`
- Cari `stdin` untuk barisan teks yang tidak memenuhi kriteria pada pola pencarian:
`cat {{jalan/menuju/berkas}} | grep {{-v|--invert-match}} "{{pola_pencarian}}"`
`cat {{jalan/menuju/berkas}} | grep {{[-v|--invert-match]}} "{{pola_pencarian}}"`

View file

@ -5,11 +5,11 @@
- Committa sul repository i file nell'area di stage con un messaggio:
`git commit -m "{{messaggio}}"`
`git commit {{[-m|--message]}} "{{messaggio}}"`
- Aggiungi all'area di stage tutti i file modificati e committali con un messaggio:
`git commit -a -m "{{messaggio}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{messaggio}}"`
- Sostituisci l'ultimo commit con le modifiche attualmente salvate nell'area di stage:

View file

@ -9,7 +9,7 @@
- Scarica le ultime modifiche dal repository remoto e avvia un rebase:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Scarica le ultime modifiche da uno specifico ramo remoto e avvia un'unione con il ramo corrente:

View file

@ -10,11 +10,11 @@
- Crea un nuovo ramo e passa a quel ramo:
`git switch --create {{nome_ramo}}`
`git switch {{[-c|--create]}} {{nome_ramo}}`
- Crea un nuovo ramo a partire da un commit esistente e passa a quel ramo:
`git switch --create {{nome_ramo}} {{commit}}`
`git switch {{[-c|--create]}} {{nome_ramo}} {{commit}}`
- Torna al ramo precedente:
@ -26,4 +26,4 @@
- Passa ad un ramo e uniscilo automaticamente al ramo corrente, include le modifiche non committate:
`git switch --merge {{nome_ramo}}`
`git switch {{[-m|--merge]}} {{nome_ramo}}`

View file

@ -5,15 +5,15 @@
- メッセージと共に、ステージ済のファイルをリポジトリにコミットする:
`git commit --message "{{メッセージ}}"`
`git commit {{[-m|--message]}} "{{メッセージ}}"`
- ファイルから読みとったメッセージと共に、ステージ済のファイルをコミットする:
`git commit --file {{コミットメッセージが書かれたファイルへのパス}}`
`git commit {{[-F|--file]}} {{コミットメッセージが書かれたファイルへのパス}}`
- 変更されたファイルを全て自動的にステージし、メッセージと共にコミットする:
`git commit --all --message "{{メッセージ}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{メッセージ}}"`
- 今のステージ済の変更を最後のコミットに付け足し、コミットハッシュを変更する:
@ -25,4 +25,4 @@
- ステージ済のファイルが無くても、コミットを作る:
`git commit --message "{{メッセージ}}" --allow-empty`
`git commit {{[-m|--message]}} "{{メッセージ}}" --allow-empty`

View file

@ -9,15 +9,15 @@
- 正確な文字列を検索する(正規表現を無効にする):
`grep {{-F|--fixed-strings}} "{{正確な文字列}}" {{path/to/file}}`
`grep {{[-F|--fixed-strings]}} "{{正確な文字列}}" {{path/to/file}}`
- ディレクトリ内の全てのファイルを再帰的にパターン検索し、マッチしたファイルの行番号を表示する:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{検索パターン}}" {{path/to/directory}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{検索パターン}}" {{path/to/directory}}`
- 拡張正規表現 (`?`, `+`, `{}`, `()`, `|` をサポート)を大文字小文字を区別しないモードで使用する:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{検索パターン}}" {{path/to/file}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{検索パターン}}" {{path/to/file}}`
- 各マッチの前後3行のコンテキストを表示する:
@ -25,12 +25,12 @@
- 各マッチのファイル名と行番号をカラー出力する:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{検索パターン}}" {{path/to/file}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{検索パターン}}" {{path/to/file}}`
- パターンにマッチする行を検索し、マッチしたテキストのみを表示する:
`grep {{-o|--only-matching}} "{{検索パターン}}" {{path/to/file}}`
`grep {{[-o|--only-matching]}} "{{検索パターン}}" {{path/to/file}}`
- パターンにマッチしない行を `stdin` から検索する:
`cat {{path/to/file}} | grep {{-v|--invert-match}} "{{検索パターン}}"`
`cat {{path/to/file}} | grep {{[-v|--invert-match]}} "{{検索パターン}}"`

View file

@ -5,16 +5,16 @@
- 소스에서 대상으로 이미지 복사:
`gcrane {{cp|copy}} {{소스}} {{대상}}`
`gcrane {{[cp|copy]}} {{소스}} {{대상}}`
- 최대 동시 복사본 수를 설정, 기본값은 20:
`gcrane copy {{소스}} {{대상}} {{-j|--jobs}} {{nr_of_copies}}`
`gcrane copy {{소스}} {{대상}} {{[-j|--jobs]}} {{nr_of_copies}}`
- 레포지토리를 통해 반복할지 여부 문의:
`grance copy {{소스}} {{대상}} {{-r|--recursive}}`
`grance copy {{소스}} {{대상}} {{[-r|--recursive]}}`
- 도움말 표시:
`gcrane copy {{-h|--help}}`
`gcrane copy {{[-h|--help]}}`

View file

@ -11,8 +11,8 @@
- 레포지토리를 통해 반복할지 여부:
`gcrane gc {{레포지토리}} {{-r|--recursive}}`
`gcrane gc {{레포지토리}} {{[-r|--recursive]}}`
- 도움말 표시:
`gcrane gc {{-h|--help}}`
`gcrane gc {{[-h|--help]}}`

View file

@ -9,4 +9,4 @@
- 도움말 표시:
`grance help {{-h|--help}}`
`grance help {{[-h|--help]}}`

View file

@ -14,8 +14,8 @@
- 레포지토리를 통해 반복할지 여부 결정:
`gcrane ls {{레포지토리}} {{-r|--recursive}}`
`gcrane ls {{레포지토리}} {{[-r|--recursive]}}`
- 도움말 표시:
`gcrane ls {{-h|--help}}`
`gcrane ls {{[-h|--help]}}`

View file

@ -24,8 +24,8 @@
- 디버그 로그 활성화:
`gcrane {{-v|--verbose}} {{하위명령어}}`
`gcrane {{[-v|--verbose]}} {{하위명령어}}`
- 도움말 표시:
`gcrane {{-h|--help}}`
`gcrane {{[-h|--help]}}`

View file

@ -9,8 +9,8 @@
- 지정된 디렉토리에 새로운 버그 보고 파일 생성 (디렉토리가 없을 경우 생성됨):
`git bugreport {{-o|--output-directory}} {{경로/대상/폴더}}`
`git bugreport {{[-o|--output-directory]}} {{경로/대상/폴더}}`
- `strftime` 형식의 지정된 파일명 접미사를 사용하여 새로운 버그 보고 파일 생성:
`git bugreport {{-s|--suffix}} {{%m%d%y}}`
`git bugreport {{[-s|--suffix]}} {{%m%d%y}}`

View file

@ -5,19 +5,19 @@
- 스테이징된 파일을 메시지와 함께 저장소에 커밋:
`git commit --message "{{메시지}}"`
`git commit {{[-m|--message]}} "{{메시지}}"`
- 파일에서 읽은 메시지로 스테이징된 파일을 저장소에 커밋:
`git commit --file {{경로/대상/커밋_메시지_파일}}`
`git commit {{[-F|--file]}} {{경로/대상/커밋_메시지_파일}}`
- 수정 및 삭제된 모든 파일을 자동으로 스테이징하고 메시지와 함께 커밋:
`git commit --all --message "{{메시지}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{메시지}}"`
- 스테이징된 파일을 커밋하고 지정된 GPG 키로 서명합니다 (인수가 지정되지 않은 경우 구성 파일에 정의된 키 사용):
`git commit --gpg-sign {{키_아이디}} --message "{{메시지}}"`
`git commit {{[-S|--gpg-sign]}} {{키_아이디}} {{[-m|--message]}} "{{메시지}}"`
- 현재 스테이징된 변경 사항을 추가하여 마지막 커밋을 업데이트하고 커밋의 해시를 변경합니다:
@ -29,4 +29,4 @@
- 스테이징된 파일이 없더라도 커밋 생성:
`git commit --message "{{메시지}}" --allow-empty`
`git commit {{[-m|--message]}} "{{메시지}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- 기본 원격 저장소에서 변경 사항 다운로드 후 패스트-포워드 사용:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- 지정된 원격 저장소와 브랜치에서 변경 사항 다운로드 후 다음 HEAD에 병합:

View file

@ -10,11 +10,11 @@
- 새 브랜치를 만들고 전환:
`git switch --create {{브랜치_이름}}`
`git switch {{[-c|--create]}} {{브랜치_이름}}`
- 기존 커밋을 기반으로 새 브랜치를 만들고 전환:
`git switch --create {{브랜치_이름}} {{커밋}}`
`git switch {{[-c|--create]}} {{브랜치_이름}} {{커밋}}`
- 이전 브랜치로 전환:
@ -26,4 +26,4 @@
- 브랜치로 전환하고 현재 브랜치와 미커밋된 변경 사항을 자동으로 병합:
`git switch --merge {{브랜치_이름}}`
`git switch {{[-m|--merge]}} {{브랜치_이름}}`

View file

@ -9,15 +9,15 @@
- 정규표현식을 사용하지 않고 정확히 일치하는 문자열 검색:
`grep {{-F|--fixed-strings}} "{{문자열}}" {{파일/의/경로}}`
`grep {{[-F|--fixed-strings]}} "{{문자열}}" {{파일/의/경로}}`
- 재귀적으로 디렉토리 안의 바이너리 파일을 제외한 모든 파일 안에서 패턴을 검색하고, 일치하는 줄의 번호를 보여줌:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{검색_패턴}}" {{디렉토리/의/경로}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{검색_패턴}}" {{디렉토리/의/경로}}`
- 대소문자를 구분하지 않는 모드에서 확장된 정규표현식 사용 (`?`, `+`, `{}`, `()`, 그리고 `|` 를 지원):
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{검색_패턴}}" {{파일/의/경로}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{검색_패턴}}" {{파일/의/경로}}`
- 일치하는 문자열 주변, 이전 혹은 이후의 3줄을 출력:
@ -25,12 +25,12 @@
- 각각의 일치하는 문자열의 파일 이름과 줄 번호 출력:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{검색_패턴}}" {{파일/의/경로}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{검색_패턴}}" {{파일/의/경로}}`
- 패턴과 일치하는 줄을 검색하고, 일치하는 문자만 출력:
`grep {{-o|--only-matching}} "{{검색_패턴}}" {{파일/의/경로}}`
`grep {{[-o|--only-matching]}} "{{검색_패턴}}" {{파일/의/경로}}`
- 패턴과 일치하지 않는 라인에 대한 `stdin` 검색:
`cat {{파일/의/경로}} | grep {{-v|--invert-match}} "{{검색_패턴}}"`
`cat {{파일/의/경로}} | grep {{[-v|--invert-match]}} "{{검색_패턴}}"`

View file

@ -9,24 +9,24 @@
- 파일의 압축을 풀어, 원래의 압축되지 않은 버전으로 교체:
`gzip {{-d|--decompress 경로/대상/파일.gz}}`
`gzip {{[-d|--decompress]}} {{경로/대상/파일.gz}}`
- 원본 파일을 유지하면서, 파일을 압축:
`gzip {{-k|--keep 경로/대상/파일}}`
`gzip {{[-k|--keep]}} {{경로/대상/파일}}`
- 출력 파일 이름을 지정하여, 파일을 압축:
`gzip {{-c|--stdout 경로/대상/파일}} > {{경로/대상/압축된_파일.gz}}`
`gzip {{[-c|--stdout]}} {{경로/대상/파일}} > {{경로/대상/압축된_파일.gz}}`
- 출력 파일 이름을 지정하여, `gzip` 아카이브의 압축을 품:
`gzip {{-c|--stdout}} {{-d|--decompress}} {{경로/대상/파일.gz}} > {{경로/대상/압축해제된_파일}}`
`gzip {{[-c|--stdout]}} {{[-d|--decompress]}} {{경로/대상/파일.gz}} > {{경로/대상/압축해제된_파일}}`
- 압축 수준을 지정. 1은 가장 빠르며 (낮은 압축), 9는 가장 느림 (높은 압축), 6은 기본값:
`gzip -{{1..9}} {{-c|--stdout}} {{경로/대상/파일}} > {{경로/대상/압축된_파일.gz}}`
`gzip -{{1..9}} {{[-c|--stdout]}} {{경로/대상/파일}} > {{경로/대상/압축된_파일.gz}}`
- 압축 또는 압축 해제된 각 파일의 이름과 감소 비율을 표시:
`gzip {{-v|--verbose}} {{-d|--decompress}} {{경로/대상/파일.gz}}`
`gzip {{[-v|--verbose]}} {{[-d|--decompress]}} {{경로/대상/파일.gz}}`

View file

@ -9,7 +9,7 @@
- 특정 출력 내용을 인쇄 (`H`: 요청 헤더, `B`: 요청 본문, `h`: 응답 헤더, `b`: 응답 본문, `m`: 응답 메타데이터):
`http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
`http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
- 요청을 보낼 때 HTTP 메소드를 지정하고 프록시를 사용하여 요청을 가로채기:
@ -17,11 +17,11 @@
- `3xx` 리디렉션을 따르고 요청에 추가 헤더를 지정:
`http {{-F|--follow}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
`http {{[-F|--follow]}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
- 다양한 인증 방법을 사용하여 서버에 인증:
`http --auth {{username:password|token}} --auth-type {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
`http {{[-a|--auth]}} {{username:password|token}} {{[-A|--auth-type]}} {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
- 요청을 생성하지만, 보내지 않음 (모의 실행과 유사):
@ -29,8 +29,8 @@
- 지속적인 사용자 정의 헤더, 인증 자격 증명 및 쿠키에 대해 명명된 세션을 사용:
`http --session {{세션_이름|경로/대상/세션.json}} {{--auth 사용자명:비밀번호 https://example.com/auth API-KEY:xxx}}`
`http --session {{세션_이름|경로/대상/세션.json}} {{[-a|--auth]}} {{사용자명}}:{{비밀번호}} {{https://example.com/auth}} {{API-KEY:xxx}}`
- 양식에 파일을 업로드 (아래 예에서는 양식 필드가 `<input type="file" name="cv" />`라고 가정):
`http --form {{POST}} {{https://example.com/upload}} {{cv@경로/대상/파일}}`
`http {{[-f|--form]}} {{POST}} {{https://example.com/upload}} {{cv@경로/대상/파일}}`

View file

@ -10,7 +10,7 @@
- 암호로 보호된 아카이브 파일의 내용 나열:
`lsar {{경로/대상/아카이브}} --password {{암호}}`
`lsar {{경로/대상/아카이브}} {{[-p|--password]}} {{암호}}`
- 아카이브 내 각 파일에 대한 모든 사용 가능한 정보 출력 (매우 길게 출력됨):
@ -18,12 +18,12 @@
- 아카이브 파일의 무결성 테스트 (가능한 경우):
`lsar --test {{경로/대상/아카이브}}`
`lsar {{[-t|--test]}} {{경로/대상/아카이브}}`
- 아카이브 파일의 내용을 JSON 형식으로 나열:
`lsar --json {{경로/대상/아카이브}}`
`lsar {{[-j|--json]}} {{경로/대상/아카이브}}`
- 도움말 표시:
`lsar --help`
`lsar {{-h|--help}}`

View file

@ -10,11 +10,11 @@
- 사용자 정의 주소와 포트에 바인딩하여 `mitmproxy` 시작:
`mitmproxy --listen-host {{IP_주소}} {{-p|--listen-port}} {{포트}}`
`mitmproxy --listen-host {{IP_주소}} {{[-p|--listen-port]}} {{포트}}`
- 스크립트를 사용하여 트래픽을 처리하는 `mitmproxy` 시작:
`mitmproxy {{-s|--scripts}} {{경로/대상/script.py}}`
`mitmproxy {{[-s|--scripts]}} {{경로/대상/script.py}}`
- SSL/TLS 마스터 키로 로그를 외부 프로그램(와이어샤크 등)으로 내보내기:
@ -22,7 +22,7 @@
- 프록시 서버의 작동 모드 지정 (`regular`가 기본값):
`mitmproxy {{-m|--mode}} {{regular|transparent|socks5|...}}`
`mitmproxy {{[-m|--mode]}} {{regular|transparent|socks5|...}}`
- 콘솔 레이아웃 설정:

View file

@ -9,12 +9,12 @@
- 대상에 포트 스캔 실행:
`nettacker {{-m|--modules}} port_scan {{-i|--targets}} {{192.168.0.1/24,owasp.org,scanme.org,...}}`
`nettacker {{[-m|--modules]}} port_scan {{[-i|--targets]}} {{192.168.0.1/24,owasp.org,scanme.org,...}}`
- 특정 포트 및 파일에 나열된 대상에 포트 스캔 실행 (줄바꿈으로 구분):
`nettacker {{-m|--modules}} port_scan {{-g|--ports}} {{22,80,443,...}} {{-l|--targets-list}} {{경로/대상/targets.txt}}`
`nettacker {{[-m|--modules]}} port_scan {{[-g|--ports]}} {{22,80,443,...}} {{-l|--targets-list}} {{경로/대상/targets.txt}}`
- 스캔 전 핑 테스트를 실행한 후 대상에 여러 스캔 유형 실행:
`nettacker --ping-before-scan {{-m|--modules}} {{port_scan,subdomain_scan,waf_scan,...}} {{-g|--ports}} {{80,443}} {{-i|--targets}} {{owasp.org}}`
`nettacker --ping-before-scan {{[-m|--modules]}} {{port_scan,subdomain_scan,waf_scan,...}} {{[-g|--ports]}} {{80,443}} {{[-i|--targets]}} {{owasp.org}}`

View file

@ -14,7 +14,7 @@
- 취약점을 가진 의존성을 강제로 자동 수정:
`npm audit fix {{-f|--force}}`
`npm audit fix {{[-f|--force]}}`
- `node_modules` 디렉터리를 수정하지 않고 lock 파일 업데이트:

View file

@ -17,4 +17,4 @@
- 최신 버전의 패키지를 다운로드하고 전역으로 설치:
`npm install {{-g|--global}} {{패키지_이름}}`
`npm install {{[-g|--global]}} {{패키지_이름}}`

View file

@ -6,7 +6,7 @@
- 명령어를 직접 실행:
`ntfyme exec {{-c|--cmd}} {{명령어}}`
`ntfyme exec {{[-c|--cmd]}} {{명령어}}`
- 명령어를 파이프로 전달하여 실행:
@ -18,7 +18,7 @@
- 장기 중단 후 프로세스를 추적하고 종료:
`ntfyme exec {{-t|--track-process}} {{-c|--cmd}} {{명령어}}`
`ntfyme exec {{[-t|--track-process]}} {{[-c|--cmd]}} {{명령어}}`
- 도구 구성을 대화식으로 설정:

View file

@ -29,8 +29,8 @@
- 지정된 파일 및 디렉토리 무시:
`onefetch {{-e|--exclude}} {{경로/대상/파일_또는_폴더|정규식}}`
`onefetch {{[-e|--exclude]}} {{경로/대상/파일_또는_폴더|정규식}}`
- 지정된 범주에서만 언어 감지 (기본값: 프로그래밍 및 마크업):
`onefetch {{-T|--type}} {{programming|markup|prose|data}}`
`onefetch {{[-T|--type]}} {{programming|markup|prose|data}}`

View file

@ -5,15 +5,15 @@
- 파일을 PDF로 변환 (출력 형식은 파일 확장자로 결정됨):
`pandoc {{경로/대상/입력.md}} {{-o|--output}} {{경로/대상/출력.pdf}}`
`pandoc {{경로/대상/입력.md}} {{[-o|--output]}} {{경로/대상/출력.pdf}}`
- 적절한 헤더/푸터가 있는 독립 실행형 파일로 변환 (LaTeX, HTML 등):
`pandoc {{경로/대상/입력.md}} {{-s|--standalone}} {{-o|--output}} {{경로/대상/출력.html}}`
`pandoc {{경로/대상/입력.md}} {{[-s|--standalone]}} {{[-o|--output]}} {{경로/대상/출력.html}}`
- 형식 감지 및 변환을 수동으로 지정 (파일 이름 확장자를 사용한 자동 형식 감지를 무시하거나 파일 이름 확장자가 전혀 없는 경우):
`pandoc {{-f|-r|--from|--read}} {{docx|...}} {{경로/대상/입력}} {{-t|-w|--to|--write}} {{pdf|...}} {{-o|--output}} {{경로/대상/출력}}`
`pandoc {{-f|-r|--from|--read}} {{docx|...}} {{경로/대상/입력}} {{-t|-w|--to|--write}} {{pdf|...}} {{[-o|--output]}} {{경로/대상/출력}}`
- 지원되는 모든 입력 형식 나열:

View file

@ -9,16 +9,16 @@
- 특정 사용자 이름을 사용하여 모든 데이터베이스 덤프:
`pg_dumpall {{-U|--username}} {{사용자_이름}} > {{경로/대상/파일.sql}}`
`pg_dumpall {{[-U|--username]}} {{사용자_이름}} > {{경로/대상/파일.sql}}`
- 위와 동일하며, 호스트와 포트 맞춤 설정:
`pg_dumpall -h {{호스트}} -p {{포트}} > {{출력_파일.sql}}`
`pg_dumpall {{[-h|--host]}} {{호스트}} {{[-p|--port]}} {{포트}} > {{출력_파일.sql}}`
- 데이터베이스 데이터를 SQL 스크립트 파일로만 덤프:
`pg_dumpall {{-a|--data-only}} > {{경로/대상/파일.sql}}`
`pg_dumpall {{[-a|--data-only]}} > {{경로/대상/파일.sql}}`
- 스키마(데이터 정의)만 SQL 스크립트 파일로 덤프:
`pg_dumpall -s > {{출력_파일.sql}}`
`pg_dumpall {{[-s|--schema-only]}} > {{출력_파일.sql}}`

View file

@ -17,7 +17,7 @@
- 다른 컴포즈 파일을 사용하여 모든 컨테이너 시작:
`podman-compose {{-f|--file}} {{경로/대상/파일.yaml}} up`
`podman-compose {{[-f|--file]}} {{경로/대상/파일.yaml}} up`
- 실행 중인 모든 컨테이너 중지:

View file

@ -13,4 +13,4 @@
- Pulumi Cloud와 독립적으로 로컬에서 Pulumi 사용:
`pulumi login {{-l|--local}}`
`pulumi login {{[-l|--local]}}`

View file

@ -30,4 +30,4 @@
- Pulumi Cloud와 독립적으로 Pulumi를 로컬에서 사용:
`pulumi login {{-l|--local}}`
`pulumi login {{[-l|--local]}}`

View file

@ -9,11 +9,11 @@
- 각 오류에 대한 설명 표시:
`pydocstyle {{-e|--explain}} {{파일.py|경로/대상/폴더}}`
`pydocstyle {{[-e|--explain]}} {{파일.py|경로/대상/폴더}}`
- 디버그 정보 표시:
`pydocstyle {{-d|--debug}} {{파일.py|경로/대상/폴더}}`
`pydocstyle {{[-d|--debug]}} {{파일.py|경로/대상/폴더}}`
- 총 오류 수 표시:

View file

@ -10,16 +10,16 @@
- 특정 단어 목록 사용:
`toipe {{-w|--wordlist}} {{단어목록_이름}}`
`toipe {{[-w|--wordlist]}} {{단어목록_이름}}`
- 사용자 정의 단어 목록 사용:
`toipe {{-f|--file}} {{경로/대상/파일}}`
`toipe {{[-f|--file]}} {{경로/대상/파일}}`
- 각 테스트에서 단어 수 지정:
`toipe {{-n|--num}} {{단어_수}}`
`toipe {{[-n|--num]}} {{단어_수}}`
- 구두점 포함:
`toipe {{-p|--punctuation}}`
`toipe {{[-p|--punctuation]}}`

View file

@ -10,12 +10,12 @@
- 입력한 난이도에 대한 상위 10위 랭크 목록 표시:
`typeinc {{-r|--ranklist}} {{난이도}}`
`typeinc {{[-r|--ranklist]}} {{난이도}}`
- 워드리스트에 있는 무작위 영어 단어 가져오기:
`typeinc {{-w|--words}} {{단어_개수}}`
`typeinc {{[-w|--words]}} {{단어_개수}}`
- 가상의 Typeinc 점수 계산:
`typeinc {{-s|--score}}`
`typeinc {{[-s|--score]}}`

View file

@ -9,12 +9,12 @@
- 다른 구성 파일 사용:
`waybar {{-c|--config}} {{경로/대상/구성파일.jsonc}}`
`waybar {{[-c|--config]}} {{경로/대상/구성파일.jsonc}}`
- 다른 스타일 시트 파일 사용:
`waybar {{-s|--style}} {{경로/대상/스타일시트.css}}`
`waybar {{[-s|--style]}} {{경로/대상/스타일시트.css}}`
- 로그 수준 설정:
`waybar {{-l|--log-level}} {{trace|debug|info|warning|error|critical|off}}`
`waybar {{[-l|--log-level]}} {{trace|debug|info|warning|error|critical|off}}`

View file

@ -9,8 +9,8 @@
- 수집되는 정보의 양 변경:
`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}}`
`zapier analytics {{[-m|--mode]}} {{enabled|anonymous|disabled}}`
- 추가 디버깅 출력 표시:
`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}} {{-d|--debug}}`
`zapier analytics {{[-m|--mode]}} {{enabled|anonymous|disabled}} {{-d|--debug}}`

View file

@ -13,4 +13,4 @@
- 추가 디버깅 출력 표시:
`zapier build {{-d|--debug}}`
`zapier build {{[-d|--debug]}}`

View file

@ -9,7 +9,7 @@
- 특정 버전의 Visual Builder 통합 변환:
`zapier convert {{integration_id}} {{경로/대상/폴더}} {{-v|--version}}={{버전}}`
`zapier convert {{integration_id}} {{경로/대상/폴더}} {{[-v|--version]}}={{버전}}`
- 추가 디버깅 출력 표시:

View file

@ -9,8 +9,8 @@
- 특정 템플릿으로 새 Zapier 통합 초기화:
`zapier init {{경로/대상/폴더}} {{-t|--template}} {{basic-auth|callback|custom-auth|digest-auth|dynamic-dropdown|files|minimal|oauth1-trello|oauth2|search-or-create|session-auth|typescript}}`
`zapier init {{경로/대상/폴더}} {{[-t|--template]}} {{basic-auth|callback|custom-auth|digest-auth|dynamic-dropdown|files|minimal|oauth1-trello|oauth2|search-or-create|session-auth|typescript}}`
- 추가 디버깅 출력 표시:
`zapier init {{-d|--debug}}`
`zapier init {{[-d|--debug]}}`

View file

@ -13,4 +13,4 @@
- 추가 디버깅 출력 표시:
`zapier push {{-d|--debug}}`
`zapier push {{[-d|--debug]}}`

View file

@ -9,11 +9,11 @@
- 스캐폴드된 파일의 사용자 지정 대상 폴더 지정:
`zapier scaffold {{trigger|search|create|resource}} {{명사}} {{-d|--dest}}={{경로/대상/폴더}}`
`zapier scaffold {{trigger|search|create|resource}} {{명사}} {{[-d|--dest]}}={{경로/대상/폴더}}`
- 스캐폴딩 시 기존 파일 덮어쓰기:
`zapier scaffold {{trigger|search|create|resource}} {{명사}} {{-f|--force}}`
`zapier scaffold {{trigger|search|create|resource}} {{명사}} {{[-f|--force]}}`
- 스캐폴드된 파일에서 주석 제외:
@ -21,4 +21,4 @@
- 추가 디버깅 출력 표시:
`zapier scaffold {{-d|--debug}}`
`zapier scaffold {{[-d|--debug]}}`

View file

@ -5,16 +5,16 @@
- Kopieer een afbeelding van bron naar doel:
`gcrane {{cp|copy}} {{bron}} {{doel}}`
`gcrane {{[cp|copy]}} {{bron}} {{doel}}`
- Stel het maximale aantal gelijktijdige kopieën in, standaard is 20:
`gcrane copy {{bron}} {{doel}} {{-j|--jobs}} {{aantal_kopieën}}`
`gcrane copy {{bron}} {{doel}} {{[-j|--jobs]}} {{aantal_kopieën}}`
- Of de repositories doorzocht moeten worden:
`gcrane copy {{bron}} {{doel}} {{-r|--recursive}}`
`gcrane copy {{bron}} {{doel}} {{[-r|--recursive]}}`
- Toon de help:
`gcrane copy {{-h|--help}}`
`gcrane copy {{[-h|--help]}}`

View file

@ -11,8 +11,8 @@
- Recursief door de repositories heen:
`gcrane gc {{repository}} {{-r|--recursive}}`
`gcrane gc {{repository}} {{[-r|--recursive]}}`
- Toon de help:
`gcrane gc {{-h|--help}}`
`gcrane gc {{[-h|--help]}}`

View file

@ -9,4 +9,4 @@
- Toon de help:
`gcrane help {{-h|--help}}`
`gcrane help {{[-h|--help]}}`

View file

@ -14,8 +14,8 @@
- Of door repositories te recursief te doorlopen:
`gcrane ls {{repository}} {{-r|--recursive}}`
`gcrane ls {{repository}} {{[-r|--recursive]}}`
- Toon de help:
`gcrane ls {{-h|--help}}`
`gcrane ls {{[-h|--help]}}`

View file

@ -24,8 +24,8 @@
- Schakel debuglogs in:
`gcrane {{-v|--verbose}} {{subcommand}}`
`gcrane {{[-v|--verbose]}} {{subcommand}}`
- Toon de help:
`gcrane {{-h|--help}}`
`gcrane {{[-h|--help]}}`

View file

@ -9,15 +9,15 @@
- Zoek naar een exacte string (schakelt reguliere expressies uit):
`grep {{-F|--fixed-strings}} "{{exacte_string}}" {{pad/naar/bestand}}`
`grep {{[-F|--fixed-strings]}} "{{exacte_string}}" {{pad/naar/bestand}}`
- Zoek naar een patroon in alle bestanden in een map, recursief, toon regelnummers van overeenkomsten, negeer binaire bestanden:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{zoekpatroon}}" {{pad/naar/map}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{zoekpatroon}}" {{pad/naar/map}}`
- Gebruik uitgebreide reguliere expressies (ondersteunt `?`, `+`, `{}`, `()` en `|`), in hoofdletterongevoelige modus:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{zoekpatroon}}" {{pad/naar/bestand}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{zoekpatroon}}" {{pad/naar/bestand}}`
- Print 3 regels context rondom, voor of na elke overeenkomst:
@ -25,12 +25,12 @@
- Print bestandsnaam en regelnummers voor elke overeenkomst met kleuruitvoer:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{zoekpatroon}}" {{pad/naar/bestand}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{zoekpatroon}}" {{pad/naar/bestand}}`
- Zoek naar regels die overeenkomen met een patroon en print alleen de overeenkomstige tekst:
`grep {{-o|--only-matching}} "{{zoekpatroon}}" {{pad/naar/bestand}}`
`grep {{[-o|--only-matching]}} "{{zoekpatroon}}" {{pad/naar/bestand}}`
- Zoek in `stdin` naar regels die niet overeenkomen met een patroon:
`cat {{pad/naar/bestand}} | grep {{-v|--invert-match}} "{{zoekpatroon}}"`
`cat {{pad/naar/bestand}} | grep {{[-v|--invert-match]}} "{{zoekpatroon}}"`

View file

@ -9,7 +9,7 @@
- Print specifieke uitvoerinhoud (`H`: request headers, `B`: request body, `h`: response headers, `b`: response body, `m`: response metadata):
`http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
`http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
- Specificeer de HTTP-methode bij het verzenden van een aanvraag en gebruik een proxy om de aanvraag te onderscheppen:
@ -17,11 +17,11 @@
- Volg eventuele `3xx` redirects en specificeer extra headers in een verzoek:
`http {{-F|--follow}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
`http {{[-F|--follow]}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
- Authenticeer bij een server met verschillende authenticatiemethoden:
`http --auth {{gebruikersnaam:wachtwoord|token}} --auth-type {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
`http {{[-a|--auth]}} {{gebruikersnaam:wachtwoord|token}} {{[-A|--auth-type]}} {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
- Maak een verzoek maar verzend het niet (vergelijkbaar met een dry-run):
@ -29,8 +29,8 @@
- Gebruik benoemde sessies voor aanhoudende aangepaste headers, auth-referenties en cookies:
`http --session {{session_naam|pad/naar/session.json}} {{--auth gebruikersnaam:wachtwoord https://example.com/auth API-KEY:xxx}}`
`http --session {{session_naam|pad/naar/session.json}} {{[-a|--auth]}} {{gebruikersnaam}}:{{wachtwoord}} {{https://example.com/auth}} {{API-KEY:xxx}}`
- Upload een bestand naar een formulier (het onderstaande voorbeeld gaat ervan uit dat het formulier `<input type="file" name="cv" />` is):
`http --form {{POST}} {{https://example.com/upload}} {{cv@pad/naar/bestand}}`
`http {{[-f|--form]}} {{POST}} {{https://example.com/upload}} {{cv@pad/naar/bestand}}`

View file

@ -9,7 +9,7 @@
- Wyświetl podane części treści (`H`: nagłówki żądania, `B`: treść żądania, `h`: nagłówki odpowiedzi, `b`: treść odpowiedzi, `m`: metadane odpowiedzi):
`http --print {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
`http {{[-p|--print]}} {{H|B|h|b|m|Hh|Hhb|...}} {{https://example.com}}`
- Określ metodę HTTP używaną podczas wysyłania żądania i użyj serwera proxy do przechwycenia żądania:
@ -17,11 +17,11 @@
- Podążaj za wszystkimi przekierowaniami `3xx` i określ dodatkowe nagłówki do żądania:
`http {{-F|--follow}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
`http {{[-F|--follow]}} {{https://example.com}} {{'User-Agent: Mozilla/5.0' 'Accept-Encoding: gzip'}}`
- Uwierzytelnij się na serwerze używając różnych metod uwierzytelniania:
`http --auth {{nazwa_użytkownika:hasło|token}} --auth-type {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
`http {{[-a|--auth]}} {{nazwa_użytkownika:hasło|token}} {{[-A|--auth-type]}} {{basic|digest|bearer}} {{GET|POST|...}} {{https://example.com/auth}}`
- Skonstruuj żądanie, ale go nie wysyłaj:
@ -29,8 +29,8 @@
- Użyj nazwanych sesji do trwałych niestandardowych nagłówków, danych uwierzytelniających i ciasteczek:
`http --session {{nazwa_sesji|ścieżka/do/sesji.json}} {{--auth nazwa_użytkownika:hasło https://example.com/auth API-KEY:xxx}}`
`http --session {{nazwa_sesji|ścieżka/do/sesji.json}} {{[-a|--auth]}} {{nazwa_użytkownika}}:{{hasło}} {{https://example.com/auth}} {{API-KEY:xxx}}`
- Prześlij plik do formularza (poniższy przykład zakłada, że polem formularza jest `<input type="file" name="cv" />`):
`http --form {{POST}} {{https://example.com/upload}} {{cv@ścieżka/do/pliku}}`
`http {{[-f|--form]}} {{POST}} {{https://example.com/upload}} {{cv@ścieżka/do/pliku}}`

View file

@ -5,19 +5,19 @@
- Faz um commit com os arquivos preparados no repositório com uma mensagem:
`git commit --message "{{mensagem}}"`
`git commit {{[-m|--message]}} "{{mensagem}}"`
- Faz um commit com os arquivos preparados com uma mensagem lida de um arquivo:
`git commit --file {{caminho/para/arquivo_de_mensagem_do_commit}}`
`git commit {{[-F|--file]}} {{caminho/para/arquivo_de_mensagem_do_commit}}`
- Prepara automaticamente todos os arquivos modificados e excluídos e faz o commit com uma mensagem:
`git commit --all --message "{{mensagem}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{mensagem}}"`
- Faz um commit com os arquivos preparados e assina-os com a chave GPG especificada (ou a definida no arquivo de configuração se nenhum argumento for especificado):
`git commit --gpg-sign {{id_da_chave}} --message "{{mensagem}}"`
`git commit {{[-S|--gpg-sign]}} {{id_da_chave}} {{[-m|--message]}} "{{mensagem}}"`
- Atualiza o último commit adicionando as alterações atualmente preparadas, alterando o hash do commit:
@ -29,4 +29,4 @@
- Cria um commit, mesmo se não haja arquivos preparados:
`git commit --message "{{mensagem}}" --allow-empty`
`git commit {{[-m|--message]}} "{{mensagem}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- Baixa as alterações do repositório remoto padrão e usa o avanço rápido:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Baixa as alterações de um determinado repositório remoto e branch, então, mescla-as no HEAD:

View file

@ -9,15 +9,15 @@
- Pesquisa por uma string exata (desabilita expressões regulares):
`grep {{-F|--fixed-strings}} "{{string_exata}}" {{caminho/para/arquivo}}`
`grep {{[-F|--fixed-strings]}} "{{string_exata}}" {{caminho/para/arquivo}}`
- Pesquisa por um padrão em todos os arquivos recursivamente em um diretório, mostrando o número das linhas das correspondências, ignorando arquivos binários:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{padrão_pesquisado}}" {{caminho/para/diretório}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{padrão_pesquisado}}" {{caminho/para/diretório}}`
- Usa expressões regulares estendidas (suporta `?`, `+`, `{}`, `()` and `|`), no modo insensível a maiúsculas e minúsculas:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
- Imprime 3 linhas de contexto em volta, antes ou depois de cada correspondência:
@ -25,12 +25,12 @@
- Imprime o nome do arquivo e o número da linha para cada correspondência:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
- Pesquisa por linhas que correspondem a um padrão, imprimindo apenas o texto correspondido:
`grep {{-o|--only-matching}} "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
`grep {{[-o|--only-matching]}} "{{padrão_pesquisado}}" {{caminho/para/arquivo}}`
- Pesquisa `stdin` para linhas que não correspondem a um padrão:
`cat {{caminho/para/arquivo}} | grep {{-v|--invert-match}} "{{padrão_pesquisado}}"`
`cat {{caminho/para/arquivo}} | grep {{[-v|--invert-match]}} "{{padrão_pesquisado}}"`

View file

@ -9,24 +9,24 @@
- Descompacta um arquivo, substituindo-o pela versão descompactada original:
`gzip {{-d|--decompress caminho/para/arquivo.gz}}`
`gzip {{[-d|--decompress]}} {{caminho/para/arquivo.gz}}`
- Compacta um arquivo, mantendo o arquivo original:
`gzip {{-k|--keep caminho/para/arquivo}}`
`gzip {{[-k|--keep]}} {{caminho/para/arquivo}}`
- Compacta um arquivo definindo o nome do arquivo de saída:
`gzip {{-c|--stdout caminho/para/arquivo}} > {{caminho/para/arquivo_compactado.gz}}`
`gzip {{[-c|--stdout]}} {{caminho/para/arquivo}} > {{caminho/para/arquivo_compactado.gz}}`
- Descompacta um arquivo gzip definindo o nome do arquivo de saída:
`gzip {{-c|--stdout}} {{-d|--decompress}} {{caminho/para/arquivo.gz}} > {{caminho/para/arquivo_descompactado}}`
`gzip {{[-c|--stdout]}} {{[-d|--decompress]}} {{caminho/para/arquivo.gz}} > {{caminho/para/arquivo_descompactado}}`
- Especifica o nível de compactação. 1 é o mais rápido (baixa compressão), 9 é o mais lento (baixa compressão), o nível padrão é 6:
`gzip -{{1..9}} {{-c|--stdout}} {{caminho/para/arquivo}} > {{caminho/para/arquivo_compactado.gz}}`
`gzip -{{1..9}} {{[-c|--stdout]}} {{caminho/para/arquivo}} > {{caminho/para/arquivo_compactado.gz}}`
- Mostra o nome e o percentual de redução para cada arquivo comprimido ou descomprimido:
`gzip {{-v|--verbose}} {{-d|--decompress}} {{caminho/para/arquivo.gz}}`
`gzip {{[-v|--verbose]}} {{[-d|--decompress]}} {{caminho/para/arquivo.gz}}`

View file

@ -17,7 +17,7 @@
- Inicia todos os contêineres usando um arquivo de composição alternativo:
`podman-compose {{-f|--file}} {{caminho/para/arquivo}} up`
`podman-compose {{[-f|--file]}} {{caminho/para/arquivo}} up`
- Para todos os contêineres em execução:

View file

@ -9,15 +9,15 @@
- Искать по заданной подстроке (регулярные выражения отключены):
`grep {{-F|--fixed-strings}} "{{заданная_подстрока}}" {{путь/к/файлу}}`
`grep {{[-F|--fixed-strings]}} "{{заданная_подстрока}}" {{путь/к/файлу}}`
- Искать по шаблону во всех файлах в директории рекурсивно, показывая номера строк, там где подстрока была найдена, исключая бинарные(двоичные) файлы:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{шаблон_поиска}}" {{путь/к/директории}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{шаблон_поиска}}" {{путь/к/директории}}`
- Искать, используя расширенные регулярные выражения (поддержка `?`, `+`, `{}`, `()`, и `|`), без учета регистра:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{шаблон_поиска}}" {{путь/к/файлу}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{шаблон_поиска}}" {{путь/к/файлу}}`
- Вывести 3 строки содержимого, до или после каждого совпадения:
@ -25,12 +25,12 @@
- Вывести имя файла и номер строки для каждого совпадения:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{шаблон_поиска}}" {{путь/к/файлу}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{шаблон_поиска}}" {{путь/к/файлу}}`
- Искать строки, где есть совпадение по шаблону поиска, вывод только совпадающей части текста:
`grep {{-o|--only-matching}} "{{шаблон_поиска}}" {{путь/к/файлу}}`
`grep {{[-o|--only-matching]}} "{{шаблон_поиска}}" {{путь/к/файлу}}`
- Искать строки в стандартном потоке ввода которые не совпадают с шаблоном поиска:
`cat {{путь/к/файлу}} | grep {{-v|--invert-match}} "{{шаблон_поиска}}"`
`cat {{путь/к/файлу}} | grep {{[-v|--invert-match]}} "{{шаблон_поиска}}"`

View file

@ -5,19 +5,19 @@
- ஒரு செய்தியுடன் களஞ்சியத்திற்கு அரங்குக் கோப்புகளை கமிட் செய்யுங்கள்:
`git commit --message "{{செய்தி}}"`
`git commit {{[-m|--message]}} "{{செய்தி}}"`
- ஒரு கோப்பிலிருந்து படிக்கப்பட்ட செய்தியுடன் கட்டப்பட்ட கோப்புகளை கமிட்செய்யவும்:
`git commit --file {{கமிட்_செய்தி_கோப்பு/பாதை}}`
`git commit {{[-F|--file]}} {{கமிட்_செய்தி_கோப்பு/பாதை}}`
- அனைத்து மாற்றியமைக்கப்பட்ட கோப்புகளையும் தானாக நிலைநிறுத்து, செய்தியுடன் கமிட் செய்யுங்கள்:
`git commit --all --message "{{செய்தி}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{செய்தி}}"`
- ஸ்டேஜ் செய்யப்பட்ட கோப்புகளை உறுதிசெய்து, குறிப்பிட்ட GPG விசையுடன் கையொப்பமிடுங்கள் (அல்லது எந்த வாதமும் குறிப்பிடப்படவில்லை எனில் கட்டமைப்பு கோப்பில் வரையறுக்கப்பட்ட ஒன்று):
`git commit --gpg-sign {{key_id}} --message "{{செய்தி}}"`
`git commit {{[-S|--gpg-sign]}} {{key_id}} {{[-m|--message]}} "{{செய்தி}}"`
- தற்போது செய்யப்பட்ட மாற்றங்களைச் சேர்ப்பதன் மூலம் கடைசி கமிட்டைப் புதுப்பிக்கவும், கமிட் இன் ஹாஷை மாற்றவும்:
@ -29,4 +29,4 @@
- கட்டப்பட்ட கோப்புகள் இல்லாவிட்டாலும், கமிட்டை உருவாக்கவும்:
`git commit --message "{{செய்தி}}" --allow-empty`
`git commit {{[-m|--message]}} "{{செய்தி}}" --allow-empty`

View file

@ -9,15 +9,15 @@
- தேடுகுறித்தொடரல்லா உருச்சரத்திற்குத் தேடு:
`grep {{-F|--fixed-strings}} "{{உருச்சரம்}}" {{கோப்பு/பாதை}}`
`grep {{[-F|--fixed-strings]}} "{{உருச்சரம்}}" {{கோப்பு/பாதை}}`
- அடைவிலும் சேய் அடைவுகளிலுமுள்ள இருமக் கோப்பல்லா அனைத்துக் கோப்புகளையும் தேடு; பொருத்தங்களின் வரி எண்ணைக் காட்டு:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{தேடுதொடர்}}" {{அடைவிற்குப்/பாதை}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{தேடுதொடர்}}" {{அடைவிற்குப்/பாதை}}`
- எழுத்துயர்நிலை கருதாது விரிவுபட்ட தேடுகுறித்தொடர்களுடன் (`?`, `+`, `{}`, `|` ஆகியவற்றைப் பயன்படுத்தலாம்) தேடு:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
- ஒவ்வொருப் பொருத்தத்திற்கும் சூழ்ந்த, முந்தைய அல்லது பிந்தைய 3 வரிகளைக் காட்டு:
@ -25,12 +25,12 @@
- வண்ண வெளியீட்டில் ஒவ்வொரு பொருத்தத்திற்கும் கோப்பு பெயர் மற்றும் வரி எண்ணை அச்சிடவும்:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
- தேடுதொடருக்குத் தேடு, ஆனால் பொருந்திய பகுதிகளை மட்டும் காட்டு:
`grep {{-o|--only-matching}} "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
`grep {{[-o|--only-matching]}} "{{தேடுதொடர்}}" {{கோப்பு/பாதை}}`
- இயல் உள்ளீட்டில் தேடுதொடருக்குப் பொருந்தா வரிகளை மட்டும் காட்டு:
`cat {{கோப்பு/பாதை}} | grep {{-v|--invert-match}} "{{தேடுதொடர்}}"`
`cat {{கோப்பு/பாதை}} | grep {{[-v|--invert-match]}} "{{தேடுதொடர்}}"`

View file

@ -9,8 +9,8 @@
- Belirtilen dizinde yeni bir hata rapor dosyası oluştur:
`git bugreport {{-o|--output-directory}} {{örnek/dizin}}`
`git bugreport {{[-o|--output-directory]}} {{örnek/dizin}}`
- `strftime` formatında belirtilmiş bir dosya adı ekiyle yeni bir rapor dosyası oluştur:
`git bugreport {{-s|--suffix}} {{%m%d%y}}`
`git bugreport {{[-s|--suffix]}} {{%m%d%y}}`

View file

@ -5,11 +5,11 @@
- Sahnelenmiş dosyaları belirtilen mesaj ile commit'le:
`git commit -m {{mesaj}}`
`git commit {{[-m|--message]}} {{mesaj}}`
- Değişiklikleri otomatik olarak sahnele ve mesaj ile commit'le:
`git commit -a -m {{mesaj}}`
`git commit {{[-a|--all]}} {{[-m|--message]}} {{mesaj}}`
- Değerini değiştirecek şekilde son commit'i yeni sahnelenmiş değişiklikleri ekleyerek güncelle:

View file

@ -9,7 +9,7 @@
- Varsayılan uzak depodan değişiklikleri indir ve ileri sarmayı kullan:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Belirtilen uzak depodan ve daldan değişiklikleri indir, ve sonra onları HEAD ile birleştir:

View file

@ -10,11 +10,11 @@
- Yeni bir dal yarat ve ona geç:
`git switch --create {{dal_ismi}}`
`git switch {{[-c|--create]}} {{dal_ismi}}`
- Varolan commit üzerine yeni bir dal yarat ve ona geç:
`git switch --create {{dal_ismi}} {{commit}}`
`git switch {{[-c|--create]}} {{dal_ismi}} {{commit}}`
- Önceki dala geç:
@ -26,4 +26,4 @@
- Bir dala geç ve mevcut dal ile commit'lenmeyen değişiklikleri bu dal ile birleştir:
`git switch --merge {{dal_ismi}}`
`git switch {{[-m|--merge]}} {{dal_ismi}}`

View file

@ -9,15 +9,15 @@
- Tam bir dize ara (düzenli ifadeleri devre dışı bırakır):
`grep {{-F|--fixed-strings}} "{{tam_dize}}" {{dosya/yolu}}`
`grep {{[-F|--fixed-strings]}} "{{tam_dize}}" {{dosya/yolu}}`
- Bir dizindeki tüm dosyalarda bir kalıbı tekrarlı olarak ara, eşleşmelerin satır numaralarını göster, binary dosyaları göz ardı et:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{aranan_kalıp}}" {{dosya/yolu}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{aranan_kalıp}}" {{dosya/yolu}}`
- Büyük/küçük harfe duyarsız modda genişletilmiş düzenli ifadeleri (`?`, `+`, `{}`, `()`, ve `|` destekler) kullan:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{aranan_kalıp}}" {{dosya/yolu}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{aranan_kalıp}}" {{dosya/yolu}}`
- Her eşleşmenin etrafında, öncesinde veya sonrasında 3 satır içerik yazdır:
@ -25,12 +25,12 @@
- Renkli çıktı ile her eşleşme için dosya adını ve satır numarasını yazdır:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{aranan_kalıp}}" {{dosya/yolu}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{aranan_kalıp}}" {{dosya/yolu}}`
- Bir kalıpla eşleşen satırları ara, yalnızca eşleşen metni yazdır:
`grep {{-o|--only-matching}} "{{aranan_kalıp}}" {{dosya/yolu}}`
`grep {{[-o|--only-matching]}} "{{aranan_kalıp}}" {{dosya/yolu}}`
- Bir kalıpla eşleşmeyen satırlar için `stdin`'de arama yap:
`cat {{dosya/yolu}} | grep {{-v|--invert-match}} "{{aranan_kalıp}}"`
`cat {{dosya/yolu}} | grep {{[-v|--invert-match]}} "{{aranan_kalıp}}"`

View file

@ -5,15 +5,15 @@
- Комітить індексовані файли до репозиторію з повідомленням:
`git commit --message "{{повідомлення}}"`
`git commit {{[-m|--message]}} "{{повідомлення}}"`
- Комітить індексовані файли з повідомленням, що прочитано у файлі:
`git commit --file {{шлях/до/файлу_з_повідомленням}}`
`git commit {{[-F|--file]}} {{шлях/до/файлу_з_повідомленням}}`
- Автоматично індексує усі змінені файли і комітить їх з повідомленням:
`git commit --all --message "{{повідомлення}}"`
`git commit {{[-a|--all]}} {{[-m|--message]}} "{{повідомлення}}"`
- Оновлює останній коміт додаючи до нього щойно індексовані зміни, також змінює геш коміту:
@ -25,4 +25,4 @@
- Створює коміт, навіть якщо немає жодного індексованого файлу:
`git commit --message "{{повідомлення}}" --allow-empty`
`git commit {{[-m|--message]}} "{{повідомлення}}" --allow-empty`

View file

@ -9,7 +9,7 @@
- Завантажити зміни із типового віддаленого репозиторію та злити їх, використовуючи перемотання:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- Завантажити зміни із певної гілки вказаного віддаленого репозиторію, а потім злити їх у HEAD:

View file

@ -9,15 +9,15 @@
- Знайти точний рядок (відключає регулярні вирази):
`grep {{-F|--fixed-strings}} "{{точний_рядок}}" {{шлях/до/файлу}}`
`grep {{[-F|--fixed-strings]}} "{{точний_рядок}}" {{шлях/до/файлу}}`
- Знайти шаблон у всіх файлах рекурсивно в каталозі, виводячи номери рядків збігів, ігноруючи бінарні файли:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{шаблон_пошуку}}" {{шлях/до/каталогу}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{шаблон_пошуку}}" {{шлях/до/каталогу}}`
- Використовувати розширені регулярні вирази (підтримує `?`, `+`, `{}`, `()`, та `|`), у режимі без урахування регістру:
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
- Вивести 3 рядки контексту навколо, до, або після кожного збігу:
@ -25,12 +25,12 @@
- Вивести назву файлу та номер рядка для кожного збігу з кольоровим виводом:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
- Шукати рядкі, що відповідають шаблону, виводячи лише відповідний текст:
`grep {{-o|--only-matching}} "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
`grep {{[-o|--only-matching]}} "{{шаблон_пошуку}}" {{шлях/до/файлу}}`
- Знайти в `stdin` рядки, які не відповідають шаблону:
`cat {{шлях/до/файлу}} | grep {{-v|--invert-match}} "{{шаблон_пошуку}}"`
`cat {{шлях/до/файлу}} | grep {{[-v|--invert-match]}} "{{шаблон_пошуку}}"`

View file

@ -9,24 +9,24 @@
- Розпакувати файл, замінивши його оригінальною нестисненою версією:
`gzip {{-d|--decompress шлях/до/файлу.gz}}`
`gzip {{[-d|--decompress]}} {{шлях/до/файлу.gz}}`
- Архівувати файл, зберігаючи оригінальний файл:
`gzip {{-k|--keep шлях/до/файлу}}`
`gzip {{[-k|--keep]}} {{шлях/до/файлу}}`
- Архівувати файл із зазначенням імені вихідного файлу:
`gzip {{-c|--stdout шлях/до/файлу}} > {{шлях/до/архіву.gz}}`
`gzip {{[-c|--stdout]}} {{шлях/до/файлу}} > {{шлях/до/архіву.gz}}`
- Розпакувати архів `gzip` із зазначенням назви вихідного файлу:
`gzip {{-c|--stdout}} {{-d|--decompress}} {{шлях/до/файлу.gz}} > {{шлях/до/розпакованого_файлу}}`
`gzip {{[-c|--stdout]}} {{[-d|--decompress]}} {{шлях/до/файлу.gz}} > {{шлях/до/розпакованого_файлу}}`
- Встановити рівень стиснення. 1 — найшвидший (низьке стиснення), 9 — найповільніше (високе стиснення), 6 — за умовчанням:
`gzip -{{1..9}} {{-c|--stdout}} {{шлях/до/файлу}} > {{шлях/до/архіву.gz}}`
`gzip -{{1..9}} {{[-c|--stdout]}} {{шлях/до/файлу}} > {{шлях/до/архіву.gz}}`
- Вивести назву та відсоток зменшення для кожного стисненого або розпакованого файлу:
`gzip {{-v|--verbose}} {{-d|--decompress}} {{шлях/до/файлу.gz}}`
`gzip {{[-v|--verbose]}} {{[-d|--decompress]}} {{шлях/до/файлу.gz}}`

View file

@ -9,7 +9,7 @@
- 使用快进功能(快进到含义为:先清空暂存区,再执行合并,最后恢复暂存区),从默认的远程分支拉取代码并执行合并:
`git pull --rebase`
`git pull {{[-r|--rebase]}}`
- 从给定的分支中拉取代码,并执行合并到对应分支:

View file

@ -10,11 +10,11 @@
- 创建并切换到一个新分支:
`git switch --create {{分支名字}}`
`git switch {{[-c|--create]}} {{分支名字}}`
- 创建并切换到基于某个提交的新分支:
`git switch --create {{分支名字}} {{指定提交}}`
`git switch {{[-c|--create]}} {{分支名字}} {{指定提交}}`
- 切换到之前的分支:
@ -26,4 +26,4 @@
- 切换到一个分支,并和当前分支以及暂未提交的修改进行三方合并:
`git switch --merge {{分支名字}}`
`git switch {{[-m|--merge]}} {{分支名字}}`

View file

@ -9,15 +9,15 @@
- 在文件中精确地查找字符串(禁用正则表达式):
`grep {{-F|--fixed-strings}} "{{字符串}}" {{路径/到/文件}}`
`grep {{[-F|--fixed-strings]}} "{{字符串}}" {{路径/到/文件}}`
- 在指定目录下的所有文件中递归地查找模式,显示匹配的行号并忽略二进制文件:
`grep {{-r|--recursive}} {{-n|--line-number}} --binary-files {{without-match}} "{{模式字符串}}" {{路径/到/目录}}`
`grep {{[-r|--recursive]}} {{[-n|--line-number]}} --binary-files {{without-match}} "{{模式字符串}}" {{路径/到/目录}}`
- 使用大小写不敏感的扩展正则表达式(支持 `?``+``{}``()`, 和 `|`):
`grep {{-E|--extended-regexp}} {{-i|--ignore-case}} "{{模式字符串}}" {{路径/到/文件}}`
`grep {{[-E|--extended-regexp]}} {{[-i|--ignore-case]}} "{{模式字符串}}" {{路径/到/文件}}`
- 在每个匹配前后、之前或之后打印 3 行上下文:
@ -25,12 +25,12 @@
- 以带有颜色的方式,打印每个匹配的文件名和行号:
`grep {{-H|--with-filename}} {{-n|--line-number}} --color=always "{{模式字符串}}" {{路径/到/文件}}`
`grep {{[-H|--with-filename]}} {{[-n|--line-number]}} --color=always "{{模式字符串}}" {{路径/到/文件}}`
- 只打印文件中与模式匹配的行:
`grep {{-o|--only-matching}} "{{模式字符串}}" {{路径/到/文件}}`
`grep {{[-o|--only-matching]}} "{{模式字符串}}" {{路径/到/文件}}`
- 从 `stdin`(标准输入)中查找与模式不匹配的行:
`cat {{路径/到/文件}} | grep {{-v|--invert-match}} "{{模式字符串}}"`
`cat {{路径/到/文件}} | grep {{[-v|--invert-match]}} "{{模式字符串}}"`

View file

@ -9,24 +9,24 @@
- 解压缩文件,将其替换为原始未压缩版本:
`gzip {{-d|--decompress}} {{路径/到/文件.gz}}`
`gzip {{[-d|--decompress]}} {{路径/到/文件.gz}}`
- 压缩文件,保留原始文件:
`gzip {{-k|--keep}} {{路径/到/文件}}`
`gzip {{[-k|--keep]}} {{路径/到/文件}}`
- 压缩文件,指定输出文件名:
`gzip {{-c|--stdout}} {{路径/到/文件}} > {{路径/到/压缩文件.gz}}`
`gzip {{[-c|--stdout]}} {{路径/到/文件}} > {{路径/到/压缩文件.gz}}`
- 解压缩 `gzip` 存档,指定输出文件名:
`gzip {{-c|--stdout}} {{-d|--decompress}} {{路径/到/文件.gz}} > {{路径/到/解压缩的文件名}}`
`gzip {{[-c|--stdout]}} {{[-d|--decompress]}} {{路径/到/文件.gz}} > {{路径/到/解压缩的文件名}}`
- 指定压缩级别。 1 为最快(低压缩率),9 为最慢(高压缩率),默认值是 6:
`gzip -{{1..9}} {{-c|--stdout}} {{路径/到/文件}} > {{路径/到/压缩文件.gz}}`
`gzip -{{1..9}} {{[-c|--stdout]}} {{路径/到/文件}} > {{路径/到/压缩文件.gz}}`
- 显示压缩或解压后的每个文件的名称和压缩百分比:
`gzip {{-v|--verbose}} {{-d|--decompress}} {{路径/到/文件.gz}}`
`gzip {{[-v|--verbose]}} {{[-d|--decompress]}} {{路径/到/文件.gz}}`

View file

@ -9,8 +9,8 @@
- 更改收集信息的详细程度:
`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}}`
`zapier analytics {{[-m|--mode]}} {{enabled|anonymous|disabled}}`
- 显示额外的调试输出:
`zapier analytics {{-m|--mode}} {{enabled|anonymous|disabled}} {{-d|--debug}}`
`zapier analytics {{[-m|--mode]}} {{enabled|anonymous|disabled}} {{-d|--debug}}`

Some files were not shown because too many files have changed in this diff Show more