這是我的代碼,test.txt文件包含更多的空行和空格,除了製表符,我想刪除空行和空行,但是我需要一個空行開始st^
,怎麼做?如何使用shell腳本在文本文件中添加空行?
sed "s/^[ ]*//" -i test.txt
cat $2 > /tmp/tt.txt
sed '/^$/d' test.txt > /tmp/tt.txt
echo " " >> test.txt
echo " " >> /tmp/tt.txt
mv /tmp/tt.txt test.txt
IAM越來越像輸出
st^flower
p^rose
p^jasmine
st^animals
p^bear
p^elephant
我想輸出像
st^flower
p^rose
p^jasmine
st^animals
p^bear
p^elephant
而且輸入是...? –
輸入HTML文件,HTML文件中IAM分割和生成文本文件likest ^花 P 1上升 P 1茉莉 ST ^動物 P 1承受 P 1大象 – user2653831