mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-10 20:55:48 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
24 lines
754 B
Markdown
24 lines
754 B
Markdown
# choco new
|
|
|
|
> Générez de nouveaux fichiers de spécifications de package avec Chocolatey.
|
|
> Plus d'informations : <https://chocolatey.org/docs/commands-new>.
|
|
|
|
- Créer un nouveau squelette de package :
|
|
|
|
`choco new {{paquet}}`
|
|
|
|
- Créer un nouveau package avec une version spécifique :
|
|
|
|
`choco new {{paquet}} --version {{version}}`
|
|
|
|
- Créer un nouveau package avec un nom de responsable spécifique :
|
|
|
|
`choco new {{paquet}} --maintainer {{nom_mainteneur}}`
|
|
|
|
- Créer un nouveau package dans un répertoire de sortie personnalisé :
|
|
|
|
`choco new {{paquet}} --output-directory {{chemin/vers/répertoire}}`
|
|
|
|
- Créez un nouveau package avec des URL d'installation 32 bits et 64 bits spécifiques :
|
|
|
|
`choco new {{paquet}} url="{{url}}" url64="{{url}}"`
|