Tail multiple files at the same time

Source: Internet
Author: User
A common tail command can only view the output of one file. Save the following content as multail. sh #! /Bin/shfunctionclean () {# echo $ @; # forfilein & quot ;@ @ & quot; dops-ef | grep $ file | grep-vgrep | awk & amp; #39; {print a common tail command can only view the output of one file and save the following content as multail. sh
#! /Bin/shfunction clean () {# echo $ @; # for file in "$ @"; do ps-ef | grep $ file | grep-v grep | awk '{print $2}' | xargs kill-9; done jobs-p | xargs kill-9} files =$ @ # When this exits, exit all back ground process also. # trap "ps-ef | grep tail | grep-v grep | awk '{print"' $ 2' "} '| xargs kill-9" EXITtrap "clean $ files" EXIT # iterate through the each given file names, for file in "$ @" do # show tails of each in background. tail-f $ file & done # wait .. until CTRL + Cwait

 

How to use:./multail. sh file 1 file 2... File n end method: CTRL + C http://www.thegeekstuff.com/2009/09/multitail-to-view-tail-f-output-of-multiple-log-files-in-one-terminal/
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.