Home
>
Mac OS X > Applescript for generating Random UUID
Applescript for generating Random UUID
I wrote my first Applescript today and I thought it could be useful, so I decided to share it with you
This script generates a random UUID and copies it to the clipboard.
set the clipboard to (do shell script "python -c 'import uuid; print uuid.uuid1()'")
Share this
Diese Icons verlinken auf Bookmark Dienste bei denen Nutzer neue Inhalte finden und mit anderen teilen können.
I wrote my first Applescript today and I thought it could be useful, so I decided to share it with you :)
This script generates a random UUID and copies it to the clipboard.
set the clipboard to (do shell script "python -c 'import uuid; print uuid.uuid1()'")
Thank you !