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
#!/bin/bash read -p "holaaa" yn #HERE THE COMMAND WORKS AS EXPECTED if [[ -e "$1" && -f "$1" ]]; then while read nom grup permisos fitxer; do if [ -e $fitxer ]; then #echo $fitxer #f=$(stat -c %n $fitxer) #jo voldria fer servir awk... u=$(stat -c %U $fitxer) g=$(stat -c %G $fitxer) p=$(stat -c %a $fitxer) if [[ "$p" != "$permisos" || "$u" != "$nom" || "$g" != "$grup" ]]; then echo "Informacio al fitxer: $nom , $grup, $permisos, $fitxer" echo "Informacio real: $u, $g, $p, $fitxer" #posar confirmation read -p "holaaaa" yn #HERE THE COMMAND IS NOT WORKING chown $u:$g $fitxer chmod $permisos $fitxer fi else echo "file $fitxer does not exist" fi done < "$1" else echo "error" >&2 fi
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
.
#!/bin/bash read -p "holaaa" yn if [[ -f "$1" ]]; then # Read from file descriptor 3 while read nom grup permisos fitxer <&3; do if [ -e "$fitxer" ]; then #f=$(stat -c %n $fitxer) #jo voldria fer servir awk... u=$(stat -c %U $fitxer) g=$(stat -c %G $fitxer) p=$(stat -c %a $fitxer) if [[ "$p" != "$permisos" || "$u" != "$nom" || "$g" != "$grup" ]]; then echo "Informacio al fitxer: $nom , $grup, $permisos, $fitxer" echo "Informacio real: $u, $g, $p, $fitxer" #posar confirmation read -p "holaaaa" yn chown $u:$g $fitxer chmod $permisos $fitxer fi else echo "file $fitxer does not exist" fi done 3< "$1" # Attach $1 to file descriptor 3 else echo "error" >&2 fi