如何实现字符串不足N位自动补零 Posted on 2009-08-19 In Linux 文本中有如下一列: 1234……100 我想把它输出为: 0001000200030004……0100 就是不足4位的前面补0 1awk '{printf("%04d\n",$0);}' filename