executable_wi-image-rotate.sh 73 B

1234567
  1. #!/bin/sh
  2. for file in *
  3. do
  4. convert "$file" -rotate 180 "$file"
  5. done