Bonjour,
J’essaye de délimiter mon critère de recherche mais cela ne fonctionne pas.
Le fichier de test.txt :
------AA toto1
aaaa toto2
Mon fichier test.sh
#!/bin/bash
val="aaaa"
fichier="/etc/test.txt"
SEARCH=$(/bin/grep -i -c -w ${val} ${fichier} | cut -d ' ' -f1)
echo ${SEARCH}
=> OK
#!/bin/bash
val="------AA"
fichier="/etc/test.txt"
SEARCH=$(/bin/grep -i -c -w ${val} ${fichier} | cut -d ' ' -f1)
echo ${SEARCH}
=> ERREUR
Une idée ?
Merci