xrsh-com/com/isoterminal/mnt/confirm

11 lines
205 B
Plaintext
Raw Normal View History

#!/bin/sh
test -f /mnt/V86 && {
jsh confirm $1 $2
}
test -f /mnt/V86 || {
read -p "$(printf "\033[0m")[?] $1 [y/n] $(printf "\033[0m")" y
test $y = y && echo true && exit
echo false
}