I\'m writing a bash script to get some podcasts. The problem is that some of the podcast numbers are one digits while others are two/three digits, therefore I need to pad t
to avoid context switching:
a="123" b="00000${a}" c="${b: -5}"