“Compruebe si el archivo contiene bash de cadena” Código de respuesta

bash si el archivo contiene cadena

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

Bash verificar si la cadena en el archivo

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

Compruebe si el archivo contiene bash de cadena

“check if file contains string bash” Code Answer’s
Difficult Dogfish

Respuestas similares a “Compruebe si el archivo contiene bash de cadena”

Preguntas similares a “Compruebe si el archivo contiene bash de cadena”

Más respuestas relacionadas con “Compruebe si el archivo contiene bash de cadena” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código