Home > Mobile >  Passing multiple inputs to .bat file via Python script
Passing multiple inputs to .bat file via Python script

Time:10-24

I'm having a problem passing some arguments through my python script to a test.bat file.

//test.bat
@echo off
:: Extracting and input arguments
set IP=%1
set PASS=%~2
set DIR=%~3

:: Setup logfile
set LOG_FILE="           
  • Related