Skip to content

Instantly share code, notes, and snippets.

@Saoneth
Created June 2, 2017 22:06
Show Gist options
  • Save Saoneth/0abea0f814b44c11b323d2a82e2f49b0 to your computer and use it in GitHub Desktop.
Save Saoneth/0abea0f814b44c11b323d2a82e2f49b0 to your computer and use it in GitHub Desktop.
Watches directory for .url files and launches them with firefox
@echo off
:s
for %%a in (*.url) do (
"C:\Program Files\Firefox Developer Edition\firefox.exe" "%%a"
del "%%a"
)
ping 127.0.0.1 -n 2 > nul
goto s
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment