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

6 lines
124 B
Plaintext
Raw Normal View History

2021-03-30 16:07:58 +00:00
#!/bin/sh
dif "$(st-unarchive "$1")" "$@"
echo "y to restore"
read answer
test "$answer" = "y" && st-restore "$1" || exit 0