Files
git.softwareshinobi.com/docs/Linux-Commands/.recycle/129-the-nl-command.md
Software Shinobi ba2080733d
All checks were successful
learn org at code.softwareshinobi.com/git.softwareshinobi.com/pipeline/head This commit looks good
automated terminal push
2025-06-04 20:15:25 -04:00

764 B
Executable File

The nl command

The “nl” command enumerates lines in a file. A different way of viewing the contents of a file, the “nl” command can be very useful for many tasks.

Syntax

nl [ -b Type ] [ -f Type ] [ -h Type ] [ -l Number ] [ -d Delimiter ] [ -i Number ] [ -n Format ] [ -v Number ] [ -w Number ] [ -p ] [ -s Separator ] [ File ]

Examples:

  1. To number all lines:
nl  -ba  chap1
  1. Displays all the text lines:
[server@ssh ~]$ nl states
1 Alabama
2 Alaska
3 Arizona
4 Arkansas
5 California
6 Colorado
7 Connecticut.
8 Delaware
  1. Specify a different line number format
nl  -i10  -nrz  -s::  -v10  -w4  chap1

You can name only one file on the command line. You can list the flags and the file name in any order.