summaryrefslogtreecommitdiff
path: root/tools/lib.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-03-07 09:33:16 -0300
committerEuAndreh <eu@euandre.org>2024-03-07 09:33:16 -0300
commitb1942cadada951d664e38be15214e65be4c93530 (patch)
tree77215a0b0d98c2bcbc6ea66b862a8bc041efd9c1 /tools/lib.sh
parentsrc/hero.mjs: Better handling of default values for arguments (diff)
downloadpapod-b1942cadada951d664e38be15214e65be4c93530.tar.gz
papod-b1942cadada951d664e38be15214e65be4c93530.tar.xz
rm -rf tools/
Diffstat (limited to 'tools/lib.sh')
-rw-r--r--tools/lib.sh44
1 files changed, 0 insertions, 44 deletions
diff --git a/tools/lib.sh b/tools/lib.sh
deleted file mode 100644
index 23953d2..0000000
--- a/tools/lib.sh
+++ /dev/null
@@ -1,44 +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"
-}
-
-END="\033[0m"
-yellow() {
- YELLOW="\033[0;33m"
- printf "${YELLOW}${1}${END}"
-}
-
-green() {
- GREEN="\033[0;32m"
- printf "${GREEN}${1}${END}"
-}