diff options
Diffstat (limited to '')
-rwxr-xr-x | aux/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ uuid() { # Taken from: # https://serverfault.com/a/799198 od -xN20 /dev/urandom | - head -1 | + head -n1 | awk '{OFS="-"; print $2$3,$4,$5,$6,$7$8$9}' } |