1
0
mirror of https://github.com/0O0o0oOoO00/Alas.git synced 2026-05-14 08:49:24 +08:00
Files
Alas/blcrack/loadenv.bat
2025-11-01 00:23:46 +08:00

14 lines
206 B
Batchfile

@echo off
if not exist .env (
echo .env file not found!
exit /b 1
)
for /f "tokens=1* delims==" %%a in (.env) do (
if not "%%a" == "" (
set %%a=%%b
echo Set %%a to %%b
)
)