I am transferring a program from my computer (a mac) to my work PC (running Windows 7) and trying to reproduce a command line script that found files and passed them one at a time to a python program. I have no admin privileges on my PC so editing my PATHTEXT variable is not an option.
I used this command in my UNIX shell:
find /wip -name '*.csv' | xargs -L 1 python hipaaGenPOC_v2.py
On my PC I have tried using FORFILES
FORFILES /p test /c "python hipaaGenPOC_v3.py @PATH"
But all this does is open a python terminal for every file in the test directory.
Please help.
R