tail コマンド説明
参照リンク
http://kazmax.zpp.jp/cmd/t/tail.1.html
tail -f "-f" is used when the file is increasing.
ファイルの内容がどんどん増え続けているものと仮定し、 ファイルの最終部分の文字を読み続けようと無限にループする。 パイプから読み込んでいる場合は無視される。 2 つ以上のファイルが指定された場合は、tail は異なったファイルの追加分を受け付けるごとにヘッダを表示し、 出力がどのファイルに由来するものかがわかるようにする。 ファイルの追跡方法を指定することもできる。
参照リンク
http://kazmax.zpp.jp/cmd/t/tail.1.html
# tail -f -n N /var/log/message
tail -f "-f" is used when the file is increasing.
ファイルの内容がどんどん増え続けているものと仮定し、 ファイルの最終部分の文字を読み続けようと無限にループする。 パイプから読み込んでいる場合は無視される。 2 つ以上のファイルが指定された場合は、tail は異なったファイルの追加分を受け付けるごとにヘッダを表示し、 出力がどのファイルに由来するものかがわかるようにする。 ファイルの追跡方法を指定することもできる。
[root@ale ~]# tail -f /opt/ale/var/log/ls.py/current
##Building fetch failed, try fetching again in 2 mins
11:42:31.096 037409.096082 T:7f2c75219700:location:ERROR* ***
"/var/arubaobjs/ls_campus/ls_campus.ser" needs to be generated first,
will sleep and wait here...
11:42:41.097 037419.097359 T:7f2c75219700:location:ERROR* ***
"/var/arubaobjs/ls_campus/ls_campus.ser" needs to be generated first,
will sleep and wait here...
<snip>
Archive already exists
Fetching
https://10.215.1.103/visualrf/campus.xml?buildings=1&sites=1&images=1
Removing cookie file
Generating cookie
Successfully created cookie for auth
Successfully saved data into campus_10503.xml
Moved campus_10503.xml to campus_10503_0.xml
Fetching
https://10.215.1.103/visualrf/building.xml?sites=1&images=1
Removing cookie file
Generating cookie
Successfully created cookie for auth
Successfully saved data into bldg_10503.xml
##Building fetch failed, try fetching again in 2 mins
11:44:31.109 037529.109191 T:7f2c75219700:location:ERROR* ***
"/var/arubaobjs/ls_campus/ls_campus.ser" needs to be generated first,
will sleep and wait here...
11:44:41.110 037539.110163 T:7f2c75219700:location:ERROR* ***
"/var/arubaobjs/ls_campus/ls_campus.ser" needs to be generated first,
will sleep and wait here...
--------------------------------------------------------------------------------------------------------------------------------------------
Comments
Post a Comment