Adding a zero to single digit variable

前端 未结 10 2109
星月不相逢
星月不相逢 2021-01-30 05:31

Trying to add a zero before the varaible if it\'s less than 10 and create said directory. I can\'t seem to get the zero to add correctly. Keeps resulting in making 02.1.20

10条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-30 06:20

    path=/tmp
    ruby -rfileutils -e '1.upto(31){|x| FileUtils.mkdir "'$path'/02.%02d.2011" % x}'
    

提交回复
热议问题