Греп исключает файлы
Just filter your output with:
grep -v "excluded_pattern"
Example to get all not txt files in current directory.
ls | grep -v .txt
Armandres
Just filter your output with:
grep -v "excluded_pattern"
Example to get all not txt files in current directory.
ls | grep -v .txt
grep -r --exclude="*.cmd" "ckim" ./
grep -inRw -E 'direct' . --exclude-dir={git,log,assets}