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