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.
長さが12より大きいかどうかを検証するnawkコマンドがあり、マーク番号に$が含まれています
もう 1 つの条件を追加して、同じ以下のコマンドを使用する必要があります。つまり、長さは 12 より大きく、17 より小さくする必要があります。
nawk ' length($7) > 12 {$7=substr($7,1,6)"$$$$$$$$} 1 ' FS=\| OFS=\|
(length($7)>12) && (length($7)<17)
やるべき