Pad

This generates a list of passwords, as a pad, I carry a subset of one of these with me in case I need a truly random password while I’m out. #!/bin/bash # SRJ 2016-09-20 Create reasonable passwords # 0 1 2 3 4 5 6 7 # 1234567890123456789012345678901234567890123456789012345678901234567890123456789 Chars="ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890.!@#$%&-_=+abcdefghijklmnopqrstuvwxyz" # The column labels are taken…