16 Character Random Password


/ Published in: Bash
Save to your folder(s)

This snippet will produce an alpha-numeric 16 character password


Copy this code and paste it in your HTML
  1. < /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-16};echo;

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.