Replacing first occurence in every line

前端 未结 6 1116
囚心锁ツ
囚心锁ツ 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:32

    sed 's/\([^[:blank:]]\{1,\}\)/\1,/' YourFile
    

    Add a , after first block of "non space", so start of line could be starting with space, it still work and also if line is without work but only with space (no , in this case)

提交回复
热议问题