“Teste Linux se houver string no arquivo” Respostas de código

Teste Linux se houver string no arquivo

if grep -Fxq "string" file.txt; then 
	echo "Match"
else 
	echo "No match"
fi
bougui

Bash verifique se a string não existe no arquivo

Just use grep with flags 'F' (fixed string), 'x' (exact match) and 'q'
(quiet output) in order to check if a word string is in a file
if ! grep -Fxq "string" file.txt; then #do some code...#; fi
Armandres

Respostas semelhantes a “Teste Linux se houver string no arquivo”

Perguntas semelhantes a “Teste Linux se houver string no arquivo”

Mais respostas relacionadas para “Teste Linux se houver string no arquivo” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código