Linux Command - tail Posted on 2018-12-16 In Linux-Command tail - output the last part of files. Syntax1tail [OPTION] [FILE]... DescriptionPrint the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name. With no FILE, or when FILE is -, read standard input. Option Description -c, –bytes=K output the last K bytes; -n, –lines=K output the last K lines, instead of the last 10 -f output appended data as the file grows Exampleshow the last lines of log11tail log1 show last 5 lines of log11tail -n log1 show the last lines of log1 live1tail -f log1 use Ctrl+C to exit Reference tail online man page