0
我有這樣一個變量:(在新行中的每個字)在bash變量刪除所有文字occurence
> echo $LIST
toto
toto2
titi
rererer
dfs
sdfsdf
titi
titi
我嘗試刪除的「蒂蒂」所有出現,以獲得:
> echo $LIST
toto
toto2
rererer
dfs
sdfsdf
我試圖與LIST = $(回聲$ {// LIST蒂蒂/})併除去它,但它也刪除新行,並得到這樣的結果:
> echo $LIST
toto toto2 rererer dfs sdfsdf
我的問題是如何刪除所有出現保持每個單詞在一行嗎? 感謝提前:)
子shell和回聲是多餘的 – 123
你可以嘗試:echo「$ list」| grep -v titi –