bash-utils/shtpl/test.sh

14 lines
196 B
Bash
Raw Normal View History

2018-10-09 16:54:38 +02:00
# 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