dotfiles/.local/bin/scripts/st-diff
2021-03-30 18:07:58 +02:00

5 lines
124 B
Bash
Executable file

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