diff options
author | EuAndreh <eu@euandre.org> | 2023-03-13 14:25:15 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-13 14:25:15 -0300 |
commit | 862271d704f1d096a26e0b3ff147b70ae94a64e3 (patch) | |
tree | cef7a195e779602beb9e951e6b7dbfabc69d5321 /aux/lib.sh | |
parent | git mv src/xyz/euandreh/* src/org/euandre/ (diff) | |
download | package-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.gz package-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.xz |
rm -rf aux/ po/
Diffstat (limited to '')
-rwxr-xr-x | aux/lib.sh | 30 |
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" -} |