Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f49c07b commit d843f8eCopy full SHA for d843f8e
json-split1.sh
@@ -4,3 +4,6 @@
4
Same code with a filter k="text" to show only fields with name "text" (but this filter is not working)
5
cat filename.txt | sed -e 's/[{}]/''/g' | awk -v k="text" '{n=split($0,a,","); for (i=1; i<=n; i++) print a[i]}'
6
7
+ Password vault account query output splitter:
8
+ cat res*file | sed -e 's/[{}]/''/g' | sed 's/,"Key/|"Key/g' | awk '{n=split($0,a,"|"); for (i=1; i<=n; i++) print a[i]}'
9
+
0 commit comments