summaryrefslogtreecommitdiffstats
path: root/examples/yesno/yesno.sh
blob: d0d9b47b872235c88cdd7b9e5eb03fbcae0f648d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env 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