,可以通过以下步骤实现:
以下是一个示例的批处理脚本:
@echo off
setlocal enabledelayedexpansion
set input_file=file.txt
set output_file=output.txt
set line_number=0
for /f "tokens=*" %%a in (%input_file%) do (
set /a line_number+=1
set line=%%a
if !line_number! equ 1 (
echo !line!_suffix>> %output_file%
) else if !line_number! equ 3 (
echo !line!_suffix>> %output_file%
) else (
echo !line!>> %output_file%
)
)
echo Done.
在上述示例中,需要将"file.txt"替换为实际的输入文件名,将"output.txt"替换为实际的输出文件名。可以根据需要修改需要添加后缀的行号和后缀内容。
该批处理脚本会逐行读取输入文件的内容,并根据行号判断是否需要添加后缀。如果是需要添加后缀的行,则在行末添加后缀并写入到输出文件中。如果不是需要添加后缀的行,则直接将行内容写入到输出文件中。
完成后,可以运行批处理脚本,输出文件中将包含添加后缀的行。
领取专属 10元无门槛券
手把手带您无忧上云