Skip to content

Commit

Permalink
multiple pages: format technical tokens (tldr-pages#5119)
Browse files Browse the repository at this point in the history
Co-authored-by: bl-ue <[email protected]>
Co-authored-by: Starbeamrainbowlabs <[email protected]>
  • Loading branch information
3 people authored Jan 31, 2021
1 parent dc690e3 commit a5fe31b
Show file tree
Hide file tree
Showing 279 changed files with 409 additions and 410 deletions.
2 changes: 1 addition & 1 deletion pages.bs/common/time.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

> Vidi koliko dugo traje komanda.
- Vrijeme "ls":
- Vrijeme `ls`:

`time ls`
2 changes: 1 addition & 1 deletion pages.de/common/7z.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

`7z x {{archiviert.7z}} -o{{Pfad/zu/ausgabe}}`

- Entpacke ein Archiv nach `stdout`:
- Entpacke ein Archiv nach stdout:

`7z x {{archiviert.7z}} -so`

Expand Down
4 changes: 2 additions & 2 deletions pages.de/common/ansible.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# ansible

> Verwalten von Computergruppen per Fernzugriff über SSH.
> Verwenden Sie die Datei /etc/ansible/hosts, um neue Gruppen/Hosts hinzuzufügen.
> Mehr Informationen: <https://www.ansible.com/>.
> Verwenden Sie die Datei `/etc/ansible/hosts`, um neue Gruppen/Hosts hinzuzufügen.
> Weitere Informationen: <https://www.ansible.com/>.
- Hosts auflisten, die zu einer Gruppe gehören:

Expand Down
2 changes: 1 addition & 1 deletion pages.de/common/bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

`bash -e {{datei.sh}}`

- Befehle von `stdin` ausführen:
- Befehle von stdin ausführen:

`bash -s`

Expand Down
4 changes: 2 additions & 2 deletions pages.de/common/cut.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# cut

> Entferne Felder von `stdin` oder einer Datei.
> Entferne Felder von stdin oder einer Datei.
- Entferne die ersten 16 Zeichen jeder Zeile von `stdin`:
- Entferne die ersten 16 Zeichen jeder Zeile von stdin:

`cut -c {{1-16}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.de/common/ffmpeg.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

`ffmpeg -i {{video.mpg|video.gif}} {{frame_%d.png}}`

- Kombiniere numerierte Bilder (frame_1.jpg, frame_2.jpg, etc) in ein Video oder Gif:
- Kombiniere numerierte Bilder (`frame_1.jpg`, `frame_2.jpg`, etc) in ein Video oder Gif:

`ffmpeg -i {{frame_%d.jpg}} -f bild2 {{video.mpg|video.gif}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.de/common/git-add.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

`git add -u`

- Fügt auch Dateien, welche ignoriert werden (.gitignore) hinzu:
- Fügt auch Dateien, welche ignoriert werden (`.gitignore`) hinzu:

`git add -f`

Expand Down
2 changes: 1 addition & 1 deletion pages.de/common/git-ignore.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

`git ignore list`

- Erstelle eine .gitignore Vorlage:
- Erstelle eine `.gitignore` Vorlage:

`git ignore {{eintrag_a,eintrag_b,eintrag_n}}`
12 changes: 6 additions & 6 deletions pages.de/common/gpg.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@
> GNU Privacy Guard.
> Mehr Informationen: <https://gnupg.org>.
- Signiere doc.txt ohne Verschlüsselung (Ausabe nach doc.txt.asc):
- Signiere `doc.txt` ohne Verschlüsselung (Ausabe nach `doc.txt.asc`):

`gpg --clearsign {{doc.txt}}`

- Verschlüssle doc.txt für [email protected] (Ausgabe nach doc.txt.gpg):
- Verschlüssle `doc.txt` für [email protected] (Ausgabe nach `doc.txt.gpg`):

`gpg --encrypt --recipient {{[email protected]}} {{doc.txt}}`

- Verschlüssle doc.txt nur mit Passwort (Ausgabe nach doc.txt.gpg):
- Verschlüssle `doc.txt` nur mit Passwort (Ausgabe nach `doc.txt.gpg`):

`gpg --symmetric {{doc.txt}}`

- Entschlüssle doc.txt.gpg (Ausgabe nach `stdout`):
- Entschlüssle `doc.txt.gpg` (Ausgabe nach stdout):

`gpg --decrypt {{doc.txt.gpg}}`

- Importiere einen Öffentlichen Schlüssel:

`gpg --import {{public.gpg}}`

- Exportiere Öffentlichen Schlüssel von [email protected] (Ausgabe nach `stdout`):
- Exportiere Öffentlichen Schlüssel von [email protected] (Ausgabe nach stdout):

`gpg --export --armor {{[email protected]}}`

- Exportiere Privaten Schlüssel von [email protected] (Ausgabe nach `stdout`):
- Exportiere Privaten Schlüssel von [email protected] (Ausgabe nach stdout):

`gpg --export-secret-keys --armor {{[email protected]}}`
2 changes: 1 addition & 1 deletion pages.de/common/phpbu.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Ein Backup framework für PHP.
> Mehr Informationen: <https://phpbu.de>.
- Backups mit der Standard "phpbu.xml" Konfigurationsdatei ausführen:
- Backups mit der Standard `phpbu.xml` Konfigurationsdatei ausführen:

`phpbu`

Expand Down
4 changes: 2 additions & 2 deletions pages.de/common/sshpass.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# sshpass

> Für die Bereitstellung von SSH Passwörtern.
> Es funktioniert über die Übergabe des Passwortes and ein temporäres TTY und die Weiterleitung des `stdin` an die SSH Sitzung.
> Es funktioniert über die Übergabe des Passwortes and ein temporäres TTY und die Weiterleitung des stdin an die SSH Sitzung.
- Verbindung zu einem externen Server über ein Passwort aus einem Datei-Objekt (in diesem Fall `stdin`):
- Verbindung zu einem externen Server über ein Passwort aus einem Datei-Objekt (in diesem Fall stdin):

`sshpass -d {{0}} ssh {{Benutzer}}@{{Server}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.de/linux/apt-get.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

`apt-get upgrade`

- Reinigt das Repository - entfernt alle Dateinen (.deb) welche nichtmehr heruntergeladen werden können:
- Reinigt das Repository - entfernt alle Dateinen (`.deb`) welche nichtmehr heruntergeladen werden können:

`apt-get autoclean`

Expand Down
2 changes: 1 addition & 1 deletion pages.de/windows/choco-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

`choco install {{pfad/zur/pakete.config}}`

- Installiere Pakete aus einer "nuspec"- oder "nupkg"-Datei:
- Installiere Pakete aus einer `nuspec`- oder `nupkg`-Datei:

`choco install {{pfad/zur/datei}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.es/common/7z.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

`7z x {{archivo_comprimido.7z}} -o {{ruta/donde/extraer}}`

- Extrae un archivo comprimido a `stdout`:
- Extrae un archivo comprimido a stdout:

`7z x {{archivo_comprimido.7z}} -so`

Expand Down
4 changes: 2 additions & 2 deletions pages.es/common/base64.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

`base64 -d {{nombre_de_archivo}}`

- Codifica `stdin`:
- Codifica stdin:

`{{comando}} | base64`

- Decodifica `stdin`:
- Decodifica stdin:

`{{comando}} | base64 -d`
2 changes: 1 addition & 1 deletion pages.es/common/bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

`bash -e {{archivo.sh}}`

- Ejecuta comandos desde `stdin` (entrada estándar):
- Ejecuta comandos desde stdin (entrada estándar):

`bash -s`

Expand Down
2 changes: 1 addition & 1 deletion pages.es/common/cpdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

`cpdf -list-bookmarks {{ruta/del/documento.pdf}}`

- Divide un documento en trozos de diez páginas, escribiendo fragmento001.pdf, fragmento002.pdf, etc:
- Divide un documento en trozos de diez páginas, escribiendo `fragmento001.pdf`, `fragmento002.pdf`, etc:

`cpdf -split {{ruta/del/documento.pdf}} -o {{ruta/del/fragmento%%%.pdf}} -chunk 10`

Expand Down
2 changes: 1 addition & 1 deletion pages.es/common/git-check-ignore.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

`git check-ignore {{ruta/del/archivo}} {{ruta/del/directorio}}`

- Usa nombres de rutas, uno por línea, a partir de la entrada estandar (`stdin`):
- Usa nombres de rutas, uno por línea, a partir de la entrada estandar (stdin):

`git check-ignore --stdin < {{ruta/del/archivo_lista}}`

Expand Down
6 changes: 3 additions & 3 deletions pages.es/common/git-format-patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
> Véase también `git-am`, comando que puede aplicar los archivos .patch generados.
> Más información: <https://git-scm.com/docs/git-format-patch>.
- Crea un archivo .patch con nombre automático para todos los cambios que no están en el push:
- Crea un archivo `.patch` con nombre automático para todos los cambios que no están en el push:

`git format-patch {{origen}}`

- Escribe un archivo .patch para todos los commits entre dos revisiones a `stdout`:
- Escribe un archivo `.patch` para todos los commits entre dos revisiones a stdout:

`git format-patch {{revisión_1}}..{{revisión_2}}`

- Escribe un archivo .patch para los 3 últimos commits:
- Escribe un archivo `.patch` para los 3 últimos commits:

`git format-patch -{{3}}`
2 changes: 1 addition & 1 deletion pages.es/osx/apachectl.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Interfaz de control pata Apache HTTP Server para macOS.
- Inicia la tarea launchd org.apache.httpd:
- Inicia la tarea launchd `org.apache.httpd`:

`apachectl start`

Expand Down
4 changes: 2 additions & 2 deletions pages.es/osx/as.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
> Ensamblador portable GNU.
> Principalmente destinado a ensamblar la salida de `gcc` para ser utilizada por` ld`.
- Ensambla un archivo, escribiendo la salida en a.out:
- Ensambla un archivo, escribiendo la salida en `a.out`:

`as {{archivo.s}}`

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

`as -f {{archivo.s}}`

- Incluye una ruta determinada a la lista de directorios para buscar archivos especificados en las directivas .include:
- Incluye una ruta determinada a la lista de directorios para buscar archivos especificados en las directivas `.include`:

`as -I {{ruta/al/directorio}} {{archivo.s}}`
4 changes: 2 additions & 2 deletions pages.fr/common/base32.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

`base32 -d {{fichier}}`

- Encode depuis `stdin` :
- Encode depuis stdin :

`{{commande}} | base32`

- Décode depuis `stdin` :
- Décode depuis stdin :

`{{commande}} | base32 -d`
4 changes: 2 additions & 2 deletions pages.fr/common/base64.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@

`base64 -d {{fichier}}`

- Encoder depuis `stdin` :
- Encoder depuis stdin :

`{{une_commande}} | base64`

- Décoder depuis `stdin` :
- Décoder depuis stdin :

`{{une_commande}} | base64 -d`
4 changes: 2 additions & 2 deletions pages.fr/common/git-archive.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
> Cree une archive de fichiers depuis un branche donée.
> Plus d'informations : <https://git-scm.com/docs/git-archive>.
- Crée une archive .tar avec le contenu de la HEAD et l'affiche sur la sortie stanard :
- Crée une archive `.tar` avec le contenu de la HEAD et l'affiche sur la sortie stanard :

`git archive --verbose HEAD`

- Crée une archive .zip avec le contenu de la HEAD et l'affiche sur la sortie stanard :
- Crée une archive `.zip` avec le contenu de la HEAD et l'affiche sur la sortie stanard :

`git archive --verbose --format=zip HEAD`

Expand Down
2 changes: 1 addition & 1 deletion pages.fr/common/git-check-ignore.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

`git check-ignore {{chemin/vers/fichier}} {{chemin/vers/repertoire}}`

- Utilisez des chemins d'accès, un par ligne, de `stdin` :
- Utilisez des chemins d'accès, un par ligne, de stdin :

`git check-ignore --stdin < {{chemin/vers/fichier_annexe}}`

Expand Down
6 changes: 3 additions & 3 deletions pages.fr/common/git-format-patch.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
> Voir egalement `git am`, qui peut appliquer des fichiers de correctifs genérés.
> Plus d'informations : <https://git-scm.com/docs/git-format-patch>.
-Créer un fichier de correctif .patch nommé automatiquement pour tout les commits non poussés :
-Créer un fichier de correctif `.patch` nommé automatiquement pour tout les commits non poussés :

`git format-patch {{origin}}`

- Crér un fichier correctif .patch pour les changements entre 2 révisions :
- Crér un fichier correctif `.patch` pour les changements entre 2 révisions :

`git format-patch {{revision_1}}..{{revision_2}}`

- Créer un fichier correctif .patch pour les 3 derniers commits :
- Créer un fichier correctif `.patch` pour les 3 derniers commits :

`git format-patch -{{3}}`
2 changes: 1 addition & 1 deletion pages.fr/linux/apt-get.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

`apt-get upgrade`

- Nettoyage du dépôt local - supprime les fichiers de paquets (.deb) des téléchargements interrompus qui ne peuvent plus être téléchargés :
- Nettoyage du dépôt local - supprime les fichiers de paquets (`.deb`) des téléchargements interrompus qui ne peuvent plus être téléchargés:

`apt-get autoclean`

Expand Down
2 changes: 1 addition & 1 deletion pages.hbs/common/sh.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@

`sh {{datoteka.sh}}`

- Pokreni komande iz `stdin`-a:
- Pokreni komande iz stdin-a:

`sh -s`
2 changes: 1 addition & 1 deletion pages.hbs/common/tldrl.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`tldrl {{direktorijum_stranica}}`

- Formatiraj određenu stranicu u `stdout`:
- Formatiraj određenu stranicu u stdout:

`tldrl -f {{stranica.md}}`

Expand Down
4 changes: 2 additions & 2 deletions pages.id/common/alacritty.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

`alacritty -e {{perintah}}`

- Menentukan berkas konfigurasi alternatif (nilai default $XDG_CONFIG_HOME/alacritty/alacritty.yml):
- Menentukan berkas konfigurasi alternatif (nilai default `$XDG_CONFIG_HOME/alacritty/alacritty.yml`):

`alacritty --config-file {{alamat/ke/konfigurasi.yml}}`

- Menjalankan dengan mengaktifkan pemuatan ulang konfigurasi secara langsung/otomatis(dapat juga diaktifkan secara default di alacritty.yml):
- Menjalankan dengan mengaktifkan pemuatan ulang konfigurasi secara langsung/otomatis(dapat juga diaktifkan secara default di `alacritty.yml`):

`alacritty --live-config-reload --config-file {{alamat/ke/konfigurasi.yml}}`
6 changes: 3 additions & 3 deletions pages.id/common/java.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
> Peluncur Aplikasi Java.
> Informasi lebih lanjut: <https://java.com>.
- Menjalankan berkas java .class yang mengandung method main dengan hanya menggunakan nama class:
- Menjalankan berkas java `.class` yang mengandung method main dengan hanya menggunakan nama class:

`java {{nama_class}}`

- Menjalankan program .jar:
- Menjalankan program `.jar`:

`java -jar {{nama_berkas.jar}}`

- Menjalankan program .jar dengan menunggu debugger terhubung ke port 5005:
- Menjalankan program `.jar` dengan menunggu debugger terhubung ke port 5005:

`java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5005 -jar {{nama_berkas.jar}}`

Expand Down
6 changes: 3 additions & 3 deletions pages.id/common/npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
> Mengelola proyek Node.js dan dependensi modulnya.
> Informasi lebih lanjut: <https://www.npmjs.com/>.
- Membuat file package.json secara interaktif:
- Membuat file `package.json` secara interaktif:

`npm init`

- Unduh semua paket yang terdaftar sebagai dependensi di package.json:

`npm install`

- Unduh versi tertentu dari sebuah paket dan menambahkan ke daftar dependensi di package.json:
- Unduh versi tertentu dari sebuah paket dan menambahkan ke daftar dependensi di `package.json`:

`npm install {{nama_modul}}@{{versi}}`

Expand All @@ -24,7 +24,7 @@

`npm install -g {{nama_modul}}`

- Copot pemasangan paket dan hapus dari daftar dependensi di package.json:
- Copot pemasangan paket dan hapus dari daftar dependensi di `package.json`:

`npm uninstall {{nama_modul}}`

Expand Down
Loading

0 comments on commit a5fe31b

Please sign in to comment.