收起
使用grep查找,在当前文件夹下,查找含有'Test'的行:
grep -s 'Test' *
如果不区分大小写:
grep -si 'Test' *
自己可以查阅一下grep的用法。如有帮助,请采纳,多谢!
报告相同问题?