Я хочу удалить строки из файла, который имеет слово info
и не имеет слова LogUtil
.
sample.txt
выглядит так:
this is debug and SparkUtil class
this is info and LogUtil class
this is info with SparkUtil class
this is error and LogUtil class
this is info and RuleUtil class
this is warn and LogUtil class
Желаемый результат выглядит следующим образом:
this is debug and SparkUtil class
this is info and LogUtil class
this is error and LogUtil class
this is warn and LogUtil class
Подойдет любая команда оболочки.