polina, несколько простейших примеров:
Поиск выражения 'color support' в файле ~/.bashrc:
$ grep 'color support' ~/.bashrc
# We have color support; assume it's compliant with Ecma-48
# enable color support of ls and also add handy aliases
Поиск выражения 'grub' в каталоге /etc/default:
$ grep -r 'grub' /etc/default
/etc/default/grub:# If you change this file, run 'update-grub' afterwards to update
/etc/default/grub:# /boot/grub/grub.cfg.
/etc/default/grub:# Uncomment to disable graphical terminal (grub-pc only)
/etc/default/grub:# Uncomment to get a beep at grub start
Выводит все строки файла /etc/apt/sources.list.d/medibuntu.list, кроме строк, в которых упоминается выражение 'http':
$ grep -v 'http' /etc/apt/sources.list.d/medibuntu.list
# medibuntu
Ещё примеры:
http://feyhoa.org.ua/archives/911