因此,我有一份信箱档案。
machine foo
login usera
password somepass
machine somehost
login userb
password otherpass
而且,我正试图把它归入一组3组的一组物体,然后我可以加以分类和挑选,排除不轨物体(或许还有其他非jq办法......)。
And I keep getting lost. Here s what I have:
jq -Rs
split("
") |
map(select(length > 0)) |
map(split(" ") |
to_entries | group_by(.key % 2 == 0)
) |
map(
map(.[0].value )
) |
map({
(.[1]) : .[0]
}) | add
~/.netrc
I d love to see something slick to solve this