Skip to content

Instantly share code, notes, and snippets.

@kimitoboku
Created November 19, 2015 06:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimitoboku/cefc3ddf33f300ca120d to your computer and use it in GitHub Desktop.
Save kimitoboku/cefc3ddf33f300ca120d to your computer and use it in GitHub Desktop.
100個の乱数生成
#! /bin/bash
for i in {0..100}
do
cat /dev/urandom | base64 | fold -w 20 | head -n 1 >> download_key
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment