Created
October 23, 2018 15:10
-
-
Save vmanyushin/99d7b14a46656c4a73f20d2f7a9f8b66 to your computer and use it in GitHub Desktop.
Random string generator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
perl -e 'sub rndStr{ join"",@_[ map{rand @_}1..shift]};for($i=0;$i<$ARGV[0];$i++){ print rndStr($ARGV[1],'A'..'Z')."\n";}' 1 254 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment