Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link

If you are looking to match only part of the string on a given column, you can use advice from http://stackoverflow.com/questions/17001849/awk-partly-string-match-if-column-partly-matcheshttps://stackoverflow.com/questions/17001849/awk-partly-string-match-if-column-partly-matches

some_command | awk '$6 ~ /string/' 

If you are looking to match only part of the string on a given column, you can use advice from http://stackoverflow.com/questions/17001849/awk-partly-string-match-if-column-partly-matches

some_command | awk '$6 ~ /string/' 

If you are looking to match only part of the string on a given column, you can use advice from https://stackoverflow.com/questions/17001849/awk-partly-string-match-if-column-partly-matches

some_command | awk '$6 ~ /string/' 
Source Link
Colin D
  • 460
  • 5
  • 6

If you are looking to match only part of the string on a given column, you can use advice from http://stackoverflow.com/questions/17001849/awk-partly-string-match-if-column-partly-matches

some_command | awk '$6 ~ /string/'