linux sed 替換、刪除文件中的某個字符串

1、將當前目錄下包含hello串的文件中,hello字符串替換爲hi

sed -i "s/hello/hi/g" `grep "hello" -rl ./`

2、將某個文件中的hello字符串替換爲hi

sed -i "s/hello/hi/g" test.txt

3、刪除行首空格

sed -i 's/^ //g' test

4、刪除行尾空格

sed -i 's/ $//g' test

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章