Skip to main content
ubuntuask.com

Back to all posts

How to View the First N Lines Of A File In Linux?

Published on
3 min read
How to View the First N Lines Of A File In Linux? image

Best Linux Command Line Tools to Buy in September 2026

1 Linux: QuickStudy Laminated Reference Guide (Quick Study Computer)

Linux: QuickStudy Laminated Reference Guide (Quick Study Computer)

  • UNIQUE DESIGN: STAND OUT WITH THE EXCLUSIVE BOX27 STYLE!
  • VERSATILE USE: PERFECT FOR STORAGE, GIFTS, AND ORGANIZATION NEEDS.
  • ECO-FRIENDLY MATERIALS: SHOWCASE YOUR COMMITMENT TO SUSTAINABILITY!
BUY & SAVE
$6.95
Linux: QuickStudy Laminated Reference Guide (Quick Study Computer)
2 STREBITO Electronics Precision Screwdriver Sets 142-Piece with 120 Bits Magnetic Repair Tool Kit for iPhone, MacBook, Computer, Laptop, PC, Tablet, PS4, Xbox, Nintendo, Game Console

STREBITO Electronics Precision Screwdriver Sets 142-Piece with 120 Bits Magnetic Repair Tool Kit for iPhone, MacBook, Computer, Laptop, PC, Tablet, PS4, Xbox, Nintendo, Game Console

  • COMPREHENSIVE KIT: 120 BITS + 22 ACCESSORIES FOR ANY REPAIR NEEDS!

  • ERGONOMIC DESIGN: COMFORT GRIP HANDLE & MAGNETIC BIT HOLDER FOR EASE.

  • ORGANIZED STORAGE: DURABLE BAG KEEPS TOOLS SAFE AND EASY TO CARRY!

BUY & SAVE
$25.19 $27.99
Save 10%
STREBITO Electronics Precision Screwdriver Sets 142-Piece with 120 Bits Magnetic Repair Tool Kit for iPhone, MacBook, Computer, Laptop, PC, Tablet, PS4, Xbox, Nintendo, Game Console
3 Hacked: Kali Linux and Wireless Hacking Ultimate Guide With Security and Penetration Testing Tools, Practical Step by Step Computer Hacking Book

Hacked: Kali Linux and Wireless Hacking Ultimate Guide With Security and Penetration Testing Tools, Practical Step by Step Computer Hacking Book

BUY & SAVE
$6.80
Hacked: Kali Linux and Wireless Hacking Ultimate Guide With Security and Penetration Testing Tools, Practical Step by Step Computer Hacking Book
4 Learn How to Use Linux, Linux Mint Cinnamon 22 Bootable 8GB USB Flash Drive - Includes Boot Repair and Install Guide Now with USB Type C

Learn How to Use Linux, Linux Mint Cinnamon 22 Bootable 8GB USB Flash Drive - Includes Boot Repair and Install Guide Now with USB Type C

  • BOOT LINUX MINT 22 EASILY-NO OS UNINSTALLATION NEEDED!

  • INSTANT ACCESS TO SUPPORT, UPDATES, AND A USER-FRIENDLY GUIDE.

  • VERSATILE COMPATIBILITY WITH ALL MODERN COMPUTERS & DEVICES!

BUY & SAVE
$22.95
Learn How to Use Linux, Linux Mint Cinnamon 22 Bootable 8GB USB Flash Drive - Includes Boot Repair and Install Guide Now with USB Type C
5 BPF Performance Tools (Addison-Wesley Professional Computing Series)

BPF Performance Tools (Addison-Wesley Professional Computing Series)

BUY & SAVE
$64.49 $69.99
Save 8%
BPF Performance Tools (Addison-Wesley Professional Computing Series)
6 Kali Linux Cookbook: Boost your pentesting career with essential tools such as Nmap, Metasploit, and Wireshark

Kali Linux Cookbook: Boost your pentesting career with essential tools such as Nmap, Metasploit, and Wireshark

BUY & SAVE
$35.99 $44.99
Save 20%
Kali Linux Cookbook: Boost your pentesting career with essential tools such as Nmap, Metasploit, and Wireshark
7 Beamo Linux Mint Cinnamon 22.3 (Most Recent Version) 64-bit Bootable USB Flash Drive, Live USB for Installing and Repairing Linux Mint

Beamo Linux Mint Cinnamon 22.3 (Most Recent Version) 64-bit Bootable USB Flash Drive, Live USB for Installing and Repairing Linux Mint

  • SEAMLESS INSTALLATION ON MOST COMPUTERS WITH 64-BIT BOOTABLE USB.
  • USER-FRIENDLY CINNAMON DESKTOP FOR ALL LINUX SKILL LEVELS.
  • FAST, RELIABLE PERFORMANCE WITH HIGH-QUALITY BEAMO USB DRIVE.
BUY & SAVE
$17.99 $18.99
Save 5%
Beamo Linux Mint Cinnamon 22.3 (Most Recent Version) 64-bit Bootable USB Flash Drive, Live USB for Installing and Repairing Linux Mint
8 Linux for Beginners: The Complete Survival Guide to Commands, Terminal, and System Administration

Linux for Beginners: The Complete Survival Guide to Commands, Terminal, and System Administration

BUY & SAVE
$0.99
Linux for Beginners: The Complete Survival Guide to Commands, Terminal, and System Administration
+
ONE MORE?

To view the first N lines of a file in Linux, you can use the head command. Here's how you can achieve this:

  1. Open the terminal.
  2. Use the following syntax to view the first N lines of a file: head -n N filename Replace N with the number of lines you want to view, and filename with the actual name of the file you want to read. For example, to view the first 10 lines of a file named "example.txt", you would use: head -n 10 example.txt
  3. After entering the command, the terminal will display the first N lines of the specified file.
  4. If you omit the -n N option, head will by default display the first 10 lines of the file.

That's it! You can now use the head command to view the desired number of lines at the beginning of a file in Linux.

How do I preview the first N lines of a file in Linux?

You can use the head command to preview the first N lines of a file in Linux.

To preview the first 10 lines of a file, you can use the following command:

head -n 10 filename

Replace filename with the actual name of the file you want to preview, and 10 with the number of lines you want to see.

What is the easiest method to view the first N lines of a file in Linux?

The easiest method to view the first N lines of a file in Linux is by using the "head" command with the "-n" option followed by the number of lines you want to display. For example, to view the first 10 lines of a file named "example.txt", you would use the following command:

head -n 10 example.txt

What option can I use with the cat command to display the first N lines of a file in Linux?

To display the first N lines of a file in Linux using the cat command, you would need to combine it with the head command. The head command is used to display the first few lines (default is 10) of a file.

To display the first N lines of a file using cat and head, you can use the following command:

cat file.txt | head -n N

Replace file.txt with the name of your file, and N with the number of lines you want to display. This command will output the first N lines of the file.

What command can I use to show only the first N lines of a file in Linux?

You can use the head command to show only the first N lines of a file in Linux. The syntax is as follows:

head -n N file.txt

Replace N with the number of lines you want to display and file.txt with the name of your file.