zoukankan      html  css  js  c++  java
  • 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)
    

      

  • 相关阅读:
    Python os.getcwd()方法
    Python os.walk()方法
    PyTorch 模型构造
    Python map()函数
    字符串转数字测试--知识备忘
    如何判断一个变量是数组Array类型--实例--加个人见解
    js面试题
    ios学习笔记
    读取图片文件--实例
    名言记录
  • 原文地址:https://www.cnblogs.com/morganh/p/10755186.html
Copyright © 2011-2022 走看看