将多行以同一短语开头的行合并为一行
我正在编写一个 Bash 脚本,将 Arch Linux 包转换为我正在编写的包管理器的格式,并且我必须将一些元数据文件转换为文件格式.toml。以前,我一直在使用sed,但我只需要一些可以在 Bash 脚本中实现的东西。转换应如下所示。 输入: ... other stuff ... depends = "some-dependency" depends = "another-dependency" depends = "yet-another-dependency" 输出: ... other stuff already converted ... d...