pages*/*: update some outdated pages, blackfire: fix placeholder (#14154)
This commit is contained in:
@@ -5,12 +5,12 @@
|
||||
|
||||
- Mostra una previsione usando unità SI per i prossimi cinque giorni in Rzeszow (Polonia):
|
||||
|
||||
`ansiweather -u {{metric}} -f {{5}} -l {{Rzeszow,PL}}`
|
||||
`ansiweather -u metric -f 7 -l {{Rzeszow,PL}}`
|
||||
|
||||
- Mostra una previsione con simboli e informazioni sulla luce solare per la tua posizione attuale:
|
||||
|
||||
`ansiweather -s {{true}} -d {{true}}`
|
||||
`ansiweather -F -s true -d true`
|
||||
|
||||
- Mostra una previsione con informazioni su vento ed umidità per la tua posizione attuale:
|
||||
|
||||
`ansiweather -w {{true}} -h {{true}}`
|
||||
`ansiweather -w true -h true`
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
- Stampa il testo come un banner con una larghezza di 50 caratteri:
|
||||
|
||||
`banner -w {{50}} "{{Hello World}}"`
|
||||
`banner -w 50 "{{Hello World}}"`
|
||||
|
||||
- Leggi testo da `stdin`:
|
||||
|
||||
|
@@ -13,7 +13,7 @@
|
||||
|
||||
- Esegui tutti i test di una specifica suite:
|
||||
|
||||
`behat --suite={{nome_suite}}`
|
||||
`behat --suite {{nome_suite}}`
|
||||
|
||||
- Esegui i test con uno specifico formato di output:
|
||||
|
||||
|
@@ -21,7 +21,7 @@
|
||||
|
||||
- Lancia il profiler e raccogli 10 campioni:
|
||||
|
||||
`blackfire --samples={{10}} run {{php percorso/del/file.php}}`
|
||||
`blackfire --samples 10 run {{php percorso/del/file.php}}`
|
||||
|
||||
- Lancia il profiler e mostra i risultati in output come JSON:
|
||||
|
||||
|
@@ -6,27 +6,27 @@
|
||||
|
||||
- Renderizza tutti i frame di una animazione in background, senza caricare l'interfaccia grafica (l'output è salvato in `/tmp`):
|
||||
|
||||
`blender --background {{nome_file}}.blend --render-anim`
|
||||
`blender --background {{nome_file.blend}} --render-anim`
|
||||
|
||||
- Renderizza un'animazione usando uno specifico pattern, in un percorso relativo (`//`) al file `.blend`:
|
||||
|
||||
`blender --background {{nome_file}}.blend --render-output //{{render/frame_###.png}} --render-anim`
|
||||
`blender --background {{nome_file.blend}} --render-output //{{render/frame_###.png}} --render-anim`
|
||||
|
||||
- Renderizza il decimo frame di un'animazione come singola immagine, salvandolo in una directory esistente (percorso assoluto):
|
||||
|
||||
`blender --background {{nome_file}}.blend --render-output {{/percorso/della/directory_output}} --render-frame {{10}}`
|
||||
`blender --background {{nome_file.blend}} --render-output {{/percorso/della/directory_output}} --render-frame {{10}}`
|
||||
|
||||
- Renderizza il penultimo frame di un'animazione come immagine JPEG, salvandolo in una directory esistente (path relativa al file):
|
||||
|
||||
`blender --background {{nome_file}}.blend --render-output //{{directory_output}} --render-frame {{JPEG}} --render-frame {{-2}}`
|
||||
`blender --background {{nome_file.blend}} --render-output //{{directory_output}} --render-frame {{JPEG}} --render-frame {{-2}}`
|
||||
|
||||
- Renderizza l'animazione di una specifica scena, dal frame 10 al 500:
|
||||
|
||||
`blender --background {{nome_file}}.blend --scene {{nome_scena}} --frame-start {{10}} --frame-end {{500}} --render-anim`
|
||||
`blender --background {{nome_file.blend}} --scene {{nome_scena}} --frame-start {{10}} --frame-end {{500}} --render-anim`
|
||||
|
||||
- Renderizza un'animazione ad una specifica risoluzione, attraverso l'utilizzo di uno script python:
|
||||
|
||||
`blender --background {{nome_file}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
|
||||
`blender --background {{nome_file.blend}} --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
|
||||
|
||||
- Avvia una sessione interattiva di Blender nel terminale con una console python (esegui `import bpy` dopo l'avvio):
|
||||
|
||||
|
@@ -20,10 +20,6 @@
|
||||
|
||||
`bower list`
|
||||
|
||||
- Mostra aiuto per un comando di bower:
|
||||
|
||||
`bower help {{comando}}`
|
||||
|
||||
- Crea un file bower.json per i tuoi pacchetti:
|
||||
|
||||
`bower init`
|
||||
@@ -31,3 +27,7 @@
|
||||
- Installa unoa specifica versione di una dipendenza ed aggiungila al file `bower.json`:
|
||||
|
||||
`bower install {{nome_locale}}={{pacchetto}}#{{versione}} --save`
|
||||
|
||||
- Mostra aiuto per un comando di bower:
|
||||
|
||||
`bower help {{comando}}`
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
- Installa pacchetti da un Brewfile specifico in un percorso specifico:
|
||||
|
||||
`brew bundle --file={{percorso/del/file}}`
|
||||
`brew bundle --file {{percorso/del/file}}`
|
||||
|
||||
- Crea un Brewfile con tutti i pacchetti installati:
|
||||
|
||||
|
Reference in New Issue
Block a user