2017年5月22日月曜日

tail サイズ抜き出し

サイズ抜き出し

-c

[root@localhost squidlog]# ll -h
total 728M
-rw-rw-r--. 1 db2admin root 728M May 19 15:10 access.log


[root@localhost squidlog]# tail -c10m access.log >> squid.aa
[root@localhost squidlog]# tail -c10k access.log >> squid.ab
[root@localhost squidlog]# tail -c10 access.log >> squid.ac


[root@localhost squidlog]# ll -h
total 738M
-rw-rw-r--. 1 root root 728M May 19 15:10 access.log
-rw-r--r--. 1 root     root      10M May 19 16:35 squid.aa
-rw-r--r--. 1 root     root      10K May 19 16:35 squid.ab
-rw-r--r--. 1 root     root       10 May 19 16:36 squid.ac

0 件のコメント:

コメントを投稿