Skip to content

Instantly share code, notes, and snippets.

@Justman100
Last active December 15, 2024 00:16
Show Gist options
  • Select an option

  • Save Justman100/239710c5764f6cae9b70a7daf042f70c to your computer and use it in GitHub Desktop.

Select an option

Save Justman100/239710c5764f6cae9b70a7daf042f70c to your computer and use it in GitHub Desktop.
GenerateRandomString
#!/bin/bash
if [[ $1 ]]; then
length=$1
else
length=64
fi
tr -dc A-Za-z0-9_ < /dev/urandom | head -c $length | xargs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment