Skip to content

Instantly share code, notes, and snippets.

@rubenarakelyan
Last active January 25, 2022 14:44
Show Gist options
  • Save rubenarakelyan/d95ef68fa7bcc9b44c555f3fc47601b4 to your computer and use it in GitHub Desktop.
Save rubenarakelyan/d95ef68fa7bcc9b44c555f3fc47601b4 to your computer and use it in GitHub Desktop.
List of useful mini macOS scripts

Mount FAT32 partition in macOS with write permissions

diskutil list
sudo diskutil unmount /dev/disk2s1
sudo mkdir /Volumes/NAME
sudo mount -w -t msdos /dev/disk2s1 /Volumes/NAME

Convert HEIC images to JPEG and delete originals

for i in *.heic(:r) ; sips -s format jpeg "$i.heic" --out "$i.jpg" && rm "$1.heic"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment