koron / nvgd

Filterable (grep, head and tail) HTTP file server
MIT License
17 stars 2 forks source link

cut filter: use whitespace as the delimiter #94

Closed koron closed 9 months ago

koron commented 9 months ago
-w      Use whitespace (spaces and tabs) as the delimiter.  Consecutive
        spaces and tabs count as one single field separator.

Treat consecutive spaces and tabs as one single field separator

koron commented 9 months ago

とあるログが Jan 31 ... で始まっていたのが、2月になったら Feb 1 ... で始まるようになった。 そのため1月中は cut -d " " -f 2 相当で取り出せていた日にちが、2月になったら取り出せなくなった。

解決策として cut には -w オプションがあったので、それを導入する。

koron commented 9 months ago

内部的にfunctional option patternを使いたいがコードはあまり書きたくない。 生成ツールを探している。

以下、その候補:

koron commented 9 months ago

I decided that don't use functional option pattern 😆

koron commented 9 months ago

i'll add a new "white:true" option for this.

koron commented 9 months ago

included #95