04-26-2019, 01:02 PM
(04-26-2019, 12:48 PM)Kevin Wrote: You cannot use single-quotes on a Windows command line.
Try this:
Code:
"C:\Program Files\GIMP 2\bin\gimp-2.10.exe" -b "(timbo \"C:\\Folder1\\Folder2\\*.JPG\" 0.5)"
Normally you don't need backslashes in file names (the only place where these need to be backslashes is "naked" file names in a command prompt) so
Code:
"C:/Program Files/GIMP 2/bin/gimp-2.10.exe" -b "(timbo \"C:/Folder1/Folder2/*.JPG\" 0.5)"
would work just as well.