diff options
author | June McEnroe <programble@gmail.com> | 2017-09-06 13:06:36 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-09-06 13:07:36 -0400 |
commit | e08e024226086df183dccf15647903670f4e0914 (patch) | |
tree | 7966495a24a637797b5ef4b57b2a419ae8a7853e /home/.bin/tup | |
parent | Pass final NULL to execlp (diff) | |
download | src-e08e024226086df183dccf15647903670f4e0914.tar.gz src-e08e024226086df183dccf15647903670f4e0914.zip |
Rename curtis -> home
Why the heck did I do this?
Diffstat (limited to 'home/.bin/tup')
-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" |