代码拉取完成,页面将自动刷新
import os
import fileinput
import shutil
# 假设这是你的字符串列表,每一个字符串都是一个文件路径
file_paths = [
'step2.sh',
'docs/md/go-version/2-运行与部署.md',
'obcsapi-web/src/stores/setting.ts',
'server/assest.go',
'server/Dockerfile',
'server/config.example.yaml',
'server/server.go',
'server/tools/config.example.yaml',
]
for file_path in file_paths:
# 检查文件是否存在
if not os.path.isfile(file_path):
print(f"File {file_path} does not exist.")
continue
with fileinput.FileInput(file_path, inplace=True) as file:
for line in file:
# 读取每一行并替换其中的 '4.2.7' 为 '4.2.8'
print(line.replace('4.2.8', '4.2.9'), end='')
shutil.copy('server/config.example.yaml', 'server/tools/config.example.yaml')
shutil.copy('server/config.example.yaml', 'docs/md/go-version/config.example.yaml')
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。