This is an old revision of the document!
Перейти в начало файла - g
Перейти в конец файла - G
Последние 5 строк
$ tail -n 5 /var/log/messages
Последние строки, начиная с 10-й
$ tail -n +10 /var/log/messages
Динамически отслеживать запись в файл
$ tail -f -n 0 /var/log/messages
$ cat /etc/passwd | tr ':' ' ' $ df -h / | tr -s ' '
$ cut -d: -f1 /etc/passwd $ cut -d: -f1,7 /etc/passwd $ cut -d: -f1-3 /etc/passwd $ cut -c1-5 /etc/passwd
Ключи -n -r -u