Skip to content

Instantly share code, notes, and snippets.

View Justman100's full-sized avatar

Justman100

  • Germany
  • 19:46 (UTC +02:00)
View GitHub Profile
@Justman100
Justman100 / grs.sh
Last active December 15, 2024 00:16
GenerateRandomString
#!/bin/bash
if [[ $1 ]]; then
length=$1
else
length=64
fi
tr -dc A-Za-z0-9_ < /dev/urandom | head -c $length | xargs