How to append data in the content of Notepad
I used the command line (for /l %i in (00000000,1,99999999) do @echo %i > dict.txt) to create a file
After execution, the content of dict.txt is:
00000000
00000001
...........
99999999
Now I want to add the same data in front of each line of data, such as 130, or 139 and so on, and then get
Such as? 13000000000
13000000001
13099999999
Dear "great immortals", how can I operate in batches?
I used the command line (for /l %i in (00000000,1,99999999) do @echo %i > dict.txt) to create a file
After execution, the content of dict.txt is:
00000000
00000001
...........
99999999
Now I want to add the same data in front of each line of data, such as 130, or 139 and so on, and then get
Such as? 13000000000
13000000001
13099999999
Dear "great immortals", how can I operate in batches?


