Answers for "tail last 100 lines"

2

bash print last n lines of file

# Basic syntax:
tail -n input_file
# Where n is the number of lines to load from the end of the input_file
Posted by: Guest on October-04-2020
0

tail 100 lines

tail -100 <log file>   > newLogfile
Posted by: Guest on August-06-2020
0

tail last 100 lines

tail -100 error.log
Posted by: Guest on June-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language