interact/checklist.sh

21 lines
291 B
Bash
Raw Permalink Normal View History

2021-08-25 18:31:43 +03:00
#!/usr/bin/env bash
source lib/*
items=(
"first item"
"second item"
"third item"
"some another item" )
checklist "${items[@]}"
__text() {
echo "Checked items is:"
for item in "${CHECKED_ITEMS[@]}"; do
echo -e " - $item"
done
}
messagebox "$(__text)"