我写了一个bash脚本,它处理多个文件.我现在想添加对配置文件的支持.这是我想要的数据结构:
Array ( [0] => Array ( [name] => datset1 [path] => /var/lib/bliTool/ds1 [type] => cvs ) [1] => Array ( [name] => datset2 [path] => /var/lib/bliTool/ds2 [type] => xml ) [2] => Array ( [name] => datset3 [path] => /home/igor/test/ds3 [type] => cvs ) )
Q1在bash中这样的数据结构是否可行?还有其他建议吗?请记住,这应该在配置文件中…
Q2:我正在考虑每个’set’的一个配置文件
/etc/myApp/ /etc/myApp/myApp.conf /etc/myApp/datasets.d/ /etc/myApp/datasets.d/ds1.conf /etc/myApp/datasets.d/ds2.conf /etc/myApp/datasets.d/dsN.conf
每个/etc/myApp/datasets.d/dsN.conf文件看起来都像
name=The DS name path=/the/path/to/the/ds/files type=thetype
您有什么推荐的吗?有没有办法在一个文件中执行所有操作?
path="/first/path /second/path"
但是我觉得我会遇到空间问题,所以我应该介绍一个像
path="/first/path:/second/path"
拆分字符串.
或者,还有更好的方法?
你不能在bash中嵌套数据结构.最好的情况是,您可以将关联数组的名称存储在一个数组中,并跳转到间接环以访问它们.
原文链接:https://www.f2er.com/bash/383365.html$declare -A aa0=([name]=dataset1 [path]=/var/lib/bliTool/ds1 [type]=cvs ) $declare -A aa1=([name]=dataset2 [path]=/var/lib/bliTool/ds2 [type]=xml ) $declare -A aa2=([name]=dataset3 [path]=/home/igor/test/ds3 [type]=cvs ) $declare -a array=( aa0 aa1 aa2 ) $tmp=aa0[name] $echo ${!tmp} dataset1
对于第二个问题,使用部分定义配置文件格式当然是可能的,但是您需要编写一个可以处理它的解析器.其他语言通常具有可用于解析丰富配置文件格式的库.
至于每个变量的多个路径,坚持:.理论上,任何分隔符都可以用作路径名称组件的一部分,因此如果分隔符是路径的一部分,则需要引用分隔符.但是,由于PATH使用:作为其分隔符,因此有历史意识:在路径名中使用的字符不是很好,并且需要在类似PATH的参数中引用它.
path="/first/poor\:path\:name:/second/bad\:path\:name"
然后由你的应用程序来处理反向削减:.