You could say something like
Code: Select all
for /F %%A in (dir /b *.txt) do (
call yourFunction %%A
)
Code: Select all
for /F %%A in (dir /b *.txt) do (
call yourFunction %%A
)
Code: Select all
net use LPT1: /Delete
Code: Select all
gawk "BEGIN{printf\""%%s\n\"",4/7}"
Code: Select all
set path=%path%;"C:\path\to\gawk.exe"
Code: Select all
start "" /b gawk 'BEGIN{printf"%%s\n",4/7}'
Code: Select all
for /F %%A in ('powershell 7/3') do set aaa=%%A
Squashman wrote:Just did a Google search for the file you were looking for. Seems to be plenty of options for getting it.