如何从shell脚本修改INI文件?
我正在构建 vnc 的自定义包,并希望确保在包安装后脚本中启用 GDM 的 xdcmp 设置。 gdm.conf 文件是一个 ini 样式文件,即:
[section]
var=name
我想要设置的值在整个配置文件的不同部分中存在名称冲突。
是否有任何方法或工具可以轻松地从 shell 脚本操作 ini 样式配置文件?
我想在 .deb
postinst 脚本中解决这个问题。
I'm building a custom package of vnc and would like to ensure the xdcmp settings of GDM are enabled in the package post install script. The gdm.conf
file is an ini style one, i.e.:
[section]
var=name
And the value I want to set has name clashes in different sections throughout the config file.
Are there any methods or tools that allow for easy manipulation of ini style config files from shell scripts?
I'd like to sort this out in the .deb
postinst script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Ex 编辑器的 Shell 命令(更改
var
键的值):要支持 INI 部分,请使用以下语法:
要从 INI 文件读取值,请参阅:如何在 shell 脚本中获取 INI 值?
这是 shell 函数,有助于编辑 INI 值(不支持部分):
这是 shell 函数读取 INI 值(不支持部分):
例如
ini_get var
。Shell command using Ex editor (to change the value of
var
key):To support INI sections, use the following syntax:
For reading values from INI files, see: How do I grab an INI value within a shell script?
Here is the shell function which can be helpful for editing INI values (not supporting sections):
Here is shell function to read INI values (not supporting sections):
E.g.
ini_get var
.如果您愿意编写一些 Perl,可以使用 Config::IniFiles(包 libconfig-inifiles-perl)。
If you're willing to write some Perl, there's
Config::IniFiles
(packagelibconfig-inifiles-perl
).看看 crudini 包。它设计用于从 shell 操作 ini 文件
Have a look at the crudini package. It's designed for manipulating ini files from shell