ArchivedTools/ScanScripts/Windows/magazines/Rarely used scripts/pages/cropped/rotate.cmd

4 lines
95 B
Batchfile
Raw Normal View History

2023-12-21 01:01:29 +00:00
if not exist rotated mkdir rotated
for %%i in (*.png) DO (
convert %%i -rotate 90 rotated\%%i
)