S
Systems Programming
Rust, C, C++, Go, and low-level programming
'head'- print the beginning of files - Video Man Pages
The 'head' command is used to print the beginning lines of a file. - Print first 10 lines in a file: head path/to/file - Print first 10 lines of multiple files: head path/to/file1 path/to/file2 ... - Print the first 5 lines (-n 5) of a file: head -n 5 path/to/file - Print everything but th...