Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 354 Bytes

tail-multiple-files.md

File metadata and controls

19 lines (10 loc) · 354 Bytes

Tail Multiple File

  • It print content of all the files with file name as header of the content

tail -n +1 {{FILES_PREFIX}}*

  • FILE_PREFIX: Prefix for the files to tail. It can also be an empty string to tail all the files of the directory

Example

tail -n +1 ak*

or

tail -n +1 *

Related