题目:打印出001002003这样的格式的数字参考答案方法1:{}生成序列[root@shell~]#echo00{1..3}
001
002
003方法2:seq法[root@shell~]#seq-w100
001
002
003
004
005
006
007
…………
[root@shell~]#seq-w100|sed-n‘1,3p‘
001
002
003此法效率不高。尽量让第一次的结果越接近最..
分类:
其他好文 时间:
2017-06-27 08:13:40
阅读次数:
218