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 | |
parent | Use designated initializer for hnel table (diff) | |
download | src-d8c03e2de551c392143c2829fb89304669086707.tar.gz src-d8c03e2de551c392143c2829fb89304669086707.zip |
Add tup
-rwxr-xr-x | home/.bin/tup | 7 | ||||
-rwxr-xr-x | link.sh | 1 |
2 files changed, 8 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" diff --git a/link.sh b/link.sh index c0c815d0..33f67768 100755 --- a/link.sh +++ b/link.sh @@ -27,6 +27,7 @@ link '.bin/hnel.c' link '.bin/jrp.c' link '.bin/pbd.c' link '.bin/sup' +link '.bin/tup' link '.bin/up' link '.bin/xx.c' link '.config/git/config' |