我有一个文本文件,其中有很多行
我在其中一行是:
开启MyCar

如何关闭我的车?

最佳答案

您可以使用sed:

sed -i 's/MyCar on/MyCar off/' path/to/file

10-08 09:25