System Grab Bag

View all TLDR pages from Mac OS X (or from all pages)

head

Output the first part of files. More information: https://keith.github.io/xcode-man-pages/head.1.html.
  • Output the first few lines of a file:
    head --lines {{8}} {{path/to/file}}
  • Output the first few bytes of a file:
    head --bytes {{8}} {{path/to/file}}
  • Output everything but the last few lines of a file:
    head --lines -{{8}} {{path/to/file}}
  • Output everything but the last few bytes of a file:
    head --bytes -{{8}} {{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: