Kokomelom Asked: 2022-05-18 13:11:43 +0800 CST if line 用 sed 替换最后的简单文本 0 我有那个文本#!/usr/bin/env python,我想python用python3 (没有正则表达式)替换,但我想确保这个文本在行尾。 我试过这个命令: sed -i 's/python\n/python3\n/g' a.txt 但它不会替换文本。我确保在python0x0a (\n)之后使用十六进制转储 请问我能做什么? text-processing