Quote:
Originally Posted by fabrieunko
hello why when i type this command i get the following message?
Code:
for /f "tokens=*" %%i in ('dir /b /s /a *.mp4') do cd.>"%%i"
%%i was unexpected
|
You need to replace %%i with %i when using cmd. Double % is for batch files.