0
我正在從文件appliances_list.txt中讀取一個字符串。從文件讀取模式,grep只出現在第一個位置
appliances_list.txt包含
fridge
dryer
ironbox
microwave
我讀的文件是myappliances.txt。內容是
I have a fridge
I have another fridge
I have a refridgerator
I have a microwave
I have ironbox at home
I have another microwave
I have a hairdryer
我使用
grep -o -m1 -f appliances_list.txt myappliances.txt
的輸出被
fridge
我的期望的輸出是,每個串(完全匹配)的第一次出現
fridge
microwave
ironbox
有人能指引我走向正確的方向嗎?
歡迎SO。首先,請使用編輯器中的「{}」按鈕修復數據和代碼示例的佈局。謝謝。 –
當然。謝謝詹姆斯。 – Nandu
@jww Shell腳本仍在編程。 – o11c