Skip to content
Advertisement

bash script unable to ask confirmation

I am initiating myself to shell scripting and I need to ask the user about confirmation.

I have this script, which I don’t know why the following command is not working: read -p “Are you sure about this action?” yn

I use it twice, at the beggining of the script and in the middle. The first read works, but the second one… is not wrking…

Btw, my linux distribution is debian 9.3

JavaScript

Does anyone know why this happens or what am I doing wrong?

Advertisement

Answer

You have two read commands intended to read from different sources (one from a given file, the other from the script’s standard input), using the same file descriptor (0). Use a different file descriptor for $1 so that the other read can continue to read from the script’s standard input, instead of overwriting that with $1.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement