Com base nos comentários de uma forma anterior dessa resposta, o desejo é atuar em arquivos que possuem r
, f
e d
. Então nós temos algumas opções.
com grep
s:
if grep -q 'r' '/path/to/file' && grep -q 'f' '/path/to/file' && grep -q 'd' /path/to/file; then
echo "The characters are in the file; acting accordingly."
else
echo "The characters are not found in the file; acting accordingly."
fi