Search Results

0
votes

How do I prompt for input in a Linux shell script?

inquire () { echo -n "$1 [$2/$3]? " read answer finish="-1" while [ "$finish" = '-1' ] do finish="1" if [ "$answer" = '' ]; then answer="" else case …