view bin/pwgen @ 684:6010e722b5da

[irbrc] Disable syntax highlighting as it slows down things Reference: https://github.com/ruby/irb/issues/292
author nanaya <me@nanaya.pro>
date Wed, 14 Sep 2022 19:06:13 +0900
parents bdc9eddf3743
children
line wrap: on
line source

#!/bin/sh

set -e
set -u

_length="${1:-12}"

for i in 1 2 3 4 5; do
  printf "%s: " "$i"
  openssl rand -base64 "$_length" | tr '/+' '-_' | cut -c "1-$_length"
done