在 Linux 系统中,你可以使用命令行工具 sed
来进行文本替换
打开终端。
使用以下命令格式进行文本替换:
sed 's/原字符串/新字符串/' input_file > output_file
其中:
s
表示替换操作。原字符串
是你要替换的文本。新字符串
是你要替换为的新文本。input_file
是你要进行替换操作的源文件。>
表示将输出重定向到新文件。output_file
是你要保存替换结果的目标文件。例如,如果你想将文件 example.txt
中的所有 “apple” 替换为 “orange”,并将结果保存到 new_example.txt
文件中,你可以使用以下命令:
sed 's/apple/orange/' example.txt > new_example.txt
如果你想直接修改原始文件,可以使用 -i
选项:
sed -i 's/apple/orange/' example.txt
注意:在使用 -i
选项之前,请确保备份原始文件,以防意外损坏。