6
Comments
  • 3
    #!/bin/bash

    and then

    random_clean=$(echo "$random_raw" | tr -d ' ')

    hex_string=$(make_random_hex_string | tr '[:lower:]' '[:upper:]') # Uppercase hex

    I mean, why.....? :D

    random_clean=${random_raw// /}

    hex_string=$(make_random_hex_string)

    hex_string=${hex_string^^}

    Nice project though!
  • 2
  • 2
    @netikras bash version was an afterthought. I wrote the JS version and asked chatgpt to convert it to bash. It did what it did, it works, and it still has no phoning home
  • 0
    @retoor you mean bounce rate? :D thanks!

    geez, how do you manage to remember all that passwords? I have like 200 accounts in total, and there is no way I can remember all that
Add Comment