Skip to content

Instantly share code, notes, and snippets.

@stwind
Last active June 11, 2018 09:28
Show Gist options
  • Save stwind/5232296 to your computer and use it in GitHub Desktop.
Save stwind/5232296 to your computer and use it in GitHub Desktop.
bash oneliner to print uuid with python
python -c "import uuid;print str(uuid.uuid4())" | tr -d '\n'
@pesterhazy
Copy link

python -c "import uuid, sys;sys.stdout.write(str(uuid.uuid4()))"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment