summaryrefslogtreecommitdiffstats
path: root/examples/yesno/yesno.sh
blob: b84ff1393a8ccbda57e2f0b47bef202b4cad9a3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

RES=$(
       ../../smenu -2 ^Y -1 ^N -3 ^C -s /^N -x cur 10 \
                   -m "Please confirm your choice:" \
         <<< "YES NO CANCEL"
     )

[[ -z "$RES" ]] && echo "'q' was hit, exiting without selecting anything" \
                || echo "You selected: $RES"

exit 0