bash-utils/shtpl/test.sh

14 lines
196 B
Bash
Executable File

# With env variables
## On single line
WHO=Doctor nbrBoucle=5 ./boucle.shtpl
## Multiline
WHO=Doctor \
nbrBoucle=5 \
./boucle.shtpl
# Save result to file
WHO=Doctor ./boucle.shtpl > final.txt