diff options
author | turret <turret@duck.com> | 2023-11-11 16:31:43 -0600 |
---|---|---|
committer | turret <turret@duck.com> | 2023-11-11 16:31:43 -0600 |
commit | 9932a24001e292ed2fe66c32dabc3078514bb80b (patch) | |
tree | 91b998e5894bb6c2fddbabed228f82f13779fdd0 /.local/bin/random | |
parent | 952f0f8c87f2af900b53d5afe4c9dbc566b03ef4 (diff) | |
download | skel-9932a24001e292ed2fe66c32dabc3078514bb80b.tar.gz skel-9932a24001e292ed2fe66c32dabc3078514bb80b.tar.bz2 skel-9932a24001e292ed2fe66c32dabc3078514bb80b.zip |
local/bin: add utility scripts on my main box
Diffstat (limited to '.local/bin/random')
-rwxr-xr-x | .local/bin/random | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.local/bin/random b/.local/bin/random new file mode 100755 index 0000000..e3875f8 --- /dev/null +++ b/.local/bin/random @@ -0,0 +1,4 @@ +#!/bin/bash +CHARACTER_SET="[:punct:][:alnum:]" +read -r -n $1 rand < <(LC_ALL=C tr -dc "${CHARACTER_SET}" < /dev/urandom) +printf "%s" "${rand}" |