forked from skx/sysadmin-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
randpass
executable file
·60 lines (52 loc) · 876 Bytes
/
randpass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh
#
# About
# -----
# Generate simple passwords, via /dev/urandom.
#
#
# License
# -------
#
# Copyright (c) 2013 by Steve Kemp. All rights reserved.
#
# This script is free software; you can redistribute it and/or modify it under
# the same terms as Perl itself.
#
# The LICENSE file contains the full text of the license.
#
#
if [ ! -e /dev/urandom ]; then
echo "/dev/urandom isn't available"
exit 2
fi
#
# The character set to use.
#
cset="[:alnum:]"
#
# Default length
#
len=8
while getopts "h?fn:" opt; do
case $opt in
h)
echo "Usage: $0 [-n N] [-f]"
exit 0
;;
\?)
echo "Usage: $0 [-n N] [-f]"
exit 0
;;
f)
cset="[:graph:]"
;;
n)
len=$OPTARG
;;
esac
done
#
# Output the password
#
printf "%s\n" $(cat /dev/urandom | env LC_CTYPE=C tr -cd "$cset" | head -c $len )