From e9834a80ca32c65c8341558ce73c46ff5319e628 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Tue, 3 Apr 2018 12:54:48 -0400 Subject: Move home bins to ~/.local/bin Also replaced ~/.cargo/bin with a symlink to ~/.local/bin to avoid having to have that in $path as well. --- home/.local/bin/tup | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 home/.local/bin/tup (limited to 'home/.local/bin/tup') diff --git a/home/.local/bin/tup b/home/.local/bin/tup new file mode 100755 index 00000000..29af9b0a --- /dev/null +++ b/home/.local/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" -- cgit 1.4.1