Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 184 Bytes

'cut'-get_quoted_value.md

File metadata and controls

9 lines (8 loc) · 184 Bytes

Get quoted word

cut -d '"' -f6 <<<'key1="value1" key2="value2" key3="value3" key4="value4"'
# value3

-d : delimiter mode
'"' : delimiter character
-f6 : field 6