drewish


One line command to generate a pass phrase   06 August 2020

I wanted to select some random words to use in a pass phrase and came up with the following one liner:

ruby -e 'puts IO.readlines("/usr/share/dict/words").sample(5).join.tr("\n"," ")'

← Back to the top