LINUX.ORG.RU

История изменений

Исправление bass, (текущая версия) :

find . -type f -newermt 2018-11-15 ! -name ".*" -print0 | xargs -0 file | awk -F: '/text\// {print $1}' | while read i;do grep -i rhel $i;done

Исходная версия bass, :

find . -type f -newermt 2018-11-15 ! -name ".*" -print0 | xargs -0 file | grep 'text/' | cut -d : -f 1 | while read i;do grep -i rhel $i;done