Bash command line help scripts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# With env variables |
|
|
|
## On single line |
|
WHO=Doctor nbrBoucle=5 ./test.shtpl |
|
|
|
## Multiline |
|
WHO=Doctor \ |
|
nbrBoucle=5 \ |
|
./test.shtpl |
|
|
|
# Save result to file |
|
|
|
WHO=Doctor ./test.shtpl > final.txt
|
|
|