second column awk code example
Example 1: awk print second
awk -F '"' '{print $2}' your_input_file
Example 2: bash get field from line
echo 'The Code Doctor' | awk '{print $2}'
awk -F '"' '{print $2}' your_input_file
echo 'The Code Doctor' | awk '{print $2}'