423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
13 lines
283 B
Bash
13 lines
283 B
Bash
#!/bin/sh
|
|
# Nico Schottelius
|
|
# cinit: read configuration into variables
|
|
#
|
|
|
|
CONFS=$($(dirname $0)/cinit.get-confdir)/../conf/*
|
|
|
|
for conf in $CONFS; do
|
|
NAME="$(basename $conf | tr a-z A-Z)"
|
|
eval $NAME="$(head -n 1 $conf)"
|
|
eval export $NAME
|
|
# eval echo $NAME = \$$NAME
|
|
done
|