2
我想產生一個巨大的排序號碼清單0填充生成
for example:
00000000
00000001
00000002
.
.
99999997
99999998
99999999
我嘗試類似的數字巨大的名單:
for i in $(seq 00000000 99999999);do echo ${i} >> filelist.txt;done
這有兩個問題。
1: the range is too big and the system cant handle it
2: the numbers arent padded so I end up with something like this:
1
2
3
.
.
998
999
1000
任何幫助將不勝感激..
您的解決方案比我好多了,我服務的權利不讀手冊頁:-) –
完美..謝謝你了! – Almus