aboutsummaryrefslogtreecommitdiff
path: root/aux/lib.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-10 17:49:29 -0300
committerEuAndreh <eu@euandre.org>2023-03-10 17:49:29 -0300
commit840e4a283dde35fe077ea26c738d663b60ac50a1 (patch)
treecb7ad48affcb8fddce1a840a46e4fd6de817ff2f /aux/lib.sh
parentsrc/infrastructure/ssh.conf: Move to dotfiles (diff)
downloadtoph-840e4a283dde35fe077ea26c738d663b60ac50a1.tar.gz
toph-840e4a283dde35fe077ea26c738d663b60ac50a1.tar.xz
rm -rf aux/ README.md
Diffstat (limited to 'aux/lib.sh')
-rw-r--r--aux/lib.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/aux/lib.sh b/aux/lib.sh
deleted file mode 100644
index 9d183f9..0000000
--- a/aux/lib.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-
-assert_arg() {
- if [ -z "$1" ]; then
- printf 'Missing %s.\n\n' "$2" >&2
- cat <<-'EOF'
- usage >&2
- exit 2
- EOF
- fi
-}
-
-uuid() {
- 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)"
- mkdir "$name"
- echo "$name"
-}