Is there a way I can port this:
printf '=%.0s' {1..100} > file.txt
from bash to the cmd console?
To see what the code above does look here.
I can think of a few workarounds with variables and for-loops but I hoped for a quick and easy solution that doesn't require an the "-v" option set for the cmd in question (the shell is opened by make
so as far as I know you can't specify the "-v" option).