Last active 1724697805

Generates a random string usable for passwords or tokens

mathias revised this gist 1724697800. Go to revision

No changes

mathias revised this gist 1716551291. Go to revision

1 file changed, 3 insertions

secret.sh(file created)

@@ -0,0 +1,3 @@
1 + #!/bin/sh
2 +
3 + tr -dc A-Za-z0-9 </dev/urandom | head -c 40; echo
Newer Older