1 | | I've just fixed the problem. When installing "R-Tools" or other applications, who bring their own ''find'' (f.e. GNU find), the PATH variable get messed up. Using the fix supplied, Microsoft Windows' find.exe is used. |
| 1 | I've just fixed the problem. When installing "R-Tools" or other applications, who bring their own ''find'' (f.e. GNU find), the PATH variable get messed up. Using the fix supplied, Microsoft Windows' ''find.exe'' is used. |
| 2 | |
| 3 | {{{ |
| 4 | if exist *.%%a dir /d *.%%a | find ".%%a" >>"%temp%\o-help-list.txt" |
| 5 | }}} |
| 6 | vs. |
| 7 | {{{ |
| 8 | if exist *.%%a dir /d *.%%a | %windir%\system32\find ".%%a" >>"%temp%\o-help-list.txt" |
| 9 | }}} |