Last active
May 8, 2024 12:40
-
-
Save karoltheguy/f38f72502eb06757e7b5879f2857f0f9 to your computer and use it in GitHub Desktop.
Batch file for loop csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@for /F "tokens=1,2,3 skip=1 delims=," %%A in (test.txt) do ( | |
@echo I am at %%A using login %%B:%%C | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To be used with a csv file like blow:
computer,login,password
home,mylogin,mypassword
work,my2ndlogin,my2ndpassword