Generate random passwords in shell with one specia

2019-06-14 10:58发布

I have the following code:

</dev/urandom tr -dc 'A-Za-z0-9@#$%&_+=' | head -c 16

which is randomly generating passwords perfectly.

I want two changes:

  1. It should only contain one special character listed above
  2. It should choose a random length

I tried with length = $(($RANDOM%8+9))

then putting length as

</dev/urandom tr -dc 'A-Za-z0-9@#$%&_+=' | head -c$length

but got no positive result.

1条回答
倾城 Initia
2楼-- · 2019-06-14 11:34
#! /bin/bash
chars='@#$%&_+='
{ </dev/urandom LC_ALL=C grep -ao '[A-Za-z0-9]' \
        | head -n$((RANDOM % 8 + 9))
    echo ${chars:$((RANDOM % ${#chars})):1}   # Random special char.
} \
    | shuf \
    | tr -d '\n'
  • LC_ALL=C prevents characters like ř from appearing.
  • grep -o outputs just the matching substring, i.e. a single character.
  • shuf shuffles the lines. I originally used sort -R, but it kept the same characters together (ff1@22MvbcAA).
查看更多
登录 后发表回答