This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# (replace the preceding line with the path to Bash on your system) | |
# Takes the list of items as command-line parameters | |
# Interacts using stdin+stderr | |
# Writes the answer to stdout | |
# Use like: | |
# result=$( bash dialog.bash Foo Bar Zot Baz ) || exit | |
# or |
OlderNewer