我想用一个前导零迭代一个值.
shell中的等价物是:
for i in $(seq -w 01 99) ; do echo $i ; done
for my $i ("00" .. "99") { print "$i\n"; }