Skip to content

Instantly share code, notes, and snippets.

@hahaopsmeow
Last active October 25, 2016 16:24
Show Gist options
  • Save hahaopsmeow/89009f468fa9e6accb13b75964f8dde9 to your computer and use it in GitHub Desktop.
Save hahaopsmeow/89009f468fa9e6accb13b75964f8dde9 to your computer and use it in GitHub Desktop.
Get UDID of connected iOS devices
#
# Returns UDID of iPod, iPad, iPhone connected to your Mac
$ system_profiler SPUSBDataType | sed -n -e '/iPad/,/Serial/p' -e '/iPhone/,/Serial/p' -e '/iPod/,/Serial/p' | grep "Serial Number:" | awk -F ": " '{print $2}'
#
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment