mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
708 B
708 B
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}}