[20201202]sed加行號.txt

lfree發表於2020-12-02

[20201202]sed加行號.txt

--//連結提供一些加行號的方法:http://www.itpub.net/thread-2140068-1-1.html
--//想使用sed實現,上網看了一下:

R:\>cat a.txt
this is a test 1
this is a test 2
this is a test 3
this is a test 4

R:\> sed "=" a.txt | sed "N;s/\n/ /"
1 this is a test 1
2 this is a test 2
3 this is a test 3
4 this is a test 4

--//有點麻煩

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2738704/,如需轉載,請註明出處,否則將追究法律責任。

相關文章