Replacing first occurence in every line

前端 未结 6 1115
囚心锁ツ
囚心锁ツ 2021-01-27 01:11

Supposing I have a document formatted like this:

word1 word2 word3
word4 word5 word6
word7 word8

How do I use sed to replace the f

6条回答
  •  没有蜡笔的小新
    2021-01-27 01:43

    Simple:

    sed -i 's/ /, /' your_file
    

    This looks for the first occurrence of a space, replaces it with a comma and space, then moves to the next line.

提交回复
热议问题