Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.

randstring

http://random.org/strings/?num=${count=1}&len=%s&digits=${n=on}&upperalpha=${u=on}&loweralpha=${l=on}&unique=on&format=plain&rnd=${seed=new}
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

    
549 uses - Created 2008-05-16 16:28:18 - Last used 2017-10-12 23:51:18
Is this command broken? Tell Jon if you know how to fix it.
Do you find this command offensive? Let Jon know.