bash-utils/shtpl/test.sh

14 lines
190 B
Bash
Executable File

# 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