fork(1) download
  1. #!/bin/bash
  2. s='name
  3. things: "water bottle","40","new phone cover",10
  4. place'
  5.  
  6. awk -F\" 'index($1, ":"){print $2}' <<< "$s"
Success #stdin #stdout 0.01s 5644KB
stdin
Standard input is empty
stdout
water bottle