summary refs log tree commit diff
path: root/home/.local/bin/tup
blob: 29af9b0a30955d2c7934ac169e2fa95bc0628f14 (plain) (blame)
1
2
3
4
5
6
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"