From cd0f059ef58b7b04877bd938b223f16b679d030e Mon Sep 17 00:00:00 2001 From: Kleidi Bujari Date: Sun, 1 Sep 2024 20:15:11 -0400 Subject: init --- randpass | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 randpass diff --git a/randpass b/randpass new file mode 100755 index 0000000..180fd3e --- /dev/null +++ b/randpass @@ -0,0 +1,8 @@ +#!/bin/sh +# +# Generate mostly random string with alphanumerics +# +# ARGS +# $1: num of chars to output, default 14 + +tr -dc '[:alnum:]'