2016-12-01 9 views

答えて

2

sed

sed '/todo/s/^\([1-9]\+:\)[ \t]*/\1/' file.html 

テスト:

$ echo "1:   <span>todo:test<span>" | sed '/todo/s/^\([1-9]\+:\)[ \t]*/\1/' 
1:<span>todo:test<span> 
関連する問題