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?
You can use seq's format option:
seq -f "%02g" 30