summaryrefslogtreecommitdiff
path: root/tools/lib.sh
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-04-05 17:09:10 -0300
committerEuAndreh <eu@euandre.org>2024-04-05 17:13:44 -0300
commit905dab9e4bcfc9c768d4c9e57d5021624b7b499e (patch)
tree06eb4021d5fb2063c5c7aa71838c221971b334d8 /tools/lib.sh
parentMove unit tests out of src/*.c into tests/ (diff)
downloadpindaiba-905dab9e4bcfc9c768d4c9e57d5021624b7b499e.tar.gz
pindaiba-905dab9e4bcfc9c768d4c9e57d5021624b7b499e.tar.xz
rm -rf tools/ doc/*
Diffstat (limited to 'tools/lib.sh')
-rw-r--r--tools/lib.sh49
1 files changed, 0 insertions, 49 deletions
diff --git a/tools/lib.sh b/tools/lib.sh
deleted file mode 100644
index 0412d7c..0000000
--- a/tools/lib.sh
+++ /dev/null
@@ -1,49 +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}"
-}
-
-red() {
- RED="\033[0;31m"
- printf "${RED}${1}${END}"
-}