shell -sed查找和替換文件中的內容

sed查找和替換文件中的內容git

 

sed -i 's/text/replace/' filethis

 

 

指定位置替換內容it

echo thisthisthisthis |sed 's/this/THIS/3'sed

 

移除文件中的空白行 ^$file

sed '/^$/d' fileim

 

子串匹配標記(\1)img

echo this is digit 7 in a number | sed 's/digit \([0-9]\)/\1/'di

 

多個匹配文件

echo abc | sed 's/a/A/' | sed 's/c/C/'ab

echo abc | sed 's/a/A/;s/c/C/'

 

echo abc | sed -e 's/a/A/' -e 's/c/C/'

相關文章
相關標籤/搜索