grep -r xxx .

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
$ 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)

  

posted on   cdekelon  阅读(3549)  评论(0编辑  收藏  举报

努力加载评论中...

导航

点击右上角即可分享
微信分享提示