Files
tldr/pages.ru/common/head.md
K.B.Dharun Krishna 5c26174aa9 pages/*: update links and more info link script (#11390)
* pages/*: update links and more info link script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: reformat code

* ax-webapp: fix link

* curl: fix false positive

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-11-06 23:14:12 +05:30

21 lines
800 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# head
> Выводит первую часть файлов.
> Больше информации: <https://manned.org/head.1p>.
- Вывести первые несколько строк из файла:
`head -n {{количетсво_строк}} {{имя_файла}}`
- Вывести первые несколько байтов из файла:
`head -c {{количество_байт}} {{имя_файла}}`
- Вывести все содержимое файла кроме нескольких последних строк:
`head -n -{{количетсво_строк}} {{имя_файла}}`
- Вывести все содержимое файла кроме нескольких последних байт:
`head -c -{{количество_байт}} {{имя_файла}}`