Answers for "tail file first 100 lines linux"

0

tail file first 100 lines linux

#view data file and create new file (linux) 
tail -100 note.txt
head -100 note.txt
tail -100 note.txt > note_last_100_line.txt
head -100 note.txt > note_first_100_line.txt
Posted by: Guest on April-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language