Files
urbanLifeline/dify/api/cnt_base.sh

8 lines
199 B
Bash
Raw Permalink Normal View History

2025-12-01 17:21:38 +08:00
#!/bin/bash
set -euxo pipefail
for pattern in "Base" "TypeBase"; do
printf "%s " "$pattern"
grep "($pattern):" -r --include='*.py' --exclude-dir=".venv" --exclude-dir="tests" . | wc -l
done