Perché il mio codice non viene emesso se una stringa inserita non è nel file. Quando inserisco una stringa e non si trova nel file, non c'è risposta, torna indietro. Qualcuno può dirmi cosa c'è che non va nel mio codice?
while :
do
echo "Please enter a string"
read input_string
echo "Please enter the file name too see if that string is present in it - (Enter .abw after)"
read input_string1
if grep -q $input_string $input_string1 ; then
echo "Your string has been found"
fi
done
input_string
non è proprio un nome variabile parlante, comunque :)