Linux head and tail Commands
last modified February 25, 2025
The head
and tail
commands in Linux are used to view
the beginning and end of files, respectively. They are essential tools for
quickly inspecting file contents without opening the entire file. This tutorial
covers basic and advanced usage of head
and tail
with
practical examples.
head
and tail
are commonly used for log file analysis,
debugging, and monitoring file changes in real-time.
View the Beginning of a File
This shows the top of a system log file.
head /var/log/syslog
The head
command outputs the first 10 lines of
/var/log/syslog
by default. This is useful for checking initial
log entries, like system startup messages. If the file has fewer than 10 lines,
it shows all contents. Use wc -l /var/log/syslog
to check total
lines. No options mean it’s quick and simple for a first glance.
View a Specific Number of Lines
This displays the first few lines of a CSV file.
head -n 5 data.csv
The -n 5
option limits head
to the first 5 lines of
data.csv
. Perfect for inspecting headers or sample data in large
files without loading everything. You can use any number (e.g., -n
3
). Older syntax like head -5
works too. If the file is
shorter, it shows what’s available. Check with ls -lh
for file size.
View the End of a File
This checks recent entries in an error log.
tail /var/log/error.log
The tail
command shows the last 10 lines of
/var/log/error.log
by default. Ideal for spotting recent issues,
like application crashes. If the file is small, it displays all lines. Unlike
head
, it starts from the end, making it efficient for large files.
Use ls -l
to confirm the file exists and has content.
View a Specific Number of Lines from the End
This views the last few transactions in a log.
tail -n 5 transactions.log
The -n 5
option tells tail
to output the last 5 lines
of transactions.log
. Great for reviewing recent activity without
scrolling through a full file. Adjust the number as needed (e.g., -n
20
). Older style tail -5
is equivalent. If fewer lines
exist, it shows all. Pair with wc -l
to count total lines first.
Monitor File Changes in Real-Time
This watches a web server log as it updates.
tail -f /var/log/apache2/access.log
The -f
(follow) option keeps tail
running, showing
new lines added to /var/log/apache2/access.log
. Essential for
live monitoring, like tracking website hits. Press Ctrl+C
to stop.
If the file isn’t updating, nothing new appears. Use -n 20 -f
to
start with the last 20 lines. Check permissions with ls -l
if
empty.
View Multiple Files
This compares starts or ends of two logs.
head auth.log app.log tail auth.log app.log
The head
command shows the first 10 lines of
auth.log
then app.log
, with headers like
==> auth.log <==
. tail
does the same for the last 10
lines. Useful for side-by-side checks. Add -n 5
to adjust lines.
If a file is missing, it skips with a warning. Use ls
to verify
files exist beforehand.
Advanced: Combine head and tail
This extracts a middle section of a report.
head -n 50 report.txt | tail -n 10
This pipes the first 50 lines of report.txt
from
head
to tail
, which then outputs the last 10 of
those—lines 41-50. Handy for targeting specific ranges in large files. Adjust
numbers (e.g., head -n 100 | tail -n 20
) for different sections.
If the file has fewer lines than the head
limit, tail
adjusts. Test with wc -l
for file length.
Example: View Bytes Instead of Lines
This shows the first or last bytes of a file.
head -c 100 binary.dat tail -c 50 binary.dat
The -c 100
option makes head
show the first 100 bytes
of binary.dat
, while tail -c 50
shows the last 50.
Useful for binary files or precise data chunks (e.g., headers). Units like
-c 1k
(1KB) work too. Output may include non-printable characters;
pipe to od
or hexdump
for readability. Check size with
ls -lh
.
Example: Skip Lines from the Start
This skips the header of a CSV file.
tail -n +2 data.csv
The -n +2
option tells tail
to start from line 2 of
data.csv
, skipping the first line (e.g., a header). Use
+N
to begin at line N. Perfect for data processing where headers
aren’t needed. If the file has fewer lines, it shows from the start. Combine
with head
(e.g., tail -n +2 | head -n 5
) for a range.
Verify with cat -n
.
Example: Filter with Other Commands
This finds errors in recent log entries.
tail -n 50 error.log | grep "ERROR"
This takes the last 50 lines of error.log
with tail
and pipes them to grep
to show only lines with "ERROR". Ideal for
debugging recent issues. Adjust -n
for scope; add -f
to tail
for real-time filtering. Case-insensitive search? Use
grep -i
. Check log size with wc -l error.log
to set a
sensible range.
Best Practices for head and tail
- Use for Quick Inspections: Use
head
andtail
for quick file inspections without opening the entire file. - Monitor Logs: Use
tail -f
to monitor log files in real-time. - Combine with Other Commands: Use
head
andtail
with commands likegrep
for advanced filtering. - Check File Sizes: Use
head
andtail
to verify file contents before processing large files.
Source
In this article, we have explored various examples of using the head
and tail
commands for viewing file contents, including real-time
monitoring and combining both commands for advanced file inspection.
Author
List all Linux tutorials.