Answers for "awk match string"

0

awk match start character

if ( $1 ~ /^#/ ) ...
Posted by: Guest on April-08-2020
0

awk string match

awk -e '$3 ~ /Normal/ {print $1" "$2}' ur_file.txt
#if column $3 match "Normal" print column 1 and 2 with space " "
Posted by: Guest on April-14-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language