以下是引用犬虫门心在2011-2-25 16:47:07的发言:
不行啊。
你最终的要求是什么呢?
我就想要下面的效果(我语言表达能力欠缺)
root@~ #n=1
root@~ #printf "%0${n}d\n" 1
1
root@~ #n=2
root@~ #printf "%0${n}d\n" 1
01
root@~ #n=3
root@~ #printf "%0${n}d\n" 1
001
root@~ #n=10
root@~ #printf "%0${n}d\n" 1
0000000001
root@~ #
这个n怎么传递给printf呢?