dotfiles/.local/bin/scripts/st-diff

8 lines
132 B
Bash
Executable File

#!/bin/sh
set -e
dif "$(st-unarchive "$1")" "$@"
echo "y to restore"
read answer
test "$answer" = "y" && st-restore "$1" || exit 0