aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/cl16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/cl b/bin/cl
index 87d7c92..285136e 100755
--- a/bin/cl
+++ b/bin/cl
@@ -2,22 +2,6 @@
set -eu
-uuid() {
- od -xN20 /dev/urandom |
- head -n1 |
- awk '{OFS="-"; print $2$3,$4,$5,$6,$7$8$9}'
-}
-
-tmpname() {
- echo "${TMPDIR:-/tmp}/cl.tmpfile.$(uuid)"
-}
-
-mkstemp() {
- name="$(tmpname)"
- touch "$name"
- echo "$name"
-}
-
escape_name() {
printf '%s' "$1" |
sed 's|"|\\"|g' |