Skip to content

Instantly share code, notes, and snippets.

@artburkart
Created March 2, 2019 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artburkart/58578cb8dbc6dc7f592b46a1710f32ec to your computer and use it in GitHub Desktop.
Save artburkart/58578cb8dbc6dc7f592b46a1710f32ec to your computer and use it in GitHub Desktop.
Command I sometimes use for generating passwords
#!/usr/bin/env bash
openssl rand -base64 100 | tr -dc A-Za-z0-9 | head -c32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment