“Test Linux, jeśli istnieje ciąg w pliku” Kod odpowiedzi

Test Linux, jeśli istnieje ciąg w pliku

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

Bash Sprawdź, czy ciąg nie istnieje w pliku

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

Odpowiedzi podobne do “Test Linux, jeśli istnieje ciąg w pliku”

Pytania podobne do “Test Linux, jeśli istnieje ciąg w pliku”

Więcej pokrewnych odpowiedzi na “Test Linux, jeśli istnieje ciąg w pliku” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu