2022-10-11 06:19:50 +00:00
|
|
|
#!/bin/bash
|
2022-10-03 16:37:15 +00:00
|
|
|
|
2022-10-22 12:56:41 +00:00
|
|
|
if [ $# -eq 1 ]; then
|
|
|
|
CONFIG_FILE=$1
|
|
|
|
else
|
|
|
|
CONFIG_FILE=/boot/hydrophonitor/hydrophonitor-config.txt
|
|
|
|
fi
|
2022-10-03 16:37:15 +00:00
|
|
|
|
2022-10-23 14:03:54 +00:00
|
|
|
# Select non-comment lines in CONFIG_FILE, clean horizontal whitespace
|
|
|
|
args=$(grep -v '^#' $CONFIG_FILE | tr -d '[:blank:]' | tr '\n' ' ')
|
|
|
|
|
|
|
|
for arg in $args; do
|
|
|
|
echo "export $arg"
|
|
|
|
export "${arg?}"
|
|
|
|
done
|