1
私は最後尾に、私は、彼らがそれほど長くないように、これらの行のうちのジャンクの多くをカットするいくつかの行だけを切り取り、他の行は未処理のままにしておくことはできますか?
Mar 22 23:26:18.793031 localhost my_process[1123]: (my_id) contents of actual log output
Mar 22 23:26:18.946769 localhost my_process[1123]: (my_id) more singe line contents
Mar 22 23:26:18.955423 localhost my_process[1123]: (my_id)
****
* this log statement has a bunch of lines
****
に似た形式を持つログファイルが欲しいです。しかし、私は日付などで始まる行だけをカットし、他の行は残しておきたい。
23:26:18 my_process[1123]: contents of actual log output
23:26:18 my_process[1123]: more singe line contents
23:26:18 my_process[1123]:
****
* this log statement has a bunch of lines
****
これは私が行っているパイプラインですが、すべてのラインをカットしています。
# first cut out the unwanted fields
# then cut out the unwanted decimal part of the timestamp
tail -f mylog.txt | cut -d " " -f 3,5,7- | cut -c 1-8,16-
共通の日付パターンで始まらない行を探して、未処理のままにする方法はありますか?
おかげ