brian powell writes:
> * Is there a simple way in BABEL to interact/query a user--something like
> this won't work:
>
> #+begin_src sh
> cat blah-install.sh
> echo -n " Sure you want to run this install script code to install
> BlahSoftware? (y/n): "
> read CONFIRM
> case $CONFIRM in
> y|Y)
* Is there a simple way in BABEL to interact/query a user--something like
this won't work:
#+begin_src sh
cat blah-install.sh
echo -n " Sure you want to run this install script code to install
BlahSoftware? (y/n): "
read CONFIRM
case $CONFIRM in
y|Y) sh blah-software-install.sh;;
n|N)