Shell

嘗試將隨機密碼字元生成到文件中

  • November 22, 2018

我想在使用創建一些目錄的腳本時生成100帶有100隨機密碼的文件。/mnt/mymnt/passwords

即使我嘗試使用cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 30 | head -n 1 > some_random_file.txt該過程也不會停止,有人知道為什麼嗎?

我會通過以下方式做到這一點:

#!/bin/bash
for i in {1..100}
do
  cat /dev/urandom | tr -dc '_A-Za-z0-9' | head -c${1:-32} > Password$i
done

引用自:https://unix.stackexchange.com/questions/482803