windows - Get string inside quotation marks in command line/awk -



windows - Get string inside quotation marks in command line/awk -

i have created command line script extract lines file string "lines", want numbers within ("). illustration have next lines

lines="188" lines="24" lines="24"

how can acquire numbers within quotation marks (" ") output be

188 24 24

i want accomplish using windows command line or awk running on windows machine.

see if works:

awk -f'\"' '{print $2}'

windows command-line awk command-line-arguments gawk

Comments