The React and Node.js house
Services
About
Careers
Blog
Contact
bash
bash
file
Get file content from line x to line y
Solution
$ awk 'NR >= x && NR <= y' path/to/file
View