Created
September 5, 2018 11:33
-
-
Save DataTurks/79f796cf37bb06476ea210dd927e79f0 to your computer and use it in GitHub Desktop.
This file contains 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 | |
set _DIR_PATH=%1 | |
set _DATATURKS_OUT=dataturks_urls.txt | |
echo.>%_DATATURKS_OUT% | |
for /f "tokens=1-2 delims=:" %%a in ('ipconfig^|find "IPv4"') do set ip=%%b | |
set ip=%ip:~1% | |
for /r %%i in (%_DIR_PATH%\*.*) do echo http://%ip%:8000/%%~nxi >>%_DATATURKS_OUT% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment