How to add leading zero to bash range? For example, I need cycle 01,02,03,..,29,30 How can I implement this using bash?
This works:
printf " %02d" $(seq 1 30)