Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

Latest commit

 

History

History
34 lines (25 loc) · 580 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 580 Bytes

sh-pamenv-conf

Convert pam_env.conf syntax to something executable by a POSIX shell

STATUS: ALPHA

# ./pam_env.conf
FOUR
PAGER	DEFAULT=less
EDITOR	OVERRIDE=vim
$ bash-pamenv-conf ./pam_env.conf
export PAGER="${PAGER:-less}"
export EDITOR='vim'

Installation

Use Basalt, a Bash package manager, to add this project as a dependency

basalt add 'hyperupcall/bash-pamenv-conf'

Contributing

git clone 'https://github.com/hyperupcall/bash-pamenv-conf'
cd bash-pamenv-conf
basalt install