Skip to content

Instantly share code, notes, and snippets.

@miPlodder
Last active July 15, 2022 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miPlodder/474c059e605f98be6abfe2b5cb31ccd6 to your computer and use it in GitHub Desktop.
Save miPlodder/474c059e605f98be6abfe2b5cb31ccd6 to your computer and use it in GitHub Desktop.
Scripting and Batching Starter Guide
  • Opening and generating a load of 100 Tabs in browser
@echo off
for /l %%x in (1, 1, 100) do (
	start http://localhost:8080/endpoint
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment