Created
June 2, 2017 22:06
-
-
Save Saoneth/0abea0f814b44c11b323d2a82e2f49b0 to your computer and use it in GitHub Desktop.
Watches directory for .url files and launches them with firefox
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
@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