diff options
Diffstat (limited to 'branding/scripts/osx-staple-uuid.py')
-rwxr-xr-x | branding/scripts/osx-staple-uuid.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/branding/scripts/osx-staple-uuid.py b/branding/scripts/osx-staple-uuid.py new file mode 100755 index 0000000..2db3699 --- /dev/null +++ b/branding/scripts/osx-staple-uuid.py @@ -0,0 +1,5 @@ +#!/usr/bin/env python3 +import sys +arg = sys.argv[1] +line = [x for x in arg.split('\n') if x.startswith('Status:')] +print(line[0].split('=')[1]) |