“Bash If File berisi string” Kode Jawaban

Bash If File berisi string

if grep -q SomeString "$File"; then
  Some Actions # SomeString was found
fi
Witty Wolf

bash check apakah string di file

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

Jawaban yang mirip dengan “Bash If File berisi string”

Pertanyaan yang mirip dengan “Bash If File berisi string”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya