SPO / docs /scripts /get_all_classes_and_funcs.sh
XiangJinYu's picture
add metagpt
fe5c39d verified
raw
history blame
157 Bytes
#!/usr/bin/env bash
find metagpt | grep "\.py" | grep -Ev "(__init__|pyc)" | xargs grep -E "(^class| def )" 2>/dev/null | grep -v -E "(grep|tests|examples)"