Skip to content

Instantly share code, notes, and snippets.

@the-eric-kwok
Last active April 2, 2021 04:33
Show Gist options
  • Save the-eric-kwok/3b3b7f17ebd20606cd65b7a2d24c5168 to your computer and use it in GitHub Desktop.
Save the-eric-kwok/3b3b7f17ebd20606cd65b7a2d24c5168 to your computer and use it in GitHub Desktop.
Mount ESP on macOS.
#!/bin/zsh
DISKS=($(diskutil list | grep -i efi | grep -o "disk[0-9]s[0-9]"))
for disk in $DISKS; do
echo "正在挂载 $disk..."
sudo diskutil mount $disk
done
open /Volumes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment