Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.
|
Generates a random alphanumeric string. Useful for generating random passwords randstr <lenght> -n [on|off] -u [on|off] -l [on|off] -count <number of strings> -seed id.<string> <length> : Number of characters in the string -n : Whether you want numbers in the string (on) or not (off) -l : Whether you want lowercase letters in the string (on) or not (off) -u : Whether you want uppercase letters in the string (on) or not (off) -count : Number of strings you want to get -seed : How the data will be obtained: new : completely random data (default) date.yyyy-mm-dd : data for a specific date id.<string> : get data from a seed EXAMPLES randstr 5 : sfA8k (example) randstr 5 -n off -l off : LFLDI (example) randstr 5 -l off -u off : 83021 (example) randstr 7 -count 3 : AsVp3HD OMfvKCW ioii4V8 (example) randstr 5 -seed id.YubNub : always returns KSEVT Author VkLJ