grep -r xxx .


$ grep -r load .
./bak_0413.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./process_label.py:        data = json.load(f)
./0418_delete_class.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./test.py:    data = json.load(f)
./0409.py:    json_data = json.load(bbox_info_json_file)
./0417.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./0413.py:json_data = json.load(bbox_info_json_file)


$ grep -r -l load .
./bak_0413.py
./process_label.py
./0418_delete_class.py
./test.py
./0409.py
./0417.py
./0413.py

$ grep -r -I load .
./bak_0413.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./process_label.py:        data = json.load(f)
./0418_delete_class.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./test.py:    data = json.load(f)
./0409.py:    json_data = json.load(bbox_info_json_file)
./0417.py:    json_data = unicode_convert(json.load(bbox_info_json_file))
./0413.py:json_data = json.load(bbox_info_json_file)

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM