Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
grep を使用して、文字数が奇数の行を表示します。任意のアイデア、各行から文字数を取得する方法がわかりません。wc で試しましたが、グローバルに文字数をカウントするだけです。
以下を使用して、奇数文字のみの行を取得しgrepます。
grep
egrep -v '^(..)+$' file
通常行うべきことは、モジュラス演算子を次のように使用することです。
awk 'length%2' file