This is an old revision of the document!
Последние 5 строк
$ tail -n 5 /var/log/messages
Последние строки, начиная с 10-й
$ tail -n +10 /var/log/messages
Динамически отслеживать запись в файл
$ tail -F /var/log/messages
$ cut -d: -f1 /etc/passwd $ cut -d: -f1,7 /etc/passwd $ cut -d: -f1-3 /etc/passwd $ cut -c1-5 /etc/passwd