2
說我有包含這些行的文件:sed:如何替換包含特定字符串的所有行?
tomatoes
bananas
tomatoes with apples
pears
pears with apples
如何更換每一行含有單詞「蘋果」只用「桔子」?這是我想結束:
tomatoes
bananas
oranges
pears
oranges
說我有包含這些行的文件:sed:如何替換包含特定字符串的所有行?
tomatoes
bananas
tomatoes with apples
pears
pears with apples
如何更換每一行含有單詞「蘋果」只用「桔子」?這是我想結束:
tomatoes
bananas
oranges
pears
oranges
使用sed 's/.*apples.*/oranges/'
?
您可以使用AWK
$ awk '/apples/{$0="orange"}1' file
tomatoes
bananas
orange
pears
orange
這個說來搜索蘋果,然後改變整個記錄爲「橙色」。