aboutsummaryrefslogtreecommitdiff
path: root/aux/lib.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-07-27 12:01:18 -0300
committerEuAndreh <eu@euandre.org>2021-07-27 12:01:21 -0300
commitf428574ec4bf3d65954ed1b0c34ed86730f67647 (patch)
tree09b05e02770b9bbc0c943a67e13c706d67826e9d /aux/lib.sh
parentaux/: Stick to 80 columns (diff)
downloadgit-permalink-f428574ec4bf3d65954ed1b0c34ed86730f67647.tar.gz
git-permalink-f428574ec4bf3d65954ed1b0c34ed86730f67647.tar.xz
Remove extra \\ after | in line breaks
Implements #task-1f103822-c865-254c-f6b6-4968f2fb473e.
Diffstat (limited to 'aux/lib.sh')
-rwxr-xr-xaux/lib.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/aux/lib.sh b/aux/lib.sh
index c31c4fb..d64409a 100755
--- a/aux/lib.sh
+++ b/aux/lib.sh
@@ -7,8 +7,8 @@
uuid() {
# Taken from:
# https://serverfault.com/a/799198
- od -xN20 /dev/urandom | \
- head -1 | \
+ od -xN20 /dev/urandom |
+ head -1 |
awk '{OFS="-"; print $2$3,$4,$5,$6,$7$8$9}'
}