1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ar/linux/head.md

21 lines
708 B
Markdown
Raw Normal View History

# head
> عرض الجزء الأول من الملفات.
> لمزيد من التفاصيل: <https://www.gnu.org/software/coreutils/manual/html_node/head-invocation.html>.
- عرض أول عدد معين من الأسطر من ملف:
`head {{[-n|--lines]}} {{count}} {{path/to/file}}`
- عرض أول عدد معين من البايتات من ملف:
`head {{[-c|--bytes]}} {{count}} {{path/to/file}}`
- عرض كل شيء باستثناء آخر عدد معين من الأسطر من ملف:
`head {{[-n|--lines]}} -{{count}} {{path/to/file}}`
- عرض كل شيء باستثناء آخر عدد معين من البايتات من ملف:
`head {{[-c|--bytes]}} -{{count}} {{path/to/file}}`