Inside my Bash script, I\'m reading some variables entered by the user with read:
read
read -p \"Glassfish Path:\" GF_DIR
Now I wan
Try:
read -e -p "Glassfish Path:" GF_DIR
-e enables readline:
-e
-e If the standard input is coming from a terminal, Readline is used to obtain the line.