diff options
author | June McEnroe <june@causal.agency> | 2017-07-31 23:31:13 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-07-31 23:31:13 -0400 |
commit | d8c03e2de551c392143c2829fb89304669086707 (patch) | |
tree | 2aabd0424d611f2e31bcbb083a87a0e8f5a24300 /home/.bin/tup | |
parent | Use designated initializer for hnel table (diff) | |
download | src-d8c03e2de551c392143c2829fb89304669086707.tar.gz src-d8c03e2de551c392143c2829fb89304669086707.zip |
Add tup
Diffstat (limited to '')
-rwxr-xr-x | home/.bin/tup | 7 |
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" |