1. Sed的help 鸟哥说的 学东西 先看 help 先看man 再google 不好FQ再百度.. Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]... -n, --quiet, --silent suppress automatic printing of pattern space -e script, --expression=script add the script to the comma…
#!/usr/bin/env python import fileinput for line in fileinput.input('fansik',inplace=1): line = line.replace(') print line, inplace=1相当于sed的-i参数,如果不加inplace=1,则只答应修改内容,不修改文件 #!/usr/bin/env python import fileinput for line in fileinput.input('fansik',…