misc/powershell/thisDirStripExif.ps1
adam 2d132e2fbf other old stuff for archiving.
yes I remembered to strip my sublime text license key out of the w10 boilerplate :P
2023-03-07 10:59:06 -05:00

4 lines
96 B
PowerShell

Get-ChildItem *.jpg | foreach-object
{
magick convert $_.Name -auto-orient -strip $_.Name
}