jnyryan / envarizer

takes bash shell export commands and turns them into a json object

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

envarizer

build-status Known Vulnerabilities

Takes a bash shell export command and turns it into a json object

Why you ask? I found myself doing it more than once by hand.

Prerequisite

This is a Node.js package so needs node.js runtime.

Installation

This package is published on npmjs.com

npm install envarizer

Usage

envarizer ./test/test-file.sh

example input

#!/usr/bin/env bash
export ENV_VAR_A=/var/log
export ENV_VAR_B=a string
export ENV_VAR_C=john.smyth@example.com

example output

[ ENV_VAR_A: '/var/log',
  ENV_VAR_B: 'a string',
  ENV_VAR_C: 'john.smyth@example.com' ]

About

takes bash shell export commands and turns them into a json object

License:MIT License


Languages

Language:CoffeeScript 95.0%Language:Makefile 2.8%Language:JavaScript 2.1%