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 -v s=$1 -v c=$2 '$c ~ s { print $0 }' $3
ありがとう
「すべての列」が「ファイル全体」を意味する場合、次のようになります。
grep $string $file
awk -v pat="$string" '$0 ~ pat' infile