Skip to content

Instantly share code, notes, and snippets.

@badwulfy
badwulfy / fetch-libimobiledevice.sh
Created January 28, 2024 20:25 — forked from Lessica/fetch-libimobiledevice.sh
Fetch libraries and executables for macOS from libimobiledevice artifacts. This script will make executables runnable without install them to specific paths.
#!/bin/sh
set -e
if ! test -x "`which ldid`"; then
echo "Cannot find ldid, you may install it via Homebrew."
exit 1
fi
if [ ! -d "$(xcode-select -p)" ]; then