Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 789 Bytes

File metadata and controls

34 lines (24 loc) · 789 Bytes

JSONenv

Build Status

Instalation

go install https://github.com/assemblyline/json_env

Usage

JSONenv writes to stdout so its output can be redirected to a file or somesuch.

$ env
SHELL=/bin/bash
EDITOR=vim
TERM=xterm
HOME=/Users/ed
GOPATH=/Users/ed/go
FOO=fooming_at_the_mouth
BAR=bar_snacks

$ json_env -f json -v BAR -v FOO
{"BAR":"bar_snacks","FOO":"fooming_at_the_mouth"}

$ json_env -f js -v EDITOR
window.ENV = {"EDITOR":"vim"};

$ json_env -f js -e SHELL -e EDITOR -e TERM -e HOME -e GOPATH
window.ENV = {"FOO":"fooming_at_the_mouth","BAR":"bar_snacks"};

Licence

MIT see LICENCE