awk - Delete multiple strings/characters in a file -
i have curl output generated similar below, im working on sed/awk script eliminate unwanted strings.
file
{id":"54bef907-d17e-4633-88be-49fa738b092d","name":"aa","description","name":"aaxxxxxx","enabled":true} {id":"20000000000000000000000000000000","name":"bb","description","name":"bbxxxxxx","enabled":true} {id":"542ndf07-d19e-2233-87gf-49fa738b092d","name":"aa","description","name":"ccxxxxxx","enabled":true} {id":"20000000000000000000000000000000","name":"bb","description","name":"ddxxxxxx","enabled":true} ......
i modify file , retain similar below,
aa aaxxxxxx bb bbxxxxxx aa ccxxxxxx bb ddxxxxxx aa n..... bb n.....
is there way remove word/commas/semicolons in-between can retain these values?
try awk
curl your_command | awk -f\" '{print $(nf-9),$(nf-3)}'
or:
curl your_command | awk -f\" '{print $7,$13}'
a semantic approach ussing perl
:
curl your_command | perl -lane '/"name":"(\w+)".*"name":"(\w+)"/;print $1." ".$2'
for number of name
ocurrences:
curl your_command | perl -lane 'printf $_." " ( $_ =~ /"name":"(\w+)"/g);print ""'
Comments
Post a Comment