mirror of
https://github.com/Kludex/awesome-fastapi-projects.git
synced 2024-11-24 04:21:09 +00:00
5 lines
113 B
Bash
5 lines
113 B
Bash
|
|
for file in $(find reps -maxdepth 1 -type d); do
|
|
grep -r "import" --include \*.py $file > imports.txt
|
|
done
|