4 lines
96 B
PowerShell
4 lines
96 B
PowerShell
Get-ChildItem *.jpg | foreach-object
|
|
{
|
|
magick convert $_.Name -auto-orient -strip $_.Name
|
|
} |