在文件命名appleFile:如何使用這個「grep」命令grep這種模式?
1.apple_with_seeds###
2.apple_with_seeds###
3.apple_with_seeds_and_skins###
4.apple_with_seeds_and_skins###
5.apple_with_seeds_and_skins###
.....
.....
.....
如何使用grep命令只能用 「apple_with_seeds」 到grep模式??? 假設種子和皮膚後面有隨機字符。如果要排除的東西,嘗試-v
選項 :
cat appleFile | grep "apple_with_seeds$" | grep -v "exclude_pattern"
酷!這看起來更好的答案 –