I believe everyone facing this problem before there is no line number show in the long configuration file. Example: below screenshot, there is an syntax error at line 27 and it will take sometime to identify that particular line.
Did your guys know we can display the line number in vi text editor
Below are the steps:
- Press the
Esc
key if you are currently in insert or append mode. - Press
:
(the colon). The cursor should reappear at the lower left corner of the screen next to a:
prompt. - Enter the following command:
set number
4. A column of sequential line numbers will appear at the left side of the screen. Each line number references the text located directly to the right.
🙂