1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

*: fix style guide issues part 3 (#15786)

Co-authored-by: Darío Hereñú <magallania@gmail.com>
This commit is contained in:
Managor 2025-03-07 13:43:12 +02:00 committed by GitHub
parent 126db2b82d
commit 435cb8ce29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
64 changed files with 235 additions and 235 deletions

View file

@ -9,24 +9,24 @@
- Füge alle Dateien zum Index hinzu (nachverfolgte und nicht nachverfolgte):
`git add -A`
`git add {{[-A|--all]}}`
- Füge nur nachverfolgte Dateien zum Index hinzu (Updaten des Index):
`git add -u`
`git add {{[-u|--update]}}`
- Füge auch Dateien, welche ignoriert werden (`.gitignore`) hinzu:
`git add -f`
`git add {{[-f|--force]}}`
- Füge Teile von Dateien zum Index interaktiv hinzu:
`git add -p`
`git add {{[-p|--patch]}}`
- Füge Teile einer bestimmten Datei interaktiv hinzu:
`git add -p {{pfad/zu/datei}}`
`git add {{[-p|--patch]}} {{pfad/zu/datei}}`
- Füge Dateien zum Index interaktiv hinzu:
`git add -i`
`git add {{[-i|--interactive]}}`

View file

@ -5,24 +5,24 @@
- Erstelle ein tar-Archiv aus dem Inhalt des aktuellen HEAD und gib dieses aus:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Erstelle ein zip-Archiv aus dem Inhalt des aktuellen HEAD und gib dieses aus:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Erstelle ein zip-Archiv aus dem Inhalt des aktuellen HEAD und speichere dieses in eine Datei:
`git archive {{-v|--verbose}} {{-o|--output}} {{pfad/zu/datei.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{pfad/zu/datei.zip}} HEAD`
- Erstelle ein tar-Archiv aus dem Inhalt des letzten Commits eines bestimmten Branches:
`git archive {{-o|--output}} {{pfad/zu/datei.tar}} {{branch_name}}`
`git archive {{[-o|--output]}} {{pfad/zu/datei.tar}} {{branch_name}}`
- Erstelle ein tar-Archiv aus dem Inhalt eines bestimmten Verzeichnisses:
`git archive {{-o|--output}} {{pfad/zu/datei.tar}} HEAD:{{pfad/zu/verzeichnis}}`
`git archive {{[-o|--output]}} {{pfad/zu/datei.tar}} HEAD:{{pfad/zu/verzeichnis}}`
- Stelle jeder Datei einen Pfad voran, um sie in einem bestimmten Verzeichnis zu archivieren:
`git archive {{-o|--output}} {{pfad/zu/datei.tar}} --prefix {{pfad/zu/verzeichnis}}/ HEAD`
`git archive {{[-o|--output]}} {{pfad/zu/datei.tar}} --prefix {{pfad/zu/verzeichnis}}/ HEAD`

View file

@ -9,4 +9,4 @@
- Gib die Commit-Hashes und dem Autor (inklusive E-Mail) jeder Zeile einer Datei aus:
`git blame {{-e|--show-email}} {{pfad/zu/datei}}`
`git blame {{[-e|--show-email]}} {{pfad/zu/datei}}`

View file

@ -13,16 +13,16 @@
- Überschreibe bereits existierende Dateien ohne vorherige Bestätigung:
`mv -f {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
`mv {{[-f|--force]}} {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
- Überschreibe bereits existierende Dateien nach Bestätigung (unabhängig von Dateirechten):
`mv -i {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
`mv {{[-i|--interactive]}} {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
- Verhindere das Überschreiben existierender Dateien am Zielort:
`mv -n {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
`mv {{[-n|--no-clobber]}} {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
- Liste Dateien und deren Details auf während sie verschoben werden:
`mv -v {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`
`mv {{[-v|--verbose]}} {{pfad/zu/datei}} {{pfad/zu/zieldatei}}`

View file

@ -14,4 +14,4 @@
- Muestra una página de ayuda muy detallada:
`cjxl --help --verbose --verbose --verbose --verbose`
`cjxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -10,4 +10,4 @@
- Muestra una página de ayuda muy detallada:
`djxl --help --verbose --verbose --verbose --verbose`
`djxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -9,7 +9,7 @@
- Añade todos los archivos (rastreados o no):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Añade todos los archivos en el directorio actual:
@ -17,20 +17,20 @@
- Añade únicamente los archivos ya rastreados:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Añade también los archivos ignorados:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Añade interactivamente partes de archivos al área de preparación (staging):
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Añade interactivamente partes de un archivo dado al área de preparación (staging):
`git add {{-p|--patch}} {{ruta/al/archivo}}`
`git add {{[-p|--patch]}} {{ruta/al/archivo}}`
- Añade un archivo interactivamente al área de preparación (staging):
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -9,7 +9,7 @@
- Muestra el archivo con correo electrónico del autor y hash de la confirmación en cada línea:
`git blame {{-e|--show-email}} {{archivo}}`
`git blame {{[-e|--show-email]}} {{archivo}}`
- Muestra quien y que modificó de un archivo, a partir de una confirmación específica:

View file

@ -15,22 +15,22 @@
`mv {{ruta/a/origen1 ruta/a/origen2 ...}} {{ruta/a/directorio_existente}}`
- No pedir confirmación ([f]) antes de sobrescribir los archivos existentes:
- No pedir confirmación antes de sobrescribir los archivos existentes:
`mv --force {{ruta/a/origen}} {{ruta/a/destino}}`
`mv {{[-f|--force]}} {{ruta/a/origen}} {{ruta/a/destino}}`
- Pedir confirmación [i]nteractivamente antes de sobrescribir archivos existentes, independientemente de los permisos de los archivos:
- Pedir confirmación interactivamente antes de sobrescribir archivos existentes, independientemente de los permisos de los archivos:
`mv --interactive {{ruta/a/origen}} {{ruta/a/destino}}`
`mv {{[-i|--interactive]}} {{ruta/a/origen}} {{ruta/a/destino}}`
- No sobrescribir ([n]) los archivos existentes en el destino:
- No sobrescribir los archivos existentes en el destino:
`mv --no-clobber {{ruta/a/origen}} {{ruta/a/destino}}`
`mv {{[-n|--no-clobber]}} {{ruta/a/origen}} {{ruta/a/destino}}`
- Mueve archivos en modo [v]erbose, mostrando los archivos después de moverlos:
- Mueve archivos en modo verboso, mostrando los archivos después de moverlos:
`mv --verbose {{ruta/a/origen}} {{ruta/a/destino}}`
`mv {{[-v|--verbose]}} {{ruta/a/origen}} {{ruta/a/destino}}`
- Especifica el directorio de des[t]ino para poder utilizar herramientas externas para recopilar archivos movibles:
- Especifica el directorio de destino para poder utilizar herramientas externas para recopilar archivos movibles:
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{ruta/a/directorio_destino}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv {{[-t|--target-directory]}} {{ruta/a/directorio_destino}}`

View file

@ -13,8 +13,8 @@
- Obtiene el estado actual del usuario:
`passwd {{-S|--status}}`
`passwd {{[-S|--status]}}`
- Hace que la contraseña de la cuenta esté en blanco (hará que la cuenta nombrada no tenga contraseña):
`passwd {{-d|--delete}}`
`passwd {{[-d|--delete]}}`

View file

@ -13,7 +13,7 @@
- Muestra ayuda en las opciones de la línea de comandos:
`plasmashell --help`
`plasmashell {{[-h|--help]}}`
- Muestra la ayuda, incluidas las opciones de Qt:

View file

@ -9,24 +9,24 @@
- Ajouter tous les fichiers (suivis et non-suivis) :
`git add -A`
`git add {{[-A|--all]}}`
- Ajoute les modifications des fichiers déjà suivis :
`git add -u`
`git add {{[-u|--update]}}`
- Ajoute aussi les fichiers ignorés :
`git add -f`
`git add {{[-f|--force]}}`
- Ajoute des parties de fichiers interactivement :
`git add -p`
`git add {{[-p|--patch]}}`
- Ajoute interactivement les parties d'un fichier spécifié :
`git add -p {{chemin/vers/fichier}}`
`git add {{[-p|--patch]}} {{chemin/vers/fichier}}`
- Ajouter un fichier interactivement :
`git add -i`
`git add {{[-i|--interactive]}}`

View file

@ -5,24 +5,24 @@
- Crée une archive `.tar` avec le contenu de la HEAD et l'affiche sur la sortie standard :
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Crée une archive Zip avec le contenu de la HEAD et l'affiche sur la sortie standard :
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Pareil que ci-dessus mais écrit dans l'archive spécifiée :
`git archive {{-v|--verbose}} {{-o|--output}} {{chemin/vers/fichier.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{chemin/vers/fichier.zip}} HEAD`
- Crée une archive depuis le dernier commit de la branche spécifiée :
`git archive {{-o|--output}} {{chemin/vers/fichier.tar}} {{nom_de_branche}}`
`git archive {{[-o|--output]}} {{chemin/vers/fichier.tar}} {{nom_de_branche}}`
- Crée une archive avec le contenu d'un répertoire donné :
`git archive {{-o|--output}} {{chemin/vers/fichier.tar}} HEAD:{{chemin/vers/repertoire}}`
`git archive {{[-o|--output]}} {{chemin/vers/fichier.tar}} HEAD:{{chemin/vers/repertoire}}`
- Ajoutez un chemin d'accès à chaque fichier pour l'archiver dans un répertoire spécifique :
`git archive {{-o|--output}} {{chemin/vers/fichier.tar}} --prefix {{chemin/vers/cible}}/ HEAD`
`git archive {{[-o|--output]}} {{chemin/vers/fichier.tar}} --prefix {{chemin/vers/cible}}/ HEAD`

View file

@ -9,4 +9,4 @@
- Affiche le hash de commit le nom et l email de l auteur en face de chaque ligne :
`git blame {{-e|--show-email}} {{file}}`
`git blame {{[-e|--show-email]}} {{file}}`

View file

@ -13,8 +13,8 @@
- Affiche l'état actuel du compte utilisateur :
`passwd {{-S|--status}}`
`passwd {{[-S|--status]}}`
- Supprime le mot de passe de l'utilisateur (supprime l'authentification par mot de passe pour l'utilisateur indiqué) :
`passwd {{-d|--delete}}`
`passwd {{[-d|--delete]}}`

View file

@ -13,16 +13,16 @@
- मौजूदा फाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत न दें:
`mv -f {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
`mv {{[-f|--force]}} {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
- फ़ाइल अनुमतियों की परवाह किए बिना, मौजूदा फ़ाइलों को अधिलेखित करने से पहले पुष्टि के लिए संकेत दें:
`mv -i {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
`mv {{[-i|--interactive]}} {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
- लक्ष्य पर मौजूदा फाइलों को अधिलेखित न करें:
`mv -n {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
`mv {{[-n|--no-clobber]}} {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
- फ़ाइलों को वर्बोज़ मोड में ले जाएँ, फ़ाइलों को स्थानांतरित करने के बाद दिखाएँ:
`mv -v {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`
`mv {{[-v|--verbose]}} {{स्रोत/का/पथ}} {{लक्ष्य/का/पथ}}`

View file

@ -9,7 +9,7 @@
- Tambahkan seluruh berkas (baik yang terlacak maupun tidak terlacak):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Tambahkan seluruh berkas pada folder saat ini:
@ -17,20 +17,20 @@
- Hanya tambahkan berkas yang sudah terlacak:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Tambahkan juga berkas yang diabaikan:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Tambahkan berkas ke status stage secara interaktif:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Tambahkan berkas tertentu ke status stage secara interaktif:
`git add {{-p|--patch}} {{jalan/menuju/berkas}}`
`git add {{[-p|--patch]}} {{jalan/menuju/berkas}}`
- Stage berkas secara interaktif:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -11,7 +11,7 @@
- Tampilkan file dengan informasi komit menggunakan alamat surel/email daripada nama pelaku:
`git annotate {{-e|--show-email}} {{jalan/menuju/file}}`
`git annotate {{[-e|--show-email]}} {{jalan/menuju/file}}`
- Tampilkan hanya baris-baris teks yang memenuhi kriteria ekspresi reguler:

View file

@ -5,24 +5,24 @@
- Buat sebuah arsip tar berisikan isi dari tree HEAD saat ini, kemudian tampilkan isi file arsip mentah menuju `stdout`:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Buat sebuah arsip zip dari tree HEAD saat ini, kemudian tampilkan isi file arsip mentah menuju `stdout`:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Lakukan hal yang sama, namun simpan arsip zip ke dalam suatu direktori:
`git archive {{-v|--verbose}} {{-o|--output}} {{jalan/menuju/file.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{jalan/menuju/file.zip}} HEAD`
- Buat arsip tar dari komit terakhir pada cabang tertentu:
`git archive {{-o|--output}} {{jalan/menuju/file.tar}} {{nama_cabang}}`
`git archive {{[-o|--output]}} {{jalan/menuju/file.tar}} {{nama_cabang}}`
- Buat arsip tar berdasaran subdirektori tertentu pada suatu repositori Git:
`git archive {{-o|--output}} {{jalan/menuju/file.tar}} HEAD:{{jalan/menuju/direktori}}`
`git archive {{[-o|--output]}} {{jalan/menuju/file.tar}} HEAD:{{jalan/menuju/direktori}}`
- Bubuhkan nama jalur pada awal nama setiap file, untuk diarsipkan di dalam direktori tertentu:
`git archive {{-o|--output}} {{jalan/menuju/file.tar}} --prefix {{jalan/untuk/dibubuhkan}}/ HEAD`
`git archive {{[-o|--output]}} {{jalan/menuju/file.tar}} --prefix {{jalan/untuk/dibubuhkan}}/ HEAD`

View file

@ -9,7 +9,7 @@
- Tampilkan berkas dengan informasi komit menggunakan alamat surel/email daripada nama pelaku:
`git blame {{-e|--show-email}} {{jalan/menuju/berkas}}`
`git blame {{[-e|--show-email]}} {{jalan/menuju/berkas}}`
- Tampilkan informasi nama pelaku dan kode hash komit terakhir pada berkas yang disimpan dalam komit tertentu:

View file

@ -17,20 +17,20 @@
- Pindahkan tanpa meminta konfirmasi sebelum menimpa file yang sudah ada:
`mv --force {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
`mv {{[-f|--force]}} {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
- Minta konfirmasi sebelum menimpa berkas yang sudah ada, tanpa memerhatikan hak akses hedua file tersebut:
`mv --interactive {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
`mv {{[-i|--interactive]}} {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
- Jangan menimpa file yang sudah ada di direktori tujuan:
`mv --no-clobber {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
`mv {{[-n|--no-clobber]}} {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
- Pindahkan berkas dalam mode [v]erbose, tampilkan berkas-berkas yang dipindahkan:
- Pindahkan berkas dalam mode verbose, tampilkan berkas-berkas yang dipindahkan:
`mv --verbose {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
`mv {{[-v|--verbose]}} {{jalan/menuju/sumber}} {{jalan/menuju/tujuan}}`
- Tetapkan direktori tujuan ([t]arget) agar Anda dapat menggunakan alat atau perintah eksternal untuk mengelola kumpulan berkas yang dapat dipindahkan:
- Tetapkan direktori tujuan target agar Anda dapat menggunakan alat atau perintah eksternal untuk mengelola kumpulan berkas yang dapat dipindahkan:
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{jalan/menuju/direktori_tujuan}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv {{[-t|--target-directory]}} {{jalan/menuju/direktori_tujuan}}`

View file

@ -9,16 +9,16 @@
- Aggiungi tutti i file (tracciati e non tracciati):
`git add -A`
`git add {{[-A|--all]}}`
- Aggiungi solo i file già tracciati:
`git add -u`
`git add {{[-u|--update]}}`
- Aggiungi anche i file ignorati:
`git add -f`
`git add {{[-f|--force]}}`
- Aggiungi parti di un file in modo interattivo:
`git add -p {{percorso/del/file}}`
`git add {{[-p|--patch]}} {{percorso/del/file}}`

View file

@ -5,24 +5,24 @@
- Crea un archivio tar del contenuto in HEAD e stampa il risultato su standard output:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Crea un archivio zip del contenuto in HEAD e stampa il risultato su standard output:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Come sopra, ma scrivi l'archivio zip su file:
`git archive {{-v|--verbose}} {{-o|--output}} {{percorso/del/file.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{percorso/del/file.zip}} HEAD`
- Crea un archivio tar dell'ultimo commit sul ramo specificato:
`git archive {{-o|--output}} {{percorso/del/file.tar}} {{nome_ramo}}`
`git archive {{[-o|--output]}} {{percorso/del/file.tar}} {{nome_ramo}}`
- Crea un archivio tar del contenuto di una specifica directory:
`git archive {{-o|--output}} {{percorso/del/file.tar}} HEAD:{{percorso/della/directory}}`
`git archive {{[-o|--output]}} {{percorso/del/file.tar}} HEAD:{{percorso/della/directory}}`
- Anteponi un percorso ad ogni file cosí da archiviarlo in una directory specifica:
`git archive {{-o|--output}} {{percorso/del/file.tar}} --prefix {{percorso/da/anteporre}}/ HEAD`
`git archive {{[-o|--output]}} {{percorso/del/file.tar}} --prefix {{percorso/da/anteporre}}/ HEAD`

View file

@ -9,4 +9,4 @@
- Stampa il contenuto di un file annotando ogni riga con l'hash del commit e l'indirizzo email dell'autore:
`git blame {{-e|--show-email}} {{file}}`
`git blame {{[-e|--show-email]}} {{file}}`

View file

@ -17,16 +17,16 @@
- Non richiedere conferma prima di sovrascrivere i file esistenti:
`mv -f {{percorso/di/origine}} {{percorso/di/destinazione}}`
`mv {{[-f|--force]}} {{percorso/di/origine}} {{percorso/di/destinazione}}`
- Richiedi conferma prima di sovrascrivere i file esistenti, indipendentemente dalle autorizzazioni dei file:
`mv -i {{percorso/di/origine}} {{percorso/di/destinazione}}`
`mv {{[-i|--interactive]}} {{percorso/di/origine}} {{percorso/di/destinazione}}`
- Non sovrascrivere i file esistenti nella destinazione:
`mv -n {{percorso/di/origine}} {{percorso/di/destinazione}}`
`mv {{[-n|--no-clobber]}} {{percorso/di/origine}} {{percorso/di/destinazione}}`
- Sposta i file in modalità dettagliata, mostrando i file dopo che sono stati spostati:
`mv -v {{percorso/di/origine}} {{percorso/di/destinazione}}`
`mv {{[-v|--verbose]}} {{percorso/di/origine}} {{percorso/di/destinazione}}`

View file

@ -14,4 +14,4 @@
- 매우 상세한 도움말 페이지를 표시:
`cjxl --help --verbose --verbose --verbose --verbose`
`cjxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -10,4 +10,4 @@
- 매우 상세한 도움말 페이지를 표시:
`djxl --help --verbose --verbose --verbose --verbose`
`djxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -9,7 +9,7 @@
- 모든 파일 추가 (추적된 파일 및 추적되지 않은 파일):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- 현재 폴더의 모든 파일 추가:
@ -17,20 +17,20 @@
- 이미 추적된 파일만 추가:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- 무시된 파일도 추가:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- 파일의 일부를 대화식으로 스테이징:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- 지정된 파일의 일부를 대화식으로 스테이징:
`git add {{-p|--patch}} {{경로/대상/파일}}`
`git add {{[-p|--patch]}} {{경로/대상/파일}}`
- 파일을 대화식으로 스테이징:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -11,7 +11,7 @@
- 각 줄에 작성자 이메일과 커밋 해시를 추가하여 파일 출력:
`git annotate {{-e|--show-email}} {{경로/대상/파일}}`
`git annotate {{[-e|--show-email]}} {{경로/대상/파일}}`
- 정규 표현식과 일치하는 줄만 출력:

View file

@ -5,24 +5,24 @@
- 현재 HEAD의 내용을 tar 아카이브로 생성하고 `stdout`에 출력:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Zip 형식을 사용하고 진행 상황을 자세히 보고:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Zip 아카이브를 특정 파일로 출력:
`git archive {{-v|--verbose}} {{-o|--output}} {{경로/대상/파일.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{경로/대상/파일.zip}} HEAD`
- 특정 브랜치의 최신 커밋 내용을 tar 아카이브로 생성:
`git archive {{-o|--output}} {{경로/대상/파일.tar}} {{branch_name}}`
`git archive {{[-o|--output]}} {{경로/대상/파일.tar}} {{branch_name}}`
- 특정 디렉토리의 내용을 사용:
`git archive {{-o|--output}} {{경로/대상/파일.tar}} HEAD:{{경로/대상/폴더}}`
`git archive {{[-o|--output]}} {{경로/대상/파일.tar}} HEAD:{{경로/대상/폴더}}`
- 각 파일에 경로를 추가하여 특정 디렉토리에 아카이브:
`git archive {{-o|--output}} {{경로/대상/파일.tar}} --prefix {{경로/대상/폴더}}/ HEAD`
`git archive {{[-o|--output]}} {{경로/대상/파일.tar}} --prefix {{경로/대상/폴더}}/ HEAD`

View file

@ -9,7 +9,7 @@
- 각 줄에 작성자 이메일과 커밋 해시를 표시하여 파일 출력:
`git blame {{-e|--show-email}} {{경로/대상/파일}}`
`git blame {{[-e|--show-email]}} {{경로/대상/파일}}`
- 특정 커밋에서 각 줄에 작성자 이름과 커밋 해시를 표시하여 파일 출력:

View file

@ -15,22 +15,22 @@
`mv {{경로/대상/원본1 경로/대상/원본2 ...}} {{경로/대상/기존_폴더}}`
- 기존 파일을 덮어쓸 때 확인하지 않고 ([f]) 이동:
- 기존 파일을 덮어쓸 때 확인하지 않고 이동:
`mv --force {{경로/대상/소스}} {{경로/대상/타겟}}`
`mv {{[-f|--force]}} {{경로/대상/소스}} {{경로/대상/타겟}}`
- 파일 권한과 관계없이 기존 파일을 덮어쓸 때 [i]대화형 확인 요청:
`mv --interactive {{경로/대상/소스}} {{경로/대상/타겟}}`
`mv {{[-i|--interactive]}} {{경로/대상/소스}} {{경로/대상/타겟}}`
- 대상에서 기존 파일을 덮어쓰지 않음 ([n]):
`mv --no-clobber {{경로/대상/소스}} {{경로/대상/타겟}}`
`mv {{[-n|--no-clobber]}} {{경로/대상/소스}} {{경로/대상/타겟}}`
- 파일 이동 후 [v]자세한 모드로 파일 보기:
- 파일 이동 후 자세한 모드로 파일 보기:
`mv --verbose {{경로/대상/소스}} {{경로/대상/타겟}}`
`mv {{[-v|--verbose]}} {{경로/대상/소스}} {{경로/대상/타겟}}`
- 외부 도구를 사용하여 이동 가능한 파일을 수집하기 위해 [t]타겟 디렉터리 지정:
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{경로/대상/타겟_디렉터리}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv {{[-t|--target-directory]}} {{경로/대상/타겟_디렉터리}}`

View file

@ -13,8 +13,8 @@
- 사용자의 현재 상태 확인:
`passwd {{-S|--status}}`
`passwd {{[-S|--status]}}`
- 계정의 비밀번호를 비워서 비밀번호 없이 설정:
`passwd {{-d|--delete}}`
`passwd {{[-d|--delete]}}`

View file

@ -21,7 +21,7 @@
- 특정 의존성에서 컴파일 재개:
`kdesrc-build --resume-from={{의존성_구성_요소}} {{구성_요소_이름}}`
`kdesrc-build --resume-from {{의존성_구성_요소}} {{구성_요소_이름}}`
- 지정된 실행 파일 이름으로 구성 요소 실행:

View file

@ -11,9 +11,9 @@
`plasmashell --replace & disown`
- 명령줄 옵션에 대한 [h]도움말 표시:
- 명령줄 옵션에 대한 도움말 표시:
`plasmashell --help`
`plasmashell {{[-h|--help]}}`
- Qt 옵션을 포함한 도움말 표시:

View file

@ -9,7 +9,7 @@
- Voeg alle bestanden toe (bijgehouden en niet bijgehouden):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Voeg alle bestanden toe in de huidige map:
@ -17,20 +17,20 @@
- Voeg alleen al bijgehouden bestanden toe:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Voeg ook genegeerde bestanden toe:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Interactief delen van bestanden toevoegen:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Interactief delen van een opgegeven bestand toevoegen:
`git add {{-p|--patch}} {{pad/naar/bestand}}`
`git add {{[-p|--patch]}} {{pad/naar/bestand}}`
- Interactief een bestand toevoegen:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -15,22 +15,22 @@
`mv {{pad/naar/bron1 pad/naar/bron2 ...}} {{pad/naar/bestaande_map}}`
- Vraag niet om bevestiging ([f]) voordat bestaande bestanden worden overschreven:
- Vraag niet om bevestiging voordat bestaande bestanden worden overschreven:
`mv --force {{pad/naar/bron}} {{pad/naar/doel}}`
`mv {{[-f|--force]}} {{pad/naar/bron}} {{pad/naar/doel}}`
- Vraag om bevestiging [i]nteractief voordat bestaande bestanden worden overschreven, ongeacht de bestandsrechten:
- Vraag om bevestiging interactief voordat bestaande bestanden worden overschreven, ongeacht de bestandsrechten:
`mv --interactive {{pad/naar/bron}} {{pad/naar/doel}}`
`mv {{[-i|--interactive]}} {{pad/naar/bron}} {{pad/naar/doel}}`
- Overschrijf ([n]) geen bestaande bestanden op de doelbestemming:
- Overschrijf geen bestaande bestanden op de doelbestemming:
`mv --no-clobber {{pad/naar/bron}} {{pad/naar/doel}}`
`mv {{[-n|--no-clobber]}} {{pad/naar/bron}} {{pad/naar/doel}}`
- Verplaats bestanden in [v]erbose-modus, waarbij de bestanden worden getoond nadat ze zijn verplaatst:
- Verplaats bestanden in verbose-modus, waarbij de bestanden worden getoond nadat ze zijn verplaatst:
`mv --verbose {{pad/naar/bron}} {{pad/naar/doel}}`
`mv {{[-v|--verbose]}} {{pad/naar/bron}} {{pad/naar/doel}}`
- Specificeer de doelmap ([t]) (handig in situaties waarin de doelmap het eerste argument moet zijn):
- Specificeer de doelmap (handig in situaties waarin de doelmap het eerste argument moet zijn):
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{pad/naar/doel_map}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv {{[-t|--target-directory]}} {{pad/naar/doel_map}}`

View file

@ -9,7 +9,7 @@
- Dodaj wszystkie pliki (śledzone i nieśledzone):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Dodaj wszystkie pliki w bieżącym katalogu:
@ -17,20 +17,20 @@
- Dodaj tylko już śledzone pliki:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Dodaj również ignorowane pliki:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Dodawaj części plików interaktywnie:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Dodawaj części określonego pliku interaktywnie:
`git add {{-p|--patch}} {{ścieżka/do/pliku}}`
`git add {{[-p|--patch]}} {{ścieżka/do/pliku}}`
- Dodaj plik interaktywnie:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -9,7 +9,7 @@
- Adiciona todos arquivos (rastreados ou não):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Adiciona todos arquivos na pasta atual:
@ -17,20 +17,20 @@
- Adiciona apenas arquivos rastreados:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Adiciona arquivos ignorados:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Interativamente adiciona partes dos arquivo:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Interativamente adiciona partes de um dado arquivo:
`git add {{-p|--patch}} {{caminho/para/arquivo}}`
`git add {{[-p|--patch]}} {{caminho/para/arquivo}}`
- Interativamente adiciona arquivos ou partes modificadas:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -13,16 +13,16 @@
- Não requisita confirmação para sobrescrição de arquivos:
`mv -f {{percorso/del/arquivo}} {{percorso/del/destino}}`
`mv {{[-f|--force]}} {{percorso/del/arquivo}} {{percorso/del/destino}}`
- Requisita confirmação para sobrescrição de arquivos, independentemente das permissões de arquivo:
`mv -i {{percorso/del/arquivo}} {{percorso/del/destino}}`
`mv {{[-i|--interactive]}} {{percorso/del/arquivo}} {{percorso/del/destino}}`
- Não sobrescrita arquivos existentes no diretório de destino:
`mv -n {{percorso/del/arquivo}} {{percorso/del/destino}}`
`mv {{[-n|--no-clobber]}} {{percorso/del/arquivo}} {{percorso/del/destino}}`
- Move os arquivos em modo Verbose, mostrando os arquivos após sua movimentação:
`mv -v {{percorso/del/arquivo}} {{percorso/del/destino}}`
`mv {{[-v|--verbose]}} {{percorso/del/arquivo}} {{percorso/del/destino}}`

View file

@ -13,8 +13,8 @@
- Obtém o status atual do usuário:
`passwd {{-S|--status}}`
`passwd {{[-S|--status]}}`
- Deixa a senha da conta em branco (isso definirá a conta nomeada como sem senha):
`passwd {{-d|--delete}}`
`passwd {{[-d|--delete]}}`

View file

@ -9,24 +9,24 @@
- எல்லா கோப்புகளையும் சேர்க்கவும் (கண்காணிக்கப்பட்ட மற்றும் தடமறியப்படாத):
`git add -A`
`git add {{[-A|--all]}}`
- ஏற்கனவே கண்காணிக்கப்பட்ட கோப்புகளை மட்டுமே சேர்க்கவும்:
`git add -u`
`git add {{[-u|--update]}}`
- புறக்கணிக்கப்பட்ட கோப்புகளையும் சேர்க்கவும்:
`git add -f`
`git add {{[-f|--force]}}`
- ஊடாடும் வகையில் சில கோப்புகளை சேர்க்கவும்:
`git add -p`
`git add {{[-p|--patch]}}`
- கொடுக்கப்பட்ட கோப்பின் ஊடாடும் கட்ட பாகங்கள் சேர்க்கவும்:
`git add -p {{கோப்பு/பாதை}}`
`git add {{[-p|--patch]}} {{கோப்பு/பாதை}}`
- ஒரு கோப்பை ஊடாடும் வகையில் சேர்க்கவும்:
`git add -i`
`git add {{[-i|--interactive]}}`

View file

@ -5,24 +5,24 @@
- தற்போதைய HEAD இன் உள்ளடக்கங்களிலிருந்து ஒரு தார் காப்பகத்தை உருவாக்கி அதை நிலையான வெளியீட்டில் அச்சிடுக:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- தற்போதைய HEAD இலிருந்து ஒரு ஜிப் காப்பகத்தை உருவாக்கி அதை நிலையான வெளியீட்டில் அச்சிடுக:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- மேலே உள்ளதைப் போலவே, ஆனால் கோப்புக்கு ஜிப் காப்பகத்தை எழுதவும்:
`git archive {{-v|--verbose}} {{-o|--output}} {{கோப்பு.zip/பாதை}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{கோப்பு.zip/பாதை}} HEAD`
- ஒரு குறிப்பிட்ட கிளையில் சமீபத்திய உறுதிப்பாட்டின் உள்ளடக்கங்களிலிருந்து தார் காப்பகத்தை உருவாக்கவும்:
`git archive {{-o|--output}} {{கோப்பு.tar/பாதை}} {{கிளை_பெயர்}}`
`git archive {{[-o|--output]}} {{கோப்பு.tar/பாதை}} {{கிளை_பெயர்}}`
- ஒரு குறிப்பிட்ட கோப்பகத்தின் உள்ளடக்கங்களிலிருந்து தார் காப்பகத்தை உருவாக்கவும்:
`git archive {{-o|--output}} {{கோப்பு.tar/பாதை}} HEAD:{{அடைவிற்குப்/பாதை}}`
`git archive {{[-o|--output]}} {{கோப்பு.tar/பாதை}} HEAD:{{அடைவிற்குப்/பாதை}}`
- ஒவ்வொரு கோப்பிற்கும் ஒரு குறிப்பிட்ட கோப்பகத்திற்குள் காப்பகப்படுத்த ஒரு பாதையைத் தயாரிக்கவும்:
`git archive {{-o|--output}} {{கோப்பு.tar/பாதை}} --prefix {{தயார்படுத்தும்/பாதை}}/ HEAD`
`git archive {{[-o|--output]}} {{கோப்பு.tar/பாதை}} --prefix {{தயார்படுத்தும்/பாதை}}/ HEAD`

View file

@ -9,7 +9,7 @@
- ஆசிரியர் மின்னஞ்சலுடன் கோப்பை அச்சிட்டு ஒவ்வொரு வரியிலும் ஹாஷ் செய்யுங்கள்:
`git blame {{-e|--show-email}} {{கோப்பு/பாதை}}`
`git blame {{[-e|--show-email]}} {{கோப்பு/பாதை}}`
- ஆசிரியர் பெயருடன் கோப்பை அச்சிடவும் மற்றும் ஒவ்வொரு வரியிலும் ஒரு குறிப்பிட்ட கமிட்டில் ஹாஷ் கமிட் செய்யவும்:

View file

@ -17,16 +17,16 @@
- ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் உறுதிப்படுத்தாதே:
`mv -f {{மூலம்/பாதை}} {{குறி/பாதை}}`
`mv {{[-f|--force]}} {{மூலம்/பாதை}} {{குறி/பாதை}}`
- ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதும் முன் கோப்பு அனுமதிகளைப் பொருட்படுத்தாது உறுதிப்படுத்து:
`mv -i {{மூலம்/பாதை}} {{குறி/பாதை}}`
`mv {{[-i|--interactive]}} {{மூலம்/பாதை}} {{குறி/பாதை}}`
- ஏற்கனவே இருக்கும் கோப்புகள் மேலெழுதாதே:
`mv -n {{மூலம்/பாதை}} {{குறி/பாதை}}`
`mv {{[-n|--no-clobber]}} {{மூலம்/பாதை}} {{குறி/பாதை}}`
- கோப்புகளை verbose நிலையில் நகர்த்து, நகர்த்தப்படும் கோப்புகள் பட்டியலிடப்படும்:
`mv -v {{மூலம்/பாதை}} {{குறி/பாதை}}`
`mv {{[-v|--verbose]}} {{மூலம்/பாதை}} {{குறி/பாதை}}`

View file

@ -9,24 +9,24 @@
- Tüm (izlenen veya izlenmeyen) dosyaları ekle:
`git add -A`
`git add {{[-A|--all]}}`
- Yalnızca izlenen dosyaları ekle:
`git add -u`
`git add {{[-u|--update]}}`
- Yoksayılan dosyaları dahi ekle:
`git add -f`
`git add {{[-f|--force]}}`
- Dosyaların parçalarını etkileşimli olarak sahnele:
`git add -p`
`git add {{[-p|--patch]}}`
- Belirtilen dosyaların parçalarını etkileşimli olarak sahnele:
`git add -p {{örnek/dosya}}`
`git add {{[-p|--patch]}} {{örnek/dosya}}`
- Bir dosyayı etkileşimli olarak sahnele:
`git add -i`
`git add {{[-i|--interactive]}}`

View file

@ -11,4 +11,4 @@
- Bir dosyayı, her satırında son commit değeri ve yazarının e-postası bulunacak şekilde göster:
`git annotate {{-e|--show-email}} {{örnek/dosya}}`
`git annotate {{[-e|--show-email]}} {{örnek/dosya}}`

View file

@ -5,24 +5,24 @@
- Mevcut HEAD'deki içerik ile bir tar arşivi oluştur ve içeriği standart çıktı biçiminde göster:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Mevcut HEAD'deki içerik ile bir zip arşivi oluştur ve içeriği standart çıktı biçiminde göster:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Yukarıda yazan madde ile aynı şeyi yap, ama zip arşivini belirtilen dosya olarak yaz:
`git archive {{-v|--verbose}} {{-o|--output}} {{örnek/arşiv/dosyası.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{örnek/arşiv/dosyası.zip}} HEAD`
- Belirtilmiş bir daldaki son commitlerin içeriğinden bir tar arşivi oluştur:
`git archive {{-o|--output}} {{örnek/arşiv/dosyası.tar}} {{dal_ismi}}`
`git archive {{[-o|--output]}} {{örnek/arşiv/dosyası.tar}} {{dal_ismi}}`
- Belirtilmiş bir dizindeki içeriklerden tar arşivi oluştur:
`git archive {{-o|--output}} {{örnek/arşiv/dosyası.tar}} HEAD:{{örnek/dizin}}`
`git archive {{[-o|--output]}} {{örnek/arşiv/dosyası.tar}} HEAD:{{örnek/dizin}}`
- Bir takım dosyayı belirtilmiş bir dizinin içinde arşivlemek için başlarına yol ekle:
`git archive {{-o|--output}} {{örnek/arşiv/dosyası.tar}} --prefix {{başlarına/yol/eklenecek/dosyalar}}/ HEAD`
`git archive {{[-o|--output]}} {{örnek/arşiv/dosyası.tar}} --prefix {{başlarına/yol/eklenecek/dosyalar}}/ HEAD`

View file

@ -9,4 +9,4 @@
- Bir dosyayı, her satırında son commit değeri ve yazarının e-postası bulunacak şekilde göster:
`git blame {{-e|--show-email}} {{örnek/dosya}}`
`git blame {{[-e|--show-email]}} {{örnek/dosya}}`

View file

@ -9,24 +9,24 @@
- Додає усі файли (контрольовані та неконтрольовані):
`git add -A`
`git add {{[-A|--all]}}`
- Додає тільки ті файли, що вже контрольовані:
`git add -u`
`git add {{[-u|--update]}}`
- Додає й ті файли, що ігноруються:
`git add -f`
`git add {{[-f|--force]}}`
- Інтерактивно індексує частини файлів:
`git add -p`
`git add {{[-p|--patch]}}`
- Інтерактивно індексує частини вказаного файлу:
`git add -p {{шлях/до/файлу}}`
`git add {{[-p|--patch]}} {{шлях/до/файлу}}`
- Інтерактивно індексує файл:
`git add -i`
`git add {{[-i|--interactive]}}`

View file

@ -11,7 +11,7 @@
- Виводить файл з електронною поштою автора та хешем коміту доданими поперед кожного рядку:
`git annotate {{-e|--show-email}} {{шлях/до/файлу}}`
`git annotate {{[-e|--show-email]}} {{шлях/до/файлу}}`
- Виводить лише рядки, які відповідають регулярному виразу:

View file

@ -9,7 +9,7 @@
- Виводить електронну пошту автора замість імені:
`git blame {{-e|--show-email}} {{шлях/до/файлу}}`
`git blame {{[-e|--show-email]}} {{шлях/до/файлу}}`
- Виводить файл з ім'ям автора та хешем коміту на кожному рядку у вказаному коміті:

View file

@ -17,19 +17,19 @@
- 覆盖现有文件前无需确认:
`mv --force {{路径/到/源}} {{路径/到/目标}}`
`mv {{[-f|--force]}} {{路径/到/源}} {{路径/到/目标}}`
- 无论是否有文件权限,覆盖现有文件前均需要确认:
`mv --interactive {{路径/到/源}} {{路径/到/目标}}`
`mv {{[-i|--interactive]}} {{路径/到/源}} {{路径/到/目标}}`
- 不覆盖现有的目标文件:
`mv --no-clobber {{路径/到/源}} {{路径/到/目标}}`
`mv {{[-n|--no-clobber]}} {{路径/到/源}} {{路径/到/目标}}`
- 在详细模式下移动文件,移动后显示文件的信息:
`mv --verbose {{路径/到/源}} {{路径/到/目标}}`
`mv {{[-v|--verbose]}} {{路径/到/源}} {{路径/到/目标}}`
- 指定目标目录,以便使用外部工具来收集可移动的文件:

View file

@ -13,16 +13,16 @@
- 覆蓋現有文件前無需確認:
`mv -f {{路徑/到/來源}} {{路徑/到/目標}}`
`mv {{[-f|--force]}} {{路徑/到/來源}} {{路徑/到/目標}}`
- 無論是否有文件權限,覆蓋現有文件前均需要確認:
`mv -i {{路徑/到/來源}} {{路徑/到/目標}}`
`mv {{[-i|--interactive]}} {{路徑/到/來源}} {{路徑/到/目標}}`
- 不要覆蓋現有的目標文件:
`mv -n {{路徑/到/來源}} {{路徑/到/目標}}`
`mv {{[-n|--no-clobber]}} {{路徑/到/來源}} {{路徑/到/目標}}`
- 詳細模式,移動後顯示文件名:
`mv -v {{路徑/到/來源}} {{路徑/到/目標}}`
`mv {{[-v|--verbose]}} {{路徑/到/來源}} {{路徑/到/目標}}`

View file

@ -14,4 +14,4 @@
- Display an extremely detailed help page:
`cjxl --help --verbose --verbose --verbose --verbose`
`cjxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -10,4 +10,4 @@
- Display an extremely detailed help page:
`djxl --help --verbose --verbose --verbose --verbose`
`djxl {{[-h -v -v -v -v|--help --verbose --verbose --verbose --verbose]}}`

View file

@ -9,28 +9,28 @@
- Add all files (tracked and untracked):
`git add {{-A|--all}}`
`git add {{[-A|--all]}}`
- Add all files in the current folder:
- Add all files recursively starting from the current folder:
`git add .`
- Only add already tracked files:
`git add {{-u|--update}}`
`git add {{[-u|--update]}}`
- Also add ignored files:
`git add {{-f|--force}}`
`git add {{[-f|--force]}}`
- Interactively stage parts of files:
`git add {{-p|--patch}}`
`git add {{[-p|--patch]}}`
- Interactively stage parts of a given file:
`git add {{-p|--patch}} {{path/to/file}}`
`git add {{[-p|--patch]}} {{path/to/file}}`
- Interactively stage a file:
`git add {{-i|--interactive}}`
`git add {{[-i|--interactive]}}`

View file

@ -11,7 +11,7 @@
- Print a file with the author email and commit hash prepended to each line:
`git annotate {{-e|--show-email}} {{path/to/file}}`
`git annotate {{[-e|--show-email]}} {{path/to/file}}`
- Print only rows that match a regular expression:

View file

@ -5,24 +5,24 @@
- Create a tar archive from the contents of the current HEAD and print it to `stdout`:
`git archive {{-v|--verbose}} HEAD`
`git archive {{[-v|--verbose]}} HEAD`
- Use the Zip format and report progress verbosely:
`git archive {{-v|--verbose}} --format zip HEAD`
`git archive {{[-v|--verbose]}} --format zip HEAD`
- Output the Zip archive to a specific file:
`git archive {{-v|--verbose}} {{-o|--output}} {{path/to/file.zip}} HEAD`
`git archive {{[-v|--verbose]}} {{[-o|--output]}} {{path/to/file.zip}} HEAD`
- Create a tar archive from the contents of the latest commit of a specific branch:
`git archive {{-o|--output}} {{path/to/file.tar}} {{branch_name}}`
`git archive {{[-o|--output]}} {{path/to/file.tar}} {{branch_name}}`
- Use the contents of a specific directory:
`git archive {{-o|--output}} {{path/to/file.tar}} HEAD:{{path/to/directory}}`
`git archive {{[-o|--output]}} {{path/to/file.tar}} HEAD:{{path/to/directory}}`
- Prepend a path to each file to archive it inside a specific directory:
`git archive {{-o|--output}} {{path/to/file.tar}} --prefix {{path/to/prepend}}/ HEAD`
`git archive {{[-o|--output]}} {{path/to/file.tar}} --prefix {{path/to/prepend}}/ HEAD`

View file

@ -9,7 +9,7 @@
- Print file with author email and commit hash on each line:
`git blame {{-e|--show-email}} {{path/to/file}}`
`git blame {{[-e|--show-email]}} {{path/to/file}}`
- Print file with author name and commit hash on each line at a specific commit:

View file

@ -15,22 +15,22 @@
`mv {{path/to/source1 path/to/source2 ...}} {{path/to/existing_directory}}`
- Do not prompt ([f]) for confirmation before overwriting existing files:
- Do not prompt for confirmation before overwriting existing files:
`mv --force {{path/to/source}} {{path/to/target}}`
`mv {{[-f|--force]}} {{path/to/source}} {{path/to/target}}`
- Prompt for confirmation [i]nteractively before overwriting existing files, regardless of file permissions:
- Prompt for confirmation interactively before overwriting existing files, regardless of file permissions:
`mv --interactive {{path/to/source}} {{path/to/target}}`
`mv {{[-i|--interactive]}} {{path/to/source}} {{path/to/target}}`
- Do not overwrite ([n]) existing files at the target:
- Do not overwrite existing files at the target:
`mv --no-clobber {{path/to/source}} {{path/to/target}}`
`mv {{[-n|--no-clobber]}} {{path/to/source}} {{path/to/target}}`
- Move files in [v]erbose mode, showing files after they are moved:
- Move files in verbose mode, showing files after they are moved:
`mv --verbose {{path/to/source}} {{path/to/target}}`
`mv {{[-v|--verbose]}} {{path/to/source}} {{path/to/target}}`
- Specify [t]arget directory so that you can use external tools to gather movable files:
- Specify target directory so that you can use external tools to gather movable files:
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv --target-directory {{path/to/target_directory}}`
`{{find /var/log -type f -name '*.log' -print0}} | {{xargs -0}} mv {{[-t|--target-directory]}} {{path/to/target_directory}}`

View file

@ -13,8 +13,8 @@
- Get the current status of the user:
`passwd {{-S|--status}}`
`passwd {{[-S|--status]}}`
- Make the password of the account blank (it will set the named account passwordless):
`passwd {{-d|--delete}}`
`passwd {{[-d|--delete]}}`

View file

@ -21,7 +21,7 @@
- Resume compilation from a specific dependency:
`kdesrc-build --resume-from={{dependency_component}} {{component_name}}`
`kdesrc-build --resume-from {{dependency_component}} {{component_name}}`
- Run a component with a specified executable name:

View file

@ -11,9 +11,9 @@
`plasmashell --replace & disown`
- Display [h]elp on command-line options:
- Display help on command-line options:
`plasmashell --help`
`plasmashell {{[-h|--help]}}`
- Display help, including Qt options: