tail -f file # Opens file at the end
# Ctrl + "C" to exit
tail -n 10 file # Outputs in terminal last 10 file lines
tail -n +10 file # Outputs file content since 10th line
tail -f filename //For seeing Realtime change
tail -n 200 filename // show last 200 lines of a file
// you can use Tail on Windows 10 installing git bash utilities
// Or installing the free software: BareTail