summaryrefslogtreecommitdiff
path: root/aux/lib.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-17 19:58:51 -0300
committerEuAndreh <eu@euandre.org>2024-11-17 19:58:51 -0300
commitff8f00b960f00f1db0bd7dc04de6c69cabc65f88 (patch)
treedd272ed8905fb70eb39300427936ee103726a0f5 /aux/lib.sh
parentrm src/bin/pb (diff)
downloadeuandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.gz
euandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.xz
rm -rf aux/
Diffstat (limited to '')
-rwxr-xr-xaux/lib.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/aux/lib.sh b/aux/lib.sh
deleted file mode 100755
index ba18f9a..0000000
--- a/aux/lib.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/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 "${TMPDIR:-/tmp}/uuid-tmpname with spaces.$(uuid)"
-}
-
-mkstemp() {
- name="$(tmpname)"
- touch "$name"
- echo "$name"
-}
-
-mkdtemp() {
- name="$(tmpname)"
- rm -f "$name"
- mkdir "$name"
- echo "$name"
-}