-
Notifications
You must be signed in to change notification settings - Fork 328
Open
Description
This is a feature request for output format configuration.
I would like to remove ending ";" from lines and also remove spaces before and after "=" so instead of this:
json.message.chat.id = 7403466;
I got this
json.message.chat.id=7403466
I think this way will be a lot easier to parse results:
cat test.json | grep "json.message.chat.id" | cut -d"=" -f2
instead of
cat test.json | grep "json.message.chat.id" | cut -d"=" -f2 | cut -d" " -f2- | tr -d";"
mnhrdt
Metadata
Metadata
Assignees
Labels
No labels