PhieuLang

List_acc

Jul 18th, 2013
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.31 KB | None | 0 0
  1. #Include <String.au3>
  2. #include <Array.au3>
  3. #include <File.au3>
  4.  
  5. Global $listadd
  6.  
  7. _FileReadToArray("input.txt", $listadd)
  8.  
  9. $f = FileOpen("output.txt",2+8+128)
  10. For $i = 1 to UBound($listadd)-1
  11.       ConsoleWrite($listadd[$i] & "/pass" & @CRLF)
  12.       FileWrite($f,$listadd[$i] & "/pass" & @CRLF)
  13. Next
  14. FileClose($f)
Advertisement
Add Comment
Please, Sign In to add comment