pass arguments to external program


/ Published in: DOS Batch
Save to your folder(s)



Copy this code and paste it in your HTML
  1. for %%f in (*.pdf) do call :process %%f
  2. :process
  3. for /f %%v in ('"perl des.pl %1 %modelname%"') do set num=%%v
  4.  
  5. //pass each filename as argument to perl script to process and return a value to be processed in batch

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.