Perintah ekor di Linux
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
Armandres