We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • Hackerrank Home
  • Prepare
    NEW
  • Certify
  • Compete
  • Career Fair
  • Hiring developers?
  1. Prepare
  2. Linux Shell
  3. Text Processing
  4. Tail of a Text File #1
  5. Tutorial

Tail of a Text File #1

Problem
Submissions
Leaderboard
Discussions
Tutorial

Here's a useful video on the topic:

By default, it displays the last lines when used in the following form:

tail [filename]
tail -n 11 [filename]  -> Last 11 lines  
tail -c 20 [filename]  -> Last 20 characters  

We can also specify a certain number of lines to be displayed and list multiple filenames as well. It may also be used to display a specified number of bytes from an input file. Click here for more details about using the tail command.

View Practice Challenge

tutorial details


Need Help?


View discussions
View top submissions
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy