System Grab Bag

View all TLDR pages from Linux (or from all pages)

head

Output the first part of files. More information: https://www.gnu.org/software/coreutils/head.
  • Output the first few lines of a file:
    head --lines {{count}} {{path/to/file}}
  • Output the first few bytes of a file:
    head --bytes {{count}} {{path/to/file}}
  • Output everything but the last few lines of a file:
    head --lines -{{count}} {{path/to/file}}
  • Output everything but the last few bytes of a file:
    head --bytes -{{count}} {{path/to/file}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.

Other Projects

This TLDR page is also found in other projects: