前言

最近在并行处理hadoop的part日志,要生成part-*这样的字符串,需要在数字前面补0。本文介绍如何使用shell命令格式化输出数字并在前面补0。

代码

part=`printf "part-%05d" $i`