diff options
author | EuAndreh <eu@euandre.org> | 2022-01-18 11:40:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-18 14:02:59 -0300 |
commit | 47bfd2ed8c3219e79f8974a8fc2ac9265ed91bd2 (patch) | |
tree | 3d162596d874b4f775da12c843ad3918b593f713 /aux/lib.sh | |
parent | Initial empty commit (diff) | |
download | td-47bfd2ed8c3219e79f8974a8fc2ac9265ed91bd2.tar.gz td-47bfd2ed8c3219e79f8974a8fc2ac9265ed91bd2.tar.xz |
First commit, now with a clean history
Diffstat (limited to 'aux/lib.sh')
-rwxr-xr-x | aux/lib.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/aux/lib.sh b/aux/lib.sh new file mode 100755 index 0000000..b47812d --- /dev/null +++ b/aux/lib.sh @@ -0,0 +1,30 @@ +#!/bin/sh + +# +# Generally, utilities that I expected to exist in POSIX, but don't. +# + +uuid() { + # Taken from: + # https://serverfault.com/a/799198 + od -xN20 /dev/urandom | + head -n1 | + awk '{OFS="-"; print $2$3,$4,$5,$6,$7$8$9}' +} + +tmpname() { + echo 'mkstemp(template)' | m4 -D template="${TMPDIR:-/tmp}/m4-tmpname." +} + +mkstemp() { + name="$(tmpname)" + touch "$name" + echo "$name" +} + +mkdtemp() { + name="$(tmpname)" + rm -f "$name" + mkdir "$name" + echo "$name" +} |