要搜索的Python关键字以开头,并在文件中替换

要搜索的Python关键字以开头,并在文件中替换,python,python-2.7,Python,Python 2.7,我有file1.txt,它有以下内容 if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \ || ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \ || uses_abstraction "${GRUB_DEVICE}" lvm; then LINUX_ROOT_DEVICE=${GRUB_DEVICE} el

我有file1.txt,它有以下内容

if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
   || ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
   || uses_abstraction "${GRUB_DEVICE}" lvm; then
   LINUX_ROOT_DEVICE=${GRUB_DEVICE}
else
   LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
fi

GRUBFS="`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`"
Linux_CMDLINE="nowatchdog rcupdate.rcu_cpu_stall_suppress=1"
我想查找以Linux_CMDLINE=“开头的字符串,并将该行替换为Linux_CMDLINE=“”

我尝试了下面的代码,但它不起作用。我也认为这不是最好的实现方法。有什么简单的方法可以实现这一点吗

with open ('/etc/grub.d/42_sgi', 'r') as f:
    newlines = []
    for line in f.readlines():
        if line.startswith('Linux_CMDLINE=\"'):
            newlines.append("Linux_CMDLINE=\"\"")
        else:
            newlines.append(line)

with open ('/etc/grub.d/42_sgi', 'w') as f:
    for line in newlines:
        f.write(line)
预期产出:

 if [ "x${GRUB_DEVICE_UUID}" = "x" ] || [ "x${GRUB_DISABLE_LINUX_UUID}" = "xtrue" ] \
   || ! test -e "/dev/disk/by-uuid/${GRUB_DEVICE_UUID}" \
   || uses_abstraction "${GRUB_DEVICE}" lvm; then
   LINUX_ROOT_DEVICE=${GRUB_DEVICE}
else
   LINUX_ROOT_DEVICE=UUID=${GRUB_DEVICE_UUID}
fi

GRUBFS="`${grub_probe} --device ${GRUB_DEVICE} --target=fs 2>/dev/null || true`"
Linux_CMDLINE=""
由于

由于


您得到了什么输出?缺少了
else的冒号
您得到了什么输出?缺少了
else的冒号
repl = 'Linux_CMDLINE=""'

with open ('/etc/grub.d/42_sgi', 'r') as f:
    newlines = []
    for line in f.readlines():
        if line.startswith('Linux_CMDLINE='):
            line = repl
        newlines.append(line)
# Read and write (r+)
with open("file.txt","r+") as f:
    find = r'Linux_CMDLINE="'
    changeto = r'Linux_CMDLINE=""'
    # splitlines to list and glue them back with join
    newstring = ''.join([i if not i.startswith(find) else changeto for i in f])
    f.seek(0)
    f.write(newstring)
    f.truncate()