Socket
Socket
Sign inDemoInstall

json2bash

Package Overview
Dependencies
18
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.4 to 1.3.5

array.sh

73

json2bash.js

@@ -9,5 +9,9 @@ #!/usr/bin/env node

// console.log("argv 0,1,2:"+ process.argv[0] + " " + process.argv[1] + " " + process.argv[2]);
var args = process.argv.slice(2);
var tmpfile = args[0];
//add --help as first args if no argument is given and we are not in a pipeline

@@ -72,30 +76,19 @@ var pipeMode = process.stdin._readableState.sync;

// .usage(appStartMessage + helpExample)
.usage('$0 <jsonFile> [objCsvArray] [fileout]', "by " + author + ", 2023", (yargs) => {
yargs.positional('jsonFile', {
describe: 'json File input (optional when receiving using pipe)',
type: 'string',
default: '__pipe__'
}),
yargs.positional('objCsvArray', {
describe: 'object to extract in the file as csv',
type: 'string',
default: '.'
}),
yargs.positional('fileout', {
describe: 'env file output',
type: 'string',
default: null
.command('$0', "by " + author + ", 2023", (yargs) => {
yargs
.example("json2bash sample.json --tolower", "simple output")
.example("json2bash sample.json . outfile.env --tolower", "simple output to file (the dot signify we keep top level element)")
.example("json2bash samplelevel.json \"result\" --tolower", "extract the tag result")
.example("json2bash samplelevel.json \"result\" --tolower --oa --prefix", "extract the tag result only (no top level prop will output)")
.example("json2bash samplelevel.json \"result,stuff\" --tolower --prefix", "Extract the result and stuff object to lowercase and add their object name as prefix to variable")
.example("json2bash samplesublevelon \"result\" -p;./json2bash samplesublevelon \"result\" -p -j |./json2bash \"meta\" -p -l -o", "Complex pipe extracting an object then one of its subobject pipe back to be extracted")
.example("json2bash samplesublevel.json o.txt --all ", "export all sublevel to a file o.txt")
.example("json2bash samplesublevel.json o.txt --all --u", "export all sublevel in upper case to a file o.txt")
.epilogue('for more information, find our manual at https://github.com/GuillaumeIsabelle/json2bashenv#readme')
.help()
})
.example("json2bash sample.json --tolower", "simple output")
.example("json2bash sample.json . outfile.env --tolower", "simple output to file (the dot signify we keep top level element)")
.example("json2bash samplelevel.json \"result\" --tolower", "extract the tag result")
.example("json2bash samplelevel.json \"result\" --tolower --oa --prefix", "extract the tag result only (no top level prop will output)")
.example("json2bash samplelevel.json \"result,stuff\" --tolower --prefix", "Extract the result and stuff object to lowercase and add their object name as prefix to variable")
.example("json2bash samplesublevelon \"result\" -p;./json2bash samplesublevelon \"result\" -p -j |./json2bash \"meta\" -p -l -o", "Complex pipe extracting an object then one of its subobject pipe back to be extracted")
.example("json2bash samplesublevel.json o.txt --all ", "export all sublevel to a file o.txt")
.example("json2bash samplesublevel.json o.txt --all --u", "export all sublevel in upper case to a file o.txt")
.epilogue('for more information, find our manual at https://github.com/GuillaumeIsabelle/json2bashenv#readme')
.help()
})
.option('jsonfile', {default: "__pipe__", type: 'string', description: 'json File input (optional when receiving using pipe)', alias: ['f', 'file']})
.option('objCsvArray', {default: ".", type: 'string', description: 'object to extract in the file as csv', alias: ['obj']})
.option('fileout', {default: null, type: 'string', description: 'env file output', alias: ['out']})
.option('var2Lower', {

@@ -158,2 +151,3 @@ default: false,

//-----------

@@ -180,2 +174,3 @@

if (d) console.log(argv);

@@ -185,2 +180,3 @@

try {
var tst = require('dotenv').config()

@@ -195,15 +191,26 @@ if (tst.parsed) {

if (argv.jsonFile != "-" && argv.jsonFile != "__pipe__")
if (
(argv.jsonfile != "-" && argv.jsonfile != "__pipe__") ||
(fs.existsSync(argv.jsonfile) || fs.existsSync(tmpfile))
)
{
if ( fs.existsSync(tmpfile)) {argv.jsonfile = tmpfile;}
try {
var filein = argv.jsonFile //argv._[0];
let rawdata = fs.readFileSync(filein);
main(rawdata);
var filein = argv.jsonfile //argv._[0];
let rawdata = fs.readFileSync(filein,'utf-8');
if (typeof rawdata !== 'string') {
console.error('Error: read data is not text.');
} else {
main(rawdata);
}
} catch (error) {
console.log("Error reading input file.")
console.log(error)
}
}}
else try {
//read STDIn
process.stdin.setEncoding('utf8');

@@ -210,0 +217,0 @@

{
"name": "json2bash",
"version": "1.3.4",
"version": "1.3.5",
"description": "A CLI to export json object to bash env. Also json array to csv",

@@ -5,0 +5,0 @@ "main": "json2bash.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc