Skip to content

Instantly share code, notes, and snippets.

@karoltheguy
Last active May 8, 2024 12:40
Show Gist options
  • Save karoltheguy/f38f72502eb06757e7b5879f2857f0f9 to your computer and use it in GitHub Desktop.
Save karoltheguy/f38f72502eb06757e7b5879f2857f0f9 to your computer and use it in GitHub Desktop.
Batch file for loop csv
@for /F "tokens=1,2,3 skip=1 delims=," %%A in (test.txt) do (
@echo I am at %%A using login %%B:%%C
)
@karoltheguy
Copy link
Author

To be used with a csv file like blow:
computer,login,password
home,mylogin,mypassword
work,my2ndlogin,my2ndpassword

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment