我在 2 个不同的路径中有 2 个文件。我想将安装版本从 file1 复制到 file2
文件 1: VersionInfo.Properties
:
Installed Version:13.9.0-9
Previous Version:13.8.0-2
文件 2:Install.sh
#!/bin/bash
--- #some content is there
----
uninstall_and_install_rpm component 13.7.0-3
-----
------
期望的输出:
文件 2:Install.sh
#!/bin/bash
--- #some content is there
----
uninstall_and_install_rpm component 13.9.0-9
-----
------