Skip to content

Commit e6fa415

Browse files
Merge branch 'main' into jupyter-updates
2 parents 05ce508 + 13e9cfb commit e6fa415

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1043
-155
lines changed

โ€Žcontributing-guides/style-guide.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -430,6 +430,7 @@ For example, `[d]ownload` in English may be translated into `[d]escargar` in Spa
430430
- Prefer not grouping options that take in arguments (i.e. `{{[-it|--interactive --tty]}} {{[-w|--workdir]}} {{path/to/directory}}` instead of `{{[-itw|--interactive --tty --workdir]}} {{path/to/directory}}`)
431431
- Prefer using a space instead of the equals sign (`=`) to separate options from their arguments (i.e. use `--opt arg` instead of `--opt=arg`), unless the program does not support it.
432432
- Likewise prefer separating shortform options from their arguments with a space (i.e. use `-o arg` instead of `-oarg`), unless the program does not support it.
433+
- If a command only supports `-oarg` and `--opt=arg` the option placeholder should be written like this `{{[-o|--opt=]}}arg`. Keep in mind how the command would look if a client were to display only short or only long options.
433434

434435
### Placeholder syntax
435436

โ€Žpages.de/common/exa.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# exa
22

33
> Ein moderner Ersatz fรผr `ls` (Verzeichnisinhalte auflisten).
4-
> Weitere Informationen: <https://github.com/ogham/exa>.
4+
> Weitere Informationen: <https://github.com/ogham/exa#command-line-options>.
55
66
- Liste eine Datei pro Zeile auf:
77

8-
`exa --oneline`
8+
`exa {{[-1|--oneline]}}`
99

1010
- Liste alle Dateien auf, einschlieรŸlich versteckter Dateien:
1111

12-
`exa --all`
12+
`exa {{[-a|--all]}}`
1313

1414
- Liste alle Dateien im langen Format auf (Berechtigungen, Eigentรผmer, GrรถรŸe und ร„nderungsdatum):
1515

16-
`exa --long --all`
16+
`exa {{[-l|--long]}} {{[-a|--all]}}`
1717

1818
- Liste Dateien nach GrรถรŸe absteigend sortiert auf:
1919

20-
`exa --reverse --sort={{size}}`
20+
`exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}`
2121

2222
- Zeige Dateien in einer Baumstruktur an, die drei Ebenen tief ist:
2323

24-
`exa --long --tree --level={{3}}`
24+
`exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}`
2525

2626
- Liste Dateien nach ร„nderungsdatum aufsteigend sortiert auf:
2727

28-
`exa --long --sort={{modified}}`
28+
`exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}`
2929

3030
- Liste Dateien inklusive Header, Icons und Git-Status:
3131

32-
`exa --long --header --icons --git`
32+
`exa {{[-l|--long]}} {{[-h|--header]}} --icons --git`
3333

3434
- Liste keine Dateien auf, die in `.gitignore` erwรคhnt werden:
3535

โ€Žpages.es/common/exa.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# exa
22

33
> Un reemplazo moderno para `ls` (Lista el contenido de los directorios).
4-
> Mรกs informaciรณn: <https://github.com/ogham/exa>.
4+
> Mรกs informaciรณn: <https://github.com/ogham/exa#command-line-options>.
55
66
- Lista archivos uno por lรญnea:
77

8-
`exa --oneline`
8+
`exa {{[-1|--oneline]}}`
99

1010
- Lista todos los archivos, incluidos los ocultos:
1111

12-
`exa --all`
12+
`exa {{[-a|--all]}}`
1313

1414
- Lista en formato largo (permisos, propiedad, tamaรฑo y fecha de modificaciรณn) de todos los archivos:
1515

16-
`exa --long --all`
16+
`exa {{[-l|--long]}} {{[-a|--all]}}`
1717

1818
- Muestra los archivos con el mรกs grande al principio:
1919

20-
`exa --reverse --sort={{size}}`
20+
`exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}`
2121

2222
- Muestra un รกrbol de archivos de tres niveles de profundidad:
2323

24-
`exa --long --tree --level={{3}}`
24+
`exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}`
2525

2626
- Lista los archivos ordenados por fecha de modificaciรณn (los mรกs antiguos primero):
2727

28-
`exa --long --sort={{modified}}`
28+
`exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}`
2929

3030
- Lista de archivos con sus cabeceras, iconos y estados Git:
3131

32-
`exa --long --header --icons --git`
32+
`exa {{[-l|--long]}} {{[-h|--header]}} --icons --git`
3333

3434
- No lista los archivos mencionados en `.gitignore`:
3535

โ€Žpages.es/osx/bc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414

1515
- Calcula una expresiรณn:
1616

17-
`bc --expression='{{5 / 3}}'`
17+
`bc --expression '{{5 / 3}}'`
1818

1919
- Ejecuta un script:
2020

2121
`bc {{ruta/al/script.bc}}`
2222

2323
- Calcula una expresiรณn con la escala especificada:
2424

25-
`bc --expression='scale = {{10}}; {{5 / 3}}'`
25+
`bc --expression '{{scale = 10; 5 / 3}}'`
2626

2727
- Calcula una funciรณn seno/coseno/arctangente/logaritmo natural/exponencial utilizando `mathlib`:
2828

29-
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
29+
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`

โ€Žpages.es/osx/mktemp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
- Usa un directorio personalizado (por defecto la salida de `getconf DARWIN_USER_TEMP_DIR`, o `/tmp`):
1111

12-
`mktemp --tmpdir={{/ruta/a/tempdir}}`
12+
`mktemp --tmpdir {{/ruta/a/tempdir}}`
1313

1414
- Usa una plantilla de ruta personalizada (las `X` se sustituyen por caracteres alfanumรฉricos aleatorios):
1515

โ€Žpages.es/osx/say.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99

1010
- Lee un archivo en voz alta:
1111

12-
`say --input-file={{nombre_de_archivo.txt}}`
12+
`say --input-file {{nombre_de_archivo.txt}}`
1313

1414
- Di una frase con una voz y un ritmo de voz personalizados:
1515

16-
`say --voice={{voz}} --rate={{palabras_por_minuto}} "{{Lo siento David, no puedo dejarte hacer eso.}}"`
16+
`say --voice {{voz}} --rate {{palabras_por_minuto}} "{{Lo siento David, no puedo dejarte hacer eso.}}"`
1717

1818
- Lista las voces disponibles (cada voz habla en un idioma distinto):
1919

20-
`say --voice="?"`
20+
`say --voice "?"`
2121

2222
- Di algo en polaco:
2323

24-
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
24+
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
2525

2626
- Crea un archivo de audio con el texto hablado:
2727

28-
`say --output-file={{nombre_de_fichero.aiff}} "{{Aquรญ estรกn los locos.}}"`
28+
`say --output-file {{nombre_de_fichero.aiff}} "{{Aquรญ estรกn los locos.}}"`

โ€Žpages.es/osx/shuf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- Escribe el resultado en otro archivo:
1515

16-
`shuf {{nombre_archivo}} --output={{nombre_archivo_salida}}`
16+
`shuf {{nombre_archivo}} --output {{nombre_archivo_salida}}`
1717

1818
- Genera nรบmeros aleatorios en el rango 1-10:
1919

โ€Žpages.fr/common/exa.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# exa
22

33
> Une alternative moderne ร  `ls` (pour lister le contenu de rรฉpertoires).
4-
> Plus d'informations : <https://github.com/ogham/exa>.
4+
> Plus d'informations : <https://github.com/ogham/exa#command-line-options>.
55
66
- Liste les fichiers, un par ligne :
77

8-
`exa --oneline`
8+
`exa {{[-1|--oneline]}}`
99

1010
- Liste tous les fichiers, y compris les fichiers cachรฉs :
1111

12-
`exa --all`
12+
`exa {{[-a|--all]}}`
1313

1414
- Liste au format long (autorisations, propriรฉtรฉ, taille et date de modification) de tous les fichiers :
1515

16-
`exa --long --all`
16+
`exa {{[-l|--long]}} {{[-a|--all]}}`
1717

1818
- Liste les fichiers avec le plus volumineux en haut :
1919

20-
`exa --reverse --sort={{taille}}`
20+
`exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}`
2121

2222
- Affiche une arborescence de fichiers, sur trois niveaux de profondeur :
2323

24-
`exa --long --tree --level={{3}}`
24+
`exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}`
2525

2626
- Liste des fichiers triรฉs par date de modification (le plus ancien en premier) :
2727

28-
`exa --long --sort={{modifiรฉ}}`
28+
`exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}`
2929

3030
- Liste les fichiers avec leur en-tรชte, leur icรดne et leur statut Git :
3131

32-
`exa --long --header --icons --git`
32+
`exa {{[-l|--long]}} {{[-h|--header]}} --icons --git`
3333

3434
- Liste les fichiers sauf ceux mentionnรฉs dans `.gitignore` :
3535

โ€Žpages.fr/linux/ip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ip
22

33
> Affiche / manipule l'adressage, le routage, les interfaces et pรฉriphรฉriques rรฉseau, les rรจgles de routage et les tunnels.
4-
> Certaines commandes comme `ip {{[a|address]}}ess` ont leur propre documentation.
4+
> Certaines commandes comme `address` ont leur propre documentation.
55
> Plus d'informations : <https://www.manned.org/ip.8>.
66
77
- Liste les interfaces avec des infos dรฉtaillรฉes :

โ€Žpages.id/osx/shuf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- Menuliskan output ke file lain:
1515

16-
`shuf {{nama_file}} --output={{nama_file_output}}`
16+
`shuf {{nama_file}} --output {{nama_file_output}}`
1717

1818
- Men-generate angka acak dari 1-10:
1919

โ€Žpages.it/common/exa.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
# exa
22

33
> Un moderno sostituto per `ls` (elenca i contenuti di una directory).
4-
> Maggiori informazioni: <https://github.com/ogham/exa>.
4+
> Maggiori informazioni: <https://github.com/ogham/exa#command-line-options>.
55
66
- Elenca i file nella directory corrente, uno per riga:
77

8-
`exa --oneline`
8+
`exa {{[-1|--oneline]}}`
99

1010
- Elenca tutti i file, inclusi quelli nascosti:
1111

12-
`exa --all`
12+
`exa {{[-a|--all]}}`
1313

1414
- Elenca tutti i file e mostra informazioni (permessi, dimensione e data di ultima modifica):
1515

16-
`exa --long --all`
16+
`exa {{[-l|--long]}} {{[-a|--all]}}`
1717

1818
- Elenca i file, ordinandoli per dimensione decrescente:
1919

20-
`exa --reverse --sort={{size}}`
20+
`exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}`
2121

2222
- Mostra un albero dei file con 3 livelli di profonditร :
2323

24-
`exa --long --tree --level={{3}}`
24+
`exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}`
2525

2626
- Elenca i file e mostra informazioni, ordinandoli per ultima modifica (piรน vechci prima):
2727

28-
`exa --long --sort={{modified}}`
28+
`exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}`

โ€Žpages.it/linux/ip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ip
22

33
> Mostra / manipola routing, dispositivi, criteri di routing e tunnel.
4-
> Alcuni sottocomandi, come `ip {{[a|address]}}ess`, hanno una propria documentazione d'uso.
4+
> Alcuni sottocomandi, come `address`, hanno una propria documentazione d'uso.
55
> Maggiori informazioni: <https://www.manned.org/ip.8>.
66
77
- Elenca le interfacce con informazioni dettagliate:

โ€Žpages.ko/common/exa.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
# exa
22

33
> `ls`์˜ ํ˜„๋Œ€์ ์ธ ๋Œ€์ฒดํ’ˆ (๋””๋ ‰ํ† ๋ฆฌ ๋‚ด์šฉ ๋‚˜์—ด).
4-
> ๋” ๋งŽ์€ ์ •๋ณด: <https://github.com/ogham/exa>.
4+
> ๋” ๋งŽ์€ ์ •๋ณด: <https://github.com/ogham/exa#command-line-options>.
55
66
- ํŒŒ์ผ์„ ํ•œ ์ค„์— ํ•˜๋‚˜์”ฉ ๋‚˜์—ด:
77

8-
`exa --oneline`
8+
`exa {{[-1|--oneline]}}`
99

1010
- ์ˆจ๊น€ ํŒŒ์ผ์„ ํฌํ•จํ•œ ๋ชจ๋“  ํŒŒ์ผ ๋‚˜์—ด:
1111

12-
`exa --all`
12+
`exa {{[-a|--all]}}`
1313

1414
- ๋ชจ๋“  ํŒŒ์ผ์˜ ๊ธด ํ˜•์‹ ๋ชฉ๋ก (๊ถŒํ•œ, ์†Œ์œ ๊ถŒ, ํฌ๊ธฐ ๋ฐ ์ˆ˜์ • ๋‚ ์งœ):
1515

16-
`exa --long --all`
16+
`exa {{[-l|--long]}} {{[-a|--all]}}`
1717

1818
- ๊ฐ€์žฅ ํฐ ํŒŒ์ผ์„ ๋งจ ์œ„์— ๋‚˜์—ด:
1919

20-
`exa --reverse --sort={{size}}`
20+
`exa {{[-r|--reverse]}} {{[-s|--sort]}} {{size}}`
2121

2222
- ํŒŒ์ผ ํŠธ๋ฆฌ๋ฅผ 3๋‹จ๊ณ„ ๊นŠ์ด๋กœ ํ‘œ์‹œ:
2323

24-
`exa --long --tree --level={{3}}`
24+
`exa {{[-l|--long]}} {{[-T|--tree]}} {{[-L|--level]}} {{3}}`
2525

2626
- ์ˆ˜์ • ๋‚ ์งœ์ˆœ์œผ๋กœ ํŒŒ์ผ ๋‚˜์—ด (์˜ค๋ž˜๋œ ๊ฒƒ๋ถ€ํ„ฐ):
2727

28-
`exa --long --sort={{modified}}`
28+
`exa {{[-l|--long]}} {{[-s|--sort]}} {{modified}}`
2929

3030
- ํ—ค๋”, ์•„์ด์ฝ˜ ๋ฐ Git ์ƒํƒœ์™€ ํ•จ๊ป˜ ํŒŒ์ผ ๋‚˜์—ด:
3131

32-
`exa --long --header --icons --git`
32+
`exa {{[-l|--long]}} {{[-h|--header]}} --icons --git`
3333

3434
- `.gitignore`์— ์–ธ๊ธ‰๋œ ํŒŒ์ผ์€ ๋‚˜์—ดํ•˜์ง€ ์•Š์Œ:
3535

โ€Žpages.ko/osx/bc.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414

1515
- ์ˆ˜์‹ ๊ณ„์‚ฐ:
1616

17-
`bc --expression='{{5 / 3}}'`
17+
`bc --expression '{{5 / 3}}'`
1818

1919
- ์Šคํฌ๋ฆฝํŠธ ์‹คํ–‰:
2020

2121
`bc {{๊ฒฝ๋กœ/๋Œ€์ƒ/์Šคํฌ๋ฆฝํŠธ.bc}}`
2222

2323
- ์ง€์ •๋œ ์Šค์ผ€์ผ๋กœ ์ˆ˜์‹ ๊ณ„์‚ฐ:
2424

25-
`bc --expression='scale = {{10}}; {{5 / 3}}'`
25+
`bc --expression '{{scale = 10; 5 / 3}}'`
2626

2727
- `mathlib`์„ ์‚ฌ์šฉํ•˜์—ฌ ์‚ฌ์ธ/์ฝ”์‚ฌ์ธ/์•„ํฌํƒ„์  ํŠธ/์ž์—ฐ ๋กœ๊ทธ/์ง€์ˆ˜ ํ•จ์ˆ˜ ๊ณ„์‚ฐ:
2828

29-
`bc --mathlib --expression='{{s|c|a|l|e}}({{1}})'`
29+
`bc --mathlib --expression '{{s|c|a|l|e}}({{1}})'`

โ€Žpages.ko/osx/mktemp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
- ์‚ฌ์šฉ์ž ์ •์˜ ๋””๋ ‰ํ„ฐ๋ฆฌ ์‚ฌ์šฉ (`getconf DARWIN_USER_TEMP_DIR`์˜ ์ถœ๋ ฅ ๋˜๋Š” `/tmp`๊ฐ€ ๊ธฐ๋ณธ๊ฐ’):
1111

12-
`mktemp --tmpdir={{/๊ฒฝ๋กœ/๋Œ€์ƒ/์ž„์‹œ_ํด๋”}}`
12+
`mktemp --tmpdir {{/๊ฒฝ๋กœ/๋Œ€์ƒ/์ž„์‹œ_ํด๋”}}`
1313

1414
- ์‚ฌ์šฉ์ž ์ •์˜ ๊ฒฝ๋กœ ํ…œํ”Œ๋ฆฟ ์‚ฌ์šฉ (`X`๋Š” ๋ฌด์ž‘์œ„ ์˜์ˆซ์ž ๋ฌธ์ž๋กœ ๋Œ€์ฒด๋จ):
1515

โ€Žpages.ko/osx/say.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99

1010
- [f]ํŒŒ์ผ์„ ์†Œ๋ฆฌ๋‚ด์–ด ์ฝ๊ธฐ:
1111

12-
`say --input-file={{ํŒŒ์ผ๋ช….txt}}`
12+
`say --input-file {{ํŒŒ์ผ๋ช….txt}}`
1313

1414
- ์‚ฌ์šฉ์ž ์ง€์ • ์Œ์„ฑ๊ณผ ์†๋„๋กœ ๋ฌธ๊ตฌ ๋งํ•˜๊ธฐ:
1515

16-
`say --voice={{์Œ์„ฑ}} --rate={{๋ถ„๋‹น_๋‹จ์–ด_์ˆ˜}} "{{๋ฏธ์•ˆํ•ด ๋ฐ์ด๋ธŒ, ๊ทธ๋ ‡๊ฒŒ ํ•  ์ˆ˜ ์—†์–ด.}}"`
16+
`say --voice {{์Œ์„ฑ}} --rate {{๋ถ„๋‹น_๋‹จ์–ด_์ˆ˜}} "{{๋ฏธ์•ˆํ•ด ๋ฐ์ด๋ธŒ, ๊ทธ๋ ‡๊ฒŒ ํ•  ์ˆ˜ ์—†์–ด.}}"`
1717

1818
- ์‚ฌ์šฉ ๊ฐ€๋Šฅํ•œ ์Œ์„ฑ ๋ชฉ๋ก ๋‚˜์—ด (๋‹ค์–‘ํ•œ ์–ธ์–ด๋กœ ๋งํ•˜๋Š” ์Œ์„ฑ):
1919

20-
`say --voice="?"`
20+
`say --voice "?"`
2121

2222
- ํด๋ž€๋“œ์–ด๋กœ ๋งํ•˜๊ธฐ:
2323

24-
`say --voice={{Zosia}} "{{Litwo, ojczyzno moja!}}"`
24+
`say --voice {{Zosia}} "{{Litwo, ojczyzno moja!}}"`
2525

2626
- ์Œ์„ฑ ํ…์ŠคํŠธ์˜ ์˜ค๋””์˜ค ํŒŒ์ผ ์ƒ์„ฑ:
2727

28-
`say --output-file={{ํŒŒ์ผ๋ช….aiff}} "{{Here's to the Crazy Ones.}}"`
28+
`say --output-file {{ํŒŒ์ผ๋ช….aiff}} "{{Here's to the Crazy Ones.}}"`

โ€Žpages.ko/osx/shuf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- ์ถœ๋ ฅ์„ ๋‹ค๋ฅธ ํŒŒ์ผ์— ์“ฐ๊ธฐ:
1515

16-
`shuf {{๊ฒฝ๋กœ/๋Œ€์ƒ/์ž…๋ ฅ_ํŒŒ์ผ}} --output={{๊ฒฝ๋กœ/๋Œ€์ƒ/์ถœ๋ ฅ_ํŒŒ์ผ}}`
16+
`shuf {{๊ฒฝ๋กœ/๋Œ€์ƒ/์ž…๋ ฅ_ํŒŒ์ผ}} --output {{๊ฒฝ๋กœ/๋Œ€์ƒ/์ถœ๋ ฅ_ํŒŒ์ผ}}`
1717

1818
- 1์—์„œ 10๊นŒ์ง€์˜ ๋ฒ”์œ„์—์„œ ๋ฌด์ž‘์œ„ ์ˆซ์ž ์ƒ์„ฑ:
1919

โ€Žpages.nl/common/alias.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Maakt een alias aan -- Woorden die vervangen worden door commando's.
44
> Een alias blijft bestaan in de huidige shell sessie, tenzij gedefinieerd in de configuratie van de shell, bijvoorbeeld in `~/.bashrc`.
5-
> Meer informatie: <https://tldp.org/LDP/abs/html/aliases.html>.
5+
> Meer informatie: <https://manned.org/alias>.
66
77
- Overzicht alle aliases:
88

โ€Žpages.nl/common/env.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,7 @@
2626
- Zet meerdere variabelen en voer een programma uit:
2727

2828
`env {{variabele1=waarde variabele2=waarde variabele3=waarde ...}} {{programma}}`
29+
30+
- Voer een programma uit onder een andere naam:
31+
32+
`env {{[-a|--argv0]}} {{aangepaste_naam}} {{programma}}`

0 commit comments

Comments
ย (0)