This snippet shows you how to display a line from a text file by line number.
Source code viewer
# Replace LINE_NUMBER with line number. sed 'LINE_NUMBERq;d' evm.sql # View the results with less if line is really long. sed 'LINE_NUMBERq;d' evm.sql | lessProgramming Language: Bash