Skip to content

Instantly share code, notes, and snippets.

@inky
inky / udidlist.py
Created October 6, 2012 14:27
List the UDIDs in a provisioning profile. (For iOS/OS X developers.)
import optparse
import os
import plistlib
import sys
PLIST_START = '<?xml'
PLIST_END = '</plist>'
def udidlist(fn):
fn = os.path.expanduser(fn)