absolutely choking about that tail fluff hanging out in the middle
seen from China
seen from China
seen from Malaysia
seen from United States

seen from United States
seen from Malaysia
seen from United States
seen from Türkiye
seen from Malaysia
seen from United States
seen from Russia
seen from Türkiye

seen from United States

seen from United States
seen from Canada
seen from Türkiye
seen from Belarus
seen from United States
seen from Pakistan
seen from United States
absolutely choking about that tail fluff hanging out in the middle

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
multitail UTF-8 support on OS X / Ubuntu
以前不知道有這個好東西,今天猛然發現就愛上了偏偏又讓我發現他 UTF8 支援度的問題,首先是 Ubuntu apt-get 安裝的是 5.x 版。而 Multitail "似乎" 要 6.0+ 才支援 UTF8
Ubuntu 上自行下載 Multtail source 回來,安裝步驟是說只需要 make install 就可以了。不過卻發現什麼 ncurses 找不到。
亂試了一堆什麼 apt-get install libncursesXXX 之類的通通行不通。最後用了 apt-get install lib32ncursesw5-dev 搞定(不確定需不需要 apt-get install lib32ncurses5)
而 OS X 上就真的很 OX 了... homebrew 可以直接安裝 multitail,而且是 6.2.1 最新版。但是悲劇的是一樣中文失敗...
原因好像大概也是 ncurses 的問題,總之我的解法如下:
brew install ncurses (這個會安裝最新版的 ncurses,寫此文件的時候是 5.9,系統內建的是 5.4)
然後下載解開 multitail 原始檔,編輯 Makefile。在 LDFLAGS 加上 -L/usr/local/opt/ncurses/lib。另外在 CPPFLAGS 加上 -I/usr/local/opt/ncurses/include
make install(如果之前有 make 過可以 make clean 一下)
記得不要用 homebrew 的,因為他會用 make -f makefile.macosx 去跑,那個看起來是為了相容於 os x 內建的 ncurses。
Follow files with less
Like tail -f which almost everyone seems to use, you can also follow files with less, which I find better for navigating through bigger files using:
$ less +F example.log
You can abort when you need to with ctrl+c and then scroll around.
Another good option if you want syntax highlighting is multitail.