Skip to content

Instantly share code, notes, and snippets.

@SanichKotikov
Created June 19, 2023 07:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SanichKotikov/a8104f5ff2c1f056207c758e81772f2e to your computer and use it in GitHub Desktop.
Save SanichKotikov/a8104f5ff2c1f056207c758e81772f2e to your computer and use it in GitHub Desktop.
for file in *; do
if [ -f "$file" ]; then
if [ "$file" = "convert_images.sh" ];
then
continue
fi
sips -s format heic -s formatOptions 100 $file --out ./
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment