-
Notifications
You must be signed in to change notification settings - Fork 31
Open
Description
Right now when I use recs decollate it dumps the original object into my new records
% echo '{"field":[{"test":5},{"test":6}]}' | recs decollate -d unarray,field,temp
{"temp":{"test":5},"field":[{"test":5},{"test":6}]}
{"temp":{"test":6},"field":[{"test":5},{"test":6}]}
I can clean this up on my own:
% echo '{"field":[{"test":5},{"test":6}]}' | recs decollate -d unarray,field,temp | recs xform '$r={{temp}}'
{"test":5}
{"test":6}
But it'd be nice to not have to (since there is presumably wasted work)
Metadata
Metadata
Assignees
Labels
No labels