summary refs log tree commit diff
path: root/home
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-07-31 23:31:13 -0400
committerJune McEnroe <june@causal.agency>2017-07-31 23:31:13 -0400
commitd8c03e2de551c392143c2829fb89304669086707 (patch)
tree2aabd0424d611f2e31bcbb083a87a0e8f5a24300 /home
parentUse designated initializer for hnel table (diff)
downloadsrc-d8c03e2de551c392143c2829fb89304669086707.tar.gz
src-d8c03e2de551c392143c2829fb89304669086707.zip
Add tup
Diffstat (limited to '')
-rwxr-xr-xhome/.bin/tup7
1 files changed, 7 insertions, 0 deletions
diff --git a/home/.bin/tup b/home/.bin/tup
new file mode 100755
index 00000000..29af9b0a
--- /dev/null
+++ b/home/.bin/tup
@@ -0,0 +1,7 @@
+#!/usr/bin/env zsh
+set -o errexit -o nounset -o pipefail
+
+dir=$(mktemp -d)
+cat > "$dir/input.txt"
+up "$dir/input.txt"
+rm -r "$dir"