Generate an indexed list of passwords
Generating an indexed list of passwords without complex perl or python:
pwgen -y 20 30 | nl -w 2 -n rz -s -
Explanation:
pwgen: -y = complex passwords (including symbols) ; 20 = length of password; 30 = number of passwords to generate
nl: -w 2 = zero pad to a width of two characters; -n rz = print right-justified; -s - = use dash as a separator