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.
これは完全に機能します:
awk '{for (i=1;i<=NF;i++) if($i ~/mystring/) print $1, $i}'
しかし、$iフィールドから離れた2番目のフィールドも印刷したいと思います。
アイデア?
かなり単純です:)
awk '{for (i=1;i<=NF;i++) if($i ~/mystring/) print $1, $i, $(i+2)}'