我正在尝试从包含句点(。)字符的shell脚本中读取属性文件,如下所示:
# app.properties
db.uat.user=saple user
db.uat.passwd=secret
#/bin/sh
function pause(){
read -p "$*"
}
file="./app.properties"
if [ -f "$file" ]
then
echo "$file found."
. $file
echo "User Id " $db.uat.user
echo "user password =" $db.uat.passwd
else
echo "$file not found."
fi
我尝试在获取文件后解析文件但由于密钥包含"而不能正常工作。"。"字符,该值也有空格。
我的属性文件始终位于脚本的同一目录中或/ usr / share / doc
中的某个位置答案 0 :(得分:55)
我在bash脚本中使用简单的 grep
内部函数来接收来自.properties
文件的属性。
我在两个地方使用这个属性文件 - 设置开发环境和应用程序参数。
我认为 grep
在大循环中可能会运行缓慢,但当我想要准备dev
环境时,它会解决我的需求。
希望,有人会觉得这很有用。
示例:强>
文件: setup.sh
#!/bin/bash
ENV=${1:-dev}
function prop {
grep "${1}" env/${ENV}.properties|cut -d'=' -f2
}
docker create \
--name=myapp-storage \
-p $(prop 'app.storage.address'):$(prop 'app.storage.port'):9000 \
-h $(prop 'app.storage.host') \
-e STORAGE_ACCESS_KEY="$(prop 'app.storage.access-key')" \
-e STORAGE_SECRET_KEY="$(prop 'app.storage.secret-key')" \
-e STORAGE_BUCKET="$(prop 'app.storage.bucket')" \
-v "$(prop 'app.data-path')/storage":/app/storage \
myapp-storage:latest
docker create \
--name=myapp-database \
-p "$(prop 'app.database.address')":"$(prop 'app.database.port')":5432 \
-h "$(prop 'app.database.host')" \
-e POSTGRES_USER="$(prop 'app.database.user')" \
-e POSTGRES_PASSWORD="$(prop 'app.database.pass')" \
-e POSTGRES_DB="$(prop 'app.database.main')" \
-e PGDATA="/app/database" \
-v "$(prop 'app.data-path')/database":/app/database \
postgres:9.5
文件: env / dev.properties
app.data-path=/apps/myapp/
#==========================================================
# Server properties
#==========================================================
app.server.address=127.0.0.70
app.server.host=dev.myapp.com
app.server.port=8080
#==========================================================
# Backend properties
#==========================================================
app.backend.address=127.0.0.70
app.backend.host=dev.myapp.com
app.backend.port=8081
app.backend.maximum.threads=5
#==========================================================
# Database properties
#==========================================================
app.database.address=127.0.0.70
app.database.host=database.myapp.com
app.database.port=5432
app.database.user=dev-user-name
app.database.pass=dev-password
app.database.main=dev-database
#==========================================================
# Storage properties
#==========================================================
app.storage.address=127.0.0.70
app.storage.host=storage.myapp.com
app.storage.port=4569
app.storage.endpoint=http://storage.myapp.com:4569
app.storage.access-key=dev-access-key
app.storage.secret-key=dev-secret-key
app.storage.region=us-east-1
app.storage.bucket=dev-bucket
用法:
./setup.sh dev
答案 1 :(得分:37)
As(Bourne)shell变量不能包含点,您可以用下划线替换它们。阅读每一行,翻译。在_和评估的关键。
#/bin/sh
file="./app.properties"
if [ -f "$file" ]
then
echo "$file found."
while IFS='=' read -r key value
do
key=$(echo $key | tr '.' '_')
eval ${key}=\${value}
done < "$file"
echo "User Id = " ${db_uat_user}
echo "user password = " ${db_uat_passwd}
else
echo "$file not found."
fi
请注意,上述内容仅进行了翻译。要_,如果您有更复杂的格式,您可能想要使用其他翻译。我最近不得不解析一个包含许多令人讨厌的字符的完整Ant属性文件,我不得不使用:
key=$(echo $key | tr .-/ _ | tr -cd 'A-Za-z0-9_')
答案 2 :(得分:10)
由于BASH shell中的变量名不能包含点或空格,最好在BASH中使用关联数组,如下所示:
#!/bin/bash
# declare an associative array
declare -A arr
# read file line by line and populate the array. Field separator is "="
while IFS='=' read -r k v; do
arr["$k"]="$v"
done < app.properties
<强>测试强>
使用declare -p显示结果:
> declare -p arr
declare -A arr='([db.uat.passwd]="secret" [db.uat.user]="saple user" )'
答案 3 :(得分:1)
我发现使用prop
有点慢(我不知道为什么,也许某人可以在评论中简单解释或指向SO答案?)。我还发现@Nicolai的答案非常简洁,但是非常低效,因为它会为#!/usr/bin/env bash
source <(grep -v '^ *#' ./app.properties | grep '[^ ] *=' | awk '{split($0,a,"="); print gensub(/\./, "_", "g", a[1]) "=" a[2]}')
echo $db_uat_user
的每次调用一遍又一遍地扫描整个属性文件。
我找到了一个能够解答问题的解决方案,表现良好并且它是一个单行(虽然有点冗长的行)。
该解决方案确实采购,但在采购之前对内容进行按摩:
grep -v '^ *#'
说明:
grep '[^ ] *='
:弃掉评论专栏
=
:丢弃没有split($0,a,"=")
的行
=
:在a
分割行并存储到数组gensub(/\./, "_", "g", a[1])
中,即[1]是键,a [2]是值
.
:用_
替换print gensub... "=" a[2]}
gensub
将上面=
的结果与Caused by: java.lang.IllegalStateException: attempt to re-open an already-closed object: SQLiteDatabase: /data/user/0/com.example.dell1.policeapp/databases/AppDatabase
at android.database.sqlite.SQLiteClosable.acquireReference(SQLiteClosable.java:55)
at android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1314)
at android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1257)
at com.example.dell1.policeapp.DatabaseHelper.insert(DatabaseHelper.java:51)
at com.example.dell1.policeapp.MainActivity.onCreate(MainActivity.java:24)
at android.app.Activity.performCreate(Activity.java:6662)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1118)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2599)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2707)
at android.app.ActivityThread.-wrap12(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1460)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
和值相关联。
编辑:正如其他人所指出的那样,存在一些不兼容问题(awk),并且它也没有验证内容以查看属性文件的每一行是否实际上都是kv对。但这里的目标是展示一个既快又干净的解决方案的总体思路。采购似乎是一种方法,因为它可以加载一次可以多次使用的属性。
答案 4 :(得分:0)
@ fork2x
我试过这样的。请检查并更新我是否正确的做法。
#/bin/sh
function pause(){
read -p "$*"
}
file="./apptest.properties"
if [ -f "$file" ]
then
echo "$file found."
dbUser=`sed '/^\#/d' $file | grep 'db.uat.user' | tail -n 1 | cut -d "=" -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//'`
dbPass=`sed '/^\#/d' $file | grep 'db.uat.passwd' | tail -n 1 | cut -d "=" -f2- | sed 's/^[[:space:]]*//;s/[[:space:]]*$//'`
echo database user = $dbUser
echo database pass = $dbPass
else
echo "$file not found."
fi
答案 5 :(得分:0)
对于非常高性能且兼容 BASH 3.0 的解决方案:
文件:loadProps.sh
function loadProperties() {
local fileName=$1
local prefixKey=$2
if [ ! -f "${fileName}" ]; then
echo "${fileName} not found!"
return 1
fi
while IFS='=' read -r origKey value; do
local key=${origKey}
key=${key//[!a-zA-Z0-9_]/_}
if [[ "${origKey}" == "#"* ]]; then
local ignoreComments
elif [ -z "${key}" ]; then
local emptyLine
else
if [[ "${prefixKey}${key}" =~ ^[0-9].* ]]; then
key=_${key}
fi
eval ${prefixKey}${key}=\${value}
fi
done < <(grep "" ${fileName})
}
这里提供的其他解决方案很棒而且很优雅,但是
我需要在 bash 3 上做一些事情,处理大约 1k 个条目的属性文件,读取大约 200 个属性,以及多次调用整个脚本。
这个函数也处理
文件:my.properties
a=value
a=override value
b=what about `!@#$%^&*()_+[]\?
c=${a} no expansion
d=another = (equal sign)
e= 5 spaces front and back
f=
#g=commented out
#ignore new line below
.@a%^=who named this???
a1=A-ONE
1a=ONE-A
X=lastLine with no new line!
测试脚本
. loadProps.sh
loadProperties my.properties PROP_
echo "a='${PROP_a}'"
echo "b='${PROP_b}'"
echo "c='${PROP_c}'"
echo "d='${PROP_d}'"
echo "e='${PROP_e}'"
echo "f='${PROP_f}'"
echo "g='${PROP_g}'"
echo ".@a%^='${PROP___a__}'"
echo "a1='${PROP_a1}'"
echo "1a='${PROP_1a}'"
echo "X='${PROP_X}'"
loadProperties my.properties
echo "a='${a}'"
echo "1a='${_1a}'"
输出
a='override value'
b='what about `!@#$%^&*()_+[]\?'
c='${a} no expansion'
d='another = (equal sign)'
e=' 5 spaces front and back '
f=''
g=''
.@a%^='who named this???'
a1='A-ONE'
1a='ONE-A'
X='lastLine with no new line!'
a='override value'
1a='ONE-A'
. loadProps.sh
function fork2execve() {
while IFS='=' read -r key value; do
key=$(echo $key | tr .-/ _ | tr -cd 'A-Za-z0-9_')
eval ${key}=\${value}
done < "$1"
}
function prop {
grep '^\s*'"$2"'=' "$1" | cut -d'=' -f2-
}
function Nicolai() {
for i in $(seq 1 $2); do
prop0000=$(prop $1 "property_0000")
done
}
function perfCase() {
echo "perfCase $1, $2, $3"
time for i in $(seq 1 1); do
eval $1 $2 $3
done
}
function perf() {
perfCase $1 0001.properties $2
perfCase $1 0010.properties $2
perfCase $1 0100.properties $2
perfCase $1 1000.properties $2
}
perf "loadProperties"
perf "fork2execve"
perf "Nicolai" 1
perf "Nicolai" 10
perf "Nicolai" 100
带有 4 个 NNNN.properties 文件,其中包含诸如
之类的条目property_0000=value_0000
property_0001=value_0001
...
property_NNNN=value_NNNN
导致
function , file, #, real, user, sys
loadPropert, 0001, , 0.058, 0.002, 0.005
loadPropert, 0010, , 0.032, 0.003, 0.005
loadPropert, 0100, , 0.041, 0.013, 0.006
loadPropert, 1000, , 0.140, 0.106, 0.013
fork2execve, 0001, , 0.053, 0.003, 0.007
fork2execve, 0010, , 0.211, 0.021, 0.051
fork2execve, 0100, , 2.146, 0.214, 0.531
fork2execve, 1000, , 21.375, 2.151, 5.312
Nicolai , 0001, 1, 0.048, 0.003, 0.009
Nicolai , 0010, 1, 0.047, 0.003, 0.009
Nicolai , 0100, 1, 0.044, 0.003, 0.010
Nicolai , 1000, 1, 0.044, 0.004, 0.009
Nicolai , 0001, 10, 0.240, 0.020, 0.056
Nicolai , 0010, 10, 0.263, 0.021, 0.059
Nicolai , 0100, 10, 0.272, 0.023, 0.062
Nicolai , 1000, 10, 0.295, 0.027, 0.059
Nicolai , 0001, 100, 2.218, 0.189, 0.528
Nicolai , 0010, 100, 2.213, 0.193, 0.537
Nicolai , 0100, 100, 2.247, 0.196, 0.543
Nicolai , 1000, 100, 2.323, 0.253, 0.534