aboutsummaryrefslogtreecommitdiff
path: root/bin/uuid
diff options
context:
space:
mode:
Diffstat (limited to 'bin/uuid')
-rwxr-xr-xbin/uuid4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/uuid b/bin/uuid
index bdd0090..7aa1e58 100755
--- a/bin/uuid
+++ b/bin/uuid
@@ -17,7 +17,7 @@ help() {
-h, --help show this message
- Generate UUID from /dev/random.
+ Generate UUID from /dev/urandom.
Examples:
@@ -59,5 +59,5 @@ while getopts 'h' flag; do
done
shift $((OPTIND - 1))
-od -xN20 /dev/random |
+od -xN20 /dev/urandom |
awk 'NR == 1 { OFS="-"; print $2$3,$4,$5,$6,$7$8$9; exit }'