Moving to a specific line number and display its content in unix/linux
sed -n '199 p' somefile
The above line of code will display the contents of line number 199 on screen.
Have fun :)
sed -n '199 p' somefile
The above line of code will display the contents of line number 199 on screen.
Have fun :)