
10.06.2010, 15:56
|
|
Moderator - Level 7
Регистрация: 12.07.2008
Сообщений: 1,705
Провел на форуме: 5914048
Репутация:
1350
|
|
2)На Powershell:
gc C:\login.txt | out-file -InputObject { $_+";123456"} -append -filepath C:\result.txt
Bat:
@echo
set password=123456
for /F %%i in (C:\login.txt) do echo %%i;%password% >> C:\result.txt
Последний раз редактировалось SpangeBoB; 10.06.2010 в 16:00..
|
|
|