Я ищу, что может быть в foo
:
$ echo blah && foo && echo the sequel
blah
Do you want to continue? [y/n]: n
$ echo blah && foo && echo the sequel
blah
Do you want to continue? [y/n]: y
blah
$
Я ищу, что может быть в foo
:
$ echo blah && foo && echo the sequel
blah
Do you want to continue? [y/n]: n
$ echo blah && foo && echo the sequel
blah
Do you want to continue? [y/n]: y
blah
$
Стандартный? Нет.
Вы могли бы сделать
foo() {
local answer
while true; do
read -p "Do you wish to continue? [y/n]: " answer
case $answer in
[yY]*) return 0 ;;
[nN]*) return 1 ;;
esac
done
}