Writing a bash script, and I want to get user input. Awesome,
read -p \"What directory should we save in? \" -e FOLDER
Except that what I\'
$ read -p "What directory should we save in? " -i "/home/user/default/" -e FOLDER What directory should we save in? /home/user/default/
that should work, right?